/* ============================================
   遺品整理LP v4 — 3カラム / 明るいトレンドデザイン
   ============================================ */

:root {
  /* ベース：温かく明るいクリーム */
  --bg: #f5f1e8;
  --surface: #ffffff;
  --surface-2: #fbf8f1;
  --surface-3: #f3eee3;

  /* 文字 */
  --ink: #322e29;
  --ink-soft: #5f594f;
  --ink-mute: #938b7d;

  /* 罫線 */
  --line: #eae2d4;
  --line-soft: #f0eadd;

  /* プライマリ：生命感のあるセージグリーン */
  --primary: #5f8d6e;
  --primary-deep: #436b50;
  --primary-soft: #e7efe7;
  --primary-tint: #f1f6f0;

  /* アクセント：温かなアプリコット（CTA） */
  --accent: #e89a63;
  --accent-deep: #d57f44;
  --accent-soft: #fbeada;

  /* 補助 */
  --gold: #c6a263;
  --coral: #e07a5f;
  --sky: #6f9bb0;

  --shadow-sm: 0 1px 3px rgba(80,66,40,0.06), 0 1px 2px rgba(80,66,40,0.04);
  --shadow-md: 0 6px 20px rgba(80,66,40,0.08), 0 2px 6px rgba(80,66,40,0.05);
  --shadow-lg: 0 16px 48px rgba(80,66,40,0.12), 0 4px 12px rgba(80,66,40,0.06);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --center-w: 540px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

.mincho {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.num {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-feature-settings: normal;
}

img, svg { max-width: 100%; }
a { color: inherit; }

/* ============================================
   3カラム グリッド
   ============================================ */
.page {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 100vh;
}

/* デスクトップ：左パネル + 中央 + 右メニュー */
@media (min-width: 1080px) {
  .page {
    grid-template-columns: minmax(240px, 300px) var(--center-w) minmax(200px, 260px);
    column-gap: clamp(24px, 4vw, 64px);
    justify-content: center;
    align-items: start;
    padding: 20px 24px 0;
  }
  .side-left { display: flex; }
  .side-right { display: block; }
  .mobile-cta { display: none !important; }
}

/* タブレット以下：本体のみ */
@media (max-width: 1079px) {
  .side-left, .side-right { display: none !important; }
  .center {
    max-width: var(--center-w);
    width: 100%;
  }
  body { padding-bottom: 84px; }
}

/* ============================================
   左サイドパネル（追従）
   ============================================ */
.side-left {
  position: sticky;
  top: 0;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  gap: 28px;
  max-width: 300px;
  justify-self: end;
}
.brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.brand-text .name {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.3;
}
.brand-text .sub {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.brand-tagline {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.side-card .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--primary-deep);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card .label::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.side-tel {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-decoration: none;
  display: block;
  line-height: 1.2;
}
.side-tel-note {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 4px;
  text-align: center;
}
.side-card .label,
.side-card .side-tel {
  text-align: center;
}
.side-card .label {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-lg { padding: 17px 24px; font-size: 16px; }
.btn-md { padding: 13px 20px; font-size: 14px; }

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(213,127,68,0.32);
}
.btn-accent:hover { box-shadow: 0 10px 26px rgba(213,127,68,0.42); transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(67,107,80,0.28);
}
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-1px); }
.btn-line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 6px 18px rgba(6,199,85,0.28);
}
.btn-line:hover { transform: translateY(-1px); }
.btn-outline {
  background: var(--surface);
  color: var(--primary-deep);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-tint); }
.btn-block { width: 100%; }

.side-actions { display: flex; flex-direction: column; gap: 10px; }

.side-trust {
  display: flex;
  gap: 8px;
}
.side-trust .chip {
  flex: 1;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 4px;
}
.side-trust .chip .n {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--primary-deep);
  display: block;
}
.side-trust .chip .t {
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

/* ============================================
   右サイドメニュー（スクロールスパイ）
   ============================================ */
.side-right {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: start;
}
.nav-title {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-mute);
  font-weight: 700;
  margin-bottom: 18px;
  padding-left: 18px;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--line);
}
.nav-item {
  position: relative;
}
.nav-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0 9px 18px;
  text-decoration: none;
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: color 0.2s, padding 0.2s;
  margin-left: -2px;
  border-left: 2px solid transparent;
}
.nav-item a .nav-num {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.6;
}
.nav-item a:hover { color: var(--ink-soft); }
.nav-item.active a {
  color: var(--primary-deep);
  font-weight: 700;
  border-left-color: var(--primary);
  padding-left: 20px;
}
.nav-item.active a .nav-num { opacity: 1; color: var(--accent-deep); }

/* ============================================
   中央 本体
   ============================================ */
.center {
  width: 100%;
  max-width: var(--center-w);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
@media (min-width: 1080px) {
  .center { border-radius: 0; min-height: 100vh; }
}

/* モバイルヘッダー（1079px以下のみ） */
.m-header {
  display: none;
}
@media (max-width: 1079px) {
  .m-header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 40;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .m-header .brand-logo .brand-mark { width: 40px; height: 40px; font-size: 18px; border-radius: 11px; }
  .m-header .brand-text .name { font-size: 15px; }
  .m-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
  }
}

/* セクション */
.sec {
  padding: 52px 36px;
  position: relative;
  scroll-margin-top: 20px;
}
@media (max-width: 1079px) {
  .sec { padding: 44px 24px; }
}
.sec + .sec { border-top: 1px solid var(--line-soft); }
.sec-tinted { background: var(--surface-2); }
.sec-green { background: var(--primary-tint); }
/* 暖色（アプリコット）の淡いトーン — 緑系と交互にしてリズムを出す */
.sec-warm {
  background: linear-gradient(180deg, #fdf3e9 0%, #fbeada 100%);
}
/* クリーム濃いめ */
.sec-cream { background: #f3ecdd; }

/* ── 濃色パンチ（差別化セクション用） ── */
.sec-dark {
  background:
    radial-gradient(120% 80% at 80% 0%, #4f7a5e 0%, transparent 60%),
    linear-gradient(160deg, #3c6149 0%, #2c4a37 100%);
  color: #fff;
  border-top: none !important;
}
.sec-dark .eyebrow { color: #bfe0c8; }
.sec-dark .eyebrow::before { background: var(--accent); }
.sec-dark .h2 { color: #fff; }
.sec-dark .h2 .hl { color: #ffd6a6; }
.sec-dark .lead { color: rgba(255,255,255,0.82); }
.sec-dark .card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}
.sec-dark .card h3 { color: #fff; }
.sec-dark .card p { color: rgba(255,255,255,0.72) !important; }
.sec-dark .mk {
  color: #233027;
  background: #ffe08a;
  padding: 1px 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.sec-dark .mk-g {
  color: #233027;
  background: #b6dfbb;
  padding: 1px 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ── セクション番号の大きな透かし ── */
.sec-wm {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 92px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.sec-dark .sec-wm { color: #fff; opacity: 0.10; }
.sec-warm .sec-wm { color: var(--accent-deep); opacity: 0.09; }
.sec-tinted .sec-wm { color: var(--accent-deep); opacity: 0.07; }
/* 透かしより前面に内容を置く */
.sec > .eyebrow,
.sec > .h2,
.sec > .lead { position: relative; z-index: 1; }
@media (max-width: 1079px) {
  .sec-wm { font-size: 68px; top: 18px; right: 18px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--primary-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow .num { font-size: 11px; }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 27px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: pretty;
}
.h2 .hl {
  color: var(--primary-deep);
  position: relative;
}
.lead {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.95;
  margin: 0 0 30px;
  text-wrap: pretty;
}

/* 画像プレースホルダー（明るめ） */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--primary-soft) 0%, var(--accent-soft) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph .ph-tag {
  background: rgba(255,255,255,0.85);
  color: var(--ink-soft);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* カード共通 */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   モバイル固定CTA
   ============================================ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(80,66,40,0.08);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 1fr;
  gap: 8px;
  align-items: center;
}
.mobile-cta .m-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--primary-deep);
  padding: 6px;
}
.mobile-cta .m-call .l { font-size: 10px; letter-spacing: 0.1em; color: var(--ink-mute); }
.mobile-cta .m-call .n { font-family: "Roboto", sans-serif; font-size: 17px; font-weight: 700; }
.mobile-cta .m-call.m-line { color: #06c755; }
.mobile-cta .m-call.m-line .n { font-family: "Noto Sans JP", sans-serif; }

/* スクロール余白用 */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(213,127,68,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(213,127,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(213,127,68,0); }
}

/* ============================================
   お問い合わせ：3つの導線・バッジ
   ============================================ */
.contact-route {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.2s;
}
.contact-route:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-route .cr-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-route .cr-tx { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.contact-route .cr-tx b { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.contact-route .cr-tx i { font-size: 11.5px; font-style: normal; color: var(--ink-mute); line-height: 1.4; }
.contact-route .cr-ar { font-size: 22px; color: var(--ink-mute); flex-shrink: 0; }
.contact-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-deep);
  background: var(--surface);
  border: 1px solid var(--primary-soft);
  border-radius: 999px;
  padding: 5px 12px;
  letter-spacing: 0.02em;
}

/* ============================================
   ヒーローのスピードバッジ（中央・塗り・濃色）
   ============================================ */
.speed-wrap { text-align: center; margin-bottom: 18px; }

/* ============================================
   ヒーローの4特徴アイコン列 + CTAバー
   ============================================ */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 22px 0 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-feat {
  text-align: center;
  padding: 16px 6px;
  position: relative;
  min-width: 0;
}
.hero-feat + .hero-feat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}
.hero-feat .hf-ic {
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-feat .hf-tx {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.01em;
  word-break: keep-all;
}
.hero-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 22px rgba(60,97,73,0.28);
  transition: transform 0.15s, box-shadow 0.2s;
}
.hero-cta-bar:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(60,97,73,0.36); }
.hero-cta-bar svg { flex-shrink: 0; }

/* ── 写真を背景にテキストを重ねるビジュアル ── */
.hero-visual {
  position: relative;
  overflow: hidden;
  margin: 0 -36px 4px;
  aspect-ratio: 941 / 1460;
}
@media (max-width: 1079px) {
  .hero-visual {
    margin: 0 -24px 4px;
    aspect-ratio: 941 / 1400;
  }
  .hero-visual-img { object-position: center 96%; }
  .hero-visual::before {
    height: 66%;
    background: linear-gradient(180deg,
      rgba(255,252,247,0.97) 0%,
      rgba(255,252,247,0.9) 42%,
      rgba(255,252,247,0.5) 66%,
      rgba(255,252,247,0) 100%);
  }
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 72%;
  background: linear-gradient(180deg, rgba(255,252,247,0.94) 0%, rgba(255,252,247,0.78) 40%, rgba(255,252,247,0.4) 70%, rgba(255,252,247,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-visual-text {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  padding: 44px 32px 0;
}
.hero-lead {
  color: var(--ink-soft);
  line-height: 1.95;
  margin: 8px 0 4px;
  font-size: 15px;
  text-wrap: pretty;
}
/* PCでは従来通り画像に重ねて表示（grid重ね） */
@media (min-width: 1080px) {
  .hero-top { display: grid; }
  .hero-top > .hero-visual { grid-area: 1 / 1; }
  .hero-top > .hero-lead {
    grid-area: 1 / 1;
    align-self: start;
    z-index: 2;
    margin: 0 -36px;
    padding: 390px 32px 0;
    font-size: 15px;
    text-shadow: 0 1px 6px rgba(255,252,247,0.92), 0 0 16px rgba(255,252,247,0.7);
  }
}
@media (max-width: 1079px) {
  .hero-visual-text { padding: 28px 22px 0; }
  .hero-visual-text h1,
  .hero-visual-text h1 span { font-size: 27px !important; }

  /* 本文は画像の下の白地に（スマホ） */
  .hero-lead { font-size: 14px; margin-top: 6px; }
  .hero-lead br { display: none; }

  /* 見出しはスマホで少し小さく（2行目の孤立を防ぐ） */
  .h2 { font-size: 24px; }

  /* 4つの特徴アイコン（スマホ） */
  .hero-feat { padding: 14px 3px; }
  .hero-feat .hf-ic { width: 34px; height: 34px; margin-bottom: 7px; }
  .hero-feat .hf-ic svg { width: 19px; height: 19px; }
  .hero-feat .hf-tx { font-size: 9.5px; line-height: 1.4; word-break: normal; }
  .hero-feat .hf-tx br { display: none; }

  /* タグライン（スマホ） */
  .hero-tagline .ht-dash { display: none; }
  .hero-tagline .ht-tx { font-size: 21px !important; white-space: nowrap; }
}
.speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #fdeedd 100%);
  border: 1px solid rgba(213,127,68,0.45);
  box-shadow: 0 8px 22px rgba(213,127,68,0.16);
  position: relative;
}
.speed-badge .sb-tx {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.speed-badge .sb-lbl {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 1px;
}
.speed-badge .sb-tm {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.speed-badge .sb-tm b {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
  margin: 0 1px;
  vertical-align: -1px;
}
.speed-badge .sb-tm i {
  font-style: normal;
  font-size: 11.5px;
  color: var(--ink-soft);
  margin: 0 1px;
}

/* ============================================
   重要箇所のマーカー強調
   ============================================ */
/* 黄色マーカー（最重要） */
.mk {
  background: linear-gradient(transparent 58%, #ffe08a 58%, #ffe08a 92%, transparent 92%);
  font-weight: 700;
  padding: 0 2px;
}
/* 緑マーカー（中村らしさ・対応力） */
.mk-g {
  background: linear-gradient(transparent 58%, #b6dfbb 58%, #b6dfbb 92%, transparent 92%);
  font-weight: 700;
  padding: 0 2px;
}
/* 太字＋色（インライン強調） */
.em {
  color: var(--accent-deep);
  font-weight: 700;
}
.em-g {
  color: var(--primary-deep);
  font-weight: 700;
}

/* ============================================
   画像必要箇所バッジ & リストパネル
   ============================================ */
.imgbadge {
  position: absolute;
  z-index: 25;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e11d2a;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(225,29,42,0.45), 0 0 0 3px #fff;
  pointer-events: none;
}
.imglist-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: #e11d2a;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.imglist-fab .c {
  background: #fff;
  color: #e11d2a;
  border-radius: 999px;
  padding: 1px 8px;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  margin-left: 4px;
}
@media (max-width: 1079px) {
  .imglist-fab { bottom: 80px; }
}
.imglist-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background: var(--bg);
  box-shadow: -8px 0 30px rgba(80,66,40,0.18);
  z-index: 80;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.imglist-panel.open { transform: translateX(0); }
.imglist-head {
  background: #e11d2a;
  color: #fff;
  padding: 20px 20px 16px;
  position: relative;
}
.imglist-head h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 5px;
  letter-spacing: 0.06em;
}
.imglist-head p { font-size: 12px; opacity: 0.85; margin: 0; line-height: 1.7; }
.imglist-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}
.imglist-body { flex: 1; overflow-y: auto; padding: 14px 16px 30px; }
.imgrow {
  display: flex;
  gap: 12px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.imgrow-n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e11d2a;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.imgrow-t { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.imgrow-d { font-size: 12px; color: var(--ink-soft); line-height: 1.6; }

@media print {
  .imgbadge, .imglist-fab, .imglist-panel { display: none !important; }
}

/* ============================================
   圧倒的な実績バンド
   ============================================ */
.results-band {
  background: linear-gradient(160deg, #4a7259 0%, var(--primary-deep) 55%, #355942 100%);
  color: #fff;
  padding: 46px 36px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.results-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.10), transparent 42%),
    radial-gradient(circle at 88% 88%, rgba(232,154,99,0.18), transparent 45%);
  pointer-events: none;
}
.results-eyebrow {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.results-head {
  position: relative;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 30px;
  text-wrap: pretty;
}
.results-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.results-item {
  padding: 20px 0;
  position: relative;
}
.results-item + .results-item {
  border-top: 1px solid rgba(255,255,255,0.18);
}
.results-label {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 6px;
}
.results-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.results-numline {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}
.results-num {
  font-family: "Roboto", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.results-suffix {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.results-star {
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
  margin-right: 2px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.results-note {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* 受賞シール */
.award-block { position: relative; margin-bottom: 28px; }
.award-intro {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
  letter-spacing: 0.03em;
}
.award-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
}
.award-seal {
  flex: 1 1 0;
  max-width: 160px;
}
.award-ph-wide {
  width: 100%;
  aspect-ratio: 1200 / 488 !important;
}
.award-ph {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* デスクトップでは3カラム横並び */
@media (min-width: 480px) {
  .results-grid {
    flex-direction: row;
  }
  .results-item {
    flex: 1;
    padding: 8px 8px;
  }
  .results-item + .results-item {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.18);
  }
  .results-num { font-size: 44px; }
  .results-suffix { font-size: 16px; }
  .results-star { font-size: 30px; }
  .results-label { font-size: 13px; }
}
