/* =========================================================
   Pixie+ — Landing Page
   コンセプト: Y2K デジタルコンパクトカメラ
   ブラッシュド・シルバー筐体 / クローム文字 / ホログラフィック箔 /
   LCD 読み出し / ベビーピンク・ブルー・緑LED の差し色 / ✦スパークル
   ========================================================= */

:root {
  /* --- シルバー / プラチナ階調 --- */
  --p0:  #fbfcfd;   /* ハイライト */
  --p1:  #eef1f4;
  --p2:  #dde1e6;
  --p3:  #c5cbd2;   /* ミッドシルバー */
  --p4:  #a3aab3;
  --steel: #6c727a; /* ダークスチール */
  --ink:   #2a2d33; /* チャコール文字 */
  --ink-soft: #5b616a;

  --screen: #0d0e12; /* 光沢ブラックスクリーン */

  /* --- 差し色 (Y2K kawaii) --- */
  --pink:      #ff9ec9;
  --pink-deep: #ff79b4;
  --pink-soft: #ffd5ea;
  --blue:      #a6d1f6;
  --blue-deep: #79b7ef;
  --blue-soft: #d8edfc;
  --led:       #9ce24a;  /* POW グリーン LED */

  --shadow-soft: 0 10px 30px rgba(70, 78, 90, 0.18);
  --shadow-pop:  0 22px 55px rgba(60, 68, 82, 0.30);
  --bevel-in: inset 0 1px 0 rgba(255,255,255,.9), inset 0 -2px 5px rgba(120,128,138,.35);

  --maxw: 1120px;
  --radius: 22px;

  --f-script: "Pinyon Script", cursive;
  --f-ui:     "Chakra Petch", -apple-system, sans-serif;            /* EN テクノ */
  --f-jp:     "Zen Maru Gothic", -apple-system, "Hiragino Maru Gothic ProN", sans-serif;
  --f-lcd:    "Share Tech Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-jp);
  color: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(130% 90% at 50% -15%, #ffffff 0%, rgba(255,255,255,0) 42%),
    radial-gradient(90% 60% at 85% 8%, rgba(214,237,252,.5) 0%, rgba(214,237,252,0) 45%),
    radial-gradient(80% 60% at 10% 92%, rgba(255,213,234,.45) 0%, rgba(255,213,234,0) 45%),
    linear-gradient(180deg, #eef1f4 0%, #d9dde2 42%, #c8ced5 68%, #e2e5e9 100%);
  background-attachment: fixed;
}
/* ブラッシュド・メタル（横方向のヘアライン） */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.05) 0 1px,
    rgba(0,0,0,.012) 1px 3px
  );
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* =========================================================
   ユーティリティ
   ========================================================= */
/* クローム（液体金属）文字 */
.chrome {
  background: linear-gradient(
    180deg,
    #ffffff 0%, #f1f3f6 16%,
    #aab1ba 47%, #7c838c 51%,
    #c4cad1 70%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.7)) drop-shadow(0 3px 5px rgba(70,78,90,.28));
}
/* ホログラフィック箔 */
.holo {
  background: linear-gradient(100deg, #ffd1e8, #e2ccff, #c7e6ff, #c8ffe0, #fff3c7, #ffd1e8);
  background-size: 320% 100%;
  animation: holo 7s linear infinite;
}
@keyframes holo { to { background-position: 320% 0; } }

/* スパークル ✦ */
.spark {
  position: absolute;
  color: var(--pink);
  font-size: 18px;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(255,158,201,.7);
  animation: twinkle 2.8s ease-in-out infinite;
  z-index: 1;
}
.spark.blue { color: var(--blue-deep); text-shadow: 0 0 8px rgba(121,183,239,.7); }
.spark.sil  { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,.9); }
@keyframes twinkle {
  0%, 100% { opacity: .35; transform: scale(.7) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.1) rotate(45deg); }
}

/* LCD チップ（ダーク読み出し） */
.lcd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-lcd);
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 6px 11px;
  border-radius: 7px;
  color: #d6dde4;
  background: linear-gradient(180deg, #15171d, #0a0b0f);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), inset 0 -2px 4px rgba(0,0,0,.6);
}
.lcd .led { width: 8px; height: 8px; border-radius: 50%; background: var(--led); box-shadow: 0 0 7px var(--led); }
.lcd--pink { color: #fff; background: linear-gradient(180deg, var(--pink), var(--pink-deep)); border-color: rgba(255,255,255,.5); box-shadow: inset 0 1px 0 rgba(255,255,255,.7); }
.lcd--blue { color: #2a4a6a; background: linear-gradient(180deg, var(--blue-soft), var(--blue)); border-color: rgba(255,255,255,.7); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }

/* =========================================================
   ボタン
   ========================================================= */
/* クローム（App Store / 主要 CTA） */
.btn-chrome {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #e6eaee 46%, #c9cfd6 54%, #f0f2f5 100%);
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: var(--bevel-in), var(--shadow-soft);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-chrome:hover { transform: translateY(-2px); box-shadow: var(--bevel-in), var(--shadow-pop); filter: brightness(1.03); }
.btn-chrome:active { transform: translateY(0); }
.btn-chrome .apple-logo { width: 26px; height: 26px; color: var(--ink); flex: none; }
.btn-store-label { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn-store-pre  { font-family: var(--f-ui); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--steel); }
.btn-store-name { font-family: var(--f-ui); font-size: 19px; font-weight: 700; }
.btn-chrome--big { padding: 18px 34px; border-radius: 20px; }
.btn-chrome--big .apple-logo { width: 32px; height: 32px; }
.btn-chrome--big .btn-store-name { font-size: 23px; }

/* Aqua ピンクピル */
.aqua-pink {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-ui); font-weight: 700; font-size: 13px; letter-spacing: .5px;
  padding: 9px 17px; border-radius: 999px;
  color: #fff; text-decoration: none;
  background: linear-gradient(180deg, #ffc6e1 0%, var(--pink) 48%, var(--pink-deep) 100%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 6px 14px rgba(255,121,180,.4);
  text-shadow: 0 1px 1px rgba(190,60,120,.4);
  transition: transform .18s, box-shadow .18s;
}
.aqua-pink:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 20px rgba(255,121,180,.5); }

/* =========================================================
   NAV — デバイスのステータスバー風
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; gap: 14px;
  padding: 11px clamp(14px, 4vw, 36px);
  background: linear-gradient(180deg, rgba(248,250,252,.85), rgba(223,228,233,.8));
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 1px 0 rgba(120,128,138,.25), 0 6px 18px rgba(90,98,110,.08);
}
.nav-time { font-family: var(--f-lcd); font-size: 13px; color: var(--ink); letter-spacing: 1px; }
.nav-logo { text-decoration: none; display: inline-flex; align-items: baseline; gap: 2px; }
.nav-logo .wm { font-family: var(--f-script); font-size: 30px; line-height: 1; color: var(--ink); padding: 0 2px; }
.nav-logo .plus { font-family: var(--f-ui); font-weight: 700; font-size: 17px; color: var(--pink-deep); }
.nav-links { display: flex; gap: 20px; margin-left: auto; }
.nav-links a {
  font-family: var(--f-ui); font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; color: var(--steel);
  transition: color .18s;
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-sysicons { display: inline-flex; align-items: center; gap: 9px; color: var(--steel); }
.nav-sysicons svg { width: 18px; height: 14px; display: block; }
.nav-sysicons .batt { width: 24px; }

/* =========================================================
   セクション共通
   ========================================================= */
.section { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(54px, 9vw, 110px) clamp(16px, 4vw, 40px); }
.section-head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-ui); font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--steel);
}
.eyebrow .led { width: 8px; height: 8px; border-radius: 50%; background: var(--led); box-shadow: 0 0 8px var(--led); }
.title {
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(26px, 4.6vw, 46px); line-height: 1.28; letter-spacing: -.5px;
  margin-top: 12px;
}
.sub { margin-top: 14px; color: var(--ink-soft); font-size: clamp(14px, 1.7vw, 16px); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(36px, 6vw, 76px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(26px, 5vw, 60px); align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-ui); font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--steel);
  padding: 7px 15px; border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #e7ebef);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--bevel-in);
  margin-bottom: 22px;
}
.hero-eyebrow .led { width: 9px; height: 9px; border-radius: 50%; background: var(--led); box-shadow: 0 0 8px var(--led); }
.hero-title {
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(40px, 7.4vw, 76px); line-height: 1.08; letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero-title .em { font-family: var(--f-script); font-weight: 400; font-size: 1.12em; }
.hero-sub { font-size: clamp(15px, 1.8vw, 17px); color: var(--ink-soft); margin-bottom: 26px; max-width: 30em; }

.hero-readout { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }

.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta-note { font-family: var(--f-ui); font-size: 12px; letter-spacing: .5px; color: var(--steel); }

/* HERO アート: 実機スクショ + クローム影 + 装飾 */
.hero-art { position: relative; display: grid; place-items: center; min-height: 420px; }
.hero-art .halo {
  position: absolute; width: 86%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(120deg, #ffd1e8, #d7c7ff, #c7e6ff, #c8ffe0, #fff3c7, #ffd1e8);
  background-size: 320% 100%;
  animation: holo 7s linear infinite;
  filter: blur(48px); opacity: .55; z-index: 0;
}
.shot-frame {
  position: relative; z-index: 2;
  width: min(300px, 80%);
  border-radius: 30px;
  padding: 7px;
  background: linear-gradient(160deg, #ffffff, #d4d9df 50%, #b7bdc5);
  box-shadow: var(--shadow-pop), inset 0 1px 0 rgba(255,255,255,.9);
  transform: rotate(-2.5deg);
}
.shot-frame img { width: 100%; border-radius: 24px; display: block; }
.hero-sticker {
  position: absolute; z-index: 3;
  font-family: var(--f-ui); font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 12px;
}
.hero-sticker--rec {
  top: 6%; left: -2%;
  background: linear-gradient(180deg, var(--pink), var(--pink-deep)); color:#fff;
  box-shadow: 0 8px 18px rgba(255,121,180,.45), inset 0 1px 0 rgba(255,255,255,.7);
  transform: rotate(-8deg);
}
.hero-sticker--rec .dot { display:inline-block; width:8px; height:8px; border-radius:50%; background:#fff; margin-right:6px; vertical-align: middle; animation: blink 1.4s steps(1) infinite; }
@keyframes blink { 50% { opacity: .2; } }
.hero-sticker--date {
  bottom: 7%; right: -3%;
  font-family: var(--f-lcd); letter-spacing: 1px;
  background: linear-gradient(180deg, #15171d, #0a0b0f); color: var(--led);
  box-shadow: 0 8px 18px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
  transform: rotate(5deg);
}

/* =========================================================
   CONCEPT — 光沢スクリーン
   ========================================================= */
.concept { text-align: center; }
.screen-panel {
  position: relative;
  max-width: 880px; margin: 0 auto;
  padding: clamp(34px, 5vw, 60px) clamp(22px, 5vw, 60px);
  border-radius: 28px;
  background:
    radial-gradient(130% 100% at 30% 0%, #23262e 0%, #0d0e12 70%);
  border: 7px solid;
  border-image: linear-gradient(160deg, #fdfdfe, #c0c6cd 50%, #8c929a) 1;
  box-shadow: var(--shadow-pop), inset 0 2px 14px rgba(0,0,0,.6);
  color: #e9edf1;
  overflow: hidden;
}
.screen-panel::after { /* スクリーンの光沢 */
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(255,255,255,.10) 0%, transparent 40%);
  pointer-events:none;
}
.screen-panel .eyebrow { color: var(--pink); }
.screen-panel .eyebrow .led { background: var(--led); }
.screen-panel .title { color: #fff; }
.screen-panel .title .chrome { filter: none; }
.screen-panel .sub { color: rgba(233,237,241,.72); max-width: 40em; margin-left:auto; margin-right:auto; }
.concept-tags { display:flex; flex-wrap:wrap; justify-content:center; gap:9px; margin-top:26px; }

/* =========================================================
   FEATURES — デバイスボタン風カード
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 20px; }
.feature {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eef1f4 55%, #dfe3e8 100%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--bevel-in), var(--shadow-soft);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--bevel-in), var(--shadow-pop); }
.feature-btn {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 24px;
  background: linear-gradient(180deg, #ffffff, #dde2e7);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--bevel-in);
  margin-bottom: 16px;
}
.feature-kicker { font-family: var(--f-ui); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--pink-deep); }
.feature h3 { font-size: 18px; font-weight: 700; margin: 3px 0 9px; }
.feature p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }

/* =========================================================
   FILTER — ダークスクリーン帯
   ========================================================= */
.filterband {
  position: relative; z-index: 1;
  background: radial-gradient(120% 90% at 50% 0%, #20232b 0%, #0a0b0f 75%);
  color: #e9edf1;
  border-top: 3px solid rgba(255,255,255,.12);
  border-bottom: 3px solid rgba(0,0,0,.3);
}
.filterband-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(54px, 8vw, 100px) clamp(16px, 4vw, 40px); }
.filterband .eyebrow { color: var(--blue); }
.filterband .title { color: #fff; }
.filterband .sub { color: rgba(233,237,241,.66); }
.chip-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-top: 34px; }
.chip {
  font-family: var(--f-lcd); font-size: 14px; letter-spacing: .5px;
  padding: 10px 17px; border-radius: 9px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.16);
  color: #dfe5eb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.chip .d { color: var(--blue); margin-right: 7px; }
.chip--jp { font-family: var(--f-jp); font-weight: 700; letter-spacing: 0; background: linear-gradient(180deg, var(--pink), var(--pink-deep)); color:#fff; border-color: rgba(255,255,255,.4); }
.chip-note { margin-top: 26px; text-align: center; font-family: var(--f-ui); font-size: 11px; letter-spacing: .5px; color: rgba(233,237,241,.5); }

/* =========================================================
   GALLERY — 実機スクショ コラージュ
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 34px); align-items: start; }
.shotcard { position: relative; }
.shotcard .frame {
  border-radius: 26px; padding: 6px;
  background: linear-gradient(160deg, #ffffff, #d4d9df 55%, #b7bdc5);
  box-shadow: var(--shadow-pop), inset 0 1px 0 rgba(255,255,255,.9);
}
.shotcard .frame img { width: 100%; border-radius: 20px; display: block; }
.shotcard--a { transform: rotate(-3deg); margin-top: 18px; }
.shotcard--b { transform: rotate(1.5deg); z-index: 2; }
.shotcard--c { transform: rotate(3deg); margin-top: 26px; }
.shotcard .cap {
  display: inline-flex; align-items: center; gap: 7px;
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  font-family: var(--f-ui); font-weight: 700; font-size: 12px; letter-spacing: 1px;
  padding: 7px 15px; border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #e7ebef);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--bevel-in), var(--shadow-soft);
  color: var(--ink); white-space: nowrap;
}
.shotcard .cap .led { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-deep); }

/* =========================================================
   PRIVACY — メモリーカード風
   ========================================================= */
.memcard {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #e9edf1);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--bevel-in), var(--shadow-pop);
  overflow: hidden;
}
.memcard-tab {
  flex: 0 0 210px;
  position: relative;
  background: linear-gradient(160deg, #c8ced5, #9aa1aa);
  display: grid; place-content: center; gap: 8px; justify-items: center;
  padding: 36px;
  text-align: center;
}
.memcard-tab::before { /* SDカードの切り欠き */
  content:""; position:absolute; top:0; right:0;
  border-top: 26px solid var(--p1);
  border-left: 26px solid transparent;
}
.memcard-tab .icon { font-size: 34px; filter: drop-shadow(0 2px 3px rgba(80,88,98,.4)); }
.memcard-tab .lbl { font-family: var(--f-ui); font-weight: 700; font-size: 15px; letter-spacing: 2px; color: #fff; text-shadow: 0 1px 2px rgba(80,88,98,.5); }
.memcard-tab .gb  { font-family: var(--f-lcd); font-size: 11px; color: rgba(255,255,255,.85); letter-spacing: 1px; }
.memcard-body { flex: 1 1 360px; padding: clamp(26px, 4vw, 40px); }
.memcard-body h2 { font-size: clamp(19px, 2.6vw, 25px); font-weight: 700; margin-bottom: 18px; }
.memcard-points { list-style: none; display: grid; gap: 12px; }
.memcard-points li { font-size: 14.5px; padding-left: 28px; position: relative; color: var(--ink-soft); }
.memcard-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #5fae22; font-weight: 900;
  text-shadow: 0 0 6px rgba(156,226,74,.5);
}
.memcard-points strong { color: var(--ink); }
.memcard-foot { margin-top: 20px; font-size: 13.5px; color: var(--ink-soft); }
.memcard-foot a { color: var(--pink-deep); font-weight: 700; text-decoration: none; }
.memcard-foot a:hover { text-decoration: underline; }

/* =========================================================
   DOWNLOAD CTA
   ========================================================= */
.download { position: relative; z-index: 1; text-align: center; }
.download-inner {
  max-width: 760px; margin: 0 auto;
  padding: clamp(46px, 7vw, 80px) clamp(24px, 5vw, 56px);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #eaedf0 50%, #d6dbe0 100%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--bevel-in), var(--shadow-pop);
  position: relative; overflow: hidden;
}
.download-inner .holobar {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.download-title { font-family: var(--f-jp); font-weight: 700; font-size: clamp(26px, 4.4vw, 42px); line-height: 1.3; margin-bottom: 14px; }
.download-sub { font-size: clamp(14px, 1.7vw, 17px); color: var(--ink-soft); margin-bottom: 30px; }
.download-platform { margin-top: 16px; font-family: var(--f-ui); font-size: 12px; letter-spacing: .5px; color: var(--steel); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, #3a3e45, #24272c);
  color: rgba(233,237,241,.78);
  padding: clamp(42px, 6vw, 66px) clamp(16px, 4vw, 40px) 28px;
}
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-wm { font-family: var(--f-script); font-size: 38px; line-height: 1; color: #fff; }
.footer-wm .plus { font-family: var(--f-ui); font-weight: 700; font-size: 20px; color: var(--pink); }
.footer-tag { font-size: 13px; opacity: .68; max-width: 290px; }
.footer h3 { font-family: var(--f-ui); font-size: 12px; letter-spacing: 2px; color: #fff; margin-bottom: 14px; }
.footer-nav ul { list-style: none; display: grid; gap: 9px; }
.footer-nav a { text-decoration: none; font-size: 14px; opacity: .82; transition: opacity .18s, color .18s; }
.footer-nav a:hover { opacity: 1; color: var(--pink); }
.footer-company p { font-size: 13px; opacity: .74; margin-bottom: 8px; }
.footer-company a { color: var(--pink); text-decoration: none; }
.copyright {
  max-width: var(--maxw); margin: 36px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--f-ui); font-size: 11px; letter-spacing: 1px; opacity: .5; text-align: center;
}

/* =========================================================
   法務ページ (terms / privacy)
   ========================================================= */
.legal-page {
  position: relative; z-index: 1;
  max-width: 800px; margin: 28px auto; padding: clamp(30px, 5vw, 56px) clamp(22px, 5vw, 48px) 64px;
  background: linear-gradient(180deg, #ffffff, #f1f3f6);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  box-shadow: var(--bevel-in), var(--shadow-soft);
}
.legal-page h1 { font-family: var(--f-jp); font-size: clamp(26px, 4vw, 36px); font-weight: 700; margin-bottom: 6px; }
.legal-page .updated {
  font-family: var(--f-lcd); font-size: 12px; letter-spacing: 1px; color: var(--steel);
  margin-bottom: 30px; padding-bottom: 18px;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--pink), var(--blue)) 1;
}
.legal-page h2 { font-size: 18px; font-weight: 700; margin: 30px 0 10px; color: var(--ink); position: relative; padding-left: 14px; }
.legal-page h2::before { content:""; position:absolute; left:0; top:.35em; width:5px; height:1em; border-radius:3px; background: linear-gradient(180deg, var(--pink), var(--pink-deep)); }
.legal-page p { font-size: 15px; color: var(--ink); line-height: 1.95; }
.legal-page a { color: var(--pink-deep); }
.legal-back {
  display: inline-block; margin-top: 44px;
  font-family: var(--f-ui); font-weight: 700; font-size: 13px; letter-spacing: 1px;
  color: var(--pink-deep); text-decoration: none;
}
.legal-back:hover { text-decoration: underline; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; gap: 30px; }
  .shotcard--a, .shotcard--b, .shotcard--c { transform: none; margin-top: 0; }
  .memcard-tab { flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) { .nav-time, .nav-sysicons { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, .holo, .spark, .hero-art .halo, .hero-sticker--rec .dot { animation: none !important; transition: none !important; }
}
