:root {
  --navy: #1a2744;
  --navy-light: #243460;
  --gold: #b8962e;
  --gold-light: #d4b04a;
  --gold-pale: #f5edd6;
  --cream: #faf8f3;
  --text: #2c2c2c;
  --text-mid: #555;
  --text-light: #888;
  --border: #e0d8c8;
  --red: #c0392b;
  --pink: #ffa6a6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* SP専用改行：PCでは非表示 */
.sp-br { display: none; }


html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/* ========== UTILITY ========== */
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

.section-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
  border-bottom: 2px solid var(--gold-light);
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 18px 48px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-primary:hover { background: #9a7a22; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,46,0.35); }

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 18px 48px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-navy:hover { background: #0e1a33; transform: translateY(-2px); }
.btn-line {
  display: inline-block;
  background: #05a847;
  color: white;
  padding: 18px 40px;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-line:hover { background: #06C755; transform: translateY(-2px); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== TOP BAR ========== */
.topbar {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}
.topbar a { color: var(--gold-light); text-decoration: none; font-weight: 700; }

/* ========== HEADER ========== */
.header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.header-logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.header-tel:hover .header-tel-num { color: var(--gold); }
.header-tel-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.header-tel-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.header-tel-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.5px;
  line-height: 1;
  transition: color 0.2s;
}
.header-tel-hours {
  font-size: 10px;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.header-btn {
  background: var(--gold);
  color: white;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-btn:hover { background: #9a7a22; }

/* ========== HERO ========== */
.hero {
  background-color: var(--navy);
  background-image: url('img/first_img.webp');
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 120px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 25, 60, 0.68) 5%,
    rgba(15, 25, 60, 0.52) 40%,
    rgba(15, 25, 60, 0.30) 100%
  );
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(184,150,46,0.5);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero-kicker {
  display: block;
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1;
  padding-left: 2px;
}
.hero-kicker strong {
  color: #fff;
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 22px);
  position: relative;
  padding-bottom: 3px;
}
.hero-kicker strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-main {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.35;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-main em {
  font-style: normal;
  color: var(--pink);
  display: block;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  max-width: 580px;
  margin-bottom: 40px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
/* Hero service block (新デザイン) */
.hero-service-block {
  margin-bottom: 44px;
}
.hero-service-label {
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-service-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212,175,55,0.6);
}
.hero-service-label span {
  color: rgba(255,255,255,0.75);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(212,175,55,0.55);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-tag::before {
  content: '✓';
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.hero-tag:hover {
  background: rgba(212,175,55,0.18);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-note { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* ========== USP BAND ========== */
.usp-band {
  background: var(--cream);
  border-top: 15px solid var(--navy);
  border-bottom: 15px solid var(--navy);
  padding: 72px 20px;
  text-align: center;
  position: relative;
}
.usp-band::before,
.usp-band::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.usp-band::before { top: 20px; }
.usp-band::after  { bottom: 20px; }

.usp-band-inner {
  max-width: 640px;
  margin: 0 auto;
}
.usp-band-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}
.usp-band-num {
  margin-bottom: 20px;
}
.usp-band-count {
  font-family: 'Georgia', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
  white-space: nowrap;
}
.usp-band-count small {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0;
}
.usp-band-count-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.usp-band-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
  opacity: 0.6;
}
.usp-band-story {
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  line-height: 2.2;
}
.usp-band-story em {
  font-style: normal;
  color: var(--navy);
  font-weight: 700;
}
.usp-marker {
  display: inline;
  background: linear-gradient(transparent 55%, rgba(184,150,46,0.22) 55%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.usp-band-main {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.usp-band-main em {
  font-style: normal;
  color: var(--gold);
  border-bottom: 2px solid var(--gold-light);
}

/* ========== URGENCY ========== */
.urgency-bar {
  background: linear-gradient(135deg, #8b1a1a, #c0392b);
  color: white;
  text-align: center;
  padding: 18px 20px;
}
.urgency-bar p { font-size: 16px; font-weight: 700; letter-spacing: 1px; }
.urgency-bar span { font-size: 13px; font-weight: 400; opacity: 0.85; margin-left: 12px; }

/* ========== PROBLEM SECTION ========== */
.problem {
  background: white;
  padding: 80px 20px;
}
.problem-intro {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 680px;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  background: var(--cream);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}
.problem-card-num {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.problem-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.problem-card p { font-size: 15px; color: var(--text-mid); line-height: 1.8; }
.problem-arrow {
  text-align: center;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.problem-arrow-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--text-mid);
}
.problem-arrow-icon {
  font-size: 36px;
  color: var(--red);
  animation: bounceDown 1.2s ease-in-out infinite;
  display: block;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.problem-result {
  position: relative;
  overflow: hidden;
  background-image: url('img/photo1.webp');
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #2a0808;
  margin-top: 0;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.problem-result::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,10,10,0.62) 0%, rgba(30,10,10,0.52) 100%);
}
.problem-result-inner {
  position: relative;
  z-index: 1;
  padding: 40px 40px;
}
.problem-result-quote {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: white;
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.problem-result-quote em {
  font-style: normal;
  color: #ff9090;
  border-bottom: 2px solid #ff6060;
}
.problem-result-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  line-height: 1.9;
  max-width: 620px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

/* ========== MESSAGE SECTION ========== */
.message-section {
  background: var(--cream);
  padding: 80px 20px;
  border-top: 3px solid var(--gold);
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* section-title内のspanをgold色に（emと同様） */
.section-title span {
  font-style: normal;
  color: var(--gold);
  border-bottom: 2px solid var(--gold-light);
}

.message-card {
  display: flex;
  gap: 52px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  padding: 48px 44px;
}

.message-text {
  flex: 1;
  min-width: 0;
}

.message-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 22px;
}

.message-text p:last-child {
  margin-bottom: 0;
}

/* 冒頭のお客様の声 */
.message-text p em {
  font-style: normal;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 18px;
  padding: 14px 20px;
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
}

/* 代表者写真エリア */
.message-president {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.message-president-img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--gold);
  display: block;
}

.message-president-name {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.9;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  width: 100%;
}

.message-president-name strong {
  display: block;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin: 6px 0 8px;
}

/* ========== COPY SECTION ========== */
.copy-section {
  background: var(--navy);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.copy-section::after {
  content: '相続';
  position: absolute;
  font-family: 'Shippori Mincho', serif;
  font-size: 280px;
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}
.copy-section .section-label { color: rgba(184,150,46,0.8); }
.copy-big {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
}
.copy-big em { font-style: normal; color: var(--gold-light); }
.copy-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.9; max-width: 560px; margin: 0 auto; position: relative; }

/* ========== QUIZ / SURVEY ========== */
.survey {
  background: var(--cream);
  padding: 80px 20px;
}
.survey-box {
  background: white;
  border: 1px solid var(--border);
  padding: 48px 40px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.survey-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.survey-header p { font-size: 16px; color: var(--text-mid); margin-top: 12px; }
.survey-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
  align-items: center;
}
.survey-progress-bar {
  height: 4px;
  flex: 1;
  background: var(--border);
  border-radius: 2px;
  transition: background 0.4s;
}
.survey-progress-bar.active { background: var(--gold); }
.survey-progress-label {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
  margin-left: 8px;
}
.survey-step { display: none; }
.survey-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.survey-q-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}
.survey-q-text {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.5;
}
.survey-options { display: grid; gap: 12px; }
.survey-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 2px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.survey-option:hover { border-color: var(--gold); background: var(--gold-pale); }
.survey-option.selected { border-color: var(--navy); background: var(--navy); color: white; }
.survey-option-icon {
  width: 30px; height: 30px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.survey-option.selected .survey-option-icon { background: var(--gold); border-color: var(--gold); }

/* survey result */
.survey-result {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.survey-result.active { display: block; }
.result-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 8px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.result-thanks {
  font-size: 15px;
  color: var(--navy);
  background: #fdf9f0;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 6px;
  padding: 12px 20px;
  margin-bottom: 24px;
  line-height: 1.9;
  text-align: center;
}
.result-headline {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.5;
}
.result-headline em { font-style: normal; color: var(--gold); }
.result-desc { font-size: 16px; color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; }
.result-monitor-note {
  background: linear-gradient(135deg, rgba(12,35,64,0.04), rgba(212,175,55,0.10));
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 14px 18px;
  margin-bottom: 28px;
}
.result-monitor-main {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 8px;
}
.result-monitor-main strong { color: var(--navy); font-weight: 700; }
.result-monitor-main em { font-style: normal; color: #b8932a; font-weight: 700; }
.result-monitor-asterisk {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.price-box {
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  padding: 32px;
  margin: 0 auto 32px;
  max-width: 480px;
}
.price-box-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.price-normal {
  font-size: 15px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-monitor {
  font-family: 'Shippori Mincho', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
}
.price-monitor span { font-size: 20px; }
.price-note {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 10px;
}
.result-warning {
  background: #fff5f5;
  border: 1px solid #f5c6c6;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--red);
  margin-bottom: 28px;
  text-align: left;
}
.btn-result-cta {
  margin-bottom: 16px;
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 17px;
  padding: 20px;
}
.result-sub-note { font-size: 14px; color: var(--text-light); }

.report-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.report-img-box {
  background: var(--cream);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.report-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.report-img-box:hover img {
  transform: scale(1.04);
}
.report-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,39,68,0.8);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px;
  text-align: center;
}
.report-img-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26,39,68,0.75);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
}
.report-img-box:hover .report-img-zoom {
  opacity: 1;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active {
  display: flex;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 2px solid var(--gold);
  display: block;
  cursor: pointer;
}
.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 32px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
  user-select: none;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 4px;
  gap: 12px;
}
.lightbox-counter {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .lightbox-prev { left: 6px; width: 40px; height: 40px; font-size: 24px; }
  .lightbox-next { right: 6px; width: 40px; height: 40px; font-size: 24px; }
}

/* ========== CASE STUDY ========== */
.cases {
  background: var(--cream);
  padding: 80px 20px;
}
.case-cards { display: grid; gap: 28px; }
.case-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
}
.case-header {
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-tag {
  background: var(--gold);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
}
.case-title-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 800;
  color: white;
  line-height: 1.4;
}
.case-body { padding: 20px 24px; }
.case-video-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding: 10px 14px;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 4px;
  background: rgba(212,175,55,0.06);
  transition: background 0.2s;
  user-select: none;
}
.case-video-label:hover { background: rgba(212,175,55,0.14); }
.case-video-arrow {
  font-size: 13px;
  color: var(--text-light);
  transition: transform 0.3s;
}
.case-body.open .case-video-arrow { transform: rotate(180deg); }
.case-video-wrap {
  display: none;
  padding-top: 16px;
}
.case-body.open .case-video-wrap { display: block; animation: fadeIn 0.3s ease; }
.case-video {
  width: 100%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.case-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}
.case-result {
  margin: 0 0 20px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}

.case-summary {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.case-summary-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(212,175,55,0.55);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  color: var(--navy);
  white-space: nowrap;
}
.case-summary-text::before {
  content: '✓';
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 600px) {
  .case-summary-text {
    font-size: 13px;
    padding: 8px 16px;
    white-space: normal;
    align-items: flex-start;
    max-width: 90%;
  }
}

.voice-mission {
  margin-top: 40px;
  text-align: center;
}
.voice-mission-text {
  display: inline-block;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  color: var(--navy);
  letter-spacing: 0.06em;
  padding: 32px 48px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.voice-mission-text em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
}
@media (max-width: 600px) {
  .voice-mission-text {
    font-size: 15px;
    padding: 24px 20px;
    text-align: left;
  }
}

/* ========== VISION ========== */
.vision {
  background: white;
  padding: 80px 20px;
}
.vision-concept {
  margin-bottom: 40px;
  text-align: center;
}
.vision-concept-text {
  display: inline-block;
  background: #f9f6ef;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 28px 40px;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 2.2;
  letter-spacing: 0.06em;
}
.vision-concept-text em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
}
.vision-concept-text strong {
  display: block;
  font-size: 19px;
  margin-top: 4px;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .vision-concept-text {
    font-size: 14px;
    padding: 22px 20px;
    text-align: left;
  }
  .vision-concept-text strong { font-size: 16px; }
}

.vision-img-wrap {
  text-align: center;
  margin-bottom: 48px;
}
.vision-img {
  max-width: 100%;
  width: 540px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 12px;
}
.vision-quote {
  position: relative;
  background: white;
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 28px 20px;
  max-width: 960px;
  margin: 0 auto 48px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  text-align: center;
  overflow: hidden;
}
.vision-quote-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2.4;
  margin: 0;
}
.vision-quote-em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  line-height: inherit;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 48px;
  overflow: hidden;
}
.vision-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.vision-item:last-child { border-right: none; }
.vision-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.vision-item:hover::after { transform: scaleX(1); }
.vision-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.vision-icon { font-size: 28px; flex-shrink: 0; }
.vision-item h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0;
}
.vision-item p { font-size: 15px; color: var(--text-mid); line-height: 1.8; }

.vs-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.vs-table th {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.vs-table th:first-child { background: #f0f0f0; color: var(--text-mid); }
.vs-table th:nth-child(2) { background: #f7f0f0; color: var(--red); }
.vs-table th:last-child { background: var(--navy); color: white; }
.vs-table td {
  padding: 14px 20px;
  font-size: 15px;
  border-top: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
}
.vs-table td:first-child { background: #fafafa; color: var(--text-mid); }
.vs-table td:last-child { background: var(--gold-pale); color: var(--navy); font-weight: 500; }
.vs-icon-bad { color: var(--red); font-weight: 700; }
.vs-icon-good { color: #2a7a3b; font-weight: 700; }

/* ========== UPSELL ========== */
.upsell {
  background: linear-gradient(135deg, var(--navy) 0%, #0e1a33 100%);
  padding: 80px 20px;
}
.upsell .section-label { color: var(--gold-light); }
.upsell .section-title { color: white; }
.upsell-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,46,0.3);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.upsell-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.4;
}
.upsell-card p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.9; margin-bottom: 28px; }
.upsell-points { margin-bottom: 36px; }
.upsell-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.upsell-point-check { color: var(--gold-light); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.upsell-price {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(184,150,46,0.3);
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.upsell-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.upsell-price-item-name { font-size: 15px; color: rgba(255,255,255,0.65); }
.upsell-price-item-prices { display: flex; align-items: center; gap: 12px; }
.upsell-price-item-original { font-size: 14px; color: rgba(255,255,255,0.35); text-decoration: line-through; white-space: nowrap; }
.upsell-price-item-set { font-size: 18px; font-weight: 700; color: var(--gold-light); white-space: nowrap; }

.upsell-price-arrow {
  text-align: center;
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  padding: 14px 0 6px;
}
.upsell-price-arrow s { color: rgba(255,255,255,0.4); text-decoration-color: rgba(255,255,255,0.35); }

.upsell-price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(184,150,46,0.35);
}
.upsell-price-total-label { font-size: 16px; color: var(--gold-light); font-weight: 700; white-space: nowrap; }
.upsell-price-total-value {
  font-family: 'Shippori Mincho', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--gold-light);
}
.upsell-price-total-value span { font-size: 18px; }
.upsell-price-saving {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(184,150,46,0.5);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ========== PROFESSIONAL ========== */
.professional {
  background: var(--cream);
  padding: 80px 20px;
}
.professional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.professional-card {
  background: white;
  border: 1px solid var(--border);
  padding: 28px 22px;
  text-align: center;
}
.professional-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.professional-card h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.professional-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ========== FAQ ========== */
.faq {
  background: white;
  padding: 80px 20px;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-icon { color: var(--gold); font-size: 20px; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.faq-q-arrow { margin-left: auto; font-size: 18px; color: var(--text-light); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 24px 36px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.9;
}
.faq-item.open .faq-a { display: block; animation: fadeIn 0.3s ease; }

/* ========== VOICE ========== */
.voice {
  background: var(--cream);
  padding: 80px 20px;
}
.voice-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.voice-item {
  background: white;
  border: 1px solid var(--border);
  padding: 24px 22px;
  position: relative;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}
.voice-item::before {
  content: '"';
  position: absolute;
  top: 12px; left: 14px;
  font-family: 'Shippori Mincho', serif;
  font-size: 40px;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.4;
}
.voice-item p { padding-left: 8px; }

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--navy);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,150,46,0.1) 0%, transparent 60%);
}
.cta-section .section-title { color: white; position: relative; }
.cta-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,150,46,0.25);
  padding: 48px 40px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.cta-price-label { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.cta-price-normal { font-size: 17px; color: rgba(255,255,255,0.4); text-decoration: line-through; margin-bottom: 4px; }
.cta-price-monitor {
  font-family: 'Shippori Mincho', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 6px;
}
.cta-price-monitor span { font-size: 22px; }
.cta-price-note { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }

.cta-price-sub {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  margin-bottom: 32px;
}
.cta-price-sub-label { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.cta-price-sub-normal { font-size: 14px; color: rgba(255,255,255,0.3); text-decoration: line-through; margin-bottom: 2px; }
.cta-price-sub-monitor {
  font-family: 'Shippori Mincho', serif;
  font-size: 34px;
  font-weight: 800;
  color: rgba(255,255,255,0.65);
  line-height: 1.1;
}
.cta-price-sub-monitor span { font-size: 15px; }
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cta-buttons a { width: 100%; max-width: 400px; text-align: center; font-size: 18px; padding: 20px; }
.cta-buttons .btn-line { max-width: 280px; width: auto; }
.cta-tel-label { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 8px; }
.cta-tel {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  display: block;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.cta-tel:hover { color: white; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 24px; line-height: 1.8; }
.cta-note a,
.cta-note a:link,
.cta-note a:visited,
.cta-note a:hover,
.cta-note a:active { color: rgba(255,255,255,0.55); text-decoration: underline; }

.cta-guarantee {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,150,46,0.6);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 24px 0 32px;
}
.cta-guarantee-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.cta-guarantee-text { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.85; margin: 0; }

/* ========== CONTACT FORM ========== */

/* cta-boxを少し広げてフォームが窮屈にならないようにする */
.cta-section .cta-box { max-width: 720px; }

.contact-form {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 8px;
}

.cf-field { margin-bottom: 20px; }

.cf-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}

.cf-required {
  font-size: 12px;
  background: var(--gold);
  color: #fff;
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.cf-optional {
  font-size: 12px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 400;
  flex-shrink: 0;
}

.cf-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,150,46,0.35);
  color: #fff;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.cf-input::placeholder { color: rgba(255,255,255,0.28); }
.cf-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}
.cf-input.cf-invalid {
  border-color: #e05252;
  background: rgba(224,82,82,0.08);
}

/* Textarea */
.cf-textarea { resize: vertical; min-height: 96px; line-height: 1.7; }

/* Date + Time 横並び */
.cf-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Select の矢印 */
.cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%23b8962e' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.cf-select option { background: #1a2744; color: #fff; }

/* ラジオボタン */
.cf-radios { display: flex; flex-direction: column; gap: 10px; }

.cf-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  padding: 12px 16px;
  border: 1px solid rgba(184,150,46,0.22);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.cf-radio-label:hover { border-color: var(--gold); background: rgba(184,150,46,0.07); }
.cf-radio-label input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.cf-radio-label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184,150,46,0.13);
  color: #fff;
}

.cf-radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cf-radio-label:has(input:checked) .cf-radio-custom {
  border-color: var(--gold);
  background: var(--gold);
}
.cf-radio-custom::after {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.cf-radio-label:has(input:checked) .cf-radio-custom::after { opacity: 1; }

.cf-price { color: var(--gold); font-weight: 700; }

/* エラーメッセージ */
.cf-error {
  font-size: 13px;
  color: #e05252;
  margin-top: 5px;
  min-height: 1em;
  line-height: 1.5;
}

/* 送信ボタン */
.cf-submit { width: 100%; font-size: 18px; padding: 22px; margin-top: 8px; letter-spacing: 0.05em; cursor: pointer; }
.cf-submit:disabled {
  background: #888;
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
  pointer-events: none;
}

/* プライバシーポリシー */
.cf-privacy-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.cf-privacy-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 14px 16px;
  max-height: 160px;
  overflow-y: scroll;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 14px;
}
.cf-privacy-box p { margin-bottom: 10px; }
.cf-privacy-box p:last-child { margin-bottom: 0; }
.cf-privacy-box strong { color: rgba(255,255,255,0.7); font-weight: 700; }
.cf-consent-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.cf-consent-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.cf-consent-label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* "または" 区切り */
.cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 28px;
  color: rgba(255,255,255,0.28);
  font-size: 13px;
  letter-spacing: 2px;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* モバイル調整 */
/* ========== STEP FLOW ========== */
.stepflow-section {
  background: #fff;
  padding: 80px 20px;
}
.stepflow-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stepflow-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #efefef;
}
.stepflow-item:last-child { border-bottom: none; }
.stepflow-num {
  width: 52px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}
.stepflow-step {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-family: 'Georgia', serif;
  line-height: 1;
  margin-bottom: 2px;
}
.stepflow-digit {
  font-family: 'Georgia', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stepflow-body {
  flex: 1;
  border-left: 2px solid rgba(212,175,55,0.45);
  padding-left: 24px;
  padding-top: 4px;
}
.stepflow-title {
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.stepflow-text {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}
.stepflow-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.7;
}

/* ========== LEGAL NOTE ========== */
.legal-note {
  background: #f0f0f0;
  padding: 40px 20px;
}
.legal-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-item {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.85;
}
.legal-refund-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 32px 20px 90px;
  text-align: center;
  font-size: 14px;
}
.footer a { color: rgba(255,255,255,0.8); text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-logo-img {
  height: 48px;
  width: auto;
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-logo-img:hover { opacity: 1; }

/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { color: white; font-size: 14px; font-weight: 700; display: none; }
.sticky-cta a { padding: 10px 18px; font-size: 14px; }
@media (min-width: 600px) { .sticky-cta-text { display: block; } }

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
  /* SP専用改行を表示 */
  .sp-br { display: inline; }

  /* フォーム */
  .cf-datetime { grid-template-columns: 1fr; gap: 8px; }
  .cf-input { font-size: 16px; padding: 12px 14px; } /* iOS zoom 防止 */
  .cf-submit { font-size: 16px; padding: 18px; }
  .cf-label { font-size: 13px; }
  .cta-section .cta-box { max-width: 100%; }

  /* VISION */
  .vision-item { padding: 20px; }
  .vision-icon { font-size: 26px; margin-bottom: 10px; }
  .vision-quote-text { font-size: 15px; }
  .vision-item h4 { font-size: 17px; margin-bottom: 6px; }
  .vision-item p { font-size: 14px; line-height: 1.7; }

  /* STEP FLOW */
  .stepflow-section { padding: 56px 0; }
  .stepflow-item { gap: 16px; padding: 22px 0; }
  .stepflow-num { width: 44px; }
  .stepflow-digit { font-size: 38px; }
  .stepflow-body { padding-left: 16px; }
  .stepflow-title { font-size: 16px; }
  .stepflow-text { font-size: 14px; }

  .container { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .survey-box { padding: 32px 20px; }

  /* セクション左右余白はcontainerに任せる（二重パディング解消） */
  .problem, .message-section, .copy-section, .survey,
  .cases, .vision, .upsell, .professional, .faq, .voice, .cta-section {
    padding-left: 0;
    padding-right: 0;
  }

  /* problem-result: スマホで全幅・上下均等トリミング */
  .problem-result {
    margin-left: -20px;
    margin-right: -20px;
    background-size: 100% auto;
    background-position: center center;
    min-height: 0;
  }
  .problem-result-inner {
    padding: 36px 24px;
  }


  /* 比較テーブル: カード形式に変換 */
  .vs-table thead { display: none; }
  .vs-table, .vs-table tbody { display: block; }
  .vs-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .vs-table td {
    padding: 10px 12px;
    font-size: 14px;
    border-top: none;
  }
  .vs-table td:first-child {
    grid-column: 1 / -1;
    background: var(--navy);
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 8px 12px;
  }
  .vs-table td:nth-child(2) { border-right: 1px solid var(--border); }
  .vs-table td:nth-child(2)::before {
    content: "一般的なサービス";
    display: block;
    font-size: 14px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }
  .vs-table td:last-child::before {
    content: "相続セレクション";
    display: block;
    font-size: 14px;
    color: #2a7a3b;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }
  .case-tag { white-space: nowrap; }
  .case-header { flex-wrap: wrap; gap: 8px; padding: 14px 10px; }
  .case-title-text { font-size: 16px; }
  .case-body { padding: 16px 20px; }
  .upsell-card { padding: 28px 20px; }

  /* UPSELLセクション */
  .upsell-card h3 { font-size: 20px; }
  .upsell-price { padding: 18px 16px; }
  .upsell-price-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .upsell-price-item-name { font-size: 15px; }
  .upsell-price-item-original { font-size: 13px; }
  .upsell-price-item-set { font-size: 17px; }
  .upsell-price-arrow { font-size: 16px; }
  .upsell-price-total { flex-wrap: wrap; gap: 4px 0; }
  .upsell-price-total-label { width: 100%; order: 1; font-size: 18px; }
  .upsell-price-saving { order: 2; font-size: 13px; align-self: center; }
  .upsell-price-total-value { order: 3; font-size: 34px; }
  .upsell-price-total-value span { font-size: 16px; }

  /* Hero CTA: スマホで全幅・折り返し防止 */
  .hero-cta .btn-primary {
    width: 100%;
    padding: 16px 20px !important;
    font-size: 15px !important;
    text-align: center;
    box-sizing: border-box;
  }
  .hero-note { font-size: 12px; line-height: 1.7; }

  /* CTAセクション 価格 */
  .cta-price-monitor { font-size: 48px; }
  .cta-price-monitor span { font-size: 19px; }

  /* コンタクトボックス */
  .cta-box { padding: 32px 20px; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-navy,
  .cta-buttons .btn-line { font-size: 15px; padding: 14px 16px; }
  .cta-note { font-size: 12px; line-height: 1.9; text-align: left; }
  .report-images { grid-template-columns: 1fr 1fr; }
  .header-tel { display: none; }

  /* Hero: スマホでは右寄せにして右側の女性が見えるように */
  .hero {
    background-position: 75% center;
    padding: 60px 12px 80px;
  }

  /* Hero service block: スマホ調整 */
  .hero-service-label { font-size: 14px; margin-bottom: 10px; }
  .hero-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .hero-tags::-webkit-scrollbar { display: none; }
  .hero-tag { font-size: 12px; padding: 5px 12px; flex-shrink: 0; }


  /* ロゴ: スマホでは少し小さく */
  .header-logo-img {
    height: 48px;
  }

  /* MESSAGE セクション: スマホでは縦並び */
  .message-card {
    flex-direction: column;
    gap: 32px;
    padding: 28px 20px;
  }
  .message-president {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    box-sizing: border-box;
  }
  .message-president-img {
    width: 140px;
    height: 185px;
    flex-shrink: 0;
  }
  .message-president-name {
    flex: 1;
    min-width: 0;
    text-align: left;
    border-top: none;
    border-left: 1px solid var(--border);
    padding-top: 0;
    padding-left: 16px;
    font-size: 11px;
  }
  .message-president-name span { white-space: normal; }
  .message-president-name strong {
    font-size: 13px;
  }

  /* ===== スマホ フォントサイズ調整 ===== */

  /* ヒーロー キャッチ前コピー */
  .hero-kicker { font-size: 14px; margin-bottom: 12px; }
  .hero-kicker strong { font-size: 16px; }

  /* ヒーロー見出し */
  .hero-main {
    font-size: 24px;
  }

  /* ヒーロー サブテキスト */
  .hero-sub {
    font-size: 15px;
    line-height: 1.8;
  }

  /* 各セクションのh2 */
  .section-title {
    font-size: 22px;
  }

  /* urgency bar: spanを改行して読みやすく */
  .urgency-bar p { font-size: 14px; letter-spacing: 0; }
  .urgency-bar span { display: block; margin-left: 0; margin-top: 4px; font-size: 12px; }

  /* COPY SECTIONキャッチコピー: 1行に収める */
  .copy-big { font-size: 24px; }

  /* USP BAND */
  .usp-band { padding: 56px 20px; }
  .usp-band-count { font-size: 48px; }
  .usp-band-count small { font-size: 22px; }
  .usp-band-main { font-size: 18px; }

  .sp-hide { display: none; }
}

