@charset "UTF-8";
/* =============================================================
   即納HPテンプレート vol.01 美容サロン
   hair salon Lumière（リュミエール）
   -------------------------------------------------------------
   ★ カスタマイズは、まずこの下の :root ブロックだけでOKです ★
   色・フォント・角丸・余白の基準を、ここで一元管理しています。
   ここを書き換えると、サイト全体の見た目が一括で変わります。
   詳しい手順は「はじめにお読みください.html」をご覧ください。
   ============================================================= */

:root {

  /* ---------------------------------------------------------
     ① 配色プリセット（3種類から選べます）
     いまは「プリセットA グレージュ」が有効です。
     B や C に変えたいときは、
       ・A のブロックを /* */ で囲んでコメントアウト
       ・使いたいブロックの /* */ を外して有効化
     の入れ替えをするだけです。
     （純黒・純白は使わず、少しだけ色味を含ませています）
     --------------------------------------------------------- */

  /* ===== プリセットA：グレージュ（落ち着いた大人の空気）※現在有効 ===== */
  --c-bg:        #F4F1EC;  /* ベースの背景色 */
  --c-bg-sub:    #EAE4DB;  /* セクション交互の背景色 */
  --c-surface:   #FCFAF6;  /* カードなど面の色 */
  --c-ink:       #3B362E;  /* 見出し・本文の色（真っ黒にしない） */
  --c-mute:      #736C5E;  /* 補助テキストの色 */
  --c-accent:    #A88B6F;  /* アクセント（ボタン・欧文・線） */
  --c-accent-dp: #856A52;  /* アクセントの濃い版（ホバー等） */
  --c-line:      #DFD8CC;  /* 罫線・枠線の色 */
  --c-body:      #5F584E;  /* 本文のやわらかい文字色 */
  --c-accent-lt: #D6BFA6;  /* アクセントの明るい版（濃い背景の上で使う） */
  --c-shadow:    60, 52, 42; /* 影の色（R,G,B） */
  --c-bg-rgb:      244, 241, 236; /* --c-bg と同じ色（R,G,B。半透明用） */
  --c-surface-rgb: 252, 250, 246; /* --c-surface と同じ色（R,G,B。半透明用） */

  /* ===== プリセットB：くすみピンク（やわらかで女性らしい） =====
  --c-bg:        #F6EEEB;
  --c-bg-sub:    #ECDDD8;
  --c-surface:   #FCF8F6;
  --c-ink:       #453A37;
  --c-mute:      #7E6B66;
  --c-accent:    #B98984;
  --c-accent-dp: #9A6862;
  --c-line:      #E7D8D2;
  --c-body:      #6A5A55;
  --c-accent-lt: #DFC0BB;
  --c-shadow:    74, 54, 50;
  --c-bg-rgb:      246, 238, 235;
  --c-surface-rgb: 252, 248, 246;
  ===== プリセットB ここまで ===== */

  /* ===== プリセットC：セージグリーン（自然体でナチュラル） =====
  --c-bg:        #EEF1E9;
  --c-bg-sub:    #E0E4D6;
  --c-surface:   #F9FAF4;
  --c-ink:       #373A30;
  --c-mute:      #666B59;
  --c-accent:    #7F8B69;
  --c-accent-dp: #62704F;
  --c-line:      #D5D9C7;
  --c-body:      #5C6152;
  --c-accent-lt: #C2CCAD;
  --c-shadow:    52, 58, 44;
  --c-bg-rgb:      238, 241, 233;
  --c-surface-rgb: 249, 250, 244;
  ===== プリセットC ここまで ===== */

  /* ---------------------------------------------------------
     ② フォント（Google Fonts / HTML側で読み込み済み）
     見出し＝細めの明朝、本文＝ゴシック、数字と欧文＝セリフ体。
     --------------------------------------------------------- */
  --f-mincho: "Shippori Mincho B1", "Yu Mincho", serif; /* 見出し（明朝） */
  --f-sans:   "Noto Sans JP", sans-serif;               /* 本文 */
  --f-en:     "Cormorant Garamond", serif;              /* 数字・欧文ラベル */
  --f-hand:   "Klee One", cursive;                      /* 手書き風ワンポイント */

  /* ---------------------------------------------------------
     ③ 角丸・余白・幅の基準
     --------------------------------------------------------- */
  --radius:      10px;                     /* カードなどの角丸 */
  --radius-sm:   6px;                      /* ボタンの角丸 */
  --sp-section:  clamp(84px, 12vw, 148px); /* セクション上下の余白 */
  --pad-x:       6vw;                      /* 左右の余白 */
  --maxw:        1120px;                   /* コンテンツの最大幅 */
}

/* =============================================================
   ここから下は、基本的に触らなくても大丈夫です。
   （細かく見た目を調整したい上級者向けのスタイル定義）
   ============================================================= */

/* ----- リセット・ベース ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  font-family: var(--f-sans);
  font-weight: 400;
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.9;
  font-size: 15.5px;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ごく薄い紙のような質感（のっぺり感を消す） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----- 共通パーツ ----- */
.section { padding: var(--sp-section) var(--pad-x); }
.section--sub { background: var(--c-bg-sub); }
.container { max-width: var(--maxw); margin-inline: auto; }
.narrow { max-width: 760px; }

.kicker {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: .1em;
  color: var(--c-accent);
  line-height: 1;
}
.sec-title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: .12em;
  line-height: 1.9;
  margin-top: 14px;
}
.sec-head { margin-bottom: clamp(46px, 6vw, 72px); }
.sec-head--center { text-align: center; }

/* 装飾の細い区切り線（線＋小さなひし形） */
.orn {
  display: block;
  width: 108px;
  height: 12px;
  color: var(--c-accent);
  margin: 22px 0;
}
.orn--center { margin-inline: auto; }

/* 縦書きの飾り文字 */
.vertical {
  writing-mode: vertical-rl;
  font-family: var(--f-mincho);
  font-weight: 500;
  letter-spacing: .28em;
  line-height: 1;
}

/* ----- ボタン ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  letter-spacing: .18em;
  line-height: 1;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .3s ease, box-shadow .35s ease;
}
.btn--fill {
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 18px 38px;
  border-radius: var(--radius-sm);
}
.btn--fill:hover {
  background: var(--c-accent-dp);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(var(--c-shadow), .22);
}
.btn--line {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .06em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-ink);
}
.btn--line:hover { color: var(--c-accent); border-color: var(--c-accent); }
.btn--ghost { color: var(--c-bg); border-bottom-color: rgba(var(--c-surface-rgb), .5); }
.btn--ghost:hover { color: rgba(var(--c-surface-rgb), .97); border-bottom-color: rgba(var(--c-surface-rgb), .97); }

/* -------------------------------------------------------------
   写真まわり
   （実写は同梱していません。images フォルダのダミー画像を、
     同じファイル名のままあなたの写真で上書きして使います）
   ------------------------------------------------------------- */
/* 差し替えた写真・地図が、縦横比が違っても枠にぴったり収まる設定 */
.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature__photo img,
.owner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit; /* %高さが解決できない環境でも枠の高さを保つ保険 */
  border: 0;
  display: block;
}

/* MAP枠などのプレースホルダ */
.photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(142deg, var(--c-surface) 0%, var(--c-bg-sub) 100%);
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.photo::before { /* 斜めの細線パターン */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 10px, var(--c-line) 10px 11px);
  opacity: .4;
  pointer-events: none;
}
.photo::after { /* 内側の細い額縁 */
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--c-line);
  pointer-events: none;
}
.photo__label {
  position: relative;
  font-family: var(--f-en);
  font-size: 1.55rem;
  letter-spacing: .38em;
  text-indent: .38em;
  color: var(--c-mute);
}
.photo__size {
  position: relative;
  font-family: var(--f-en);
  font-size: .82rem;
  letter-spacing: .18em;
  color: var(--c-mute);
  opacity: .85;
}

/* -------------------------------------------------------------
   スクロール表示アニメーション（主役だけ）
   ------------------------------------------------------------- */
/* html.js を付けているのは「JSが無効の環境でも中身が隠れない」ようにするためです */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
/* 文節のかたまりで折り返すための補助（見出しで使用） */
.nb { display: inline-block; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

/* -------------------------------------------------------------
   ヘッダー・ナビゲーション
   ------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--pad-x);
  transition: padding .4s ease;
}
.site-header.is-solid {
  background: rgba(var(--c-bg-rgb), .9);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--c-line);
}
.site-header.is-solid .site-header__inner { padding-block: 15px; }

.logo { line-height: 1.1; }
.logo__name {
  font-family: var(--f-en);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--c-ink);
}
.logo__sub {
  display: block;
  font-family: var(--f-sans);
  font-size: .56rem;
  letter-spacing: .42em;
  color: var(--c-mute);
  margin-top: 3px;
}

.gnav__list { display: flex; align-items: center; gap: 30px; }
.gnav__link {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .08em;
  color: var(--c-ink);
  opacity: .78;
  transition: opacity .3s ease;
}
.gnav__link:hover { opacity: 1; }
.gnav__cta {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: .72rem !important;
  letter-spacing: .24em;
  opacity: 1 !important;
  border: 1px solid var(--c-ink);
  border-radius: 100px;
  padding: 10px 22px;
  transition: background .35s ease, color .35s ease;
}
.gnav__cta:hover { background: var(--c-ink); color: var(--c-bg); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}
.nav-toggle span {
  position: absolute;
  left: 9px;
  width: 24px;
  height: 1px;
  background: var(--c-ink);
  transition: transform .35s ease, opacity .35s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

/* -------------------------------------------------------------
   ヒーロー
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 4vw 90px var(--pad-x);
  position: relative;
  z-index: 2;
}
.hero__kicker { margin-bottom: 22px; }
.hero__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.7;
  letter-spacing: .08em;
}
.hero__lead {
  margin-top: 30px;
  font-size: .92rem;
  line-height: 2.1;
  color: var(--c-body);
  max-width: 27em;
}
.hero__actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  margin: 96px -1px 22px 0; /* 固定ヘッダーを避けつつ、下側をはみ出させて非対称に */
}
.hero__photo { position: absolute; inset: 0; }
.hero__photo .photo { min-height: 100%; }
.hero__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  background: rgba(var(--c-surface-rgb), .92);
  padding: 9px 16px;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--c-mute);
  border-left: 2px solid var(--c-accent);
}
.hero__card {
  position: absolute;
  left: -66px;
  bottom: 8svh;
  z-index: 4;
  background: var(--c-surface);
  padding: 24px 30px;
  box-shadow: 0 22px 50px rgba(var(--c-shadow), .16);
  max-width: 290px;
}
.hero__card .en {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-accent);
}
.hero__card p { font-size: .78rem; color: var(--c-mute); margin-top: 6px; line-height: 1.9; }

/* -------------------------------------------------------------
   導入文（コンセプト・余白たっぷりの1カラム）
   ------------------------------------------------------------- */
.concept {
  position: relative;
  padding-block: calc(var(--sp-section) + 12px);
}
.concept__vertical {
  position: absolute;
  top: var(--sp-section);
  right: var(--pad-x);
  height: 200px;
  font-size: 1rem;
  color: var(--c-mute);
  letter-spacing: .3em;
}
.concept__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.lead-lg {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 2.1;
  letter-spacing: .1em;
  margin-top: 6px;
}
.concept__body {
  margin-top: 34px;
  font-size: .95rem;
  line-height: 2.15;
  color: var(--c-body);
}

/* -------------------------------------------------------------
   こだわり（左右交互のジグザグ）
   ------------------------------------------------------------- */
.features { display: flex; flex-direction: column; gap: clamp(64px, 9vw, 120px); }
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.feature--rev .feature__photo { order: 2; }
.feature__photo { aspect-ratio: 4 / 3.4; }
.feature__no {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: .1em;
  color: var(--c-accent);
}
.feature__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  letter-spacing: .08em;
  line-height: 1.8;
  margin: 12px 0 4px;
}
.feature__body { margin-top: 18px; font-size: .9rem; line-height: 2.1; color: var(--c-body); }

/* -------------------------------------------------------------
   メニュー・料金
   ------------------------------------------------------------- */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 0 clamp(40px, 6vw, 84px);
}
.menu__item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 19px 2px;
  border-bottom: 1px solid var(--c-line);
}
.menu__name { font-size: .94rem; letter-spacing: .08em; }
.menu__en {
  display: block;
  font-family: var(--f-en);
  font-style: italic;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--c-mute);
  margin-top: 2px;
}
.menu__dots { flex: 1; border-bottom: 1px dotted var(--c-mute); opacity: .55; transform: translateY(-4px); }
.menu__price {
  font-family: var(--f-en);
  font-size: 1.28rem;
  letter-spacing: .02em;
  color: var(--c-accent-dp);
  white-space: nowrap;
}
.menu__note { margin-top: 30px; text-align: center; font-size: .78rem; color: var(--c-mute); }
.tag-hand {
  font-family: var(--f-hand);
  font-weight: 600;
  font-size: .82rem;
  color: var(--c-accent-dp);
  margin-left: 10px;
  white-space: nowrap;
}

/* -------------------------------------------------------------
   お客さまの声（このページで唯一のカード）
   ------------------------------------------------------------- */
.voice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 26px;
}
.voice__card {
  background: var(--c-surface);
  padding: 34px 30px 30px;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(var(--c-shadow), .05);
  transition: transform .4s ease, box-shadow .4s ease;
}
.voice__card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(var(--c-shadow), .1); }
.voice__mark {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 2.6rem;
  line-height: .8;
  color: var(--c-accent);
  opacity: .55;
}
.voice__text { font-size: .87rem; line-height: 2; color: var(--c-body); margin-top: 8px; }
.voice__who { margin-top: 18px; font-size: .72rem; letter-spacing: .14em; color: var(--c-mute); }

/* -------------------------------------------------------------
   代表挨拶（人の気配・一人称）
   ------------------------------------------------------------- */
.owner { background: var(--c-surface); overflow: hidden; }
.owner__inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: center;
}
.owner__photo { aspect-ratio: 4 / 5; position: relative; }
.owner__photo .hero__caption { background: rgba(var(--c-surface-rgb), .94); }
.owner__name {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .16em;
  margin-top: 14px;
}
.owner__role {
  font-family: var(--f-en);
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .1em;
  color: var(--c-mute);
  margin-top: 4px;
}
.owner__body { margin-top: 24px; font-size: .9rem; line-height: 2.15; color: var(--c-body); max-width: 38em; }
.owner__sign {
  margin-top: 26px;
  font-family: var(--f-en);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-accent);
}

/* -------------------------------------------------------------
   アクセス・営業時間
   ------------------------------------------------------------- */
.access__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: start;
}
.access__table { width: 100%; border-collapse: collapse; margin-top: 28px; font-size: .88rem; }
.access__table th,
.access__table td {
  text-align: left;
  padding: 16px 4px;
  border-bottom: 1px solid var(--c-line);
  font-weight: 400;
  vertical-align: top;
  line-height: 1.9;
}
.access__table th { width: 30%; letter-spacing: .16em; color: var(--c-mute); }
.access__map {
  min-height: 320px;
  height: 100%;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.access__map .photo { border: none; }
.access__map .photo::after { inset: 14px; }

/* -------------------------------------------------------------
   CTA（色を反転して強く）
   ------------------------------------------------------------- */
.cta { position: relative; background: var(--c-ink); color: var(--c-bg); overflow: hidden; }
.cta::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,139,111,.28), transparent 70%);
  top: -180px;
  right: -140px;
  pointer-events: none;
}
.cta__inner { max-width: 680px; margin-inline: auto; text-align: center; position: relative; z-index: 2; }
.cta .kicker { color: var(--c-accent-lt); }
.cta__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 1.9;
  letter-spacing: .1em;
  margin-top: 12px;
}
.cta p { margin-top: 24px; font-size: .9rem; line-height: 2; color: rgba(var(--c-bg-rgb), .78); }
.cta .hero__actions { justify-content: center; margin-top: 42px; }
/* 濃色背景の上では、塗りボタンを明るい色に反転させる */
.cta .btn--fill { background: var(--c-bg); color: var(--c-ink); }
.cta .btn--fill:hover { background: var(--c-accent-lt); color: var(--c-ink); }

/* -------------------------------------------------------------
   フッター
   ------------------------------------------------------------- */
.site-footer { background: var(--c-bg); padding: 62px var(--pad-x) 40px; }
.site-footer__inner { max-width: var(--maxw); margin-inline: auto; text-align: center; }
.site-footer .logo__name { color: var(--c-ink); }
.foot-nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.foot-nav a { font-size: .74rem; letter-spacing: .2em; color: var(--c-mute); transition: color .3s ease; }
.foot-nav a:hover { color: var(--c-accent); }
.foot-hours {
  margin-top: 28px;
  font-size: .78rem;
  line-height: 2;
  color: var(--c-mute);
  letter-spacing: .06em;
}
.foot-copy {
  margin-top: 30px;
  font-family: var(--f-en);
  font-style: italic;
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--c-mute);
  opacity: .78;
}
.foot-note { margin-top: 10px; font-size: .68rem; color: var(--c-mute); opacity: .78; letter-spacing: .04em; }

/* =============================================================
   レスポンシブ（タブレット 768px / スマホ 375px 目安）
   ============================================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { padding: 128px 7vw 46px; }
  .hero__visual { height: 78vw; margin: 0 7vw; }
  .hero__card { left: 7vw; right: 7vw; bottom: -34px; max-width: none; }

  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature--rev .feature__photo { order: 0; }
  .feature__photo { aspect-ratio: 4 / 3; }

  .owner__inner { grid-template-columns: 1fr; }
  .owner__photo { aspect-ratio: 4 / 4.2; max-width: 440px; }

  .access__grid { grid-template-columns: 1fr; }
  .access__map { min-height: 260px; }

  .concept__vertical { display: none; }

  /* スマホ用ハンバーガーメニュー */
  .nav-toggle { display: block; }
  .gnav {
    position: fixed;
    inset: 0;
    background: rgba(var(--c-bg-rgb), .98);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
  }
  .site-header.is-nav-open .gnav { opacity: 1; visibility: visible; }
  .gnav__list { flex-direction: column; gap: 30px; }
  .gnav__link { font-size: 1.5rem; opacity: 1; }
  .gnav__cta { font-size: .9rem !important; padding: 12px 30px; }

  .site-header.is-nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .site-header.is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .concept__body { text-align: left; }
  .hero__card { padding: 20px 22px; }
  .voice__grid { gap: 18px; }
  .hero__actions { gap: 18px; }
  .menu__item { flex-wrap: wrap; }
  .tag-hand { margin-left: 0; }
}

/* =============================================================
   動きを減らす設定の方への配慮（アクセシビリティ）
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
