/* =========================================================================
   Smart Series — Design System v2
   黒基調 / 白文字 / くすんだ金色アクセント。
   大胆な大画像 × 大型タイポ × フルブリード・エディトリアル。
   ========================================================================= */

:root {
  /* palette — dark */
  --bg:        #0a0a0b;   /* base black */
  --bg-2:      #121214;   /* elevated panel */
  --bg-3:      #191a1d;   /* card / input */
  --bg-4:      #212226;
  --ink:       #ffffff;   /* primary text */
  --ink-soft:  #a9abb0;   /* secondary */
  --muted:     #6c6e74;   /* tertiary */
  --line:      rgba(255,255,255,.12);
  --line-2:    rgba(255,255,255,.07);

  /* sale — 割引表示専用 */
  --sale:      #e5382e;

  /* accent — muted gold */
  --gold:      #c8a24e;
  --gold-hi:   #ddba6c;   /* hover / bright */
  --gold-dim:  #9d7f3c;
  --gold-soft: rgba(200,162,78,.14);
  --gold-line: rgba(200,162,78,.42);

  /* type */
  --font-sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, system-ui, sans-serif;
  --font-en:   "Helvetica Neue", Arial, system-ui, sans-serif;

  /* metrics */
  --wrap: 1280px;
  --wrap-narrow: 900px;
  --radius: 4px;
  --header-h: 68px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* , *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0; font-family: var(--font-sans);
  color: var(--ink); background: var(--bg);
  line-height: 1.8; font-size: 16px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: #000; }

/* ---- layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 32px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(60px, 7.5vw, 116px); }
.section--tight { padding-block: clamp(44px,5.5vw,76px); }
.bleed { width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.panel { background: var(--bg-2); }
.divider { height: 1px; background: var(--line-2); border: 0; margin: 0; }

/* ---- typography scale (bold / editorial) ---- */
.eyebrow {
  font-family: var(--font-en); font-size: 11.5px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.no-rule::before { display: none; }
.h-hero    { font-size: clamp(36px, 6.6vw, 88px); line-height: 1.16; letter-spacing: -.03em; font-weight: 800; }
.h-display { font-size: clamp(28px, 4.6vw, 58px); line-height: 1.18; letter-spacing: -.02em; font-weight: 800; }
.h-section { font-size: clamp(23px, 3.4vw, 40px); letter-spacing: -.015em; font-weight: 800; }
.h-sub     { font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -.01em; font-weight: 700; }
.lead { font-size: clamp(15px, 1.35vw, 19px); line-height: 1.85; color: var(--ink-soft); max-width: 62ch; }
.muted { color: var(--muted); }
.outline-type { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.4); }

/* ---- buttons ---- */
.btn {
  --bg: var(--gold); --fg: #0a0a0b;
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--bg); color: var(--fg);
  padding: 15px 30px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { background: var(--gold-hi); transform: translateY(-2px); }
.btn--ghost { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost:hover { --bg: #fff; --fg: #0a0a0b; border-color: #fff; }
.btn--gold-ghost { --bg: transparent; --fg: var(--gold); border-color: var(--gold-line); }
.btn--gold-ghost:hover { --bg: var(--gold); --fg: #0a0a0b; }
.btn--lg { padding: 18px 40px; font-size: 16px; }
.btn[disabled] { opacity: .55; pointer-events: none; }
.link-gold { color: var(--gold); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.link-gold:hover { color: var(--gold-hi); gap: 12px; }

/* ---- badge ---- */
.badge {
  display: inline-block; font-family: var(--font-en); font-size: 10px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-line); padding: 5px 11px; border-radius: 999px;
}
.badge--solid { background: var(--gold); color: #0a0a0b; border-color: var(--gold); }
.badge--plain { color: var(--ink-soft); border-color: var(--line); }

/* =======================  HEADER (白・メーカー前面)  ======================= */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(255,255,255,.94); backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.09);
}
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 20px; width: 100%; padding-inline: clamp(22px, 2.5vw, 72px); }
.brand { margin-right: auto; display: inline-flex; align-items: center; gap: 14px; }
.brand__logo { height: 27px; width: auto; display: block; }
.brand__series { font-family: var(--font-en); font-weight: 900; -webkit-text-stroke: .45px currentColor; font-size: 12px; letter-spacing: .16em; color: #0e1116; padding-left: 14px; border-left: 1px solid rgba(0,0,0,.16); white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .nav__has-menu > a {
  font-size: 12.5px; font-weight: 600; letter-spacing: .05em; color: #444a54;
  padding: 8px 12px; border-radius: 6px; position: relative; transition: color .18s, background .18s;
}
.nav > a:hover, .nav .nav__has-menu > a:hover { color: #0e1116; background: rgba(0,0,0,.05); }
.nav > a::after, .nav .nav__has-menu > a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px;
  background: var(--gold-dim); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav > a:hover::after, .nav .nav__has-menu > a:hover::after { transform: scaleX(1); }
.nav__has-menu { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid rgba(0,0,0,.1); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  padding: 8px; min-width: 300px; opacity: 0; visibility: hidden; transition: all .2s var(--ease);
}
.nav__has-menu:hover .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a { display: flex; align-items: center; gap: 12px; padding: 9px 12px; border-radius: 6px; }
.nav__thumb { width: 46px; height: 46px; flex: none; background: #f4f6f8; border: 1px solid rgba(0,0,0,.08); border-radius: 8px; overflow: hidden; display: grid; place-items: center; }
.nav__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; transition: transform .25s var(--ease); }
.nav__menu a:hover .nav__thumb img { transform: scale(1.1); }
.nav__menu-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.nav__menu .nav__menu-all { border-bottom: 1px solid rgba(0,0,0,.08); border-radius: 6px 6px 0 0; margin-bottom: 4px; }
.nav__menu .nav__menu-all span { color: var(--gold-dim); }
.nav__menu a:hover { background: #f4f6f8; }
.nav__menu a span { font-weight: 700; color: #0e1116; font-size: 14px; }
.nav__menu a em { font-style: normal; font-size: 11.5px; color: #6b7280; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-link { position: relative; display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(0,0,0,.16); color: #0e1116; transition: all .18s; }
.cart-link:hover { background: #0e1116; color: #fff; border-color: #0e1116; }
.cart-link .count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; background: var(--gold); color: #0a0a0b; font-size: 10px; font-weight: 800; border-radius: 999px; display: none; place-items: center; }
.cart-link .count.show { display: grid; }
.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid rgba(0,0,0,.16); border-radius: 999px; background: transparent; color: #0e1116; align-items: center; justify-content: center; }

/* =======================  FOOTER  ======================= */
.site-footer { background: #050506; color: var(--ink-soft); padding-block: 80px 44px; border-top: 1px solid var(--line-2); }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px 24px; }
.footer-grid h4 { color: #fff; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid li { margin-bottom: 11px; font-size: 14px; }
.footer-logo { height: 26px; width: auto; display: block; }
.footer-series { display: block; margin-top: 12px; font-family: var(--font-en); font-weight: 900; -webkit-text-stroke: .45px currentColor; font-size: 13px; letter-spacing: .2em; color: var(--gold); }
.footer-brand p { margin-top: 14px; font-size: 13px; max-width: 36ch; color: var(--muted); }
.footer-social { margin-top: 48px; display: flex; align-items: center; gap: 14px; }
.footer-social__label { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.footer-social a { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); transition: all .18s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0b; transform: translateY(-2px); }
.footer-bottom { margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; gap: 16px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }

/* =======================  SHOWCASE (bold editorial series rows)  ======================= */
.showcase { position: relative; min-height: clamp(460px, 68vh, 720px); display: flex; align-items: flex-end; overflow: hidden; border-top: 1px solid var(--line-2); }
.showcase__bg { position: absolute; inset: 0; z-index: 0; }
.showcase__bg img, .showcase__bg video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; transition: transform 1.2s var(--ease); }
/* 質感マスク: ノイズ + ビネット（低解像度・素人写真の粗を沈める） */
.showcase__bg::before, .feature-full__bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 95% at 62% 38%, transparent 42%, rgba(10,10,11,.52) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: auto, 160px 160px; opacity: .9; mix-blend-mode: normal;
}
/* テキスト側を暗くする横グラデ + 足元グラデ（左右で反転） */
.showcase__bg::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(10,10,11,.78) 0%, rgba(10,10,11,.35) 42%, transparent 68%),
    linear-gradient(180deg, rgba(10,10,11,.18) 0%, rgba(10,10,11,.5) 55%, rgba(10,10,11,.96) 100%);
}
.showcase--right .showcase__bg::after {
  background:
    linear-gradient(270deg, rgba(10,10,11,.78) 0%, rgba(10,10,11,.35) 42%, transparent 68%),
    linear-gradient(180deg, rgba(10,10,11,.18) 0%, rgba(10,10,11,.5) 55%, rgba(10,10,11,.96) 100%);
}
.showcase:hover .showcase__bg img, .showcase:hover .showcase__bg video { transform: scale(1.16); }
.showcase__inner { position: relative; z-index: 3; width: 100%; padding-block: clamp(40px,5.5vw,72px); }
.showcase__index { font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--gold); margin-bottom: 16px; }
.showcase__title { font-size: clamp(30px, 5vw, 64px); line-height: 1.0; letter-spacing: -.025em; font-weight: 800; display: inline-block; position: relative; padding-bottom: 10px; }
.showcase__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: var(--gold); transition: width .6s var(--ease); }
.showcase:hover .showcase__title::after { width: 100%; }
.showcase--right .showcase__title::after { left: auto; right: 0; }
.showcase__sub { margin-top: 16px; max-width: 52ch; color: #d4d6da; font-size: clamp(14px,1.25vw,17px); }
.showcase__cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.showcase--right .showcase__inner { text-align: right; }
.showcase--right .showcase__sub { margin-left: auto; }
.showcase--right .showcase__cta { justify-content: flex-end; }

/* =======================  MOTION (scroll reveal)  ======================= */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--rv-delay, 0s); will-change: opacity, transform; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .showcase__bg img, .showcase__bg video { transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* =======================  MARQUEE (editorial strip)  ======================= */
.marquee { overflow: hidden; border-block: 1px solid var(--line-2); padding-block: 20px; background: var(--bg); }
.marquee__track { display: flex; gap: 64px; width: max-content; animation: marquee 36s linear infinite; }
.marquee__track span { font-family: var(--font-en); font-size: 22px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; color: transparent; -webkit-text-stroke: 1.3px rgba(255,255,255,.46); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =======================  SERIES HERO  ======================= */
.shero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-2); }
.shero__inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; padding-block: clamp(56px,8vw,120px); }
.shero__media img { width: 100%; }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 26px; letter-spacing: .02em; }
.breadcrumb a:hover { color: var(--gold); }

/* =======================  LINEUP (big tiles, not small cards)  ======================= */
.lineup { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.lineup__item { background: var(--bg); padding: 40px 28px; display: flex; flex-direction: column; gap: 16px; transition: background .3s var(--ease); position: relative; }
.lineup__item:hover { background: var(--bg-2); }
.lineup__item .m-img { aspect-ratio: 1/1; display: grid; place-items: center; background: #fff; border-radius: 3px; overflow: hidden; }
.lineup__item .m-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.lineup__item:hover .m-img img { transform: scale(1.05); }
.lineup__item .m-name { font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.lineup__item .m-desc { font-size: 13.5px; color: var(--ink-soft); flex: 1; }
.lineup__item .m-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line-2); }
.price { font-family: var(--font-en); font-weight: 800; letter-spacing: -.02em; }
.arrow { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line); transition: all .2s; color: #fff; }
.lineup__item:hover .arrow, .big-card:hover .arrow { background: var(--gold); border-color: var(--gold); color: #0a0a0b; }

/* =======================  BEST SELLERS (D2C ランキング)  ======================= */
.pop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pop-card { position: relative; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px; padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 9px; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.pop-card:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
/* No.1 は金枠 + リボン */
.pop-card.is-no1 { border-color: var(--gold-line); box-shadow: 0 0 0 1px var(--gold-line), 0 10px 34px rgba(200,162,78,.12); }
.pop-no1 { position: absolute; top: -13px; left: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: #0a0a0b; font-family: var(--font-en); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; border-radius: 999px; padding: 5px 12px; box-shadow: 0 4px 14px rgba(200,162,78,.35); }
.pop-no1 b { font-weight: 800; }
/* 大型ランク数字（メディア左上にオーバーラップ） */
.pop-rank { position: absolute; top: 2px; left: 8px; z-index: 2; font-family: var(--font-en); font-style: italic; font-weight: 800; font-size: 46px; line-height: 1; color: transparent; -webkit-text-stroke: 1.6px rgba(200,162,78,.55); }
.pop-rank.is-top { color: var(--gold); -webkit-text-stroke: 0; text-shadow: 0 4px 16px rgba(200,162,78,.35); }
.pop-media { position: relative; aspect-ratio: 1/1; background: #fff; border-radius: 8px; overflow: hidden; display: grid; place-items: center; }
.pop-media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .4s var(--ease); }
.pop-card:hover .pop-media img { transform: scale(1.07); }
.pop-name { font-weight: 800; font-size: 15.5px; line-height: 1.45; }
.pop-note { font-size: 12.5px; color: var(--ink-soft); flex: 1; }
.pop-price { font-family: var(--font-en); font-weight: 800; font-size: 21px; }
.pop-price small { font-size: 11px; color: var(--muted); font-weight: 600; margin-left: 4px; }
@media (max-width: 1000px) { .pop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pop-grid { grid-template-columns: repeat(2, 1fr); } }

/* =======================  MEDIA & VOICES (信頼担保)  ======================= */
.press-strip { display: flex; flex-wrap: wrap; gap: 12px; border-block: 1px solid var(--line-2); padding-block: 20px; }
.press-item { display: inline-flex; align-items: baseline; gap: 10px; padding: 8px 18px; border: 1px solid var(--line-2); border-radius: 999px; }
.press-name { font-family: var(--font-en); font-weight: 800; letter-spacing: .04em; color: #fff; font-size: 15px; }
.press-kind { font-size: 11px; color: var(--muted); }

/* exhibition credential */
.exhibit-note { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding: 16px 20px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px; transition: border-color .2s, transform .2s var(--ease); flex-wrap: wrap; }
.exhibit-note:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.exhibit-note__ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; background: var(--gold-soft); color: var(--gold); flex: none; }
.exhibit-note b { color: #fff; font-size: 15px; font-weight: 800; }
.exhibit-note > span:not(.exhibit-note__ico) { color: var(--ink-soft); font-size: 13.5px; }
.exhibit-note__arw { margin-left: auto; color: var(--muted); flex: none; }

.voices-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; align-items: stretch; }
.voice { display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; transition: transform .25s var(--ease), border-color .25s; }
.voice:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.voice__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.voice__tag { align-self: flex-start; font-family: var(--font-en); font-size: 10px; font-weight: 800; letter-spacing: .14em; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 999px; padding: 4px 10px; }
.voice__tag--yt { color: #ff5a5a; border-color: rgba(255,90,90,.5); }
.voice__quote { font-size: 15px; line-height: 1.7; color: #fff; font-weight: 600; flex: 1; }
.voice__src { font-size: 12.5px; color: var(--muted); }
.voice__src em { font-style: normal; color: var(--ink-soft); margin-left: 4px; }
/* video card */
.voice--video { grid-row: span 1; }
.voice__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.voice__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.voice--video:hover .voice__thumb img,
.voice--media:hover .voice__thumb img { transform: scale(1.05); }
.voice__ext { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 999px; background: rgba(10,10,11,.72); color: #fff; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background .25s; }
.voice--media:hover .voice__ext { background: var(--gold); color: #0a0a0b; }
.voice__play { position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 999px; background: rgba(255,90,90,.92); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.voice__play svg { margin-left: 2px; }
@media (max-width: 900px) { .voices-grid { grid-template-columns: 1fr; } }

/* =======================  EVENTS (visual thumbnail)  ======================= */
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ecard { position: relative; display: block; overflow: hidden; border-radius: 12px; background: #000; aspect-ratio: 16 / 10; }
.ecard__media { position: absolute; inset: 0; }
.ecard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ecard:hover .ecard__media img { transform: scale(1.05); }
.ecard__grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.62) 42%, rgba(10,10,11,.12) 100%); }
.ecard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 3; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.ecard:hover::before { transform: scaleX(1); }
.ecard__date { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--font-en); font-weight: 800; font-size: 12px; letter-spacing: .06em; color: #0a0a0b; background: var(--gold); border-radius: 999px; padding: 5px 12px; }
.ecard__body { position: absolute; z-index: 2; left: clamp(18px, 2.2vw, 28px); right: clamp(18px, 2.2vw, 28px); bottom: clamp(18px, 2.2vw, 26px); }
.ecard__tag { font-family: var(--font-en); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.ecard__title { font-size: clamp(19px, 2vw, 27px); font-weight: 800; color: #fff; margin-top: 8px; line-height: 1.32; letter-spacing: -.01em; }
.ecard__sub { font-size: 13px; color: var(--ink-soft); margin-top: 9px; line-height: 1.6; }
.ecard__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #d4d6da; }
.ecard__cta svg { transition: transform .25s var(--ease); }
.ecard:hover .ecard__cta { color: var(--gold); }
.ecard:hover .ecard__cta svg { transform: translate(3px, -3px); }
@media (max-width: 760px) { .event-grid { grid-template-columns: 1fr; } .ecard { aspect-ratio: 4 / 5; } .ecard__grad { background: linear-gradient(0deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.55) 48%, rgba(10,10,11,.08) 100%); } }

/* =======================  MAKER DIRECT (visual storytelling)  ======================= */
.mdirect { position: relative; overflow: hidden; border-block: 1px solid var(--line-2); }
.mdirect__bg { position: absolute; inset: 0; }
.mdirect__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 0% center; filter: brightness(.9); }
.mdirect__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.82) 42%, rgba(10,10,11,.42) 72%, rgba(10,10,11,.30) 100%),
    linear-gradient(0deg, rgba(10,10,11,.88) 0%, transparent 34%);
}
.mdirect__inner { position: relative; z-index: 1; padding-block: clamp(80px, 11vw, 160px); }
.mdirect__title { font-weight: 800; font-size: clamp(52px, 8.5vw, 128px); line-height: .94; letter-spacing: -.02em; color: #fff; }
.mdirect__lead { margin-top: 26px; font-size: clamp(15px, 1.5vw, 18px); line-height: 2.1; color: var(--ink-soft); }
.mdirect__lead b { color: #fff; }
/* value chain */
.mdchain { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: clamp(30px, 3.6vw, 48px); padding: 0; list-style: none; }
.mdchain__step {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 700; color: #eceded;
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 10px 18px;
  background: rgba(10,10,11,.5); backdrop-filter: blur(3px);
}
.mdchain__step i { font-style: normal; font-family: var(--font-en); font-size: 10px; font-weight: 800; letter-spacing: .12em; color: var(--gold); }
.mdchain__step:not(:first-child)::before {
  content: ""; width: 22px; height: 1px; background: var(--gold-line);
  margin-right: 10px; margin-left: -19px; flex: none;
}
.mdchain__you { color: #0a0a0b; background: var(--gold); border-color: var(--gold); font-weight: 800; }
/* foot: stats + brand */
.mdirect__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  margin-top: clamp(36px, 4.6vw, 64px);
  padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.6vw, 34px);
  background: rgba(10,10,11,.66); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
}
.mdirect__brand { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.mdirect__by { font-family: var(--font-en); font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.mdirect__brand img { width: clamp(180px, 17vw, 236px); height: auto; display: block; }
@media (max-width: 760px) {
  .mdirect__bg img { object-position: 12% center; }
  .mdchain { gap: 8px; }
  .mdchain__step { padding: 8px 14px; font-size: 12.5px; }
  .mdchain__step:not(:first-child)::before { width: 12px; margin-left: -14px; margin-right: 6px; }
  .mdirect__foot { flex-direction: column; align-items: flex-start; }
  .mdirect__brand { align-items: flex-start; }
}

/* =======================  NEWS LIST  ======================= */
.news-list li { border-bottom: 1px solid var(--line-2); }
.news-list a { display: flex; align-items: baseline; gap: 16px; padding: 18px 4px; transition: background .2s; flex-wrap: wrap; }
.news-list a:hover { background: var(--bg-2); }
.news-list time { font-family: var(--font-en); font-weight: 700; font-size: 13px; color: var(--muted); min-width: 82px; }
.news-list .n-tag { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
.news-list .n-tag--media { color: #ff5a5a; border-color: rgba(255,90,90,.5); }
.news-list .n-tag--event { color: #6ea0ff; border-color: rgba(110,160,255,.5); }
.news-list .n-new { font-size: 9px; font-weight: 800; letter-spacing: .1em; color: #0a0a0b; background: var(--gold); border-radius: 999px; padding: 3px 8px; }
.news-list .n-title { font-weight: 600; font-size: 15px; flex: 1; min-width: 240px; }
.news-list a:hover .n-title { color: var(--gold-hi); }
.news-list .n-ext { margin-left: auto; color: var(--muted); font-size: 13px; transition: transform .25s var(--ease), color .25s; }
.news-list a:hover .n-ext { transform: translate(3px, -3px); color: var(--gold); }

/* NEW ribbon on product media */
.new-flag { position: absolute; top: 10px; right: 10px; z-index: 2; font-family: var(--font-en); font-size: 10px; font-weight: 800; letter-spacing: .1em; color: #0a0a0b; background: var(--gold); border-radius: 999px; padding: 3px 9px; }

/* =======================  SERIES INDEX (2カラム フルブリード / 英語主体)  ======================= */
.series-head { margin-bottom: clamp(30px, 4vw, 56px); }
.series-head .h-display { font-family: var(--font-en); letter-spacing: -.02em; }
.series-grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line-2); }
.stile { position: relative; display: block; overflow: hidden; background: #000; aspect-ratio: 16 / 11; }
.stile--feature { grid-column: 1 / 3; aspect-ratio: 24 / 9; }
.stile__media { position: absolute; inset: 0; }
.stile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.stile:hover .stile__media img { transform: scale(1.06); }
/* 画像をクリアに見せるため、文字域(下部)だけの最小グラデーションに絞る */
.stile__grad { position: absolute; inset: 0; background:
  linear-gradient(0deg, rgba(10,10,11,.6) 0%, rgba(10,10,11,.3) 20%, transparent 38%); }
.stile::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 3; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.stile:hover::before { transform: scaleX(1); }
.stile__body { position: absolute; z-index: 2; left: clamp(24px, 2.6vw, 52px); right: clamp(24px, 2.6vw, 52px); bottom: clamp(24px, 2.6vw, 44px); }
.stile__no { font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--gold); }
.stile__en { font-family: var(--font-en); font-weight: 800; letter-spacing: -.015em; color: #fff; margin-top: 10px; line-height: 1.02; }
.stile--feature .stile__en { font-size: clamp(30px, 4.4vw, 62px); }
.stile:not(.stile--feature) .stile__en { font-size: clamp(21px, 2.5vw, 34px); }
.stile__ja { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 9px; letter-spacing: .02em; }
.stile__cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; font-family: var(--font-en); font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #d4d6da; }
.stile__cta svg { transition: transform .25s var(--ease); }
.stile:hover .stile__cta { color: var(--gold); }
.stile:hover .stile__cta svg { transform: translateX(5px); }
/* 画面縮小に応じてタイルを段階的に低く（背景画像を小さく）する */
@media (max-width: 1100px) {
  .stile { aspect-ratio: 16 / 10; }
  .stile--feature { aspect-ratio: 21 / 9; }
  .stile:not(.stile--feature) .stile__en { font-size: clamp(19px, 2.2vw, 28px); }
}
@media (max-width: 760px) {
  .series-grid2 { grid-template-columns: 1fr; }
  .stile, .stile--feature { grid-column: auto; aspect-ratio: 16 / 9; }
  .stile--feature .stile__en { font-size: 26px; }
  .stile:not(.stile--feature) .stile__en { font-size: 22px; }
  .stile__ja { font-size: 12px; margin-top: 6px; }
  .stile__cta { margin-top: 10px; }
}
@media (max-width: 480px) {
  .stile, .stile--feature { aspect-ratio: 16 / 8.5; }
  .stile__body { left: 18px; right: 18px; bottom: 16px; }
}

/* =======================  CINEMATIC VIDEO WALL (メイン1/サブ2/サムネ1)  ======================= */
.cine-wall {
  display: grid; gap: 10px; height: clamp(500px, 78vh, 860px);
  padding-inline: clamp(10px, 1.2vw, 20px);
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.cine-main { grid-column: 1 / 3; grid-row: 1 / 3; }  /* メイン: 大 (2x2) */
.cine-a    { grid-column: 3 / 5; grid-row: 1; }       /* サブ1: 横長 (2x1) */
.cine-b    { grid-column: 3;     grid-row: 2; }       /* サブ2/サムネ (1x1) */
.cine-c    { grid-column: 4;     grid-row: 2; }       /* サムネ (1x1) */

.cine-tile { position: relative; overflow: hidden; border-radius: 6px; background: #000; display: block; }
.cine-tile video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cine-tile:hover video { transform: scale(1.05); }
.cine-tile__grad { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(10,10,11,.82) 0%, transparent 55%); }
.cine-tile::after { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: 6px; box-shadow: inset 0 0 0 1px transparent; transition: box-shadow .25s; pointer-events: none; }
.cine-tile:hover::after { box-shadow: inset 0 0 0 2px var(--gold); }
.cine-tile__cap { position: absolute; z-index: 3; left: 18px; bottom: 16px; right: 18px; }
.cine-tile__tag { display: block; font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.cine-tile__name { display: block; font-weight: 800; color: #fff; letter-spacing: -.01em; line-height: 1.25; }
.cine-main .cine-tile__cap { left: clamp(20px, 2vw, 36px); bottom: clamp(20px, 2.4vw, 40px); }
.cine-main .cine-tile__tag { font-size: 12px; }
.cine-main .cine-tile__name { font-size: clamp(22px, 2.6vw, 38px); }
.cine-a .cine-tile__name { font-size: clamp(17px, 1.8vw, 24px); }
.cine-b .cine-tile__name, .cine-c .cine-tile__name { font-size: 14px; }

@media (max-width: 760px) {
  .cine-wall { height: auto; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, minmax(150px, 26vh)); }
  .cine-main { grid-column: 1 / 3; grid-row: 1; }
  .cine-a    { grid-column: 1 / 3; grid-row: 2; }
  .cine-b    { grid-column: 1; grid-row: 3; }
  .cine-c    { grid-column: 2; grid-row: 3; }
  .cine-main .cine-tile__name { font-size: 22px; }
}

/* =======================  VIDEO LIGHTBOX  ======================= */
.vmodal { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 24px; }
.vmodal.open { display: grid; }
.vmodal__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(4px); }
.vmodal__box { position: relative; z-index: 1; width: min(960px, 100%); }
.vmodal__frame { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.vmodal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal__close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; font-size: 15px; }
.vmodal__close:hover { background: #fff; color: #0a0a0b; }

/* generic big card (cross-sell) */
.big-card { background: var(--bg-2); border: 1px solid var(--line-2); display: flex; flex-direction: column; transition: border-color .3s, transform .3s var(--ease); }
.big-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.big-card .bc-media { aspect-ratio: 4/3; background: #fff; display: grid; place-items: center; overflow: hidden; }
.big-card .bc-media img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.big-card .bc-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.grid { display: grid; gap: 1px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }

/* =======================  COMPARISON  ======================= */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line-2); }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; font-size: 14px; }
.compare th, .compare td { padding: 18px 18px; text-align: center; border-bottom: 1px solid var(--line-2); }
.compare thead th { position: sticky; top: 0; background: var(--bg-2); z-index: 1; }
.compare tbody th { text-align: left; font-weight: 600; color: var(--ink-soft); background: var(--bg-2); white-space: nowrap; }
.compare .model-name { font-weight: 800; font-size: 17px; color: #fff; }
.compare .p { font-family: var(--font-en); font-weight: 800; color: #fff; }
.compare .yes { color: var(--gold); font-weight: 800; }
.compare .no { color: #4a4b50; }
.compare tr:hover td, .compare tr:hover th { background: var(--bg-3); }
.compare .col-hi { background: var(--gold-soft) !important; }

/* =======================  PDP  ======================= */
.pdp-hero { padding-block: clamp(28px,4vw,56px); }
.pdp-hero__inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: start; }
.gallery__main { aspect-ratio: 1/1; background: #fff; border: 1px solid var(--line-2); display: grid; place-items: center; overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.gallery__thumbs button { aspect-ratio: 1/1; background: #fff; border: 1px solid var(--line-2); overflow: hidden; padding: 0; transition: border-color .18s, transform .18s; }
.gallery__thumbs button:hover { transform: translateY(-2px); }
.gallery__thumbs button.is-active { border-color: var(--gold); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.buy { position: sticky; top: calc(var(--header-h) + 24px); }
.buy .badge { margin-bottom: 20px; }
.buy h1 { font-size: clamp(32px,4vw,52px); letter-spacing: -.02em; font-weight: 800; }
.buy__pitch { color: var(--ink-soft); margin-top: 18px; font-size: 16px; line-height: 1.85; }
.buy__price { display: flex; align-items: baseline; gap: 10px; margin: 28px 0; }
.buy__price .price { font-size: 40px; color: #fff; }
.buy__price .tax { font-size: 13px; color: var(--muted); }
.buy__row { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty input { width: 46px; text-align: center; border: 0; background: transparent; color: #fff; font-weight: 700; font-size: 15px; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty button { width: 42px; height: 46px; background: transparent; border: 0; font-size: 18px; color: var(--ink-soft); }
.qty button:hover { background: var(--bg-3); color: #fff; }
.btn--cart { width: 100%; justify-content: center; padding: 18px; font-size: 16px; }
.btn--cart[data-state="done"] { background: #3a7d44; color: #fff; }
.btn--cart[data-state="error"] { background: #a13636; color: #fff; }
.buy__meta { margin-top: 22px; display: grid; gap: 12px; }
.buy__meta li { display: flex; gap: 11px; align-items: center; font-size: 13.5px; color: var(--ink-soft); }
.buy__meta svg { color: var(--gold); flex: none; }
.buy__trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.buy__trust a { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); padding: 9px 12px; border: 1px solid var(--line-2); border-radius: 8px; transition: border-color .2s, color .2s; }
.buy__trust a:hover { color: #fff; border-color: var(--gold-line); }
.buy__trust svg { color: var(--gold); flex: none; }
.spin { display: inline-block; width: 15px; height: 15px; border: 2px solid rgba(0,0,0,.3); border-top-color: #0a0a0b; border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* full-bleed feature (image edge-to-edge with overlaid big text) */
.feature-full { position: relative; min-height: clamp(460px, 72vh, 760px); display: flex; align-items: center; overflow: hidden; }
.feature-full__bg { position: absolute; inset: 0; z-index: 0; }
.feature-full__bg img, .feature-full__bg video { width: 100%; height: 100%; object-fit: cover; }
.feature-full__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,11,.92) 0%, rgba(10,10,11,.7) 40%, rgba(10,10,11,.15) 100%); }
.feature-full--right .feature-full__bg::after { background: linear-gradient(270deg, rgba(10,10,11,.92) 0%, rgba(10,10,11,.7) 40%, rgba(10,10,11,.15) 100%); }
.feature-full__inner { position: relative; z-index: 1; width: 100%; }
.feature-full--right .feature-full__inner { text-align: right; }
.feature-full__box { max-width: 560px; }
.feature-full--right .feature-full__box { margin-left: auto; }

/* editorial split (big image + big text, alternating) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev .split__media { order: 2; }
.split__media img { width: 100%; border: 1px solid var(--line-2); }
.split + .split { margin-top: clamp(56px,9vw,120px); }

/* stat rows / big numbers */
.stat-row { display: flex; gap: 44px; flex-wrap: wrap; }
.stat b { display: block; font-family: var(--font-en); font-size: clamp(26px,3.2vw,42px); font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1; }
.stat b .u { font-size: .4em; color: var(--gold); font-weight: 700; }
.stat > span { font-size: 12.5px; color: var(--muted); margin-top: 8px; display: block; letter-spacing: .04em; }

/* spec table */
.spec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 56px; }
.spec-row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-2); font-size: 14.5px; }
.spec-row dt { color: var(--muted); }
.spec-row dd { margin: 0; font-weight: 600; text-align: right; color: #fff; }

/* feature blocks (3-up) */
.feature { padding: 34px 30px; border: 1px solid var(--line-2); background: var(--bg-2); }
.feature .ico { width: 46px; height: 46px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; margin-bottom: 20px; }
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { font-size: 14px; color: var(--ink-soft); }

/* =======================  MOBILE STICKY BUY BAR (PDP)  ======================= */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; align-items: center; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,11,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(102%); transition: transform .3s var(--ease);
}
.buybar.show { transform: none; }
.buybar__info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.buybar__name { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar__price { font-family: var(--font-en); font-weight: 800; font-size: 18px; color: #fff; line-height: 1.2; }
.buybar__btn.btn--cart { width: auto; flex: none; padding: 13px 24px; font-size: 14px; }
@media (max-width: 760px) { .buybar { display: flex; } }

/* =======================  MOBILE SLIDER (Best Sellers)  ======================= */
@media (max-width: 760px) {
  .pop-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 12px; padding-bottom: 10px;
    margin-inline: -22px; padding-inline: 22px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .pop-grid::-webkit-scrollbar { display: none; }
  .pop-grid .pop-card { flex: 0 0 76%; scroll-snap-align: start; }
}

/* =======================  MSRP / % OFF  ======================= */
.price-line { display: inline-flex; align-items: center; gap: 10px; }
.msrp { font-family: var(--font-en); font-size: 13px; color: var(--muted); text-decoration: line-through; font-weight: 600; white-space: nowrap; }
.msrp .msrp__label { font-family: var(--font-sans); font-size: 11px; text-decoration: none; display: inline-block; margin-right: 4px; }
.off-badge { font-family: var(--font-en); font-size: 13px; font-weight: 800; letter-spacing: .05em; color: #fff; background: var(--sale); border-radius: 6px; padding: 5px 11px; white-space: nowrap; box-shadow: 0 3px 12px rgba(229,56,46,.35); }
.price-line--s .msrp { font-size: 11.5px; }
.price-line--s .off-badge { font-size: 11px; padding: 3px 8px; }
.buy__msrp { display: flex; align-items: center; gap: 12px; margin: 26px 0 0; }
.buy__msrp .off-badge { font-size: 15px; padding: 6px 14px; }
.buy__msrp + .buy__price { margin-top: 8px; }

/* 英語タイトル下の日本語サブ見出し */
.head-sub { margin-top: 12px; font-size: 14px; color: var(--ink-soft); letter-spacing: .03em; line-height: 1.7; }
.h-en { font-family: var(--font-en); letter-spacing: -.02em; line-height: 1.04; }

/* ---- utility ---- */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 36px; } .mt-l { margin-top: 64px; }
.maxw { max-width: 640px; } .maxw-s { max-width: 520px; }
.stack-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.center .stack-cta { justify-content: center; }

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 1000px) {
  .lineup { grid-template-columns: repeat(2,1fr); }
  .shero__inner, .pdp-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .shero__media, .pdp-hero__inner > [data-gallery] { max-width: 520px; }
  .buy { position: static; }
  .split, .split.rev .split__media { grid-template-columns: 1fr; order: 0; }
  .split__media { order: -1 !important; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap { padding-inline: 22px; }
  .nav, .header-actions .partner-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand__logo { height: 23px; }
  .brand__series { display: none; }
  .header-actions { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-row { gap: 28px; }
}
@media (max-width: 540px) { .lineup { grid-template-columns: 1fr; } }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .25s; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: var(--bg-2); padding: 30px 26px; transform: translateX(100%); transition: transform .28s var(--ease); overflow-y: auto; border-left: 1px solid var(--line); }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__panel a { display: block; padding: 14px 4px; font-weight: 600; color: #fff; border-bottom: 1px solid var(--line-2); }
.drawer__close { float: right; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #fff; }
