:root {
  /* litpla実測パレット（明るいスカイブルー主役 / 黒の特大タイトル） */
  --sky: #74cded;         /* litpla最頻の主役色 */
  --sky-deep: #3d76c7;
  --ink: #213162;         /* 特大タイトル・本文の濃色（litpla dark navy） */
  --body: #515d7e;
  --muted: #8b95af;
  --bg: #ffffff;
  --bg-gray: #f4f7fb;
  --line: #e3e9f2;
  /* アクセント（市松・コンフェッティにごく少量） */
  --pink: #f3234f;
  --yellow: #ffe14d;
  --mint: #7df2e6;
  /* BABY STEPS ブランド副色 */
  --bg-2: var(--bg-gray);
  --blue: var(--sky-deep);
  --sand: #faed9f;
  --brand-navy: #213162;

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Poppins", var(--font-jp);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp); color: var(--body); background: var(--bg);
  line-height: 1.9; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px); position: relative; }

/* ============ litpla式 特大タイトル（黒・超大） ============ */
.en-huge, .huge-title {
  font-family: var(--font-en); font-weight: 900; color: var(--ink);
  font-size: clamp(46px, 8.4vw, 104px); line-height: .96; letter-spacing: -0.03em;
}
.sec-jp { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: .04em; }
.kicker { font-size: 13px; font-weight: 700; color: var(--muted); margin-top: 10px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink); }

/* サブコピー内の強調（litpla式: 一部だけスカイブルー） */
.hl { color: var(--sky-deep); }

/* ============ litpla式 市松模様(チェッカー)装飾 ============ */
.checker { position: absolute; display: grid; grid-auto-flow: row; grid-template-columns: repeat(6, 1fr); width: 132px; z-index: 1; pointer-events: none; }
.checker span { aspect-ratio: 1; }
.checker .s { background: var(--sky); }
.checker .k { background: var(--ink); }
.checker .w { background: #fff; }
.checker .m { background: var(--mint); }
/* コンフェッティ（小さな四角・ひし形） */
.conf { position: absolute; z-index: 1; pointer-events: none; }
.conf.sq { width: 16px; height: 16px; background: var(--sky); }
.conf.di { width: 14px; height: 14px; background: var(--ink); transform: rotate(45deg); }
.conf.sky { width: 12px; height: 12px; background: var(--sky-deep); border-radius: 3px; }

/* ============ litpla式 黒い丸矢印ピルボタン ============ */
.pill-btn { display: inline-flex; align-items: center; gap: 16px; background: var(--ink); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: .02em; padding: 12px 14px 12px 30px; border-radius: 999px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); box-shadow: 0 10px 24px rgba(12,32,55,.18); }
.pill-btn .circ { width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 16px; font-weight: 700; transition: transform .3s var(--ease); flex: none; }
.pill-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(12,32,55,.26); }
.pill-btn:hover .circ { transform: translateX(3px); }
.pill-btn.on-sky { background: var(--ink); }
.pill-btn.light { background: #fff; color: var(--ink); box-shadow: 0 10px 24px rgba(12,32,55,.1); }
.pill-btn.light .circ { background: var(--ink); color: #fff; }

/* ============ ヘッダー（上：細いスカイのユーティリティ帯 / 下：白ヘッダー） ============ */
.util-bar { position: fixed; inset: 0 0 auto 0; z-index: 101; height: 34px; background: var(--sky); display: flex; align-items: center; justify-content: flex-end; gap: 18px; padding: 0 clamp(16px, 4vw, 40px); font-size: 11px; font-weight: 700; color: #fff; letter-spacing: .08em; }
.util-bar a { color: #fff; opacity: .95; transition: opacity .3s; }
.util-bar a:hover { opacity: .7; }
header {
  position: fixed; inset: 34px 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 44px);
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line); transition: padding .4s var(--ease), box-shadow .4s var(--ease);
}
header.scrolled { padding-top: 9px; padding-bottom: 9px; box-shadow: 0 8px 26px rgba(12,32,55,.1); }
.logo-img { height: 32px; width: auto; transition: height .4s var(--ease); }
header.scrolled .logo-img { height: 28px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 14px; font-weight: 700; color: var(--ink); position: relative; padding: 4px 0; }
nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--sky-deep); transition: width .3s var(--ease); }
nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--ink); color: #fff !important; padding: 10px 22px; border-radius: 999px; }
.nav-cta:hover { background: #16273f; }
.burger { display: none; font-size: 24px; color: var(--ink); background: none; border: 0; cursor: pointer; }
.mobile-nav { position: fixed; inset: 0; background: var(--ink); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; transform: translateX(100%); transition: transform .45s var(--ease); visibility: hidden; }
.mobile-nav.open { transform: none; visibility: visible; }
.mobile-nav a { color: #fff; font-size: 20px; font-weight: 700; padding: 12px; }
.mobile-nav .m-close { position: absolute; top: 18px; right: 26px; font-size: 30px; color: #fff; background: none; border: 0; cursor: pointer; }

/* 右下フローティングボタン（litpla PARK LIST風） */
.float-cta { position: fixed; right: 20px; bottom: 20px; z-index: 90; background: var(--sky); color: #fff; border-radius: 16px; padding: 14px 20px; display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 13px; box-shadow: 0 12px 30px rgba(0,150,220,.4); transition: transform .3s var(--ease); }
.float-cta:hover { transform: translateY(-3px); }
.float-cta .circ { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--sky-deep); display: grid; place-items: center; font-size: 14px; }

/* ============ Reveal（方向つき・段階） ============ */
.reveal { opacity: 0; transform: translateY(38px) scale(.99); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-l { opacity: 0; transform: translateX(-48px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(48px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
/* 装飾のふわふわ浮遊 */
.checker, .conf { animation: floaty 6s ease-in-out infinite; }
.conf.di { animation: floaty 7s ease-in-out infinite .5s, spin 12s linear infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes spin { to { transform: translateY(0) rotate(405deg); } }
section.block { padding: clamp(72px, 11vw, 140px) 0; position: relative; overflow: hidden; }

/* ============ トップ ヒーロー（全面実写・文字なし） ============ */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background: var(--ink); }
.hero img.hero-photo { position: absolute; inset: -6% 0; width: 100%; height: 112%; object-fit: cover; will-change: transform; animation: kenburns 18s ease-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero .fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,40,.15) 0%, transparent 30%, transparent 68%, rgba(10,20,40,.4) 100%); }
.hero .cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.9); font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: .3em; display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 4; }
.hero .cue::after { content: ""; width: 1px; height: 46px; background: linear-gradient(180deg, rgba(255,255,255,.9), transparent); }
/* ヒーローのコピー・オーバーレイ */
.hero .scrim2 { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,40,.4), rgba(10,20,40,.55)); z-index: 2; }
.hero-copy { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 24px; }
.hero-copy .eyebrow { color: #fff; margin-bottom: 20px; }
.hero-copy .eyebrow .chip { box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hero-copy h1 { font-size: clamp(30px, 5.6vw, 68px); font-weight: 900; line-height: 1.35; letter-spacing: .01em; text-shadow: 0 6px 30px rgba(0,0,0,.4); }
.hero-copy h1 .accent { color: var(--sky); }
.hero-copy .lead { font-size: clamp(13px, 1.7vw, 16px); line-height: 2; color: rgba(255,255,255,.92); max-width: 640px; margin: 24px auto 0; }
.hero-copy .btns { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.hero-copy .pill-btn.ghost { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.6); box-shadow: none; }
.hero-copy .pill-btn.ghost .circ { background: #fff; color: var(--ink); }

/* TOP 導入ストーリー */
.story-sec { background: var(--bg); text-align: center; }
.story-sec .lead-copy { font-size: clamp(24px, 3.8vw, 42px); font-weight: 900; color: var(--ink); line-height: 1.5; letter-spacing: -.01em; margin-top: 16px; }
.story-sec .body { max-width: 640px; margin: 30px auto 0; font-size: 15px; line-height: 2.1; color: var(--body); }
.story-sec .body p { margin-bottom: 1.4em; }
.story-sec .body .em { color: var(--ink); font-weight: 700; }

/* TOP 各ページ誘導ブロック（交互） */
.promo { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.promo:nth-child(even) .promo-photo { order: 2; }
.promo + .promo { margin-top: clamp(60px, 8vw, 100px); }
.promo-photo .slab-like { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg, 0 24px 60px rgba(12,32,55,.18)); }
.promo-photo img { width: 100%; height: clamp(260px, 34vw, 380px); object-fit: cover; display: block; }
.promo-txt .en { font-family: var(--font-en); font-weight: 800; font-size: 13px; letter-spacing: .18em; color: var(--sky-deep); }
.promo-txt h2 { font-size: clamp(24px, 3.4vw, 38px); font-weight: 900; color: var(--ink); line-height: 1.4; letter-spacing: -.01em; margin: 10px 0 18px; }
.promo-txt p { font-size: 14px; line-height: 2; color: var(--body); margin-bottom: 22px; }
@media (max-width: 900px) {
  .promo { grid-template-columns: 1fr; gap: 24px; }
  .promo:nth-child(even) .promo-photo { order: 0; }
}
/* ヒーロー下端の市松トランジション */
.hero-checker { position: absolute; left: 0; bottom: 0; z-index: 3; }

/* ============ NEWS/SNS（litpla NEWS: 左特大タイトル + 右カード） ============ */
.news-sec { background: var(--bg); }
.news-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.news-left .sec-jp { text-align: left; }
.news-left .en-huge { margin: 6px 0 30px; }
.news-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: var(--bg-gray); border-radius: 16px; overflow: hidden; transition: transform .4s var(--ease); }
.news-card:hover { transform: translateY(-6px); }
.news-card .thumb { aspect-ratio: 4/3; background: #fff; display: grid; place-items: center; }
.news-card .thumb img { width: 60%; height: 60%; object-fit: contain; }
.news-card .body { padding: 16px 18px 20px; }
.news-card .tag { display: inline-block; font-size: 10px; font-weight: 700; color: #fff; background: var(--sky); padding: 3px 10px; border-radius: 999px; letter-spacing: .06em; }
.news-card .name { font-size: 15px; font-weight: 800; color: var(--ink); margin: 12px 0 8px; }
.news-card .handle { font-family: var(--font-en); font-size: 12px; color: var(--sky-deep); font-weight: 600; }

/* ============ ABOUT（中央・特大タイトル + 非対称コラージュ + 市松/コンフェッティ） ============ */
.about { background: var(--bg); text-align: center; }
.about .sub-copy { font-size: clamp(22px, 3.6vw, 38px); font-weight: 900; color: var(--ink); line-height: 1.5; margin-top: 14px; letter-spacing: -.01em; }
.about .desc { font-size: 14px; color: var(--body); margin-top: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }
.about .collage { position: relative; height: clamp(320px, 44vw, 460px); max-width: 860px; margin: clamp(40px, 6vw, 64px) auto 0; }
.about .collage .ph { position: absolute; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(12,32,55,.16); }
.about .collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.about .collage .p1 { width: 30%; height: 58%; top: 2%; left: 2%; z-index: 2; }
.about .collage .p2 { width: 44%; height: 82%; top: 0; left: 30%; z-index: 3; border: 6px solid #fff; }
.about .collage .p3 { width: 28%; height: 48%; bottom: 2%; right: 2%; z-index: 2; }

/* ============ STORES（litpla ATTRACTIONS: スカイ帯 + 市松 + ジグザグ + ストライプ枠） ============ */
.stores-sec { background: var(--sky); position: relative; }
.stores-sec .head-block { text-align: center; margin-bottom: clamp(30px, 5vw, 50px); }
.stores-sec .en-huge { color: var(--ink); }
.store-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 68px); align-items: center; padding: clamp(36px, 5vw, 56px) 0; }
.store-row:nth-child(even) .striped-frame { order: 2; }
/* 斜めストライプの写真フレーム */
.striped-frame { position: relative; }
.striped-frame::before { content: ""; position: absolute; inset: -12px; border-radius: 26px; background: repeating-linear-gradient(45deg, rgba(255,255,255,.9) 0 7px, transparent 7px 15px); z-index: 0; }
.striped-frame img { position: relative; z-index: 1; border-radius: 18px; width: 100%; height: clamp(240px, 32vw, 320px); object-fit: cover; box-shadow: 0 20px 44px rgba(12,32,55,.2); }
.store-txt .cat { font-size: 13px; font-weight: 700; color: var(--ink); opacity: .7; }
/* 2色の特大英字見出し */
.attr-title { font-family: var(--font-en); font-weight: 900; font-size: clamp(34px, 5.4vw, 62px); line-height: 1; letter-spacing: -.01em; margin: 8px 0 12px; }
.attr-title .a { color: var(--ink); }
.attr-title .b { color: #fff; }
.store-txt .jp-name { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.store-txt .addr { font-size: 14px; color: var(--ink); opacity: .85; margin-bottom: 3px; }
.store-txt .hours { font-size: 13px; color: var(--ink); opacity: .7; margin-bottom: 20px; }
.store-txt .btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ INFO（litpla TICKETS: 黒い角丸カード） ============ */
.info-sec { background: var(--bg); text-align: center; }
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(36px, 5vw, 52px); }
.info-card { background: var(--ink); border-radius: 22px; padding: 44px 28px 36px; color: #fff; transition: transform .4s var(--ease); }
.info-card:hover { transform: translateY(-8px); }
.info-card .ic { font-family: var(--font-en); font-weight: 900; font-size: 26px; color: var(--sky); }
.info-card h3 { font-size: 19px; font-weight: 800; margin: 12px 0 6px; }
.info-card p { font-size: 12.5px; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.info-card .pill-btn { background: #fff; color: var(--ink); box-shadow: none; }
.info-card .pill-btn .circ { background: var(--ink); color: #fff; }

/* ============ 下層ページ ヒーロー（日本語小 + 巨大アウトライン英字） ============ */
.page-hero { position: relative; padding: clamp(140px, 18vw, 200px) 0 clamp(44px, 6vw, 72px); background: var(--bg-gray); overflow: hidden; text-align: center; }
.page-hero .jp { font-size: 14px; font-weight: 700; color: var(--ink); }
.page-hero .en-ghost { font-family: var(--font-en); font-weight: 900; font-size: clamp(56px, 13vw, 150px); line-height: .9; color: transparent; -webkit-text-stroke: 1.5px #cfd6dd; margin-top: 8px; letter-spacing: -.03em; }
.breadcrumb { font-size: 12px; color: var(--muted); padding: 22px 0 0; }
.breadcrumb a { color: var(--body); }
.breadcrumb a:hover { color: var(--sky-deep); }

/* ============ 汎用テーブル・カード・下層セクション ============ */
.head-block .eyebrow, .head-block .sec-jp { margin-bottom: 10px; }
.info-table { max-width: 660px; margin: 0 auto; border-top: 2px solid var(--ink); }
.info-table div { display: flex; gap: 24px; padding: 16px 6px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--body); }
.info-table b { min-width: 108px; color: var(--ink); font-weight: 700; flex: none; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 6vw, 56px); }
.feat-grid .card { background: var(--bg-gray); border-radius: 20px; padding: 36px 30px; transition: transform .4s var(--ease); }
.feat-grid .card:hover { transform: translateY(-6px); }
.feat-grid .num { font-family: var(--font-en); font-weight: 900; font-size: 24px; color: var(--sky-deep); }
.feat-grid h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 12px 0 8px; }
.feat-grid p { font-size: 13px; color: var(--body); }

/* 店舗詳細 */
.store-detail-main { margin: 0 auto; }  /* 幅は .wrap(1180px) に合わせ店舗一覧と統一 */
.store-detail-main .lead-photo { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(12,32,55,.18); }
.store-detail-main .lead-photo img { width: 100%; height: clamp(240px, 44vw, 440px); object-fit: cover; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 52px); margin-top: clamp(38px, 5vw, 58px); align-items: start; }
.map-embed { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(12,32,55,.1); }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* 採用 */
.recruit-hero-band { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(12,32,55,.18); }
.recruit-hero-band img { width: 100%; height: clamp(280px, 42vw, 440px); object-fit: cover; }
.recruit-hero-band .overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(12,32,55,.85) 0%, rgba(12,32,55,.45) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 6vw, 66px); color: #fff; }
.recruit-hero-band .overlay h2 { font-size: clamp(24px, 3.6vw, 40px); font-weight: 900; line-height: 1.35; margin: 12px 0; }
.recruit-hero-band .overlay p { font-size: 14px; color: rgba(255,255,255,.86); max-width: 460px; }
.job-list { max-width: 780px; margin: clamp(40px, 6vw, 56px) auto 0; }
.job-item { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 6px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.job-item:first-child { border-top: 2px solid var(--ink); }
.job-item .j-title { font-weight: 700; font-size: 16px; color: var(--ink); }
.job-item .j-meta { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* お問い合わせ */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(28px, 4vw, 44px); }
.contact-card { background: var(--bg-gray); border-radius: 20px; padding: 40px 30px; text-align: center; transition: transform .4s var(--ease); }
.contact-card:hover { transform: translateY(-6px); }
.contact-card .c-icon { font-family: var(--font-en); font-weight: 900; font-size: 22px; color: var(--sky-deep); }
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 12px 0 8px; }
.contact-card p { font-size: 13px; color: var(--body); margin-bottom: 22px; }

/* CTA帯・サービス帯（下層で使用） */
.cta-band { position: relative; text-align: center; background: var(--sky); overflow: hidden; }
.cta-band .eyebrow, .cta-band .sec-jp { justify-content: center; margin-bottom: 14px; color: var(--ink); }
.cta-band h2 { font-family: var(--font-en); font-weight: 900; font-size: clamp(26px, 4vw, 46px); letter-spacing: -.03em; color: var(--ink); }
.cta-band p { color: var(--ink); opacity: .8; margin-top: 12px; font-size: 14px; }
.cta-band .pill-btn { margin-top: 26px; }
.service-band { background: var(--ink); color: #fff; }
.service-band .wrap { display: flex; align-items: center; gap: clamp(24px, 4vw, 44px); flex-wrap: wrap; }
.service-band img.mlogo { height: 88px; width: 88px; border-radius: 50%; background: #fff; padding: 6px; flex: none; }
.service-band .txt { flex: 1; min-width: 260px; }
.service-band h3 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; margin: 8px 0 12px; }
.service-band p { font-size: 14px; color: rgba(255,255,255,.78); max-width: 580px; }
.service-band .sec-jp { color: var(--sky); }

/* ============ Footer（濃色） ============ */
footer { background: var(--ink); color: #b7c4dc; padding: clamp(56px, 7vw, 74px) 0 32px; }
footer .top { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
footer .logo-img { height: 30px; background: #fff; border-radius: 8px; padding: 11px 16px; box-sizing: content-box; }
footer .cols { display: flex; gap: clamp(38px, 6vw, 64px); flex-wrap: wrap; }
footer .cols h4 { font-family: var(--font-en); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .18em; margin-bottom: 18px; }
footer .cols a { display: block; font-size: 13px; margin-bottom: 11px; color: #92a2bd; transition: color .3s; }
footer .cols a:hover { color: var(--sky); }
footer .copy { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(40px, 6vw, 56px); padding-top: 24px; font-size: 11px; color: #6f7f9e; }

/* ============ レスポンシブ ============ */
@media (max-width: 960px) {
  .news-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .store-row, .detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .store-row:nth-child(even) .striped-frame { order: 0; }
}
@media (max-width: 860px) {
  nav { display: none; }
  .burger { display: block; }
  .news-cards, .info-cards, .feat-grid, .contact-methods { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ 互換: 店舗ページ・詳細ページ用クラス ============ */
.foil-text { background: linear-gradient(105deg, var(--sky-deep), var(--sky), var(--mint), var(--sky-deep)); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: holoShift 8s ease-in-out infinite; }
@keyframes holoShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.sparkle { position: absolute; width: 10px; height: 10px; opacity: .5; pointer-events: none; z-index: 2; }
.sparkle svg { width: 100%; height: 100%; }
.slab { position: relative; border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 18px 44px rgba(12,32,55,.16); }
.slab .slab-label { position: relative; height: 30px; background: var(--ink); display: flex; align-items: center; justify-content: space-between; padding: 0 14px; font-family: var(--font-en); font-size: 10.5px; font-weight: 600; letter-spacing: .2em; color: rgba(255,255,255,.92); }
.slab .slab-label::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(105deg, var(--sky-deep), var(--sky), var(--mint)); }
.slab .slab-label .stars { display: flex; gap: 3px; }
.slab .slab-label .stars span { width: 3px; height: 3px; background: var(--sky); border-radius: 50%; }
.slab img { width: 100%; display: block; object-fit: cover; }
.store-title { font-family: var(--font-en); font-weight: 900; font-size: clamp(28px, 4vw, 42px); line-height: 1.15; letter-spacing: -.02em; margin: 10px 0 14px; color: var(--ink); }
.stores-sec { background: var(--bg); }
.stores-sec .head-block { text-align: center; }
.store-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; padding: clamp(40px, 6vw, 64px) 0; border-bottom: 1px solid var(--line); }
.store-row:last-child { border-bottom: none; }
.store-row:nth-child(even) .photo-wrap { order: 2; }
.store-row .photo-wrap .slab img { height: clamp(240px, 32vw, 300px); }
.store-row .addr { font-size: 14px; color: var(--body); margin-bottom: 4px; }
.store-row .hours { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.store-row .btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .sweep { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
@media (max-width: 900px) {
  .store-row { grid-template-columns: 1fr; gap: 26px; }
  .store-row:nth-child(even) .photo-wrap { order: 0; }
}

/* ============ 完成デザインのFVヒーロー（文字焼き込み画像を全表示） ============ */
.hero.fv { height: auto; min-height: 0; overflow: visible; background: var(--sky); }
.hero.fv picture { display: block; }
.hero.fv .hero-photo { position: relative; inset: auto; width: 100%; height: auto; object-fit: fill; animation: none; }
.hero-cta-band { background: var(--bg); display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; padding: 26px 20px; border-bottom: 1px solid var(--line); }

/* 本文は左揃え・強制改行なしで自然に折り返す（中央寄せの素人感を解消） */
.story-sec .body, .story-sec .body p { text-align: left; }
.about .desc { text-align: left; }

/* ============ 装飾システム（Divider / Object / Texture） ============ */
/* Divider: セクション境界の波 */
.wave-div { position: relative; line-height: 0; margin: 0; z-index: 2; }
.wave-div img { width: 100%; height: auto; display: block; }
.wave-div.up { transform: rotate(180deg); }
/* セクション同士を波で繋ぐため、隣接セクションの余白を調整 */
.wave-div + section.block { padding-top: clamp(40px, 6vw, 80px); }

/* Texture: 背景に薄く重ねる */
.tex { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.tex.holo { background: url("/assets/img/deco/tex-holo-foil.png") center/cover no-repeat; opacity: .18; mix-blend-mode: multiply; }
.tex.dots { background: url("/assets/img/deco/tex-dots-sky.png") repeat; background-size: 260px; opacity: .35; }
.tex.lines { background: url("/assets/img/deco/tex-wave-lines.png") repeat-x center/cover; opacity: .5; }
section.block > .wrap { position: relative; z-index: 1; }

/* Object: 浮遊する装飾（パララックス＋ゆらぎ） */
.deco-obj { position: absolute; pointer-events: none; z-index: 0; will-change: transform; }
.deco-obj img { width: 100%; height: auto; display: block; }
.deco-obj.float { animation: decoFloat 9s ease-in-out infinite; }
.deco-obj.float2 { animation: decoFloat 12s ease-in-out infinite 1.5s; }
@keyframes decoFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-18px) rotate(2deg); }
}
.deco-obj.spin-slow { animation: decoSpin 26s linear infinite; }
@keyframes decoSpin { to { transform: rotate(360deg); } }
/* きらめき（明滅） */
.deco-obj.twinkle { animation: decoTwinkle 3.6s ease-in-out infinite; }
@keyframes decoTwinkle { 0%,100% { opacity:.35; transform: scale(.9);} 50% { opacity:1; transform: scale(1.06);} }

@media (max-width: 860px) {
  .deco-obj.hide-sp { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .deco-obj, .deco-obj.float, .deco-obj.float2, .deco-obj.spin-slow, .deco-obj.twinkle { animation: none; }
}

/* ============ Divider 境界の整合（上のセクション色を背景に敷く） ============ */
/* 波の「透明部分」は上のセクション色、「波の色」は下のセクション色に一致させる */
.wave-div { display: block; line-height: 0; font-size: 0; margin: 0; padding: 0; overflow: hidden; }
.wave-div img { width: 100%; height: auto; display: block; margin: 0; }
.wave-div.on-white { background: var(--bg); }        /* 上が白 */
.wave-div.on-gray  { background: var(--bg-gray); }   /* 上が淡グレー */
.wave-div.on-sky   { background: var(--sky); }       /* 上がスカイ */
/* 波の直後のセクションは上部余白を詰めて自然に繋ぐ */
.wave-div + section.block { padding-top: clamp(30px, 4vw, 56px); }
/* 波の最下段のアンチエイリアス行を隠して継ぎ目を完全に消す */
.wave-div img { margin-bottom: -1px; }

/* ============ 修正: テクスチャは境界に触れさせない（上下端でフェード） ============ */
.tex {
  /* 上下端は完全に透明にして、波と接する部分は必ずセクションのフラット色にする */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.tex.holo  { opacity: .12; mix-blend-mode: normal; }   /* multiplyは色が変わるため廃止 */
.tex.dots  { opacity: .16; background-size: 300px; }
.tex.lines { opacity: .30; }

/* ===== 修正: ディバイダーをベクター化（色をパレットから生成し、境界を完全一致させる） =====
   構造: --from = 上のセクション色（コンテナ背景） / --to = 下のセクション色（最前面の波）
   奥の波は --to の不透明度を落としたもの = 上下の中間色になるため、必ず調和し境界が破綻しない */
.wave-div { display: block; position: relative; line-height: 0; font-size: 0; margin: 0; padding: 0; }
.wave-div svg { display: block; width: 100%; height: clamp(56px, 7vw, 110px); }
.wave-div svg .w-back { fill: var(--to); opacity: .28; }
.wave-div svg .w-mid  { fill: var(--to); opacity: .58; }
.wave-div svg .w-front{ fill: var(--to); opacity: 1; }
.wave-div.on-white { background: var(--bg); }
.wave-div.on-gray  { background: var(--bg-gray); }
.wave-div.on-sky   { background: var(--sky); }
.wave-div.to-gray  { --to: var(--bg-gray); }
.wave-div.to-sky   { --to: var(--sky); }
.wave-div.to-navy  { --to: var(--ink); }
.wave-div.to-white { --to: var(--bg); }
/* 次セクションとの継ぎ目を消す（サブピクセル対策） */
.wave-div + section.block,
.wave-div + footer { margin-top: -1px; }

/* 修正: FV下の余計な境界線を削除 */
.hero-cta-band { border-bottom: 0; }

/* ===== 修正: FV画像の下端（鮮やかな水色）と白いCTA帯の段差を、白い波で受け止める ===== */
.hero.fv { position: relative; }
.fv-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; pointer-events: none; --to: var(--bg); }
.fv-wave svg { display: block; width: 100%; height: clamp(48px, 6vw, 92px); }
/* 波レイヤーの塗り（wave-div / fv-wave 共通） */
.w-back  { fill: var(--to); opacity: .28; }
.w-mid   { fill: var(--to); opacity: .58; }
.w-front { fill: var(--to); opacity: 1; }

/* =========================================================================
   TOP リデザイン（ヘッダー実寸の確保 ＋ エディトリアルなレイアウト）
   ========================================================================= */

/* 固定ヘッダーの実占有高さ。JS が実測して上書きする（下記はフォールバック） */
:root { --head-total: 110px; }

/* FVが固定ヘッダーに潜り込まないようにする（モバイルの文字見切れもこれが原因） */
.hero.fv { margin-top: var(--head-total); }

/* 背景に敷く巨大なゴースト英字（リファレンス由来のアウトライン見出し） */
.ghost-word {
  position: absolute; z-index: 0; pointer-events: none; user-select: none; white-space: nowrap;
  font-family: var(--font-en); font-weight: 900; letter-spacing: -.04em; line-height: .8;
  font-size: clamp(84px, 15vw, 220px);
  color: transparent; -webkit-text-stroke: 1.5px currentColor;
}
.ghost-word.at-bl { left: -.03em; bottom: .06em; color: var(--ink); opacity: .09; }
.ghost-word.at-tr { right: -.03em; top: .06em; color: #fff; opacity: .55; }

/* --- STORY: 見出しを左に固定した2カラム組み（中央寄せの素人組みをやめる） --- */
.story-grid { display: grid; grid-template-columns: minmax(240px, .8fr) 1.2fr; gap: clamp(28px, 5vw, 84px); align-items: start; }
.story-grid .story-head { position: sticky; top: calc(var(--head-total) + 36px); }
.story-grid .sec-jp {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-weight: 800; font-size: 12px;
  letter-spacing: .22em; color: var(--sky-deep);
}
.story-grid .sec-jp::before { content: ""; width: 36px; height: 2px; background: var(--sky-deep); flex: none; }
.story-grid .lead-copy { margin-top: 20px; }
.story-grid .body { max-width: 560px; margin: 0; }

/* --- 誘導セクション: 番号つきジグザグ --- */
.promo-idx {
  display: block; font-family: var(--font-en); font-weight: 900;
  font-size: clamp(40px, 5.4vw, 72px); line-height: 1; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1.5px var(--sky); margin-bottom: 10px;
}
.promo-photo { position: relative; }
/* 写真の背後にずらして敷く色面（奥行きを出す） */
.promo-photo::before {
  content: ""; position: absolute; z-index: 0; border-radius: 22px;
  inset: 20px -20px -20px 20px; background: var(--sky); opacity: .32;
  transition: transform .55s var(--ease);
}
.promo:nth-child(even) .promo-photo::before { inset: 20px 20px -20px -20px; }
.promo-photo .slab-like { position: relative; z-index: 1; transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.promo:hover .promo-photo .slab-like { transform: translateY(-8px); box-shadow: 0 32px 70px rgba(12,32,55,.22); }
.promo:hover .promo-photo::before { transform: translate(8px, 8px); }

/* --- クロージング（水色帯）: 余白を締めて、抜き文字で締める --- */
.cta-band { padding: clamp(70px, 9vw, 120px) 0; }
.cta-band .wrap { max-width: 760px; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-grid .story-head { position: static; }
  .story-grid .body { max-width: none; }
  .promo-photo::before,
  .promo:nth-child(even) .promo-photo::before { inset: 14px -14px -14px 14px; }
}

/* 修正: STORY見出しが左カラムに収まらず3行に折れて「る。」が孤立していた。
   列幅に対して文字が大きすぎたのが原因。列幅内で意図した2行に収まるサイズにする。 */
.story-grid, .story-grid .story-head { text-align: left; }
.story-grid .lead-copy { font-size: clamp(23px, 2.7vw, 34px); line-height: 1.6; }

/* =========================================================================
   下層ページ共通の装飾システム（TOPで確立した仕組みを全ページへ展開）
   ========================================================================= */

/* ページ下部に全幅で敷く帯オブジェクト（街のスカイラインなど） */
.deco-strip { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; z-index: 0; pointer-events: none; }
.deco-strip img { width: 100%; height: auto; display: block; }

/* .block 直下の .wrap は装飾より前面（既存ルールの再掲・保険） */
section.block > .wrap { position: relative; z-index: 1; }

/* ページ見出し（page-hero）にも薄いテクスチャとゴースト文字を効かせる */
.page-hero { position: relative; }
.page-hero > .wrap { position: relative; z-index: 1; }
.page-hero .tex { z-index: 0; }

/* テクスチャの追加バリエーション（背景画像をCSS変数化せず直接指定＝装飾用途に限定） */
.tex.grid   { background: url("/assets/img/deco/tex-showcase-grid.png") repeat; background-size: 300px; opacity: .5; }
.tex.topo   { background: url("/assets/img/deco/tex-topo-lines.png") repeat; background-size: 340px; opacity: .55; }
.tex.mapgrid{ background: url("/assets/img/deco/tex-map-grid.png") repeat; background-size: 300px; opacity: .5; }
.tex.confetti{ background: url("/assets/img/deco/tex-confetti-sky.png") repeat; background-size: 320px; opacity: .6; }
.tex.fiber  { background: url("/assets/img/deco/tex-paper-fiber.png") repeat; background-size: 300px; opacity: .8; }
/* テクスチャは境界に触れさせない（上下端でフェード）＝TOPと同じ扱い */
.tex.grid, .tex.topo, .tex.mapgrid, .tex.confetti, .tex.fiber {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

/* X（旧Twitter）アイコン: テキストの「X」を公式ロゴ形状に置き換える */
.x-icon { width: 1.05em; height: 1.05em; display: inline-block; vertical-align: -0.16em; fill: currentColor; margin-right: .38em; }
.util-bar a { display: inline-flex; align-items: center; }

/* 店舗一覧: 街並みシルエット（SVG）。色をパレット変数から直接取るのでフッターと必ず一致する */
.deco-strip svg { display: block; width: 100%; height: auto; }
.sky-mid  { fill: var(--ink); opacity: .38; }
.sky-near { fill: var(--ink); }

/* 店舗一覧: スカイラインの上に本文が被らないよう、下余白を街並みぶん確保 */
section.stores-sec { padding-bottom: calc(clamp(72px, 11vw, 140px) + 240px); }

/* =========================================================================
   ボタン刷新v2: 円の意味を統一（濃いピルには白い円 / 白いピルには水色の円）
   矢印はCSS描画のシェブロン＝グリッド中央配置で完全センタリング
   ========================================================================= */
.pill-btn {
  position: relative; overflow: hidden;
  gap: 14px; padding: 12px 12px 12px 28px;
  border: 1.5px solid transparent;
  box-shadow: 0 8px 20px rgba(12,32,55,.14);
}
.pill-btn .circ { width: 26px; height: 26px; border: 0; box-shadow: none; }
.pill-btn.light { border-color: var(--line); box-shadow: 0 8px 20px rgba(12,32,55,.08); }
.pill-btn.light .circ { background: var(--sky); color: var(--ink); }   /* 白ピルは水色の円 */
.pill-btn .circ, .float-cta .circ { font-size: 0; }
.pill-btn .circ::before, .float-cta .circ::before {
  content: ""; display: block; width: 11px; height: 11px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 3 L10.5 8 L5.5 13' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 3 L10.5 8 L5.5 13' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.float-cta .circ::before { width: 10px; height: 10px; }

/* 光のスイープ（ホバーで一度だけ走る） */
.pill-btn::after {
  content: ""; position: absolute; top: -4px; bottom: -4px; left: -45%; width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); pointer-events: none; opacity: 0;
}
.pill-btn:hover::after { animation: btnShine .65s var(--ease) forwards; }
@keyframes btnShine { 0% { opacity: 1; left: -45%; } 100% { opacity: 1; left: 115%; } }

/* 本体の浮き上がり + 丸のポップ + 矢印の飛び抜けループ */
.pill-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(12,32,55,.22); }
.pill-btn:hover .circ { transform: scale(1.1); }
.pill-btn:hover .circ::before { animation: arrowFly .5s var(--ease) forwards; }
@keyframes arrowFly {
  0%   { transform: none;               opacity: 1; }
  40%  { transform: translateX(14px);   opacity: 0; }
  55%  { transform: translateX(-14px);  opacity: 0; }
  100% { transform: none;               opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .pill-btn:hover::after, .pill-btn:hover .circ::before { animation: none; }
  .pill-btn:hover, .pill-btn:hover .circ { transform: none; }
}

/* =========================================================================
   マウス追従カーソル（PC・ホバー環境のみ / JSが .cursor-dot .cursor-ring を生成）
   ========================================================================= */
.cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; border-radius: 50%; pointer-events: none; z-index: 1200; }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--sky-deep); }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1.5px solid var(--sky);
  transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease),
              background-color .25s var(--ease), border-color .25s var(--ease);
}
body.cursor-on .cursor-ring {
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  background: rgba(116,205,237,.16); border-color: var(--sky-deep);
}

/* =========================================================================
   ローディングアニメーション（白幕 + ロゴ + 3色ドット → 幕が上へ抜ける）
   ========================================================================= */
.loader {
  position: fixed; inset: 0; z-index: 1100; background: var(--bg);
  display: grid; place-items: center;
  transition: transform .65s var(--ease);
}
.loader.done { transform: translateY(-101%); }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader-inner img { height: 44px; width: auto; animation: loaderBreath 1.6s ease-in-out infinite; }
.loader-dots { display: flex; gap: 10px; }
.loader-dots span { width: 10px; height: 10px; border-radius: 50%; animation: loaderBounce 1s ease-in-out infinite; }
.loader-dots span:nth-child(1) { background: var(--sky); }
.loader-dots span:nth-child(2) { background: var(--sky-deep); animation-delay: .15s; }
.loader-dots span:nth-child(3) { background: var(--mint); animation-delay: .3s; }
@keyframes loaderBounce { 0%,100% { transform: translateY(0); } 45% { transform: translateY(-10px); } }
@keyframes loaderBreath { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: .85; } }
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  .loader-inner img, .loader-dots span { animation: none; }
}

/* 店舗詳細: 店内写真の高さを3店で統一（元画像の縦横比差を吸収） */
.store-detail-main .slab img { height: clamp(260px, 38vw, 430px); }

/* 修正: ディバイダー直後でもクロージング帯（cta-band）は上下対称のパディングにする。
   上詰めルールのせいで中身がセクション上方に寄って見えていたため。 */
.wave-div + section.cta-band { padding-top: clamp(72px, 11vw, 140px); }

/* =========================================================================
   全体チェックでの改善: モバイルで情報テーブルを縦積みにする
   （ラベル108px+値189pxの2カラムでは長文が縦長に潰れて読みにくいため） =====
   ========================================================================= */
@media (max-width: 640px) {
  .info-table div { flex-direction: column; gap: 4px; padding: 14px 4px; }
  .info-table b { min-width: 0; font-size: 12px; color: var(--sky-deep); letter-spacing: .04em; }
}

/* 修正: 見出しブロック直後の紹介ブロックに間隔を確保
   （会社情報の「経営陣」で見出しと写真がホバー時に重なっていたため） */
.head-block + .promo { margin-top: clamp(36px, 5vw, 60px); }

/* =========================================================================
   ヘッダー刷新: 英字ラベル2段ナビ / グラデーション下線 / 現在地ハイライト
   ========================================================================= */
/* ヘッダー下端をブランドグラデーションのヘアラインに（従来の単色線に代えて） */
header { box-shadow: none; }
header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(105deg, var(--sky-deep), var(--sky), var(--mint));
  opacity: .85;
}
header.scrolled { box-shadow: 0 8px 26px rgba(12,32,55,.1); }

/* ナビ: 英字ラベルを上に載せた2段構成 */
nav a:not(.nav-cta) {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; line-height: 1.25; padding: 2px 2px 6px;
}
nav a .nav-en {
  font-family: var(--font-en); font-size: 9px; font-weight: 800;
  letter-spacing: .16em; color: var(--muted);
  transition: color .3s var(--ease);
}
nav a:not(.nav-cta)::after {
  bottom: 0; height: 2.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--sky-deep), var(--mint));
}
nav a:not(.nav-cta):hover .nav-en { color: var(--sky-deep); }

/* 現在地ハイライト（JSが .active を付与） */
nav a.active::after { width: 100%; }
nav a.active .nav-en { color: var(--sky-deep); }

/* お問い合わせCTA: 浮き上がり + 光のスイープ */
.nav-cta { position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s; }
.nav-cta::before {
  content: ""; position: absolute; top: -4px; bottom: -4px; left: -45%; width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); pointer-events: none; opacity: 0;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(12,32,55,.24); }
.nav-cta:hover::before { animation: btnShine .65s var(--ease) forwards; }

/* モバイルドロワーにも英字ラベルを小さく */
.mobile-nav a { display: flex; flex-direction: column; align-items: center; line-height: 1.3; }
.mobile-nav a .nav-en {
  font-family: var(--font-en); font-size: 10px; font-weight: 800;
  letter-spacing: .2em; color: var(--sky); 
}
@media (prefers-reduced-motion: reduce) {
  .nav-cta:hover::before { animation: none; }
  .nav-cta:hover { transform: none; }
}

/* =========================================================================
   ページ見出し英字（en-ghost）の一文字めくりアニメーション
   JSが1文字ずつ span.flip-ch に分割し、ローダーの幕が上がると同時に
   html.ghost-in が付与されて順番に起き上がる
   ========================================================================= */
.page-hero .en-ghost .flip-ch {
  display: inline-block;
  transform: perspective(520px) rotateX(96deg);
  transform-origin: 50% 100%;
  opacity: 0;
  transition: transform .62s var(--ease), opacity .45s ease;
  will-change: transform;
}
html.ghost-in .page-hero .en-ghost .flip-ch {
  transform: perspective(520px) rotateX(0deg);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero .en-ghost .flip-ch { transition: none; transform: none; opacity: 1; }
}

/* ローダーの保険: JSが動かない環境でも5秒後に必ず幕が上がる（通常はJSが先に隠す） */
.loader { animation: loaderAutoHide .65s var(--ease) 5s forwards; }
@keyframes loaderAutoHide {
  to { transform: translateY(-101%); visibility: hidden; }
}

/* =========================================================================
   マウス追従のキラキラ（カーソルの軌跡に4色のスパークが散る）
   ========================================================================= */
.cursor-spark {
  position: fixed; z-index: 1199; pointer-events: none;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  transform: translate(-50%, -50%) scale(0);
  animation: sparkTwinkle .75s ease-out forwards;
}
@keyframes sparkTwinkle {
  0%   { transform: translate(-50%, -50%) scale(0) rotate(0deg); opacity: 0; }
  35%  { transform: translate(calc(-50% + var(--dx, 0px) * .4), calc(-50% + var(--dy, 14px) * .4)) scale(1) rotate(30deg); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 14px))) scale(.15) rotate(80deg); opacity: 0; }
}

/* フッターのタグライン（旧インラインstyleを共通化） */
.f-tagline { font-size: 13px; margin-top: 14px; color: #9fb1d6; max-width: 300px; }

/* =========================================================================
   モーダル（お問い合わせの店舗選択ポップアップ）
   ========================================================================= */
.modal { position: fixed; inset: 0; z-index: 1150; display: grid; place-items: center; padding: 20px;
         opacity: 0; transition: opacity .3s var(--ease); }
/* display:grid が hidden 属性を打ち消すため、明示的に閉じ状態を定義する */
.modal[hidden] { display: none; }
.modal.open { opacity: 1; }
.modal-overlay { position: absolute; inset: 0; background: rgba(21,34,64,.55); backdrop-filter: blur(3px); }
.modal-panel {
  position: relative; width: min(460px, 100%); background: var(--bg);
  border-radius: 24px; padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 30px 80px rgba(12,32,55,.34);
  transform: translateY(18px) scale(.97); transition: transform .35s var(--ease);
  overflow: hidden;
}
.modal.open .modal-panel { transform: none; }
/* 上端のブランドグラデーション帯 */
.modal-panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(105deg, var(--sky-deep), var(--sky), var(--mint));
}
.modal-close {
  position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border: 0; cursor: pointer;
  border-radius: 50%; background: var(--bg-gray); color: var(--ink);
  font-size: 20px; line-height: 1; display: grid; place-items: center; transition: background .3s;
}
.modal-close:hover { background: var(--line); }
.modal-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-weight: 800; font-size: 11px; letter-spacing: .2em; color: var(--sky-deep);
}
.modal-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sky-deep); }
.modal-panel h2 { font-size: clamp(19px, 2.4vw, 23px); font-weight: 900; color: var(--ink); line-height: 1.5; margin: 12px 0 6px; }
.modal-panel .modal-desc { font-size: 13px; color: var(--body); line-height: 1.9; margin-bottom: 22px; }
.modal-list { display: flex; flex-direction: column; gap: 10px; }
/* 店舗選択の行ボタン */
.modal-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 16px 14px 20px; border-radius: 16px;
  background: var(--bg-gray); border: 1.5px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.modal-item:hover { background: #fff; border-color: var(--sky); transform: translateX(4px); }
.modal-item .m-name { font-weight: 800; color: var(--ink); font-size: 15px; }
.modal-item .m-sub { display: block; font-family: var(--font-en); font-size: 10px; font-weight: 700;
                     letter-spacing: .16em; color: var(--muted); margin-top: 2px; }
.modal-item .circ { width: 30px; height: 30px; border-radius: 50%; background: var(--sky); color: var(--ink);
                    display: grid; place-items: center; flex: none; font-size: 0; transition: background .3s, transform .3s var(--ease); }
/* 丸の中の矢印（サイト共通のシェブロンと同じSVGマスク方式） */
.modal-item .circ::before {
  content: ""; display: block; width: 11px; height: 11px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 3 L10.5 8 L5.5 13' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 3 L10.5 8 L5.5 13' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.modal-item:hover .circ { background: var(--sky-deep); color: #fff; transform: translateX(3px); }
body.modal-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .modal, .modal-panel, .modal-item, .modal-item .circ { transition: none; }
  .modal-item:hover { transform: none; }
}

/* 連絡手段カードは2枚構成。中央寄せで間延びしないよう最大幅を制限 */
.contact-methods { max-width: 760px; margin-left: auto; margin-right: auto; }
@media (min-width: 761px) {
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
}
