/* ==========================================================
   星空珈琲 — トップページ スタイル
   モバイルファースト（PCは @media (min-width: 768px) 以降）
   ※ 架空店舗・ポートフォリオ用
   ========================================================== */

:root {
  --navy: #0b1d3a;          /* ベース（背景・濃紺） */
  --navy-deep: #061223;     /* 夜空の深い側・フッター */
  --panel: #1a2b4a;         /* 写真プレースホルダ／カード面 */
  --gold: #c9a227;          /* アクセント */
  --gold-soft: #dcc06b;     /* アクセント（明るめ・見出しラベル用） */
  --gold-light: #f0dda0;    /* アクセント（最も明るい・リンク文字用） */
  --ivory: #f5f2ea;         /* テキスト・明るい面 */
  --gray: #8a94a6;          /* サブ */

  --max-width: 1120px;
  --gutter: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ivory);
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-weight: 400;
  /* 本文は 17px（16px以上） */
  font-size: 1.0625rem;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.6;
  text-wrap: balance;
}

p,
figure {
  margin: 0;
}

/* 本文の末尾に1〜2文字だけ落ちるのを防ぐ */
p, dd, li {
  text-wrap: pretty;
}

table {
  border-collapse: collapse;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ---------- 共通レイアウト ---------- */

.inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: var(--navy-deep);
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-label {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section-lead {
  margin-top: 20px;
  color: var(--gray);
  font-size: 1rem;
}

/* この単位の途中では改行させない（語中で割れるのを防ぐ） */
.nb {
  white-space: nowrap;
}

/* 細いゴールドの区切り線 */
.rule {
  width: 48px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- ボタン ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.7);
}

.btn-primary:hover {
  background: rgba(201, 162, 39, 0.14);
  border-color: var(--gold);
}

.btn-line {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}

.btn-line:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ---------- 夜空（CSSのみで表現） ---------- */

.night-sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 8%, #163256 0%, #0b1d3a 38%, #050d1c 74%, #01050d 100%);
}

/* 小さな星（box-shadow を多重指定） */
.night-sky::before,
.night-sky::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: transparent;
}

.night-sky::before {
  box-shadow:
    38px 120px 0 0 rgba(245, 242, 234, 0.85),
    112px 64px 0 0 rgba(245, 242, 234, 0.5),
    186px 210px 0 0 rgba(245, 242, 234, 0.7),
    254px 96px 0 0 rgba(245, 242, 234, 0.35),
    318px 268px 0 0 rgba(245, 242, 234, 0.8),
    372px 42px 0 0 rgba(245, 242, 234, 0.55),
    436px 176px 0 0 rgba(245, 242, 234, 0.4),
    498px 322px 0 0 rgba(245, 242, 234, 0.75),
    556px 128px 0 0 rgba(245, 242, 234, 0.5),
    624px 250px 0 0 rgba(245, 242, 234, 0.65),
    688px 58px 0 0 rgba(245, 242, 234, 0.4),
    742px 196px 0 0 rgba(245, 242, 234, 0.8),
    806px 340px 0 0 rgba(245, 242, 234, 0.45),
    864px 112px 0 0 rgba(245, 242, 234, 0.6),
    926px 232px 0 0 rgba(245, 242, 234, 0.35),
    988px 74px 0 0 rgba(245, 242, 234, 0.7),
    1046px 296px 0 0 rgba(245, 242, 234, 0.5),
    1108px 150px 0 0 rgba(245, 242, 234, 0.8),
    1172px 386px 0 0 rgba(245, 242, 234, 0.4),
    1234px 88px 0 0 rgba(245, 242, 234, 0.6),
    1296px 264px 0 0 rgba(245, 242, 234, 0.45),
    1358px 172px 0 0 rgba(245, 242, 234, 0.7),
    1422px 44px 0 0 rgba(245, 242, 234, 0.35),
    1486px 310px 0 0 rgba(245, 242, 234, 0.55),
    1548px 138px 0 0 rgba(245, 242, 234, 0.65),
    74px 402px 0 0 rgba(245, 242, 234, 0.5),
    148px 486px 0 0 rgba(245, 242, 234, 0.7),
    222px 358px 0 0 rgba(245, 242, 234, 0.35),
    290px 520px 0 0 rgba(245, 242, 234, 0.6),
    356px 430px 0 0 rgba(245, 242, 234, 0.45),
    424px 578px 0 0 rgba(245, 242, 234, 0.75),
    492px 462px 0 0 rgba(245, 242, 234, 0.4),
    562px 612px 0 0 rgba(245, 242, 234, 0.55),
    630px 388px 0 0 rgba(245, 242, 234, 0.7),
    698px 534px 0 0 rgba(245, 242, 234, 0.35),
    766px 448px 0 0 rgba(245, 242, 234, 0.6),
    834px 596px 0 0 rgba(245, 242, 234, 0.45),
    902px 412px 0 0 rgba(245, 242, 234, 0.8),
    970px 556px 0 0 rgba(245, 242, 234, 0.4),
    1038px 470px 0 0 rgba(245, 242, 234, 0.65),
    1106px 620px 0 0 rgba(245, 242, 234, 0.5),
    1176px 396px 0 0 rgba(245, 242, 234, 0.7),
    1244px 542px 0 0 rgba(245, 242, 234, 0.35),
    1312px 458px 0 0 rgba(245, 242, 234, 0.6),
    1380px 604px 0 0 rgba(245, 242, 234, 0.45),
    1448px 420px 0 0 rgba(245, 242, 234, 0.75),
    1516px 566px 0 0 rgba(245, 242, 234, 0.4),
    56px 690px 0 0 rgba(245, 242, 234, 0.55),
    198px 736px 0 0 rgba(245, 242, 234, 0.35),
    344px 662px 0 0 rgba(245, 242, 234, 0.6),
    486px 782px 0 0 rgba(245, 242, 234, 0.4),
    628px 700px 0 0 rgba(245, 242, 234, 0.7),
    772px 826px 0 0 rgba(245, 242, 234, 0.35),
    914px 674px 0 0 rgba(245, 242, 234, 0.55),
    1058px 794px 0 0 rgba(245, 242, 234, 0.45),
    1200px 712px 0 0 rgba(245, 242, 234, 0.65),
    1344px 838px 0 0 rgba(245, 242, 234, 0.35),
    1488px 748px 0 0 rgba(245, 242, 234, 0.5);
}

/* やや大きく明るい星（ゆっくり瞬く） */
.night-sky::after {
  width: 3px;
  height: 3px;
  box-shadow:
    92px 168px 0 0 rgba(245, 242, 234, 0.95),
    286px 88px 0 0 rgba(240, 221, 160, 0.9),
    468px 244px 0 0 rgba(245, 242, 234, 0.85),
    664px 132px 0 0 rgba(245, 242, 234, 0.9),
    852px 288px 0 0 rgba(240, 221, 160, 0.85),
    1042px 176px 0 0 rgba(245, 242, 234, 0.9),
    1236px 330px 0 0 rgba(245, 242, 234, 0.85),
    1428px 214px 0 0 rgba(240, 221, 160, 0.9),
    164px 512px 0 0 rgba(245, 242, 234, 0.85),
    404px 640px 0 0 rgba(245, 242, 234, 0.9),
    652px 494px 0 0 rgba(240, 221, 160, 0.85),
    896px 622px 0 0 rgba(245, 242, 234, 0.9),
    1148px 508px 0 0 rgba(245, 242, 234, 0.85),
    1392px 654px 0 0 rgba(240, 221, 160, 0.9);
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.55; }
  to   { opacity: 1; }
}

/* ---------- 写真枠 ---------- */
/* aspect-ratio で枠を確保し、写真は object-fit でトリミング表示 */

.menu-photo,
.concept-photo {
  width: 100%;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(201, 162, 39, 0.18);
}

.menu-photo {
  aspect-ratio: 4 / 3;
}

.menu-photo img,
.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 夜のトーンに寄せて、わずかに落ち着かせる */
  filter: brightness(0.92) saturate(0.9);
}

.concept-photo {
  aspect-ratio: 4 / 3;
  margin: 0;
}

/* ---------- ヘッダー ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 18, 35, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ivory);
}

.logo .logo-mark {
  color: var(--gold);
  margin-right: 8px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: rgba(6, 18, 35, 0.98);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  transform: translateY(-130%);
  opacity: 0;
  visibility: hidden;
  /* 閉じるときだけ、アニメーション終了後に非表示にする */
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s;
}

.site-nav ul {
  padding: 14px var(--gutter) 4px;
}

.site-nav li + li {
  border-top: 1px solid rgba(138, 148, 166, 0.2);
}

.site-nav a {
  display: block;
  padding: 15px 4px;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.site-nav a:hover {
  color: var(--gold-light);
}

/* ---------- 下層ページ：ページ見出し ---------- */

.page-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 46vh;
  overflow: hidden;
  background: var(--navy-deep);
}

.page-banner-media {
  position: absolute;
  inset: 0;
}

.page-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 35, 0.78) 0%, rgba(6, 18, 35, 0.55) 50%, rgba(6, 18, 35, 0.92) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  padding: 130px 0 48px;
  text-align: center;
}

.page-banner-label {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.32em;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.page-banner-title {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.14em;
}

/* ---------- 下層ページ：パンくず ---------- */

.breadcrumb {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(138, 148, 166, 0.18);
  font-size: 1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb li + li::before {
  content: "／";
  margin-right: 8px;
  color: rgba(138, 148, 166, 0.6);
}

.breadcrumb [aria-current="page"] {
  color: var(--ivory);
}

/* ---------- メインビジュアル ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 文字を読みやすくするための重ね（濃紺寄りに） */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 35, 0.72) 0%, rgba(6, 18, 35, 0.5) 45%, rgba(6, 18, 35, 0.85) 100%),
    radial-gradient(90% 70% at 50% 50%, rgba(11, 29, 58, 0.15) 0%, rgba(1, 5, 13, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 96px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
}

.hero-title {
  margin-top: 26px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

.hero-lead {
  margin-top: 26px;
  font-size: 1rem;
  color: var(--gray);
  line-height: 2.1;
}

.hero-cta {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, var(--gray), transparent);
}

/* ---------- コンセプト ---------- */

.concept {
  text-align: center;
}

.concept-layout {
  display: grid;
  gap: 40px;
}

.concept-body {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ivory);
}

.concept-body p + p {
  margin-top: 30px;
}

/* ---------- 選ばれる理由 ---------- */

.reasons {
  display: grid;
  gap: 34px;
}

.reason {
  padding: 36px 26px;
  background: rgba(26, 43, 74, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.2);
  text-align: center;
}

.reason-num {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.reason h3 {
  margin-top: 16px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.reason p {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--gray);
  text-align: left;
  /* 末尾に1〜2文字だけ落ちるのを防ぐ */
  text-wrap: balance;
}

/* ---------- メニュー紹介 ---------- */

.menu-cards {
  display: grid;
  gap: 32px;
}

.menu-card figcaption {
  margin-top: 18px;
  text-align: center;
}

.menu-card-name {
  display: block;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

.menu-card-price {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
}

.menu-card-cat {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.16em;
}

/* ---------- 下層ページへの導線ボタン ---------- */

.section-more {
  margin-top: 44px;
  text-align: center;
}

/* ---------- アクセス ---------- */

.access-list {
  font-size: 1rem;
}

/* 単独で置く場合（店舗概要など）は幅を絞って間延びを防ぐ */
.access-list-solo {
  max-width: 680px;
  margin: 0 auto;
}

.access-list > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(138, 148, 166, 0.24);
}

.access-list dt {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}

.access-list dd {
  margin: 6px 0 0;
  line-height: 1.9;
}

.access-note {
  margin-top: 8px;
  color: var(--gray);
}

/* 架空店舗のため、地図の代わりに理由を明示する枠 */
.map-notice {
  margin-top: 36px;
  padding: 32px 26px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(26, 43, 74, 0.45);
  text-align: center;
}

.map-notice-title {
  font-size: 1.0625rem;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
}

.map-notice-body {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--gray);
  line-height: 2;
}

/* ---------- 下層ページ：メニュー ---------- */

.menu-group + .menu-group {
  margin-top: 64px;
}

.menu-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.menu-group-head h2 {
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}

.menu-group-head .menu-group-en {
  font-size: 1rem;
  letter-spacing: 0.24em;
  color: var(--gray);
}

.menu-list {
  width: 100%;
  margin-top: 8px;
  font-size: 1.0625rem;
}

.menu-list th,
.menu-list td {
  padding: 20px 4px;
  border-bottom: 1px solid rgba(138, 148, 166, 0.24);
  font-weight: 400;
  line-height: 1.7;
}

.menu-list th {
  text-align: left;
}

.menu-list td {
  text-align: right;
  white-space: nowrap;
  color: var(--gold-light);
}

/* 写真の枚数が1〜2枚でも偏らないよう、中央寄せで並べる */
.menu-figures {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.menu-figure {
  flex: 1 1 240px;
  max-width: 340px;
}

.menu-figure figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.08em;
}

/* ---------- 下層ページ：ギャラリー ---------- */

.gallery-grid {
  display: grid;
  gap: 20px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(201, 162, 39, 0.18);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.9);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1);
}

.gallery-item figcaption {
  margin-top: auto;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(201, 162, 39, 0.18);
}

.gallery-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-item-tall .gallery-photo {
  aspect-ratio: 3 / 4;
}

/* ---------- 下層ページ：スタッフ紹介 ---------- */

.staff-layout {
  display: grid;
  gap: 36px;
}

.staff-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(201, 162, 39, 0.18);
  aspect-ratio: 4 / 5;
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* サイトの夜のトーンに寄せる（顔色が沈みすぎない範囲で） */
  filter: brightness(0.9) saturate(0.82) contrast(1.03);
}

/* 濃紺をうっすら重ねて、暖色の室内を全体の色味になじませる */
.staff-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 29, 58, 0.1) 0%, rgba(6, 18, 35, 0.34) 100%),
    rgba(11, 29, 58, 0.16);
  mix-blend-mode: multiply;
}

/* 読みやすい幅に収める */
.staff-body {
  max-width: 720px;
  margin: 0 auto;
}

.staff-lead {
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.staff-body p + p {
  margin-top: 26px;
}

.staff-body p {
  text-wrap: pretty;
}

/* ---------- 下層ページ：注記ブロック ---------- */

.note-block {
  margin-top: 44px;
  padding: 28px 24px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(26, 43, 74, 0.45);
}

.note-block-title {
  font-size: 1.0625rem;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
}

.note-block p {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--gray);
  line-height: 2;
}

/* ---------- CTAセクション ---------- */

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta .inner {
  position: relative;
  z-index: 1;
}

.cta-lead {
  margin-top: 24px;
  color: var(--gray);
  font-size: 1rem;
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-buttons .btn {
  width: 100%;
  max-width: 340px;
}

/* 架空の番号のため、発信リンクにはしていない */
.cta-tel {
  margin-top: 26px;
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.08em;
}

/* ---------- フッター ---------- */

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  padding: 56px 0 36px;
  font-size: 1rem;
}

.footer-logo {
  font-size: 1.25rem;
  letter-spacing: 0.16em;
}

.footer-info {
  margin-top: 20px;
  color: var(--gray);
  line-height: 2.1;
}

.footer-nav {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nav a {
  letter-spacing: 0.1em;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-disclaimer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(138, 148, 166, 0.24);
  color: var(--gray);
  line-height: 1.9;
}

.footer-copy {
  margin-top: 16px;
  color: var(--gray);
}

/* ---------- fade-in（控えめ） ---------- */

/* JavaScriptが動かない環境では、最初から表示したままにする
   （.js は <head> のインラインスクリプトで付与） */
.js .fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js .fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .night-sky::after {
    animation: none;
  }
}

/* ==========================================================
   タブレット以上（768px〜）
   ========================================================== */
@media (min-width: 768px) {
  :root {
    --gutter: 32px;
  }

  .section {
    padding: 112px 0;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .section-head {
    margin-bottom: 60px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-lead {
    font-size: 1.0625rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .hero-cta .btn {
    min-width: 260px;
  }

  .concept-layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    text-align: left;
  }

  .concept-body {
    margin: 0;
  }

  /* 縦位置の写真なので、PCでは縦長の枠で見せる */
  .concept-photo {
    aspect-ratio: 3 / 4;
  }

  .reasons {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .reason {
    padding: 44px 28px;
  }

  .menu-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .access-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .map-notice {
    margin-top: 0;
    padding: 44px 32px;
  }

  .page-banner {
    min-height: 40vh;
  }

  .page-banner-title {
    font-size: 2.375rem;
  }

  .page-banner-content {
    padding: 170px 0 64px;
  }

  .menu-list {
    font-size: 1.125rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* 写真を左、文章を右に */
  .staff-layout {
    grid-template-columns: 4fr 6fr;
    gap: 52px;
    align-items: center;
  }

  .staff-body {
    margin: 0;
  }


  .note-block {
    padding: 36px 40px;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-buttons .btn {
    width: auto;
    min-width: 260px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
  }

  .footer-nav {
    margin-top: 0;
    justify-content: flex-end;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

/* ==========================================================
   PC（1024px〜）
   ========================================================== */
@media (min-width: 1024px) {
  /* ヘッダーが80pxになるのに合わせて着地位置も調整 */
  html {
    scroll-padding-top: 96px;
  }

  .header-inner {
    height: 80px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    background: none;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
  }

  .site-nav li + li {
    border-top: none;
  }

  .site-nav a {
    padding: 10px 14px;
    font-size: 1rem;
  }

  .logo {
    font-size: 1.375rem;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .concept-body {
    font-size: 1.125rem;
  }

  .page-banner-title {
    font-size: 2.75rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 抜粋は2枚だけなので、PCでも2カラムのまま */
  .gallery-grid-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 1枚目だけ横2マス分に。5枚が隙間なく収まる配置 */
  .gallery-item-feature {
    grid-column: span 2;
  }

  .gallery-item-feature .gallery-photo {
    aspect-ratio: auto;
    flex: 1;
    min-height: 320px;
  }
}
