/* きょうのゴミ / Today's Trash LP — クールで静かなトーン（トンマナ: シンプルかつ洗練） */
:root {
  --bg: #F2F5F7;
  --bg-deep: #E7EBEF;
  --card: #FFFFFF;
  --ink: #18232E;
  --muted: #5F6E7C;
  --hairline: #DDE4EA;
  --accent: #3D4A5C;
  --em: #B3402E;
  --t-burn: #B3402E; --t-plastic: #A87A1D; --t-cans: #2E7D8A; --t-paper: #82644C; --t-recycle: #3A7A57;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.num { font-variant-numeric: tabular-nums; }

/* ヘッダー */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; color: var(--ink); text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang { font-size: 13px; color: var(--muted); text-decoration: none; }
.lang:hover { color: var(--ink); }
.cta-pill {
  display: inline-block; background: var(--accent); color: #fff;
  text-decoration: none; font-weight: 800; font-size: 14px;
  padding: 10px 22px; border-radius: 999px;
}
.cta-pill:hover { background: #2C3744; }
.cta-pill .short { display: none; }
@media (max-width: 520px) {
  .cta-pill .full { display: none; }
  .cta-pill .short { display: inline; }
  .brand { font-size: 13px; gap: 7px; }
  .brand img { width: 28px; height: 28px; }
  .lang { font-size: 12px; }
  .cta-pill { font-size: 12px; padding: 8px 14px; }
}

/* ヒーロー */
.hero { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%); overflow: hidden; }
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center;
  padding-top: 64px; padding-bottom: 8px;
}
@media (max-width: 820px) { .hero .wrap { grid-template-columns: 1fr; padding-top: 44px; } }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .04em;
  color: var(--accent); border: 1.5px solid var(--accent);
  border-radius: 999px; padding: 3px 14px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 900; line-height: 1.5; text-wrap: balance;
}
.hero h1 em, h2 em { font-style: normal; color: var(--em); }
.hero .lede { margin-top: 18px; color: var(--muted); font-size: 15px; max-width: 32em; }
.hero .lede strong { color: var(--ink); }
.hero-cta { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.store-badge {
  display: inline-block; background: var(--accent); color: #fff;
  text-decoration: none; font-weight: 800; font-size: 17px;
  padding: 16px 34px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(30, 45, 65, .25);
}
.store-badge:hover { background: #2C3744; }
.hero-cta small { color: var(--muted); font-size: 13px; }
.review-note { margin-top: 12px; font-size: 13px; color: var(--muted); }
.hero-phone { text-align: center; align-self: end; }
.hero-phone img {
  width: min(300px, 74%); height: auto; display: block; margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 30, 45, .25);
  -webkit-mask-image: linear-gradient(180deg, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 84%, transparent 100%);
}

/* 共通セクション */
section { padding: 72px 0; }
.sec-label { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--accent); margin-bottom: 10px; }
h2 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 900; line-height: 1.55; text-wrap: balance; }
.section-lede { margin-top: 12px; color: var(--muted); font-size: 15px; max-width: 40em; }
.section-lede strong { color: var(--ink); }

/* 3つの否定 */
.creed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
@media (max-width: 720px) { .creed { grid-template-columns: 1fr; } }
.creed-card { background: var(--card); border: 1px solid var(--hairline); border-radius: 18px; padding: 24px; }
.creed-card .no { font-size: 13px; font-weight: 800; color: var(--muted); text-decoration: line-through; }
.creed-card h3 { font-size: 17px; font-weight: 900; margin-top: 4px; }
.creed-card p { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* 表示面カード */
.surfaces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
@media (max-width: 780px) { .surfaces { grid-template-columns: 1fr; } }
.surface { background: var(--card); border: 1px solid var(--hairline); border-radius: 18px; padding: 22px; }
.surface h3 { font-size: 15px; font-weight: 800; }
.surface h3 .tag { font-size: 10px; font-weight: 800; color: var(--em); border: 1px solid var(--em); border-radius: 999px; padding: 1px 9px; margin-left: 7px; vertical-align: 2px; }
.surface p { font-size: 13px; color: var(--muted); margin-top: 6px; min-height: 3.4em; }
.surface .demo { border-radius: 16px; margin-top: 14px; padding: 16px; color: #fff; }
.demo.d-lock { background: linear-gradient(196deg, #16233B, #3A2E44); text-align: center; }
.demo.d-lock .dl-date { font-size: 11px; font-weight: 700; opacity: .85; }
.demo.d-lock .dl-inline { font-size: 12.5px; font-weight: 800; color: #FFC69B; }
.demo.d-lock .dl-clock { font-size: 44px; font-weight: 250; }
.demo.d-lock .dl-rect { margin: 10px auto 0; width: 200px; text-align: left; background: rgba(255,255,255,.16); border-radius: 14px; padding: 9px 12px; font-size: 12px; font-weight: 800; }
.demo.d-lock .dl-rect small { display: block; font-weight: 700; opacity: .75; font-size: 10.5px; }
.demo.d-home { background: var(--card); border: 1px solid var(--hairline); color: var(--ink); display: flex; flex-direction: column; min-height: 128px; }
.demo .w-label { font-size: 11px; font-weight: 800; color: var(--muted); }
.demo .w-kind { font-size: 19px; font-weight: 900; margin-top: 2px; display: flex; align-items: center; gap: 8px; }
.demo .w-kind .w-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--t-burn); flex: none; }
.demo .w-time { margin-top: auto; font-size: 12px; font-weight: 800; color: var(--muted); }
.demo.d-standby { background: #000; display: flex; align-items: center; gap: 14px; min-height: 128px; }
.demo.d-standby .sb-clock { font-size: 36px; font-weight: 300; color: #E8EEF3; }
.demo.d-standby .sb-body { border-left: 1px solid rgba(255,255,255,.25); padding-left: 14px; }
.demo.d-standby .sb-kind { font-size: 16px; font-weight: 900; color: #FFC69B; }
.demo.d-standby .sb-sub { font-size: 11px; font-weight: 700; color: #94A3B2; }

/* スワイプギャラリー */
.gallery-section { background: linear-gradient(180deg, var(--bg-deep), var(--bg)); }
.swipe { display: flex; gap: 20px; overflow-x: auto; margin: 0 -24px; padding: 36px 24px 56px; scroll-snap-type: x mandatory; }
.swipe::-webkit-scrollbar { height: 8px; }
.swipe::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 4px; }
.swipe img {
  width: 250px; height: auto; flex: none; border-radius: 18px;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(15, 30, 45, .14);
}

/* 3ステップ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 34px; }
.step { background: var(--card); border: 1px solid var(--hairline); border-radius: 18px; padding: 24px; }
.step-no {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 12px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; font-weight: 800; }
.step p { font-size: 14px; color: var(--muted); }

/* English表記 */
.english-section .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 780px) { .english-section .wrap { grid-template-columns: 1fr; } }
.english-shot img { width: min(300px, 88%); border-radius: 22px; box-shadow: 0 18px 44px rgba(15, 30, 45, .22); display: block; margin: 0 auto; }

/* 安心カード */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 34px; }
.trust-card { background: var(--card); border: 1px solid var(--hairline); border-radius: 18px; padding: 24px; }
.trust-card h3 { font-size: 15px; margin-bottom: 6px; font-weight: 800; }
.trust-card p { font-size: 13px; color: var(--muted); }

/* 締め */
.closing { text-align: center; background: linear-gradient(180deg, var(--bg), var(--bg-deep)); }
.closing h2 { font-size: clamp(26px, 4.4vw, 40px); }
.closing .store-badge { margin-top: 30px; }

/* フッター */
.site-footer { border-top: 1px solid var(--hairline); padding: 32px 0 56px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; font-size: 13px; color: var(--muted); }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--ink); }

/* 規約ページ */
.doc { max-width: 720px; margin: 0 auto; padding: 24px 24px 96px; }
.doc h1 { font-size: 26px; margin: 40px 0 8px; font-weight: 900; }
.doc .updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.doc h2 { font-size: 18px; margin: 32px 0 8px; }
.doc p, .doc li { font-size: 15px; }
.doc ul { padding-left: 22px; }
.doc a { color: var(--accent); }
