/* ==========================================================
   NUKUMO hair — style.css
   design-guideline.md のトークン定義に従う
   ========================================================== */

/* ---------- 1. デザイントークン ---------- */
:root {
  /* レイアウト */
  --container-pad: 95px;
  --section-gap: 140px;
  --block-gap-lg: 60px;
  --block-gap-md: 40px;
  --block-gap-sm: 20px;

  /* カラー */
  --color-bg: #f7f6f0;
  --color-text: #141811;
  --color-muted: #a6a6a1;
  --color-white: #ffffff;
  --color-panel-1: #121912;
  --color-panel-2: #314032;
  --color-panel-3: #9ca58f;
  --color-panel-4: #ffffff;
  --color-img-fallback: #e5e3da;

  /* タイポグラフィ */
  --fs-hero-en: 50px;
  --fs-hero-ja: 14px;
  --fs-heading-en: 40px;
  --fs-heading-label: 12px;
  --fs-panel-en: 46px;
  --fs-panel-ja: 15px;
  --fs-lead: 20px;
  --fs-body: 15px;
  --fs-card-title: 15px;
  --fs-tag: 12px;
  --fs-link-row-en: 24px;
  --fs-button: 14px;
  --fs-copyright: 12px;

  /* アニメーション（hover） */
  --hover-duration: 0.3s;
  --underline-duration: 0.5s;
}

@media (max-width: 1024px) {
  :root {
    --container-pad: 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-pad: 20px;
    --section-gap: 110px;
    --fs-hero-en: 26px;
    --fs-hero-ja: 13px;
    --fs-heading-en: 29px;
    --fs-heading-label: 11px;
    --fs-panel-en: 29px;
    --fs-panel-ja: 14px;
    --fs-link-row-en: 22px;
  }
}

/* ---------- 2. ベース ---------- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.08em;
}

figure {
  overflow: hidden; /* クリップ表示・ズーム演出のはみ出し防止 */
  background-color: var(--color-img-fallback); /* 画像読み込み失敗時の背景 */
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

svg.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.sp-only {
  display: none;
}

/* ---------- 3. 共通コンポーネント ---------- */

/* 見出し（EN大＋JP小ラベル） */
.c-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: var(--fs-heading-en);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.c-heading .label {
  font-size: var(--fs-heading-label);
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.c-heading.--center {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

/* テキストリンク型CTA（View more等） */
.c-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 145px;
  padding-bottom: 12px;
  font-size: var(--fs-button);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* 下線（hoverで左→右に引き直し） */
.c-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.c-more:hover::after {
  animation: underline-redraw var(--underline-duration) ease;
}

@keyframes underline-redraw {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right;
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.c-more svg.lucide {
  width: 20px;
  height: 16px;
  transition: transform var(--hover-duration) ease;
}

.c-more:hover svg.lucide {
  transform: translateX(8px);
}

.c-more.--light {
  color: var(--color-white);
}

/* ---------- 4. ヘッダー ---------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 30px;
  color: var(--color-text);
}

.header__logo {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.header__logo span {
  font-weight: 400;
  font-size: 14px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  line-height: 1;
}

.header__nav a {
  transition: opacity var(--hover-duration) ease;
}

.header__nav a:hover {
  opacity: 0.6;
}

.header__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid currentColor;
  border-radius: 9999px;
  font-size: 14px;
}

.header__tel svg.lucide {
  width: 14px;
  height: 14px;
}

.header__burger {
  display: none;
}

/* 上方向スクロール時のみ固定表示（main.jsがクラスを付与） */
.header.is-fixed {
  position: fixed;
  background-color: var(--color-bg);
  animation: header-slide-in var(--hover-duration) ease;
}

@keyframes header-slide-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* モバイル用ドロワー */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 0 40px;
  background-color: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--hover-duration) ease, visibility var(--hover-duration) ease;
}

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

.drawer a {
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.drawer a span {
  margin-left: 14px;
  font-size: 11px;
  color: var(--color-muted);
}

/* ---------- 5. ヒーロー ---------- */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.hero__bg,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 17, 0.4), transparent 45%);
}

.hero__copy {
  position: absolute;
  left: var(--container-pad);
  bottom: 65px;
  z-index: 1;
  color: var(--color-white);
}

.hero__ja {
  margin-bottom: 14px;
  font-size: var(--fs-hero-ja);
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.hero__en {
  font-size: var(--fs-hero-en);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* モバイル用CTAバー */
.cta-bar {
  display: none;
}

/* ---------- 6. コンセプト ---------- */
.concept {
  padding-top: var(--section-gap);
}

.concept__inner {
  position: relative;
  display: flex;
  gap: 55px;
}

.concept__images {
  flex-shrink: 0;
  width: 500px;
}

.concept__img-main {
  aspect-ratio: 2 / 3;
}

.concept__img-sub {
  position: absolute;
  top: 0;
  right: var(--container-pad);
  width: 260px;
  aspect-ratio: 4 / 3;
}

.concept__text {
  max-width: 480px;
  padding-top: 300px;
}

.concept__lead {
  font-size: var(--fs-lead);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.concept__body {
  margin-top: var(--block-gap-md);
}

.concept__text .c-more {
  margin-top: var(--block-gap-lg);
}

/* ---------- 7. Styles ---------- */
.styles {
  padding-top: var(--section-gap);
}

.styles > .c-heading {
  margin-bottom: 25px;
}

.styles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}

.styles__card {
  padding: 90px 73px;
  border-right: 1px solid var(--color-text);
  text-align: center;
}

.styles__card:nth-child(3n) {
  border-right: none;
}

.styles__card:nth-child(-n + 3) {
  border-bottom: 1px solid var(--color-text);
}

.styles__card figure {
  aspect-ratio: 4 / 5;
}

.styles__card figure img,
.journal__card figure img {
  transition: transform 0.8s ease;
}

.styles__card:hover figure img,
.journal__card a:hover figure img {
  transform: scale(1.05);
}

.styles__place {
  display: inline-block;
  margin-top: var(--block-gap-md);
  border-bottom: 1px solid currentColor;
  font-size: var(--fs-tag);
  line-height: 2;
  letter-spacing: 0.04em;
}

.styles__title {
  margin-top: var(--block-gap-sm);
  font-size: var(--fs-card-title);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.styles__tags {
  margin-top: 24px;
  font-size: var(--fs-tag);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.styles__more {
  display: flex;
  width: fit-content;
  margin: var(--block-gap-lg) auto 0;
}

/* ---------- 8. Menu 導入コラージュ ---------- */
.menu-intro {
  position: relative;
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  overflow: hidden;
}

.menu-intro__collage figure {
  position: absolute;
}

.menu-intro__collage .--c1 {
  left: 42%;
  top: 140px;
  width: 300px;
  aspect-ratio: 4 / 5;
}

.menu-intro__collage .--c2 {
  left: 12%;
  top: 200px;
  width: 300px;
  aspect-ratio: 1 / 1;
}

.menu-intro__collage .--c3 {
  right: 14%;
  top: 185px;
  width: 300px;
  aspect-ratio: 4 / 5;
}

.menu-intro__collage .--c4 {
  left: 1%;
  top: 340px;
  width: 175px;
  aspect-ratio: 4 / 5;
}

.menu-intro__collage .--c5 {
  right: -45px;
  top: 320px;
  width: 250px;
  aspect-ratio: 5 / 4;
}

.menu-intro__text {
  position: relative;
  padding-top: 560px; /* 画像2倍化に合わせて見出し位置を下げる */
  text-align: center;
}

.menu-intro__lead {
  margin-top: var(--block-gap-md);
}

/* ---------- 9. Menu 4パネル ---------- */
.menu__panel {
  display: flex;
  min-height: 100svh;
}

/* JS有効時のみ: sticky内にパネルを重ねてスクロール切り替え（animation.jsがクラスを付与）
   ※GSAPのpin（fixed方式）は配置ズレを起こしたため、参考サイトと同じsticky方式にしている */
.menu.is-enhanced {
  position: relative;
  height: 400svh; /* パネル1枚につき100svh分のスクロール量 */
}

.menu.is-enhanced .menu__inner {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.menu.is-enhanced .menu__panel {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.menu.is-enhanced .menu__panel.--p1 { z-index: 1; }
.menu.is-enhanced .menu__panel.--p2 { z-index: 2; }
.menu.is-enhanced .menu__panel.--p3 { z-index: 3; }
.menu.is-enhanced .menu__panel.--p4 { z-index: 4; }

.menu__panel.--p1 {
  background-color: var(--color-panel-1);
  color: var(--color-white);
}

.menu__panel.--p2 {
  background-color: var(--color-panel-2);
  color: var(--color-white);
}

.menu__panel.--p3 {
  background-color: var(--color-panel-3);
  color: var(--color-white);
}

.menu__panel.--p4 {
  background-color: var(--color-panel-4);
  color: var(--color-text);
}

.menu__desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 80px 40px;
  text-align: center;
}

.menu__label {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.menu__heading {
  margin-top: var(--block-gap-md);
  font-weight: 400;
}

.menu__heading .ja {
  display: block;
  font-size: var(--fs-panel-ja);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.menu__heading .en {
  display: block;
  margin-top: 4px;
  font-size: var(--fs-panel-en);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.menu__thumb {
  width: 240px;
  aspect-ratio: 3 / 4;
  margin-top: 50px;
}

.menu__desc .c-more {
  margin-top: var(--block-gap-lg);
}

.menu__photo {
  width: 50%;
}

.menu__photo img {
  height: 100%;
}

/* 画像内のホバー演出（最小限） */
.menu__panel .menu__photo img {
  transition: transform 0.8s ease;
}

.menu__panel:hover .menu__photo img {
  transform: scale(1.03);
}

/* ---------- 10. Flow / FAQ / Salon ---------- */
.links {
  padding-top: var(--section-gap);
}

.links__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.links__list {
  flex: 1;
  max-width: 560px;
}

.links__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  border-bottom: 1px solid var(--color-text);
}

.links__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.links__row .en {
  font-size: var(--fs-link-row-en);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.links__row .label {
  font-size: var(--fs-heading-label);
  color: var(--color-muted);
}

.links__list svg.lucide {
  transition: transform var(--hover-duration) ease;
}

.links__list a:hover svg.lucide {
  transform: translateX(8px);
}

.links__images {
  display: flex;
  flex-shrink: 0;
}

.links__images figure {
  width: 255px;
  aspect-ratio: 1 / 1;
}

/* ---------- 11. News ---------- */
.news {
  margin-top: var(--section-gap);
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}

.news__inner {
  display: grid;
  grid-template-columns: 1fr 38%;
}

.news__main {
  padding: 90px 60px 90px var(--container-pad);
}

.news__list {
  margin-top: var(--block-gap-lg);
}

.news__list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-text);
  transition: opacity var(--hover-duration) ease;
}

.news__list a:hover {
  opacity: 0.6;
}

.news__title {
  font-size: 14px;
  line-height: 1.8;
}

.news__list time {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--color-muted);
}

.news__more {
  margin-top: var(--block-gap-md);
  margin-left: auto;
  display: flex;
  width: fit-content;
}

.news__side {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--color-text);
}

.news__side figure {
  width: 245px;
  aspect-ratio: 3 / 2;
}

/* ---------- 12. Journal ---------- */
.journal {
  padding-top: var(--section-gap);
}

.journal > .c-heading {
  margin-bottom: var(--block-gap-lg);
}

.journal__scroller {
  overflow-x: auto;
  scrollbar-width: none;
}

.journal__scroller::-webkit-scrollbar {
  display: none;
}

.journal__track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding-inline: var(--container-pad);
}

.journal__card {
  width: 325px;
}

.journal__card time {
  display: block;
  margin-bottom: 12px;
  font-size: var(--fs-tag);
  line-height: 1.6;
  color: var(--color-muted);
}

.journal__card figure {
  aspect-ratio: 5 / 6;
}

.journal__title {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.journal__cat {
  margin-top: 10px;
  font-size: var(--fs-tag);
  line-height: 1.6;
  color: var(--color-muted);
}

.journal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 50px;
}

.journal__progress {
  position: relative;
  flex: 1;
  max-width: 55%;
  height: 1px;
  background-color: var(--color-img-fallback);
}

.journal__progress span {
  position: absolute;
  left: 0;
  top: -0.5px;
  width: 80px;
  height: 2px;
  background-color: var(--color-text);
}

/* ---------- 13. Reservation ---------- */
.reserve {
  padding-top: var(--section-gap);
}

.reserve__inner {
  text-align: center;
}

.reserve__lead {
  margin-top: var(--block-gap-md);
}

.reserve__actions {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 80px;
  margin-top: var(--block-gap-lg);
}

.reserve__mail {
  min-width: 280px;
}

.reserve__tel {
  text-align: left;
}

.reserve__tel .label {
  display: block;
  font-size: var(--fs-tag);
  line-height: 1.6;
  color: var(--color-muted);
}

.reserve__tel .number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-text);
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.reserve__tel svg.lucide {
  width: 20px;
  height: 16px;
  transition: transform var(--hover-duration) ease;
}

.reserve__tel:hover svg.lucide {
  transform: translateX(8px);
}

.reserve__strip {
  display: flex;
  align-items: flex-start;
  margin-top: 120px;
}

.reserve__strip figure {
  width: 14.2857%;
  flex-shrink: 0;
}

.reserve__strip figure:nth-child(1) { height: 260px; margin-top: 30px; }
.reserve__strip figure:nth-child(2) { height: 160px; margin-top: 80px; }
.reserve__strip figure:nth-child(3) { height: 240px; margin-top: 0; }
.reserve__strip figure:nth-child(4) { height: 175px; margin-top: 95px; }
.reserve__strip figure:nth-child(5) { height: 255px; margin-top: 45px; }
.reserve__strip figure:nth-child(6) { height: 185px; margin-top: 0; }
.reserve__strip figure:nth-child(7) { height: 225px; margin-top: 65px; }

/* ---------- 14. フッター ---------- */
.footer {
  margin-top: 100px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 90px;
}

.footer__logo {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.footer__logo span {
  font-weight: 400;
  font-size: 14px;
}

.footer__address {
  margin-top: 35px;
  font-size: 14px;
  line-height: 2;
}

.footer__hours {
  margin-top: 12px;
  font-size: 14px;
  line-height: 2;
}

.footer__nav {
  display: flex;
  gap: 60px;
  margin-left: auto;
}

.footer__nav li {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.footer__nav a:hover {
  opacity: 0.6;
}

.footer__policy {
  align-self: flex-end;
  font-size: var(--fs-copyright);
  line-height: 1.6;
  color: var(--color-muted);
}

.footer__bottom {
  border-top: 1px solid var(--color-text);
}

.footer__sub {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
}

.footer__sub a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__sub svg.lucide {
  width: 14px;
  height: 14px;
}

.footer__copy {
  padding: 20px 0;
  border-top: 1px solid var(--color-text);
  font-size: var(--fs-copyright);
  line-height: 1.6;
  text-align: center;
}

/* ==========================================================
   レスポンシブ
   ========================================================== */

/* ---------- Tablet（〜1024px） ---------- */
@media (max-width: 1024px) {
  .header__nav {
    gap: 18px;
  }

  .concept__images {
    width: 42%;
  }

  .concept__img-sub {
    width: 200px;
  }

  .concept__text {
    padding-top: 220px;
  }

  .styles__card {
    padding: 50px 30px;
  }

  /* Menu導入: 5枚→3枚に減らし、重なりを避けて左右に配置 */
  .menu-intro__collage .--c1 { left: 36%; top: 140px; width: 220px; }
  .menu-intro__collage .--c2 { left: 4%; top: 200px; width: 220px; }
  .menu-intro__collage .--c3 { right: 4%; top: 185px; width: 220px; }

  .menu-intro__collage .--c4,
  .menu-intro__collage .--c5 {
    display: none;
  }

  .menu-intro__text {
    padding-top: 480px;
  }

  .links__images figure {
    width: 200px;
  }

  .journal__card {
    width: 300px;
  }
}

/* ---------- Mobile（〜767px） ---------- */
@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }

  /* ヘッダー: ハンバーガーに */
  .header {
    padding: 16px 20px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .header__burger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transition: transform var(--hover-duration) ease;
  }

  .header__burger.is-open span:nth-child(1) {
    transform: translateY(4.5px) rotate(20deg);
  }

  .header__burger.is-open span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-20deg);
  }

  .header.is-drawer-open {
    position: fixed;
    color: var(--color-text);
  }

  /* ヒーロー: EN→JPの順に */
  .hero__copy {
    display: flex;
    flex-direction: column;
    bottom: 40px;
    right: var(--container-pad);
  }

  .hero__ja {
    order: 2;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .hero__en {
    order: 1;
  }

  /* CTAバー出現 */
  .cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--color-text);
  }

  .cta-bar a {
    padding: 20px 10px;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .cta-bar a:first-child {
    border-right: 1px solid var(--color-text);
  }

  /* コンセプト: 1カラム化＋コラージュ */
  .concept__inner {
    flex-direction: column;
    gap: 0;
  }

  .concept__images {
    width: 100%;
  }

  .concept__img-main {
    width: 80%;
  }

  .concept__img-sub {
    top: auto;
    bottom: -40px;
    right: 0;
    width: 45%;
  }

  .concept__text {
    max-width: none;
    padding-top: 100px;
  }

  /* Styles: 1カラム */
  .styles__grid {
    grid-template-columns: 1fr;
  }

  .styles__card {
    padding: 60px 40px;
    border-right: none;
    border-bottom: 1px solid var(--color-text);
  }

  .styles__card:last-child {
    border-bottom: none;
  }

  .styles__card figure {
    max-width: 290px;
    margin-inline: auto;
  }

  /* Menu導入: 3枚を縦ずらしで配置（c4/c5はタブレット以下共通で非表示） */
  .menu-intro__collage .--c1 { left: 38%; top: 120px; width: 150px; }
  .menu-intro__collage .--c2 { left: 4%; top: 165px; width: 150px; }
  .menu-intro__collage .--c3 { right: 4%; top: 230px; width: 150px; }

  .menu-intro__text {
    padding-top: 460px;
  }

  .menu-intro__lead {
    padding-inline: var(--container-pad);
    text-align: left;
  }

  /* Menuパネル: 写真半分を非表示 */
  .menu__photo {
    display: none;
  }

  .menu__desc {
    width: 100%;
    min-height: 100svh;
    padding: 110px 20px;
  }

  .menu__thumb {
    width: 170px;
    margin-top: 40px;
  }

  /* Flow/FAQ/Salon: 縦積み（写真が上） */
  .links__inner {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 50px;
  }

  .links__list {
    max-width: none;
  }

  .links__list a {
    height: 72px;
  }

  .links__images figure {
    width: 50%;
    aspect-ratio: 1 / 1;
  }

  /* News: 1カラム */
  .news__inner {
    grid-template-columns: 1fr;
  }

  .news__main {
    padding: 70px var(--container-pad);
  }

  .news__list a {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }

  .news__side {
    padding: 0 var(--container-pad) 70px;
    border-left: none;
  }

  .news__side figure {
    width: 100%;
    max-width: 320px;
  }

  /* Journal: カード幅縮小 */
  .journal__track {
    gap: 20px;
  }

  .journal__card {
    width: 300px;
  }

  .journal__progress {
    max-width: 40%;
  }

  /* Reservation */
  .reserve__actions {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .reserve__strip {
    margin-top: 90px;
  }

  .reserve__strip figure:nth-child(1) { height: 120px; margin-top: 15px; }
  .reserve__strip figure:nth-child(2) { height: 75px; margin-top: 40px; }
  .reserve__strip figure:nth-child(3) { height: 110px; margin-top: 0; }
  .reserve__strip figure:nth-child(4) { height: 80px; margin-top: 45px; }
  .reserve__strip figure:nth-child(5) { height: 120px; margin-top: 20px; }
  .reserve__strip figure:nth-child(6) { height: 85px; margin-top: 0; }
  .reserve__strip figure:nth-child(7) { height: 105px; margin-top: 30px; }

  /* フッター: 簡略化 */
  .footer {
    margin-top: 80px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 60px;
  }

  .footer__nav {
    display: none;
  }

  .footer__policy {
    align-self: flex-start;
  }

  .footer__sub {
    gap: 24px;
  }

  .footer__sub a[aria-label="Instagram"] {
    margin-left: auto;
  }
}
