/* ==========================================================
   PCコレクトドットコム — Design tokens & base
   ========================================================== */
:root{
  --color-orange: #e8843c;
  --color-orange-dark: #aa5a22;
  --color-orange-bg: #fdeede;
  --color-orange-chip: #f0d9c1;
  --color-green: #3f9b6a;
  --color-green-dark: #338057;
  --color-green-bg: #e5f3ea;
  --color-green-chip: #cde8d6;
  --color-cream: #fbf4ea;
  --color-news: #b5573f;
  --color-news-bg: #fbe8e2;
  --color-news-line: #b5573f;
  --color-ink: #2a2118;
  --color-ink-soft: #5c5347;
  --color-ink-mute: #6b6153;
  --color-footer-bg: #2a2118;
  --color-footer-text: #e6ddd0;
  --color-footer-text-mute: #bcae9c;
  --color-footer-text-dim: #9c8d78;
  --font-heading: 'Zen Kaku Gothic New', sans-serif;
  --font-body: 'Noto Sans JP', system-ui, sans-serif;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --maxw: 1140px;
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  background: #fff;
  color: var(--color-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{ font-family: var(--font-heading); margin: 0; }
p{ margin: 0; }
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  cursor: pointer;
  text-align: center;
  transition: background .2s, transform .2s;
}
.btn--primary{ background: var(--color-orange); color: #fff; font-weight: 900; }
.btn--primary:hover{ background: var(--color-orange-dark); }
.btn--ghost{ background: rgba(0,0,0,.12); color: #fff; }
.btn--ghost:hover{ background: rgba(0,0,0,.2); }
.btn--nav{ background: var(--color-green); color: #fff; padding: 11px 22px; font-size: 14px; }
.btn--nav:hover{ background: #338057; }
.btn--lg{ padding: 19px 44px; font-size: 19px; box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.btn--block{ display: block; width: 100%; padding: 15px; font-size: 15.5px; }
.btn:focus-visible{ outline: 3px solid #2a2118; outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 帯は全幅・中身はコンテンツ幅(--maxw)に揃える(フッターと同じ基準) */
  width: 100%;
  max-width: calc(var(--maxw) + 48px);
  margin: 0 auto;
  padding: 14px 24px;
  background: var(--color-cream);
  position: sticky; top: 0; z-index: 100;
}
/* ヘッダーの背景帯だけを全幅にする(中身は上のmax-widthで中央寄せ) */
.site-header::before{
  content:"";
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:100vw; height:100%;
  background: var(--color-cream);
  z-index:-1;
}
.logo--header{ height: 72px; width: auto; } /* ロゴは 1500x500 の 3:1 */
.nav{
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #4a4034;
}
.nav a:hover{ color: var(--color-orange); }

/* 店舗一覧ドロップダウン */
.nav__item{ position:relative; display:flex; align-items:center; }
.nav__dropdown{
  position:absolute; top:100%; left:50%; transform:translateX(-50%);
  min-width:210px; background:#fff; border:1px solid #f0e6d8; border-radius:12px;
  box-shadow:0 14px 34px rgba(42,33,24,.14); padding:8px; margin-top:10px;
  opacity:0; visibility:hidden; transform:translateX(-50%) translateY(6px);
  transition:.16s; z-index:120;
}
/* ホバー時に出す。上部の余白でマウス移動が途切れないよう疑似要素で橋渡し */
.nav__item::after{ content:""; position:absolute; top:100%; left:0; right:0; height:14px; }
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}
.nav__dropdown a{
  display:block; padding:11px 16px; border-radius:8px; font-size:14px; font-weight:700;
  color:#4a4034; white-space:nowrap;
}
.nav__dropdown a:hover{ background:var(--color-cream); color:var(--color-orange-dark); }
.nav__dropdown-head{
  display:block; padding:8px 16px 10px; margin-bottom:4px; font-size:12px; font-weight:900;
  letter-spacing:.06em; color:var(--color-ink-mute); border-bottom:1px solid #f2ebe0;
}

/* ---------- ハンバーガーメニュー（モバイル用） ---------- */
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px; height:40px;
  background:none; border:none; cursor:pointer; padding:0; flex:none;
  appearance:none; -webkit-appearance:none;
}
.nav-toggle span{
  display:block; width:24px; height:2.5px;
  background:var(--color-ink); border-radius:2px;
  transition:.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  /* ブランドの --color-orange そのものよりごくわずかに濃くして、白文字の視認性を上げる
     （他の要素（ボタン等）で使う --color-orange 自体は変更しない） */
  background: #d77a37;
  color: #fff;
  padding: 64px 42px 96px;
  position: relative;
  overflow: hidden;
}
.hero__decor{ position: absolute; border-radius: 50%; }
.hero__decor--1{ right: -60px; top: -60px; width: 280px; height: 280px; background: rgba(255,255,255,.1); }
.hero__decor--2{ left: 40%; bottom: -60px; width: 160px; height: 160px; background: rgba(63,155,106,.35); }
.hero__grid{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 40px;
  align-items: start;
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__copy{ max-width: 600px; position: relative; z-index: 2; }
.hero__image{
  position: absolute;
  left: 30%;
  bottom: -30px;
  width: 600px;
  max-width: 54%;
  z-index: 1;
  pointer-events: none;
}
.hero__image img{ width: 100%; height: auto; display: block; }
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--color-orange-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 17px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero__copy h1{
  font-size: 60px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero__copy p{
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 440px;
}
.hero__methods{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:28px; }
.hero__method{
  background: #fff;
  color: var(--color-orange-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px; font-size: 13.5px; font-weight: 700;
}

/* ---------- Hero form card (品目・台数のみ) ---------- */
.hero__form{
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 30px 30px 34px;
  color: var(--color-ink);
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__form h2{ font-size: 19px; font-weight: 900; margin-bottom: 4px; }
.hero__form-note{ font-size: 12.5px; color: #756c5f; margin-bottom: 8px; line-height:1.7; }
.field-label{ font-size:13px; font-weight:700; color: var(--color-ink-soft); margin-bottom:-4px; }
.hero__form select{
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid #ece3d6;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-ink-soft);
  background:#fff;
}
.hero__form select:focus{ outline:none; border-color: var(--color-orange); }
.hero__form-privacy{ font-size:11.5px; color:#776e63; text-align:center; margin-top:2px; }

/* ---------- Trust cards ---------- */
.trust-cards{
  margin: -72px auto 0;
  max-width: var(--maxw);
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(42,33,24,.12);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  z-index: 5;
}
.trust-card{ display: flex; align-items: center; gap: 18px; }
.trust-card__icon{ flex: none; width: auto; height: 64px; display: block; }
.trust-card__body{ flex: 1; min-width: 0; }
.trust-card h3{ font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.trust-card p{ font-size: 14px; line-height: 1.85; color: var(--color-ink-soft); }

/* ---------- Section shared ---------- */
.section{ padding: 72px 42px; }
.section--cream{ background: var(--color-cream); }
.section__head{ text-align:center; margin-bottom: 44px; }
.section h2{ font-size: 34px; font-weight: 900; margin-bottom: 10px; }
.section-lead{ color: var(--color-ink-mute); font-size: 15px; line-height:1.9; }

/* ---------- 下層ページ共通：ページ見出し ---------- */
.page-head{ background:var(--color-cream); padding:56px 42px; text-align:center; }
.page-head h1{ font-size:38px; font-weight:900; margin-bottom:12px; }
.page-head p{ color:var(--color-ink-mute); font-size:15px; line-height:1.9; }

/* パンくず */
.breadcrumb{ max-width:var(--maxw); margin:0 auto; padding:14px 24px; font-size:12.5px; color:var(--color-ink-mute); }
.breadcrumb a{ color:var(--color-ink-mute); }
.breadcrumb a:hover{ color:var(--color-orange); }
.breadcrumb span{ margin:0 8px; color:var(--color-orange-chip); }

/* 本文コンテンツ幅 */
.prose{ max-width:860px; margin:0 auto; }
.prose h3{ font-size:23px; font-weight:900; margin:0 0 14px; }
.prose p{ font-size:15px; line-height:2; color:var(--color-ink-soft); }
.prose--wide{ max-width:var(--maxw); }

/* 文章＋画像2カラム（導入部など） */
.intro-media{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; max-width:var(--maxw); margin:0 auto; }
.intro-media .prose{ max-width:none; margin:0; }
.intro-media__img{ aspect-ratio:3/2; overflow:hidden; border-radius:var(--radius-md); box-shadow:0 6px 18px rgba(42,33,24,.08); }
.intro-media__img img{ width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:900px){
  .intro-media{ grid-template-columns:1fr; gap:24px; }
}

/* 汎用パネル */
.panel{
  background:#fff; border:1px solid #f0e6d8; border-radius:var(--radius-md);
  padding:32px 30px; box-shadow:0 6px 18px rgba(42,33,24,.06);
}
.panel--accent{ border:2px solid var(--color-orange-chip); }
.panel--green{ background:var(--color-green); color:#fff; border:none; }
.panel--green p, .panel--green li{ color:#fff; }
.panel__img{ aspect-ratio:3/2; overflow:hidden; border-radius:12px; margin-bottom:22px; }
.panel__img img{ width:100%; height:100%; object-fit:cover; display:block; }

/* 注意・補足ボックス */
.notice{
  background:var(--color-orange-bg); border-left:5px solid var(--color-orange);
  border-radius:10px; padding:20px 24px; margin-top:24px;
}
.notice strong{ display:block; font-weight:900; margin-bottom:6px; font-size:14.5px; }
.notice p{ font-size:13.5px; line-height:1.9; color:var(--color-ink-soft); }

/* 定義リスト（表のかわり） */
.deflist{ display:grid; gap:1px; background:#f0e6d8; border:1px solid #f0e6d8; border-radius:var(--radius-md); overflow:hidden; }
.deflist__row{ display:grid; grid-template-columns:240px 1fr; gap:1px; }
.deflist__key{ background:var(--color-cream); padding:18px 22px; font-weight:900; font-size:14px; }
.deflist__val{ background:#fff; padding:18px 22px; font-size:14px; line-height:1.9; color:var(--color-ink-soft); }
@media(max-width:700px){
  .deflist__row{ grid-template-columns:1fr; }
}

/* チェックリスト */
.checklist{ list-style:none; padding:0; margin:0; }
.checklist li{
  position:relative; padding-left:34px; margin-bottom:14px;
  font-size:14.5px; line-height:1.9; color:var(--color-ink-soft);
}
.checklist li::before{
  content:"✓"; position:absolute; left:0; top:1px;
  width:22px; height:22px; border-radius:50%;
  background:var(--color-green); color:#fff;
  display:grid; place-items:center; font-size:12px; font-weight:900;
}
.panel--green .checklist li{ color:#fff; }
.panel--green .checklist li::before{ background:#fff; color:var(--color-green); }

/* 品目カテゴリ */
.itemcat{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; max-width:var(--maxw); margin:0 auto; }
.itemcat__card{ background:#fff; border:1px solid #f0e6d8; border-radius:var(--radius-md); padding:30px 28px; box-shadow:0 6px 18px rgba(42,33,24,.06); }
.itemcat__head{ display:flex; align-items:center; gap:16px; margin-bottom:6px; }
.itemcat__icon{ flex:none; width:auto; height:52px; max-width:76px; object-fit:contain; }
.itemcat__card h3{ font-size:20px; font-weight:900; margin:0; }
.itemcat__card > p{ font-size:13.5px; color:var(--color-ink-mute); line-height:1.8; margin-bottom:18px; }
.itemcat__list{ display:flex; flex-wrap:wrap; gap:10px; }
.itemcat__list .chip{ font-size:13.5px; padding:10px 18px; }

/* NG品目 */
.ng-card{ background:#fff; border:2px solid #e8d5d5; border-radius:var(--radius-md); padding:26px 24px; }
.ng-card__mark{
  display:inline-block; background:#c0504d; color:#fff; font-weight:900;
  font-size:12.5px; padding:5px 14px; border-radius:var(--radius-pill); margin-bottom:12px;
}
.ng-card h3{ font-size:17px; font-weight:900; margin-bottom:8px; }
.ng-card p{ font-size:13.5px; line-height:1.8; color:var(--color-ink-mute); }
/* 有料で回収できる品目(CRT等)のカード */
.paid-card{ background:#fff; border:2px solid var(--color-orange-chip); border-radius:var(--radius-md); padding:26px 24px; }
.paid-card__mark{
  display:inline-block; background:var(--color-orange); color:#fff; font-weight:900;
  font-size:12.5px; padding:5px 14px; border-radius:var(--radius-pill); margin-bottom:12px;
}
.paid-card h3{ font-size:17px; font-weight:900; margin-bottom:8px; }
.paid-card p{ font-size:13.5px; line-height:1.8; color:var(--color-ink-mute); }
.paid-card__price{ font-weight:900; color:var(--color-orange-dark); }
.ng__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:var(--maxw); margin:0 auto; }

/* 流れ：縦積みの詳細ステップ */
.flowdetail{ max-width:900px; margin:0 auto; }
.flowdetail__item{ display:grid; grid-template-columns:96px 1fr; gap:28px; padding-bottom:44px; position:relative; }
.flowdetail__item::before{
  content:""; position:absolute; left:47px; top:80px; bottom:0;
  width:2px; background:var(--color-orange-chip);
}
.flowdetail__item:last-child{ padding-bottom:0; }
.flowdetail__item:last-child::before{ display:none; }
.flowdetail__num{
  width:96px; height:96px; border-radius:50%;
  background:var(--color-orange); color:#fff;
  display:grid; place-items:center; position:relative; z-index:2;
  box-shadow:0 8px 20px rgba(232,132,60,.3);
}
.flowdetail__num span{ font-family:var(--font-heading); font-weight:900; font-size:34px; line-height:1; }
.flowdetail__item:last-child .flowdetail__num{ background:var(--color-green); box-shadow:0 8px 20px rgba(63,155,106,.3); }
.flowdetail__body{ padding-top:8px; }
.flowdetail__body h3{ font-size:24px; font-weight:900; margin-bottom:12px; }
.flowdetail__body p{ font-size:14.5px; line-height:2; color:var(--color-ink-soft); }
.flowdetail__tag{
  display:inline-block; background:var(--color-green-bg); color:var(--color-green);
  font-size:11.5px; font-weight:900; padding:5px 12px; border-radius:6px; margin-bottom:10px;
}
@media(max-width:700px){
  .flowdetail__item{ grid-template-columns:64px 1fr; gap:18px; }
  .flowdetail__num{ width:64px; height:64px; }
  .flowdetail__num span{ font-size:24px; }
  .flowdetail__item::before{ left:31px; top:56px; }
  .flowdetail__body h3{ font-size:19px; }
}

/* 方法別タブ風の見出し */
.method-block{ max-width:var(--maxw); margin:0 auto 56px; }
.method-block:last-child{ margin-bottom:0; }
.method-block__head{
  display:flex; align-items:center; gap:16px; margin-bottom:24px;
  padding-bottom:16px; border-bottom:2px solid var(--color-orange-chip);
}
.method-block__badge{
  background:var(--color-orange); color:#fff; font-weight:900; font-size:13px;
  padding:8px 16px; border-radius:var(--radius-pill); white-space:nowrap;
}
.method-block__badge--green{ background:var(--color-green); }
.method-block__head h3{ font-size:26px; font-weight:900; }
.method-block__grid{ display:flex; gap:36px; align-items:flex-start; }
.method-block__grid > .panel{ flex:1; min-width:0; }
.method-block__img{
  flex:0 0 42%; aspect-ratio:4/3; overflow:hidden;
  border-radius:var(--radius-md); box-shadow:0 6px 18px rgba(42,33,24,.08);
}
.method-block__img img{ width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:900px){
  .method-block__grid{ flex-direction:column; }
  .method-block__img{ order:-1; flex-basis:auto; width:100%; }
}

@media(max-width:900px){
  .page-head{ padding:40px 24px; }
  .page-head h1{ font-size:28px; }
  .itemcat,.ng__grid{ grid-template-columns:1fr; }
  .panel{ padding:26px 22px; }
}

/* ---------- OKバッジ（どんなPCでもOK） ---------- */
.ok__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:var(--maxw); margin:0 auto; }
.ok-card{
  background:#fff; border:2px solid var(--color-orange-chip);
  border-radius: var(--radius-md); padding:32px 24px; text-align:center;
}
.ok-card__img{
  display:block; width:100%; max-width:180px; height:auto;
  margin:0 auto 12px;
}
.ok-card h3{ font-size:19px; font-weight:900; margin-bottom:8px; }
.ok-card p{ font-size:13.5px; line-height:1.8; color:var(--color-ink-mute); }

/* ---------- 3つの回収方法 ---------- */
.methods__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:var(--maxw); margin:0 auto; }
.method-card{
  background:#fff; border:1px solid #f0e6d8; border-radius: var(--radius-md);
  overflow:hidden; box-shadow: 0 6px 18px rgba(42,33,24,.06);
  display:flex; flex-direction:column;
}
.method-card__head{ padding:24px; color:#fff; }
.method-card__head--orange{ background: var(--color-orange); }
.method-card__head--orange-dark{ background: var(--color-orange-dark); }
.method-card__head--green{ background: var(--color-green); }
.method-card__num{ font-size:11.5px; font-weight:900; letter-spacing:.12em; opacity:.9; }
.method-card__head h3{ font-size:23px; font-weight:900; margin-top:6px; }
.method-card__body{ padding:22px 24px 26px; display:flex; flex-direction:column; flex:1; }
.method-card__tag{
  display:inline-block; font-size:11.5px; font-weight:900;
  padding:5px 12px; border-radius:6px; margin-bottom:12px;
}
.method-card__tag--orange{ background:var(--color-orange-bg); color:var(--color-orange-dark); }
.method-card__tag--green{ background:var(--color-green-bg); color:var(--color-green); }
.method-card__body p{ font-size:13.5px; line-height:1.85; color:var(--color-ink-mute); flex:1; }
.method-card__img{
  aspect-ratio:16/10; overflow:hidden;
  border-radius:var(--radius-md); margin-top:16px;
}
.method-card__img img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ---------- 流れ ---------- */
.flow__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:var(--maxw); margin:0 auto; }
.flow-step{ background:#fff; border-radius:var(--radius-md); padding:30px 22px; text-align:center; position:relative;
  border:1px solid #f0e6d8; box-shadow:0 6px 18px rgba(42,33,24,.06); }
.flow-step__num{
  width:44px; height:44px; border-radius:50%; background:var(--color-orange); color:#fff;
  display:grid; place-items:center; font-weight:900; font-size:17px; margin:0 auto 16px;
}
.flow-step:last-child .flow-step__num{ background: var(--color-green); }
.flow-step h3{ font-size:17px; font-weight:900; margin-bottom:8px; }
.flow-step p{ font-size:13px; line-height:1.75; color:var(--color-ink-mute); }
.flow-step::after{
  content:"→"; position:absolute; right:-14px; top:50%; transform:translateY(-50%);
  font-weight:900; color:var(--color-orange-chip); font-size:20px;
}
.flow__grid .flow-step:last-child::after{ display:none; }

/* ---------- データ消去 ---------- */
.data__grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:var(--maxw); margin:0 auto; }
.data-card{ border-radius:var(--radius-md); padding:34px 30px; }
.data-card--soft{ background:#fff; border:1px solid #f0e6d8; }
.data-card--strong{ background:var(--color-green); color:#fff; }
.data-card__top{ display:flex; align-items:center; gap:20px; margin-bottom:20px; }
.data-card__icon{ flex:none; width:auto; height:72px; }
.data-card__top-text{ flex:1; min-width:0; }
.data-card__top .data-card__badge{ margin-bottom:4px; }
.data-card__label{ font-size:12px; font-weight:900; letter-spacing:.1em; margin-bottom:10px; opacity:.85; }
.data-card__top .data-card__label{ margin-bottom:6px; }
.data-card h3{ font-size:23px; font-weight:900; margin-bottom:14px; line-height:1.5; }
.data-card__top h3{ margin-bottom:0; }
.highlight-marker{
  background: linear-gradient(180deg, transparent 58%, #fde68a 58%);
  padding: 0 2px;
}
.data-card ul{ margin:0; padding-left:20px; }
.data-card li{ font-size:14px; line-height:2; }
.data-card--soft li{ color:var(--color-ink-soft); }
.data-card--strong li{ color:#fff; }
.data-card--strong .data-card__label{ color:#fff; }
.data-card__badge{
  display:inline-block; background:#fff; color:var(--color-green);
  font-weight:900; font-size:12.5px; padding:6px 14px; border-radius:var(--radius-pill); margin-bottom:14px;
}
.data-card .checklist{ margin-top:18px; padding-left:0; }
.data-card--strong .checklist li{ color:#fff; }
.data-card--strong .checklist li::before{ background:#fff; color:var(--color-green); }
.data-card .notice{ margin-top:24px; }
.data-card--strong .notice{
  background:rgba(255,255,255,.14); border-left-color:#fff;
}
.data-card--strong .notice strong,
.data-card--strong .notice p{ color:#fff; }
.data-card--strong .notice p{ opacity:.9; }

.section__eyebrow{
  display:block; font-size:13px; font-weight:900; color:var(--color-green);
  letter-spacing:.06em; margin-bottom:10px;
}

/* ---------- CTA帯（リネット式に複数箇所） ---------- */
.cta-band{
  background: var(--color-cream);
  border-top:2px dashed var(--color-orange-chip);
  border-bottom:2px dashed var(--color-orange-chip);
  padding: 34px 42px; text-align:center;
}
.cta-band p{ font-weight:900; font-size:17px; margin-bottom:16px; color:var(--color-ink); }

/* ---------- 店舗 ---------- */
.stores__grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; max-width:var(--maxw); margin:0 auto; }
.store-card{
  display:block; background:#fff; border:1px solid #f0e6d8; border-radius:var(--radius-md);
  overflow:hidden; text-decoration:none; color:inherit; box-shadow:0 6px 18px rgba(42,33,24,.06);
  transition:.18s;
}
.store-card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(42,33,24,.12); }
.store-card__photo{ aspect-ratio:4/3; overflow:hidden; background:linear-gradient(135deg,var(--color-orange-bg),var(--color-green-bg)); }
.store-card__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.store-card__body{ padding:20px 14px; text-align:center; }
.store-card h3{ font-size:18px; font-weight:900; color:var(--color-orange-dark); margin-bottom:10px; }
.store-card p{ font-size:12.5px; line-height:1.8; color:var(--color-ink-mute); }

/* ---------- 実績（WordPress） ---------- */
.results__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:var(--maxw); margin:0 auto; }
.result-card{
  position:relative; display:flex; flex-direction:column;
  background:#fff; border:1px solid #f0e6d8; border-radius:var(--radius-md);
  overflow:hidden; box-shadow:0 6px 18px rgba(42,33,24,.06);
  transition:transform .2s, box-shadow .2s;
}
.result-card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(42,33,24,.12); }
.result-card__link{ display:flex; flex-direction:column; height:100%; text-decoration:none; color:inherit; }
.result-card__thumb{ aspect-ratio:3/2; width:100%; height:auto; object-fit:cover; display:block; }
.result-card__image{ aspect-ratio:3/2; display:grid; place-items:center; font-family:ui-monospace,Menlo,monospace; font-size:12px; }
.result-card__image--orange{ background: repeating-linear-gradient(45deg,var(--color-orange-bg),var(--color-orange-bg) 12px,#fbe0c8 12px,#fbe0c8 24px); color:#b57438; }
.result-card__image--green{ background: repeating-linear-gradient(45deg,var(--color-green-bg),var(--color-green-bg) 12px,#d3e9dc 12px,#d3e9dc 24px); color:var(--color-green); }
.result-card__body{ padding:22px 22px 26px; flex:1; display:flex; flex-direction:column; }
.result-card__meta{ display:flex; align-items:center; gap:8px; margin-bottom:8px; flex-wrap:wrap; }
.result-card__meta > *{ flex:none; }
.result-card__date{ display:block; font-size:12px; color:#a9926f; font-weight:700; margin-bottom:8px; }
.result-card__meta .result-card__date{ margin-bottom:0; }
.result-card__cat{
  display:inline-block; background:var(--color-green-bg); color:var(--color-green-dark);
  border-radius:var(--radius-pill); padding:3px 12px; font-size:11.5px; font-weight:900;
}
.result-card__cat.is-news{ background:var(--color-news-bg); color:var(--color-news); }
.result-card h3{ font-size:17px; font-weight:900; margin-bottom:8px; line-height:1.5; }
.result-card p{ font-size:13.5px; line-height:1.8; color:var(--color-ink-mute); }
.result-card__excerpt{ margin-top:auto; }

/* ---------- 対象品目 chips ---------- */
.items__list{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; font-weight:700; font-size:16px; max-width:var(--maxw); margin:0 auto; }
.chip{ background:#fff; border-radius:var(--radius-pill); padding:14px 26px; }
.chip--orange{ border:2px solid var(--color-orange-chip); }
.chip--green{ border:2px solid var(--color-green-chip); }

/* トップページ：品目イラストグリッド（4列×2行） */
.items__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:var(--maxw); margin:0 auto; }
.item-card{
  background:#fff; border:1px solid #f0e6d8; border-radius:var(--radius-md);
  padding:24px 14px; text-align:center; box-shadow:0 6px 18px rgba(42,33,24,.06);
}
.item-card__img{ width:auto; height:96px; max-width:100%; object-fit:contain; margin:0 auto 12px; display:block; }
.item-card span{ display:block; font-weight:700; font-size:14px; color:var(--color-ink); }

/* ---------- お客様の声 ---------- */
.voices__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:var(--maxw); margin:0 auto; }
.voice-card{ background:#fff; border:1px solid #f0e6d8; border-radius:var(--radius-md); padding:28px 26px; box-shadow:0 6px 18px rgba(42,33,24,.06); }
.voice-card__stars{ color:var(--color-orange); font-size:15px; letter-spacing:2px; margin-bottom:12px; }
.voice-card h3{ font-size:16px; font-weight:900; margin-bottom:10px; line-height:1.6; }
.voice-card p{ font-size:13.5px; line-height:1.9; color:var(--color-ink-mute); margin-bottom:14px; }
.voice-card__who{ font-size:12.5px; font-weight:700; color:#a9926f; }

/* ---------- 最終CTA ---------- */
.cta{ background: var(--color-green); color:#fff; padding:70px 42px; text-align:center; }
.cta h2{ font-size:36px; font-weight:900; margin-bottom:14px; }
.cta p{ font-size:15px; opacity:.92; margin-bottom:30px; line-height:1.9; }
.cta--illustrated{ position:relative; overflow:visible; }
.cta__content{ position:relative; z-index:2; max-width:600px; margin:0 auto; }
.cta__decor{ position:absolute; pointer-events:none; z-index:1; }
.cta__decor--left{ left:8%; top:-55px; width:auto; height:420px; }
.cta__decor--right{ right:8%; bottom:0; width:320px; height:auto; }
@media (max-width:1000px){ .cta__decor{ display:none; } }
.cta__tel{ margin-top:24px; font-size:28px; font-weight:900; font-family:var(--font-heading); }
.cta__tel small{ display:block; font-size:13px; font-weight:400; opacity:.85; margin-top:6px; }

/* ---------- 送料の案内ボックス ---------- */
.ship{ margin-top:24px; border-radius:var(--radius-md); overflow:hidden;
  border:2px solid var(--color-green-chip); background:var(--color-green-bg); }
.ship__title{ display:flex; align-items:center; gap:8px; font-weight:900; font-size:14.5px;
  color:var(--color-green-dark); padding:14px 20px; background:rgba(63,155,106,.12); }
.ship__rows{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--color-green-chip); }
.ship__row{ background:#fff; padding:20px 22px; }
.ship__qty{ display:inline-block; font-weight:900; font-size:13px; color:#fff;
  padding:4px 12px; border-radius:var(--radius-pill); margin-bottom:10px; }
.ship__qty--free{ background:var(--color-green); }
.ship__qty--paid{ background:var(--color-orange); }
.ship__lead{ font-weight:900; font-size:15px; color:var(--color-ink); margin-bottom:6px; }
.ship__desc{ font-size:13px; line-height:1.85; color:var(--color-ink-mute); }
@media(max-width:640px){
  .ship__rows{ grid-template-columns:1fr; }
}

/* ---------- 会社概要テーブル ---------- */
.company{ max-width:860px; margin:0 auto; }
.company-table{ width:100%; border-collapse:collapse; background:#fff;
  border:1px solid #f0e6d8; border-radius:var(--radius-md); overflow:hidden;
  box-shadow:0 6px 18px rgba(42,33,24,.06); }
.company-table th, .company-table td{ text-align:left; padding:20px 26px; vertical-align:top;
  border-bottom:1px solid #f2ebe0; font-size:15px; line-height:1.9; }
.company-table tr:last-child th, .company-table tr:last-child td{ border-bottom:none; }
.company-table th{ width:34%; background:var(--color-cream); font-weight:900;
  color:var(--color-ink); white-space:nowrap; }
.company-table td{ color:var(--color-ink-soft); }
.company-table td .zip{ color:var(--color-ink-mute); font-size:13.5px; display:block; margin-bottom:2px; }
.company-cta{ text-align:center; margin-top:44px; }
@media(max-width:640px){
  .company-table th, .company-table td{ display:block; width:auto; padding:14px 20px; }
  .company-table th{ border-bottom:none; padding-bottom:2px; white-space:normal; }
  .company-table td{ padding-top:4px; }
}

/* ---------- 店舗一覧(ハブ) ---------- */
.storelist{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
  max-width:var(--maxw); margin:0 auto; }
.storelist__card{ display:flex; flex-direction:column; background:#fff; border:1px solid #f0e6d8;
  border-radius:var(--radius-md); overflow:hidden; box-shadow:0 6px 18px rgba(42,33,24,.06);
  text-decoration:none; color:inherit; transition:.18s; }
.storelist__card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(42,33,24,.12); }
.storelist__photo{ aspect-ratio:16/9; overflow:hidden; background:linear-gradient(135deg,var(--color-orange-bg),var(--color-green-bg));
  color:var(--color-ink-mute); font-size:13px; font-weight:700; letter-spacing:.04em; }
.storelist__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.storelist__body{ padding:24px 26px; flex:1; display:flex; flex-direction:column; }
.storelist__name{ font-size:20px; font-weight:900; margin-bottom:8px; }
.storelist__addr{ font-size:13.5px; line-height:1.85; color:var(--color-ink-mute); margin-bottom:16px; }
.storelist__go{ margin-top:auto; font-weight:900; font-size:14px; color:var(--color-orange-dark); }
@media(max-width:700px){ .storelist{ grid-template-columns:1fr; gap:20px; } }

/* ---------- 店舗詳細ページ ---------- */
.store-hero{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.store-hero__photo{ aspect-ratio:16/7; border-radius:var(--radius-md); overflow:hidden;
  background:linear-gradient(135deg,var(--color-orange-bg),var(--color-green-bg));
  color:var(--color-ink-mute); font-size:14px; font-weight:700; letter-spacing:.05em; }
.store-hero__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.store-detail{ max-width:900px; margin:0 auto; }
.store-info-table{ width:100%; border-collapse:collapse; background:#fff;
  border:1px solid #f0e6d8; border-radius:var(--radius-md); overflow:hidden;
  box-shadow:0 6px 18px rgba(42,33,24,.06); }
.store-info-table th, .store-info-table td{ text-align:left; padding:18px 24px; vertical-align:top;
  border-bottom:1px solid #f2ebe0; font-size:14.5px; line-height:1.85; }
.store-info-table tr:last-child th, .store-info-table tr:last-child td{ border-bottom:none; }
.store-info-table th{ width:30%; background:var(--color-cream); font-weight:900;
  color:var(--color-ink); white-space:nowrap; }
.store-info-table td{ color:var(--color-ink-soft); }
.store-info-table td .tel{ font-size:20px; font-weight:900; color:var(--color-orange-dark); }
.store-info-table td .pending{ color:var(--color-ink-mute); font-size:13.5px; }
.store-info-table td .zip{ display:block; color:var(--color-ink-mute); font-size:13px; margin-bottom:2px; }
@media(max-width:600px){
  .store-info-table th, .store-info-table td{ display:block; width:auto; padding:12px 18px; }
  .store-info-table th{ border-bottom:none; padding-bottom:2px; white-space:normal; }
  .store-info-table td{ padding-top:4px; }
}

/* アクセス道順(写真+説明) */
.access__steps{ display:grid; gap:24px; max-width:900px; margin:0 auto; }
.access-step{ display:grid; grid-template-columns:280px 1fr; gap:24px; align-items:center;
  background:#fff; border:1px solid #f0e6d8; border-radius:var(--radius-md); overflow:hidden;
  box-shadow:0 6px 18px rgba(42,33,24,.06); }
.access-step__photo{ aspect-ratio:4/3; overflow:hidden; background:var(--color-cream);
  color:var(--color-ink-mute); font-size:12.5px; font-weight:700; text-align:center; }
.access-step__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.access-step__body{ padding:22px 26px 22px 4px; }
.access-step__num{ display:inline-block; background:var(--color-orange); color:#fff;
  font-weight:900; font-size:12.5px; padding:4px 12px; border-radius:var(--radius-pill); margin-bottom:10px; }
.access-step__body h3{ font-size:17px; font-weight:900; margin-bottom:6px; }
.access-step__body p{ font-size:13.5px; line-height:1.9; color:var(--color-ink-mute); }
@media(max-width:600px){
  .access-step{ grid-template-columns:1fr; }
  .access-step__body{ padding:18px 22px; }
}

.access-map{ max-width:900px; margin:32px auto 0; }
.access-map img{ width:100%; height:auto; display:block; border-radius:var(--radius-md);
  border:1px solid #f0e6d8; box-shadow:0 6px 18px rgba(42,33,24,.06); }
.access-map figcaption{ font-size:12.5px; color:var(--color-ink-mute); text-align:center;
  margin-top:10px; line-height:1.8; }

/* ---------- FAQ ---------- */
.faq{ max-width:820px; margin:0 auto; display:grid; gap:14px; }
.faq__item{ background:#fff; border:1px solid #f0e6d8; border-radius:var(--radius-md);
  box-shadow:0 6px 18px rgba(42,33,24,.06); overflow:hidden; }
.faq__item summary{ list-style:none; cursor:pointer; padding:22px 56px 22px 24px; position:relative;
  font-weight:900; font-size:16px; color:var(--color-ink); line-height:1.6; }
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::before{ content:"Q"; display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px; margin-right:12px; border-radius:50%; background:var(--color-orange-bg);
  color:var(--color-orange-dark); font-size:14px; font-weight:900; vertical-align:middle; }
.faq__item summary::after{ content:"＋"; position:absolute; right:24px; top:50%; transform:translateY(-50%);
  font-size:20px; font-weight:900; color:var(--color-orange); transition:.2s; }
.faq__item[open] summary::after{ content:"−"; }
.faq__item .faq__a{ padding:0 24px 24px 62px; font-size:14px; line-height:1.95; color:var(--color-ink-soft); }
.faq__item .faq__a strong{ color:var(--color-ink); font-weight:900; }
@media(max-width:600px){
  .faq__item summary{ padding:18px 46px 18px 18px; font-size:15px; }
  .faq__item .faq__a{ padding:0 18px 20px 18px; }
}

/* ---------- 法的ページ(特商法・プライバシー) ---------- */
.legal{ max-width:860px; margin:0 auto; }
.legal__updated{ font-size:13px; color:var(--color-ink-mute); margin-bottom:32px; }
.legal__block{ margin-bottom:36px; }
.legal__block h2{ font-size:19px; font-weight:900; color:var(--color-ink);
  padding-bottom:10px; margin-bottom:14px; border-bottom:2px solid var(--color-orange-chip); }
.legal__block h3{ font-size:16px; font-weight:900; margin:20px 0 8px; }
.legal__block p{ font-size:14.5px; line-height:1.95; color:var(--color-ink-soft); margin-bottom:12px; }
.legal__block ul{ margin:0 0 12px; padding-left:22px; }
.legal__block li{ font-size:14.5px; line-height:1.9; color:var(--color-ink-soft); margin-bottom:6px; }
.legal__block .pending{ color:var(--color-ink-mute); font-size:13.5px; }
.legal-table{ width:100%; border-collapse:collapse; background:#fff;
  border:1px solid #f0e6d8; border-radius:var(--radius-md); overflow:hidden;
  box-shadow:0 6px 18px rgba(42,33,24,.06); }
.legal-table th, .legal-table td{ text-align:left; padding:16px 22px; vertical-align:top;
  border-bottom:1px solid #f2ebe0; font-size:14px; line-height:1.9; }
.legal-table tr:last-child th, .legal-table tr:last-child td{ border-bottom:none; }
.legal-table th{ width:32%; background:var(--color-cream); font-weight:900;
  color:var(--color-ink); white-space:nowrap; }
.legal-table td{ color:var(--color-ink-soft); }
.legal-table td .pending{ color:var(--color-ink-mute); font-size:13px; }
.legal-table td .zip{ display:block; color:var(--color-ink-mute); font-size:12.5px; margin-bottom:2px; }
@media(max-width:600px){
  .legal-table th, .legal-table td{ display:block; width:auto; padding:12px 18px; }
  .legal-table th{ border-bottom:none; padding-bottom:2px; white-space:normal; }
  .legal-table td{ padding-top:4px; }
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--color-footer-bg); color: var(--color-footer-text); padding: 54px 24px 30px; }
.site-footer__grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px;
  padding-bottom:38px; border-bottom:1px solid rgba(255,255,255,.12);
  max-width:var(--maxw); margin:0 auto;
}
/* フッターのロゴ
   フッター用の白文字版ロゴ(文字=白 / イラスト=オレンジ)を使用。
   濃い背景にそのまま馴染むため、白パネル処理は不要。 */
.logo--footer{
  height:72px;
  width:auto;
  margin-bottom:14px;
}
.site-footer__brand p{ font-size:13px; line-height:1.9; color:var(--color-footer-text-mute); max-width:280px; }
.site-footer__col h3{ font-family:var(--font-body); font-weight:700; font-size:14px; color:#fff; margin-bottom:14px; }
.site-footer__col{ display:flex; flex-direction:column; }
.site-footer__col a{ font-size:13px; color:var(--color-footer-text-mute); margin-bottom:11px; }
.site-footer__col a:hover{ color:#fff; }
.site-footer__bottom{
  display:flex; justify-content:space-between; align-items:center; padding-top:22px;
  font-size:12px; color:var(--color-footer-text-dim); flex-wrap:wrap; gap:10px;
  max-width:var(--maxw); margin:0 auto;
}

/* ---------- LINE FAB ---------- */
.line-fab-wrap{ position:fixed; right:20px; bottom:20px; z-index:200; }
.line-fab{
  background:#06c755; color:#fff; font-weight:900; font-size:14px;
  padding:14px 22px; border-radius:var(--radius-pill);
  box-shadow:0 8px 24px rgba(0,0,0,.24);
  display:flex; align-items:center; gap:8px;
  border:none; cursor:pointer; appearance:none; -webkit-appearance:none;
  font-family:var(--font-body);
}
.line-fab-menu{
  display:none;
  position:absolute; bottom:100%; right:0; margin-bottom:12px;
  background:#fff; border-radius:14px; box-shadow:0 14px 34px rgba(42,33,24,.2);
  padding:8px; min-width:170px;
}
.line-fab-menu.is-open{ display:block; }
.line-fab-menu a{
  display:block; padding:11px 16px; border-radius:10px;
  font-size:14px; font-weight:700; color:var(--color-ink); white-space:nowrap;
}
.line-fab-menu a:hover{ background:var(--color-cream); color:var(--color-orange-dark); }

/* ---------- Mobile sticky footer ---------- */
.mobile-bar{ display:none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero{ padding:48px 24px 90px; }
  .hero__grid{ grid-template-columns:1fr; }
  .hero__copy h1{ font-size:40px; }
  .hero__image{ position:static; width:200px; max-width:60%; margin:0 auto; }
  .trust-cards{ grid-template-columns:1fr; margin:-60px 24px 0; padding:34px 26px; }
  .ok__grid,.methods__grid,.results__grid,.voices__grid,.data__grid{ grid-template-columns:1fr; }
  .items__grid{ grid-template-columns:repeat(2,1fr); }
  .flow__grid{ grid-template-columns:1fr 1fr; }
  .flow-step::after{ display:none; }
  .stores__grid{ grid-template-columns:1fr 1fr; }
  .site-footer__grid{ grid-template-columns:1fr; }
  .section{ padding:52px 24px; }
  .site-header{ padding:12px 20px; }
  .logo--header{ height:52px; }

  .nav-toggle{ display:flex; }
  .nav{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:#fff;
    flex-direction:column; align-items:stretch; gap:0;
    padding:8px 20px 24px;
    max-height:80vh; overflow-y:auto;
    box-shadow:0 14px 34px rgba(42,33,24,.14);
    z-index:150;
  }
  .nav.is-open{ display:flex; }
  .nav a{ padding:14px 4px; border-bottom:1px solid #f0e6d8; }
  .nav .btn--nav{ margin-top:16px; text-align:center; }
  .nav__item{ flex-direction:column; align-items:stretch; }
  .nav__dropdown{
    position:static; opacity:1; visibility:visible; transform:none;
    box-shadow:none; border:none; margin:0 0 0 16px; padding:0;
  }
  .nav__dropdown-head{ display:none; }
  .nav__dropdown a{ padding:12px 4px; font-size:13.5px; color:var(--color-ink-mute); }

  .line-fab-wrap{ bottom:88px; right:14px; }
  .line-fab{ padding:12px 18px; font-size:13px; }
  .mobile-bar{
    display:grid; grid-template-columns:1fr 1.4fr; gap:10px;
    position:fixed; left:0; right:0; bottom:0; z-index:210;
    background:#fff; padding:10px 14px;
    box-shadow:0 -4px 20px rgba(42,33,24,.16);
  }
  .mobile-bar--single{ grid-template-columns:1fr; }
  .mobile-bar .btn{ padding:14px 10px; font-size:14px; }
  .mobile-bar__tel{
    background:var(--color-cream); color:var(--color-ink);
    display:grid; place-items:center; border-radius:var(--radius-pill);
    font-weight:900; font-size:14px;
  }
  body{ padding-bottom:76px; }
}
@media (max-width: 560px){
  .flow__grid,.stores__grid,.items__list{ grid-template-columns:1fr; }
  .hero__copy h1{ font-size:34px; }
  .section h2{ font-size:26px; }
  .cta h2{ font-size:27px; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}
