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

:root {
  --orange: #E8621A;
  --orange-light: #F07030;
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --navy-mid: #2A5298;
  --sky: #4A90C4;
  --sky-light: #E8F4FF;
  --gray-bg: #F5F7FA;
  --gray-border: #DDE3EC;
  --text: #222;
  --text-mid: #444;
  --text-light: #666;
  --white: #fff;
  --section-pad: 80px 20px;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(150deg, #EAF3FC 0%, #D2E8F8 55%, #BDD9F2 100%);
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}

.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 42px;
  position: relative;
  z-index: 1;
}

/* メインコンテンツ行（左テキスト＋右画像） */
.hero-main {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  min-height: 640px;
}

/* ---- 左カラム ---- */
.hero-content {
  padding: 48px 32px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  width: fit-content;
}

.hero-badge-icon { font-size: 14px; }

.hero-sub {
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-headline {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.28;
  margin-bottom: 12px;
}

.hero-headline .hl { color: var(--orange); }

.hero-divider {
  width: 44px;
  height: 4px;
  background: var(--navy);
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 22px;
}

.hero-desc strong { color: var(--navy-dark); font-weight: 800; }

/* 実績数字 */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(180,210,238,0.7);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.hero-stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.1;
}

.stat-num em {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(180,210,238,0.8);
  flex-shrink: 0;
}

/* タグ行 */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1.5px solid #BCCFE4;
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.hero-tag-item .ti { font-size: 14px; }

/* CTAボタン群 */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}

.hero-cta .btn-full { width: 100%; }

/* ---- 右カラム（画像） ---- */
.hero-image-col {
  position: relative;
  overflow: hidden;
}

/* フローティングカード */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(180,210,238,0.8);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 6px 24px rgba(18,40,80,0.10);
  backdrop-filter: blur(8px);
  z-index: 5;
  white-space: nowrap;
  animation: floatCard 3.5s ease-in-out infinite;
  max-width: 200px;
}

.card-top-left  { bottom: 420px; left: 4px;  animation-delay: 0s; }
.card-top-right { bottom: 330px; right: 4px; animation-delay: 1.2s; }
.card-mid       { bottom: 240px; left: 4px;  animation-delay: 2.4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.fc-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.fc-body {
  display: flex;
  flex-direction: column;
}

.fc-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}

.fc-num strong { color: var(--orange); }

.fc-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

/* 街並みシルエット（右下） */
.hero-buildings {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 1;
  pointer-events: none;
}

/* 白い円形背景 */
.hero-img-circle {
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.92) 0%, rgba(210,232,250,0.65) 55%, transparent 78%);
  border-radius: 50%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* 人物画像 */
.hero-image-col img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(2px 6px 16px rgba(18,40,80,0.10));
}

/* 中央下の円形バッジ */
.hero-circle-badge {
  position: absolute;
  bottom: 280px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 190px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  border: 2px solid #D6E9F8;
  z-index: 4;
}

.hero-circle-badge .badge-sub {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.hero-circle-badge .badge-main {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 8px;
}

.hero-circle-badge .badge-stars {
  color: #F5A623;
  font-size: 17px;
  letter-spacing: 2px;
}

/* ---- 下部 3特徴カード ---- */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(180,212,238,0.6);
  overflow: hidden;
  border-top: 2px solid rgba(150,195,235,0.5);
  border: 2px solid var(--gray-border);
  box-shadow: 0 6px 24px rgba(18,40,80,0.10);
  border-radius: 12px;
}

.hero-feature {
  background: rgba(255,255,255,0.95);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero-feature-icon {
  width: 46px;
  height: 46px;
  background: var(--sky-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.hero-feature-text h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.hero-feature-text p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== BUTTONS ===== */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  width: 100%;
  text-align: center;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(232,98,26,0.35);
}

.btn-outline-navy {
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-gray {
  background: var(--white);
  border: 2px solid var(--gray-border);
  color: var(--text-mid);
}

.btn-white {
  background: var(--white);
  color: var(--navy-dark);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== SECTION COMMON ===== */
.section { padding: var(--section-pad); }

.section-white { background: var(--white); }
.section-gray  { background: #EDEEF2; }
.section-navy  { background: var(--navy-dark); color: var(--white); }
.section-sky   { background: var(--sky-light); }

.section + .section {
  border-top: 1px solid var(--gray-border);
}

.section-title {
  text-align: center;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title.white { color: var(--white); }
.section-title.white::after { background: var(--orange); }

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== PROBLEMS ===== */
.problems-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.problems-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.problems-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--navy);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.problem-check {
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

/* ===== WHY NOW ===== */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

.why-text p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.9;
}

.why-text .highlight {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
}

.why-text .emphasis {
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
}

.why-chart {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 20px 20px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}

.chart-header-icon { font-size: 16px; }

.chart-canvas-wrap {
  position: relative;
  width: 100%;
}

.chart-gap-note {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  padding: 8px;
  background: #FFF3ED;
  border-radius: 6px;
}

/* ===== PROPERTY TYPES ===== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-img-svg {
  background: linear-gradient(135deg, #EAF3FC, #BDD9F2);
}

.property-img-svg img {
  object-fit: contain !important;
  padding: 20px;
}

.property-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-border);
}

.property-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-img img {
  transform: scale(1.04);
}

.property-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(18,40,80,0.75));
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  padding: 24px 20px 14px;
}

.property-body {
  padding: 20px 22px 22px;
}

.property-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* サービスカード画像 */
.service-card-img {
  height: 160px;
  margin: -28px -22px 18px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SERVICE ===== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  border-top: 4px solid var(--navy);
}

.service-num {
  position: absolute;
  top: -18px;
  left: 22px;
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(232,98,26,0.4);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 10px;
  margin-top: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  font-size: 12px;
  background: var(--sky-light);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid #BDD8EE;
}

.service-tag.orange {
  background: #FFF0E6;
  color: var(--orange);
  border-color: #FFD4B5;
}

/* ===== DIFFERENCE (table design) ===== */
.diff-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 15px;
  margin-top: -24px;
  margin-bottom: 36px;
}

.diff-table-wrap {
  border: 1.5px solid var(--gray-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* ヘッダー */
.diff-table-header {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
}

.diff-th-label {
  background: #F8F9FC;
  border-right: 1px solid var(--gray-border);
}

.diff-th-others {
  background: #F0F2F7;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  text-align: center;
  border-right: 1px solid var(--gray-border);
}

.diff-th-ours {
  background: var(--navy-dark);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.diff-th-icon { font-size: 18px; }

/* 行 */
.diff-tr {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  border-top: 1px solid var(--gray-border);
}

.diff-td-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  background: #F8F9FC;
  border-right: 1px solid var(--gray-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
}

.diff-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.diff-td-others {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  font-size: 13px;
  color: var(--text-mid);
  border-right: 1px solid var(--gray-border);
  background: var(--white);
}

.diff-x-mark {
  color: #C0392B;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

.diff-td-ours {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border-left: 4px solid var(--orange);
}

.diff-check-circle {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

.diff-td-ours strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.diff-td-ours p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* CTAボタン行 */
.diff-cta-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  border-top: 1px solid var(--gray-border);
}

.diff-cta-spacer {
  background: #F8F9FC;
  border-right: 1px solid var(--gray-border);
}

.diff-cta-spacer-mid {
  background: var(--white);
}

.diff-cta-col {
  background: var(--orange);
  padding: 18px 20px;
  text-align: center;
}

.diff-cta-btn {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  display: block;
}

/* 下部注記 */
.diff-table-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 14px 20px;
  background: var(--sky-light);
  border-radius: 8px;
  border: 1px solid #BDD8EE;
}

/* ===== FLOW ===== */
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}

.flow-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.flow-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}

.flow-arrow {
  font-size: 20px;
  color: var(--orange);
  align-self: flex-start;
  margin-top: 20px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid var(--sky);
}

.price-card.featured {
  border-top-color: var(--orange);
}

.price-card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.price-card-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-border);
}

.price-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount span  { font-size: 20px; }
.price-amount small { font-size: 16px; font-weight: 700; }

.price-card.featured .price-amount { color: var(--orange); }

.price-unit {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.price-list { list-style: none; }

.price-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.price-list li::before {
  content: '✔';
  color: var(--sky);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
}

.price-examples {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.price-examples h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.price-example-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-example-item {
  background: var(--sky-light);
  border-radius: 8px;
  padding: 16px;
  border-left: 4px solid var(--navy);
}

.price-example-item .label  { font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
.price-example-item .val    { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.price-example-item .result { font-size: 16px; font-weight: 900; color: var(--orange); }

/* ===== TRUST ===== */
.trust-box {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.trust-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.trust-text h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.trust-text p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 10px;
}

.trust-highlight {
  background: #FFF3ED;
  border-left: 4px solid var(--orange);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

.trust-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.trust-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-dark);
  user-select: none;
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.faq-toggle {
  margin-left: auto;
  font-size: 20px;
  transition: transform 0.3s;
  color: var(--text-light);
  flex-shrink: 0;
}

.faq-item.open .faq-toggle { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 22px 18px 64px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

.faq-a-icon {
  display: inline-block;
  font-weight: 900;
  color: var(--navy);
  margin-right: 6px;
}

.faq-item.open .faq-a { display: block; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,40,80,0.88) 0%, rgba(42,82,152,0.82) 100%);
  z-index: 0;
}

.final-cta .tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}

.final-cta h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.final-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-btns .btn {
  width: auto;
  min-width: 200px;
  padding: 16px 28px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-cta .btn {
  width: auto;
  flex: 1;
  max-width: 220px;
  padding: 12px 16px;
  font-size: 13px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: var(--section-pad);
  background: #EDEEF2;
  border-top: 1px solid var(--gray-border);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.contact-subtitle {
  color: var(--text-mid);
  font-size: 15px;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(18,40,80,0.10);
  padding: 48px 48px;
}

.contact-card-iframe {
  padding: 0;
  overflow: hidden;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.required-label::after {
  content: '必須';
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 600;
}

.form-input,
.form-textarea {
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.08);
}

.form-textarea {
  resize: vertical;
  line-height: 1.6;
}

/* ラジオボタン */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.radio-item:hover {
  border-color: var(--navy);
  background: var(--sky-light);
}

.radio-item input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s;
  position: relative;
}

.radio-item input[type="radio"]:checked ~ .radio-custom {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
}

.radio-item input[type="radio"]:checked ~ span:last-child,
.radio-item:has(input:checked) {
  color: var(--navy-dark);
  font-weight: 600;
}

.radio-item:has(input:checked) {
  border-color: var(--orange);
  background: #FFF5F0;
}

/* 送信エリア */
.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.form-btn {
  min-width: 240px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
}

/* 送信完了 */
.form-thanks {
  text-align: center;
  padding: 60px 20px;
}

.thanks-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-thanks h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.form-thanks p {
  color: var(--text-mid);
  font-size: 15px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 30px 20px 80px;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --section-pad: 56px 16px; }

  .hero-wrap { padding: 0 16px; }

  .hero-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 36px 0 20px;
  }

  .hero-image-col {
    min-height: 320px;
  }

  .hero-img-circle {
    width: 300px;
    height: 300px;
    bottom: 0;
  }

  .hero-image-col img {
    height: 100%;
  }

  .hero-circle-badge {
    display: none;
  }

  .hero-cta {
    max-width: 100%;
  }

  .hero-cta .btn-full { grid-column: auto; }

  .hero-features { grid-template-columns: 1fr; }

  .property-grid        { grid-template-columns: 1fr; }
  .problems-layout      { grid-template-columns: 1fr; }
  .problems-image       { max-height: 260px; }
  .problems-grid        { grid-template-columns: 1fr; }
  .why-layout           { grid-template-columns: 1fr; gap: 28px; }
  .why-chart            { max-width: 100%; margin: 0; }
  .why-text             { background: var(--white); border-radius: 12px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
  .why-text p           { font-size: 14px; line-height: 1.85; margin-bottom: 12px; }
  .why-text .highlight  { font-size: 15px; line-height: 1.7; }
  .why-text .emphasis   { font-size: 16px; }
  .service-cards        { grid-template-columns: 1fr; }
  .pricing-grid         { grid-template-columns: 1fr; }
  .price-example-items  { grid-template-columns: 1fr; }

  /* テーブルをカード形式に変換 */
  .diff-subtitle { font-size: 13px; margin-bottom: 24px; }

  .diff-table-header { display: none; }

  .diff-tr {
    grid-template-columns: 1fr;
    border-top: none;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1.5px solid var(--gray-border);
  }

  .diff-td-label {
    background: var(--navy-dark);
    color: var(--white);
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 12px 16px;
    font-size: 13px;
  }

  .diff-icon-box { background: rgba(255,255,255,0.15) !important; }

  .diff-td-others {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
    padding: 12px 16px;
    font-size: 13px;
    background: #FFF8F8;
  }

  .diff-td-ours {
    padding: 14px 16px;
    font-size: 13px;
    border-left: 4px solid var(--orange);
    background: var(--white);
  }

  .diff-cta-row {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .diff-cta-spacer,
  .diff-cta-spacer-mid { display: none; }

  .diff-cta-col {
    border-radius: 12px;
    margin-top: 4px;
    padding: 16px;
  }

  .diff-cta-btn { font-size: 15px; }

  .flow-steps { gap: 2px; }
  .flow-step  { min-width: 60px; }
  .flow-icon  { width: 48px; height: 48px; font-size: 20px; }
  .flow-label { font-size: 10px; }
  .flow-arrow { font-size: 16px; margin-top: 14px; }

  .trust-box {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .trust-image { display: none; }

  .final-cta                  { padding: 52px 20px; background-position: center top; }
  .final-cta .tag             { font-size: 12px; padding: 5px 14px; margin-bottom: 14px; }
  .final-cta h2               { font-size: 20px; line-height: 1.5; margin-bottom: 12px; }
  .final-cta p                { font-size: 14px; margin-bottom: 24px; }
  .final-cta-btns             { flex-direction: column; align-items: stretch; gap: 10px; }
  .final-cta-btns .btn        { max-width: 100%; width: 100%; min-width: unset; padding: 14px 20px; font-size: 14px; }

  .sticky-cta      { flex-direction: column; align-items: stretch; padding: 10px 12px; }
  .sticky-cta .btn { max-width: none; }

  .contact-card   { padding: 28px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .radio-group    { flex-direction: column; }
  .contact-title  { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 22px; }
  .section-title { font-size: 18px; }
  .price-amount  { font-size: 32px; }
}
