/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f0f6ff;
  color: #222;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 70px;
  overflow-x: hidden;
}

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

/* ===== FIXED HEADER ===== */
.fixed-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-bottom: 3px solid #004c8c;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-rain {
  font-size: 1.3rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #004c8c;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.6rem;
  color: #666;
  margin-top: 2px;
}

.header-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  padding: 0 6px;
}

.header-badge-wrap {
  display: flex;
  gap: 4px;
}

.header-badge {
  display: inline-block;
  border: 1.5px solid #004c8c;
  color: #004c8c;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  background: #fff;
  white-space: nowrap;
}

.header-badge-note {
  font-size: 0.55rem;
  color: #e63000;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #004c8c;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.tel-icon {
  font-size: 1rem;
}

.tel-num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===== SECTION HEADER ===== */
.section-header {
  padding: 14px 16px;
  text-align: center;
  margin-bottom: 0;
}

.section-header h2 {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
}

.section-header.blue {
  background: linear-gradient(135deg, #004c8c, #0068b7);
}

.section-header.dark {
  background: linear-gradient(135deg, #003a6e, #004c8c);
}

.section-header.orange {
  background: linear-gradient(135deg, #cc4400, #ff6600);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 558px;
  padding: 0 0 20px;
}

/* 背面レイヤー：画像 */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image .hero-worker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* 背面レイヤー：下部フェードアウトのみ */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(
    to bottom,
    rgba(240, 246, 255, 0) 0%,
    rgba(240, 246, 255, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-worker-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
}

.worker-icon {
  font-size: 2.5rem;
}

.worker-label {
  font-size: 0.55rem;
  color: #cce4ff;
  text-align: center;
  line-height: 1.3;
}

.hero-badge {
  position: relative;
  z-index: 2;
  background: #ff6600;
  color: #fff;
  text-align: center;
  padding: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-content {
  padding: 16px 16px 16px;
  position: relative;
  z-index: 2;
  width: 62%;
  /* 左側にテキストを固定、右側の人物と重ならないように */
}

.hero-catch {
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
}

.hero-catch-main {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8);
  background: none;
  padding: 0;
  margin-bottom: 2px;
}

.hero-catch-main em {
  font-style: normal;
  color: #ffdd00;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  display: inline;
  font-size: 2.2rem;
}

.hero-catch-sub {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 8px;
  color: #fff;
  background: rgba(0, 30, 80, 0.75);
  padding: 6px 12px;
  border-radius: 6px;
  border-left: 4px solid #ffdd00;
  backdrop-filter: blur(2px);
}

.hero-price-box {
  background: rgba(0, 30, 80, 0.65);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
  backdrop-filter: blur(2px);
}

.hero-price-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.price-badge {
  background: #ffdd00;
  color: #333;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-note {
  font-size: 0.7rem;
  color: #cce4ff;
}

.hero-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
}

.price-main {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

.price-main strong {
  font-size: 2.2rem;
  color: #ffdd00;
  font-weight: 900;
}

.hero-cta {
  text-align: center;
  margin-bottom: 14px;
}

.btn-call-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6600, #ff8800);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  padding: 12px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255,102,0,0.4);
  width: 100%;
  justify-content: center;
}

.btn-icon {
  font-size: 1.2rem;
}

.hero-cta-note {
  font-size: 0.75rem;
  color: #cce4ff;
  margin-top: 6px;
}

.hero-rating {
  display: flex;
  align-items: center;
  background: rgba(0, 30, 80, 0.65);
  border-radius: 10px;
  padding: 10px;
  gap: 10px;
  margin-bottom: 6px;
  backdrop-filter: blur(2px);
}

.rating-item {
  flex: 1;
  text-align: center;
}

.rating-label {
  display: block;
  font-size: 0.65rem;
  color: #cce4ff;
  line-height: 1.3;
}

.rating-score {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffdd00;
  line-height: 1.1;
}

.rating-stars {
  display: block;
  font-size: 0.75rem;
  color: #ffdd00;
}

.rating-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
}

.rating-note {
  font-size: 0.65rem;
  color: #fff;
  text-align: center;
  padding: 2px 16px 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: #fff;
  border-top: 3px solid #004c8c;
  border-bottom: 3px solid #004c8c;
  padding: 14px 8px;
  text-align: center;
}

.cta-band-title {
  color: #004c8c;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.cta-band-title strong {
  font-size: 1.25rem;
  color: #e63000;
}

.cta-band-info {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 12px;
}

.cta-band-info span {
  background: #e8f0fa;
  color: #004c8c;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-call-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #004c8c;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.call-icon {
  font-size: 1.3rem;
}

.call-free {
  display: block;
  font-size: 0.65rem;
  background: #004c8c;
  color: #fff;
  padding: 1px 6px;
  border-radius: 3px;
  margin-bottom: 2px;
}

.call-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #004c8c;
}

.cta-band-note {
  font-size: 0.75rem;
  color: #0068b7;
}

/* オレンジCTAボタン（2行） */
.btn-call-orange {
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,0,0.45);
  position: relative;
  overflow: hidden;
}

.call-line1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.03em;
}

.call-line2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

/* 通話無料ボックス */
.call-free-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #ff6b00;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  border-radius: 4px;
  padding: 4px 6px;
  min-width: 36px;
  text-align: center;
  flex-shrink: 0;
}

/* 電話番号本体 */
.call-tel-num {
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
}

/* ===== UNIQUE VALUE ===== */
.unique-value {
  background: #fff;
  margin-bottom: 4px;
}

.unique-card {
  padding: 16px;
  text-align: center;
}

.highlight-card {
  background: linear-gradient(135deg, #f0f6ff, #e0eeff);
  border-left: 4px solid #004c8c;
  margin: 12px;
  border-radius: 8px;
  padding: 16px;
}

.unique-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.unique-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: #003a6e;
  margin-bottom: 10px;
  line-height: 1.4;
}

.unique-card h3 em {
  font-style: normal;
  color: #004c8c;
}

.unique-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #444;
  text-align: left;
}

.unique-compare {
  display: flex;
  align-items: stretch;
  margin: 0 12px 16px;
  gap: 0;
}

.compare-col {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
}

.compare-col.other {
  background: #f5f5f5;
  border: 1px solid #ddd;
}

.compare-col.ametome {
  background: linear-gradient(135deg, #e8f4ff, #d0e8ff);
  border: 2px solid #004c8c;
}

.compare-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.compare-col.other .compare-label {
  background: #999;
  color: #fff;
}

.compare-col.ametome .compare-label {
  background: #004c8c;
  color: #fff;
}

.compare-col ul {
  list-style: none;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #444;
}

.compare-col.other ul {
  color: #888;
}

.compare-vs {
  display: flex;
  align-items: center;
  padding: 0 6px;
  font-size: 0.9rem;
  font-weight: 900;
  color: #ff6600;
}

/* ===== WORRY ===== */
.worry {
  background: #fff;
  margin-bottom: 4px;
}

.worry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
}

.worry-item {
  background: #f0f6ff;
  border: 1px solid #c0d8f0;
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
}

.worry-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
}

.worry-item p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #333;
}

.worry-cta {
  padding: 0 16px 16px;
  text-align: center;
}

.worry-cta p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #333;
}

.worry-cta strong {
  color: #cc0000;
}

/* ===== BUTTONS ===== */
.btn-call-sm {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff8800);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(255,102,0,0.35);
  width: 100%;
  text-align: center;
}

.btn-call-sm.white {
  background: #fff;
  color: #004c8c;
  border: 2px solid #fff;
}

.btn-call-sm.center {
  display: block;
  margin: 16px auto 0;
  max-width: 280px;
  width: auto;
}

/* ===== INSURANCE ===== */
.insurance {
  background: linear-gradient(135deg, #004c8c, #0068b7);
  padding: 20px 16px;
  margin-bottom: 4px;
}

.insurance-inner {
  text-align: center;
}

.insurance-inner h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffdd00;
  margin-bottom: 10px;
}

.insurance-inner p {
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: left;
}

.insurance-inner strong {
  color: #ffdd00;
}

/* ===== PRICE ===== */
.price {
  background: #fff;
  margin-bottom: 4px;
}

.price-lead {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
  padding: 12px 16px 8px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}

.price-card {
  border: 2px solid #004c8c;
  border-radius: 8px;
  overflow: hidden;
}

.price-card-name {
  background: #004c8c;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px;
  text-align: center;
}

.price-card-price {
  padding: 10px 8px;
  text-align: center;
  color: #ff6600;
}

.price-card-price strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.price-card-price span {
  font-size: 0.7rem;
  color: #555;
}

.price-note-box {
  margin: 0 16px 16px;
  background: #f0f6ff;
  border-left: 4px solid #004c8c;
  padding: 12px;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #444;
}

.payment-info {
  padding: 16px;
  background: #f8f8f8;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.payment-info p {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #004c8c;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.card-logos {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.card-logo {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-note {
  font-size: 0.65rem;
  color: #888;
}

/* ===== ROOF TYPES ===== */
.roof-types {
  background: #fff;
  margin-bottom: 4px;
}

.roof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px;
}

.roof-item {
  text-align: center;
  background: #f0f6ff;
  border-radius: 8px;
  padding: 12px 4px;
}

.roof-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.roof-item p {
  font-size: 0.65rem;
  color: #333;
  line-height: 1.3;
}

/* ===== DANGER ===== */
.danger {
  background: #fff;
  margin-bottom: 4px;
}

.danger-items {
  display: flex;
  gap: 10px;
  padding: 16px;
}

.danger-item {
  flex: 1;
  background: #fff3f0;
  border: 1px solid #ffccbb;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.danger-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 4px;
}

.danger-item p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

.danger-result {
  padding: 0 16px 20px;
  text-align: center;
}

.danger-result > p {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.danger-highlight {
  color: #cc0000;
  font-size: 1.2rem;
}

.danger-secondary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.danger-secondary span {
  background: #cc0000;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px;
  border-radius: 6px;
}

.danger-cta-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 14px;
}

.danger-action {
  background: linear-gradient(135deg, #f0f6ff, #e0eeff);
  border-radius: 10px;
  padding: 16px;
}

.danger-action-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #ff6600;
  margin-bottom: 12px;
}

/* ===== DIY WARNING ===== */
.diy-warning {
  background: #fff;
  margin-bottom: 4px;
}

.diy-risks {
  display: flex;
  gap: 8px;
  padding: 16px;
}

.diy-risk {
  flex: 1;
  background: #fff3f0;
  border: 1px solid #ffccbb;
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
}

.diy-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 4px;
}

.diy-risk p {
  font-size: 0.7rem;
  color: #555;
  line-height: 1.4;
}

.diy-solution {
  background: linear-gradient(135deg, #f0f6ff, #e0eeff);
  margin: 0 16px 16px;
  border-radius: 10px;
  padding: 16px;
}

.diy-solution h3 {
  font-size: 1rem;
  font-weight: 900;
  color: #003a6e;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.4;
}

.solution-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}

.sol-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.solution-item strong {
  display: block;
  font-size: 0.85rem;
  color: #004c8c;
  margin-bottom: 2px;
}

.solution-item p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.5;
}

/* ===== FLOW ===== */
.flow {
  background: #fff;
  margin-bottom: 4px;
  padding-bottom: 20px;
}

.flow-steps {
  padding: 16px;
}

.flow-step {
  display: flex;
  gap: 12px;
  background: #f0f6ff;
  border-radius: 10px;
  padding: 14px;
  border-left: 4px solid #004c8c;
}

.step-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: #004c8c;
  white-space: nowrap;
  min-width: 48px;
  text-align: center;
}

.step-num span {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #004c8c;
  line-height: 1;
}

.step-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #003a6e;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}

.flow-arrow {
  text-align: center;
  font-size: 1.2rem;
  color: #004c8c;
  padding: 4px 0;
}

/* ===== INVESTIGATION ===== */
.investigation {
  background: #fff;
  margin-bottom: 4px;
}

.inv-steps {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inv-step {
  display: flex;
  gap: 12px;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 12px;
}

.inv-step.highlight {
  background: linear-gradient(135deg, #e8f4ff, #d0e8ff);
  border: 2px solid #004c8c;
}

.inv-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: #004c8c;
  min-width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.inv-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #003a6e;
  margin-bottom: 4px;
}

.inv-content p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}

/* ===== REASONS ===== */
.reasons {
  background: #fff;
  margin-bottom: 4px;
}

.reason-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reason-item {
  display: flex;
  gap: 12px;
  background: #f0f6ff;
  border-radius: 10px;
  padding: 14px;
  border-left: 4px solid #004c8c;
}

.reason-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: #004c8c;
  min-width: 36px;
  flex-shrink: 0;
}

.reason-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #003a6e;
  margin-bottom: 4px;
}

.reason-content p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}

/* ===== INSURANCE DETAIL ===== */
.insurance-detail {
  background: #fff;
  margin-bottom: 4px;
}

.ins-content {
  padding: 16px;
  background: #f0f6ff;
  margin: 12px;
  border-radius: 8px;
  border: 1px solid #c0d8f0;
}

.ins-content p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #444;
}

/* ===== REVIEWS ===== */
.reviews {
  background: #fff;
  margin-bottom: 4px;
}

.review-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  background: #f0f6ff;
  border: 1px solid #c0d8f0;
  border-radius: 10px;
  padding: 14px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-stars {
  color: #ffaa00;
  font-size: 0.9rem;
}

.review-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #004c8c;
}

.review-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #444;
}

/* ===== FAQ ===== */
.faq {
  background: #fff;
  margin-bottom: 4px;
}

.faq-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid #c0d8f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #003a6e;
  background: #f0f6ff;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}

.faq-item summary::after {
  content: '▼';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: #004c8c;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid #c0d8f0;
}

.faq-answer p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #555;
}

/* ===== AREA ===== */
.area {
  background: #fff;
  margin-bottom: 4px;
}

.area-lead {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
  padding: 10px 16px;
}

.area-main {
  padding: 0 16px 16px;
}

.area-map-placeholder {
  background: linear-gradient(135deg, #003a6e, #004c8c);
  height: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.area-map-placeholder span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-tag {
  background: #f0f6ff;
  border: 1px solid #c0d8f0;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: #333;
}

.area-tag.main {
  background: #004c8c;
  color: #fff;
  border-color: #004c8c;
  font-weight: 700;
}

.area-note {
  text-align: center;
  font-size: 0.7rem;
  color: #888;
  padding: 0 16px 16px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(160deg, #003a6e, #004c8c);
  padding: 30px 16px;
  text-align: center;
}

.final-cta-inner h2 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.4;
}

.final-cta-inner > p {
  font-size: 0.85rem;
  color: #cce4ff;
  margin-bottom: 16px;
}

.btn-call-final {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}

.call-icon-lg {
  font-size: 1.8rem;
}

.call-free-lg {
  display: block;
  font-size: 0.65rem;
  background: #004c8c;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 2px;
}

.call-num-lg {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #004c8c;
  letter-spacing: 1px;
}

.final-note {
  font-size: 0.75rem;
  color: #cce4ff;
  margin-bottom: 14px;
}

.final-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.final-features span {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px;
  border-radius: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: #f0f6ff;
  border-top: 3px solid #004c8c;
  padding: 20px 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 4px;
}
.header-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-text-sm {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

.footer-sub {
  font-size: 0.65rem;
  color: #aac8ee;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 0.7rem;
  color: #004c8c;
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.65rem;
  color: #888;
}

/* ===== FIXED BOTTOM CTA ===== */
.fixed-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  display: flex;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.2);
}

.fixed-btn-call {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #004c8c, #0068b7);
  padding: 10px 8px;
  color: #fff;
}

.fixed-btn-mail {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, #ff6600, #ff8800);
  padding: 10px 8px;
  color: #fff;
}

.fixed-icon {
  font-size: 1.2rem;
}

.fixed-num {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.fixed-label {
  display: block;
  font-size: 0.6rem;
  background: rgba(255,255,255,0.2);
  padding: 1px 4px;
  border-radius: 2px;
  margin-bottom: 1px;
}

.fixed-label2 {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.btn-call-hero,
.btn-call-band,
.btn-call-final {
  animation: pulse 2s ease-in-out infinite;
}

/* ===== IMAGE ICONS ===== */
.section-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.section-icon-sm {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.tel-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}

.tel-icon-img-lg {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(600%) hue-rotate(195deg);
  vertical-align: middle;
}

.tel-icon-img-sm {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}

.inline-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  display: inline;
  filter: brightness(0) invert(1);
}

/* ===== ICON ADJUSTMENTS ===== */
.worry-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.worry-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.danger-icon img,
.diy-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto 4px;
}

.sol-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.unique-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.insurance-inner h3 img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
}

.inv-num img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.roof-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto 4px;
}

/* ===== HERO WORKER IMAGE ===== */
.hero-worker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ===== SECTION PHOTO IMAGES ===== */
.cert-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.worry-photo-row {
  display: flex;
  gap: 4px;
  padding: 0;
}

.worry-photo {
  flex: 1;
  height: 130px;
  object-fit: cover;
  display: block;
}

.insurance-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.danger-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.flow-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.inv-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.review-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ===== HERO WORKER PHOTO ===== */
.hero-worker-img {
  width: 140px;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 0 0 12px;
}

/* ===== INSURANCE HERO OVERLAY ===== */
.insurance-hero {
  position: relative;
  overflow: hidden;
}

.insurance-hero .insurance-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.insurance-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 76, 140, 0.85));
  padding: 20px 16px 10px;
}

.insurance-overlay h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ===== REVIEW AVATAR ===== */
.review-avatar {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px 10px 0 0;
  display: block;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  overflow: hidden;
}

.review-card .review-header {
  padding: 10px 14px 4px;
}

.review-card p {
  padding: 0 14px 14px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #444;
}

/* ===== AREA MAP ===== */
.area-map-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.area-map-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.area-map-note {
  font-size: 0.82rem;
  color: #004c8c;
  font-weight: 700;
  margin-top: 8px;
  text-align: center;
}

/* ===== CERT PHOTO (diagnosis man) ===== */
.cert-photo {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  display: block;
  margin-bottom: 0;
}

/* ===== HERO IMAGE FIX ===== */
.hero-image-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.hero-worker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ===== ヒーロー下部（満足度〜CTA）中央配置 ===== */
.hero-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-bottom .hero-rating {
  width: 100%;
  max-width: 340px;
}

.hero-bottom .rating-note {
  text-align: center;
}

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

/* ===== NEW HERO ===== */
.hero-img-only {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}

.hero-fv-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero {
  position: relative;
  width: 100%;
  height: fit-content;
  min-height: 300px;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* 下部10%フェード */
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12%;
  background: linear-gradient(to bottom, transparent 0%, #e8f4ff 100%);
  z-index: 2;
}

/* 関東帯 */
.hero-area-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(255, 107, 0, 0.92);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 0.1em;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 38px 0 20px 0; /* 上部：関東帯分＋余白、下部：フェード分 */
}

/* テキストブロック（左寄せ・左70%以内） */
.hero-text-block {
  width: 72%;
  padding: 0 16px;
  margin-bottom: 10px;
}

.hero-service-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: none;
  display: inline-block;
  padding: 2px 0;
  border-radius: 0;
  margin: 0 0 6px 0;
  letter-spacing: 0.08em;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.8);
}

.hero-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffdd00;
  font-style: italic;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff,
     3px  3px 8px rgba(0,0,0,0.8);
  letter-spacing: 0.02em;
  margin: 0 0 10px 0;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-sub {
  display: inline-block;
  font-size: 1.0rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,40,100,0.75);
  padding: 4px 10px;
  border-radius: 4px;
  border-left: 4px solid #ffdd00;
  margin: 0 0 12px 0;
}

/* 価格テキスト（1行） */
.hero-price-text {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,40,100,0.75);
  padding: 5px 10px;
  border-radius: 4px;
  margin: 0 0 0 0;
  line-height: 1.5;
  white-space: nowrap;
}

.hero-price-text strong {
  font-size: 1.4rem;
  color: #ffdd00;
  font-weight: 900;
}

/* 満足度ブロック（横幅いっぱい・中央） */
.hero-rating-block {
  width: 100%;
  padding: 0 14px;
  margin-top: 12px;
  margin-bottom: 10px;
}

.hero-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(0,40,100,0.80);
  border-radius: 8px;
  padding: 8px 10px;
}

.hero-rating-row .rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.hero-rating-row .rating-label {
  font-size: 0.7rem;
  color: #cce4ff;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.hero-rating-row .rating-score {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffdd00;
  line-height: 1.1;
}

.hero-rating-row .rating-stars {
  font-size: 0.75rem;
  color: #ffdd00;
  letter-spacing: 1px;
}

.hero-rating-row .rating-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  margin: 0 10px;
  flex-shrink: 0;
}

/* CTAブロック（横幅いっぱい） */
.hero-cta-block {
  width: 100%;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.btn-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 16px 12px;
  box-shadow: 0 4px 16px rgba(255,107,0,0.5);
}

.btn-hero-cta:active {
  opacity: 0.85;
}

/* 補助テキスト（上行） */
.btn-hero-cta-sub {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.03em;
}

/* 電話番号（下行・大きく） */
.btn-hero-cta-tel {
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.hero-tel {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ===== SIMPLE FORM SECTION ===== */
.simple-form-section {
  background: #f0f6ff;
  padding: 0 0 24px;
  margin: 0;
}
.form-badge {
  background: linear-gradient(90deg, #0068b7, #42a7db);
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.5px;
}
.form-header {
  background: #004c8c;
  text-align: center;
  padding: 16px 16px 20px;
  position: relative;
}
.form-header::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 15px solid #004c8c;
  z-index: 1;
}
.form-header-sub {
  color: #a8d4f5;
  font-size: 13px;
  margin: 0 0 4px;
}
.form-header-title {
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin: 0;
  line-height: 1.3;
}
.form-big {
  font-size: 40px;
  font-weight: 900;
  color: #ffd700;
  vertical-align: baseline;
  line-height: 1;
  display: inline-block;
  margin: 0 2px;
}
.form-body {
  padding: 28px 16px 0;
}
.form-step-label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
}
.form-type-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.form-type-btn {
  flex: 1;
  background: #e87a00;
  border: none;
  border-radius: 10px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  transition: opacity 0.2s, transform 0.1s;
  box-shadow: 0 3px 8px rgba(232,122,0,0.4);
}
.form-type-btn.selected {
  background: #cc6600;
  outline: 3px solid #ffd700;
}
.form-type-btn:active { transform: scale(0.97); }
.form-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-tel-input {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 14px;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.form-tel-input:focus { border-color: #0068b7; }
.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #e87a00, #ff9900);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 4px 12px rgba(232,122,0,0.5);
  transition: transform 0.1s;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  animation: heroPulse 2.4s ease-in-out infinite;
}
.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.5) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}
.form-submit-btn:active { transform: scale(0.98); }
.form-disclaimer {
  font-size: 11px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* ===== CERT PHOTO WIDE (診断士横長画像) ===== */
.cert-photo-wide {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===== AMETOME GREEN (比較表) ===== */
.compare-col.ametome-green {
  background: linear-gradient(135deg, #4caf7d, #81c995) !important;
  color: #1a4a2a;
}
.compare-col.ametome-green .compare-label {
  background: #2e7d52;
  color: #fff;
}
.compare-col.ametome-green ul li {
  color: #1a4a2a;
}

/* ===== REVIEW PHOTO WIDE ===== */
.review-photo-wide {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 10px 10px 0 0;
}
.review-card {
  overflow: hidden;
}

/* ===== KANTO MAP ===== */
.area-map-img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* ===== HERO CTA ANIMATION ===== */
@keyframes heroPulse {
  0%   { transform: scale(1);    box-shadow: 0 4px 16px rgba(232,122,0,0.5); }
  50%  { transform: scale(1.03); box-shadow: 0 6px 22px rgba(232,122,0,0.7); }
  100% { transform: scale(1);    box-shadow: 0 4px 16px rgba(232,122,0,0.5); }
}
.btn-hero-cta {
  animation: heroPulse 2.4s ease-in-out infinite;
}

/* ===== REALTIME NOTE ===== */
#realtime-note {
  font-size: 13px;
  color: #fff;
  background: rgba(0,76,140,0.75);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 6px;
}

/* ===== 通話確認モーダル ===== */
.call-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.call-modal-overlay.active {
  display: flex;
}

.call-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 20px;
  width: 88%;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.call-modal-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #004c8c;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-family: Arial Black, sans-serif;
}

.call-modal-sub {
  font-size: 0.78rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.4;
}

.call-modal-btns {
  display: flex;
  gap: 10px;
}

.call-modal-cancel {
  flex: 1;
  padding: 12px 0;
  border-radius: 8px;
  border: 2px solid #ccc;
  background: #f5f5f5;
  color: #666;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.call-modal-call {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(255,107,0,0.4);
}

/* ===== CTAボタン シャインアニメーション ===== */
@keyframes btn-shine {
  0% {
    background-position: -200% center;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    background-position: 200% center;
    opacity: 0;
  }
}

@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(255, 120, 0, 0.5), 0 0 0 0 rgba(255, 120, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(255, 120, 0, 0.7), 0 0 0 8px rgba(255, 120, 0, 0);
  }
}

/* オレンジCTAボタン（メインFV直下・中盤） */
.btn-call-orange {
  animation: heroPulse 2.4s ease-in-out infinite;
}

.btn-call-orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 44%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 56%
  );
  background-size: 200% 100%;
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* 小サイズCTAボタン */
.btn-call-sm {
  position: relative;
  overflow: hidden;
  animation: heroPulse 2.6s ease-in-out infinite;
}

.btn-call-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 44%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 56%
  );
  background-size: 200% 100%;
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* ファイナルCTAボタン */
.btn-call-final {
  position: relative;
  overflow: hidden;
  animation: heroPulse 2.8s ease-in-out infinite;
}

.btn-call-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 44%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 56%
  );
  background-size: 200% 100%;
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* 固定フッターCTAボタン（アニメーションなし） */
.fixed-btn-call,
.fixed-btn-mail {
  position: relative;
  overflow: hidden;
}

/* ヘッダーCTAボタン（アニメーションなし） */
.header-tel {
  position: relative;
  overflow: hidden;
}

/* モーダル内「無料相談」ボタン */
.call-modal-call {
  position: relative;
  overflow: hidden;
  animation: heroPulse 2.5s ease-in-out infinite;
}

.call-modal-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 44%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 56%
  );
  background-size: 200% 100%;
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* ===== フォームエラーメッセージ ===== */
.form-tel-error {
  color: #e00;
  font-size: 0.82rem;
  font-weight: 700;
  margin: -6px 0 8px;
  padding: 4px 8px;
  background: #fff0f0;
  border-left: 3px solid #e00;
  border-radius: 4px;
  line-height: 1.5;
}
