/* =========================================================
   コスモパーキング リニューアル提案デモ
   カラー：ネイビー×くすみブルーグレー×真鍮ゴールド／生成りベース
   ========================================================= */
:root {
  --navy: #13314f;        /* メイン：信頼・夜間監視・空 */
  --navy-deep: #0d2237;   /* 濃紺（反転背景） */
  --steel: #4a6788;       /* くすみブルーグレー */
  --brass: #c6a35a;       /* アクセント：保管の高級感（CTA・数字） */
  --brass-soft: #d8bd84;
  --ink: #22303c;         /* 本文（真っ黒にしない） */
  --mute: #5f7183;        /* 補助テキスト */
  --bg: #f7f5f0;          /* ベース：生成り（真っ白にしない） */
  --bg-sub: #eef1f2;      /* セクション交互 */
  --paper: #fcfbf7;
  --line: #dfe2df;
  --line-navy: rgba(255,255,255,.14);
  --ok: #3a8a6b;          /* 空きあり */
  --busy: #c99038;        /* やや混雑 */
  --full: #b45b53;        /* 満車 */
  --jp: "Zen Kaku Gothic New", system-ui, sans-serif;
  --num: "Montserrat", sans-serif;
  --radius: 12px;
  --radius-s: 8px;
  --wrap: 1120px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.pc-br { display: inline; }

/* reveal */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.rv.on { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

.arw { display: inline-block; transition: transform .3s; margin-left: .1em; }
a:hover .arw, button:hover .arw { transform: translateX(4px); }

/* 共通ラベル・見出し */
.kicker {
  font-family: var(--num); font-weight: 600; font-size: .72rem;
  letter-spacing: .28em; color: var(--brass); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker::before { content: ''; width: 26px; height: 1px; background: var(--brass); }
.kicker.light { color: var(--brass-soft); }
.sec-head { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.sec-head.left { text-align: left; }
.sec-head.left .kicker::before { display: inline-block; }
.sec-title {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem); font-weight: 900;
  letter-spacing: .04em; line-height: 1.55; margin-top: 14px; color: var(--navy);
}
.sec-head.light .sec-title { color: var(--paper); }
.sec-note { margin: 18px auto 0; max-width: 42em; color: var(--mute); font-size: .95rem; }
.sec-head.light .sec-note { color: #b9c6d4; }

/* ボタン */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--jp); font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  padding: 16px 30px; border-radius: var(--radius-s); border: none; cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s, color .3s, border-color .3s;
}
.btn-primary { background: var(--brass); color: var(--navy-deep); box-shadow: 0 6px 18px rgba(198,163,90,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(198,163,90,.4); }
.btn-line { background: rgba(255,255,255,.08); color: var(--paper); border: 1px solid rgba(255,255,255,.4); }
.btn-line:hover { background: rgba(255,255,255,.16); border-color: var(--brass-soft); }
.btn-outline { background: transparent; color: var(--paper); border: 1px solid rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--brass-soft); color: var(--brass-soft); }
.btn-lg { padding: 18px 34px; font-size: 1rem; }

/* =============== 上部電話バー =============== */
.topbar { background: var(--navy-deep); color: #cfd8e2; font-size: .8rem; }
.topbar-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 8px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-note { letter-spacing: .04em; }
.topbar-tel { display: inline-flex; align-items: center; gap: 8px; color: var(--brass-soft); font-family: var(--num); font-weight: 600; letter-spacing: .05em; }
.topbar-tel small { font-family: var(--jp); font-weight: 400; color: #9fb0c0; letter-spacing: .06em; }
.topbar-tel svg { color: var(--brass); }
@media (max-width: 720px) { .topbar-note { display: none; } .topbar-inner { justify-content: flex-end; } }

/* =============== ヘッダー =============== */
#hd {
  position: sticky; top: 0; z-index: 200; background: rgba(247,245,240,.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--pad); transition: box-shadow .3s;
}
#hd.scrolled { box-shadow: 0 4px 20px rgba(19,49,79,.08); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 9px; background: var(--navy);
  color: var(--brass-soft); font-family: "Georgia", serif; font-size: 1.4rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.brand-name { font-family: var(--num); font-weight: 700; font-size: 1.02rem; letter-spacing: .1em; color: var(--navy); line-height: 1.1; }
.brand-name small { display: block; font-family: var(--jp); font-weight: 500; font-size: .64rem; letter-spacing: .16em; color: var(--mute); margin-top: 3px; }
.brand.light .brand-name { color: var(--paper); }
.brand.light .brand-name small { color: #a9bacb; }

.gnav { display: flex; align-items: center; gap: 26px; }
.gnav a { font-size: .88rem; font-weight: 500; color: var(--ink); position: relative; }
.gnav a:not(.gnav-cta)::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--brass); transition: width .3s; }
.gnav a:not(.gnav-cta):hover::after { width: 100%; }
.gnav-cta {
  background: var(--navy); color: var(--paper) !important; padding: 11px 20px;
  border-radius: var(--radius-s); font-weight: 700; transition: background .3s;
}
.gnav-cta:hover { background: var(--navy-deep); }

.navtoggle { display: none; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.navtoggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform .3s, opacity .3s; }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .navtoggle { display: flex; }
  .gnav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); flex-direction: column;
    align-items: stretch; gap: 0; background: var(--paper); padding: 90px 26px 40px;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.22,1,.36,1);
    box-shadow: -12px 0 40px rgba(19,49,79,.18); overflow-y: auto;
  }
  .gnav.open { transform: none; }
  .gnav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .gnav a:not(.gnav-cta)::after { display: none; }
  .gnav-cta { margin-top: 22px; text-align: center; border-bottom: none; }
}

/* =============== ヒーロー =============== */
.hero { position: relative; overflow: hidden; color: var(--paper); padding: clamp(70px, 12vw, 120px) 0 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background:
  linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #1c3f60 100%); }
.hero-bg::before { /* 空〜地平のグラデ */
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(720px 480px at 80% 6%, rgba(198,163,90,.16), transparent 62%),
    radial-gradient(900px 620px at 6% 100%, rgba(74,103,136,.5), transparent 60%);
}
.hero-bg::after { /* ガレージ床のパース線 */
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,255,255,.06) 38px 39px),
    linear-gradient(to top, rgba(198,163,90,.1), transparent);
  transform: perspective(520px) rotateX(72deg); transform-origin: bottom;
  opacity: .85;
}
.hero-inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.hero-kicker { font-family: var(--num); font-weight: 600; font-size: .74rem; letter-spacing: .32em; color: var(--brass-soft); }
.hero-title { font-size: clamp(1.85rem, 5vw, 3.15rem); font-weight: 900; letter-spacing: .03em; line-height: 1.5; margin-top: 22px; }
.hero-title .stress { color: var(--brass-soft); }
.hero-lead { margin-top: 24px; font-size: clamp(.92rem, 1.6vw, 1.02rem); color: #c4d0dc; max-width: 40em; line-height: 2; }
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta { position: relative; z-index: 2; max-width: var(--wrap); margin: clamp(48px, 8vw, 80px) auto 0; padding: 0 var(--pad) clamp(50px, 8vw, 84px); display: flex; gap: clamp(20px, 5vw, 60px); }
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-item b { font-family: var(--num); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--brass-soft); line-height: 1; }
.hero-meta-item span { font-size: .8rem; color: #a9bacb; margin-top: 8px; letter-spacing: .06em; }
.hero-meta-item + .hero-meta-item { position: relative; padding-left: clamp(20px, 5vw, 60px); }
.hero-meta-item + .hero-meta-item::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(255,255,255,.16); }

@media (max-width: 640px) {
  .pc-br { display: none; }
  .hero-title { line-height: 1.6; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* =============== 安心の約束（余白1カラム） =============== */
.promise { padding: clamp(72px, 11vw, 130px) 0; background: var(--bg); position: relative; }
.promise::before { /* うっすら罫線テクスチャで平坦さ回避 */
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(0deg, transparent 0 39px, rgba(19,49,79,.03) 39px 40px);
}
.promise-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.promise-kicker { font-family: var(--num); font-weight: 600; font-size: .72rem; letter-spacing: .3em; color: var(--brass); }
.promise-lead { font-size: clamp(1.35rem, 3.4vw, 2rem); font-weight: 700; color: var(--navy); line-height: 1.85; margin: 22px 0 30px; }
.promise-body { color: var(--mute); font-size: 1rem; line-height: 2.1; text-align: left; }

/* =============== 選ばれる理由（ジグザグ） =============== */
.reason { padding: clamp(64px, 10vw, 110px) 0; background: var(--bg-sub); }
.zz { max-width: var(--wrap); margin: 56px auto 0; padding: 0 var(--pad); display: flex; flex-direction: column; gap: clamp(48px, 8vw, 96px); }
.zz-item { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.zz-item.reverse .zz-visual { order: 2; }
.zz-visual { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.zz-no { position: absolute; top: 16px; left: 18px; z-index: 3; font-family: var(--num); font-weight: 700; font-size: 1.1rem; letter-spacing: .1em; color: var(--navy-deep); background: var(--brass); padding: 4px 12px; border-radius: 40px; box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.zz-text .zz-label { font-family: var(--num); font-weight: 600; font-size: .72rem; letter-spacing: .26em; color: var(--brass); }
.zz-text h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 700; color: var(--navy); line-height: 1.6; margin: 12px 0 16px; }
.zz-text p { color: var(--mute); font-size: .95rem; line-height: 2; }
.zz-points { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.zz-points li { position: relative; padding-left: 26px; font-size: .9rem; color: var(--ink); }
.zz-points li::before { content: ''; position: absolute; left: 0; top: .55em; width: 14px; height: 8px; border-left: 2px solid var(--brass); border-bottom: 2px solid var(--brass); transform: rotate(-45deg); }

/* シーン（CSSのみのビジュアル） */
.scene { position: absolute; inset: 0; }
.scene-garage { background: linear-gradient(165deg, #1a3c5c 0%, #0f2740 100%); }
.scene-garage::before { /* シャッターの横スリット */
  content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 10px, rgba(0,0,0,.12) 10px 20px);
}
.scene-garage .shutter { position: absolute; left: 12%; right: 12%; top: 18%; bottom: 0; background: linear-gradient(180deg, rgba(198,163,90,.16), rgba(198,163,90,.04)); border: 1px solid rgba(198,163,90,.35); border-bottom: none; border-radius: 6px 6px 0 0; }
.scene-garage .cam { position: absolute; top: 12%; right: 16%; width: 34px; height: 20px; background: #d8bd84; border-radius: 4px; box-shadow: 0 0 0 4px rgba(216,189,132,.2); }
.scene-garage .cam::after { content: ''; position: absolute; left: -12px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: #0d2237; box-shadow: inset 0 0 0 3px #d8bd84; }

.scene-wash { background: linear-gradient(165deg, #204a6a 0%, #123650 100%); }
.scene-wash .shine { position: absolute; left: 18%; right: 18%; top: 30%; height: 40%; border-radius: 40% 40% 30% 30%; background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.02)); }
.scene-wash .drop { position: absolute; width: 12px; height: 16px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; background: rgba(216,229,240,.7); top: -20px; animation: drop 2.6s linear infinite; }
.scene-wash .d-a { left: 32%; animation-delay: 0s; }
.scene-wash .d-b { left: 52%; animation-delay: .9s; }
.scene-wash .d-c { left: 68%; animation-delay: 1.7s; }
@keyframes drop { 0% { transform: translateY(0); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(220px); opacity: 0; } }

.scene-shuttle { background: linear-gradient(165deg, #17395a 0%, #0e2740 100%); }
.scene-shuttle .runway { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 9px, rgba(0,0,0,.1) 9px 18px); }
.scene-shuttle .plane { position: absolute; top: 22%; left: -14%; width: 34px; height: 34px; color: var(--brass-soft); animation: fly 6s linear infinite; filter: drop-shadow(0 4px 8px rgba(0,0,0,.35)); }
@keyframes fly { 0% { transform: translate(-40px, 10px) rotate(4deg); } 100% { transform: translate(560px, -34px) rotate(4deg); } }
.scene-shuttle .road { position: absolute; left: 0; right: 0; bottom: 22%; height: 3px; background: repeating-linear-gradient(90deg, rgba(216,189,132,.6) 0 22px, transparent 22px 44px); }
.scene-shuttle .road::before { content: ''; position: absolute; left: 0; right: 0; bottom: -22%; height: 22%; background: linear-gradient(to top, rgba(198,163,90,.12), transparent); }

@media (max-width: 780px) {
  .zz-item, .zz-item.reverse { grid-template-columns: 1fr; }
  .zz-item.reverse .zz-visual { order: 0; }
  .zz-visual { min-height: 220px; }
}

/* =============== サービス（縦リスト） =============== */
.service { padding: clamp(64px, 10vw, 110px) 0; background: var(--bg); }
.svc-list { max-width: var(--wrap); margin: 48px auto 0; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(2, 1fr); column-gap: clamp(24px, 5vw, 64px); }
.svc-row { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.svc-ic { font-family: var(--num); font-weight: 700; font-size: .82rem; letter-spacing: .06em; color: var(--brass); border: 1px solid var(--brass); border-radius: 6px; padding: 5px 8px; flex-shrink: 0; margin-top: 3px; }
.svc-row h4 { font-size: 1.02rem; font-weight: 700; color: var(--navy); }
.svc-row p { color: var(--mute); font-size: .88rem; line-height: 1.9; margin-top: 4px; }
@media (max-width: 720px) { .svc-list { grid-template-columns: 1fr; } }

/* =============== 料金シミュレーター =============== */
.estimate { background: var(--navy); position: relative; overflow: hidden; padding: clamp(64px, 10vw, 110px) 0; }
.estimate::before { content: ''; position: absolute; inset: 0; background: radial-gradient(620px 420px at 88% 8%, rgba(198,163,90,.14), transparent 62%); }
.estimate-inner { position: relative; z-index: 1; }
.sim { max-width: 900px; margin: 44px auto 0; padding: clamp(24px, 4vw, 40px); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); }
.sim-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sim-field { display: flex; flex-direction: column; gap: 8px; }
.sim-field span { font-size: .82rem; color: #b9c6d4; letter-spacing: .06em; font-weight: 500; }
.sim-field input, .sim-field select {
  font-family: var(--jp); font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-s); padding: 13px 14px; width: 100%;
}
.sim-field input:focus, .sim-field select:focus { outline: 2px solid var(--brass); outline-offset: 1px; }
.sim-actions { margin-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.sim-btn { min-width: 260px; }
.sim-mock-note { font-size: .76rem; color: #cfd8e2; text-align: center; border: 1px solid rgba(255,255,255,.25); padding: 5px 12px; border-radius: 40px; }

.sim-result { max-width: 900px; margin: 22px auto 0; padding: clamp(24px, 4vw, 36px); background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; box-shadow: 0 14px 40px rgba(13,34,55,.25); }
.sim-result[hidden] { display: none; }
.sim-result-main { display: flex; flex-direction: column; gap: 6px; }
.sim-result-label { font-size: .92rem; color: var(--mute); }
.sim-result-label b { font-family: var(--num); font-weight: 700; color: var(--navy); font-size: 1.2em; }
.sim-result-price { font-family: var(--num); font-weight: 700; color: var(--navy); font-size: clamp(2rem, 6vw, 2.8rem); line-height: 1.1; }
.sim-result-price .yen { font-size: .5em; margin-right: 4px; color: var(--brass); }
.sim-result-price small { font-family: var(--jp); font-weight: 400; font-size: .34em; color: var(--mute); margin-left: 8px; letter-spacing: .06em; }
.sim-result-note { font-size: .85rem; color: var(--mute); }
@media (max-width: 640px) { .sim-grid { grid-template-columns: 1fr; } .sim-btn { width: 100%; min-width: 0; } }

/* =============== クラス比較（表） =============== */
.plans { padding: clamp(64px, 10vw, 110px) 0; background: var(--bg-sub); }
.plan-table-wrap { max-width: var(--wrap); margin: 48px auto 0; padding: 0 var(--pad); overflow-x: auto; }
.plan-table { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 24px rgba(19,49,79,.06); }
.plan-table th, .plan-table td { padding: 18px 16px; text-align: center; border-bottom: 1px solid var(--line); font-size: .92rem; }
.plan-table thead th { background: var(--navy); color: var(--paper); font-weight: 700; font-size: .98rem; letter-spacing: .04em; }
.plan-table thead th.feat { background: var(--navy-deep); position: relative; }
.plan-table thead th.feat::after { content: 'おすすめ'; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); font-size: .6rem; letter-spacing: .1em; color: var(--brass-soft); }
.plan-table tbody th { text-align: left; background: var(--bg); color: var(--navy); font-weight: 700; width: 20%; }
.plan-table td.feat { background: rgba(198,163,90,.08); font-weight: 500; }
.plan-table td.na { color: var(--mute); font-size: .82rem; }
.plan-table tbody tr:last-child td, .plan-table tbody tr:last-child th { border-bottom: none; }
.plan-table tbody tr:last-child td { font-family: var(--num); font-weight: 700; color: var(--navy); font-size: 1.25rem; }
.p-yen { font-size: .6em; color: var(--brass); margin-right: 3px; }
.p-tax { font-size: .5em; color: var(--mute); font-family: var(--jp); margin-left: 2px; }
.plans-note { max-width: var(--wrap); margin: 18px auto 0; padding: 0 var(--pad); text-align: center; font-size: .78rem; color: var(--mute); }

/* =============== 空車カレンダー =============== */
.vacancy { padding: clamp(64px, 10vw, 110px) 0; background: var(--bg); }
.leg { display: inline-flex; align-items: center; gap: 5px; margin-left: 16px; font-size: .82rem; color: var(--ink); }
.leg i { font-style: normal; font-weight: 700; }
.lg-o { color: var(--ok); } .lg-t { color: var(--busy); } .lg-x { color: var(--full); }
.cal { max-width: 760px; margin: 44px auto 0; padding: 0 var(--pad); }
.cal-head { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 18px; }
.cal-month { font-family: var(--num); font-weight: 700; font-size: 1.15rem; color: var(--navy); min-width: 9em; text-align: center; }
.cal-nav { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); color: var(--navy); font-size: 1.4rem; line-height: 1; cursor: pointer; transition: background .3s, border-color .3s; }
.cal-nav:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-size: .74rem; font-weight: 700; color: var(--mute); padding: 6px 0; letter-spacing: .08em; }
.cal-dow.sun { color: var(--full); }
.cal-dow.sat { color: var(--steel); }
.cal-cell { aspect-ratio: 1/1; border-radius: var(--radius-s); background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.cal-cell.empty { background: transparent; border: none; }
.cal-cell .d { font-family: var(--num); font-weight: 600; font-size: .8rem; color: var(--mute); }
.cal-cell .mk { font-size: 1.15rem; font-weight: 700; line-height: 1; }
.cal-cell.o .mk { color: var(--ok); }
.cal-cell.t .mk { color: var(--busy); }
.cal-cell.x { background: #f3edec; }
.cal-cell.x .mk { color: var(--full); }
.cal-note { margin-top: 16px; font-size: .76rem; color: var(--mute); text-align: center; }
@media (max-width: 480px) { .cal-grid { gap: 4px; } .cal-cell .mk { font-size: 1rem; } .cal-cell .d { font-size: .7rem; } }
@media (max-width: 560px) {
  .vacancy .sec-note { display: flex; flex-direction: column; align-items: center; gap: 6px; }
  .leg { margin-left: 0; }
}

/* =============== お知らせ・コラム =============== */
.news { padding: clamp(64px, 10vw, 110px) 0; background: var(--bg-sub); }
.news-grid { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 72px); }
.news-list { margin-top: 28px; }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list li:first-child { border-top: 1px solid var(--line); }
.news-list a { display: flex; gap: 20px; padding: 20px 4px; align-items: baseline; transition: background .3s; }
.news-list a:hover { background: rgba(19,49,79,.03); }
.news-date { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; width: 6.5em; }
.news-date b { font-family: var(--num); font-weight: 600; font-size: .82rem; color: var(--navy); }
.news-date em { font-style: normal; font-size: .68rem; color: var(--brass); border: 1px solid var(--brass); border-radius: 40px; padding: 1px 8px; align-self: flex-start; }
.news-txt { font-size: .92rem; color: var(--ink); line-height: 1.7; }
.news-list a:hover .news-txt { color: var(--navy); }
.news-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-weight: 700; color: var(--navy); font-size: .9rem; }

.col-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.col-list a { display: flex; gap: 16px; align-items: center; padding: 12px; background: var(--paper); border-radius: var(--radius-s); border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.col-list a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(19,49,79,.08); }
.col-thumb { width: 84px; height: 68px; border-radius: 6px; flex-shrink: 0; background: linear-gradient(145deg, var(--steel), var(--navy)); position: relative; overflow: hidden; }
.col-thumb::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60px 40px at 70% 20%, rgba(198,163,90,.4), transparent 60%); }
.col-thumb[data-c="2"] { background: linear-gradient(145deg, #2a5170, var(--navy-deep)); }
.col-thumb[data-c="3"] { background: linear-gradient(145deg, #35617f, #1a3a56); }
.col-body { display: flex; flex-direction: column; gap: 6px; }
.col-tag { font-style: normal; font-size: .7rem; color: var(--brass); font-weight: 700; letter-spacing: .04em; }
.col-ttl { font-size: .9rem; font-weight: 700; color: var(--navy); line-height: 1.5; }
@media (max-width: 820px) { .news-grid { grid-template-columns: 1fr; } }

/* =============== 利用の流れ =============== */
.flow { padding: clamp(64px, 10vw, 110px) 0; background: var(--bg); }
.flow-list { max-width: var(--wrap); margin: 52px auto 0; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 4vw, 40px); }
.flow-step { position: relative; padding-top: 30px; }
.flow-step::before { content: ''; position: absolute; top: 0; left: 0; right: -20px; height: 2px; background: var(--line); }
.flow-step:last-child::before { right: 0; }
.flow-step::after { content: ''; position: absolute; top: -6px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px rgba(198,163,90,.18); }
.flow-no { font-family: var(--num); font-weight: 700; font-size: .78rem; letter-spacing: .16em; color: var(--brass); }
.flow-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 10px 0 8px; }
.flow-step p { font-size: .86rem; color: var(--mute); line-height: 1.9; }
@media (max-width: 820px) { .flow-list { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } .flow-step::before { right: -12px; } }
@media (max-width: 480px) { .flow-list { grid-template-columns: 1fr; } .flow-step::before { display: none; } .flow-step { padding-top: 0; padding-left: 28px; } .flow-step::after { top: 4px; } }

/* =============== CTA（反転） =============== */
.cta { background: var(--navy-deep); color: var(--paper); position: relative; overflow: hidden; padding: clamp(72px, 11vw, 124px) 0; }
.cta::before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(560px 340px at 50% 118%, rgba(198,163,90,.22), transparent 68%),
  radial-gradient(500px 300px at 12% 0%, rgba(74,103,136,.4), transparent 60%); }
.cta-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.cta-title { font-size: clamp(1.5rem, 3.6vw, 2.3rem); font-weight: 900; line-height: 1.55; margin: 18px 0 18px; color: var(--paper); letter-spacing: .03em; }
.cta-lead { color: #c4d0dc; font-size: .96rem; line-height: 2; }
.cta-actions { margin-top: 38px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-tel { display: inline-flex; align-items: center; gap: 14px; color: var(--brass-soft); }
.cta-tel svg { color: var(--brass); }
.cta-tel-num { font-family: var(--num); font-weight: 700; font-size: clamp(1.8rem, 5vw, 2.5rem); letter-spacing: .06em; line-height: 1.1; }
.cta-tel-num small { display: block; font-family: var(--jp); font-weight: 400; font-size: .3em; color: #9fb0c0; letter-spacing: .1em; margin-top: 4px; }
.cta-actions .btn { min-width: 300px; }
@media (max-width: 520px) { .cta-actions .btn { min-width: 0; width: 100%; } }

/* =============== アクセス =============== */
.access { padding: clamp(64px, 10vw, 110px) 0; background: var(--bg); }
.access-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.access-info .sec-title { text-align: left; }
.access-info .kicker::before { display: inline-block; }
.access-hint { color: var(--mute); font-size: .92rem; margin: 16px 0 24px; }
.access-dl { display: flex; flex-direction: column; }
.access-dl > div { display: grid; grid-template-columns: 6em 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.access-dl > div:first-child { border-top: 1px solid var(--line); }
.access-dl dt { font-weight: 700; color: var(--navy); font-size: .88rem; }
.access-dl dd { color: var(--ink); font-size: .92rem; line-height: 1.7; }
.access-dl dd a { color: var(--navy); border-bottom: 1px solid var(--brass); }

.access-map { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.map-mock { position: relative; width: 100%; height: 100%; background: linear-gradient(160deg, #e7ede6 0%, #dbe4dd 100%); }
.route-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-line { stroke: var(--steel); stroke-width: 3; stroke-dasharray: 2 11; stroke-linecap: round; }
.route-dot { fill: var(--brass); stroke: var(--paper); stroke-width: 3; }
.route-dot-air { fill: var(--navy); }
.route-label {
  position: absolute; font-size: .72rem; font-weight: 700; color: var(--navy);
  background: rgba(252,251,247,.94); padding: 5px 12px; border-radius: 40px;
  box-shadow: 0 3px 10px rgba(19,49,79,.16); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px; transform: translate(-50%, -50%);
}
.route-ic { left: 10%; top: 80%; }
.route-park { left: 50%; top: 47%; background: var(--brass); color: var(--navy-deep); font-size: .8rem; }
.route-park b { font-family: "Georgia", serif; }
.route-air { left: auto; right: 4%; top: 18%; transform: translateY(-50%); color: var(--paper); background: var(--navy-deep); }
.route-air svg { flex-shrink: 0; }
.map-note { margin-top: 12px; font-size: .76rem; color: var(--mute); }
@media (max-width: 820px) { .access-inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .route-label { font-size: .66rem; padding: 4px 9px; }
  .route-park { font-size: .72rem; }
}

/* =============== フッター =============== */
.site-footer { background: var(--navy-deep); color: #a9bacb; }
.footer-top { max-width: var(--wrap); margin: 0 auto; padding: clamp(52px, 8vw, 76px) var(--pad) 40px; display: grid; grid-template-columns: 1.1fr 1.4fr; gap: clamp(32px, 6vw, 64px); }
.footer-copy-lead { font-size: .86rem; line-height: 1.9; margin: 20px 0 22px; color: #b9c6d4; }
.footer-tel { font-family: var(--num); font-weight: 700; font-size: 1.6rem; color: var(--brass-soft); letter-spacing: .05em; }
.footer-hours { font-size: .78rem; margin-top: 6px; color: #8fa2b4; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fnav-head { font-size: .82rem; font-weight: 700; color: var(--paper); margin-bottom: 14px; letter-spacing: .06em; }
.fnav-col a { display: block; font-size: .84rem; padding: 6px 0; color: #a9bacb; transition: color .3s; }
.fnav-col a:hover { color: var(--brass-soft); }
.footer-bottom { border-top: 1px solid var(--line-navy); }
.footer-bottom { max-width: 100%; }
.footer-bottom p { text-align: center; }
.footer-bottom { padding: 20px var(--pad); display: flex; flex-direction: column; gap: 6px; }
.footer-legal { font-family: var(--num); font-size: .72rem; letter-spacing: .06em; color: #8fa2b4; text-align: center; }
.footer-demo { font-size: .72rem; color: #6f8296; text-align: center; }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; } .footer-nav { grid-template-columns: repeat(2, 1fr); } }

/* =============== 追従バー（スマホ） =============== */
.sticky-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; background: var(--paper); box-shadow: 0 -4px 20px rgba(19,49,79,.16); padding: 10px 12px; gap: 10px; padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
.sb-tel { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; width: 68px; color: var(--navy); font-size: .72rem; font-weight: 700; border: 1px solid var(--line); border-radius: var(--radius-s); }
.sb-reserve { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--brass); color: var(--navy-deep); font-weight: 700; border-radius: var(--radius-s); font-size: .95rem; }
@media (max-width: 720px) {
  .sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* =============== スマホ微調整 =============== */
@media (max-width: 560px) {
  .topbar-inner { padding: 7px 16px; }
  .topbar-tel { font-size: .92rem; }
  .topbar-tel small { display: none; }       /* 受付時間はヘッダーが手狭なので非表示 */
  #hd { padding: 10px 16px; }
  .brand-mark { width: 34px; height: 34px; font-size: 1.2rem; }
  .brand-name { font-size: .9rem; }
  .brand-name small { font-size: .58rem; }
  .hero-lead { font-size: .9rem; line-height: 1.95; }
  .hero-meta { gap: 14px; }
  .hero-meta-item + .hero-meta-item { padding-left: 14px; }
  .hero-meta-item span { font-size: .7rem; }
  .sec-title { font-size: 1.4rem; }
  .promise-body { font-size: .94rem; line-height: 2; }
}
