/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.7;
  padding-bottom: 64px;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.red { color: #e53935; }
.hl-yellow { background: linear-gradient(transparent 60%, #fdd835 60%); padding: 0 4px; }
.hl-yellow2 { background: linear-gradient(transparent 60%, #fdd835 60%); padding: 0 2px; }
.hl-orange { border-bottom: 3px solid #f57c00; }
.big-orange { color: #e65100; font-size: 1.4em; font-weight: 900; }
.orange-num { color: #f57c00; font-size: 2em; font-weight: 900; }

/* ========== HEADER ========== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-logo { font-size: 18px; font-weight: 700; color: #222; }
.header-cta {
  display: inline-block;
  padding: 10px 24px;
  background: #222;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.3s;
}
.header-cta:hover { opacity: 0.8; }

/* ========== FV HERO ========== */
.fv-section { width: 100%; overflow: hidden; }
.fv-wrap { position: relative; }
.fv-wrap img, .fv-wrap picture { width: 100%; height: auto; display: block; }
.fv-wrap picture img { width: 100%; height: auto; display: block; }
.fv-link { position: absolute; display: block; cursor: pointer; }
.fv-link-phone {
  bottom: 4%;
  left: 25%;
  width: 42%;
  height: 9%;
}
@media (max-width: 768px) {
  .fv-link-phone {
    bottom: 1%;
    left: 10%;
    width: 80%;
    height: 6%;
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 0;
}
.cta-bg {
  background: url('images/cta-bg.webp') center/cover no-repeat;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}
.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.cta-left { flex: 1; }
.cta-right { flex-shrink: 0; }
.cta-girl { width: 200px; border-radius: 12px; }
.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
}
.cta-tag {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 8px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
}
.cta-tag-etc { color: #fff; font-weight: 700; font-size: 15px; padding: 8px 4px; }
.cta-heading {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}
.cta-free-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px 30px;
  text-align: center;
  margin-bottom: 20px;
  border: 3px solid #f57c00;
}
.cta-free-box p { font-size: 20px; color: #666; font-weight: 500; line-height: 1.8; }
.cta-free-box strong { color: #e53935; font-size: 28px; font-weight: 900; }
.cta-free-box p:last-child { color: #2196f3; font-weight: 700; font-size: 22px; }
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 20px;
}
.cta-btn {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  transition: opacity 0.3s;
  position: relative;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cta-btn:hover { opacity: 0.9; }
.cta-btn-phone { background: linear-gradient(90deg, #e65100, #f57c00); }
.cta-btn-line { background: linear-gradient(90deg, #00a63e, #06c755); }
.cta-btn-contact { background: linear-gradient(90deg, #1565c0, #2196f3); }
.cta-btn-icon { font-size: 28px; margin-right: 12px; }
.cta-btn-icon-img { width: 32px; height: 32px; margin-right: 12px; flex-shrink: 0; }
.cta-btn-text { flex: 1; text-align: center; }
.cta-btn-sub { font-size: 11px; display: block; opacity: 0.9; }
.cta-btn-main { font-size: 20px; font-weight: 900; display: block; }
.cta-btn-arrow { font-size: 28px; opacity: 0.7; }

/* ========== SECTION IMAGE ========== */
.section-image { width: 100%; text-align: center; }
.section-image img { width: 100%; height: auto; display: block; }

/* ========== 電話CTAバナー ========== */
.phone-cta-banner {
  background: url('images/phone-cta-bg.webp') center/cover no-repeat;
  padding: 40px 40px;
}
.phone-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.phone-cta-left { flex: 1; }
.phone-cta-label {
  font-size: 22px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 700;
}
.phone-cta-main {
  font-size: 28px;
  font-weight: 900;
  color: #333;
}
.phone-cta-right { flex-shrink: 0; }
.phone-cta-img { max-width: 450px; width: 100%; }
.phone-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 16px 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.phone-cta-box:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.phone-cta-badge {
  background: #c62828;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.phone-cta-num-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-cta-icon { font-size: 28px; color: #333; }
.phone-cta-resolve {
  display: block;
  font-size: 11px;
  color: #fff;
  background: #f57c00;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 2px;
}
.phone-cta-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #333;
  letter-spacing: 1px;
}
.phone-cta-hours {
  display: block;
  font-size: 11px;
  color: #888;
  text-align: right;
}

/* ========== TROUBLE SECTION ========== */
.trouble-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #4a4a5e 0%, #3a3a4e 100%);
}
.trouble-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.trouble-title { font-size: 30px; font-weight: 900; color: #fff; }
.trouble-girl { width: 120px; border-radius: 8px; }
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.trouble-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.trouble-card-head {
  background: #3d4060;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 17px;
  font-weight: 700;
}
.trouble-card-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
}
.trouble-card-list { padding: 14px 16px; }
.trouble-card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 14px;
}
.trouble-card-list li::before {
  content: '\2714';
  color: #e53935;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

/* ========== 3つの理由 ========== */
.reasons-section {
  padding: 60px 20px;
  background: #fff;
}
.section-header { text-align: center; margin-bottom: 40px; }
.section-header-sub { font-size: 16px; color: #555; margin-bottom: 8px; }
.section-header-sub strong { color: #f57c00; }
.section-header-title { font-size: 36px; font-weight: 900; }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.reason-card {
  background: #fff;
  border: 2px solid #f57c00;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.reason-num {
  font-size: 40px;
  font-weight: 900;
  color: #f57c00;
  margin-bottom: 12px;
}
.reason-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: #333; }
.reason-card p { font-size: 13px; color: #666; line-height: 1.7; }

/* ========== 料金例 ========== */
.pricing-section {
  padding: 60px 20px;
  background: #fff8e1;
}
.section-title-bar {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #333;
  position: relative;
}
.section-title-bar::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f57c00;
  margin: 10px auto 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.pricing-card-label {
  background: #f57c00;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-weight: 700;
  font-size: 15px;
}
.pricing-card-img { width: 100%; height: 120px; object-fit: cover; }
.pricing-card-price {
  padding: 12px;
  text-align: center;
  background: #fff;
}
.price-num { font-size: 36px; font-weight: 900; color: #e53935; }
.price-unit { font-size: 16px; font-weight: 700; color: #333; }
.tax {
  font-size: 11px;
  background: #e53935;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ========== 追加料金なし ========== */
.no-extra-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  text-align: center;
}
.no-extra-inner { max-width: 800px; margin: 0 auto; }
.no-extra-lead { font-size: 15px; color: #555; margin-bottom: 8px; }
.no-extra-title {
  font-size: 36px;
  font-weight: 900;
  color: #e53935;
  border: 3px solid #e53935;
  display: inline-block;
  padding: 8px 30px;
  margin-bottom: 16px;
}
.no-extra-desc { font-size: 13px; color: #666; line-height: 1.8; }

/* ========== 作業内容・料金表 ========== */
.price-table-section {
  padding: 60px 20px;
  background: #fdf5e6;
}
.section-title-orange {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #333;
  border-bottom: 3px solid #f57c00;
  display: inline-block;
  padding-bottom: 4px;
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.price-table-wrap { max-width: 800px; margin: 0 auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.price-table thead th {
  background: #f57c00;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
}
.price-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0e6d6;
  font-size: 14px;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.pt-img { width: 60px; }
.pt-price { font-weight: 700; color: #e53935; white-space: nowrap; }

/* ========== 他社比較 ========== */
.comparison-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.section-title-center {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.section-title-center::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f57c00;
  margin: 10px auto 0;
}
.comparison-wrap { max-width: 750px; margin: 0 auto; }
.comparison-wrap img { width: 100%; }

/* ========== 実績セクション ========== */
.achievement-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #fdf5e6, #fff8e1);
  text-align: center;
}
.achievement-inner { max-width: 700px; margin: 0 auto; }
.achievement-title { font-size: 24px; font-weight: 900; margin-bottom: 24px; line-height: 1.5; }
.achievement-staff { width: 200px; margin: 0 auto 24px; border-radius: 12px; }
.achievement-desc { font-size: 14px; color: #555; line-height: 1.8; }

/* ========== 対応エリア ========== */
.area-section {
  padding: 40px 20px;
  background: #fdf5e6;
  text-align: center;
}
.area-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
  border-bottom: 3px solid #f57c00;
  display: inline-block;
  padding-bottom: 4px;
}
.area-tags { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.area-tag {
  background: #f57c00;
  color: #fff;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
}

/* ========== エリア詳細 ========== */
.area-detail-section {
  padding: 40px 20px;
  background: #fdf5e6;
}
.area-detail-inner {
  display: flex;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.area-detail-block {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.area-detail-block h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #f57c00; }
.area-detail-block p { font-size: 13px; color: #666; }

/* ========== 10年保証 ========== */
.warranty-section {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}
.warranty-inner { max-width: 700px; margin: 0 auto; }
.warranty-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff;
  padding: 16px 30px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}
.warranty-badge span { font-size: 40px; }
.warranty-text { font-size: 14px; color: #555; line-height: 1.8; }

/* ========== DIY危険 ========== */
.danger-section {
  padding: 60px 20px;
  background: #fff;
}
.danger-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.danger-title { font-size: 26px; font-weight: 900; color: #e53935; margin-bottom: 8px; }
.danger-sub { font-size: 16px; color: #f57c00; font-weight: 700; margin-bottom: 30px; }
.danger-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}
.danger-img-wrap { flex-shrink: 0; }
.danger-stop-icon { width: 100px; }
.danger-warnings { text-align: left; }
.danger-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  background: #fff3e0;
  padding: 12px 20px;
  border-radius: 8px;
  border-left: 4px solid #f57c00;
}
.danger-icon { color: #f57c00; font-size: 28px; }
.danger-item p { font-weight: 700; font-size: 15px; }
.danger-banner {
  background-size: cover;
  background-position: center;
  padding: 40px;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto 20px;
}
.danger-banner p { font-size: 15px; line-height: 2; }
.danger-banner strong { font-size: 17px; }
.danger-bottom {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: #e53935;
  padding: 20px;
  background: repeating-linear-gradient(45deg, #fdd835, #fdd835 10px, #333 10px, #333 20px);
  -webkit-background-clip: text;
  color: #e53935;
}

/* ========== FAQ ========== */
.faq-section {
  padding: 60px 20px;
  background: #fdf5e6;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #f0e6d6;
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 15px;
  background: #fff;
}
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 20px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.faq-badge-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f57c00;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.faq-badge-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

/* ========== お客様の声 ========== */
.reviews-section {
  display: none;
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .reviews-section { display: block; }
}
.reviews-section .section-title-center { padding: 0 20px; }
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
}
.carousel-nav-btn {
  background: #333;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-nav-btn:first-child { border-radius: 6px 0 0 6px; }
.carousel-nav-btn:last-child { border-radius: 0 6px 6px 0; }
.carousel-nav-btn:hover { background: #555; }
.carousel-nav-btn .material-icons { font-size: 20px; }
.carousel-wrap {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.carousel-btn { display: none; }
.carousel-track-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track-wrap::-webkit-scrollbar { display: none; }
.carousel-track {
  display: flex;
  gap: 16px;
  padding: 0 16px;
}
.carousel-slide {
  min-width: 75%;
  max-width: 75%;
  scroll-snap-align: center;
  flex-shrink: 0;
}
.review-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.review-card-inner { display: flex; flex-direction: column; height: auto; }
.review-photo {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
}
.review-card-body { padding: 14px 0; flex: none; display: flex; flex-direction: column; }
.review-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}
.review-meta dt { font-weight: 700; color: #333; }
.review-meta dt::before { content: '・'; }
.review-stars { color: #f57c00; font-size: 16px; }
.review-divider {
  border: none;
  border-top: 2px dashed #f57c00;
  margin: 0 0 16px 0;
}
.review-text {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  flex: 1;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dot.active { background: #f57c00; }

/* ========== お問い合わせ ========== */
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.contact-sub { text-align: center; color: #aaa; font-size: 14px; margin-bottom: 4px; }
.contact-desc { text-align: center; font-size: 14px; color: #666; margin-bottom: 30px; }
.contact-inner { max-width: 650px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 14px;
}
.tag-required {
  background: #e53935;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
}
.tag-optional {
  background: #9e9e9e;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #f57c00;
  outline: none;
}
.form-textarea { height: 120px; resize: vertical; }
.form-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: #f57c00;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 24px;
}
.form-submit:hover { background: #e65100; }

/* ========== パートナー募集 ========== */
.partner-section {
  padding: 60px 20px 80px;
  background: url('images/extra-section.webp') center/cover no-repeat;
  text-align: center;
  position: relative;
}
.partner-title {
  font-size: 32px;
  font-weight: 900;
  color: #e65100;
  margin-bottom: 30px;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.7), 2px 2px 4px rgba(255,255,255,0.8);
}
.partner-card {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 50px 60px;
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  color: #222;
  line-height: 2;
}
.partner-card p { font-weight: 700; }
.partner-btn {
  display: inline-block;
  background: linear-gradient(180deg, #f57c00, #e65100);
  color: #fff;
  padding: 16px 60px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s;
}
.partner-btn:hover { opacity: 0.85; }

/* ========== FOOTER ========== */
.footer {
  background: #f0a81e;
  color: #333;
  padding: 40px 20px 30px;
  text-align: center;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-nav a { color: #333; font-size: 14px; font-weight: 700; transition: opacity 0.3s; }
.footer-nav a:hover { opacity: 0.7; }
.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.4;
}
.footer-copy { font-size: 12px; color: #555; }

/* ========== FIXED BOTTOM ========== */
.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 200;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.fixed-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.3s;
}
.fixed-btn:hover { opacity: 0.9; }
.fixed-btn-phone { background: #f57c00; }
.fixed-btn-line { background: #06c755; }
.fixed-btn-contact { background: #2196f3; }
.fixed-btn .material-icons { font-size: 20px; }
.fixed-sub { font-size: 10px; display: block; }
.fixed-num { font-size: 16px; font-weight: 900; display: block; white-space: nowrap; }

/* ========== FV PHONE OVERLAP ========== */
.fv-phone-overlap {
  margin-top: -100px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.fv-phone-overlap img {
  margin: 0 auto;
}

/* ========== VISIBILITY ========== */
.mobile-only { display: none; }
.desktop-only { display: block; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
  /* CTA mobile */
  .cta-content { flex-direction: column; gap: 0; }
  .cta-left { width: 100%; }
  .cta-right { position: absolute; right: -10px; top: 50px; width: 140px; opacity: 0.9; }
  .cta-bg { padding: 30px 16px; position: relative; }
  .cta-tags { justify-content: center; gap: 6px; }
  .cta-tag { padding: 6px 14px; font-size: 13px; }
  .cta-heading { font-size: 20px; margin-bottom: 12px; }
  .cta-free-box { padding: 16px 14px; margin-right: 100px; }
  .cta-free-box p { font-size: 15px; }
  .cta-free-box strong { font-size: 20px; }
  .cta-free-box p:last-child { font-size: 17px; }
  .cta-buttons { padding: 14px; gap: 8px; }
  .cta-btn { padding: 12px 14px; border-radius: 30px; }
  .cta-btn-main { font-size: 16px; }
  .cta-btn-sub { font-size: 10px; }
  .cta-btn-icon { font-size: 22px; margin-right: 8px; }
  .cta-btn-icon-img { width: 26px; height: 26px; margin-right: 8px; }
  .cta-btn-arrow { font-size: 22px; }

  .header { padding: 10px 16px; }
  .header-logo { font-size: 15px; }
  .header-cta { padding: 8px 16px; font-size: 12px; }

  .fv-section img { max-height: none; }

  .cta-buttons { flex-direction: column; }
  .cta-free-big { font-size: 22px; }

  .trouble-grid { grid-template-columns: 1fr; max-width: 400px; }
  .trouble-title { font-size: 22px; }
  .trouble-header { flex-direction: column; gap: 12px; }
  .trouble-girl { width: 80px; }

  .reasons-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .section-header-title { font-size: 28px; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-num { font-size: 28px; }

  .no-extra-title { font-size: 24px; padding: 6px 20px; }

  .price-table { font-size: 13px; }
  .price-table thead th,
  .price-table tbody td { padding: 10px 8px; }

  .comparison-wrap { max-width: 100%; }

  /* パートナー mobile */
  .partner-title { font-size: 24px; }
  .partner-card { padding: 30px 20px; font-size: 15px; }
  .partner-btn { padding: 14px 40px; font-size: 15px; }

  /* 電話CTA mobile */
  .phone-cta-label { font-size: 14px; }
  .phone-cta-main { font-size: 18px; }

  /* 比較テーブル mobile */
  .comparison-section { padding: 40px 16px; }
  .comparison-section .section-title-center { font-size: 20px; }

  /* フォーム mobile */
  .contact-section { padding: 40px 16px; }
  .form-submit { font-size: 16px; padding: 16px; }

  .danger-content { flex-direction: column; gap: 20px; }
  .danger-title { font-size: 20px; }

  .review-mini-grid { grid-template-columns: 1fr; }

  .area-detail-inner { flex-direction: column; }

  /* カルーセル mobile */
  .reviews-section { padding: 40px 0; }

  .section-title-center { font-size: 22px; }

  .phone-banner-link { font-size: 22px; }

  /* 電話CTAバナー mobile */
  .phone-cta-inner { flex-direction: column; gap: 16px; text-align: center; }
  .phone-cta-banner { padding: 24px 16px; }
  .phone-cta-label { font-size: 16px; }
  .phone-cta-main { font-size: 20px; }
  .phone-cta-img { max-width: 100%; }

  .fixed-num { font-size: 12px; }
  .fixed-sub { font-size: 9px; }
  .fixed-btn { font-size: 11px; padding: 10px 2px; gap: 4px; }
  .fixed-btn .material-icons { font-size: 18px; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .cta-icons { gap: 6px; }
  .cta-icon-item { padding: 4px 12px; font-size: 12px; }
}
