/* =============================================
   AI検索【ミチビキ】 — Design System
   Colors: #a1141a (red), #e6e635 (yellow)
   No black backgrounds / No rounded corners
   ============================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:     #a1141a;
  --red-dk:  #800f15;
  --yellow:  #e6e635;
  --yellow-lt: #f5f5a0;
  --white:   #ffffff;
  --off-white: #f8f6f2;
  --gray-lt: #f2efea;
  --gray:    #e8e4de;
  --charcoal: #2c2825;
  --ink:     #3d3835;
  --muted:   #7a746e;
  --accent-bg: #a1141a;

  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;

  --radius: 0;   /* ← 直角 */
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);

  --section-pad: 80px 0;
  --inner-max: 1100px;
  --inner-pad: 0 24px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-jp);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Scroll Progress Bar ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Typography ── */
h1, h2, h3 { line-height: 1.3; font-weight: 900; }
em { color: var(--red); font-style: normal; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dk); border-color: var(--red-dk); }
.btn--white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn--white:hover { background: var(--gray-lt); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Label Tag ── */
.label-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.label-tag--light {
  background: rgba(230,230,53,0.25);
  color: rgba(255,255,255,0.9);
}

/* ── Section Layout ── */
.section { padding: var(--section-pad); }
.section--white { background: var(--white); }
.section--gray  { background: var(--gray-lt); }
.section--accent { background: var(--red); }
.section--closing { background: var(--charcoal); }

.section__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: var(--inner-pad);
}

.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }

.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--charcoal);
  margin-top: 4px;
}
.section--accent .section__title,
.section--closing .section__title { color: var(--white); }

.section__lead {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/index/map-bg.webp') center/cover no-repeat;
  filter: saturate(0.6) brightness(0.85);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(248,246,242,0.96) 0%,
    rgba(248,246,242,0.85) 45%,
    rgba(248,246,242,0.25) 100%
  );
  z-index: 1;
}

.hero__person {
  position: absolute;
  right: 10%;
  bottom: 0;
  height: 88%;
  max-height: 680px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 60px 24px;
  max-width: 680px;
  margin-left: max(24px, calc((100vw - 1100px)/2));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  animation: fadeDown 0.6s ease both;
}

.hero__headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero__sub {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease 0.15s both;
}

.hero__cards-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease 0.25s both;
}

.hero__card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 2px solid var(--gray);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  position: relative;
}
.hero__card:hover,
.hero__card:focus {
  border-color: var(--red);
  background: rgba(161,20,26,0.03);
  transform: translateX(4px);
  outline: none;
}
.hero__card.selected {
  border-color: var(--red);
  background: rgba(161,20,26,0.06);
}

.hero__card-icon {
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero__card-text {
  font-weight: 700;
  font-size: 0.95rem;
  flex: 1;
}
.hero__card-arrow {
  color: var(--red);
  transition: transform 0.2s;
}
.hero__card:hover .hero__card-arrow { transform: translateX(4px); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeUp 0.7s ease 0.35s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}
.trust-item .fa-check-circle { color: var(--red); }

/* ══════════════════════════════
   TICKER
══════════════════════════════ */
.ticker {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
}
.ticker__track span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 16px;
  letter-spacing: 0.03em;
}
.ticker__track .sep { color: var(--yellow); padding: 0 4px; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════
   STORY
══════════════════════════════ */
.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.story__item {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 28px;
  border-top: 4px solid var(--red);
  transition: box-shadow 0.2s;
}
.story__item:hover { box-shadow: var(--shadow-md); }

.story__item-num {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray);
  line-height: 1;
  margin-bottom: 12px;
}

.story__item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
}

.story__item-body {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Mock UI */
.mock-ui {
  background: var(--gray-lt);
  border: 1px solid var(--gray);
  padding: 12px;
  font-size: 0.78rem;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-bottom: 1px solid var(--gray);
}
.mock-row:last-child { border-bottom: none; }
.mock-row--you { background: rgba(161,20,26,0.03); }

.mock-rank {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 2px 6px;
  flex-shrink: 0;
}
.mock-rank--1 { background: var(--yellow); color: var(--charcoal); }
.mock-rank--2 { background: var(--gray); color: var(--charcoal); }
.mock-rank--out { background: rgba(161,20,26,0.1); color: var(--red); }

.mock-store { flex: 1; font-weight: 600; color: var(--ink); }
.mock-star { color: #b8860b; font-weight: 600; font-size: 0.72rem; }
.mock-star--low { color: var(--red); }

.mock-icon { color: var(--yellow); font-size: 0.85rem; width: 18px; flex-shrink: 0; }
.mock-icon--alert { color: var(--red); font-size: 0.85rem; width: 18px; flex-shrink: 0; }

.mock-tag--danger {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(161,20,26,0.1);
  color: var(--red);
  flex-shrink: 0;
}
.mock-tag--warn {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(160,112,0,0.1);
  color: #8a6000;
  flex-shrink: 0;
}

.story__pivot {
  text-align: center;
  padding: 32px;
  background: var(--charcoal);
  color: var(--white);
}
.story__pivot p { font-size: 1.05rem; }
.story__pivot strong { color: var(--yellow); }

/* ══════════════════════════════
   DIAGNOSIS
══════════════════════════════ */
.diag__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.diag__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 8px;
}
.diag__title em { color: var(--yellow); }

.diag__body {
  color: rgba(255,255,255,0.85);
  font-size: 0.925rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.diag__note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.diag__cards { display: flex; flex-direction: column; gap: 12px; }

.diag-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px;
  position: relative;
}

.diag-card__q {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.diag-card__opts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.diag-opt {
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  cursor: default;
  border: 1px solid rgba(255,255,255,0.2);
}
.diag-opt--active {
  background: var(--yellow);
  color: var(--charcoal);
  border-color: var(--yellow);
}

.diag-card--blur .diag-card__opts { filter: blur(4px); }

.diag-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(161,20,26,0.55);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(2px);
}
.diag-lock i { font-size: 1.2rem; }

/* ══════════════════════════════
   FEATURES
══════════════════════════════ */
.features__list { display: flex; flex-direction: column; gap: 32px; }

.feature-block {}

.feature-theme {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.feature-theme__tag {
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-en);
  padding: 3px 8px;
  letter-spacing: 0.06em;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray);
}
.feature-row--alt { background: var(--gray-lt); }

.feature-col {
  padding: 20px 24px;
  border-right: 1px solid var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink);
}
.feature-col:last-child { border-right: none; }

.feature-col__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.feature-col--problem .feature-col__label { color: var(--red); }
.feature-col--solve   .feature-col__label { color: #2c6e49; }
.feature-col--result  .feature-col__label { color: #1a5276; }

.kpi-row { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.kpi {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════
   CASES
══════════════════════════════ */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  border: 1px solid var(--gray);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.case-card:hover { box-shadow: var(--shadow-md); }

.case-card__header {
  background: var(--charcoal);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-card__industry {
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
}
.case-card__name {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.case-card__body { padding: 20px; }

.case-ba {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.case-ba__col { flex: 1; }

.case-ba__label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.case-ba__col--before .case-ba__label { color: var(--red); }
.case-ba__col--after  .case-ba__label { color: #2c6e49; }

.case-ba__col li {
  font-size: 0.78rem;
  color: var(--ink);
  padding: 3px 0;
  border-bottom: 1px dashed var(--gray);
  line-height: 1.4;
}
.case-ba__col--after li { color: #1a4d35; }
.case-ba__col li:last-child { border-bottom: none; }

.case-ba__arrow {
  padding-top: 20px;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.case-card__metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray);
}
.metric-num {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
}
.metric-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* ══════════════════════════════
   COMPARISON
══════════════════════════════ */
.compare__table-wrap { overflow-x: auto; }

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare__table th,
.compare__table td {
  padding: 14px 20px;
  border: 1px solid var(--gray);
  text-align: left;
  vertical-align: middle;
}
.compare__th-item { background: var(--charcoal); color: var(--white); width: 22%; }
.compare__th-before { background: #f0e8e8; color: var(--red); width: 39%; }
.compare__th-after  { background: #e8f0e8; color: #2c6e49; width: 39%; }

.compare__item { font-weight: 700; color: var(--charcoal); background: var(--gray-lt); }

.compare__before {
  color: var(--muted);
  align-items: center;
}
.compare__before .fa-times { color: var(--red); margin-right: 5px;}

.compare__after {
  color: #1a4d35;
  font-weight: 600;
  align-items: center;
}
.compare__after .fa-check { color: #2c6e49; margin-right: 5px; }


/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray);
}

.faq-item { border-bottom: 1px solid var(--gray); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 10px 20px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: left;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--red); }
.faq-item__q[aria-expanded="true"] { color: var(--red); }

.faq-item__icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--red);
  transition: transform 0.3s;
}
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  display: none;
  padding: 0 0 20px;
}
.faq-item__a.open { display: block; }
.faq-item__a p {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.8;
  padding: 0 20px;
}

/* ══════════════════════════════
   3温度 CTA
══════════════════════════════ */
.cta3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cta3-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 28px 24px;
  text-align: center;
}
.cta3-card--featured {
  background: rgba(255,255,255,0.18);
  border-color: var(--yellow);
}

.cta3-card__icon {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 12px;
}
.cta3-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta3-card__body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact__wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__group { display: flex; flex-direction: column; gap: 6px; }

.contact-form__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
}
.required {
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 5px;
}

.contact-form__input {
  padding: 12px 14px;
  border: 1px solid var(--gray);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;   /* 直角 */
  appearance: none;
  -webkit-appearance: none;
}
.contact-form__input:focus { border-color: var(--red); }
.contact-form__input.error { border-color: var(--red); }

.contact-form__select { cursor: pointer; }
.contact-form__textarea { resize: vertical; }

.contact-form__error {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
}

.contact-form__success {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2c6e49;
  padding: 16px;
  background: #e8f0e8;
  border: 1px solid #b8d8b8;
  display: none;
}
.contact-form__success.show { display: block; }

/* ══════════════════════════════
   CLOSING
══════════════════════════════ */
.closing__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}

.closing__text { padding: 40px 0; }

.closing__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 20px;
}
.closing__title em { color: var(--yellow); }

.closing__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  margin-bottom: 28px;
}

.closing__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.closing__img {
  height: 360px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: brightness(0.95);
}

/* ══════════════════════════════
   FLOAT CTA
══════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.float-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-cta .btn { box-shadow: 0 4px 16px rgba(0,0,0,0.18); font-size: 0.85rem; padding: 11px 20px; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   MAP BAND（地図イラスト帯）
══════════════════════════════ */
.map-band {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  height: 260px;
}
.map-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
  opacity: 0.85;
}
.map-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,246,242,0.95) 0%, rgba(248,246,242,0.6) 50%, rgba(248,246,242,0.1) 100%);
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1100px) / 2));
}
.map-band__label {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.map-band__text { display: flex; flex-direction: column; max-width: 520px; }
.map-band__catch {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
}
.map-band__catch strong { color: var(--red); }

/* ══════════════════════════════
   DIAGNOSIS MERGED（地図＋診断結合）
══════════════════════════════ */
.diag-merged {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.diag-merged__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diag-merged__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diag-merged__map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  height: 200px;
}
.diag-merged__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  filter: brightness(0.9) saturate(1.1);
}
.diag-merged__map-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(161,20,26,0.85);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.diag-merged__map-label i { color: var(--yellow); }

/* 診断セクション 女性2.png */
.diag-merged__woman {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(4px 8px 16px rgba(0,0,0,0.18));
}

/* ══════════════════════════════
   CASE CARD STORE PHOTO
══════════════════════════════ */
.case-card__img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.case-card__store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.case-card:hover .case-card__store-img { transform: scale(1.03); }

.case-card__img-badge {
  position: absolute;
  top: 10px; left: 10px;
}
.case-card__header--simple {
  background: var(--charcoal);
  padding: 12px 20px;
}

/* アウトラインボタン */
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--gray);
}
.btn--outline:hover {
  border-color: var(--charcoal);
  background: var(--gray-lt);
}

/* ══════════════════════════════
   MOVIE
══════════════════════════════ */
.movie__wrap {
  max-width: 960px;
  margin: 32px auto 0;
}

.movie__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #000;
}

.movie__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 1100px) {
  .hero__person { right: 0%; }
}
@media (max-width: 900px) {
  :root { --section-pad: 60px 0; }

  .hero__person { height: 55%; opacity: 0.45; right: 0; }
  .hero__inner { max-width: 100%; margin-left: 0; padding: 48px 24px 280px; }

  .story__grid { grid-template-columns: 1fr; }

  .diag__split { grid-template-columns: 1fr; gap: 32px; }

  .feature-row { grid-template-columns: 1fr; }
  .feature-col { border-right: none; border-bottom: 1px solid var(--gray); }
  .feature-col:last-child { border-bottom: none; }

  .cases__grid { grid-template-columns: 1fr; }

  .cta3__grid { grid-template-columns: 1fr; }

  .closing__inner { grid-template-columns: 1fr; }
  .closing__img { display: none; }

  .contact-form__row { grid-template-columns: 1fr; }

  .map-band { height: 200px; }

  .diag-merged { grid-template-columns: 1fr; gap: 32px; }
  .diag-merged__map { height: 120px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 48px 0; }

  .hero__headline { font-size: 1.75rem; }
  .hero__person { display: none; }
  .hero__inner { padding: 40px 20px 60px; }

  .section__title { font-size: 1.5rem; }

  .compare__table td,
  .compare__table th { padding: 10px 12px; font-size: 0.82rem; }

  .float-cta { bottom: 16px; right: 12px; }
  .float-cta .btn { font-size: 0.8rem; padding: 9px 16px; }

  .map-band { height: 160px; }
  .case-card__img-wrap { height: 160px; }
}

/* ══════════════════════════════════════════════
   DIAGNOSIS RESULT IMAGE（診断結果スクリーンショット）
══════════════════════════════════════════════ */
.diag-result-img-wrap {
  margin-top: 24px;
  position: relative;
}
.diag-result-img {
  width: 100%;
  max-width: 480px;
  display: block;
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.diag-result-caption {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* モバイル: 診断結果画像は小さく */
@media (max-width: 600px) {
  .diag-result-img { max-width: 100%; }
}
