@charset "UTF-8";
/* =====================================================
   Shisha Cafe & Bar Olive — 大阪・福島
   ベース: /Users/toyodaryuusei/Desktop/仕事/claude code/responsive-base.css
   ===================================================== */

/* ===== テキスト改行（日本語対応）===== */
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: auto-phrase;
}
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ===== 変数 ===== */
:root {
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;

  --ink:      #0b0c0a;
  --ink-2:    #121410;
  --ink-3:    #1a1d17;
  --olive:    #5d6b45;
  --olive-lt: #8a9a6c;
  --brass:    #c2a25f;
  --brass-lt: #e0cb98;
  --cream:    #f3f0e7;
  --muted:    #9a9d92;
  --line:     rgba(194, 162, 95, .22);
  --line-soft:rgba(243, 240, 231, .12);

  --jp: 'Zen Old Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --en: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Noto Sans JP', system-ui, sans-serif;

  --header-h: 72px;
  --safe-b: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--jp);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw + 11px, 17px);
  line-height: 2;
  letter-spacing: .06em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 0;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--brass); color: var(--ink); }

/* ===== レイアウト ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.container--narrow { max-width: 880px; }
.section { padding-top: clamp(56px, 8vw, 120px); padding-bottom: clamp(56px, 8vw, 120px); }
.section--tight { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(40px, 5vw, 72px); }
.section--alt { background: var(--ink-2); }
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(14px, 2.2vw, 32px);
}

/* ===== 見出し ===== */
.sec-head { margin-bottom: clamp(28px, 4vw, 56px); }
.sec-head--center { text-align: center; }
.sec-en {
  display: block;
  font-family: var(--en);
  font-size: clamp(11px, 1vw + 7px, 13px);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .9em;
}
.sec-title {
  font-size: clamp(23px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .1em;
}
.sec-lead {
  margin-top: 1.4em;
  color: var(--muted);
  font-size: clamp(14px, .9vw + 11px, 16px);
}
.h3 {
  font-size: clamp(18px, 1.6vw + 12px, 24px);
  font-weight: 400;
  letter-spacing: .09em;
  line-height: 1.8;
}
.rule {
  width: 44px; height: 1px; background: var(--brass);
  margin: 1.6em 0;
}
.sec-head--center .rule { margin-inline: auto; }

/* ===== ヘッダー ===== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(11, 12, 10, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .4s ease;
}
.header__inner {
  width: 100%; max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: baseline; gap: .6em; line-height: 1; }
.brand__mark {
  font-family: var(--en);
  font-size: clamp(21px, 2vw, 27px);
  letter-spacing: .16em;
  color: var(--cream);
}
.brand__sub {
  font-size: 10px; letter-spacing: .3em; color: var(--brass);
  font-family: var(--sans);
}
.gnav { display: none; }
@media (min-width: 1024px) {
  .gnav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 30px); }
  .gnav a {
    font-family: var(--sans);
    font-size: 12.5px; letter-spacing: .16em; color: var(--cream);
    padding: 6px 0; position: relative; white-space: nowrap;
  }
  .gnav a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1px; background: var(--brass);
    transform: scaleX(0); transform-origin: right; transition: transform .35s ease;
  }
  .gnav a:hover::after, .gnav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
  .gnav a[aria-current="page"] { color: var(--brass-lt); }
}
.header__cta { display: flex; align-items: center; gap: 10px; }
.hcta {
  display: none;
  align-items: center; gap: .5em;
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .1em;
  padding: 10px 18px; border: 1px solid var(--line);
  color: var(--brass-lt); white-space: nowrap;
  transition: background .3s, color .3s;
}
.hcta:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.hcta--tel { flex-direction: column; align-items: flex-start; gap: 0; line-height: 1.35; }
.hcta--tel .num { font-family: var(--en); font-size: 16px; letter-spacing: .06em; }
.hcta--tel .lbl { font-size: 9.5px; letter-spacing: .22em; color: var(--muted); }
@media (min-width: 768px) { .hcta { display: inline-flex; } }

/* ハンバーガー */
.burger {
  width: 44px; height: 44px; display: grid; place-content: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block; width: 24px; height: 1px; background: var(--cream);
  transition: transform .35s ease, opacity .25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

/* ドロワー */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  padding: calc(var(--header-h) + 24px) clamp(24px, 7vw, 60px) calc(40px + var(--safe-b));
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__nav a {
  display: block; padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 16px; letter-spacing: .12em;
}
.drawer__nav a .en {
  display: block; font-family: var(--en); font-size: 10.5px;
  letter-spacing: .3em; color: var(--brass); text-transform: uppercase;
}
.drawer__info { margin-top: 32px; font-family: var(--sans); font-size: 13px; color: var(--muted); line-height: 2; }
.drawer__info a { color: var(--brass-lt); }

/* ===== ヒーロー ===== */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 16s ease-out both; }
.hero__slide.is-active img { animation: kenburns 16s ease-out both; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,12,10,.72) 0%, rgba(11,12,10,.25) 32%, rgba(11,12,10,.88) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 9vw, 110px); padding-top: calc(var(--header-h) + 40px); }
.hero__en {
  font-family: var(--en); letter-spacing: .38em; text-transform: uppercase;
  font-size: clamp(10px, .8vw + 7px, 13px); color: var(--brass);
  margin-bottom: 1.6em;
}
.hero__title {
  font-size: clamp(27px, 5.2vw, 62px);
  font-weight: 400; line-height: 1.55; letter-spacing: .08em;
}
.hero__title .line { display: block; }
.hero__lead {
  margin-top: 1.8em; max-width: 34em;
  color: rgba(243,240,231,.82);
  font-size: clamp(14px, .9vw + 11px, 16.5px);
}
.hero__meta {
  margin-top: clamp(24px, 3vw, 40px);
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-family: var(--sans); font-size: clamp(12px, .6vw + 10px, 13.5px);
  letter-spacing: .08em; color: rgba(243,240,231,.8);
}
.hero__meta li { display: flex; align-items: center; gap: .55em; }
.hero__scroll {
  position: absolute; right: clamp(20px, 4vw, 56px); bottom: 0; z-index: 2;
  writing-mode: vertical-rl; font-family: var(--en); font-size: 10px;
  letter-spacing: .34em; color: var(--muted); padding-bottom: 88px;
}
.hero__scroll::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 1px; height: 72px;
  background: linear-gradient(180deg, var(--brass), transparent);
}
@media (max-width: 767px) { .hero__scroll { display: none; } }

/* ページヘッダー（下層） */
.pagehead { position: relative; padding-top: calc(var(--header-h) + clamp(56px, 9vw, 120px)); padding-bottom: clamp(44px, 7vw, 96px); overflow: hidden; }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11,12,10,.86), rgba(11,12,10,.7)); }
.pagehead .container { position: relative; z-index: 2; }
.pagehead__en { font-family: var(--en); font-size: clamp(30px, 5vw, 56px); letter-spacing: .2em; color: var(--brass-lt); line-height: 1.2; text-transform: uppercase; }
.pagehead__ja { margin-top: .9em; font-size: clamp(14px, .9vw + 11px, 17px); letter-spacing: .16em; }

/* パンくず */
.crumbs { font-family: var(--sans); font-size: 11.5px; letter-spacing: .08em; color: var(--muted); padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .5em; }
.crumbs li:not(:last-child)::after { content: '／'; margin-left: .5em; color: rgba(154,157,146,.5); }
.crumbs a:hover { color: var(--brass-lt); }

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  min-height: 52px; padding: 14px 34px;
  font-family: var(--sans); font-size: 13px; letter-spacing: .16em;
  border: 1px solid var(--brass); color: var(--brass-lt);
  transition: background .35s ease, color .35s ease;
}
.btn:hover { background: var(--brass); color: var(--ink); }
.btn--fill { background: var(--brass); color: var(--ink); }
.btn--fill:hover { background: var(--brass-lt); border-color: var(--brass-lt); }
.btn--ghost { border-color: var(--line-soft); color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(24px, 3vw, 40px); }
.btn-row--center { justify-content: center; }

/* ===== カード / 画像 ===== */
.figure { position: relative; overflow: hidden; background: var(--ink-3); }
.figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.3,1); }
a.card:hover .figure img, .figure--zoom:hover img { transform: scale(1.05); }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-3x4 { aspect-ratio: 3 / 4; }
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-1x1 { aspect-ratio: 1 / 1; }

.card { display: block; background: var(--ink-2); border: 1px solid var(--line-soft); }
.card__body { padding: clamp(18px, 2.2vw, 28px); }
.card__label { font-family: var(--en); font-size: 11px; letter-spacing: .28em; color: var(--brass); text-transform: uppercase; }
.card__title { margin-top: .7em; font-size: clamp(16px, 1.1vw + 12px, 20px); font-weight: 400; letter-spacing: .08em; }
.card__text { margin-top: .9em; font-size: 14px; color: var(--muted); line-height: 1.95; }

/* 交互レイアウト */
.split { display: grid; gap: clamp(24px, 4vw, 64px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split__text .rule { margin: 1.3em 0; }

/* ===== 設備アイコンリスト ===== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.features li { background: var(--ink); padding: clamp(18px, 2.4vw, 28px) 14px; text-align: center; }
.features .ic { display: block; margin: 0 auto .8em; color: var(--brass); }
.features .ttl { display: block; font-size: 14px; letter-spacing: .1em; }
.features .desc { display: block; margin-top: .5em; font-family: var(--sans); font-size: 11.5px; color: var(--muted); line-height: 1.8; }

/* ===== 情報テーブル ===== */
.info-table { width: 100%; border-collapse: collapse; font-size: clamp(13.5px, .6vw + 11px, 15px); }
.info-table th, .info-table td { text-align: left; padding: 16px 8px; border-bottom: 1px solid var(--line-soft); vertical-align: top; line-height: 1.9; }
.info-table th { width: 30%; min-width: 7em; font-weight: 400; color: var(--brass-lt); letter-spacing: .1em; white-space: nowrap; }
.info-table td a { border-bottom: 1px solid var(--line); }
@media (max-width: 560px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: 0; padding-bottom: 4px; font-size: 12px; }
  .info-table td { padding-top: 0; }
}

/* ===== 料金表 ===== */
.notice {
  display: flex; gap: .8em; align-items: flex-start;
  border: 1px solid var(--brass); background: rgba(194,162,95,.08);
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.4vw, 24px);
  font-family: var(--sans); font-size: 13px; line-height: 1.9; color: var(--brass-lt);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.price-block { margin-bottom: clamp(36px, 5vw, 64px); }
.price-block__head { display: flex; align-items: baseline; gap: 1em; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.price-block__ja { font-size: clamp(17px, 1.3vw + 12px, 22px); letter-spacing: .1em; }
.price-block__en { font-family: var(--en); font-size: 12px; letter-spacing: .28em; color: var(--brass); text-transform: uppercase; }
.price-list li {
  display: flex; align-items: baseline; gap: .8em;
  padding: 15px 4px; border-bottom: 1px solid var(--line-soft);
}
.price-list .nm { flex: 1 1 auto; letter-spacing: .06em; }
.price-list .nm small { display: block; font-family: var(--sans); font-size: 12px; color: var(--muted); letter-spacing: .04em; line-height: 1.8; margin-top: .3em; }
.price-list .dots { flex: 1 1 auto; border-bottom: 1px dotted rgba(154,157,146,.35); transform: translateY(-4px); min-width: 12px; }
.price-list .pr { flex: 0 0 auto; font-family: var(--en); font-size: clamp(16px, 1vw + 12px, 19px); letter-spacing: .04em; color: var(--brass-lt); white-space: nowrap; }
.note-list { margin-top: 1.4em; font-family: var(--sans); font-size: 12.5px; color: var(--muted); line-height: 2; }
.note-list li { padding-left: 1.2em; text-indent: -1.2em; }
.note-list li::before { content: '※ '; color: var(--brass); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.charge-table { width: 100%; min-width: 480px; border-collapse: collapse; font-family: var(--sans); font-size: 13.5px; }
.charge-table th, .charge-table td { padding: 14px 16px; border: 1px solid var(--line-soft); text-align: left; letter-spacing: .06em; }
.charge-table thead th { background: var(--ink-3); color: var(--brass-lt); font-weight: 400; letter-spacing: .12em; }
.charge-table td.pr { font-family: var(--en); font-size: 16px; color: var(--brass-lt); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; display: flex; gap: 1em; align-items: flex-start;
  background: none; border: 0; color: var(--cream); cursor: pointer;
  padding: 22px 0; text-align: left; font-family: var(--jp);
  font-size: clamp(15px, .8vw + 12px, 17px); letter-spacing: .08em; line-height: 1.8;
}
.faq-q .mark { font-family: var(--en); color: var(--brass); font-size: 17px; flex: 0 0 auto; line-height: 1.6; }
.faq-q .txt { flex: 1 1 auto; }
.faq-q .sign { flex: 0 0 auto; width: 14px; height: 14px; position: relative; margin-top: .55em; }
.faq-q .sign::before, .faq-q .sign::after { content: ''; position: absolute; background: var(--brass); transition: transform .3s ease; }
.faq-q .sign::before { left: 0; top: 6.5px; width: 14px; height: 1px; }
.faq-q .sign::after { left: 6.5px; top: 0; width: 1px; height: 14px; }
.faq-q[aria-expanded="true"] .sign::after { transform: scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
.faq-a > div { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 0 24px calc(1em + 17px); font-family: var(--sans); font-size: 14px; color: var(--muted); line-height: 2.1; }

/* ===== ニュース ===== */
.news-list li { border-bottom: 1px solid var(--line-soft); }
.news-list a { display: flex; flex-wrap: wrap; gap: .4em 1.6em; align-items: baseline; padding: 22px 0; transition: opacity .3s; }
.news-list a:hover { opacity: .68; }
.news-list time { font-family: var(--en); font-size: 14px; letter-spacing: .1em; color: var(--brass); flex: 0 0 auto; }
.news-list .tag { font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; border: 1px solid var(--line); color: var(--brass-lt); padding: 3px 10px; flex: 0 0 auto; }
.news-list .ttl { flex: 1 1 260px; font-size: clamp(14.5px, .7vw + 12px, 16.5px); letter-spacing: .06em; }

.post-body h2 { font-size: clamp(19px, 1.6vw + 13px, 26px); font-weight: 400; letter-spacing: .08em; margin: 2.2em 0 .9em; padding-left: .7em; border-left: 2px solid var(--brass); }
.post-body h3 { font-size: clamp(16px, 1vw + 12px, 20px); font-weight: 400; letter-spacing: .08em; margin: 2em 0 .7em; color: var(--brass-lt); }
.post-body p { margin-bottom: 1.6em; }
.post-body ul { margin: 0 0 1.8em; }
.post-body ul li { padding-left: 1.3em; position: relative; margin-bottom: .5em; }
.post-body ul li::before { content: ''; position: absolute; left: 0; top: .95em; width: 6px; height: 1px; background: var(--brass); }
.post-body img { margin: 2em 0; }

/* ===== ギャラリー ===== */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(8px, 1.2vw, 16px); }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery .figure { aspect-ratio: 3 / 4; }
.gallery--3 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery--3 { grid-template-columns: repeat(3, 1fr); } }

/* スライダー */
.slider { position: relative; }
.slider__track { position: relative; aspect-ratio: 4 / 3; background: var(--ink-3); overflow: hidden; }
@media (min-width: 768px) { .slider__track { aspect-ratio: 16 / 10; } }
.slider__item { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.slider__item.is-active { opacity: 1; }
.slider__item img { width: 100%; height: 100%; object-fit: cover; }
.slider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.slider__dots button { width: 36px; height: 2px; border: 0; background: var(--line-soft); cursor: pointer; padding: 0; transition: background .3s; }
.slider__dots button[aria-selected="true"] { background: var(--brass); }
.slider__cap { margin-top: 14px; font-family: var(--sans); font-size: 12px; color: var(--muted); letter-spacing: .08em; text-align: center; }

/* ===== NAP / 地図 ===== */
.map-embed { position: relative; width: 100%; aspect-ratio: 16 / 11; border: 1px solid var(--line-soft); background: var(--ink-3); }
@media (min-width: 768px) { .map-embed { aspect-ratio: 16 / 8; } }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); }
.nap {
  font-family: var(--sans); line-height: 2.05; font-size: clamp(13.5px, .6vw + 11px, 15px);
}
.nap dt { font-size: 11px; letter-spacing: .24em; color: var(--brass); text-transform: uppercase; margin-top: 1.4em; font-family: var(--en); }
.nap dt:first-child { margin-top: 0; }
.nap dd { letter-spacing: .06em; }
.nap dd a { border-bottom: 1px solid var(--line); }
.tel-big { font-family: var(--en); font-size: clamp(26px, 3vw, 36px); letter-spacing: .06em; color: var(--brass-lt); display: inline-block; }

/* ===== CTA帯 ===== */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(11,12,10,.78); }
.cta-band .container { position: relative; z-index: 2; }

/* ===== フッター ===== */
.footer { background: var(--ink-2); border-top: 1px solid var(--line-soft); padding-top: clamp(48px, 6vw, 84px); }
.footer__grid { display: grid; gap: clamp(30px, 4vw, 56px); grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer__ttl { font-family: var(--en); font-size: 11px; letter-spacing: .28em; color: var(--brass); text-transform: uppercase; margin-bottom: 1.4em; }
.footer__nav li { margin-bottom: .85em; }
.footer__nav a { font-family: var(--sans); font-size: 13.5px; letter-spacing: .08em; color: rgba(243,240,231,.82); }
.footer__nav a:hover { color: var(--brass-lt); }
.footer__area { font-family: var(--sans); font-size: 13px; color: var(--muted); }
.footer__area .area-name { color: var(--brass-lt); letter-spacing: .16em; font-size: 12px; display: block; margin-bottom: .5em; }
.footer__area li + li { margin-top: 1.2em; }
.footer__area a { color: rgba(243,240,231,.86); border-bottom: 1px solid var(--line-soft); }
.footer__nap { font-family: var(--sans); font-size: 13px; color: var(--muted); line-height: 2.1; letter-spacing: .05em; }
.footer__nap a { color: var(--brass-lt); }
.footer__bottom {
  margin-top: clamp(36px, 5vw, 64px); padding: 22px 0 calc(22px + var(--safe-b));
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-family: var(--sans); font-size: 11.5px; color: var(--muted); letter-spacing: .08em;
}
@media (max-width: 767px) { .footer { padding-bottom: 72px; } }

/* ===== モバイル固定CTA ===== */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 98;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(11,12,10,.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding-bottom: var(--safe-b);
}
@media (min-width: 768px) { .mobile-cta { display: none; } }
.mobile-cta a {
  min-height: 58px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .12em; color: var(--cream);
}
.mobile-cta a + a { border-left: 1px solid var(--line-soft); }
.mobile-cta svg { color: var(--brass); }

/* ===== スクロール表示 ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__slide img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== ユーティリティ ===== */
.tac { text-align: center; }
.mt-s { margin-top: clamp(14px, 2vw, 22px); }
.mt-m { margin-top: clamp(24px, 3.4vw, 44px); }
.mt-l { margin-top: clamp(36px, 5vw, 68px); }
.muted { color: var(--muted); }
.sans { font-family: var(--sans); }
.small { font-size: 13px; line-height: 1.95; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.lead-copy { font-size: clamp(15px, 1vw + 11px, 18px); line-height: 2.4; }
.vline { display: block; }
