@charset "utf-8";


/* 닥터멜락신의원 커스텀 레이아웃 */
html {
  overflow-y: auto;
}

body {
  font-family: "Pretendard", "Malgun Gothic", sans-serif;
  background: #000;
  color: #fff;
}

body.is-index {
  font-size: 16px;
}

img {
  display: block;
}

#hd,
#wrapper,
#ft {
  min-width: 0;
}

#hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

body.is-sub #hd,
#hd.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: none;
  height: 78px;
  padding: 0 72px;
  box-sizing: border-box;
}

.hd-mega-bg {
  display: none;
}

.hd-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.hd-logo .logo-ko {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.hd-logo .logo-divider {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.7;
}

.hd-logo .logo-en {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.hd-gnb {
  display: flex;
  align-items: stretch;
  height: 78px;
}

.hd-gnb > ul {
  display: flex;
  align-items: stretch;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hd-gnb > ul > li {
  position: relative;
  display: flex;
  align-items: center;
}

.hd-gnb > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  opacity: 0.92;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    font-weight 0.2s ease;
}

.hd-gnb > ul > li > a:hover,
.hd-gnb > ul > li > a.is-active {
  opacity: 1;
}

.hd-sub {
  display: none;
}

.hd-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hd-menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}

.hd-dim {
  display: none;
}

@media (min-width: 1101px) {
  .hd-logo,
  .hd-gnb {
    position: relative;
    z-index: 1;
  }

  .hd-mega-bg {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 78px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    transition:
      height 0.28s ease,
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .hd-sub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    min-width: 100%;
    margin: 0;
    padding: 24px 0 32px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  .hd-sub a {
    display: block;
    padding: 6px 0;
    color: #8a8a8a;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    transition: color 0.2s ease;
  }

  .hd-sub a:hover,
  .hd-sub a.is-active {
    color: #111;
  }

  .hd-inner:hover .hd-mega-bg,
  .hd-inner:focus-within .hd-mega-bg {
    height: 330px;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 1px 0 #eee;
  }

  .hd-inner:hover .hd-sub,
  .hd-inner:focus-within .hd-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  #hd:has(.hd-inner:hover),
  #hd:has(.hd-inner:focus-within) {
    background: #fff;
    border-bottom-color: #e8e8e8;
  }

  #hd:has(.hd-inner:hover) .hd-logo,
  #hd:has(.hd-inner:focus-within) .hd-logo {
    color: #111;
  }

  #hd:has(.hd-inner:hover) .hd-logo .logo-divider,
  #hd:has(.hd-inner:hover) .hd-logo .logo-en,
  #hd:has(.hd-inner:focus-within) .hd-logo .logo-divider,
  #hd:has(.hd-inner:focus-within) .hd-logo .logo-en {
    opacity: 1;
  }

  #hd:has(.hd-inner:hover) .hd-gnb > ul > li > a,
  #hd:has(.hd-inner:focus-within) .hd-gnb > ul > li > a {
    color: #111;
    font-weight: 600;
    opacity: 1;
  }
}

/* 메인 히어로 */
.main-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000 url("/img/main/cont1.png") no-repeat right center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--pc-content-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-label {
  margin: 0 0 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.hero-title {
  margin: 0 0 28px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.hero-desc {
  margin: 0 0 40px;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 48px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.hero-btn .btn-arrow {
  margin-left: 8px;
  font-size: 14px;
}

.hero-btn-solid {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
}

.hero-btn-solid:hover {
  background: #f2f2f2;
  color: #111;
}

.hero-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* About */
.main-about {
  position: relative;
  background: #fff;
  color: #111;
  overflow: hidden;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  max-width: var(--pc-content-width);
  margin: 0 auto;
  padding: 140px 0 160px;
  box-sizing: border-box;
}

.about-left {
  flex: 0 0 38%;
  max-width: 460px;
}

.about-label {
  margin: 0 0 28px;
  color: #b3b3b3;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.about-title {
  margin: 0;
  color: #111;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.about-right {
  position: relative;
  flex: 1;
  padding-top: 8px;
  z-index: 1;
}

.about-desc {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: -0.02em;
}

.about-features {
  display: flex;
  gap: 24px;
  margin: 48px 0 0;
  padding: 36px 0 0;
  border-top: 1px solid #e6e6e6;
  list-style: none;
}

.about-features li {
  flex: 1;
}

.about-features strong {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-features span {
  display: block;
  color: #b3b3b3;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.about-watermark {
  position: absolute;
  right: -12px;
  bottom: -72px;
  color: #f0f0f0;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

/* Treatments */
.main-treatments {
  background: #000;
  color: #fff;
}

.treatments-inner {
  max-width: var(--pc-content-width);
  margin: 0 auto;
  padding: 120px 0 140px;
  box-sizing: border-box;
}

.treatments-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.treatments-label {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.treatments-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.treatments-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.treatments-more {
  flex-shrink: 0;
  color: #fff;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #2a2a2a;
  border-left: 1px solid #2a2a2a;
}

.treatments-grid li {
  position: relative;
  min-height: 240px;
  padding: 36px 32px 48px;
  overflow: hidden;
  border-right: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  box-sizing: border-box;
}

.treat-label {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.treat-name {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.treat-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.treat-num {
  position: absolute;
  right: 24px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 92px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Signature */
.main-signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  color: #111;
  min-height: 680px;
}

.signature-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #ececec;
}

.signature-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.signature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 80px 72px;
  box-sizing: border-box;
}

.signature-label {
  margin: 0 0 28px;
  color: #b3b3b3;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.signature-title {
  margin: 0 0 28px;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.signature-desc {
  margin: 0 0 48px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: -0.02em;
}

.signature-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e8e8e8;
}

.signature-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e8e8e8;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.signature-steps li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 6px;
  margin-top: -2px;
  border-left: 1.5px solid #c2c2c2;
  border-bottom: 1.5px solid #c2c2c2;
  transform: rotate(-45deg);
}

/* Journey */
.main-journey {
  background: #000;
  color: #fff;
}

.journey-inner {
  max-width: var(--pc-content-width);
  margin: 0 auto;
  padding: 120px 0 140px;
  box-sizing: border-box;
}

.journey-label {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.journey-title {
  margin: 0 0 80px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.journey-steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 36px;
  right: 36px;
  height: 1px;
  background: #3a3a3a;
}

.journey-steps li {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 280px;
}

.journey-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.journey-steps strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.journey-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

/* Location */
.main-location {
  background: #fff;
  color: #111;
}

.location-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 72px 140px;
  box-sizing: border-box;
}

.location-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.location-label {
  margin: 0 0 18px;
  color: #b3b3b3;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.location-title {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.location-guide {
  margin: 0 0 8px;
  color: #666;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: right;
}

.location-guide strong {
  color: #111;
  font-weight: 700;
}

.location-map {
  position: relative;
  overflow: hidden;
  background: #e9e9e9;
  min-height: 460px;
}

.location-map img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.location-info {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  padding: 36px 32px 32px;
  background: #000;
  color: #fff;
  box-sizing: border-box;
}

.location-info h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.location-addr {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.location-hours {
  margin: 0;
}

.location-hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.location-hours dt,
.location-hours dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.location-hours dd {
  font-variant-numeric: tabular-nums;
}

.location-map-link {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  line-height: 1;
}

.location-page {
  background: #fff;
  color: #111;
  word-break: keep-all;
}

.location-page .hours-label-mo {
  display: none;
}

/* 서브페이지 */
body.is-sub {
  background: #fff;
  color: #111;
  font-size: 0.75em;
}

body.is-sub #wrapper {
  padding-top: 78px;
}

.sub_cont {
}
.sub_cont_img {
  width: 100%;
}

/* 브랜드 스토리 / 의료진 / 상담 */
body.is-sub:has(.story-page),
body.is-sub:has(.doctors-page),
body.is-sub:has(.contact-page),
body.is-sub:has(.gallery-page) {
  background: #000;
  color: #fff;
  font-size: 16px;
}

body.is-sub:has(.product-page),
body.is-sub:has(.location-page) {
  background: #fff;
  color: #111;
  font-size: 16px;
}

body.is-sub:has(.story-page) #wrapper,
body.is-sub:has(.doctors-page) #wrapper,
body.is-sub:has(.contact-page) #wrapper,
body.is-sub:has(.gallery-page) #wrapper,
body.is-sub:has(.product-page) #wrapper,
body.is-sub:has(.location-page) #wrapper {
  padding-top: 0;
}

body.is-sub:has(.story-page) #wrapper,
body.is-sub:has(.doctors-page) #wrapper,
body.is-sub:has(.contact-page) #wrapper,
body.is-sub:has(.gallery-page) #wrapper {
  background: #000;
}

body.is-sub:has(.product-page) #wrapper,
body.is-sub:has(.location-page) #wrapper {
  background: #fff;
}

body.is-sub:has(.product-page) #container_wr,
body.is-sub:has(.product-page) #container,
body.is-sub:has(.contact-page) #container_wr,
body.is-sub:has(.contact-page) #container,
body.is-sub:has(.gallery-page) #container_wr,
body.is-sub:has(.gallery-page) #container,
body.is-sub:has(.location-page) #container_wr,
body.is-sub:has(.location-page) #container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.story-page {
  background: #000;
  color: #fff;
  word-break: keep-all;
}

/* 의료진 프로필 */
.doctors-page {
  background: #000;
  color: #fff;
  word-break: keep-all;
}

.doctors-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: var(--pc-content-width);
  margin: 0 auto;
  padding: 80px 0 140px;
  box-sizing: border-box;
}

.doctor-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 12px;
}

.doctor-card-photo {
  flex: 0 0 340px;
  width: 340px;
  background: #e8e8e8;
}

.doctor-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  box-sizing: border-box;
}

.doctor-card-clinic {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.doctor-card-name {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.doctor-card-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 56px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.doctor-card-info.is-cols {
  grid-template-columns: 1fr 1fr;
}

.doctor-card-group h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.doctor-card-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-card-group li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.doctor-card-group li:last-child {
  margin-bottom: 0;
}

.doctor-card-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.contact-page {
  background: #000;
  color: #fff;
  word-break: keep-all;
}

.contact-inner {
  max-width: var(--pc-content-width);
  margin: 0 auto;
  padding: 80px 0 140px;
  box-sizing: border-box;
}

.contact-head {
  max-width: 780px;
  margin: 0 0 56px;
}

.contact-title {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.contact-desc {
  margin: 20px 0 0;
  color: #fff;
  font-weight: 200;
  font-size: 18px;
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  width: calc((100% - 32px) / 3);
  min-height: 263px;
  padding: 52px 40px 32px;
  box-sizing: border-box;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.contact-card-ch {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-family: 'Science Gothic';
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1.3;
  padding-left: 22px;
  display: inline-block;
}

.contact-card-title {
  margin: 14px 0 0;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.contact-card-app {
  width: 52px;
  height: 52px;
  margin-top: auto;
  object-fit: contain;
}

.contact-card-qr {
  flex: 0 0 112px;
  width: 112px;
  align-self: flex-end;
  border: 2px solid #fff;
}

.contact-card-qr img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

/* 상품 상세 */
.product-page {
  background: #fff;
  color: #111;
  word-break: keep-all;
}

.product-hero {
  min-height: 420px;
  padding: 160px 24px 72px;
}

.product-hero.top_baneer-hero {
  overflow: visible;
}

.product-hero-title {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.product-select-wrap {
  display: inline-block;
  position: relative;
  z-index: 5;
  min-width: 180px;
  text-align: left;
}

.product-select-btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-width: 180px;
  height: 44px;
  padding: 0 42px 0 22px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  cursor: pointer;
}

.product-select-label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-select-btn::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 1.5px solid #111;
  border-bottom: 1.5px solid #111;
  transform: rotate(45deg);
  transition:
    transform 0.28s ease,
    margin-top 0.28s ease;
  pointer-events: none;
}

.product-select-wrap.is-open .product-select-btn {
  border-radius: 4px 4px 0 0;
}

.product-select-wrap.is-open .product-select-btn::after {
  margin-top: -2px;
  transform: rotate(225deg);
}

.product-select-panel {
  display: grid;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
  pointer-events: none;
}

.product-select-wrap.is-open .product-select-panel {
  grid-template-rows: 1fr;
  pointer-events: auto;
}

.product-select-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.product-select-list {
  margin: 0;
  padding: 4px 0 8px;
  list-style: none;
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-select-list a {
  display: block;
  padding: 11px 22px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

.product-select-list a:hover,
.product-select-list a:focus-visible {
  background: #f4f4f4;
}

.product-select-list a.is-current {
  font-weight: 700;
  background: #f4f4f4;
}

.product-body {
  max-width: 1020px;
  margin: 0 auto;
  padding: 80px 0 140px;
  text-align: center;
  box-sizing: border-box;
}

.product-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.product-visual img {
  position: relative;
  z-index: 1;
  height: auto;
}

.product-visual::after {
  content: "";
  width: 260px;
  height: 26px;
  margin-top: 8px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.14) 0%,
    transparent 72%
  );
  border-radius: 50%;
}

.product-name {
  margin: 0 0 28px;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

.product-desc {
  margin: 0 auto 88px;
  max-width: 620px;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: -0.03em;
}

.product-section {
  margin: 0 0 72px;
}

.product-section:last-child {
  margin-bottom: 0;
}

.product-section-title {
  margin: 0 0 22px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.product-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-check-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto 10px;
  padding: 16px 22px;
  background: #f5f5f5;
  border-radius: 6px;
  box-sizing: border-box;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.5;
  text-align: left;
}

.product-check-item:last-child {
  margin-bottom: 0;
}

.product-check-item::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 8px;
  margin-right: 12px;
  border-left: 2px solid #4a4a4a;
  border-bottom: 2px solid #4a4a4a;
  transform: rotate(-45deg) translateY(-2px);
}

.product-empty {
  margin: 80px 0;
  color: #666;
  font-size: 16px;
}

.treat-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1280px) {
  .doctors-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-card {
    width: calc((100% - 16px) / 2);
  }

  .doctor-card-photo {
    flex-basis: 280px;
    width: 280px;
  }

  .doctor-card-body {
    padding: 32px 36px;
  }

  .doctor-card-name {
    font-size: 28px;
  }

  .product-hero {
    min-height: 320px;
    padding: 120px 20px 56px;
  }

  .product-hero-title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .product-body {
    padding: 48px 20px 88px;
  }

  .product-name {
    font-size: 28px;
  }

  .product-desc {
    margin-bottom: 56px;
    font-size: 14px;
  }

  .product-section {
    margin-bottom: 48px;
  }

  .product-section-title {
    font-size: 16px;
  }

  .product-check-item {
    padding: 14px 16px;
    font-size: 14px;
  }
}

.top_baneer-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 140px 24px 100px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 70% 80% at 78% 0%,
      rgba(48, 92, 128, 0.28) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 50% 60% at 18% 100%,
      rgba(18, 36, 58, 0.45) 0%,
      transparent 62%
    ),
    #05080d;
}

.top_baneer-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.top_baneer-hero-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.top_baneer-hero-bg path {
  fill: none;
  stroke: rgba(210, 226, 240, 0.28);
  stroke-width: 1;
}

.top_baneer-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.top_baneer-hero-title {
  margin: 0;
  color: #fff;
  font-size: 41px;
  font-family: 'Science Gothic';
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1.3;
  display: inline-block;
}

.top_baneer-hero-sub {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.story-pov {
  background: #000;
}

.story-pov-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  max-width: var(--pc-content-width);
  margin: 0 auto;
  padding: 120px 0 140px;
  box-sizing: border-box;
}

.story-pov-left {
  flex: 0 0 42%;
  max-width: 520px;
}

.story-label {
  margin: 0 0 28px;
  color: #fff;
  font-family: 'Science Gothic';
  font-weight: 300;
  font-size: 15px;
  line-height: 1.52;
  letter-spacing: -0.04em;
  display: inline-block;
}

.story-pov-title {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.story-pov-right {
  flex: 1;
  padding-top: 6px;
}

.story-pov-right p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.02em;
}

.story-pov-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.story-pov-foot strong {
  font-weight: 500;
}

.story-values {
  background: #fff;
}

.story-values-inner {
  background-image: url(/img/contents/story/cont1.png);
  background-size: auto 100%;
  background-position: top right;
  background-repeat: no-repeat;
}

.story-values-visual {
  max-width: var(--pc-content-width);
  margin: 0 auto;
  padding: 120px 0 140px;
  box-sizing: border-box;
}

.story-values-head {
  width: 894px;
  padding: 100px 0 0 0;
  box-sizing: border-box;
}

.story-values-title {
  margin: 0 0 22px;
  color: #111;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.story-values-title .is-outline {
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1.4px #111;
}

.story-values-ko {
  margin: 0 0 14px;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.story-values-lead {
  margin: 0 0 48px;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.02em;
}

.story-points {
  width: 894px;
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  align-content: start;
  margin: 0;
  padding: 0 56px 110px 72px;
  list-style: none;
  border-top: 1px solid #e6e6e6;
  box-sizing: border-box;
}

.story-points li {
  padding: 28px 0 32px;
  border-bottom: 1px solid #e6e6e6;
}

.story-point-tag {
  display: block;
  margin-bottom: 14px;
  color: #b3b3b3;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
}

.story-points strong {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.story-points em {
  display: block;
  margin-bottom: 12px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.story-points p {
  margin: 0;
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.story-values-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.story-values-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.story-values-photo {
  display: none;
}

.gallery-page {
  background: #000;
  color: #fff;
  word-break: keep-all;
}

.gallery-inner {
  max-width: var(--pc-content-width);
  margin: 0 auto;
  padding: 80px 0 140px;
  box-sizing: border-box;
}

.gallery-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.gallery-title {
  margin: 0 0 48px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.gallery-stage {
  position: relative;
}

.gallery-main {
  margin: 0 0 16px;
}

.gallery-main .slick-list,
.gallery-nav .slick-list {
  overflow: hidden;
}

.gallery-main img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  background: #111;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.gallery-prev {
  left: 24px;
}

.gallery-next {
  right: 24px;
}

.gallery-nav .slick-slide {
  cursor: pointer;
  padding: 0 6px;
  box-sizing: border-box;
  opacity: 0.42;
  transition: opacity 0.2s ease;
}

.gallery-nav .slick-list {
  margin: 0 -6px;
}

.gallery-nav .slick-current {
  opacity: 1;
}

.gallery-nav img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  background: #111;
}

.gallery-stack {
  display: none;
}

@media (max-width: 1100px) {
  .hd-inner {
    height: 64px;
    padding: 0 24px;
  }

  .hd-logo .logo-ko {
    font-size: 16px;
  }

  .hd-logo .logo-en,
  .hd-logo .logo-divider {
    display: none;
  }

  .hd-menu-btn {
    display: block;
    z-index: 2010;
  }

  .hd-gnb {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    padding: 80px 28px 32px;
    background: #0b0b0b;
    transition: right 0.25s ease;
    z-index: 2005;
  }

  .hd-gnb.is-open {
    right: 0;
  }

  .hd-gnb > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    height: auto;
  }

  .hd-gnb > ul > li {
    display: block;
    width: 100%;
  }

  .hd-gnb > ul > li > a {
    height: auto;
    font-size: 16px;
  }

  .hd-sub {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0 0;
    padding: 0 0 0 4px;
    list-style: none;
  }

  .hd-sub a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .hd-sub a:hover,
  .hd-sub a.is-active {
    color: #fff;
  }

  .hd-dim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 2001;
    transition: opacity 0.2s ease;
  }

  .hd-dim.is-open {
    opacity: 1;
    visibility: visible;
  }

  .hero-inner {
    max-width: 540px;
    padding: 96px 24px 64px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-desc {
    font-size: 14px;
  }

  body.is-sub #wrapper {
    padding-top: 64px;
  }

  body.is-sub:has(.story-page) #wrapper,
  body.is-sub:has(.doctors-page) #wrapper,
  body.is-sub:has(.contact-page) #wrapper,
  body.is-sub:has(.gallery-page) #wrapper,
  body.is-sub:has(.product-page) #wrapper,
  body.is-sub:has(.location-page) #wrapper {
    padding-top: 0;
  }

  .top_baneer-hero {
    min-height: 420px;
    padding: 120px 20px 80px;
  }

  .top_baneer-hero-title {
    font-size: 22px;
    letter-spacing: 0.08em;
  }

  .top_baneer-hero-sub {
    font-size: 14px;
  }

  .doctors-inner {
    gap: 20px;
    padding: 48px 20px 88px;
  }

  .contact-inner {
    padding: 48px 20px 88px;
  }

  .contact-head {
    margin-bottom: 32px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-desc {
    font-size: 14px;
  }

  .contact-card {
    width: 100%;
    min-height: 180px;
  }

  .contact-card-title {
    font-size: 18px;
  }

  .doctor-card {
    flex-direction: column;
    border-radius: 10px;
  }

  .doctor-card-photo {
    flex: none;
    width: 100%;
    height: 320px;
  }

  .doctor-card-body {
    padding: 28px 24px 32px;
  }

  .doctor-card-name {
    font-size: 24px;
  }

  .doctor-card-info,
  .doctor-card-info.is-cols {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .story-pov-inner {
    flex-direction: column;
    gap: 36px;
    padding: 72px 24px 88px;
  }

  .story-pov-left {
    flex: none;
    max-width: none;
  }

  .story-pov-title {
    font-size: 28px;
  }

  .story-pov-right p {
    font-size: 14px;
  }

  .story-pov-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
  }

  .story-values {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .story-values-head {
    grid-column: 1;
    grid-row: 1;
    padding: 64px 20px 8px;
  }

  .story-values-title {
    font-size: 28px;
  }

  .story-values-ko {
    font-size: 18px;
  }

  .story-values-lead {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .story-values-visual {
    grid-column: 1;
    grid-row: 2;
    min-height: 420px;
  }

  .story-points {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    column-gap: 0;
    padding: 0 20px 72px;
  }

  .story-points li {
    padding: 24px 0 28px;
  }

  .gallery-inner {
    padding: 56px 24px 88px;
  }

  .gallery-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .gallery-main img {
    height: 380px;
  }

  .gallery-nav img {
    height: 88px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    font-size: 18px;
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
    padding: 80px 24px 100px;
  }

  .about-left {
    flex: none;
    max-width: none;
  }

  .about-title {
    font-size: 32px;
  }

  .about-desc br {
    display: none;
  }

  .about-features {
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
  }

  .about-features strong {
    font-size: 16px;
  }

  .about-watermark {
    font-size: 72px;
    bottom: -36px;
    right: 0;
  }

  .treatments-inner {
    padding: 80px 24px 100px;
  }

  .treatments-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .treatments-title {
    font-size: 30px;
  }

  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatments-grid li {
    min-height: 200px;
    padding: 28px 24px 40px;
  }

  .treat-num {
    font-size: 72px;
  }

  .main-signature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .signature-visual {
    min-height: 360px;
  }

  .signature-content {
    padding: 64px 24px 80px;
  }

  .signature-title {
    font-size: 30px;
  }

  .journey-inner {
    padding: 80px 24px 100px;
  }

  .journey-title {
    font-size: 30px;
    margin-bottom: 48px;
  }

  .journey-steps {
    flex-wrap: wrap;
    gap: 36px 16px;
  }

  .journey-steps::before {
    display: none;
  }

  .journey-steps li {
    flex: 1 1 calc(50% - 16px);
    max-width: none;
  }

  .location-inner {
    padding: 80px 24px 100px;
  }

  .location-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .location-title {
    font-size: 30px;
  }

  .location-guide {
    text-align: left;
    margin: 0;
  }

  .location-map img {
    height: 400px;
  }

  .location-info {
    width: 280px;
    padding: 28px 24px 28px;
  }
}

@media (max-width: 700px) {
  .hd-inner {
    height: 56px;
    padding: 0 20px;
  }

  .hd-logo .logo-ko,
  .hd-logo .logo-divider {
    display: none;
  }

  .hd-logo .logo-en {
    display: inline;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 1;
  }

  .hd-menu-btn span {
    width: 22px;
    height: 1.5px;
    margin: 5px auto;
  }

  body.is-sub #wrapper {
    padding-top: 56px;
  }

  .hero-label,
  .about-label,
  .treatments-label,
  .treatments-desc,
  .signature-label,
  .journey-label,
  .location-label,
  .location-guide,
  .treat-label,
  .about-watermark {
    display: none;
  }

  .main-hero {
    min-height: 100svh;
    align-items: stretch;
    background-position: 68% center;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    min-height: 100svh;
    padding: 88px 24px 28px;
    box-sizing: border-box;
  }

  .hero-title {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .hero-desc {
    margin: 0;
    max-width: none;
    font-size: 14px;
    line-height: 1.75;
    word-break: keep-all;
  }

  .hero-btns {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 40px;
  }

  .hero-btn {
    flex: 1;
    width: auto;
    min-width: 0;
    height: 46px;
    padding: 0 10px;
    font-size: 14px;
  }

  .about-inner {
    gap: 20px;
    padding: 64px 24px 72px;
  }

  .about-title {
    font-size: 28px;
    line-height: 1.4;
    word-break: keep-all;
  }

  .about-desc {
    font-size: 14px;
    line-height: 1.8;
    word-break: keep-all;
  }

  .about-features {
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
    padding-top: 0;
    border-top: 0;
  }

  .about-features strong {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .about-features span {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .treatments-inner {
    padding: 64px 0 0;
  }

  .treatments-head {
    padding: 0 24px;
    margin-bottom: 28px;
  }

  .treatments-title {
    margin: 0 0 20px;
    font-size: 26px;
    word-break: keep-all;
  }

  .treatments-more {
    min-width: 0;
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: 0;
  }

  .treatments-grid li {
    min-height: 168px;
    padding: 24px 16px 36px;
  }

  .treat-name {
    margin-bottom: 10px;
    font-size: 16px;
    word-break: keep-all;
  }

  .treat-desc {
    max-width: none;
    font-size: 12px;
    line-height: 1.6;
  }

  .treat-num {
    right: 10px;
    bottom: 4px;
    font-size: 56px;
  }

  .signature-visual {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .signature-content {
    padding: 48px 24px 64px;
  }

  .signature-title {
    font-size: 26px;
    word-break: keep-all;
  }

  .signature-desc {
    font-size: 14px;
    margin-bottom: 28px;
    word-break: keep-all;
  }

  .signature-desc br {
    display: none;
  }

  .signature-steps li {
    font-size: 14px;
    padding: 16px 0;
  }

  .journey-inner {
    padding: 64px 24px 72px;
  }

  .journey-title {
    font-size: 26px;
    margin-bottom: 36px;
    word-break: keep-all;
  }

  .journey-steps {
    flex-direction: column;
    gap: 28px;
  }

  .journey-steps li {
    flex: none;
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 16px;
    align-items: start;
    max-width: none;
  }

  .journey-num {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .journey-steps strong {
    font-size: 18px;
  }

  .location-inner {
    padding: 56px 0 0;
  }

  .location-head {
    padding: 0 24px;
    margin-bottom: 24px;
  }

  .location-title {
    font-size: 24px;
    word-break: keep-all;
  }

  .location-map {
    min-height: 0;
  }

  .location-map img {
    height: 260px;
  }

  .location-info {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 32px 24px 36px;
  }

  .location-info h3 {
    font-size: 22px;
  }

  .location-map-link {
    right: 24px;
    bottom: 28px;
  }

  .top_baneer-hero {
    min-height: 280px;
    padding: 92px 24px 56px;
  }

  .top_baneer-hero-title {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.02em;
    transform: scaleX(1.08);
    word-break: keep-all;
  }

  .top_baneer-hero-sub {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
  }

  .story-pov-inner {
    gap: 28px;
    padding: 56px 24px 64px;
  }

  .story-label {
    margin-bottom: 18px;
    font-size: 13px;
    transform: none;
  }

  .story-pov-title {
    font-size: 26px;
    word-break: keep-all;
  }

  .story-pov-title br {
    display: none;
  }

  .story-pov-right p {
    font-size: 14px;
    line-height: 1.85;
    word-break: keep-all;
  }

  .story-pov-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .story-values-inner {
    background-image: none;
  }

  .story-values-visual {
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .story-values-head {
    width: 100%;
    padding: 56px 24px 8px;
  }

  .story-values-title {
    margin-bottom: 18px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    word-break: keep-all;
  }

  .story-values-title .is-outline {
    color: #111;
    font-weight: 800;
    -webkit-text-stroke: 0;
  }

  .story-values-ko {
    font-size: 16px;
  }

  .story-values-lead {
    margin-bottom: 28px;
    font-size: 14px;
    word-break: keep-all;
  }

  .story-points {
    width: 100%;
    padding: 0 24px;
    border-top: 1px solid #e6e6e6;
  }

  .story-points li {
    padding: 22px 0 24px;
  }

  .story-point-tag {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .story-points strong {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .story-points em {
    display: none;
  }

  .story-points p {
    font-size: 13px;
    word-break: keep-all;
  }

  .story-values-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    object-position: center top;
  }

  .gallery-inner {
    padding: 48px 24px 72px;
  }

  .gallery-label {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .gallery-title {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.4;
  }

  .gallery-stage {
    display: none;
  }

  .gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .gallery-stack img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #111;
  }

  .location-page .location-label,
  .location-page .location-guide {
    display: block;
  }

  .location-page .location-inner {
    padding: 48px 0 0;
  }

  .location-page .location-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px;
    margin-bottom: 28px;
  }

  .location-page .location-title {
    font-size: 26px;
    line-height: 1.4;
  }

  .location-page .location-guide {
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
  }

  .location-page .location-map {
    overflow: hidden;
  }

  .location-page .location-map img {
    height: 220px;
  }

  .location-page .location-info {
    position: relative;
    width: 100%;
    padding: 32px 24px 40px;
  }

  .location-page .location-info h3 {
    margin-bottom: 12px;
    font-size: 22px;
    letter-spacing: 0.06em;
  }

  .location-page .location-addr {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .location-page .hours-label-pc {
    display: none;
  }

  .location-page .hours-label-mo {
    display: inline;
  }

  .location-page .hours-sun {
    display: none;
  }

  .location-page .location-hours div {
    margin-bottom: 10px;
  }

  .location-page .location-map-link {
    right: 24px;
    bottom: 32px;
  }

  body.is-sub:has(.product-page) .hd-logo {
    align-items: baseline;
    gap: 6px;
  }

  body.is-sub:has(.product-page) .hd-logo .logo-ko,
  body.is-sub:has(.product-page) .hd-logo .logo-divider {
    display: inline;
  }

  body.is-sub:has(.product-page) .hd-logo .logo-ko {
    font-size: 14px;
  }

  body.is-sub:has(.product-page) .hd-logo .logo-divider {
    font-size: 11px;
    opacity: 0.7;
  }

  body.is-sub:has(.product-page) .hd-logo .logo-en {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .product-hero {
    min-height: 0;
    padding: 88px 24px 24px;
    align-items: flex-end;
  }

  .product-hero-title {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 700;
  }

  .product-select-wrap {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .product-select-btn {
    min-width: 0;
    height: 48px;
    padding: 0 40px 0 18px;
    font-size: 15px;
  }

  .product-body {
    padding: 0 24px 80px;
  }

  .product-visual {
    margin: 0 -24px 28px;
  }

  .product-visual img {
    width: 100%;
    height: auto;
  }

  .product-visual::after {
    display: none;
  }

  .product-name {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .product-desc {
    margin-bottom: 48px;
    max-width: none;
    font-size: 14px;
    line-height: 1.8;
  }

  .product-section {
    margin-bottom: 40px;
  }

  .product-section-title {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .product-check-item {
    justify-content: center;
    padding: 14px 16px;
    font-size: 13px;
    text-align: center;
  }

  .product-check-item::before {
    margin-right: 8px;
  }

  body.is-sub:has(.contact-page) .hd-logo {
    align-items: baseline;
    gap: 6px;
  }

  body.is-sub:has(.contact-page) .hd-logo .logo-ko,
  body.is-sub:has(.contact-page) .hd-logo .logo-divider {
    display: inline;
  }

  body.is-sub:has(.contact-page) .hd-logo .logo-ko {
    font-size: 14px;
  }

  body.is-sub:has(.contact-page) .hd-logo .logo-divider {
    font-size: 11px;
    opacity: 0.7;
  }

  body.is-sub:has(.contact-page) .hd-logo .logo-en {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .contact-inner {
    padding: 48px 24px 72px;
  }

  .contact-head {
    max-width: none;
    margin-bottom: 28px;
  }

  .contact-head .story-label {
    margin-bottom: 16px;
    font-size: 13px;
    transform: none;
    padding-left: 0;
  }

  .contact-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .contact-desc {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
  }

  .contact-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .contact-card {
    position: relative;
    width: 100%;
    min-height: 148px;
    padding: 22px 20px 18px;
    border-radius: 8px;
  }

  .contact-card-ch {
    padding-left: 0;
    transform: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
  }

  .contact-card-title {
    margin: 8px 0 0;
    font-size: 18px;
  }

  .contact-card-app {
    width: 40px;
    height: 40px;
    margin-top: 28px;
  }

  .contact-card-qr {
    display: none;
  }

  .contact-card::after {
    content: "→";
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
  }
}

/* Footer */
#ft.site-footer,
.site-footer {
  min-width: 0;
  background: #000;
  color: #fff;
  margin: 0;
  text-align: left;
  font-size: 16px;
  font-family: "Pretendard", "Malgun Gothic", sans-serif;
}

.ft-inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 72px 72px;
  box-sizing: border-box;
}

.ft-info {
  flex: 1;
  min-width: 0;
}

.ft-brand {
  display: block;
  margin-bottom: 28px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.ft-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}

.ft-tel .fa {
  font-size: 18px;
}

.ft-addr,
.ft-biz {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.ft-copy {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.ft-nav {
  display: flex;
  gap: 72px;
  flex-shrink: 0;
}

.ft-col h3,
.ft-col h3 a {
  margin: 0 0 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ft-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ft-col li {
  margin: 0 0 12px;
}

.ft-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1.6;
}

.ft-col a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .ft-inner {
    flex-direction: column;
    gap: 48px;
    padding: 64px 24px 56px;
  }

  .ft-nav {
    flex-wrap: wrap;
    gap: 36px 48px;
  }

  .ft-col {
    min-width: 140px;
  }

  .ft-brand,
  .ft-tel {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  .ft-inner {
    flex-direction: column;
    gap: 0;
    padding: 56px 24px 48px;
  }

  .ft-nav {
    display: none;
  }

  .ft-brand {
    margin-bottom: 22px;
    font-size: 20px;
    letter-spacing: 0.02em;
  }

  .ft-tel {
    margin-bottom: 22px;
    font-size: 32px;
    letter-spacing: -0.03em;
  }

  .ft-tel .fa {
    font-size: 22px;
  }

  .ft-addr,
  .ft-biz {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.75;
  }

  .ft-copy {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
  }
}
