@charset "UTF-8";
/* =========================================================
   JUNGLE GROUP — Official Site
   Structure & design modeled on barcelona.co.jp
   (portal top → area brand sites → recruit / company)
   ========================================================= */

/* フォントは各HTMLの <link rel="preconnect"> + <link rel="stylesheet"> で読み込む（@importのチェーン回避） */

:root {
  --fg: #251e1c;
  --fg-sub: #7c7370;
  --line: #e3ded9;
  --bg: #fff;
  --bg-tint: #f6f3f0;
  /* 店名・ブランド名はロゴ（クラシックセリフ）に寄せる */
  --brand: "Cinzel", "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", serif;
  --accent: #1f3d2b;      /* JUNGLE = deep green */
  --accent-2: #b99a55;    /* gold */
  --max: 1200px;
  --head-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font: 15px/1.5 "游ゴシック体", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* hidden だと body が独自スクロールコンテナ化するため clip */
}
img { width: 100%; height: auto; vertical-align: middle; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: opacity .25s; }
@media (min-width: 1025px) { a:hover, button:hover { opacity: .75; } }

.en { font-family: "Montserrat", sans-serif; }
.en_sub { font-family: "DM Sans", sans-serif; }
/* 店名・ブランド名 */
.brandname { font-family: var(--brand); font-weight: 400; letter-spacing: .16em; }
.inner { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.center { text-align: center; }
.mt40 { margin-top: 40px; }
.mt60 { margin-top: 60px; }

@keyframes fadeInUp { 0% { opacity: 0; transform: translate3d(0, 50px, 0); } to { opacity: 1; transform: none; } }
.fu { opacity: 0; }
.fu.on { animation: fadeInUp .9s cubic-bezier(.2,.7,.3,1) forwards; }

/* =========================================================
   Header
   ========================================================= */
header.site {
  position: sticky; top: 0; z-index: 100;
  height: var(--head-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site.on-dark { background: transparent; border-bottom: 0; color: #fff; position: absolute; inset: 0 0 auto 0; }
/* ヒーローを通過したら白ヘッダーで再表示 */
header.site.on-dark.stuck {
  position: fixed; color: var(--fg);
  background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line);
  animation: headDown .4s ease both;
}
@keyframes headDown { from { transform: translateY(-100%); } to { transform: none; } }
header.site.on-dark.stuck .logo span { color: var(--fg-sub); }
/* メニューを開くと白い面が全面に出るので、その間だけ文字とロゴを黒に戻す
   （on-dark のままだと白地に白文字になって、ロゴもバツ印も見えなくなる） */
.has-glnv header.site.on-dark { color: var(--fg); }
.has-glnv header.site.on-dark .logo span { color: var(--fg-sub); }
.logo { display: flex; align-items: center; gap: 12px; }
.logo b { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: .22em; }
.logo span { font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .28em; color: var(--fg-sub); }
header.site.on-dark .logo span { color: rgba(255,255,255,.7); }

/* ロゴマーク（単色SVGをマスクして currentColor で塗る＝白背景/黒背景の両方に対応） */
.logo-mark {
  display: block; flex: none;
  width: 93px; height: 32px;
  background-color: currentColor;
  -webkit-mask: url("../img/logo.svg") no-repeat center / contain;
  mask: url("../img/logo.svg") no-repeat center / contain;
}
.logo-mark.f { width: 133px; height: 46px; margin-inline: auto; }
.logo-mark.xl { width: clamp(200px, 34vw, 330px); height: clamp(69px, 11.7vw, 114px); margin-inline: auto; }
@media (max-width: 640px) {
  .logo-mark { width: 78px; height: 27px; }
  .logo span { font-size: 9px; letter-spacing: .2em; }
}

.head-nav { display: flex; align-items: center; gap: 26px; }
.head-nav a.txt { font-size: 12px; letter-spacing: .16em; }
.head-cta {
  padding: 11px 22px; font-size: 11px; letter-spacing: .18em;
  background: var(--accent); color: #fff; border-radius: 999px;
}
.head-cta:hover { opacity: .85; }
@media (max-width: 900px) { .head-nav a.txt { display: none; } }

/* burger + global nav */
/* button は color を継承しないため明示する（currentColor が黒に解決されるのを防ぐ） */
.burger { width: 28px; height: 16px; position: relative; background: none; border: 0; cursor: pointer; color: inherit; }
.burger span { position: absolute; left: 0; width: 100%; height: 1px; background: currentColor; transition: .35s; }
.burger span:nth-child(1) { top: 0; } .burger span:nth-child(2) { top: 7px; } .burger span:nth-child(3) { top: 14px; }
.burger.open span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.glnv {
  position: fixed; inset: 0; z-index: 99; background: #fff;
  padding: calc(var(--head-h) + 30px) 24px 60px; overflow-y: auto;
  opacity: 0; visibility: hidden; transition: .4s;
}
.glnv.open { opacity: 1; visibility: visible; }
.glnv-area { border-top: 1px solid var(--line); padding: 22px 0; }
.glnv-area > b { display: block; font-family: "Montserrat", sans-serif; font-size: 17px; letter-spacing: .2em; }
.glnv-area > b em { font-style: normal; font-family: inherit; font-size: 11px; color: var(--fg-sub); margin-left: 10px; letter-spacing: .1em; }
.glnv-area ul { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 12px; }
.glnv-area li a { font-size: 12.5px; color: var(--fg-sub); }
.glnv-foot { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 12px; color: var(--fg-sub); }

/* =========================================================
   Portal top (barcelona.co.jp style)
   ========================================================= */
.portal-head { padding: 54px 24px 34px; text-align: center; }
.portal-head .mark { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: clamp(26px, 6vw, 46px); letter-spacing: .3em; }
.portal-head .sub { margin-top: 12px; font-size: 11.5px; letter-spacing: .2em; color: var(--fg-sub); line-height: 2; }

.areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px; padding: 0 2px 2px; }
.area-panel { position: relative; overflow: hidden; min-height: 62vh; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.area-panel .visual { position: absolute; inset: 0; transition: transform 1.2s cubic-bezier(.2,.7,.3,1); }
.area-panel:hover .visual { transform: scale(1.06); }
.area-panel .visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 100%); }
.area-panel .body { position: relative; padding: 28px 24px 30px; }
.area-panel .ja { font-size: 11px; letter-spacing: .3em; opacity: .85; }
.area-panel .name { font-family: var(--brand); font-weight: 400; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.25; letter-spacing: .14em; margin: 8px 0 18px; }
/* エリア名（英字）は KITASHINCHI のように長いものがある。
   パネル幅に収まるよう、見出し本体より一段小さくして字間も詰める */
.area-panel .name em {
  display: block; font-style: normal; font-weight: 600;
  font-size: clamp(16px, 1.5vw, 23px); letter-spacing: .08em; overflow-wrap: anywhere;
}
.area-panel .go { display: inline-block; padding: 11px 26px; border: 1px solid rgba(255,255,255,.75); border-radius: 999px; font-size: 11px; letter-spacing: .2em; }
.area-panel .go:hover { background: #fff; color: var(--fg); opacity: 1; }
.area-panel .subs { display: flex; gap: 16px; margin-top: 16px; font-size: 11px; letter-spacing: .12em; }
.area-panel .subs a { border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 3px; }

/* photo stand-ins (no photography bundled) */
.visual { background: #1b1a18; }
.v-tokyo   { background: linear-gradient(150deg, #14311f, #0d1a13 45%, #3a2c14); }
.v-ginza   { background: linear-gradient(150deg, #2a2113, #14100b 45%, #3d3320); }
.v-osaka   { background: linear-gradient(150deg, #1a2433, #0d1219 45%, #33261a); }
.v-kumamoto{ background: linear-gradient(150deg, #241a2c, #120d16 45%, #35251b); }
.v-miyazaki{ background: linear-gradient(150deg, #123033, #0a1719 45%, #2f2a17); }
.visual.leaf::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 20% 15%, rgba(185,154,85,.28), transparent 70%),
    radial-gradient(50% 40% at 85% 80%, rgba(31,61,43,.55), transparent 70%);
}

/* =========================================================
   Brand site (area) — hero
   ========================================================= */
.brand-hero { position: relative; min-height: 92svh; display: grid; place-items: center; color: #fff; text-align: center; overflow: hidden; }
.brand-hero .visual { position: absolute; inset: 0; }
.brand-hero .visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.35) 45%, rgba(0,0,0,.75)); }
.brand-hero .inner { position: relative; padding-top: var(--head-h); }
.brand-hero .badge { display: inline-block; border: 1px solid rgba(255,255,255,.6); border-radius: 999px; padding: 8px 20px; font-size: 10.5px; letter-spacing: .26em; }
.brand-hero h1 { font-family: var(--brand); font-weight: 400; font-size: clamp(34px, 7.4vw, 82px); letter-spacing: .18em; line-height: 1.18; margin: 24px 0 16px; }
.brand-hero h1 em { font-style: normal; font-weight: 600; display: block; }
.brand-hero .lead { font-size: clamp(12px, 3vw, 14px); letter-spacing: .18em; line-height: 2.2; color: rgba(255,255,255,.85); }
.brand-hero .scroll { position: absolute; bottom: 22px; left: 50%; translate: -50% 0; font-size: 9px; letter-spacing: .3em; }
.brand-hero .scroll::after { content: ""; display: block; width: 1px; height: 48px; margin: 8px auto 0; background: linear-gradient(#fff, transparent); }

/* section common */
.sec { padding: 90px 0; }
.sec.tint { background: var(--bg-tint); }
.sec.dark { background: #14120f; color: #fff; }
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head .en { display: block; font-size: clamp(22px, 4.4vw, 38px); font-weight: 300; letter-spacing: .22em; }
.sec-head .ja { display: block; margin-top: 10px; font-size: 11.5px; letter-spacing: .26em; color: var(--fg-sub); }
.sec.dark .sec-head .ja { color: rgba(255,255,255,.6); }

/* reasons (barcelona "選ばれ続ける理由がある") */
.reasons { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; }
.reason { position: relative; min-height: 340px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.reason .visual { position: absolute; inset: 0; transition: transform 1s; }
.reason:hover .visual { transform: scale(1.06); }
.reason .visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72)); }
.reason .body { position: relative; padding: 26px 22px; }
.reason .no { font-family: "DM Sans", sans-serif; font-size: 11px; letter-spacing: .28em; opacity: .8; }
.reason .ttl { margin-top: 10px; font-size: 18px; line-height: 1.7; letter-spacing: .1em; }
.reason .ttl em { font-style: normal; color: #e3c88a; }

/* cast grid */
.cast-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 20px; }
.cast-card figure { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #191817; }
.cast-card figure .visual { position: absolute; inset: 0; transition: transform 1s; }
.cast-card:hover figure .visual { transform: scale(1.05); }
.cast-card figure::after {
  content: attr(data-initial); position: absolute; inset: 0; display: grid; place-items: center;
  font-family: "Montserrat", sans-serif; font-weight: 200; font-size: clamp(13px, 1.9vw, 26px);
  letter-spacing: .16em; color: rgba(255,255,255,.34); padding: 0 8px; text-align: center; line-height: 1.4;
}
.cast-card .nm { margin-top: 14px; }
.cast-card .nm b { display: block; font-size: 15px; font-weight: 500; letter-spacing: .12em; }
.cast-card .nm span { display: block; font-family: "Montserrat", sans-serif; font-size: 10px; letter-spacing: .22em; color: var(--fg-sub); margin-top: 5px; }
.sec.dark .cast-card .nm span { color: rgba(255,255,255,.55); }
.cast-card .nm i {
  display: block; font-style: normal; font-size: 10.5px; letter-spacing: .12em;
  color: var(--fg-sub); margin-top: 6px; line-height: 1.6;
}
.sec.dark .cast-card .nm i { color: rgba(255,255,255,.5); }

/* store info table */
.store-table { border-top: 1px solid var(--line); }
.store-table dl { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line); }
.store-table dt { padding: 20px 8px; font-size: 11.5px; letter-spacing: .22em; color: var(--fg-sub); }
.store-table dd { padding: 20px 8px; font-size: 14px; line-height: 1.9; }
.store-table dd a { border-bottom: 1px solid var(--line); }

/* price */
.price { border-top: 1px solid var(--line); max-width: 720px; margin-inline: auto; }
.price li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 15px 6px; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.price li b { font-family: "Montserrat", sans-serif; font-weight: 400; font-size: 17px; letter-spacing: .06em;
  text-align: right; white-space: nowrap; }
/* 「（延長30min／¥6,000）」などの但し書き。金額より一段落として添える */
.price li b small { font-size: 12px; color: var(--fg-sub); letter-spacing: .02em; margin-left: 6px; }
.price-note { max-width: 720px; margin: 16px auto 0; font-size: 11.5px; line-height: 2; color: var(--fg-sub); }
.price-cap { text-align: center; font-size: 12px; letter-spacing: .2em; color: var(--fg-sub); margin-bottom: 18px; }

/* faq */
.faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 6px; position: relative; font-size: 14.5px; line-height: 1.7; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--accent-2); font-size: 18px; }
.faq details[open] summary::after { content: "−"; }
.faq .a { padding: 0 6px 24px; font-size: 13.5px; line-height: 2.1; color: var(--fg-sub); }

/* media / column cards */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 24px; }
.card figure { aspect-ratio: 16/10; position: relative; overflow: hidden; background: #1a1918; }
.card figure .visual { position: absolute; inset: 0; }
.card figure::after { content: attr(data-initial); position: absolute; inset: 0; display: grid; place-items: center; font-family: "Montserrat", sans-serif; font-weight: 200; font-size: 22px; letter-spacing: .2em; color: rgba(255,255,255,.35); }
.card .cat { margin-top: 14px; font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .24em; color: var(--accent-2); }
.card h3 { margin-top: 8px; font-size: 15px; font-weight: 500; line-height: 1.7; letter-spacing: .08em; }
.card p { margin-top: 8px; font-size: 12.5px; line-height: 1.9; color: var(--fg-sub); }

/* shop list */
.shops { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
.shop { position: relative; min-height: 300px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.shop .visual { position: absolute; inset: 0; transition: transform 1s; }
.shop:hover .visual { transform: scale(1.05); }
.shop .visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.78)); }
.shop .body { position: relative; padding: 26px 24px 28px; }
.shop .body h3 { font-family: var(--brand); font-weight: 500; font-size: 22px; letter-spacing: .14em; }

/* ---------- Shop list（店舗一覧：正式店名） ---------- */
.shoplist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 26px; }
.shoplist .item figure { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #191817; }
.shoplist .item figure .visual { position: absolute; inset: 0; transition: transform 1s; }
.shoplist .item:hover figure .visual { transform: scale(1.05); }
.shoplist .item .area { margin-top: 16px; font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .26em; color: var(--accent-2); }
.shoplist .item h3 { margin-top: 8px; font-family: var(--brand); font-weight: 500; font-size: 20px; letter-spacing: .14em; line-height: 1.4; }
.shoplist .item address { margin-top: 12px; font-style: normal; font-size: 13px; line-height: 1.95; color: var(--fg-sub); }
.shoplist .item .tel { display: inline-block; margin-top: 6px; font-family: "Montserrat", sans-serif; font-size: 17px; letter-spacing: .06em; color: var(--fg); }
.shoplist .item .links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; }
.shoplist .item .links a { font-size: 11px; letter-spacing: .2em; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.shoplist .item .links a.brandsite { color: var(--accent); border-bottom-color: var(--accent); }
.shop .body p { margin-top: 10px; font-size: 12.5px; line-height: 1.9; color: rgba(255,255,255,.82); }
.shop .body .tel { display: inline-block; margin-top: 8px; font-family: "Montserrat", sans-serif; font-size: 17px; letter-spacing: .08em; }
.shop .body .more { display: inline-block; margin-top: 14px; font-size: 11px; letter-spacing: .2em; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 3px; }

/* buttons */
.btn { display: inline-block; padding: 15px 46px; border: 1px solid var(--fg); border-radius: 999px; font-size: 11.5px; letter-spacing: .22em; }
.btn:hover { background: var(--fg); color: #fff; opacity: 1; }
.btn.fill { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.fill:hover { opacity: .85; }
.btn.ghost-w { border-color: rgba(255,255,255,.7); color: #fff; }
.btn.ghost-w:hover { background: #fff; color: var(--fg); }

/* recruit split */
.recruit-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.recruit-split a { position: relative; min-height: 300px; display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; }
.recruit-split .visual { position: absolute; inset: 0; transition: transform 1s; }
.recruit-split a:hover .visual { transform: scale(1.06); }
.recruit-split .visual::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.recruit-split .body { position: relative; }
.recruit-split .body b { display: block; font-family: "Montserrat", sans-serif; font-weight: 300; font-size: 30px; letter-spacing: .22em; }
.recruit-split .body span { display: block; margin-top: 10px; font-size: 11.5px; letter-spacing: .22em; }
.recruit-split .body i { font-style: normal; display: inline-block; margin-top: 18px; font-size: 10.5px; letter-spacing: .24em; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 3px; }

/* page head (下層) */
.page-head { padding: 76px 0 52px; text-align: center; border-bottom: 1px solid var(--line); }
.page-head h1 { font-family: "Montserrat", sans-serif; font-weight: 300; font-size: clamp(26px, 5.4vw, 46px); letter-spacing: .22em; }
.page-head p { margin-top: 10px; font-size: 11.5px; letter-spacing: .26em; color: var(--fg-sub); }

/* text page */
.prose { max-width: 860px; margin-inline: auto; }
.prose h2 { font-size: 17px; letter-spacing: .12em; margin: 40px 0 14px; padding-left: 12px; border-left: 3px solid var(--accent); }
.prose p, .prose li { font-size: 13.5px; line-height: 2.1; color: #46403d; }
.prose ul { margin: 10px 0 0 1.2em; list-style: disc; }

/* =========================================================
   Footer
   ========================================================= */
footer.site { background: #14120f; color: #fff; padding: 70px 0 28px; }
footer.site .f-logo { text-align: center; }
footer.site .f-logo b { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 22px; letter-spacing: .3em; }
footer.site .f-logo p { margin-top: 12px; font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.6); line-height: 2; }
.f-areas { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; margin-top: 54px; }
.f-areas h4 { font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 13px; letter-spacing: .2em; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.2); }
.f-areas ul { margin-top: 14px; display: grid; gap: 9px; }
.f-areas a { font-size: 12px; color: rgba(255,255,255,.72); }
.f-links { margin-top: 50px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; font-size: 11.5px; color: rgba(255,255,255,.72); }
.f-sns { margin-top: 26px; display: flex; justify-content: center; gap: 24px; font-family: "DM Sans", sans-serif; font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.72); }
.copy { margin-top: 34px; text-align: center; font-size: 10.5px; letter-spacing: .14em; color: rgba(255,255,255,.45); }

/* floating CTA */
.float-cta { position: fixed; right: 18px; bottom: 18px; z-index: 90; background: var(--accent); color: #fff; padding: 14px 24px; border-radius: 999px; font-size: 11px; letter-spacing: .18em; box-shadow: 0 8px 26px rgba(0,0,0,.28); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .areas { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-panel { min-height: 44vh; }
  .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cast-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards, .shoplist { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .f-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* スマホは AREA・VENUE を縦に積まず、横スクロールで見せる。
   縦に積むとトップが延々と長くなって、下の内容まで届かないため。 */
@media (max-width: 720px) {
  .areas, .shoplist {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .areas::-webkit-scrollbar, .shoplist::-webkit-scrollbar { display: none; }
  .cards.scroll-x {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 14px; padding: 0 4px 8px;
  }
  .cards.scroll-x::-webkit-scrollbar { display: none; }
  .cards.scroll-x > * { flex: 0 0 78%; scroll-snap-align: center; }
  .cards.scroll-x::after { content: ""; flex: 0 0 8px; }
  .areas { gap: 8px; padding: 0 16px 8px; }
  .shoplist { gap: 18px; padding: 0 4px 8px; }
  .area-panel, .shoplist .item { scroll-snap-align: center; }
  .area-panel { flex: 0 0 80%; min-height: 52vh; }
  .shoplist .item { flex: 0 0 78%; }
  /* 横スクロールできることが一目で分かるように、端の余白を少し残す */
  .areas::after, .shoplist::after { content: ""; flex: 0 0 8px; }
}

@media (max-width: 640px) {
  :root { --head-h: 60px; }
  .sec { padding: 62px 0; }
  .area-panel { min-height: 46vh; }
  .reasons { grid-template-columns: 1fr; }
  .reason { min-height: 260px; }
  .cast-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 14px; }
  .cards, .shops, .recruit-split { grid-template-columns: 1fr; }
  .store-table dl { grid-template-columns: 1fr; }
  .store-table dt { padding-bottom: 0; }
  .store-table dd { padding-top: 8px; }
  .f-areas { grid-template-columns: 1fr; }
  .float-cta { padding: 12px 18px; font-size: 10.5px; }
}

/* =========================================================
   実装指示書対応で追加したコンポーネント
   ========================================================= */

/* パンくず（BreadcrumbList と対で可視表示する） */
.crumbs { border-bottom: 1px solid var(--line); background: #fff; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px 10px; padding: 12px 0; font-size: 11.5px; color: var(--fg-sub); list-style: none; }
.crumbs li + li::before { content: "／"; margin-right: 10px; color: var(--line); }
.crumbs li[aria-current] { color: var(--fg); }

/* 回答ファースト要約（AIO：AIと読者が最初に答えを取れるようにする） */
.answer-first {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: var(--bg-tint); padding: 26px 28px; border-radius: 2px;
}
.answer-first .af-label {
  font-size: 11px; letter-spacing: .22em; color: var(--accent);
  font-family: "DM Sans", sans-serif; margin-bottom: 14px;
}
.answer-first ul { display: grid; gap: 10px; }
.answer-first li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.95; }
.answer-first li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 6px; height: 1px; background: var(--accent-2); }
.answer-first strong { font-weight: 700; }

.lead-text { font-size: 14.5px; line-height: 2.1; color: #46403d; max-width: 900px; }
.note { font-size: 11.5px; line-height: 2; color: var(--fg-sub); margin-top: 14px; }
.todo { color: var(--accent-2); font-size: 11.5px; }

/* データテーブル */
.tablewrap { overflow-x: auto; }
.dtable { width: 100%; border-collapse: collapse; min-width: 560px; }
.dtable th, .dtable td { border: 1px solid var(--line); padding: 14px 16px; font-size: 13.5px; line-height: 1.9; text-align: left; vertical-align: top; }
.dtable thead th { background: var(--bg-tint); font-weight: 500; letter-spacing: .1em; }
.dtable tbody th { background: #fbf9f7; font-weight: 500; white-space: nowrap; }
.prose .dtable { min-width: 0; margin: 18px 0; }

/* ステップ */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.step { border: 1px solid var(--line); padding: 24px 20px; }
.step b { display: block; font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .26em; color: var(--accent-2); margin-bottom: 10px; }
.step p { font-size: 13px; line-height: 1.9; color: var(--fg-sub); }

/* エリアチップ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 34px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 9px 20px; font-size: 12px; letter-spacing: .12em; }
.chip:hover { background: var(--fg); color: #fff; opacity: 1; }

/* CTA行（GA4：click_phone / click_line / click_map） */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-row .btn { padding: 15px 28px; font-size: 12px; }

/* キャスト詳細 */
.cast-detail { display: grid; grid-template-columns: 380px 1fr; gap: 46px; align-items: start; }
.portrait { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #191817; }
.portrait .visual { position: absolute; inset: 0; }
.portrait::after {
  content: attr(data-initial); position: absolute; inset: 0; display: grid; place-items: center;
  font-family: "Montserrat", sans-serif; font-weight: 200; font-size: clamp(18px, 3vw, 34px);
  letter-spacing: .16em; color: rgba(255,255,255,.34);
}
.cast-body .store-table { margin-bottom: 8px; }

/* 記事 */
.article h1 { font-size: clamp(22px, 3.6vw, 34px); line-height: 1.6; letter-spacing: .06em; font-weight: 700; margin: 10px 0 14px; }
.article .art-cat { font-size: 10px; letter-spacing: .26em; color: var(--accent-2); }
.article .art-meta { font-size: 11.5px; color: var(--fg-sub); margin-bottom: 30px; }
.article .inner { max-width: 900px; }
.article .answer-first { margin-bottom: 40px; }
.rel-h { font-size: 17px; letter-spacing: .1em; margin: 46px 0 14px; padding-left: 12px; border-left: 3px solid var(--accent); }
.rel-list { display: grid; gap: 8px; }
.rel-list a { font-size: 13.5px; border-bottom: 1px solid var(--line); padding-bottom: 4px; }

.prose h2 { font-size: 18px; letter-spacing: .1em; margin: 40px 0 14px; padding-left: 12px; border-left: 3px solid var(--accent); font-weight: 500; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 14px; line-height: 2.1; color: #46403d; }
.prose ul, .prose ol { margin: 10px 0 0 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 6px; }

/* ヒーロー（店舗ページ用の短縮版） */
.brand-hero.short { min-height: 66svh; }

/* ページ見出し */
.page-head h1 { font-family: var(--brand); font-weight: 500; }
.page-head .en { font-family: "Montserrat", sans-serif; }
/* キャスト名だけは明朝（ブランド書体）ではなく本文と同じゴシックにする。
   店名・ブランド名（.brandname / .logo / .shoplist .item h3）は明朝のまま。 */
.page-head h1.cast-name {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;   /* 太すぎたため通常の太さにする */
  letter-spacing: .16em;
}

/* カードをリンク要素として使う */
a.card { display: block; }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cast-detail { grid-template-columns: 1fr; gap: 30px; }
  .portrait { max-width: 340px; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .answer-first { padding: 20px 18px; }
  .cta-row .btn { width: 100%; text-align: center; }
}

/* =========================================================
   Design refinements
   ========================================================= */

/* ---- ヒーロー見出し：--u（文字数）から算出して必ず1行に収める ---- */
.hero-title { display: grid; justify-items: center; gap: 18px; }
.ht-sub {
  font-size: clamp(11px, 1.5vw, 14px); letter-spacing: .42em; text-indent: .42em;
  color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 18px;
}
.ht-sub::before, .ht-sub::after {
  content: ""; width: clamp(20px, 5vw, 54px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,211,166,.8), transparent);
}
.ht-main {
  font-family: var(--brand); font-weight: 500; line-height: 1.14; letter-spacing: .06em;
  font-size: clamp(26px, min(7.4vw, calc((100vw - 96px) / var(--u, 10))), 78px);
  white-space: nowrap;
}
@media (max-width: 640px) { .ht-main { white-space: normal; } }

/* ヒーローの奥行き（周辺減光＋粒状感） */
.brand-hero .visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 85% at 50% 42%, transparent 30%, rgba(0,0,0,.55) 100%);
}
.brand-hero .badge { backdrop-filter: blur(2px); background: rgba(0,0,0,.18); }
.brand-hero .lead { max-width: 720px; margin-inline: auto; }

/* ---- 基本情報カード（keyfacts） ---- */
.keyfacts { border: 1px solid var(--line); background: #fff; padding: 34px 36px 30px; }
.kf-label {
  font-size: 10.5px; letter-spacing: .28em; color: var(--accent);
  font-family: "DM Sans", sans-serif; display: flex; align-items: center; gap: 14px;
}
.kf-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.kf-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 26px; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.kf {
  background: #fff; padding: 20px 22px 22px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
/* 項目数に応じて自動で1行に並ぶ（span指定はしない：余りセルの発生を防ぐ） */
.kf dt {
  font-size: 10px; letter-spacing: .24em; color: var(--fg-sub);
  padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--line);
}
.kf dd { font-size: 15.5px; line-height: 1.75; font-weight: 500; letter-spacing: .04em; }
.kf dd a { border-bottom: 1px solid var(--accent-2); padding-bottom: 2px; }
.kf-note { display: block; margin-top: 8px; font-size: 11.5px; font-weight: 400; line-height: 1.8; color: var(--fg-sub); letter-spacing: .06em; }
@media (max-width: 640px) {
  .keyfacts { padding: 24px 20px 22px; }
  .kf-grid { grid-template-columns: 1fr 1fr; }
  .kf { padding: 16px 14px 18px; }
  .kf dd { font-size: 14px; }
}

/* ---- 結論カード（記事の要点：番号付き） ---- */
.answer-first { border: 1px solid var(--line); border-left: 0; background: #fff; padding: 32px 34px; position: relative; }
.answer-first::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--accent), var(--accent-2)); }
.answer-first .af-label { font-size: 10.5px; letter-spacing: .28em; color: var(--accent); display: flex; align-items: center; gap: 14px; }
.answer-first .af-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.answer-first ol { counter-reset: af; display: grid; gap: 14px; margin-top: 22px; list-style: none; }
.answer-first li { counter-increment: af; position: relative; padding-left: 40px; font-size: 14.5px; line-height: 2; }
.answer-first li::before {
  content: counter(af, decimal-leading-zero); position: absolute; left: 0; top: 3px;
  font-family: "DM Sans", sans-serif; font-size: 11px; letter-spacing: .1em; color: var(--accent-2);
  background: transparent; border: 1px solid var(--line);
  width: 26px; height: 22px; display: grid; place-items: center;
}
.answer-first li::after { display: none; }
@media (max-width: 640px) { .answer-first { padding: 24px 20px; } .answer-first li { padding-left: 34px; font-size: 13.5px; } }

/* ---- セクション見出し ---- */
.sec-head { position: relative; }
.sec-head .en { font-weight: 300; }
.sec-head::after {
  content: ""; display: block; width: 40px; height: 1px; margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}
.sec.dark .sec-head::after { background: linear-gradient(90deg, transparent, var(--accent-2), transparent); }

/* ---- 店舗情報テーブル ---- */
.store-table dl:nth-child(odd) { background: #fbfaf8; }
.sec.tint .store-table dl:nth-child(odd) { background: #fff; }
.store-table dt { letter-spacing: .2em; }
.store-table dd a { border-bottom: 1px solid var(--accent-2); }

/* ---- カード ---- */
a.card { transition: transform .5s cubic-bezier(.2,.7,.3,1), opacity .3s; }
a.card:hover { transform: translateY(-6px); opacity: 1; }
a.card:hover h3 { color: var(--accent); }
.card figure { border-radius: 1px; }
.shoplist .item { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.shoplist .item:hover { transform: translateY(-5px); }
.cast-card { position: relative; transition: transform .5s cubic-bezier(.2,.7,.3,1); }

/* 特設ページを持つキャストの印 */
.sp-flag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 8.5px; font-weight: 700; letter-spacing: .2em;
  color: #14100b; background: linear-gradient(120deg, #f0ddb4, #d9b877);
  padding: 5px 10px; border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}
/* 通常のキャストページから特設ページへ */
.sp-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .1em; color: var(--accent);
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.sp-link::after { content: "→"; font-size: 11px; }
.cast-card:hover { transform: translateY(-5px); opacity: 1; }

/* ---- 料金表 ---- */
.price { border: 1px solid var(--line); border-top: 2px solid var(--accent); background: #fff; }
.price li { padding: 16px 24px; }
.price li:nth-child(odd) { background: #fbfaf8; }
.price li b { color: var(--accent); }
.price-cap {
  display: inline-block; margin: 0 auto 20px; padding: 9px 24px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 11.5px;
  letter-spacing: .18em; color: var(--fg-sub);
}
#price .inner { text-align: center; }
#price .price, #price .price-note { text-align: left; }

/* ---- FAQ ---- */
.faq { border-top: 1px solid var(--line); background: #fff; }
.faq summary { padding-left: 46px; font-weight: 500; }
.faq summary::before {
  content: "Q"; position: absolute; left: 10px; top: 20px;
  font-family: "DM Sans", sans-serif; font-size: 12px; color: var(--accent-2); letter-spacing: .1em;
}
.faq details { position: relative; }
.faq .a { padding-left: 46px; position: relative; }
.faq .a::before {
  content: "A"; position: absolute; left: 10px; top: 0;
  font-family: "DM Sans", sans-serif; font-size: 12px; color: var(--accent); letter-spacing: .1em;
}

/* ---- ボタン ---- */
.btn { position: relative; overflow: hidden; transition: color .35s, background .35s, border-color .35s; }
.btn.fill { box-shadow: 0 6px 18px rgba(31,61,43,.18); }

/* ---- ページ見出し ---- */
.page-head { background: linear-gradient(180deg, var(--bg-tint), #fff); padding: 72px 0 58px; }
.page-head h1 { letter-spacing: .14em; }
.page-head p { font-family: "DM Sans", sans-serif; letter-spacing: .3em; }

/* ---- ステップ ---- */
.step { position: relative; background: #fff; transition: transform .4s; }
.step:hover { transform: translateY(-4px); }

/* ---- セクション内グローバルナビ ---- */
.secnav { border-bottom: 1px solid var(--line); background: #fff; }
.secnav .inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.secnav .inner::-webkit-scrollbar { display: none; }
.secnav a {
  position: relative; flex: none; padding: 18px 22px;
  font-size: 12.5px; letter-spacing: .12em; white-space: nowrap; color: var(--fg-sub);
}
.secnav a::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: 12px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.secnav a:hover { color: var(--fg); opacity: 1; }
.secnav a:hover::after { transform: scaleX(1); }
.secnav a + a::before {
  content: ""; position: absolute; left: 0; top: 50%; translate: 0 -50%;
  width: 1px; height: 12px; background: var(--line);
}
@media (max-width: 640px) {
  .secnav .inner { width: 100%; padding-inline: 12px; }
  .secnav a { padding: 15px 14px; font-size: 12px; }
  .secnav a::after { left: 14px; right: 14px; bottom: 9px; }
}

/* ---- ページ見出し（キッカー＋見出し＋サブ） ---- */
.page-head .ph-kicker {
  font-family: "DM Sans", sans-serif; font-size: 10.5px; letter-spacing: .3em;
  color: var(--accent-2); margin-bottom: 16px;
}
.page-head h1 { letter-spacing: .1em; line-height: 1.35; }
.page-head .ph-sub {
  margin-top: 16px; font-family: inherit; font-size: 13px; letter-spacing: .1em;
  color: var(--fg-sub); line-height: 1.9;
}

/* アンカー遷移時に固定ヘッダーへ潜り込まないように */
[id] { scroll-margin-top: calc(var(--head-h) + 12px); }

/* ---- 写真（.visual 内の img） ---- */
.visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.visual.has-img { background: #14120f; }
/* 写真がある場合はイニシャルのプレースホルダを出さない */
figure:has(.has-img)::after { display: none; }
.visual.has-img.leaf::before { opacity: .55; }
/* キャストは顔が切れないよう上寄せでトリミング */
.cast-card .visual > img,
.portrait .visual > img,
.card.gravure .visual > img { object-position: center 22%; }

/* ---- 出演実績ギャラリー ---- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.gallery.kv { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 760px; margin-inline: auto; }
.gallery .ga figcaption { margin-top: 12px; font-size: 12px; line-height: 1.8; color: var(--fg-sub); }
.gallery .ga .visual { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #14120f; }
.gallery.kv .ga .visual { aspect-ratio: 9/16; }
.gallery .ga .visual > img { object-position: center 30%; }
@media (max-width: 900px) { .gallery, .gallery.kv { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---- ヒーローに人物写真を敷く場合の調整 ---- */
.brand-hero .visual > img { object-position: center 18%; }
.brand-hero .visual.has-img::after {
  background: linear-gradient(180deg, rgba(8,8,8,.72), rgba(8,8,8,.5) 40%, rgba(8,8,8,.86));
}
.brand-hero .visual.has-img::before {
  background: radial-gradient(120% 85% at 50% 42%, rgba(0,0,0,.28) 20%, rgba(0,0,0,.7) 100%);
}
.area-panel .visual > img { object-position: center 20%; }
.shoplist .item .visual > img { object-position: center 22%; }

/* =========================================================
   ファーストビュー：流動するグラデーション
   （transformのみをアニメーションさせてGPU合成に載せる）
   ========================================================= */
.visual.aurora { background: #050706; overflow: hidden; }
.visual.aurora .blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); mix-blend-mode: screen;
  will-change: transform; pointer-events: none;
}
.visual.aurora .b1 {
  width: 62vmax; height: 62vmax; left: -14vmax; top: -18vmax;
  background: radial-gradient(circle, rgba(42,150,99,1), rgba(42,150,99,0) 68%);
  animation: drift1 11s ease-in-out infinite alternate;
}
.visual.aurora .b2 {
  width: 54vmax; height: 54vmax; right: -12vmax; top: -10vmax;
  background: radial-gradient(circle, rgba(217,181,102,.9), rgba(217,181,102,0) 66%);
  animation: drift2 14s ease-in-out infinite alternate;
}
.visual.aurora .b3 {
  width: 58vmax; height: 58vmax; left: 18%; bottom: -26vmax;
  background: radial-gradient(circle, rgba(28,120,152,1), rgba(28,120,152,0) 68%);
  animation: drift3 12.5s ease-in-out infinite alternate;
}
.visual.aurora .b4 {
  width: 40vmax; height: 40vmax; right: 6%; bottom: -14vmax;
  background: radial-gradient(circle, rgba(150,44,88,.95), rgba(150,44,88,0) 66%);
  animation: drift4 16s ease-in-out infinite alternate;
}
.visual.aurora .b5 {
  width: 34vmax; height: 34vmax; left: 42%; top: 18%;
  background: radial-gradient(circle, rgba(120,205,155,.7), rgba(120,205,155,0) 70%);
  animation: drift5 9.5s ease-in-out infinite alternate;
}
@keyframes drift1 {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(26vmax, 14vmax, 0) scale(1.3); }
  100% { transform: translate3d(8vmax, 34vmax, 0) scale(.85); }
}
@keyframes drift2 {
  0%   { transform: translate3d(0,0,0) scale(1.05); }
  50%  { transform: translate3d(-30vmax, 20vmax, 0) scale(.82); }
  100% { transform: translate3d(-10vmax, 40vmax, 0) scale(1.35); }
}
@keyframes drift3 {
  0%   { transform: translate3d(0,0,0) scale(.92); }
  50%  { transform: translate3d(-24vmax, -26vmax, 0) scale(1.32); }
  100% { transform: translate3d(20vmax, -42vmax, 0) scale(1); }
}
@keyframes drift4 {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-26vmax, -20vmax, 0) scale(1.45); }
  100% { transform: translate3d(-44vmax, -4vmax, 0) scale(.82); }
}
@keyframes drift5 {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: .6; }
  50%  { transform: translate3d(24vmax, -16vmax, 0) scale(1.5); opacity: 1; }
  100% { transform: translate3d(-20vmax, 20vmax, 0) scale(.85); opacity: .5; }
}
/* 粒状ノイズ（バンディング防止） */
.visual.aurora .grain {
  position: absolute; inset: -50%; opacity: .05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 7s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -3%); }
  60%  { transform: translate(-2%, -2%); }
  80%  { transform: translate(3%, 1%); }
  100% { transform: translate(0, 0); }
}
/* オーロラ側で階調を作るので、既存の重ね掛けは弱める */
.brand-hero .visual.aurora::after {
  background: linear-gradient(180deg, rgba(3,5,4,.34) 0%, rgba(3,5,4,0) 38%, rgba(3,5,4,.72) 100%);
}
.brand-hero .visual.aurora::before {
  background: radial-gradient(115% 80% at 50% 46%, transparent 42%, rgba(0,0,0,.42) 100%);
}
.visual.aurora.leaf::before { display: none; }

@media (prefers-reduced-motion: reduce) {
  .visual.aurora .blob, .visual.aurora .grain { animation: none; }
}

/* ---- ブランドコピー（キャッチ＋リード） ---- */
.sec.concept { padding: 104px 0; }
.sec.concept.tint { background: var(--bg-tint); }
.sec.concept .inner { max-width: 860px; text-align: center; }
.concept-catch {
  font-family: var(--brand); font-weight: 500;
  font-size: clamp(21px, 3.4vw, 38px); line-height: 1.72; letter-spacing: .12em;
}
.concept-catch::after {
  content: ""; display: block; width: 40px; height: 1px; margin: 30px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}
.concept-lead {
  margin-top: 30px; font-size: 14.5px; line-height: 2.3; letter-spacing: .06em;
  color: #46403d; text-align: left;
}
.center-lead { margin-inline: auto; text-align: left; max-width: 860px; }
.art-catch {
  font-family: var(--brand); font-weight: 500; font-size: clamp(18px, 2.6vw, 26px);
  letter-spacing: .1em; line-height: 1.7; margin: 4px 0 28px; color: var(--accent);
}
@media (max-width: 640px) {
  .sec.concept { padding: 66px 0; }
  .concept-lead { font-size: 13.5px; line-height: 2.15; }
}

/* ---- お知らせ（NEWS） ---- */
.sec.news { padding: 76px 0; }
.news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--fg); }
.sec-head-l .en { font-family: "Montserrat", sans-serif; font-weight: 300; font-size: clamp(20px, 3.4vw, 30px); letter-spacing: .22em; }
.sec-head-l .ja { margin-left: 16px; font-size: 11.5px; letter-spacing: .26em; color: var(--fg-sub); }
.more-link { flex: none; font-size: 11.5px; letter-spacing: .2em; border-bottom: 1px solid var(--accent-2); padding-bottom: 4px; }

.news-list { border-top: 0; }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a {
  display: grid; grid-template-columns: 108px 96px 1fr; align-items: center; gap: 18px;
  padding: 22px 6px; transition: padding .35s, background .35s;
}
.news-list a:hover { background: var(--bg-tint); padding-inline: 16px 6px; opacity: 1; }
.news-list time { font-family: "DM Sans", sans-serif; font-size: 12.5px; letter-spacing: .1em; color: var(--fg-sub); }
.news-list .cat {
  justify-self: start; font-family: "DM Sans", sans-serif; font-size: 9.5px; letter-spacing: .2em;
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; color: var(--accent);
  white-space: nowrap;
}
.news-list p { font-size: 14.5px; line-height: 1.8; letter-spacing: .04em; }
.news-list a:hover p { color: var(--accent); }
.news-list.compact a { padding: 16px 6px; }
.news-list.compact p { font-size: 13.5px; }

@media (max-width: 640px) {
  .sec.news { padding: 56px 0; }
  .news-list a { grid-template-columns: auto 1fr; gap: 8px 12px; padding: 18px 4px; }
  .news-list p { grid-column: 1 / -1; font-size: 13.5px; }
  .news-list a:hover { padding-inline: 4px; }
  .news-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---- 言語切替 ---- */
.langsw { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.langsw a, .langsw .cur {
  font-family: "DM Sans", sans-serif; font-size: 10.5px; letter-spacing: .12em;
  padding: 6px 10px; border-radius: 999px; white-space: nowrap;
}
.langsw a { color: inherit; opacity: .62; }
.langsw a:hover { opacity: 1; }
.langsw .cur { border: 1px solid currentColor; opacity: 1; }
@media (max-width: 640px) { .langsw { margin-left: 0; } .langsw a, .langsw .cur { padding: 5px 7px; font-size: 10px; } }

/* ---- ヘッダーの折り返し防止（言語切替を足したことによる横溢対策） ---- */
.head-nav { flex-wrap: nowrap; min-width: 0; }
header.site { gap: 12px; }

@media (max-width: 900px) {
  .head-nav { gap: 12px; }
}
@media (max-width: 640px) {
  header.site { padding: 0 16px; }
  .head-nav { gap: 10px; }
  /* 言語切替はドロワー内に移す（ヘッダーは ロゴ / CTA / バーガー のみ） */
  .head-nav > .langsw { display: none; }
  .head-cta { padding: 9px 14px; font-size: 10.5px; letter-spacing: .08em; }
}
@media (max-width: 360px) {
  .head-cta { padding: 8px 11px; font-size: 10px; }
  .logo-mark { width: 66px; height: 23px; }
}

/* ドロワー内の言語切替 */
.glnv-lang { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 22px; }
.glnv-lang .langsw { gap: 8px; }
.glnv-lang .langsw a, .glnv-lang .langsw .cur {
  font-size: 12px; padding: 9px 18px; border: 1px solid var(--line);
}
.glnv-lang .langsw .cur { border-color: var(--fg); }

/* ---- ブログ記事のアイキャッチ ---- */
.art-hero { margin: 8px 0 32px; }
.art-hero img { width: 100%; height: auto; display: block; }
.prose img { max-width: 100%; height: auto; margin: 20px 0; }
.prose figure { margin: 24px 0; }
.prose figcaption { font-size: 12px; color: var(--fg-sub); margin-top: 8px; }
.prose blockquote { border-left: 3px solid var(--accent-2); padding-left: 18px; margin: 20px 0; color: var(--fg-sub); }

/* ---- 写真が無いカード（記事・求人・ブログ） ---- */
a.card.noimg {
  display: grid; align-content: start; gap: 10px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: linear-gradient(160deg, #fff, var(--bg-tint));
  padding: 30px 26px 26px; min-height: 190px;
}
a.card.noimg .cat { margin-top: 0; }
a.card.noimg h3 { margin-top: 0; font-size: 16px; line-height: 1.75; }
a.card.noimg p { margin-top: 0; }
.card-go {
  margin-top: auto; align-self: start; font-size: 11px; letter-spacing: .18em;
  color: var(--accent); border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
a.card.noimg:hover { border-left-color: var(--accent-2); }

/* ---- SNSアイコン ---- */
.sns-links { display: flex; flex-wrap: wrap; gap: 8px; }
.sns-btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px 8px 13px;
  font-size: 11.5px; letter-spacing: .1em; color: var(--fg);
  transition: background .3s, border-color .3s, color .3s;
}
.sns-btn svg { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; }
.sns-btn svg .fill { fill: currentColor; stroke: none; }
.sns-btn:hover { opacity: 1; color: #fff; }
.sns-btn.instagram:hover { background: #d82f7a; border-color: #d82f7a; }
.sns-btn.x:hover         { background: #14171a; border-color: #14171a; }
.sns-btn.tiktok:hover    { background: #010101; border-color: #010101; }
.sns-btn.line:hover      { background: #06c755; border-color: #06c755; }
.sec.dark .sns-btn { border-color: rgba(255,255,255,.24); color: #fff; }
@media (max-width: 640px) { .sns-btn { padding: 7px 13px 7px 11px; font-size: 11px; } }

/* ---- 店舗写真（店内のご案内） ---- */
.store-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.store-gallery.g1 { grid-template-columns: minmax(0, 1fr); max-width: 900px; margin-inline: auto; }
.store-gallery.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.store-gallery figure { aspect-ratio: 3/2; overflow: hidden; border-radius: 2px; background: #1a1918; }
.store-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
@media (min-width: 1025px) { .store-gallery figure:hover img { transform: scale(1.05); } }
@media (max-width: 640px) {
  .store-gallery, .store-gallery.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}

/* 店舗ページの地図（ボタンを押すと main.js が iframe を差し込む） */
.map-embed { margin-top: 28px; }
.map-embed .map-open {
  display: inline-block; padding: 12px 24px; cursor: pointer;
  background: transparent; border: 1px solid var(--line, rgba(0,0,0,.2));
  color: inherit; font: inherit; letter-spacing: .12em;
}
.map-embed .map-open:hover { background: rgba(0,0,0,.04); }
.map-embed.is-open { aspect-ratio: 16 / 9; width: 100%; }
.map-embed.is-open iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 720px) { .map-embed.is-open { aspect-ratio: 4 / 3; } }

/* 特徴タグ：2名以上の特徴はリンク（.chip）、1名だけの特徴はリンクにしない */
.chip.is-plain { cursor: default; opacity: .72; }
.chip.is-plain:hover { opacity: .72; }

/* キャスト一覧のページ送り */
.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 48px; }
.pager .pg {
  min-width: 42px; padding: 10px 12px; text-align: center;
  border: 1px solid var(--line); font-size: 13px; letter-spacing: .08em;
}
.pager .pg.is-current { background: var(--accent); color: #fff; border-color: var(--accent); }
.pager .pg.nav { letter-spacing: .12em; }
.pager-note { margin-top: 14px; text-align: center; font-size: 12px; color: var(--fg-sub); }
/* 現在表示中のエリアタブ */
.chip.is-current { background: var(--accent); color: #fff; border-color: var(--accent); }
/* 更新日など補助的な行は控えめに */
.store-table dl.minor { opacity: .6; font-size: 12px; }

/* 写真のクリック拡大（ライトボックス） */
.store-gallery img, .sp-gallery img, .cast-photos img { cursor: zoom-in; }
.lb {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lb.on { display: flex; }
.lb-body { max-width: min(94vw, 1200px); max-height: 92vh; margin: 0; text-align: center; }
.lb-body img { max-width: 100%; max-height: 86vh; width: auto; height: auto; object-fit: contain; }
.lb-body figcaption { margin-top: 10px; color: rgba(255,255,255,.75); font-size: 12px; letter-spacing: .14em; }
.lb button { position: absolute; background: none; border: 0; color: #fff; cursor: pointer; line-height: 1; }
.lb-close { top: 16px; right: 20px; font-size: 34px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 54px; padding: 12px 20px; }
.lb-prev { left: 8px; } .lb-next { right: 8px; }
@media (max-width: 720px) {
  /* 拡大表示の操作ボタン。指で押す前提なので44px角を確保する
     （×が20px角しかなく、閉じるのに苦労していた） */
  .lb-prev, .lb-next {
    font-size: 38px; width: 52px; height: 64px; padding: 0;
    display: grid; place-items: center;
  }
  .lb-close {
    top: 8px; right: 8px; width: 48px; height: 48px; padding: 0; font-size: 30px;
    display: grid; place-items: center;
  }
}

/* キャスト詳細の写真ギャラリー（Masonry＝段違いのタイル並べ） */
/* 写真は切り抜かず元の縦横比のまま。列への振り分けは main.js が行い、
   ここでは「列そのもの」を縦に積むだけにしてある。JSが動かない環境では
   figure が素直に縦1列で並ぶので、写真が見えなくなることはない。 */
.cast-photos {
  display: flex; align-items: flex-start;
  gap: 30px; max-width: 1100px; margin-inline: auto;
}
.cast-photos .m-col {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; gap: 30px;
}
/* 中央の列だけ頭を下げて、3列が横一直線に揃わないようにする */
.cast-photos .m-col:nth-child(2) { margin-top: 30px; }
.cast-photos figure { margin: 0; background: #14120f; overflow: hidden; }
.cast-photos img {
  width: 100%; height: auto; display: block;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.cast-photos figure:hover img { transform: scale(1.04); }
.photos-note { margin-top: 14px; font-size: 12px; color: var(--fg-sub); letter-spacing: .1em; }
@media (max-width: 768px) {
  /* スマホは2列・間隔10px。列の頭は揃える */
  .cast-photos { gap: 10px; }
  .cast-photos .m-col { gap: 10px; }
  .cast-photos .m-col:nth-child(2) { margin-top: 0; }
}

/* =========================================================
   スマホでの表まわり
   画面が狭いと、横並びの表は折り返しだらけになって読めなくなる。
   料金表・比較表・基本情報は、縦に積み直して読ませる。
   ========================================================= */
@media (max-width: 720px) {
  /* ---- 料金表：項目／金額／但し書きを縦に積む ---- */
  .price li {
    display: block; padding: 12px 4px;
  }
  .price li span {
    display: block; font-size: 11.5px; letter-spacing: .14em; color: var(--fg-sub);
  }
  .price li b {
    display: block; margin-top: 3px; text-align: left; font-size: 19px; white-space: normal;
  }
  .price li b small {
    display: block; margin: 4px 0 0; font-size: 11.5px; line-height: 1.7; letter-spacing: .04em;
  }
  #price .price li { padding: 14px 18px; }

  /* ---- 比較表：表組みを解いて、1行＝1枚のカードにする ---- */
  .tablewrap { overflow-x: visible; }
  .dtable { min-width: 0; display: block; border-collapse: separate; }
  .dtable thead { display: none; }         /* 見出しは各セルの data-label で出す */
  .dtable tbody, .dtable tr, .dtable th, .dtable td { display: block; width: auto; }
  .dtable tr {
    border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
  }
  .dtable tr + tr { margin-top: 14px; }
  .dtable tbody th {
    border: 0; border-bottom: 1px solid var(--line);
    background: var(--bg-tint); white-space: normal;
    font-size: 15px; letter-spacing: .06em; padding: 13px 16px;
  }
  .dtable td {
    border: 0; padding: 11px 16px;
    display: grid; grid-template-columns: 6.5em minmax(0, 1fr); gap: 12px; align-items: baseline;
  }
  .dtable td + td { border-top: 1px solid var(--line); }
  .dtable td::before {
    content: attr(data-label);
    font-size: 10.5px; letter-spacing: .14em; line-height: 1.9; color: var(--fg-sub);
  }
  .dtable td[data-label=""]::before, .dtable td:not([data-label])::before { display: none; }
  .prose .dtable { margin: 18px 0; }
}

@media (max-width: 560px) {
  /* ---- 基本情報カード：2列だと1セルが150px弱になり、住所などが崩れる ---- */
  .kf-grid { grid-template-columns: 1fr; }
  .kf { padding: 14px 16px 16px; }
  /* ---- 店舗情報の定義リスト：上下の余白を詰めて1画面に収まる量を増やす ---- */
  .store-table dt { padding: 14px 4px 0; }
  .store-table dd { padding: 6px 4px 14px; }
  .dtable td { grid-template-columns: 1fr; gap: 3px; }
}

/* =========================================================
   スマホでの指の当たり判定
   指で押す前提だと、高さ20px前後のリンクは狙いにくく誤タップが増える。
   単独で置かれているリンク・ボタンだけを 40〜44px まで広げる。
   （文中のリンクは行送りが崩れるので対象にしない）
   タブレットも指で操作するので、文字ナビが隠れる900px以下をまとめて対象にする。
   ========================================================= */
@media (max-width: 900px) {
  /* メニューの開閉。見た目の線は変えず、押せる範囲だけ広げる */
  .burger { width: 44px; height: 44px; margin-right: -8px; }
  .burger span { left: 8px; width: 28px; }
  .burger span:nth-child(1) { top: 15px; }
  .burger span:nth-child(2) { top: 22px; }
  .burger span:nth-child(3) { top: 29px; }
  .burger.open span:nth-child(1), .burger.open span:nth-child(3) { top: 22px; }
  header.site .logo { min-height: 44px; }

  /* 電話・店舗詳細・もっと見る など、単独で置かれた導線 */
  .head-cta,
  .shoplist .item .tel,
  .shoplist .item .links a,
  .shoplist .item h3 a,
  .more-link,
  .area-panel .subs a,
  .area-panel .go,
  .kf dd a,
  .dtable tbody th a,
  .f-links a,
  .f-sns a,
  .glnv-foot a {
    display: inline-flex; align-items: center; min-height: 40px;
  }
  /* 下段の規約リンクは折り返すので、行間も少し空ける */
  /* パンくずは「ホーム／キャスト一覧／銀座／きほ」と横に並ぶ小さな列。
     ここだけは高さを揃えてはいけない。リンクにだけ min-height を付けると、
     リンクでない最後の項目（現在地）と高さが食い違って行がずれる。
     上下は行の余白で、左右は padding で稼ぐ。 */
  .crumbs ol { align-items: center; gap: 2px 10px; padding: 6px 0; }
  .crumbs li a { display: inline-block; padding: 9px 6px; margin-inline: -6px; }
  .crumbs li[aria-current] { padding: 9px 0; }
  /* 言語切替（EN／简体／日本語） */
  .langsw a, .langsw .cur { display: inline-flex; align-items: center; min-height: 40px; }
  .f-links { gap: 0 26px; }
  .f-sns { gap: 28px; }

  /* フッターのリンク一覧・グローバルメニューは行数が多いので、
     高さではなく行間で指1本ぶんの間隔をつくる */
  .f-areas ul { gap: 2px; }
  /* 列いっぱいを当たり判定にする（「銀座」のような短い項目でも押しやすくする） */
  .f-areas li a { display: block; padding: 11px 0; }
  .glnv-area ul { gap: 2px 14px; }
  .glnv-area li a { display: inline-block; padding: 11px 7px; margin: 0 -7px;
    min-width: 40px; text-align: center; }

  /* CHANCE GALs のメンバーカード内の文字リンク */
  .g-info .link { display: inline-flex; align-items: center; min-height: 40px; }
}
