@charset "UTF-8";
/* =====================================================================
   BLG GROUP — barcelona.co.jp/susukino faithful clone (own implementation)
   Mobile-first. Base layer = all widths. Desktop layer = @media(min-width:1024px).
   White base / green #008847 / gold #b09431 / color photos.
   ===================================================================== */

:root {
  --ink: #251e1c;
  --link: #222222;
  --green: #008847;
  --green-d: #008842;
  --green-l: #31c218;
  --grad: linear-gradient(266.97deg, #008842 0%, #31c218 100%);
  --gold: #b09431;
  --gray-sec: #f2f3f5;
  --hair: #dedede;
  --foot-bg: #202026;
  --muted: #989898;
  --muted2: #9e9e9e;
  --val: #2c2c2c;
  --jp: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --en: "Montserrat", sans-serif;
  --en2: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 15px/1.7 var(--jp);
  background: #fff;
  color: var(--ink);
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--link); text-decoration: none; }
p { margin: 0; line-height: 1.7; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
.en { font-family: var(--en); letter-spacing: 0.04em; }
.en_sub { font-family: var(--en2); }
iframe { display: block; }
svg { display: inline-block; }

.bc-mark { width: 100%; height: 100%; color: var(--green); }
.bc-mark-wrap { display: inline-flex; width: 26px; height: 26px; flex: 0 0 auto; }

.bc-inner1145 { max-width: 1145px; margin: 0 auto; padding-inline: 16px; }

/* ---------- buttons ---------- */
.bc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  border-radius: 100px; font-weight: bold; font-size: 13px;
  padding: .85em 1.6em; line-height: 1; transition: opacity .25s, background .25s;
}
.bc-btn svg { width: 1.15em; height: 1.15em; }
.bc-btn .bc-arw { width: 22px; height: 7px; }
.bc-btn--sec { background: #fff; color: var(--green); border: 1px solid var(--green); }
.bc-btn--solid { background: var(--grad); color: #fff; }
.bc-btn--solid svg { color: #fff; }
.bc-btn--lg { font-size: 15px; width: 100%; max-width: 278px; padding: 1.05em 1.6em; }
.bc-btn:hover { opacity: .82; }

.bc-more { text-align: center; margin-top: 28px; }

/* ---------- section heads ---------- */
.bc-hd { margin-bottom: 20px; }
.bc-hd--c { text-align: center; }
.bc-hl02 { font-size: 22px; font-weight: bold; line-height: 1.3; color: var(--ink); position: relative; }
.bc-hl02 a { color: inherit; }
.bc-hl02 .en { display: block; font-size: 11px; color: var(--green); font-weight: 600; letter-spacing: .12em; margin-top: 6px; }
.bc-hl01 { font-size: 22px; font-weight: bold; color: var(--green); line-height: 1.3; }
.bc-hl01 .en { display: block; font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: .12em; margin-top: 6px; }

.bc-sec { padding: 28px 0; }

/* =====================================================================
   FIXED HEADER (shows on scroll)
   ===================================================================== */
.bc-head {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 90;
  background: #fff; opacity: 0; transform: translateY(-100%);
  transition: opacity .3s, transform .3s;
}
.bc-head.is-show { opacity: 1; transform: translateY(0); }
.bc-head__inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; }
.bc-head__logo { display: flex; align-items: center; gap: 8px; }
.bc-word { display: flex; flex-direction: column; line-height: 1.1; }
.bc-word b { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: .03em; }
.bc-word i { font-size: 9px; color: var(--muted2); font-style: normal; letter-spacing: .06em; margin-top: 2px; }
.bc-head__nav { display: none; }
.bc-sns { display: inline-flex; gap: 10px; align-items: center; }
.bc-sns a { width: 22px; height: 22px; display: inline-flex; }
.bc-sns svg { width: 100%; height: 100%; }
/* brand SNS marks carry their own fills (no currentColor); keep TikTok legible on dark */
.bc-foot__sns .bc-tt path, .bc-kv__sns .bc-tt path { fill: #fff; }

/* burger */
.bc-burger { width: 30px; height: 22px; position: relative; }
.bc-burger span { position: absolute; left: 3px; right: 3px; height: 1.5px; background: var(--green); transition: .3s; }
.bc-burger span:nth-child(1) { top: 2px; }
.bc-burger span:nth-child(2) { top: 10px; }
.bc-burger span:nth-child(3) { top: 18px; }
body.is-menu .bc-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.is-menu .bc-burger span:nth-child(2) { opacity: 0; }
body.is-menu .bc-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* drawer */
.bc-drawer {
  position: fixed; top: 0; right: 0; width: min(86%, 360px); height: 100dvh; z-index: 200;
  background: #fff; transform: translateX(100%); transition: transform .35s ease;
  padding: 84px 28px 32px; overflow-y: auto;
}
body.is-menu .bc-drawer { transform: translateX(0); }
.bc-drawer__nav a { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--hair); }
.bc-drawer__nav a b { font-size: 12px; color: var(--green); width: 70px; flex: 0 0 auto; font-weight: 600; }
.bc-drawer__nav a span { font-size: 16px; font-weight: bold; color: var(--ink); }
.bc-drawer__stores { margin-top: 22px; }
.bc-drawer__stores p { font-size: 12px; color: var(--muted); font-weight: bold; margin-bottom: 10px; letter-spacing: .1em; }
.bc-drawer__stores a { display: block; padding: 9px 0; font-size: 14px; color: var(--ink); }
.bc-drawer__sns { margin-top: 24px; }
.bc-drawer__sns .bc-sns { gap: 16px; }
.bc-drawer__sns .bc-sns a { width: 26px; height: 26px; }
.bc-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 150; }
body.is-menu .bc-scrim { opacity: 1; visibility: visible; }

/* =====================================================================
   FLOATING CTA pill
   ===================================================================== */
.bc-go { position: fixed; right: 16px; bottom: 16px; z-index: 80; margin: 0; opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; pointer-events: none; }
.bc-go.is-show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.bc-go__btn {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--grad); color: #fff; font-weight: bold; font-size: 14px;
  border-radius: 100px; padding: 14px 22px; filter: drop-shadow(0 8px 8px rgba(0,0,0,.16));
}
.bc-go__btn svg { width: 18px; height: 18px; }

/* =====================================================================
   KV (group top)
   ===================================================================== */
.bc-kv { position: relative; }
.bc-kv__img { position: relative; min-height: 78vh; overflow: hidden; }
.bc-kv__img img { width: 100%; height: 78vh; object-fit: cover; }
.bc-kv__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,.55) 100%); z-index: 1; }
.bc-kv__txt { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: space-between; padding: 28px 24px 36px; pointer-events: none; }
.bc-kv__txt a { pointer-events: auto; }
.bc-kv__logo { display: flex; align-items: center; gap: 10px; }
.bc-kv__logo .bc-mark { color: #fff; }
.bc-kv__brand { display: flex; flex-direction: column; line-height: 1.1; color: #fff; }
.bc-kv__brand b { font-size: 20px; font-weight: 800; letter-spacing: .04em; }
.bc-kv__brand i { font-size: 9px; font-style: normal; color: rgba(255,255,255,.8); margin-top: 3px; }
.bc-kv__nav { margin-top: auto; }
.bc-kv__nav a { display: block; margin-bottom: 14px; }
.bc-kv__nav a b { color: #fff; font-size: 24px; font-weight: bold; line-height: 1.2; border-bottom: 1px solid #fff; padding-bottom: 4px; display: inline-block; }
.bc-kv__sub { display: none; }
.bc-kv__sns { display: none; }

/* =====================================================================
   LEAD + No.1 badges
   ===================================================================== */
.bc-lead { padding: 24px 16px; }
.bc-lead__in { max-width: 1184px; margin: 0 auto; }
.bc-lead__h1 { font-size: 26px; font-weight: bold; line-height: 1.5; text-align: center; }
.bc-lead__h1 em { font-style: normal; color: var(--green); }
.bc-badges { margin-top: 24px; }
.bc-badge { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 20px; }
.bc-badge:last-child { margin-bottom: 0; }
.bc-badge__l, .bc-badge__r { width: 38px; height: 84px; flex: 0 0 auto; }
.bc-badge__l svg, .bc-badge__r svg { width: 100%; height: 100%; }
.bc-badge__c { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 6px; }
.bc-crown { width: 38px; height: 22px; margin-bottom: 4px; }
.bc-badge__cap { font-size: 11px; color: var(--ink); letter-spacing: .04em; }
.bc-badge__main { font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1.1; margin-top: 2px; }
.bc-badge__jp { font-size: 13px; font-weight: bold; color: var(--gold); margin-top: 4px; }

/* =====================================================================
   CAST GRID (shared)
   ===================================================================== */
.bc-grid { display: flex; flex-wrap: wrap; }
.bc-cc { width: 33%; margin: 0 .5% 10px 0; }
.bc-cc:nth-of-type(3n) { margin-right: 0; }
.bc-cc__lnk { display: block; }
.bc-cc__img { position: relative; display: block; overflow: hidden; aspect-ratio: 2 / 3; }
.bc-cc__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.bc-cc__over { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; color: #fff; font-size: 12px; font-weight: bold; padding: 16px 8px 8px; background: linear-gradient(0deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,0) 100%); }
.bc-cc__txt { padding: 6px 4px 0; }
.bc-cc__name { display: none; }
.bc-cc__store { display: inline-block; font-size: 11px; color: var(--muted); }
.bc-cc__store-logo { height: 13px; width: auto; display: inline-block; vertical-align: middle; }

/* ---------- store logos (data-driven; render only when store.logo set) ---------- */
.bc-st__logo { height: 40px; width: auto; display: inline-block; }
.bc-os__logo { height: 36px; width: auto; display: inline-block; }
.bc-loc-word__logo { height: 56px; width: auto; display: inline-block; }
.bc-cast-main__group-logo { height: 16px; width: auto; display: inline-block; vertical-align: middle; }
.bc-gvp__store-logo { height: 18px; width: auto; display: inline-block; }

/* =====================================================================
   POPULAR CAST section (group top)
   ===================================================================== */
.bc-cast { background: var(--gray-sec); padding: 24px 0; }
.bc-cast__in { max-width: 1184px; margin: 0 auto; padding-inline: 16px; }

/* =====================================================================
   GRAVURE section (group top) — 在籍キャストのグラビア
   ===================================================================== */
.bc-gravure__in { max-width: 1184px; margin: 0 auto; padding-inline: 16px; }
.bc-gravure__grid { display: block; }
.bc-gv { position: relative; margin-bottom: 12px; }
.bc-gv:last-child { margin-bottom: 0; }
.bc-gv__lnk { display: block; position: relative; }
.bc-gv__img { display: block; overflow: hidden; aspect-ratio: 4 / 5; }
.bc-gv__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.bc-gv__lnk::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 45%; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,0) 100%); pointer-events: none; }
.bc-gv__txt { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 10px; padding: 16px; color: #fff; }
.bc-gv__name { font-size: 17px; font-weight: bold; line-height: 1.2; }
.bc-gv__name i { display: block; font-style: normal; font-size: 10px; font-weight: 400; letter-spacing: .08em; color: rgba(255,255,255,.85); margin-top: 4px; }
.bc-gv__store { flex: 0 0 auto; font-size: 10px; font-weight: bold; color: #fff; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.55); border-radius: 100px; padding: 4px 10px; line-height: 1.2; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }

/* =====================================================================
   STORES section — dark band + overlapping swiper
   ===================================================================== */
.bc-stores { background: var(--gray-sec); padding: 0 0 28px; }
.bc-stores__band { background-color: #1d1d22; background-position: center; background-size: cover; position: relative; text-align: center; padding: 44px 16px 80px; }
.bc-stores__band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,14,18,.74) 0%, rgba(14,14,18,.6) 100%); }
.bc-stores__h { position: relative; font-size: 34px; font-weight: bold; color: #fff; }
.bc-stores__h .en { display: block; font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .2em; margin-top: 6px; font-weight: 600; }
.bc-stores__band p { position: relative; color: rgba(255,255,255,.78); font-size: 12px; margin-top: 8px; letter-spacing: .1em; }
.bc-stores__sw { margin-top: -56px; padding: 0 16px; overflow: visible; }
.bc-stores__sw .swiper-slide { width: 300px; height: auto; }
.bc-st { display: flex; }
.bc-st__card { background: #fff; padding: 24px 22px; width: 100%; box-shadow: 0 8px 28px rgba(0,0,0,.08); display: flex; flex-direction: column; }
.bc-st__head { text-align: center; display: block; padding-bottom: 14px; border-bottom: 1px solid var(--hair); margin-bottom: 14px; }
.bc-st__name { display: block; font-size: 24px; font-weight: bold; color: var(--ink); line-height: 1.2; }
.bc-st__genre { display: block; font-size: 10px; color: var(--green); letter-spacing: .12em; margin-top: 6px; }
.bc-st__addr { font-size: 12px; line-height: 1.7; color: var(--ink); flex: 1; }
.bc-st__row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.bc-st__area { font-size: 12px; color: var(--muted); }
.bc-st__ics { display: inline-flex; gap: 8px; }
.bc-st__ic { width: 34px; height: 34px; border: 1px solid var(--green); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--green); }
.bc-st__ic svg { width: 16px; height: 16px; }
.bc-st__more { margin-top: 16px; text-align: center; }
.bc-st__more .bc-btn { width: 100%; max-width: 200px; }

/* =====================================================================
   RECRUIT
   ===================================================================== */
.bc-recruit { background: var(--gray-sec); }
.bc-recruit__in { max-width: 1184px; margin: 0 auto; padding-inline: 16px; text-align: center; }
.bc-recruit__catch { font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.bc-recruit__catch b { color: var(--green); font-size: 1.4em; font-weight: 800; }
.bc-recruit__nums { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.bc-recruit__nums div { background: #fff; border-radius: 10px; padding: 18px 16px; flex: 1 1 30%; min-width: 140px; }
.bc-recruit__nums b { display: block; font-size: 26px; font-weight: 800; color: var(--green); }
.bc-recruit__nums span { display: block; font-size: 11px; color: var(--ink); margin-top: 6px; }
.bc-recruit__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; }
.bc-recruit__tags li { font-size: 11px; font-weight: bold; background: rgba(0,0,0,.04); border-radius: 4px; padding: 4px 10px; }

/* =====================================================================
   BANNERS
   ===================================================================== */
.bc-bnr__in { max-width: 1184px; margin: 0 auto; padding-inline: 16px; }
.bc-bnr__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bc-bnr__grid a { display: flex; flex-direction: column; justify-content: center; min-height: 84px; background: var(--gray-sec); border-radius: 10px; padding: 16px; transition: background .25s; }
.bc-bnr__grid a:hover { background: #e9ebee; }
.bc-bnr__grid .en { font-size: 14px; font-weight: 700; color: var(--green); letter-spacing: .1em; }
.bc-bnr__grid i { font-style: normal; font-size: 12px; color: var(--ink); margin-top: 4px; }
.bc-bnr__grid .bc-arw { width: 24px; height: 7px; color: var(--green); margin-top: 8px; }

/* =====================================================================
   STORE PAGE — main lockup + hero swiper
   ===================================================================== */
.bc-loc-main { padding-top: 24px; margin-bottom: 24px; }
.bc-loc-logo { position: relative; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.bc-loc-word { font-size: 38px; font-weight: bold; line-height: 1.1; }
.bc-loc-word .en { color: var(--ink); letter-spacing: .02em; }
.bc-loc-word__sub { font-size: 12px; color: var(--green); letter-spacing: .12em; margin-top: 8px; }
.bc-loc-lead { font-size: 14px; line-height: 1.7; margin-top: 12px; color: var(--ink); }
.bc-loc-logo__map { width: 48px; height: 48px; flex: 0 0 auto; color: var(--green); }
.bc-loc-logo__map svg { width: 100%; height: 100%; }
.bc-loc-photos { position: relative; }
.bc-loc-sw { overflow: hidden; }
.bc-loc-sw .swiper-slide { width: 84%; }
.bc-loc-sw img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.bc-loc-prev, .bc-loc-next { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; z-index: 5; border-radius: 50%; background: rgba(255,255,255,.85); box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.bc-loc-prev::before, .bc-loc-next::before { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border-top: 1.5px solid var(--ink); border-right: 1.5px solid var(--ink); }
.bc-loc-prev { left: 8px; }
.bc-loc-prev::before { transform: translate(-30%,-50%) rotate(-135deg); }
.bc-loc-next { right: 8px; }
.bc-loc-next::before { transform: translate(-70%,-50%) rotate(45deg); }

/* store info table */
.bc-info__row { display: flex; border-bottom: 1px solid var(--hair); padding: 12px 0; font-size: 14px; }
.bc-info__row dt { width: 100px; flex: 0 0 auto; color: var(--muted); }
.bc-info__row dd { flex: 1; color: var(--ink); }
.bc-info__row dd a { color: var(--green); text-decoration: underline; }
.bc-info__map { margin-top: 20px; aspect-ratio: 4 / 3; }
.bc-info__map iframe { width: 100%; height: 100%; }

/* price */
.bc-pr { display: flex; flex-wrap: wrap; border-top: 1px solid var(--hair); border-left: 1px solid var(--hair); margin-bottom: 14px; }
.bc-pr__row { width: 50%; display: flex; font-size: 13px; border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.bc-pr__row dt { background: #f1f1f1; padding: 8px 10px; width: 55%; line-height: 1.3; }
.bc-pr__row dt small { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; }
.bc-pr__row dd { padding: 8px 10px; flex: 1; font-weight: 600; }
.bc-price__budget { font-size: 14px; margin-bottom: 14px; }
.bc-price__budget b { color: var(--green); font-size: 18px; font-weight: 800; }
.bc-price__notes li { font-size: 12px; color: var(--muted); line-height: 1.7; padding-left: 1em; text-indent: -1em; }

/* other stores swiper */
.bc-other__sw { overflow: hidden; }
.bc-other__sw .swiper-slide { width: 64%; }
.bc-os a { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--hair); border-radius: 10px; padding: 26px 14px; min-height: 96px; }
.bc-os__name { font-size: 20px; font-weight: bold; color: var(--ink); line-height: 1.2; }
.bc-os__sub { font-size: 10px; color: var(--green); letter-spacing: .12em; margin-top: 6px; }

/* breadcrumb */
.bc-crumb { padding: 8px 0 40px; }
.bc-crumb ul { display: flex; flex-wrap: wrap; }
.bc-crumb li { font-size: 12px; color: var(--muted); line-height: 1.4; }
.bc-crumb li::before { content: "›"; margin: 0 6px; color: var(--muted); }
.bc-crumb li:first-child::before { display: none; }
.bc-crumb a { color: var(--green); }

/* =====================================================================
   PAGE TITLE banner (cast list)
   ===================================================================== */
.bc-ptitle { position: relative; }
.bc-ptitle__img { height: 180px; overflow: hidden; }
.bc-ptitle__img img { width: 100%; height: 100%; object-fit: cover; }
.bc-ptitle::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.bc-ptitle__tx { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; }
.bc-ptitle__tx h1 { font-size: 36px; font-weight: 700; letter-spacing: .1em; }
.bc-ptitle__tx p { font-size: 13px; margin-top: 6px; }
.bc-castlist { padding-top: 24px; }
.bc-ptitle--gv .bc-ptitle__img { height: 220px; }
.bc-ptitle--gv::after { background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.55) 100%); }

/* =====================================================================
   GROUP CAST LIST — filter bar (working JS filter)
   ===================================================================== */
.bc-filter { padding: 24px 0 8px; background: var(--gray-sec); }
.bc-filter__hd { margin-bottom: 16px; }
.bc-filter__hd h2 { font-size: 18px; font-weight: bold; display: flex; align-items: baseline; gap: 10px; }
.bc-filter__hd .en { font-size: 11px; color: var(--green); font-weight: 600; letter-spacing: .14em; }
.bc-filter__group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 12px; }
.bc-filter__label { font-size: 12px; font-weight: bold; color: var(--muted); flex: 0 0 auto; width: 100%; }
.bc-filter__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bc-filter__chip { font-size: 13px; line-height: 1; border: 1px solid #c4c4c4; border-radius: 100px; padding: 9px 16px; background: #fff; color: var(--ink); transition: background .2s, border-color .2s, color .2s; }
.bc-filter__chip.is-on { background: #eef8f3; border-color: var(--green); color: var(--green); font-weight: bold; }
.bc-castlist__empty { text-align: center; color: var(--muted); font-size: 14px; padding: 48px 0; }

/* =====================================================================
   GROUP GRAVURE PAGE — large editorial 2-up (distinct from cast list)
   ===================================================================== */
.bc-gvpage { padding: 24px 0 40px; }
.bc-gvpage__in { max-width: 1240px; margin: 0 auto; padding-inline: 16px; }
.bc-gvpage__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.bc-gvp { position: relative; }
.bc-gvp__lnk { display: block; position: relative; }
.bc-gvp__img { display: block; overflow: hidden; aspect-ratio: 4 / 5; }
.bc-gvp__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .6s ease; }
.bc-gvp__lnk:hover .bc-gvp__img img { transform: scale(1.04); }
.bc-gvp__lnk::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,0) 42%); pointer-events: none; }
.bc-gvp__txt { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; color: #fff; display: flex; flex-direction: column; gap: 8px; }
.bc-gvp__store { align-self: flex-start; font-size: 11px; font-weight: bold; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.5); border-radius: 100px; padding: 4px 12px; line-height: 1.2; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.bc-gvp__name { font-size: 24px; font-weight: bold; line-height: 1.15; }
.bc-gvp__name i { display: block; font-style: normal; font-size: 11px; font-weight: 400; letter-spacing: .1em; color: rgba(255,255,255,.85); margin-top: 6px; }

/* =====================================================================
   CAST DETAIL
   ===================================================================== */
/* hero gallery — main swiper + thumbs over a blurred full-width same-photo backdrop */
.bc-cast-img { position: relative; overflow: hidden; }
.bc-cast-img__bg { position: absolute; inset: 0; z-index: 1; }
.bc-cast-img__bg img { width: 100%; height: 100%; object-fit: cover; }
.bc-cast-img::after { content: ""; position: absolute; inset: 0; z-index: 2; background: rgba(0,0,0,.2); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.bc-cast-img__inner { position: relative; z-index: 3; }
.bc-cast-img__gallery { position: relative; }
.bc-cast-img__main { overflow: hidden; }
.bc-cast-img__main .swiper-slide { display: flex; align-items: center; justify-content: center; }
.bc-cast-img__main img { display: block; width: 100%; height: auto; object-fit: contain; }
.bc-cast-img__prev, .bc-cast-img__next { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; z-index: 5; border-radius: 50%; background: rgba(255,255,255,.9); box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.bc-cast-img__prev::before, .bc-cast-img__next::before { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-top: 1.6px solid var(--ink); border-right: 1.6px solid var(--ink); }
.bc-cast-img__prev { left: 10px; }
.bc-cast-img__prev::before { transform: translate(-30%,-50%) rotate(-135deg); }
.bc-cast-img__next { right: 10px; }
.bc-cast-img__next::before { transform: translate(-70%,-50%) rotate(45deg); }
.bc-cast-img__thumbs { overflow: hidden; margin-top: 6px; padding: 0 10px; }
.bc-cast-img__thumbs .swiper-slide { width: 18vw; max-width: 84px; cursor: pointer; opacity: .55; border: 2px solid transparent; transition: opacity .2s, border-color .2s; }
.bc-cast-img__thumbs .swiper-slide-thumb-active { opacity: 1; border-color: #fff; }
.bc-cast-img__thumbs img { display: block; width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.bc-cast-img__count { position: absolute; left: 12px; bottom: 12px; z-index: 4; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .12em; background: rgba(0,0,0,.4); border-radius: 100px; padding: 5px 14px; }
.bc-cast-img.is-single .bc-cast-img__count { /* keep readable even with single photo */ }

/* hashtags (.list-tag) */
.list-tag { display: flex; flex-wrap: wrap; margin: 0 0 22px; }
.list-tag li { font-size: 12px; font-weight: bold; margin: 0 4px 4px 0; }
.list-tag span { display: block; border-radius: 4px; background: rgba(0,0,0,.04); padding: 2px 8px; color: var(--ink); }

/* 推しコメント */
.bc-comment { margin-bottom: 32px; }
.bc-comment__h { font-size: 16px; font-weight: bold; margin-bottom: 14px; display: flex; align-items: baseline; gap: 8px; }
.bc-comment__num { font-size: 14px; color: var(--muted); font-weight: 700; }
.bc-comment__num::before { content: ""; }
.bc-comment__empty { font-size: 13px; color: var(--muted); background: var(--gray-sec); border-radius: 8px; padding: 20px 16px; text-align: center; margin-bottom: 16px; }
.bc-comment__form { display: flex; flex-direction: column; gap: 12px; }
.bc-comment__field { display: block; }
.bc-comment__field span { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.bc-comment__field input, .bc-comment__field textarea { width: 100%; background: #fff; border: 1px solid var(--c4, #c4c4c4); border-radius: 10px; padding: 10px 14px; font: inherit; color: var(--ink); }
.bc-comment__field textarea { border-radius: 12px; resize: vertical; }
.bc-comment__field input:focus, .bc-comment__field textarea:focus { outline: none; border-color: var(--green); }
.bc-comment__send { align-self: flex-start; width: 100%; max-width: 200px; }

/* main info block */
.bc-cast-main { padding-top: 24px; }
.bc-cast-main__cols { display: block; }
.bc-cast-main__info { display: block; }
.bc-cast-main__name { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.bc-cast-main__name h1 { font-size: 30px; font-weight: bold; line-height: 1.2; }
.bc-cast-main__name h1 .en { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .08em; margin-left: .5em; }
.bc-cast-main__age { font-size: 14px; color: var(--muted); margin-left: .1em; }
.bc-cast-main__group { font-size: 12px; font-weight: bold; color: var(--green); border: 1px solid var(--green); border-radius: 100px; padding: 3px 14px; line-height: 1.3; }
.bc-cast-main__ig { width: 30px; height: 30px; color: var(--green); display: inline-flex; }
.bc-cast-main__ig svg { width: 100%; height: 100%; }
.bc-cast-main__intro { font-size: 14px; line-height: 1.8; color: var(--ink); margin-bottom: 22px; }
.bc-cast-main__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.bc-cast-main__cta .bc-btn { width: 100%; font-size: 15px; padding: 1.05em; }
.bc-cast-main__stats { display: block; }
.bc-cast-main__data { border-top: 1px solid var(--hair); }
.bc-cast-main__row { display: flex; padding: 14px 0; border-bottom: 1px solid var(--hair); font-size: 14px; }
.bc-cast-main__row dt { width: 90px; flex: 0 0 auto; color: var(--muted); }
.bc-cast-main__row dd { flex: 1; color: var(--val); }

/* other cast carousel */
.bc-cast-other { padding-bottom: 8px; }
.bc-cast-other__sw { overflow: hidden; padding-inline: 16px; }
.bc-cast-other__sw .swiper-slide { width: 46%; }
.bc-cast-other__sw .bc-cc { width: 100%; margin: 0; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.bc-foot { background: var(--foot-bg); color: #fff; padding: 32px 16px; }
.bc-foot__inner { max-width: 1184px; margin: 0 auto; }
.bc-foot__brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; }
.bc-foot__brand .bc-mark { color: #fff; }
.bc-foot__brand .bc-word b { color: #fff; font-size: 18px; }
.bc-foot__brand .bc-word i { color: var(--muted2); }
.bc-foot__cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.bc-foot__card { position: relative; display: flex; align-items: center; justify-content: space-between; border-radius: 8px; padding: 26px 18px; min-height: 96px; overflow: hidden; background-color: #2a2a31; background-size: cover; background-position: center; }
.bc-foot__card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.38) 100%); z-index: 0; }
.bc-foot__card-tx, .bc-foot__card-arw { position: relative; z-index: 1; }
.bc-foot__card-tx b { display: block; font-size: 16px; font-weight: 700; color: #fff; }
.bc-foot__card-tx i { display: block; font-style: normal; font-size: 12px; color: rgba(255,255,255,.85); margin-top: 3px; }
.bc-foot__card-arw { width: 34px; height: 34px; color: #fff; flex: 0 0 auto; }
.bc-foot__card-arw svg { width: 100%; height: 100%; }
.bc-foot__cols { display: none; }
.bc-foot__bottom { display: none; }
.bc-foot__cr { font-size: 10px; color: #fff; text-align: center; margin-top: 24px; line-height: 1.8; }
.bc-foot__cr span { color: var(--muted2); display: block; margin-top: 4px; }

/* =====================================================================
   WOW fade-in
   ===================================================================== */
.wow { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.wow.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .wow { opacity: 1 !important; transform: none !important; transition: none !important; }
  .bc-go, .bc-head { transition: none; }
}

/* =====================================================================
   ===============  DESKTOP LAYER  (min-width:1024px)  =================
   ===================================================================== */
@media (min-width: 1024px) {
  body { font-size: 15px; }
  a { transition: opacity .2s; }
  a:hover { opacity: .8; }

  .bc-inner1145 { padding-inline: 40px; }
  .bc-mark-wrap { width: 32px; height: 32px; }

  .bc-btn { font-size: 14px; }
  .bc-btn--lg { font-size: 18px; max-width: 278px; }
  .bc-sec { padding: 56px 0; }

  .bc-hd { margin-bottom: 32px; }
  .bc-hl02 { font-size: 32px; }
  .bc-hl02 .en { font-size: 13px; margin-top: 8px; }
  .bc-hl01 { font-size: 32px; }
  .bc-hl01 .en { font-size: 13px; margin-top: 8px; }

  /* header */
  .bc-head__inner { padding: 18px 40px; }
  .bc-word b { font-size: 20px; }
  .bc-word i { font-size: 10px; }
  .bc-head__nav { display: flex; align-items: center; gap: 32px; }
  .bc-head__nav > a { font-size: 16px; font-weight: bold; color: var(--ink); }
  .bc-burger { display: none; }
  .bc-drawer, .bc-scrim { display: none; }

  /* KV split-screen */
  .bc-kv { display: flex; min-height: 760px; }
  .bc-kv__img { order: 2; width: 56vw; max-width: 820px; flex: 0 0 56vw; min-height: 760px; }
  .bc-kv__img img { height: 100%; object-position: center; }
  /* crisp, premium hero (NO frost) — gentle vignette + a hairline seam against the white text column */
  .bc-kv__img::after {
    background:
      linear-gradient(90deg, rgba(0,0,0,.05) 0, rgba(0,0,0,0) 6%),
      linear-gradient(180deg, rgba(0,0,0,0) 56%, rgba(0,0,0,.24) 100%);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .bc-kv__img::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; z-index: 2; background: linear-gradient(180deg, rgba(176,148,49,0) 0%, rgba(176,148,49,.5) 50%, rgba(176,148,49,0) 100%); }
  .bc-kv__txt { order: 1; position: static; flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 0 0 12vw; background: #fff; }
  .bc-kv__logo { margin-bottom: 50px; }
  .bc-kv__logo .bc-mark { color: var(--green); }
  .bc-kv__logo .bc-mark-wrap { width: 44px; height: 44px; }
  .bc-kv__brand { color: var(--ink); }
  .bc-kv__brand b { font-size: 40px; }
  .bc-kv__brand i { font-size: 26px; color: var(--muted2); font-weight: 300; font-family: var(--en2); margin-top: 12px; letter-spacing: .02em; }
  .bc-kv__nav { margin-top: 0; }
  .bc-kv__nav a { margin-bottom: 18px; }
  .bc-kv__nav a b { color: var(--green); font-size: 40px; line-height: 60px; border-bottom: 1px solid var(--green); padding-bottom: 10px; }
  .bc-kv__sub { display: block; column-count: 2; column-gap: 40px; margin-top: 32px; max-width: 420px; }
  .bc-kv__sub a { display: inline-block; width: 100%; font-size: 14px; font-weight: bold; color: var(--green); margin-bottom: 12px; }
  .bc-kv__sns { display: block; margin-top: 14px; }
  .bc-kv__sns li { margin-bottom: 8px; }
  .bc-kv__sns a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: bold; color: var(--green); }
  .bc-kv__sns svg { width: 22px; height: 22px; }

  /* lead */
  .bc-lead { padding: 70px 40px; }
  .bc-lead__h1 { font-size: 40px; }
  .bc-badges { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; }
  .bc-badge { width: 32%; margin-bottom: 0; }
  .bc-badge__l, .bc-badge__r { width: 44px; height: 96px; }
  .bc-crown { width: 44px; height: 26px; }
  .bc-badge__cap { font-size: 13px; }
  .bc-badge__main { font-size: 36px; }
  .bc-badge__jp { font-size: 15px; }

  /* cast grid 4-col */
  .bc-cc { width: 23%; margin: 0 2.6% 24px 0; }
  .bc-cc:nth-of-type(3n) { margin-right: 2.6%; }
  .bc-cc:nth-of-type(4n) { margin-right: 0; }
  .bc-cc__over { display: none; }
  .bc-cc__txt { padding: 12px 6px 0; }
  .bc-cc__name { display: flex; align-items: baseline; gap: 6px; font-size: 16px; font-weight: bold; color: var(--ink); }
  .bc-cc__name i { font-size: 10px; color: var(--muted); font-style: normal; }
  .bc-cc__store { font-size: 12px; margin-top: 4px; }

  /* popular cast — gray inside inner */
  .bc-cast { background: none; padding: 56px 0; }
  .bc-cast__in { background: var(--gray-sec); padding: 48px 40px; max-width: 1184px; }

  /* gravure — 2-up grid */
  .bc-gravure__in { padding-inline: 40px; }
  .bc-gravure__grid { display: flex; flex-wrap: wrap; }
  .bc-gv { width: 49%; margin: 0 2% 2% 0; }
  .bc-gv:nth-of-type(2n) { margin-right: 0; }
  .bc-gv__img { aspect-ratio: 3 / 4; }
  .bc-gv__txt { padding: 24px; }
  .bc-gv__name { font-size: 24px; }
  .bc-gv__name i { font-size: 12px; margin-top: 6px; }
  .bc-gv__store { font-size: 12px; padding: 5px 14px; }

  /* stores band */
  .bc-stores { padding: 0 0 56px; }
  .bc-stores__band { padding: 70px 40px 190px; }
  .bc-stores__h { font-size: 48px; }
  .bc-stores__h .en { font-size: 14px; }
  .bc-stores__sw { margin-top: -120px; padding: 0 40px; max-width: 1280px; margin-inline: auto; }
  .bc-stores__sw .swiper-slide { width: 360px; }
  .bc-st__card { padding: 30px; }
  .bc-st__name { font-size: 28px; }
  .bc-st__addr { font-size: 14px; }

  /* recruit */
  .bc-recruit__in { padding-inline: 40px; }
  .bc-recruit__catch { font-size: 20px; }
  .bc-recruit__nums div { flex: 1; padding: 28px 20px; }
  .bc-recruit__nums b { font-size: 34px; }
  .bc-recruit__nums span { font-size: 13px; }

  /* banners */
  .bc-bnr__in { padding-inline: 40px; }
  .bc-bnr__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .bc-bnr__grid a { min-height: 120px; padding: 24px; }
  .bc-bnr__grid .en { font-size: 18px; }
  .bc-bnr__grid i { font-size: 13px; }

  /* store page */
  .bc-loc-main { padding-top: 152px; margin-bottom: 48px; }
  .bc-loc-logo { padding: 0 40px; max-width: 1145px; margin: 0 auto 64px; }
  .bc-loc-word { font-size: 64px; }
  .bc-loc-word__sub { font-size: 13px; }
  .bc-loc-lead { font-size: 16px; max-width: 620px; }
  .bc-loc-logo__map { width: 64px; height: 64px; }
  .bc-loc-photos { width: 991px; margin: 0 auto; }
  .bc-loc-sw .swiper-slide { width: 720px; padding: 0 8px; box-sizing: border-box; }
  .bc-loc-sw img { aspect-ratio: 16 / 9; }
  .bc-loc-prev, .bc-loc-next { width: 64px; height: 64px; background: rgba(255,255,255,.9); }
  .bc-loc-prev { left: -20px; }
  .bc-loc-next { right: -20px; }

  /* info layout */
  .bc-info__layout { display: flex; align-items: flex-start; gap: 24px; }
  .bc-info__layout .bc-hd { width: 300px; flex: 0 0 auto; margin-bottom: 0; }
  .bc-info__body { flex: 1; }
  .bc-info__row { font-size: 16px; padding: 16px 0; }
  .bc-info__row dt { width: 200px; color: var(--val); }
  .bc-info__row dd { color: var(--val); }
  .bc-info__map { margin-top: 28px; aspect-ratio: 16 / 7; }

  /* price layout */
  .bc-price__layout { display: flex; align-items: flex-start; gap: 24px; }
  .bc-price__layout .bc-hd { width: 300px; flex: 0 0 auto; margin-bottom: 0; }
  .bc-price__body { flex: 1; }
  .bc-pr { display: block; border: 0; margin-bottom: 24px; }
  .bc-pr__row { width: 100%; display: flex; border: 0; border-bottom: 1px solid var(--hair); padding: 14px 0; font-size: 16px; align-items: baseline; }
  .bc-pr__row dt { background: none; width: 200px; padding: 0; }
  .bc-pr__row dt small { font-size: 12px; }
  .bc-pr__row dd { padding: 0; text-align: right; color: var(--val); font-weight: 700; }
  .bc-price__budget { font-size: 16px; }
  .bc-price__budget b { font-size: 22px; }
  .bc-price__notes li { font-size: 13px; }

  /* other stores */
  .bc-other__sw .swiper-slide { width: 300px; }
  .bc-os a { padding: 36px 20px; min-height: 120px; }
  .bc-os__name { font-size: 28px; }

  /* breadcrumb */
  .bc-crumb { padding: 16px 0 60px; }

  /* page title */
  .bc-ptitle__img { height: 280px; }
  .bc-ptitle__tx h1 { font-size: 48px; }
  .bc-ptitle__tx p { font-size: 15px; margin-top: 10px; }
  .bc-castlist { padding-top: 48px; }
  .bc-ptitle--gv .bc-ptitle__img { height: 340px; }

  /* group cast filter */
  .bc-filter { padding: 40px 0 16px; }
  .bc-filter__hd h2 { font-size: 24px; }
  .bc-filter__hd .en { font-size: 13px; }
  .bc-filter__group { gap: 10px; margin-bottom: 16px; }
  .bc-filter__label { width: auto; margin-right: 6px; }
  .bc-filter__chip { font-size: 14px; padding: 10px 18px; }
  .bc-filter__chip:hover { opacity: 1; border-color: var(--green); }

  /* gravure page — 2-up large */
  .bc-gvpage { padding: 48px 0 80px; }
  .bc-gvpage__in { padding-inline: 40px; }
  .bc-gvpage__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bc-gvp__img { aspect-ratio: 3 / 4; }
  .bc-gvp__txt { padding: 32px; }
  .bc-gvp__store { font-size: 12px; padding: 5px 14px; }
  .bc-gvp__name { font-size: 34px; }
  .bc-gvp__name i { font-size: 13px; margin-top: 8px; }

  /* cast detail — gallery over blurred backdrop */
  .bc-cast-img__inner { padding: 104px 0 24px; }
  .bc-cast-img__bg { height: 774px; }
  .bc-cast-img__gallery { max-width: 1145px; margin: 0 auto; }
  .bc-cast-img__main .swiper-slide { height: 520px; }
  .bc-cast-img__main img { width: auto; max-width: 100%; height: 520px; }
  .bc-cast-img__prev, .bc-cast-img__next { width: 56px; height: 56px; }
  .bc-cast-img__thumbs { margin: 16px auto 0; max-width: 1145px; padding: 0; }
  .bc-cast-img__thumbs .swiper-slide { width: 67px; max-width: 67px; }
  .bc-cast-img__count { left: 16px; bottom: 24px; z-index: 4; }

  .list-tag li { font-size: 12px; }
  .bc-comment { margin-bottom: 40px; }
  .bc-comment__h { font-size: 20px; }
  .bc-comment__send { max-width: 220px; }

  /* main info — two-column */
  .bc-cast-main { padding-top: 48px; }
  .bc-cast-main__cols { display: flex; justify-content: space-between; }
  .bc-cast-main__info { flex: 1; border-right: 1px solid var(--hair); padding-right: 40px; }
  .bc-cast-main__name { margin-bottom: 24px; }
  .bc-cast-main__name h1 { font-size: 40px; }
  .bc-cast-main__name h1 .en { font-size: 15px; }
  .bc-cast-main__age { font-size: 16px; }
  .bc-cast-main__group { font-size: 13px; padding: 4px 16px; }
  .bc-cast-main__intro { font-size: 16px; margin-bottom: 28px; }
  .bc-cast-main__cta { flex-direction: row; }
  .bc-cast-main__cta .bc-btn { max-width: 240px; }
  .bc-cast-main__stats { width: 341px; flex: 0 0 341px; margin-left: 24px; }
  .bc-cast-main__row { padding: 16px 0; font-size: 16px; }
  .bc-cast-main__row dt { width: 110px; }

  /* other cast carousel */
  .bc-cast-other { padding-bottom: 0; }
  .bc-cast-other__sw { padding-inline: 40px; max-width: 1145px; margin: 0 auto; }
  .bc-cast-other__sw .swiper-slide { width: 23%; }

  /* footer */
  .bc-foot { padding: 72px 40px 80px; }
  .bc-foot__brand { justify-content: flex-start; margin-bottom: 48px; }
  .bc-foot__brand .bc-mark-wrap { width: 40px; height: 40px; }
  .bc-foot__brand .bc-word b { font-size: 28px; }
  .bc-foot__brand .bc-word i { font-size: 16px; }
  .bc-foot__cards { flex-direction: row; gap: 16px; margin-bottom: 60px; }
  .bc-foot__card { width: 32%; padding: 40px 26px; min-height: 150px; }
  .bc-foot__card-tx b { font-size: 22px; }
  .bc-foot__card-tx i { font-size: 13px; }
  .bc-foot__card-arw { width: 40px; height: 40px; }
  .bc-foot__cols { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
  .bc-foot__col { width: 32%; }
  .bc-foot__h { font-size: 16px; font-weight: bold; border-bottom: 1px solid #fff; padding-bottom: .6em; margin-bottom: 1.2em; }
  .bc-foot__col li { margin-bottom: .8em; }
  .bc-foot__col a { color: #fff; font-size: 14px; }
  .bc-foot__col--stores ul { column-count: 2; column-gap: 16px; }
  .bc-foot__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
  .bc-foot__nav { display: flex; flex-wrap: wrap; }
  .bc-foot__nav a { color: #fff; font-size: 14px; font-weight: bold; position: relative; padding-right: 21px; margin-right: 1px; }
  .bc-foot__nav a::after { content: ""; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 1px; height: 14px; background: rgba(255,255,255,.5); }
  .bc-foot__nav a:last-child { padding-right: 0; margin-right: 0; }
  .bc-foot__nav a:last-child::after { display: none; }
  .bc-foot__sns a { width: 24px; height: 24px; color: #fff; }
  .bc-foot__cr { text-align: left; margin-top: 24px; }
  .bc-foot__cr span { display: inline; margin-top: 0; margin-left: .6em; }
}

/* wide fine-tune */
@media (min-width: 1440px) {
  .bc-kv__txt { padding-left: 9vw; }
}

/* =====================================================================
   ===============  STORE-PAGE ADDITIONS (v7)  =========================
   rich barcelona-susukino store page: KV reuses .bc-kv, plus lead text,
   CONCEPT block, and a GALLERY swiper. White/green palette throughout.
   ===================================================================== */
/* store KV brand = store name (slightly tighter than 40px group brand) */
.bc-kv--store .bc-kv__brand b { font-size: 22px; }
.bc-lead__tx { font-size: 14px; line-height: 1.9; text-align: center; max-width: 760px; margin: 16px auto 0; color: var(--ink); }

/* subtle, premium "alive" slow zoom on the store hero (reduced-motion safe) */
.bc-kv--store .bc-kv__img { overflow: hidden; }
.bc-kv--store .bc-kv__img img { animation: bcKvZoom 22s ease-in-out infinite alternate; transform-origin: center; will-change: transform; }
@keyframes bcKvZoom { from { transform: scale(1.001); } to { transform: scale(1.07); } }
@media (prefers-reduced-motion: reduce) { .bc-kv--store .bc-kv__img img { animation: none; } }

/* CONCEPT */
.bc-concept { background: var(--gray-sec); }
.bc-cnc__lead { font-size: 20px; font-weight: bold; line-height: 1.6; color: var(--green); text-align: center; margin-bottom: 18px; }
.bc-cnc__tx p { font-size: 14px; line-height: 1.95; margin-bottom: 1em; }
.bc-cnc__tx p:last-child { margin-bottom: 0; }
.bc-cnc__pics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.bc-cnc__pic { overflow: hidden; aspect-ratio: 4 / 3; }
.bc-cnc__pic img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* GALLERY swiper (store page) */
.bc-gallery__sw { overflow: hidden; padding: 4px 16px 0; }
.bc-gallery__sw .swiper-slide { width: 78%; }
.bc-gallery__sw img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: 4px; }
.bc-gallery__sw .swiper-pagination { position: static; margin-top: 14px; text-align: center; }
.bc-gallery__sw .swiper-pagination-bullet { background: var(--muted); opacity: .4; }
.bc-gallery__sw .swiper-pagination-bullet-active { background: var(--green); opacity: 1; }

@media (min-width: 1024px) {
  .bc-kv--store .bc-kv__brand b { font-size: 44px; }
  .bc-lead__tx { font-size: 16px; margin-top: 22px; }
  .bc-concept .bc-cnc { display: flex; align-items: center; gap: 48px; }
  .bc-cnc__body { flex: 1; }
  .bc-cnc__lead { font-size: 28px; text-align: left; margin-bottom: 24px; }
  .bc-cnc__tx p { font-size: 15px; }
  .bc-cnc__pics { flex: 0 0 42%; width: 42%; grid-template-columns: 1fr; gap: 16px; margin-top: 0; }
  .bc-cnc__pic { aspect-ratio: 3 / 2; }
  .bc-gallery__sw { padding: 8px 40px 0; max-width: 1240px; margin: 0 auto; }
  .bc-gallery__sw .swiper-slide { width: 48%; }
}

/* =====================================================================
   ===============  GROUP PORTAL (gp-)  ================================
   Dark premium gateway — beautylife-leh feel. Distinct from white store
   pages. Diamond logo keeps BLG identity. Mobile-first + desktop layer.
   ===================================================================== */
:root {
  --gp-bg: #0e0e10;
  --gp-bg2: #141417;
  --gp-panel: #18181c;
  --gp-line: rgba(255,255,255,.12);
  --gp-tx: #e9e7e2;
  --gp-mut: #9a978f;
  --gp-gold: #c8a951;
}
body.is-portal { background: var(--gp-bg); color: var(--gp-tx); }
.gp { display: block; }
.gp-wrap { max-width: 1184px; margin: 0 auto; padding-inline: 20px; }
.gp .bc-head { background: rgba(14,14,16,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--gp-line); }
.gp .bc-word b { color: #fff; }
.gp .bc-word i { color: var(--gp-mut); }
.gp .bc-burger span { background: var(--gp-gold); }

.gp-mark-wrap { display: inline-flex; width: 30px; height: 30px; flex: 0 0 auto; color: var(--gp-gold); }
.gp-mark-wrap .bc-mark { color: var(--gp-gold); }

/* shared portal headings */
.gp-hd { margin-bottom: 26px; }
.gp-hd--c { text-align: center; }
.gp-hl { font-size: 24px; font-weight: bold; color: #fff; line-height: 1.3; letter-spacing: .04em; }
.gp-hl .en { display: block; font-size: 11px; color: var(--gp-gold); font-weight: 600; letter-spacing: .28em; margin-top: 8px; }
.gp-hl--light { color: #fff; }
.gp-hd__sub { color: var(--gp-mut); font-size: 12px; letter-spacing: .14em; margin-top: 10px; }

/* portal buttons */
.gp-btn { display: inline-flex; align-items: center; justify-content: center; gap: .6em; border-radius: 100px; font-weight: bold; font-size: 14px; padding: 1em 2em; line-height: 1; transition: opacity .25s, background .25s, color .25s; }
.gp-btn .bc-arw { width: 24px; height: 7px; }
.gp-btn svg { width: 1.1em; height: 1.1em; }
.gp-btn--gold { background: linear-gradient(135deg, #d8bb63 0%, #b1923f 100%); color: #1a1407; }
.gp-btn--gold .bc-arw { color: #1a1407; }
.gp-btn--line { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.gp-btn--line .bc-arw { color: #fff; }
.gp-btn:hover { opacity: .88; }

/* HERO */
.gp-hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.gp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.gp-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.gp-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.5) 40%, rgba(8,8,10,.86) 100%); }
.gp-hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1184px; margin: 0 auto; padding: 0 24px; text-align: center; }
.gp-hero__logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.gp-hero__brand { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.gp-hero__brand b { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: .08em; }
.gp-hero__brand i { font-size: 10px; font-style: normal; color: var(--gp-gold); letter-spacing: .14em; margin-top: 5px; }
.gp-hero__tag { font-size: 32px; font-weight: bold; color: #fff; line-height: 1.5; letter-spacing: .04em; text-shadow: 0 2px 18px rgba(0,0,0,.5); }
.gp-hero__lead { font-size: 13px; line-height: 2; color: rgba(255,255,255,.85); margin-top: 22px; }
.gp-hero__cue { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 44px; color: var(--gp-mut); }
.gp-hero__cue .en { font-size: 10px; letter-spacing: .28em; }
.gp-hero__cue-line { width: 1px; height: 44px; background: linear-gradient(180deg, var(--gp-gold), transparent); overflow: hidden; position: relative; }
.gp-hero__cue-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gp-gold); animation: gpCue 2s ease-in-out infinite; }
@keyframes gpCue { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* NEWS */
.gp-news { background: var(--gp-bg); padding: 56px 0; border-top: 1px solid var(--gp-line); }
.gp-news__list { border-top: 1px solid var(--gp-line); }
.gp-news__empty { color: var(--gp-mut); font-size: 14px; text-align: center; padding: 40px 0; }

/* ABOUT */
.gp-about { background: var(--gp-bg2); padding: 64px 0; }
.gp-about__lead { font-size: 21px; font-weight: bold; color: #fff; text-align: center; line-height: 1.6; margin-bottom: 24px; letter-spacing: .04em; }
.gp-about__body { max-width: 760px; margin: 0 auto; }
.gp-about__body p { font-size: 14px; line-height: 2; color: rgba(255,255,255,.82); margin-bottom: 1.2em; }
.gp-about__body p:last-child { margin-bottom: 0; }
.gp-about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
.gp-about__fact { background: var(--gp-panel); border: 1px solid var(--gp-line); border-radius: 12px; padding: 22px 14px; text-align: center; }
.gp-about__fact b { display: block; font-size: 30px; font-weight: 800; color: var(--gp-gold); line-height: 1.1; }
.gp-about__fact-en { display: block; font-size: 10px; letter-spacing: .22em; color: var(--gp-mut); margin-top: 6px; }
.gp-about__fact-jp { display: block; font-size: 11px; color: rgba(255,255,255,.78); margin-top: 10px; line-height: 1.5; }

/* STORES — dark premium grid (main CTA) */
.gp-stores { background: var(--gp-bg); padding: 64px 0; }
.gp-stores__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.gp-store { display: block; position: relative; border: 1px solid var(--gp-line); border-radius: 14px; overflow: hidden; background: var(--gp-panel); transition: border-color .3s, transform .3s; }
.gp-store__img { display: block; position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.gp-store__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gp-store__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(14,14,16,.7) 100%); }
.gp-store:hover { border-color: rgba(200,169,81,.55); }
.gp-store:hover .gp-store__img img { transform: scale(1.05); }
.gp-store__body { display: block; padding: 18px 20px 20px; position: relative; }
.gp-store__meta { display: flex; align-items: center; gap: 10px; }
.gp-store__area { font-size: 11px; font-weight: bold; color: var(--gp-gold); letter-spacing: .06em; }
.gp-store__genre { font-size: 9px; color: var(--gp-mut); letter-spacing: .16em; }
.gp-store__name { display: block; font-size: 24px; font-weight: bold; color: #fff; line-height: 1.2; margin-top: 8px; letter-spacing: .02em; }
.gp-store__jp { display: block; font-size: 12px; color: var(--gp-mut); margin-top: 6px; }
.gp-store__enter { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--gp-gold); font-weight: bold; }
.gp-store__enter .en { font-size: 11px; letter-spacing: .2em; }
.gp-store__enter .bc-arw { width: 26px; height: 7px; color: var(--gp-gold); }

/* RECRUIT */
.gp-recruit { position: relative; padding: 70px 0; overflow: hidden; background: #0a0a0c; }
.gp-recruit__bg { position: absolute; inset: 0; z-index: 0; opacity: .35; }
.gp-recruit__bg img { width: 100%; height: 100%; object-fit: cover; }
.gp-recruit::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,12,.82) 0%, rgba(10,10,12,.92) 100%); }
.gp-recruit__inner { position: relative; z-index: 2; text-align: center; }
.gp-recruit__catch { font-size: 20px; font-weight: bold; color: var(--gp-gold); letter-spacing: .04em; margin-bottom: 16px; }
.gp-recruit__lead { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.gp-recruit__lead b { color: #fff; font-size: 1.3em; font-weight: 800; }
.gp-recruit__nums { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.gp-recruit__nums div { background: rgba(255,255,255,.05); border: 1px solid var(--gp-line); border-radius: 12px; padding: 20px 16px; flex: 1 1 30%; min-width: 150px; }
.gp-recruit__nums b { display: block; font-size: 24px; font-weight: 800; color: var(--gp-gold); }
.gp-recruit__nums span { display: block; font-size: 11px; color: rgba(255,255,255,.78); margin-top: 8px; }
.gp-recruit__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 24px; }
.gp-recruit__tags li { font-size: 11px; font-weight: bold; color: rgba(255,255,255,.85); background: rgba(255,255,255,.06); border: 1px solid var(--gp-line); border-radius: 100px; padding: 6px 12px; }
.gp-recruit__btns { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 32px; }
.gp-recruit__btns .gp-btn { width: 100%; max-width: 280px; }

/* CONTACT */
.gp-contact { background: var(--gp-bg2); padding: 60px 0; border-top: 1px solid var(--gp-line); }
.gp-contact__inner { text-align: center; }
.gp-contact__tx { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.82); margin-bottom: 26px; max-width: 640px; margin-inline: auto; }
.gp-contact__tel { font-size: 18px; }
.gp-contact__tel .en { font-size: 20px; letter-spacing: .04em; }
.gp-contact__sns { display: inline-flex; gap: 16px; margin-top: 24px; }
.gp-contact__sns a { width: 28px; height: 28px; display: inline-flex; }
.gp-contact__sns svg { width: 100%; height: 100%; }

/* PORTAL FOOTER */
.gp-foot { background: #08080a; color: var(--gp-tx); padding: 48px 0 40px; border-top: 1px solid var(--gp-line); }
.gp-foot__top { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.gp-foot__brand { display: flex; align-items: center; gap: 12px; }
.gp-foot__brand-tx { display: flex; flex-direction: column; line-height: 1.1; }
.gp-foot__brand-tx b { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: .06em; }
.gp-foot__brand-tx i { font-size: 10px; font-style: normal; color: var(--gp-gold); letter-spacing: .12em; margin-top: 4px; }
.gp-foot__addr p { font-size: 13px; line-height: 1.8; color: var(--gp-mut); }
.gp-foot__tel a { color: var(--gp-gold); font-weight: bold; }
.gp-foot__sns { display: inline-flex; gap: 14px; margin-top: 12px; }
.gp-foot__sns a { width: 24px; height: 24px; display: inline-flex; }
.gp-foot__sns svg { width: 100%; height: 100%; }
.gp-foot__stores { margin-bottom: 32px; }
.gp-foot__h { font-size: 13px; font-weight: bold; color: #fff; letter-spacing: .1em; padding-bottom: .8em; border-bottom: 1px solid var(--gp-line); margin-bottom: 1em; }
.gp-foot__stores ul { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.gp-foot__stores a { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 8px 0; font-size: 14px; color: var(--gp-tx); }
.gp-foot__stores a i { font-size: 10px; font-style: normal; color: var(--gp-mut); }
.gp-foot__nav { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 20px; border-top: 1px solid var(--gp-line); }
.gp-foot__nav a { font-size: 13px; font-weight: bold; color: var(--gp-tx); }
.gp-foot__cr { font-size: 10px; color: var(--gp-mut); margin-top: 24px; letter-spacing: .04em; }

@media (min-width: 1024px) {
  .gp-wrap { padding-inline: 40px; }
  .gp-hl { font-size: 36px; }
  .gp-hl .en { font-size: 13px; }
  .gp-hd { margin-bottom: 40px; }

  /* hero */
  .gp-hero { min-height: 100vh; }
  .gp-hero__brand b { font-size: 30px; }
  .gp-hero__tag { font-size: 52px; line-height: 1.5; }
  .gp-hero__lead { font-size: 15px; margin-top: 28px; }
  .gp-hero__cue { margin-top: 56px; }
  .gp-hero__cue-line { height: 60px; }

  /* news */
  .gp-news { padding: 80px 0; }

  /* about */
  .gp-about { padding: 110px 0; }
  .gp-about__lead { font-size: 30px; }
  .gp-about__body p { font-size: 16px; }
  .gp-about__facts { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
  .gp-about__fact { padding: 32px 18px; }
  .gp-about__fact b { font-size: 40px; }

  /* stores 2-col */
  .gp-stores { padding: 110px 0; }
  .gp-stores__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gp-store__body { padding: 24px 28px 26px; }
  .gp-store__name { font-size: 28px; margin-top: 10px; }

  /* recruit */
  .gp-recruit { padding: 110px 0; }
  .gp-recruit__catch { font-size: 28px; }
  .gp-recruit__lead { font-size: 16px; }
  .gp-recruit__nums div { padding: 28px 20px; }
  .gp-recruit__nums b { font-size: 32px; }
  .gp-recruit__btns { flex-direction: row; justify-content: center; }
  .gp-recruit__btns .gp-btn { width: auto; min-width: 240px; }

  /* contact */
  .gp-contact { padding: 100px 0; }
  .gp-contact__tel .en { font-size: 24px; }

  /* footer */
  .gp-foot { padding: 80px 0 48px; }
  .gp-foot__top { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 48px; margin-bottom: 56px; }
  .gp-foot__stores ul { grid-template-columns: repeat(4, 1fr); gap: 4px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .gp-hero__cue-line::after { animation: none; }
  .gp-store__img img { transition: none; }
}
