/* ================================================================
   He-na — アイブロウ＆まつげパーマ専門
   思想: モダン・韓国 × ネオ・ブリュータリズム
   質感: グラスモフィズム
   カラー: サクラモダン系（グレー×ピンク）
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; }

.demo-hena {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--he-bg);
  color: var(--he-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------------
   フェードイン（ふわっと・中）
--------------------------------------------------------------- */
.he-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.he-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------
   Header
--------------------------------------------------------------- */
.he-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-bottom 0.3s;
}
.he-header.is-scrolled {
  background: rgba(249,247,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--he-dark);
}
.he-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 56px);
}
.he-header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.he-header__logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--he-dark);
}
.he-header__logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--he-sub);
}
.he-header__nav { display: none; }
@media (min-width: 900px) { .he-header__nav { display: block; } }
.he-header__list { display: flex; gap: 28px; }
.he-header__list a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--he-mid);
  font-weight: 500;
  transition: color 0.2s;
}
.he-header__list a:hover { color: var(--he-dark); }
.he-header__cta {
  display: none;
  padding: 9px 22px;
  background: var(--he-dark);
  color: var(--he-bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 2px solid var(--he-dark);
  box-shadow: 3px 3px 0 var(--he-pink);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.he-header__cta:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--he-pink); }
@media (min-width: 900px) { .he-header__cta { display: block; } }

/* バーガー */
.he-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
@media (min-width: 900px) { .he-header__burger { display: none; } }
.he-header__burger span {
  display: block;
  height: 2px;
  background: var(--he-dark);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.he-header__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.he-header__burger.is-active span:nth-child(2) { opacity: 0; }
.he-header__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ドロワー */
.he-drawer {
  position: fixed;
  top: 40px;
  right: 0;
  width: min(320px, 80vw);
  height: calc(100dvh - 40px);
  background: var(--he-bg);
  border-left: 2px solid var(--he-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 64px 36px 48px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.he-drawer.is-open { transform: translateX(0); }
.he-drawer__list li + li { border-top: 1px solid var(--he-rule); }
.he-drawer__list a {
  display: block;
  padding: 18px 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--he-dark);
}
.he-drawer__cta {
  display: block;
  margin-top: 40px;
  padding: 16px;
  text-align: center;
  background: var(--he-dark);
  color: var(--he-bg);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 2px solid var(--he-dark);
  box-shadow: 3px 3px 0 var(--he-pink);
}
.he-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,42,42,0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.he-drawer__overlay.is-visible { opacity: 1; pointer-events: all; }


/* ---------------------------------------------------------------
   Hero — スプリットヒーロー（オーバーレイ型）
--------------------------------------------------------------- */
.he-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
}
.he-hero__img {
  position: relative;
  overflow: hidden;
  order: 2;
}
.he-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.he-hero__img-overlay { display: none; }

.he-hero__text {
  order: 1;
  background: var(--he-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 8vw, 120px) clamp(40px, 5vw, 80px) clamp(60px, 6vw, 80px);
  position: relative;
}
.he-hero__badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--he-pink-d);
  margin-bottom: 20px;
}

/* 巨大ロゴタイポ */
.he-hero__logo {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.88;
  color: var(--he-dark);
  font-style: normal;
  display: block;
  letter-spacing: -0.02em;
}
.he-hero__copy {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--he-dark);
  line-height: 1.45;
  margin-top: 20px;
  letter-spacing: 0.02em;
}
.he-hero__sub {
  font-size: clamp(0.8rem, 1.4vw, 0.9rem);
  color: var(--he-sub);
  margin-top: 16px;
  line-height: 1.7;
}

/* 価格タグ */
.he-hero__price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 20px;
  border: 2px solid var(--he-dark);
  box-shadow: 3px 3px 0 var(--he-pink);
  font-size: 0.78rem;
  color: var(--he-mid);
  letter-spacing: 0.06em;
  background: var(--he-white);
}
.he-hero__price-tag strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--he-dark);
  line-height: 1;
}
.he-hero__price-tag strong span {
  font-size: 0.7em;
  color: var(--he-sub);
}
.he-hero__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.he-hero__btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--he-dark);
  color: var(--he-bg);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 2px solid var(--he-dark);
  box-shadow: 4px 4px 0 var(--he-pink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.he-hero__btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--he-pink); }
.he-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--he-mid);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.he-hero__link:hover { color: var(--he-dark); }

/* スマホ: オーバーレイ型 */
@media (max-width: 767px) {
  .he-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .he-hero__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    order: 1;
  }
  .he-hero__img-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,42,42,0.85) 0%, rgba(42,42,42,0.45) 55%, rgba(42,42,42,0.15) 100%);
  }
  .he-hero__text {
    position: relative;
    z-index: 2;
    background: transparent;
    min-height: 100svh;
    justify-content: flex-end;
    padding-bottom: 60px;
    order: 2;
  }
  .he-hero__badge { color: var(--he-pink-l); }
  .he-hero__logo { color: var(--he-bg); }
  .he-hero__copy { color: var(--he-bg); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
  .he-hero__sub { color: rgba(249,247,247,0.75); }
  .he-hero__price-tag { background: rgba(254,254,254,0.15); border-color: rgba(254,254,254,0.4); box-shadow: none; color: var(--he-bg); }
  .he-hero__price-tag strong { color: var(--he-bg); }
}


/* ---------------------------------------------------------------
   Marquee
--------------------------------------------------------------- */
.he-marquee {
  overflow: hidden;
  background: var(--he-dark);
  border-top: 2px solid var(--he-dark);
  border-bottom: 2px solid var(--he-dark);
  padding: 12px 0;
}
.he-marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: heMarquee 16s linear infinite;
  width: max-content;
}
.he-marquee__word {
  font-family: 'DM Serif Display', serif;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--he-bg);
  padding: 0 24px;
}
.he-marquee__sep {
  color: var(--he-pink);
  font-size: 1rem;
  font-weight: 700;
  padding: 0 4px;
}
@keyframes heMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---------------------------------------------------------------
   Concept — 非対称 × 縦書きアクセント
--------------------------------------------------------------- */
.he-concept {
  background: var(--he-white);
  padding: 120px 0;
  overflow: hidden;
}
.he-concept__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* 画像カラム */
.he-concept__img-col {
  position: relative;
}
.he-concept__img-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--he-dark);
  box-shadow: 6px 6px 0 var(--he-pink);
  aspect-ratio: 3/4;
}
.he-concept__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.he-concept__img-frame:hover img { transform: scale(1.04); }

/* 縦書きアクセント */
.he-concept__vertical {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--he-pink);
  opacity: 0.45;
  letter-spacing: 0.12em;
  pointer-events: none;
  user-select: none;
}

/* テキストカラム */
.he-concept__en {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--he-pink-d);
  margin-bottom: 20px;
  font-weight: 500;
}
.he-concept__headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--he-dark);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.he-concept__text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--he-sub);
  margin-bottom: 40px;
}

/* 実績スタッツ */
.he-concept__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.he-concept__stat {
  border: 2px solid var(--he-dark);
  padding: 20px 16px;
  text-align: center;
  background: var(--he-bg);
  transition: transform 0.15s, box-shadow 0.15s;
}
.he-concept__stat:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--he-pink); }
.he-concept__stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--he-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.he-concept__stat-num small {
  font-size: 0.55em;
  color: var(--he-sub);
}
.he-concept__stat-label {
  display: block;
  font-size: 0.62rem;
  color: var(--he-muted);
  letter-spacing: 0.08em;
}


/* ---------------------------------------------------------------
   Special Menu — ベントーグリッド × ブリュータリズム
--------------------------------------------------------------- */
.he-menu {
  background: var(--he-bg-2);
  padding: 120px 0;
}
.he-menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
}
.he-menu__header { margin-bottom: 48px; }
.he-menu__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--he-pink-d);
  font-weight: 500;
  margin-bottom: 12px;
}
.he-menu__headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--he-dark);
}
.he-menu__head-note {
  font-size: 0.68rem;
  color: var(--he-muted);
  margin-top: 8px;
}

/* ベントーグリッド */
.he-menu__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 300px 300px 260px;
  gap: 4px;
}
.he-menu__card--1 { grid-column: 1; grid-row: 1 / 3; }
.he-menu__card--2 { grid-column: 2; grid-row: 1; }
.he-menu__card--3 { grid-column: 2; grid-row: 2; }
.he-menu__card--4 { grid-column: 1 / 3; grid-row: 3; }

/* カード共通 */
.he-menu__card {
  background: var(--he-white);
  border: 2.5px solid var(--he-dark);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 4px 4px 0 var(--he-dark);
}
.he-menu__card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--he-dark); }

/* ピンクカード（No.1） */
.he-menu__card--pink { background: var(--he-pink-l); }

/* 画像付きカード（No.1） */
.he-menu__card--1 .he-menu__card-img {
  flex: 1;
  margin: 16px -32px -32px -32px;
  overflow: hidden;
  min-height: 0;
}
.he-menu__card--1 .he-menu__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.he-menu__card--1:hover .he-menu__card-img img { transform: scale(1.05); }

/* 画像付きカード（No.2・No.3） */
.he-menu__card--2 .he-menu__card-img,
.he-menu__card--3 .he-menu__card-img {
  flex: 0 0 95px;
  margin: 12px -32px -32px -32px;
  overflow: hidden;
}
.he-menu__card--2 .he-menu__card-img img,
.he-menu__card--3 .he-menu__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.he-menu__card--2:hover .he-menu__card-img img,
.he-menu__card--3:hover .he-menu__card-img img { transform: scale(1.05); }

/* ダークカード（No.4・セット） */
.he-menu__card--dark {
  background: var(--he-dark);
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  box-shadow: 4px 4px 0 var(--he-pink);
}
.he-menu__card--dark:hover { box-shadow: 6px 6px 0 var(--he-pink); }
.he-menu__card--dark .he-menu__card-body {
  flex: 1;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.he-menu__card-img--wide {
  flex: 0 0 40%;
  overflow: hidden;
}
.he-menu__card-img--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.he-menu__card--dark:hover .he-menu__card-img--wide img { transform: scale(1.04); }

/* カード内要素 */
.he-menu__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.he-menu__badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--he-dark);
  color: var(--he-bg);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.he-menu__badge--inv { background: var(--he-pink); color: var(--he-dark); }
.he-menu__no {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: var(--he-muted);
  letter-spacing: 0.1em;
}
.he-menu__no--inv { color: rgba(249,247,247,0.4); }

/* 価格（大） */
.he-menu__price {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--he-dark);
  line-height: 1;
  margin: 8px 0;
}
.he-menu__price span { font-size: 0.55em; color: var(--he-sub); }
.he-menu__price--inv { color: var(--he-bg); }
.he-menu__price--inv span { color: rgba(249,247,247,0.6); }

.he-menu__name {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  color: var(--he-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.he-menu__name--inv { color: var(--he-bg); }
.he-menu__detail { font-size: 0.75rem; color: var(--he-sub); line-height: 1.6; flex: 1; }
.he-menu__detail--inv { color: rgba(249,247,247,0.65); }
.he-menu__meta { display: flex; align-items: center; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.he-menu__time {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--he-muted);
  letter-spacing: 0.1em;
}
.he-menu__time--inv { color: rgba(249,247,247,0.5); }
.he-menu__note {
  font-size: 0.65rem;
  color: var(--he-pink-d);
  font-weight: 500;
}
.he-menu__note--inv { color: var(--he-pink-l); }

.he-menu__cta { margin-top: 48px; text-align: center; }
.he-menu__btn {
  display: inline-block;
  padding: 14px 44px;
  border: 2.5px solid var(--he-dark);
  background: var(--he-white);
  color: var(--he-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  box-shadow: 4px 4px 0 var(--he-dark);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.he-menu__btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--he-dark); background: var(--he-dark); color: var(--he-bg); }


/* ---------------------------------------------------------------
   Step Story — 数字付き横ライン × ブリュータリズム枠線
--------------------------------------------------------------- */
.he-step {
  background: var(--he-white);
  padding: 120px 0;
}
.he-step__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.he-step__header { margin-bottom: 64px; }
.he-step__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--he-pink-d);
  font-weight: 500;
  margin-bottom: 12px;
}
.he-step__headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--he-dark);
}
.he-step__list { display: flex; flex-direction: column; gap: 4px; }

/* ブリュータリズム ステップカード */
.he-step__item {
  display: grid;
  grid-template-columns: 80px 340px 1fr;
  gap: 0;
  border: 2.5px solid var(--he-dark);
  position: relative;
  background: var(--he-bg);
  transition: transform 0.15s, box-shadow 0.15s;
}
.he-step__item:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--he-pink); }

/* ピンクオフセット枠 */
.he-step__item::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: -4px;
  bottom: -4px;
  border: 1.5px solid var(--he-pink);
  z-index: -1;
  pointer-events: none;
}

/* No列 */
.he-step__no-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-right: 2.5px solid var(--he-dark);
  background: var(--he-dark);
  gap: 6px;
  min-width: 80px;
}
.he-step__no {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--he-bg);
  line-height: 1;
}
.he-step__en {
  font-family: 'Inter', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-pink-l);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* 画像列 */
.he-step__media {
  position: relative;
  overflow: hidden;
  border-right: 2.5px solid var(--he-dark);
  aspect-ratio: 4/3;
  width: 340px;
  flex-shrink: 0;
}
.he-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.he-step__item:hover .he-step__media img { transform: scale(1.04); }

/* テキスト列 */
.he-step__body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.he-step__ja {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--he-dark);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.he-step__text {
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--he-sub);
}


/* ---------------------------------------------------------------
   Trust / Voice — 引用スタイル × アウトラインテキスト
--------------------------------------------------------------- */
.he-trust {
  background: var(--he-bg-2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* アウトライン背景装飾 */
.he-trust__deco {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(212,165,165,0.18);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.he-trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}
.he-trust__head { margin-bottom: 56px; }
.he-trust__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--he-pink-d);
  font-weight: 500;
  margin-bottom: 12px;
}
.he-trust__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--he-dark);
  margin-bottom: 8px;
}
.he-trust__title strong { color: var(--he-pink-d); }
.he-trust__sub {
  font-size: 0.82rem;
  color: var(--he-sub);
  letter-spacing: 0.06em;
}

/* 口コミグリッド */
.he-trust__voices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 64px;
}
.he-trust__voice {
  background: var(--he-white);
  border: 2px solid var(--he-dark);
  padding: clamp(24px, 3.5vw, 36px);
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.he-trust__voice:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--he-pink); }
.he-trust__voice-menu {
  display: inline-block;
  padding: 3px 10px;
  background: var(--he-pink-l);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--he-pink-d);
  margin-bottom: 14px;
  border: 1px solid var(--he-pink);
}
.he-trust__voice-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--he-mid);
  margin-bottom: 16px;
  font-style: normal;
  quotes: none;
}
.he-trust__voice-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--he-rule);
  padding-top: 14px;
}
.he-trust__voice-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--he-dark);
}
.he-trust__voice-attr {
  font-size: 0.68rem;
  color: var(--he-muted);
}

/* サロン雰囲気写真ストリップ */
.he-trust__scene {
  position: relative;
  height: 220px;
  overflow: hidden;
  margin-bottom: 64px;
  border: 3px solid var(--he-dark);
  box-shadow: 5px 5px 0 var(--he-pink);
}
.he-trust__scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.he-trust__scene:hover img { transform: scale(1.03); }

/* スタッフ */
.he-trust__staff-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--he-sub);
  margin-bottom: 20px;
}
.he-trust__staff {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border: 2.5px solid var(--he-dark);
  box-shadow: 5px 5px 0 var(--he-pink);
  background: var(--he-white);
  overflow: hidden;
}
.he-trust__staff-photo {
  overflow: hidden;
}
.he-trust__staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.he-trust__staff-body {
  padding: clamp(28px, 4vw, 48px);
  border-left: 2.5px solid var(--he-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.he-trust__staff-role {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--he-pink-d);
  font-weight: 500;
  margin-bottom: 8px;
}
.he-trust__staff-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--he-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}
.he-trust__staff-name span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: var(--he-sub);
  font-weight: 400;
  margin-left: 10px;
}
.he-trust__staff-career {
  font-size: 0.7rem;
  color: var(--he-muted);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.he-trust__staff-msg {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--he-sub);
}


/* ---------------------------------------------------------------
   Access
--------------------------------------------------------------- */
.he-access {
  background: var(--he-bg);
  padding: 120px 0;
}
.he-access__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.he-access__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--he-pink-d);
  font-weight: 500;
  margin-bottom: 12px;
}
.he-access__headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--he-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.he-access__sub {
  font-size: 0.78rem;
  color: var(--he-sub);
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}
.he-access__dl { margin-bottom: 40px; }
.he-access__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--he-rule);
  font-size: 0.82rem;
}
.he-access__row:last-child { border-bottom: 1px solid var(--he-rule); }
.he-access__row dt { color: var(--he-sub); font-size: 0.7rem; letter-spacing: 0.1em; padding-top: 2px; }
.he-access__row dd { color: var(--he-mid); line-height: 1.75; }
.he-access__note { font-size: 0.7rem; color: var(--he-muted); margin-left: 6px; }
.he-access__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--he-dark);
  color: var(--he-bg);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 2.5px solid var(--he-dark);
  box-shadow: 4px 4px 0 var(--he-pink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.he-access__btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--he-pink); }
.he-access__img {
  border: 3px solid var(--he-dark);
  box-shadow: 6px 6px 0 var(--he-dark);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.he-access__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.he-access__img:hover img { transform: scale(1.04); }


/* ---------------------------------------------------------------
   Footer
--------------------------------------------------------------- */
.he-footer {
  background: var(--he-dark);
  border-top: 3px solid var(--he-dark);
  padding: 56px clamp(24px, 5vw, 80px);
}
.he-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.he-footer__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--he-bg);
  letter-spacing: 0.04em;
}
.he-footer__sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249,247,247,0.3);
}
.he-footer__copy {
  margin-top: 8px;
  font-size: 0.62rem;
  color: rgba(249,247,247,0.2);
  letter-spacing: 0.06em;
}


/* ---------------------------------------------------------------
   Responsive — 768px以下
--------------------------------------------------------------- */
@media (max-width: 767px) {

  /* Concept */
  .he-concept__inner { grid-template-columns: 1fr; gap: 48px; }
  .he-concept__vertical { display: none; }
  .he-concept__stats { grid-template-columns: repeat(3, 1fr); }

  /* Menu */
  .he-menu__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .he-menu__card--1 { grid-column: 1 / 3; grid-row: 1; }
  .he-menu__card--2 { grid-column: 1; grid-row: 2; }
  .he-menu__card--3 { grid-column: 2; grid-row: 2; }
  .he-menu__card--4 { grid-column: 1 / 3; grid-row: 3; }
  .he-menu__card--1 .he-menu__card-img { display: none; }
  .he-menu__card--2 .he-menu__card-img,
  .he-menu__card--3 .he-menu__card-img { flex: 0 0 68px; margin: 10px -20px -20px -20px; }
  .he-menu__card--dark { flex-direction: column; }
  .he-menu__card-img--wide { height: 180px; width: 100%; flex: 0 0 auto; }

  /* Step */
  .he-step__item {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
  }
  .he-step__no-wrap { grid-row: 1 / 3; }
  .he-step__media {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--he-dark);
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 16/9;
  }
  .he-step__body { grid-column: 2; grid-row: 2; padding: 20px 20px; }

  /* Trust voices */
  .he-trust__voices { grid-template-columns: 1fr; }

  /* Staff */
  .he-trust__staff { grid-template-columns: 120px 1fr; }

  /* Access */
  .he-access__inner { grid-template-columns: 1fr; }
}
