*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  background-color: #f1f0ec;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  color: #2c2b27;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Segoe UI";
  font-size: 16px;
  line-height: 1.6;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  border: 0;
  background-color: transparent;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  cursor: pointer;
}

button {
  padding: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

button {
  border: none;
  background: none;
}

.text-24 {
  font-size: 24px;
  line-height: 1.33;
}
@media screen and (min-width: 768px) {
  .text-24 {
    font-size: 32px;
  }
}

.text-18 {
  font-size: 18px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .text-18 {
    font-size: 24px;
  }
}

.text-16 {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .text-16 {
    font-size: 18px;
  }
}

.text-14 {
  font-size: 14px;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .text-14 {
    font-size: 16px;
  }
}

.text-13 {
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .text-13 {
    font-size: 14px;
  }
}

.text-12 {
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .text-12 {
    font-size: 13px;
  }
}

.text-label {
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .text-label {
    font-size: 13px;
  }
}

.text-primary {
  color: #141410;
}

.text-secondary {
  color: #6b6a62;
}

.text-disabled {
  color: #a8a79f;
}

.text-inverse {
  color: #ffffff;
}

.text-brand {
  color: #6b8f5e;
}

.container {
  width: 100%;
  padding: 0 18px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 1024px;
    padding: 0 42px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 48px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

[class^=col-] {
  padding: 0 10px;
}

.col-sm-1 {
  width: 25%;
}

.col-sm-2 {
  width: 50%;
}

.col-sm-3 {
  width: 75%;
}

.col-sm-4 {
  width: 100%;
}

.col-md-1 {
  width: 8.3333333333%;
}

.col-md-2 {
  width: 16.6666666667%;
}

.col-md-3 {
  width: 25%;
}

.col-md-4 {
  width: 33.3333333333%;
}

.col-md-5 {
  width: 41.6666666667%;
}

.col-md-6 {
  width: 50%;
}

.col-md-7 {
  width: 58.3333333333%;
}

.col-md-8 {
  width: 66.6666666667%;
}

.col-md-9 {
  width: 75%;
}

.col-md-10 {
  width: 83.3333333333%;
}

.col-md-11 {
  width: 91.6666666667%;
}

.col-md-12 {
  width: 100%;
}

.col-lg-1 {
  width: 92px;
}

.col-lg-2 {
  width: 184px;
}

.col-lg-3 {
  width: 276px;
}

.col-lg-4 {
  width: 368px;
}

.col-lg-5 {
  width: 460px;
}

.col-lg-6 {
  width: 552px;
}

.col-lg-7 {
  width: 644px;
}

.col-lg-8 {
  width: 736px;
}

.col-lg-9 {
  width: 828px;
}

.col-lg-10 {
  width: 920px;
}

.col-lg-11 {
  width: 1012px;
}

.col-lg-12 {
  width: 1104px;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inline-flex {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.u-brand {
  color: #6b8f5e;
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 57px;
  padding: 0 24px;
  background-color: #6b8f5e;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
}
.btn-primary:disabled, .btn-primary.is-disabled {
  background-color: #c8c7bf;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-chip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 39px;
  padding: 10px 17px;
  background-color: #f9f8f6;
  border: 1px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #141410;
  line-height: normal;
  white-space: nowrap;
}
.btn-chip.is-active {
  background-color: #eaf2e5;
  border-color: #6b8f5e;
}
@media screen and (min-width: 768px) {
  .btn-chip {
    padding: 20px 28px;
    border-radius: 25px;
    font-size: 18px;
  }
}

.btn-check {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 155px;
  height: 100px;
  background-color: #f9f8f6;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #141410;
  line-height: normal;
}
.btn-check-icon {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 24px;
  height: 24px;
  display: none;
}
.btn-check.is-active {
  background-color: #eaf2e5;
  border-color: #6b8f5e;
}
.btn-check.is-active .btn-check-icon {
  display: block;
}

.hair-card {
  position: relative;
  width: 155px;
  height: 180px;
  border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.hair-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hair-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.hair-card-label {
  position: absolute;
  bottom: 17px;
  left: 14px;
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #f9f8f6;
  line-height: normal;
  white-space: nowrap;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.hair-card.is-active {
  border-color: #6b8f5e;
}
.hair-card.is-active .hair-card-overlay {
  background: linear-gradient(180deg, rgba(107, 143, 94, 0) 50%, #6b8f5e 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.hair-card.is-active .hair-card-label {
  text-shadow: none;
}

.snackbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 40px;
  padding: 10px 20px 10px 10px;
  background-color: #6b6a62;
  border-radius: 30px;
  display: none;
}
.snackbar-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.snackbar-message {
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
}
.snackbar.is-active {
  display: flex;
}

.textfield {
  background-color: #f9f8f6;
  border-radius: 12px;
  padding: 17px;
  width: 100%;
}
.textfield-label {
  display: none;
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #a8a79f;
  line-height: 1.43;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .textfield-label {
    font-size: 14px;
  }
}
.textfield-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #2c2b27;
  line-height: 1.43;
  resize: none;
}
.textfield-input::placeholder {
  color: #a8a79f;
}
@media screen and (min-width: 768px) {
  .textfield-input {
    font-size: 14px;
  }
}
.textfield.has-value .textfield-label {
  display: block;
}
.textfield--tall .textfield-input {
  min-height: 160px;
}

.header {
  background-color: #f1f0ec;
  margin-bottom: 30px;
}
.header-body {
  height: 70px;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 0 42px;
  }
}

.header-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 18px 0 18px;
}
@media screen and (min-width: 768px) {
  .header-nav {
    padding: 0;
    padding-top: 30px;
  }
}
.header-nav-left {
  display: contents;
}

.header-back {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #141410;
  margin-left: -6px;
}

.header-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
}
@media screen and (min-width: 768px) {
  .header-progress {
    padding: 0;
  }
}
.header-progress-track {
  flex: 1;
  height: 5px;
  background: #e4e3dc;
  border-radius: 5px;
  overflow: hidden;
}
.header-progress-fill {
  height: 100%;
  width: var(--progress, 0%);
  background: #6b8f5e;
  border-radius: 5px;
  transition: width 0.3s ease;
}

.survey-question {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #f1f0ec;
  padding-bottom: 40px;
}

.survey-question-label {
  font-size: 14px;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .survey-question-label {
    font-size: 16px;
  }
}
.survey-question-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2c2b27;
  margin-bottom: 8px;
}

.survey-question-title {
  font-size: 24px;
  line-height: 1.33;
}
@media screen and (min-width: 768px) {
  .survey-question-title {
    font-size: 32px;
  }
}
.survey-question-title {
  font-weight: 700;
  color: #141410;
}

.cta-wrap {
  background-color: #f1f0ec;
  height: 90px;
  border: 1px solid #e4e3dc;
}

.cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
}
.cta p {
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .cta p {
    font-size: 13px;
  }
}
.cta p {
  color: #a8a79f;
  text-align: center;
  margin-bottom: 20px;
}
.cta-snackbar {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .cta {
    width: calc(100% - 84px);
  }
}

.home-wrap {
  min-height: 100vh;
  background-color: #f1f0ec;
  position: relative;
}

.home-content {
  padding: 10px 0 100px;
}

.home-greeting {
  margin-bottom: 18px;
}

.home-greeting-line {
  font-size: 24px;
  line-height: 1.33;
}
@media screen and (min-width: 768px) {
  .home-greeting-line {
    font-size: 32px;
  }
}
.home-greeting-line {
  font-weight: 700;
  color: #141410;
}

.home-history {
  font-size: 14px;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .home-history {
    font-size: 16px;
  }
}
.home-history {
  font-weight: 600;
  color: #a8a79f;
}
.home-history u {
  text-decoration-skip-ink: none;
}

.survey-wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f1f0ec;
  overflow: hidden;
}

.survey-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 120px;
}
.survey-content::-webkit-scrollbar {
  display: none;
}
.survey-content--snackbar {
  padding-bottom: 160px;
}

.survey-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.survey-grid .btn-check, .survey-grid-item {
  flex: 1 1 calc(50% - 7px);
}
.survey-grid-item .hair-card {
  width: 100%;
  height: 180px;
}
@media screen and (min-width: 768px) {
  .survey-grid {
    gap: 22px 18px;
  }
  .survey-grid .btn-check, .survey-grid-item {
    flex: 1 1 calc(33.333% - 22px);
  }
  .survey-grid-item .hair-card {
    height: 340px;
  }
}

.survey-wide {
  width: 100%;
  margin-bottom: 0;
}

.survey-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.survey-chip-list-item {
  display: contents;
}

body {
  background-color: #f1f0ec;
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2c2b27;
}

.ds-header {
  padding: 64px 0 56px;
  border-bottom: 1px solid #e4e3dc;
}
.ds-header-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b8f5e;
  margin-bottom: 14px;
}
.ds-header-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #141410;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .ds-header-title {
    font-size: 56px;
  }
}
.ds-header-desc {
  font-size: 14px;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .ds-header-desc {
    font-size: 16px;
  }
}
.ds-header-desc {
  color: #6b6a62;
}

.ds-section {
  padding: 52px 0;
  border-bottom: 1px solid #e4e3dc;
}
.ds-section:last-child {
  border-bottom: none;
  padding-bottom: 80px;
}

.ds-section-title {
  font-size: 18px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .ds-section-title {
    font-size: 24px;
  }
}
.ds-section-title {
  font-weight: 700;
  color: #141410;
  margin-bottom: 32px;
}

.ds-section-sub {
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .ds-section-sub {
    font-size: 13px;
  }
}
.ds-section-sub {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8a79f;
  margin: 36px 0 16px;
}
.ds-section-sub:first-child {
  margin-top: 0;
}

.ds-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ds-swatch {
  width: 88px;
}
.ds-swatch-chip {
  width: 100%;
  height: 56px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.ds-swatch-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #2c2b27;
  margin-bottom: 2px;
}
.ds-swatch-hex {
  display: block;
  font-size: 11px;
  color: #a8a79f;
}
.ds-swatch--white .ds-swatch-chip {
  background: #ffffff;
  border: 1px solid #e4e3dc;
}
.ds-swatch--card-bg .ds-swatch-chip {
  background: #f9f8f6;
}
.ds-swatch--background .ds-swatch-chip {
  background: #f1f0ec;
  border: 1px solid #e4e3dc;
}
.ds-swatch--border .ds-swatch-chip {
  background: #e4e3dc;
}
.ds-swatch--disabled .ds-swatch-chip {
  background: #c8c7bf;
}
.ds-swatch--placeholder .ds-swatch-chip {
  background: #a8a79f;
}
.ds-swatch--secondary .ds-swatch-chip {
  background: #6b6a62;
}
.ds-swatch--primary .ds-swatch-chip {
  background: #2c2b27;
}
.ds-swatch--header .ds-swatch-chip {
  background: #141410;
}
.ds-swatch--tint .ds-swatch-chip {
  background: #eaf2e5;
}
.ds-swatch--brand .ds-swatch-chip {
  background: #6b8f5e;
}
.ds-swatch--shade .ds-swatch-chip {
  background: #3d5435;
}
.ds-swatch--success .ds-swatch-chip {
  background: #3b6d11;
}
.ds-swatch--warning .ds-swatch-chip {
  background: #ba7517;
}
.ds-swatch--danger .ds-swatch-chip {
  background: #a32d2d;
}

.ds-type-scale {
  border-top: 1px solid #e4e3dc;
}

.ds-type-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e4e3dc;
}
@media screen and (min-width: 768px) {
  .ds-type-row {
    gap: 40px;
  }
}

.ds-type-meta {
  flex-shrink: 0;
  width: 130px;
}
@media screen and (min-width: 768px) {
  .ds-type-meta {
    width: 160px;
  }
}

.ds-type-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #6b8f5e;
  margin-bottom: 3px;
}

.ds-type-spec {
  display: block;
  font-size: 11px;
  color: #a8a79f;
}

.ds-type-sample {
  color: #141410;
  flex: 1;
  min-width: 0;
}

.ds-component-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.ds-component-item {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.ds-component-label {
  font-size: 11px;
  font-weight: 500;
  color: #6b6a62;
  background: #f9f8f6;
  border: 1px solid #e4e3dc;
  padding: 3px 8px;
  border-radius: 4px;
}

.ds-btn-primary-wrap {
  width: 220px;
}

.ds-textfield-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .ds-textfield-item {
    width: 330px;
  }
}

.style-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.style-card-bg--a {
  background: linear-gradient(160deg, #c8ddc4 0%, #6b8f5e 100%);
}
.style-card-bg--b {
  background: linear-gradient(160deg, #cec5b8 0%, #8a7060 100%);
}
.style-card-bg--c {
  background: linear-gradient(160deg, #b4c8d4 0%, #5e7a8f 100%);
}
.style-card-bg--d {
  background: linear-gradient(160deg, #d4c4b8 0%, #8f6b5e 100%);
}

/*# sourceMappingURL=main.css.map */
