/*
Theme Name: RoomUp
Theme URI: https://roomup.jp/
Author: RoomUp
Description: 高知のエアコン・ハウスクリーニング - RoomUp株式会社 コーポレートサイト
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: roomup
*/

/* RoomUp - 高知のエアコン・ハウスクリーニング */
:root {
  --primary: #1A6FA3;
  --accent: #071ffc;
  --base: #FFFFFF;
  --sub: #EEF7FB;
  --charcoal: #2a3540;
  --gray: #607080;
  --orange: #e05a2b;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--base);
  color: var(--charcoal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* ======= 固定ページ・フォーム横スクロール防止 ======= */
.site-main.page-content {
  max-width: 100%;
  overflow-x: clip;
}
.site-main.page-content article {
  max-width: 100%;
  overflow-x: clip;
}
/* content-fluid 全幅ブレイクアウトは左右にはみ出すためクリップしない */
.site-main.page-content article:has(.content-fluid),
.site-main.page-content .entry-content:has(.content-fluid) {
  overflow-x: visible;
}
.site-main.page-content .entry-content {
  max-width: min(900px, 100%);
  margin: 0 auto;
  padding: 80px 24px;
  box-sizing: border-box;
}
/* 料金・お問い合わせ等：article 貼り付け時はラッパーを全幅に（content-fluid が画面幅いっぱいになる） */
.site-main.page-content .entry-content:has(> article.price-page-content) {
  max-width: none;
  padding: 0;
  margin: 0;
  overflow-x: visible;
}
/* Gutenberg 幅クラスがはみ出す対策 */
.site-main.page-content .entry-content .alignwide,
.site-main.page-content .entry-content .alignfull {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  left: auto !important;
}
.site-main.page-content .entry-content iframe,
.site-main.page-content .entry-content img,
.site-main.page-content .entry-content video {
  max-width: 100%;
  height: auto;
}
.site-main.page-content .entry-content .g-recaptcha,
.site-main.page-content .entry-content .wpcf7-recaptcha {
  max-width: 100%;
  overflow: hidden;
}

/* ======= 見出し h3（全ページ共通） ======= */
h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.35;
  font-size: clamp(18px, 7vw, 54px);
}
h3::before {
  content: '「';
}
h3::after {
  content: '」';
}
/* 統計カード内ラベルは見出し装飾の対象外 */
h3.corporate-stat-label {
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}
h3.corporate-stat-label::before,
h3.corporate-stat-label::after {
  content: none;
}

/* ======= NAV ======= */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #000000;
  transition: box-shadow 0.3s;
}
nav, .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-fallback {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.nav-logo-fallback sup {
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  vertical-align: super;
  margin-left: 4px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-menu-overlay {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding-top: 20px;
}
.nav-links-tel { display: none; }
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 280px;
  padding: 16px 0;
  background: #000b22;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.nav-dropdown a::after { display: none !important; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  min-height: 44px;
  box-sizing: border-box;
}
.nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content:'';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta-wrap { flex-shrink: 0; }
.nav-tel-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.nav-tel-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-tel-icon svg { width: 32px; height: 32px; }
.nav-hours {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  background: var(--base);
  overflow: hidden;
}
.hero-badge-img {
  position: absolute;
  left: 25px;
  z-index: 3;
  height: auto;
  object-fit: contain;
}
/* b.webp: 179x168 バッジ */
.hero-badge-img-top {
  width: 140px;
  top: 90px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 16px 140px 56px;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

/* H1: 意味の切れ目で改行・は、で折り返さない */
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  animation: fadeUp 0.7s 0.12s ease both;
  width: 100%;
  max-width: 100%;
  padding-right: 0;
}
.hero-subhead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.18s ease both;
}

/* 本文: ジャンプ率2倍以上、幅いっぱい */
.hero-sub {
  font-size: 16px;
  line-height: 2;
  color: var(--gray);
  width: 100%;
  margin-bottom: 48px;
  font-weight: 400;
  animation: fadeUp 0.7s 0.24s ease both;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.7s 0.36s ease both;
}
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary), #145a8a);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  width: fit-content;
  box-shadow: 0 10px 36px rgba(26,111,163,0.35);
  transition: all 0.25s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(26,111,163,0.45); }
/* 左カラム: 施工写真フルサイズ + テキストオーバーレイ */
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: transparent;
}
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  background: transparent;
}
.hero-photo-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}
/* ======= 波形SVGセパレーター + STATS ======= */
.stats-wave-section {
  position: relative;
  background: var(--sub);
  padding: 0;
}
.stats-wave-top {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.stats-wave-top svg {
  display: block;
  width: 100%;
  height: auto;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 80px;
}
.stat-item {
  text-align: center;
  padding: 24px 36px;
  border-right: 1px solid rgba(26,111,163,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(48px, 5vw, 64px);
  color: var(--primary);
  line-height: 1;
  font-weight: 900;
}
.stat-unit { font-size: 20px; font-weight: 700; }
.stat-lbl {
  font-size: 12px;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* ======= SECTION COMMON（ジャンプ率大） ======= */
.sec-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--charcoal);


}
.sec-title em {
  font-style: italic;
  color: var(--orange);
  font-family: 'Noto Serif JP', serif;
}
.sec-title .em-first {
  font-size: 1.8em;
  font-weight: 900;
  display: inline-block;
  color: var(--orange);
}

/* ======= WORRY（ジャンプ率: 見出し28px vs 本文13px = 2倍以上） ======= */
.worry-section {
  background-image: url('img/9911.webp');
  background-attachment: fixed;
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 80px 140px;
  position: relative;
  overflow: hidden;
  margin-top: -99px;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}
.worry-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0, 167, 244,0.1);
  z-index: 0;
}
.worry-section > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .worry-section {
    background-attachment: scroll;
    padding: 80px 32px 100px;
  }
  .install-banner-section { background-attachment: scroll; }
  .promo-banner-wrap { padding: 0 32px 40px; }
  .install-banner-body { padding: 48px 32px; flex-direction: column; align-items: flex-start; gap: 28px; }
}
@media (max-width: 640px) {
  .worry-section {
    padding: 60px 20px 80px;
  }
  .promo-banner-wrap { padding: 0 20px 32px; }
  .install-banner-body { padding: 36px 20px; }
  .install-banner-list { flex-direction: column; gap: 6px; }
}
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.worry-card {
  background: var(--base);
  border: 1.5px solid #d0e4ed;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,111,163,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.worry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(26,111,163,0.12);
  border-color: var(--primary);
}
.wc-top {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.worry-card:nth-child(1) .wc-top { background: linear-gradient(135deg,#e8f6fc,#c8ecf8); }
.worry-card:nth-child(2) .wc-top { background: linear-gradient(135deg,#eef8fd,#d0f0fa); }
.worry-card:nth-child(3) .wc-top { background: linear-gradient(135deg,#e0f4fb,#b8e8f5); }
.worry-card:nth-child(4) .wc-top { background: linear-gradient(135deg,#e8f8ff,#c0ecf8); }
.worry-card:nth-child(5) .wc-top { background: linear-gradient(135deg,#f0faff,#d0eef8); }
.worry-card:nth-child(6) .wc-top { background: linear-gradient(135deg,#daf4ff,#a8dcef); }
.wc-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.wc-n {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: 64px;
  color: rgba(26,111,163,0.7);
  line-height: 1;
  font-weight: 900;
}
.wc-body { padding: 28px 24px; }
.wc-tag {
  display: inline-block;
  background: var(--sub);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.wc-title {
  margin-bottom: 12px;
}
.wc-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 400;
}

/* ======= 動線バナー ======= */
.promo-banner-wrap {
  padding: 0 80px 48px;
  background: var(--base);
}
/* bt1 ホバー画像切替 */
.bt1-hover-wrap {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
.bt1-hover-wrap a {
  position: relative;
  display: inline-block;
}
.bt1-hover-wrap .bt1-img {
  max-width: 100%;
  display: block;
  vertical-align: top;
}
.bt1-hover-wrap .bt1-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bt1-hover-wrap a:hover .bt1-img-hover {
  opacity: 1;
}

/* ======= 取り付け・取り外しバナー ======= */
.install-banner-section {
  padding: 0;
  background-image: url('img/7409.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.install-banner {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.install-banner:hover {
  opacity: 0.95;
}
.install-banner-img-wrap {
  position: absolute;
  inset: 0;
}
.install-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,11,34,0.95) 0%, rgba(0,11,34,0.85) 50%, rgba(0,11,34,0.5) 100%);
}
.install-banner-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 56px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.install-banner-left {
  flex: 1;
}
.install-banner-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.install-banner-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
}
.install-banner-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 20px;
}
.install-banner-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.install-banner-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  padding-left: 16px;
  position: relative;
}
.install-banner-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7ec4d8;
  font-weight: 700;
}
.install-banner-right {
  flex-shrink: 0;
}
.install-banner-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(224,90,43,0.4);
  transition: background 0.2s, box-shadow 0.2s;
}
.install-banner:hover .install-banner-cta-btn {
  background: var(--orange);
  box-shadow: 0 12px 36px rgba(224,90,43,0.5);
}

/* ======= CONDITION ======= */
.condition-section {
  background: #FFFFFF;
  padding: 100px 80px;
}
.condition-section .sec-title {
  margin-bottom: 24px;
}
.condition-section-subheading {
  text-align: center;
  margin-bottom: 30px;
}
.condition-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 56px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.condition-card {
  background: #fff;
  border: 1.5px solid #d0e4ed;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(26,111,163,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
.condition-card:hover {
  box-shadow: 0 16px 48px rgba(26,111,163,0.15);
  transform: translateY(-4px);
}
.traffic-light {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 120px;
  border: 1px solid #9ca3af;
  border-radius: 10px;
  padding: 10px 20px;
  width: 40%;
  background-color: #eeee;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 10px 10px 15px -10px;
}
.tl-dot {
  width: calc((100% - 20px) / 3);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #333;
  flex-shrink: 0;
}
.tl-dot.active-green {
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
}
.tl-dot.active-yellow {
  background: #eab308;
  box-shadow: 0 0 12px #eab308;
}
.tl-dot.active-red {
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}
.condition-lbl {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.condition-lbl-green { background: rgba(34,197,94,0.15); color: #22c55e; }
.condition-lbl-orange { background: rgba(234,179,8,0.2); color: var(--orange); }
.condition-lbl-red { background: rgba(239,68,68,0.15); color: var(--orange); }
.condition-title {
  margin-bottom: 16px;
}
.condition-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 24px;
}
.condition-img-wrap {
  aspect-ratio: 4/3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
}

/* ======= 自分でできる掃除 締めくくり ======= */
.self-clean-closing {
  margin: 56px auto 0;
  max-width: 900px;
}
.self-clean-closing-title {
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}
.self-clean-closing-accent {
  color: var(--orange);
  font-weight: 900;
}
.self-clean-closing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
}
.self-clean-closing-card {
  width: 100%;
  max-width: 420px;
  padding: 24px 28px;
  background: #fff;
  border: 1.5px solid #d0e4ed;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  box-shadow: 0 4px 24px rgba(26, 111, 163, 0.06);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.self-clean-closing-card:hover {
  box-shadow: 0 12px 40px rgba(26, 111, 163, 0.12);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ======= サービスページ ======= */
.service-page { padding-top: 72px; }
/* 狭い親（.entry-content / 900px 記事）からでもビューポート全幅に出す */
.content-fluid {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
	box-sizing: border-box;
}
.service-section-after-divider {
	margin-top: -99px;
	clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}
.service-page-content { max-width: 1000px; margin: 0 auto; }
.service-intro {
	position: relative;
	color: #fff;
}
.service-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 20, 40, 0.5);
	z-index: 0;
}
.service-intro .service-page-title,
.service-intro .condition-sub,
.service-intro .service-trust-badges {
	position: relative;
	z-index: 1;
	color: #fff;
}
.service-intro .service-page-title,
.service-intro .condition-sub {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
}
.service-intro .condition-sub {
	color: rgba(255, 255, 255, 0.98);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
}
/* 重要文言ハイライト（数値・キーワード） */
.service-emphasis {
	color: #000000;
	background: linear-gradient(180deg, transparent 60%, rgba(234, 179, 8, 0.4) 60%);
	font-weight: 700;
	padding: 0 2px;
}
.service-intro .service-emphasis {
	color: #fff;
	background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.3) 60%);
}
.service-trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 16px;
	margin-top: 28px;
}
.service-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.25);
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6), 0 0 8px rgba(255, 255, 255, 0.5);
	font-size: 14px;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 100px;
	backdrop-filter: blur(4px);
}
.service-badge-inline {
	display: inline;
	background: rgba(34, 197, 94, 0.12);
	color: #15803d;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 14px;
}
.service-page-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}
.service-title-icon { font-size: 48px; }
.service-merit-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 1100px;
	margin: 0 auto;
}
.service-merit-card {
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 36px 32px;
}
.service-merit-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.service-merit-card-header .service-card-check {
	margin-bottom: 0;
	flex-shrink: 0;
}
.service-merit-card-header .condition-title {
	margin-bottom: 0;
}
.service-merit-card .condition-desc {
	font-size: 15px;
	line-height: 1.85;
	margin-bottom: 0;
	flex: 1;
	color: var(--charcoal);
}
.service-card-check {
	width: 40px;
	height: 40px;
	background: var(--sub);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}
.service-single-card {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-radius: 24px;
	padding: 40px 48px;
	box-shadow: 0 8px 32px rgba(26, 111, 163, 0.1);
}
.service-effect-card .condition-title {
	margin-top: 24px;
}
.service-effect-card .condition-title:first-child { margin-top: 0; }
.service-effect-card .condition-desc {
	font-size: 15px;
	line-height: 1.8;
	color: var(--charcoal);
}
.service-bullet-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 32px;
}
.service-bullet-list li {
	position: relative;
	padding-left: 24px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--gray);
}
.service-bullet-list li::before {
	content: '●';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-size: 10px;
}
/* よく汚れる環境リスト（見出し＋説明） */
.service-env-intro {
	margin-bottom: 28px !important;
	font-size: 15px !important;
	line-height: 1.8 !important;
	color: var(--charcoal) !important;
}
/* 室外機CTAボックス */
.service-cta-box.service-outdoor-cta {
	margin-top: 28px;
	padding: 24px 28px;
	background: linear-gradient(135deg, rgba(26, 111, 163, 0.08) 0%, rgba(238, 247, 251, 0.8) 100%);
	border: 1.5px solid var(--primary);
	border-radius: 16px;
}
.service-cta-box .condition-desc {
	margin-bottom: 0 !important;
	font-size: 15px;
	color: var(--charcoal);
	font-weight: 500;
}
/* 古いエアコン注意喚起ボックス */
.service-warning-box.service-old-warning {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 28px;
	padding: 20px 24px;
	background: rgba(234, 90, 43, 0.08);
	border: 1.5px solid rgba(224, 90, 43, 0.4);
	border-left: 4px solid var(--orange);
	border-radius: 12px;
}
.service-warning-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--orange);
	margin-top: 2px;
}
.service-warning-box p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: var(--charcoal);
	font-weight: 500;
}
.service-env-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 32px;
}
.service-env-list li {
	position: relative;
	padding-left: 28px;
}
.service-env-list li::before {
	content: '●';
	position: absolute;
	left: 0;
	top: 4px;
	color: var(--primary);
	font-size: 10px;
}
.env-item-title {
	display: block;
	font-weight: 700;
	font-size: 16px;
	color: var(--charcoal);
	margin-bottom: 4px;
}
.env-item-desc {
	font-size: 15px;
	line-height: 1.75;
	color: var(--gray);
	margin: 0;
}
.service-point-list { margin: 0; }
.service-compare-intro {
	margin-bottom: 28px;
}
.service-compare-intro .condition-desc {
	margin-bottom: 16px !important;
}
.service-compare-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
}
.service-compare-badge {
	display: inline-block;
	background: var(--sub);
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 100px;
	border: 1.5px solid rgba(26, 111, 163, 0.3);
}
.service-compare-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.service-compare-other,
.service-compare-ours {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-radius: 24px;
	padding: 32px 40px;
	box-shadow: 0 8px 32px rgba(26, 111, 163, 0.1);
}
.service-compare-ours {
	border-color: #22c55e;
	box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
	position: relative;
}
.service-compare-ribbon {
	display: inline-block;
	background: #22c55e;
	color: #fff;
	padding: 6px 20px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 700;
}
.service-compare-title {
	margin-bottom: 20px;
}
.service-compare-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.service-compare-list li {
	font-size: 15px;
	line-height: 1.7;
	color: var(--charcoal);
	padding-left: 32px;
	position: relative;
}
.service-compare-x li::before {
	content: '×';
	position: absolute;
	left: 0;
	color: var(--orange);
	font-size: 18px;
	font-weight: 700;
}
.service-compare-check li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #22c55e;
	font-size: 18px;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.service-merit-grid { grid-template-columns: 1fr; }
	.service-bullet-list,
	.service-env-list { grid-template-columns: 1fr; }
	.service-compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.service-merit-card { padding: 28px 24px; }
	.service-single-card { padding: 28px 24px; }
	.service-compare-other,
	.service-compare-ours { padding: 24px 28px; }
	.service-trust-badges { flex-wrap: wrap; justify-content: center; gap: 8px 12px; margin-top: 20px; }
	.service-badge { font-size: 12px; padding: 6px 14px; }
	.service-compare-badges { flex-wrap: wrap; }
	.service-compare-badge { font-size: 12px; padding: 6px 14px; }
	.service-cta-box.service-outdoor-cta { padding: 20px 24px; }
	.service-warning-box.service-old-warning { padding: 18px 20px; gap: 12px; }
}

/* ======= FAQページ ======= */
.faq-page { padding-top: 72px; }
.faq-page-content { max-width: 900px; margin: 0 auto; }
.faq-intro {
	position: relative;
	padding: 80px 48px 60px;
	text-align: center;
	color: #fff;
}
.faq-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 20, 40, 0.5);
	z-index: 0;
}
.faq-intro .faq-page-title,
.faq-intro .faq-intro-desc {
	position: relative;
	z-index: 1;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
}
.faq-intro .faq-intro-desc {
	color: rgba(255, 255, 255, 0.98);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
}
.faq-page-title {
	font-family: 'Noto Serif JP', serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 24px;
}
.faq-intro-desc {
	font-size: 16px;
	line-height: 1.85;
	max-width: 720px;
	margin: 0 auto;
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.faq-item {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-top: none;
	transition: background 0.2s;
}
.faq-item:first-of-type { border-top: 1.5px solid #d0e4ed; border-radius: 16px 16px 0 0; overflow: hidden; }
.faq-item:last-of-type { border-radius: 0 0 16px 16px; overflow: hidden; }
.faq-item:only-of-type { border-radius: 16px; }
.faq-item[open] { background: rgba(238, 247, 251, 0.5); }
.faq-question {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 20px 28px;
	cursor: pointer;
	list-style: none;
	font-size: 16px;
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1.6;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: none; }
.faq-question::before {
	content: '';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 4px;
	border: 2px solid var(--primary);
	border-radius: 50%;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A6FA3' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/14px no-repeat;
	transition: transform 0.3s;
}
.faq-item[open] .faq-question::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A6FA3' stroke-width='2'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.faq-q-label {
	flex-shrink: 0;
	color: var(--primary);
	font-weight: 700;
}
.faq-answer {
	padding: 0 28px 24px 52px;
}
.faq-answer p {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 1.8;
	color: var(--gray);
}
.faq-answer p:last-of-type { margin-bottom: 0; }
.faq-note {
	font-size: 13px !important;
	color: var(--gray) !important;
	opacity: 0.9;
	margin-top: 12px !important;
	padding-left: 12px;
	border-left: 3px solid rgba(26, 111, 163, 0.3);
}
.faq-inline-link {
	color: var(--primary);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.faq-inline-link:hover {
	color: #0d5a8a;
}
.faq-link-wrap { margin-top: 12px !important; }

/* ======= お客様のお声ページ ======= */
.voice-page { padding-top: 72px; }
.voice-page-content { max-width: 1100px; margin: 0 auto; }
.voice-intro {
	position: relative;
	padding: 80px 48px 60px;
	text-align: center;
	color: #fff;
}
.voice-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 20, 40, 0.5);
	z-index: 0;
}
.voice-intro .voice-page-title,
.voice-intro .voice-intro-desc {
	position: relative;
	z-index: 1;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
}
.voice-intro .voice-intro-desc {
	color: rgba(255, 255, 255, 0.98);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
}
.voice-page-title {
	font-family: 'Noto Serif JP', serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 24px;
}
.voice-intro-desc {
	font-size: 16px;
	line-height: 1.85;
	max-width: 720px;
	margin: 0 auto;
}
.voice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.voice-card {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-radius: 20px;
	padding: 24px 28px;
	box-shadow: 0 8px 32px rgba(26, 111, 163, 0.1);
	transition: box-shadow 0.3s, transform 0.3s;
}
.voice-card:hover {
	box-shadow: 0 12px 40px rgba(26, 111, 163, 0.15);
	transform: translateY(-2px);
}
.voice-card-service {
	font-size: 12px;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}
.voice-card-stars {
	font-size: 16px;
	color: #eab308;
	letter-spacing: 2px;
	margin-bottom: 12px;
}
.voice-card-text {
	font-size: 14px;
	line-height: 1.8;
	color: var(--gray);
	margin: 0 0 16px;
}
.voice-card-location {
	font-size: 13px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 8px;
}
.voice-card-tag {
	font-size: 12px;
	color: var(--primary);
	font-weight: 600;
}
.voice-cta-sub {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	max-width: 640px;
	margin: 0 auto 24px;
}
.voice-cta-note {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 16px;
}

/* ======= プライバシーポリシーページ ======= */
.privacy-page { padding-top: 72px; }
.privacy-page-content { max-width: 800px; margin: 0 auto; }
.privacy-intro {
	position: relative;
	padding: 80px 48px 60px;
	text-align: center;
	color: #fff;
}
.privacy-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 20, 40, 0.5);
	z-index: 0;
}
.privacy-intro .privacy-page-title,
.privacy-intro .privacy-intro-desc {
	position: relative;
	z-index: 1;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
}
.privacy-intro .privacy-intro-desc {
	color: rgba(255, 255, 255, 0.98);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
}
.privacy-page-title {
	font-family: 'Noto Serif JP', serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 24px;
}
.privacy-intro-desc {
	font-size: 16px;
	line-height: 1.85;
	max-width: 720px;
	margin: 0 auto;
}
.privacy-body { margin: 0; }
.privacy-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: privacy;
}
.privacy-list > li {
	counter-increment: privacy;
	padding-bottom: 28px;
	border-bottom: 1px solid #e5edf2;
	margin-bottom: 28px;
}
.privacy-list > li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.privacy-item-title {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	margin-bottom: 12px;
}
.privacy-item-title::before {
	content: '「' counter(privacy) '. ';
}
.privacy-item-desc {
	font-size: 15px;
	line-height: 1.85;
	color: var(--gray);
	margin: 0;
}
.privacy-item-link {
	margin-top: 12px !important;
}
.privacy-item-link a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.privacy-item-link a:hover {
	color: #0d5a8a;
}
.privacy-update {
	font-size: 14px;
	color: var(--gray);
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e5edf2;
}

/* ======= 料金ページ ======= */
.price-page { padding-top: 72px; }
.price-page-content { max-width: 900px; margin: 0 auto; }
/* 固定ページに article.price-page-content 形式で貼ったときは記事ラッパーを全幅（中の content-fluid が画面幅） */
article.page.price-page-content {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}
/* 固定ページ本文へ price-page-paste.html（.price-page--pasted-content）を貼り付けたとき */
.entry-content:has(> .price-page--pasted-content) {
	max-width: none;
	margin: 0;
	padding: 0;
	overflow-x: visible;
}
.price-page--pasted-content .price-page-content {
	max-width: none;
}
.price-intro {
	position: relative;
	padding: 80px 48px 60px;
	text-align: center;
	color: #fff;
}
.price-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 20, 40, 0.5);
	z-index: 0;
}
.price-intro .price-page-title,
.price-intro .condition-sub {
	position: relative;
	z-index: 1;
	color: #fff;
}
.price-intro .price-page-title,
.price-intro .condition-sub {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
}
.price-intro .condition-sub {
	color: rgba(255, 255, 255, 0.98);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.price-section-after-divider {
	margin-top: -99px;
	clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}
.price-detail-card {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-radius: 24px;
	padding: 40px 48px;
	margin-bottom: 40px;
	box-shadow: 0 8px 32px rgba(26, 111, 163, 0.1);
}
.price-detail-title {
	margin-bottom: 16px;
}
.price-detail-desc {
	font-size: 15px;
	line-height: 1.85;
	color: var(--charcoal);
	margin-bottom: 20px;
}
.price-detail-desc:last-child { margin-bottom: 0; }
.price-detail-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}
.price-detail-checklist li {
	font-size: 15px;
	line-height: 1.8;
	color: var(--charcoal);
	padding: 6px 0;
}
.price-table-wrap {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-radius: 24px;
	padding: 40px 48px;
	margin-bottom: 32px;
	box-shadow: 0 8px 32px rgba(26, 111, 163, 0.1);
}
.price-table-heading {
	font-size: 18px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 4px;
}
.price-table-note {
	font-size: 13px;
	color: var(--gray);
	margin-bottom: 24px;
}
.price-table {
	width: 100%;
	border-collapse: collapse;
}
.price-table tr {
	border-bottom: 1px solid #e5edf2;
}
.price-table tr:last-child { border-bottom: none; }
.price-table td {
	padding: 16px 0;
	vertical-align: top;
}
.price-table-label {
	font-size: 15px;
	font-weight: 600;
	color: var(--charcoal);
}
.price-original {
	display: block;
	font-size: 14px;
	color: var(--gray);
	text-decoration: line-through;
	margin-bottom: 4px;
}
.price-discount {
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}
.price-badge {
	display: inline-block;
	background: rgba(234, 179, 8, 0.2);
	color: #b45309;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 100px;
	margin-top: 8px;
}
.price-table-note-inline {
	display: block;
	font-size: 12px;
	color: var(--gray);
	margin-top: 4px;
}
.price-outdoor-note {
	font-size: 14px;
	color: var(--gray);
	margin-top: 20px;
	line-height: 1.7;
}
.price-web-discount-banner {
	background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(234, 179, 8, 0.05));
	border: 2px solid rgba(234, 179, 8, 0.4);
	border-radius: 20px;
	padding: 28px 36px;
	margin-bottom: 40px;
	text-align: center;
}
.price-web-discount-icon { font-size: 32px; display: block; margin-bottom: 8px; }
.price-web-discount-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 12px;
}
.price-web-discount-desc {
	font-size: 15px;
	line-height: 1.7;
	color: var(--charcoal);
	margin-bottom: 8px;
}
.price-web-discount-caveat {
	font-size: 13px;
	color: var(--gray);
	margin: 0;
}
.price-house-cta {
	background: var(--sub);
	border-radius: 24px;
	padding: 40px 48px;
	margin-bottom: 40px;
	text-align: center;
}
.price-house-cta-title {
	margin-bottom: 16px;
}
.price-house-cta-desc {
	font-size: 15px;
	line-height: 1.8;
	color: var(--charcoal);
	margin-bottom: 24px;
}
.price-notes {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}
.price-notes li {
	font-size: 14px;
	line-height: 1.85;
	color: var(--gray);
	padding: 10px 0;
	border-bottom: 1px solid #e5edf2;
}
.price-notes li:last-child { border-bottom: none; }
.price-cta-btn-wrap { text-align: center; }

/* ======= ハウスクリーニングページ ======= */
.house-page { padding-top: 72px; }
.house-page-content { max-width: 900px; margin: 0 auto; }
.house-intro {
	position: relative;
	padding: 80px 48px 60px;
	text-align: center;
	color: #fff;
}
.house-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 20, 40, 0.5);
	z-index: 0;
}
.house-intro .house-page-title,
.house-intro .condition-sub {
	position: relative;
	z-index: 1;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
}
.house-intro .condition-sub {
	color: rgba(255, 255, 255, 0.98);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.house-section-after-divider {
	margin-top: -99px;
	clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}
.house-detail-card {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-radius: 24px;
	padding: 40px 48px;
	margin-bottom: 40px;
	box-shadow: 0 8px 32px rgba(26, 111, 163, 0.1);
}
.house-dummy {
	font-size: 15px;
	color: var(--gray);
	margin: 0;
}

/* ======= 店舗・法人・機関向けページ ======= */
.corporate-page { padding-top: 72px; }
.corporate-page-inner { max-width: 1100px; margin: 0 auto; }
.corporate-intro {
	position: relative;
	padding: 80px 48px 60px;
	text-align: center;
	color: #fff;
}
.corporate-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 20, 40, 0.5);
	z-index: 0;
}
.corporate-intro .corporate-page-title,
.corporate-intro .condition-sub {
	position: relative;
	z-index: 1;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
}
.corporate-intro .condition-sub {
	color: rgba(255, 255, 255, 0.98);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.corporate-section-after-divider {
	margin-top: -99px;
	clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}
.corporate-reasons-heading {
	font-size: clamp(28px, 4.5vw, 40px) !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em !important;
	color: var(--primary) !important;
	text-shadow: 0 2px 0 rgba(255, 255, 255, 0.9), 0 4px 24px rgba(26, 111, 163, 0.25) !important;
}
.corporate-pillar-section {
	background: linear-gradient(165deg, #e8f4fc 0%, #f5fbff 35%, #ffffff 100%);
	position: relative;
}
.corporate-pillar-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(26, 111, 163, 0.12), transparent 55%);
	pointer-events: none;
}
.corporate-pillar-kicker {
	position: relative;
	z-index: 1;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(17px, 2.2vw, 20px);
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 0.12em;
	margin: 0 auto 36px;
	max-width: min(960px, calc(100% - 32px));
	padding: 14px clamp(20px, 4vw, 40px);
	background: rgba(255, 255, 255, 0.85);
	border: 2px solid rgba(26, 111, 163, 0.35);
	border-radius: 100px;
	box-shadow: 0 8px 32px rgba(26, 111, 163, 0.12);
}
.corporate-pillar-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1080px;
	margin: 0 auto;
}
.corporate-pillar-card {
	position: relative;
	background: #fff;
	border-radius: 24px;
	padding: 36px 28px 32px;
	border: 2px solid rgba(26, 111, 163, 0.2);
	box-shadow:
		0 4px 0 rgba(26, 111, 163, 0.12),
		0 20px 48px rgba(26, 111, 163, 0.14);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.corporate-pillar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--primary), #3d9bc9, var(--primary));
}
.corporate-pillar-card:hover {
	transform: translateY(-6px);
	box-shadow:
		0 4px 0 rgba(26, 111, 163, 0.18),
		0 28px 56px rgba(26, 111, 163, 0.2);
}
.corporate-pillar-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 52px;
	margin-bottom: 18px;
	font-family: 'Noto Serif JP', serif;
	font-size: 20px;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.02em;
	background: linear-gradient(145deg, var(--primary) 0%, #145a8a 100%);
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(26, 111, 163, 0.35);
}
.corporate-pillar-title {
	margin-bottom: 14px;
	line-height: 1.45;
}
.corporate-pillar-desc {
	font-size: 15px;
	line-height: 1.85;
	color: var(--gray);
	margin: 0;
}
.corporate-part-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}
.corporate-part-card {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-radius: 10px;
	padding: 28px 28px;
	box-shadow: 0 8px 28px rgba(26, 111, 163, 0.08);
}
.corporate-part-card-has-img {
	padding: 0;
	overflow: hidden;
}
.corporate-part-img-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 120px;
	background:
		repeating-linear-gradient(
			-45deg,
			rgba(255, 255, 255, 0.06) 0,
			rgba(255, 255, 255, 0.06) 8px,
			transparent 8px,
			transparent 16px
		),
		linear-gradient(145deg, #dceaf2 0%, #a8c4d4 45%, #7a9eb0 100%);
	border-bottom: 1px solid rgba(26, 111, 163, 0.15);
}
.corporate-part-img-placeholder.corporate-part-img-placeholder--photo {
	background: none;
	min-height: 0;
	aspect-ratio: unset;
	overflow: hidden;
}
.corporate-part-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.corporate-part-card-body {
	padding: 22px 28px 28px;
}
.corporate-part-title {
	margin-bottom: 10px;
}
.corporate-part-desc {
	font-size: 14px;
	line-height: 1.85;
	color: var(--gray);
	margin: 0;
}
.corporate-ba-lead {
	text-align: center;
	font-size: 15px;
	line-height: 1.8;
	color: var(--charcoal);
	max-width: 640px;
	margin: 0 auto 36px;
}
.corporate-ba-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 800px;
	margin: 0 auto 32px;
}
.corporate-ba-item { text-align: center; }
.corporate-ba-placeholder {
	aspect-ratio: 4 / 3;
	background: linear-gradient(145deg, #c5d4dc 0%, #8fa8b8 100%);
	border-radius: 16px;
	margin-bottom: 12px;
}
.corporate-ba-placeholder-after {
	background: linear-gradient(145deg, #d4ebf5 0%, #7eb8d4 100%);
}
.corporate-ba-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--charcoal);
	margin: 0 0 4px;
}
.corporate-ba-caption {
	font-size: 13px;
	color: var(--gray);
	margin: 0;
}
.corporate-result-box {
	background: var(--sub);
	border-radius: 20px;
	padding: 28px 32px;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
	border: 1px solid #d0e4ed;
}
.corporate-result-title {
	margin-bottom: 10px;
}
.corporate-result-desc {
	font-size: 15px;
	line-height: 1.75;
	color: var(--charcoal);
	margin: 0;
}
.corporate-stat-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 40px);
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
}
.corporate-stat-visual {
	position: sticky;
	top: 96px;
}
.corporate-stat-img-placeholder {
	width: 100%;
	
	min-height: 240px;
	border-radius: 24px;
	border: 1.5px solid #d0e4ed;
	box-shadow: 0 12px 40px rgba(26, 111, 163, 0.12);
	background:
		repeating-linear-gradient(
			-45deg,
			rgba(255, 255, 255, 0.08) 0,
			rgba(255, 255, 255, 0.08) 8px,
			transparent 8px,
			transparent 16px
		),
		linear-gradient(160deg, #c8dde8 0%, #8fb3c8 50%, #5a8aa3 100%);
}
.corporate-stat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}
.corporate-stat-grid--stack {
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: none;
	margin: 0;
	width: 100%;
}
.corporate-stat-grid--stack .corporate-stat-card {
	text-align: left;
	padding: 20px 24px;
}
.corporate-stat-card {
	background: #fff;
	border: 1.5px solid #d0e4ed;
	border-radius: 20px;
	padding: 24px 22px;
	text-align: center;
	box-shadow: 0 8px 28px rgba(26, 111, 163, 0.08);
}
.corporate-stat-icon {
	display: block;
	font-size: 32px;
	line-height: 1;
	margin-bottom: 12px;
}
.corporate-stat-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--gray);
	margin: 0 0 6px;
	text-transform: none;
}
.corporate-stat-name,
.corporate-stat-value {
	font-family: 'Noto Serif JP', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 8px;
}
.corporate-stat-note {
	font-size: 13px;
	line-height: 1.65;
	color: var(--gray);
	margin: 0;
}
.corporate-flow-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 920px;
}
.corporate-flow-item {
	display: flex;
	gap: clamp(20px, 4vw, 36px);
	align-items: flex-start;
	padding: clamp(28px, 4vw, 40px) 0;
	border-bottom: 2px solid #e5edf2;
}
.corporate-flow-item:last-child { border-bottom: none; }
.corporate-flow-num {
	flex-shrink: 0;
	width: clamp(52px, 10vw, 72px);
	height: clamp(52px, 10vw, 72px);
	background: linear-gradient(135deg, var(--primary), #145a8a);
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(22px, 4.5vw, 32px);
	font-weight: 900;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(26, 111, 163, 0.35);
	line-height: 1;
}
.corporate-flow-title {
	margin: 0 0 12px;
	line-height: 1.35;
	font-weight: 700;
}
.corporate-flow-desc {
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.85;
	color: var(--gray);
	margin: 0;
}
.corporate-section-cta { padding-bottom: 100px; }
.corporate-final-cta {
	background: linear-gradient(180deg, #fff 0%, var(--sub) 100%);
	border: 2px solid #d0e4ed;
	border-radius: 28px;
	padding: 48px 40px;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
	box-shadow: 0 12px 48px rgba(26, 111, 163, 0.12);
}
.corporate-final-eyebrow {
	font-family: 'Noto Serif JP', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 16px;
}
.corporate-final-lead {
	font-size: 15px;
	line-height: 1.85;
	color: var(--charcoal);
	margin: 0 0 28px;
}
.corporate-final-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}
.corporate-final-tel {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	letter-spacing: 0.06em;
}
.corporate-final-tel:hover { text-decoration: underline; }
.corporate-final-note {
	font-size: 13px;
	color: var(--gray);
	margin: 0;
}

@media (max-width: 900px) {
	.corporate-pillar-grid { grid-template-columns: 1fr; max-width: 480px; }
	.corporate-pillar-kicker { font-size: 16px; padding: 12px 20px; }
}
@media (max-width: 900px) {
	.corporate-stat-layout {
		grid-template-columns: 1fr;
	}
	.corporate-stat-visual {
		position: static;
		max-width: 480px;
		margin: 0 auto;
	}
	.corporate-stat-img-placeholder {
		aspect-ratio: 16 / 10;
		min-height: 200px;
	}
}
@media (max-width: 640px) {
	.corporate-intro { padding: 60px 24px 48px; }
	.corporate-part-grid { grid-template-columns: 1fr; }
	.corporate-ba-row { grid-template-columns: 1fr; }
	.corporate-stat-grid:not(.corporate-stat-grid--stack) { grid-template-columns: 1fr; }
	.corporate-final-cta { padding: 36px 24px; }
	.corporate-final-tel { font-size: 22px; }
}

@media (max-width: 640px) {
	.house-intro { padding: 60px 24px 48px; }
	.house-detail-card { padding: 28px 24px; }
}

@media (max-width: 640px) {
	.price-intro { padding: 60px 24px 48px; }
	.price-detail-card,
	.price-table-wrap,
	.price-house-cta { padding: 28px 24px; }
	.price-discount { font-size: 20px; }
	.price-web-discount-banner { padding: 24px 20px; }
	.price-web-discount-title { font-size: 18px; }
}

@media (max-width: 640px) {
	.privacy-intro { padding: 60px 24px 48px; }
	.privacy-page-title { font-size: 24px; }
	.privacy-item-desc { font-size: 14px; }
}

@media (max-width: 1024px) {
	.voice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.voice-intro { padding: 60px 24px 48px; }
	.voice-page-title { font-size: 24px; }
	.voice-grid { grid-template-columns: 1fr; gap: 20px; }
	.voice-card { padding: 20px 24px; }
}

@media (max-width: 640px) {
	.faq-intro { padding: 60px 24px 48px; }
	.faq-page-title { font-size: 24px; }
	.faq-question { padding: 16px 20px; font-size: 15px; }
	.faq-answer { padding: 0 20px 20px 40px; }
	.faq-answer p { font-size: 14px; }
}

/* ======= WHY（パララックス背景・半透明白カード） ======= */
.why-section {
  margin-top: -99px;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  background-image: url('img/IMG_7401.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 80px 140px;
  position: relative;
  overflow: hidden;
}
/* 暗めオーバーレイ */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 40, 0.55);
  z-index: 0;
}
/* コンテンツをオーバーレイの上に */
.why-section > * {
  position: relative;
  z-index: 1;
}
.why-section .sec-eyebrow { color: #FFFFFF; }
.why-section .sec-title { color: #FFFFFF; margin-bottom: 64px; }
.why-section .sec-title em { color: #FFFFFF; }


.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-width: 0;
}
.why-item {
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 24px;
  padding: 52px 56px;
  box-shadow: 0 16px 48px rgba(26,111,163,0.15);
  transition: box-shadow 0.3s, transform 0.3s;
  min-width: 0;
  overflow-wrap: break-word;
}
.why-item:hover {
  box-shadow: 0 20px 56px rgba(26,111,163,0.2);
  transform: translateY(-4px);
}
.why-n {
  font-family: 'Noto Serif JP', serif;
  font-size: 120px;
  color: #1A6FA3;
  opacity: 1;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 24px;
}
.why-icon-row {
  margin-bottom: 20px;
}
.why-title {
  font-weight: 900;
}
.why-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #1A2B3C;
  font-weight: 400;
  opacity: 0.85;
}

/* ======= PRICE ======= */
.price-section {
  background: var(--base);
  padding: 120px 80px 140px;
  margin-top: -120px;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
.price-card {
  border: 2px solid #d0e4ed;
  border-radius: 28px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 56px rgba(26,111,163,0.12);
}
.price-card.feat {
  border-color: var(--primary);
  box-shadow: 0 12px 48px rgba(26,111,163,0.18);
}
.pc-head {
  background: var(--sub);
  padding: 32px 40px;
  position: relative;
}
.price-card.feat .pc-head {
  background: linear-gradient(135deg, var(--primary), #145a8a);
}
.pc-lbl {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card.feat .pc-lbl { color: rgba(255,255,255,0.8); }
.pc-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--charcoal);
}
.price-card.feat .pc-name { color: #fff; }
.pc-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}
.pc-body { padding: 40px; }
.pc-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.pc-yen {
  font-family: 'Noto Serif JP', serif;
  font-size: 56px;
  color: var(--primary);
  line-height: 1;
  font-weight: 900;
}
.pc-unit { font-size: 14px; color: var(--gray); font-weight: 400; }
.pc-note { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.pc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pc-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
}
.pc-btn {
  display: flex;
  justify-content: center;
  margin: 28px auto 0;
}
.price-card:not(.feat) .pc-btn-header {
  background: var(--sub) !important;
  color: var(--primary) !important;
  border: 2px solid rgba(26,111,163,0.3);
  box-shadow: 0 4px 16px rgba(26,111,163,0.12);
}
.price-card:not(.feat) .pc-btn-header:hover {
  background: #dceff5 !important;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(26,111,163,0.18) !important;
}
.pc-feats li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--sub);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.price-cta { margin-top: 64px; text-align: center; }
.price-cta-txt {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 28px;
}
.price-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.btn-sub-outline {
  background: transparent !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  box-shadow: none !important;
}
.btn-sub-outline:hover {
  background: var(--sub) !important;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(26,111,163,0.2) !important;
}

/* ======= CTA ======= */
.cta-section {
  background:var(--orange);/*linear-gradient(135deg, #E05A2B 0%, #f07a4a 100%);*/
  padding: 140px 80px;
  text-align: center;
  position: relative;
  margin-top: -10px;
}


.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-btn-w {
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 36px rgba(0,0,0,0.15);
  transition: all 0.25s;
}
.cta-btn-w:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.cta-btn-o {
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  transition: all 0.25s;
}
.cta-btn-o:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}
.cta-tel-wrap { margin-top: 48px; position: relative; z-index: 1; display: flex; justify-content: center; }
.cta-tel-wrap .cta-tel-card { min-width: 340px; }
.cta-tel-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 36px 48px;
  background: #fff;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.cta-tel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.28);
}

/* ======= FOOTER ======= */
footer {
  background: #1e2d3a;
  padding: 72px 80px 48px;
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo span { color:var(--orange); }
.footer-desc { font-size: 14px; line-height: 1.9; font-weight: 400; }
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-tel:hover { opacity: 0.85; }
.footer-tel-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-tel-icon svg { width: 32px; height: 32px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-mobile-actions {
  display: none;
}

/* ======= Contact Form 7（固定ページ等） ======= */
.wpcf7 {
  width: 100%;
  max-width: min(640px, 100%);
  margin: 0 auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
.wpcf7-form {
  text-align: left;
}
.wpcf7-form p {
  margin: 0 0 1.5em;
  line-height: 2;
}
.wpcf7-form p:last-child {
  margin-bottom: 0;
}
.wpcf7-form label,
.wpcf7-form .wpcf7-list-item label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 2;
}
.wpcf7-form .wpcf7-list-item {
  margin: 0.35em 0;
  line-height: 2;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
  max-width: 100%;
  box-sizing: border-box;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  min-height: 54px;
  font-size: 16px;
  line-height: 1.55;
  font-family: inherit;
  color: var(--charcoal);
  background: #fff;
  border: 1.5px solid #d0e4ed;
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.wpcf7-form textarea {
  min-height: 180px;
  resize: vertical;
  padding-top: 16px;
  padding-bottom: 16px;
}
.wpcf7-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23607080' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: inset 0 0 0 2px rgba(26, 111, 163, 0.25);
}
.wpcf7-form input[type="file"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  min-height: 54px;
  font-size: 15px;
  line-height: 1.5;
  border: 1.5px dashed #c5d4e0;
  border-radius: 16px;
  background: var(--sub);
  cursor: pointer;
}
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
  width: auto;
  min-height: auto;
  margin-right: 10px;
  vertical-align: middle;
}
.wpcf7-form input.wpcf7-submit,
.wpcf7-form button.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
  padding: 20px 36px;
  min-height: 60px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff !important;
  background: #071ffc !important;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(7, 31, 252, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.wpcf7-form input.wpcf7-submit:hover,
.wpcf7-form button.wpcf7-submit:hover {
  background: #0516c9 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(7, 31, 252, 0.42);
}
.wpcf7-form input.wpcf7-submit:disabled,
.wpcf7-form button.wpcf7-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #c2410c;
  font-weight: 600;
}
.wpcf7-not-valid {
  border-color: #ea580c !important;
}
.wpcf7-response-output {
  margin: 1.75em 0 0 !important;
  padding: 16px 18px !important;
  line-height: 1.85 !important;
  font-size: 15px !important;
  border-radius: 14px !important;
}
.wpcf7-spinner {
  margin: 0 12px 0 0;
}

/* ======= 波形SVGセパレーター ======= */
/* 上セクション色=div背景、下セクション色=pathのfillで完全一致 */
.wave-divider,
.stats-wave-top {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg,
.stats-wave-top svg {
  display: block;
  width: 100%;
  height: 80px;
  vertical-align: top;
}

/* ======= スクロールフェードイン ======= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }

/* ======= ANIMATIONS ======= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ======= RESPONSIVE ======= */
@media (max-width: 1200px) {
  nav { height: 56px; padding: 0 24px; }
  .nav-logo-img { height: 28px; }
  .nav-logo-fallback { font-size: 18px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
  .nav-tel { font-size: 18px; }
  .nav-tel-icon svg { width: 24px; height: 24px; }
  .nav-hours { font-size: 10px; }
  .hero { padding-top: 56px; }
  .hero-badge-img-top { width: 120px; top: 80px; }
}
@media (max-width: 1024px) {
  nav, .nav-bar { padding: 0 24px; flex-wrap: wrap; background: #000000; }
  .nav-bar > .nav-links { display: none !important; }
  .nav-bar .nav-hamburger {
    display: flex !important;
    order: 2;
    flex-shrink: 0;
    visibility: visible;
    position: relative;
    z-index: 10000;
  }
  .nav-tel-wrap {
    order: 1;
  }
  /* 全面オーバーレイメニュー */
  .nav-menu-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 9998;
    flex-direction: column;
    padding: 72px 24px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu-overlay .nav-links {
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    -webkit-padding-start: 0;
    align-items: stretch;
  }
  .nav-menu-overlay .nav-links > li {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
  .nav-menu-overlay .nav-links > li > a {
    padding: 16px 0 16px 0 !important;
    margin-left: 0 !important;
  }
  .nav-menu-overlay .nav-links > li.nav-overlay-contact {
    margin: 0 -24px 12px;
    border-bottom: none;
  }
  .nav-menu-overlay .nav-links > li.nav-overlay-contact > a {
    display: block;
    background: #e05a2b;
    color: #fff !important;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 18px 20px !important;
    margin: 0 !important;
  }
  .nav-menu-overlay .nav-links > li.nav-overlay-contact > a:hover,
  .nav-menu-overlay .nav-links > li.nav-overlay-contact > a:focus-visible {
    background: #c94a22;
    color: #fff !important;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 16px 0;
  }
  .nav-dropdown {
    position: static;
    min-width: auto;
    padding: 8px 0 8px 20px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-menu-overlay .nav-dropdown {
    padding: 8px 0 8px 0;
    padding-left: 24px;
    margin-left: 0;
    border-left: 2px solid rgba(255,255,255,0.2);
    list-style: none;
  }
  .nav-menu-overlay .nav-dropdown li {
    padding-left: 0;
    margin-left: 0;
  }
  .nav-dropdown a {
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 14px;
  }
  .nav-dropdown a:hover {
    background: transparent;
    color: #fff;
  }
  .nav-links-tel {
    display: list-item;
    text-align: center;
  }
  .nav-links-tel a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
  }
  /* メニュー開時: 640px以下でも電話番号を表示 */
  .nav-bar:has(.nav-menu-overlay.open) .nav-tel-wrap {
    display: flex !important;
  }
  .nav-bar:has(.nav-menu-overlay.open) .nav-links-tel {
    display: none !important;
  }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
  .hero-badge-img { left: 20px; }
  .hero-badge-img-top { width: 100px; top: 72px; }
  .hero-left { padding: 60px 32px 80px; }
  .hero-right {
    order: -1;
    min-height: 0;
    height: 60vw;
  }
  .hero-photo-wrap {
    position: absolute;
    inset: 0;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
  .hero-photo-placeholder { min-height: 0; height: 100%; }
  .hero-title { font-size: clamp(40px, 8vw, 56px); }
  .hero-subhead { font-size: clamp(16px, 2.5vw, 20px); }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 32px;
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(26,111,163,0.15); }
  .condition-section,
  .why-section,
  .price-section,
  .cta-section {
    padding: 80px 32px 100px;
  }
  .self-clean-closing { margin: 48px 0 0; }
  .self-clean-closing-title { margin-bottom: 24px; }
  .self-clean-closing-grid { gap: 16px; }
  .self-clean-closing-card { padding: 20px 24px; font-size: 14px; }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .worry-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 40px 32px; }
  .why-n { font-size: 80px; }
  .price-grid { grid-template-columns: 1fr; }
  footer { padding: 64px 32px 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .slash-divider-title {
    top: 0% !important;
  }
  .nav-tel-wrap { display: none; }
  .hero { padding-top: 72px; }
  .hero-badge-img { left: 16px; }
  .hero-badge-img-top { width: 80px; top: 80px; }
  .hero-title { font-size: 36px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(26,111,163,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .condition-grid,
  .worry-grid { grid-template-columns: 1fr; }
  .self-clean-closing { margin: 40px 0 0; }
  .self-clean-closing-title { margin-bottom: 20px; }
  .self-clean-closing-grid { grid-template-columns: 1fr; gap: 14px; }
  .self-clean-closing-card { max-width: 100%; padding: 18px 20px; font-size: 14px; }
  .why-section { padding: 60px 20px 80px; }
  .why-item { padding: 32px 20px; min-width: 0; }
  .why-n { font-size: 64px; margin-bottom: 16px; }
  .why-title { line-height: 1.5; word-break: break-word; }
  .why-desc { font-size: 14px; }
  h3 {
    font-size: clamp(19px, 6.85vw, 26px);
    line-height: 1.22;
  }
  .site-main.page-content .entry-content {
    padding: 60px 16px 80px;
  }
  .footer-mobile-actions {
    display: flex;
    align-items: stretch;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9990;
    gap: 0;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    margin: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.28);
    background: #1e2d3a;
  }
  .footer-mobile-tel {
    flex: 1 1 50%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    padding: 14px 8px;
    margin: 0;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s;
  }
  .footer-mobile-tel:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
  }
  .footer-mobile-tel-icon {
    display: flex;
    flex-shrink: 0;
  }
  .footer-mobile-form {
    flex: 1 1 50%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    padding: 14px 8px;
    margin: 0;
    background: #e05a2b;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.2s;
  }
  .footer-mobile-form:hover {
    background: #c94a22;
    color: #fff !important;
  }
  .footer-mobile-form-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    line-height: 0;
  }
  .footer-mobile-form-icon svg {
    display: block;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    aspect-ratio: 1;
    overflow: visible;
  }
  footer {
    padding-bottom: calc(40px + 58px + env(safe-area-inset-bottom, 0px));
  }
  .footer-bottom {
    padding-top: 24px;
  }
}

/* ======= SLASH DIVIDER（水・波 斜め区切り） ======= */
.slash-divider {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #EEF7FB;
}
.slash-divider-img-wrap {
  position: absolute;
  inset: 0;
}
.slash-divider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.slash-divider-fade-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #EEF7FB, transparent);
}
.slash-divider-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #ffffff, transparent);
}
.slash-divider-clip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(100% 55%, 100% 100%, 0% 100%);
}
/* セクションタイトル（slash-divider上オーバーレイ） */
.slash-divider-title {
  position: absolute;
  top: 10%;
  left: 0;
  transform: translateY(-50%);
  z-index: 5;
  margin: 0;
  padding: 0 24px;
  text-align: left;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.5);
}
.slash-divider-title em {
  color: #E05A2B;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.5);
}
.slash-divider-title .em-first {
  font-size: 1.8em;
  font-weight: 900;
  display: inline-block;
  color: var(--orange);
}
/* 画像がない場合のフォールバック */
.slash-divider-fallback {
  background: linear-gradient(135deg, #b3dff0, #7ac8e8) !important;
}
.slash-divider-fallback .slash-divider-img {
  display: none !important;
}

/* ======= 2027年問題セクション ======= */
.problem2027-section {
  margin-top: -99px;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  background-image: url('img/7403.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 80px 80px 120px;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}
.problem2027-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 40, 0.62);
  z-index: 0;
}
.problem2027-section > * {
  position: relative;
  z-index: 1;
}
.problem2027-section .problem2027-lead {
  color: rgba(255, 255, 255, 0.85);
}
.problem2027-section .p2027-card {
  background: rgba(255, 255, 255, 0.92);
}
.problem2027-section .p2027-clean-box {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.4);
}
.problem2027-section .p2027-cta-txt {
  color: #ffffff;
}
.problem2027-lead {
  font-size: 20px;
  line-height: 2;
  color: var(--gray);
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.problem2027-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.p2027-card {
  background: var(--sub);
  border: 1.5px solid #d0e4ed;
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.p2027-card:hover {
  box-shadow: 0 16px 48px rgba(26,111,163,0.12);
  transform: translateY(-4px);
}
.p2027-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(26,111,163,0.3);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
}
.p2027-title {
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}
.p2027-sub {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 4px;
}
.p2027-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 20px;
}
.p2027-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.6;
}
.p2027-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}
.p2027-clean-box {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: linear-gradient(135deg, #e8f6fc, #d0eef8);
  border: 1.5px solid #a8d8ef;
  border-radius: 24px;
  padding: 48px 48px;
  margin-bottom: 48px;
}
.p2027-clean-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 900;
}
.p2027-clean-title {
  font-weight: 900;
  margin-bottom: 12px;
}
.p2027-clean-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 20px;
}
.p2027-clean-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p2027-clean-list li {
  font-size: 14px;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}
.p2027-clean-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.p2027-cta {
  text-align: center;
}
.p2027-cta-txt {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.7;
}
.p2027-cta-txt strong {
  color: var(--orange);
}

@media (max-width: 1024px) {
  .problem2027-section {
    background-attachment: scroll;
    padding: 60px 32px 80px;
  }
  .problem2027-grid { grid-template-columns: 1fr; }
  .p2027-clean-box { flex-direction: column; gap: 20px; padding: 32px 28px; }
  .why-section {
    margin-top: -140px;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  }
  .problem2027-section {
    margin-top: -140px;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  }
  .worry-section {
    margin-top: -140px;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  }
  .service-section-after-divider {
    margin-top: -140px;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width: 640px) {
  .problem2027-section {
    padding: 48px 20px 64px;
  }
  .p2027-card { padding: 28px 24px; }
}
