@charset "UTF-8";
/* =========================================================
   サクラ水道サービス LP  style.css
   カラー：メイン濃紺 / サブ水色 / CTAオレンジ / 白背景 / 濃グレー文字
   ========================================================= */

:root{
  --navy:      #0a3a63;
  --navy-dark: #072a49;
  --blue:      #1a6fb5;
  --sky:       #4aa3df;
  --sky-light: #e8f4fc;
  --sky-bg:    #f2f8fd;
  --orange:    #ff7a1a;
  --orange-dk: #ef6a05;
  --ink:       #2b3138;
  --ink-soft:  #56606b;
  --line:      #e2e8ee;
  --white:     #ffffff;
  --radius:    14px;
  --shadow:    0 10px 30px rgba(10,58,99,.10);
  --shadow-sm: 0 4px 14px rgba(10,58,99,.08);
  --max:       1080px;
  --header-h:  64px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:var(--header-h); -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:"Hiragino Sans","Hiragino Kaku Gothic ProN","Noto Sans JP","Yu Gothic",Meiryo,sans-serif;
  color:var(--ink);
  line-height:1.8;
  background:var(--white);
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,p,ul,ol,dl,dd,figure,blockquote{ margin:0; }
ul,ol{ padding:0; list-style:none; }

.container{ width:100%; max-width:var(--max); margin-inline:auto; padding-inline:20px; }
.container-narrow{ max-width:760px; }
.sp-only{ display:none; }

/* ---------- 共通ボタン ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-weight:700; text-align:center; line-height:1.3;
  padding:16px 26px; border-radius:999px; border:2px solid transparent;
  cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size:1.02rem;
}
.btn small{ display:block; font-size:.78rem; font-weight:600; letter-spacing:.04em; opacity:.9; margin-top:2px; }
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn-tel{ background:var(--orange); color:#fff; box-shadow:0 8px 20px rgba(255,122,26,.35); }
.btn-tel:hover{ background:var(--orange-dk); }
.btn-cta{ background:var(--orange); color:#fff; box-shadow:0 8px 20px rgba(255,122,26,.35); }
.btn-cta:hover{ background:var(--orange-dk); }
.btn-ghost{ background:#fff; color:var(--navy); border-color:var(--navy); }
.btn-ghost:hover{ background:var(--navy); color:#fff; }
.btn-ghost-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.7); }
.btn-ghost-light:hover{ background:#fff; color:var(--navy); border-color:#fff; }
.btn-block{ width:100%; }
.btn-sm{ padding:12px 20px; font-size:.95rem; }

/* ---------- ヘッダー ---------- */
.site-header{
  position:fixed; inset:0 0 auto 0; height:var(--header-h); z-index:100;
  background:rgba(255,255,255,.96); backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .2s ease;
}
.site-header.scrolled{ box-shadow:0 4px 18px rgba(10,58,99,.10); }
.header-inner{ display:flex; align-items:center; height:100%; gap:16px; }
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand-mark{ display:grid; place-items:center; width:40px; height:40px; border-radius:11px; background:linear-gradient(135deg,var(--navy),var(--blue)); color:#fff; flex:none; }
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-name{ font-weight:800; font-size:1.06rem; color:var(--navy); letter-spacing:.01em; }
.brand-sub{ font-size:.68rem; color:var(--ink-soft); font-weight:600; }

.gnav{ display:flex; gap:22px; }
.gnav a{ font-size:.9rem; font-weight:600; color:var(--ink); position:relative; padding:4px 0; }
.gnav a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--sky); transition:width .2s ease; }
.gnav a:hover{ color:var(--navy); }
.gnav a:hover::after{ width:100%; }

.header-tel{ display:flex; align-items:center; gap:8px; color:var(--orange-dk); flex:none; }
.header-tel-txt{ display:flex; flex-direction:column; line-height:1.15; }
.header-tel-num{ font-weight:800; font-size:1.12rem; letter-spacing:.02em; }
.header-tel-note{ font-size:.66rem; color:var(--ink-soft); font-weight:600; }

.nav-toggle{ display:none; width:44px; height:44px; border:none; background:transparent; cursor:pointer; padding:10px; flex:none; }
.nav-toggle span{ display:block; height:2px; background:var(--navy); border-radius:2px; margin:5px 0; transition:transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- ヒーロー ---------- */
.hero{ position:relative; margin-top:var(--header-h); color:#fff; overflow:hidden; }
.hero-bg{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(74,163,223,.55), transparent 60%),
    linear-gradient(160deg,var(--navy) 0%, var(--navy-dark) 70%);
}
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 12% 85%, rgba(255,255,255,.06) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 40%, rgba(255,255,255,.05) 0 3px, transparent 4px);
  background-size:120px 120px, 180px 180px;
}
.hero-inner{ position:relative; z-index:1; padding-block:64px 72px; }
.hero-badge{
  display:inline-block; font-size:.82rem; font-weight:700; letter-spacing:.04em;
  padding:7px 16px; border-radius:999px; background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.3); margin-bottom:22px;
}
.hero-title{ font-size:2.7rem; font-weight:900; line-height:1.28; letter-spacing:.01em; text-shadow:0 2px 18px rgba(0,0,0,.2); }
.hero-lead{ font-size:1.32rem; font-weight:700; margin-top:16px; color:var(--sky-light); }
.hero-desc{ margin-top:18px; font-size:1.02rem; color:rgba(255,255,255,.92); }
.hero-points{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.hero-points li{
  font-size:.9rem; font-weight:700; padding:8px 16px 8px 34px; border-radius:999px;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); position:relative;
}
.hero-points li::before{
  content:""; position:absolute; left:13px; top:50%; width:11px; height:6px;
  border-left:2px solid var(--sky); border-bottom:2px solid var(--sky);
  transform:translateY(-70%) rotate(-45deg);
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero-cta .btn{ padding:18px 30px; font-size:1.06rem; }

/* ---------- 信頼バー ---------- */
.trustbar{ background:var(--navy-dark); color:#fff; }
.trustbar-inner{ display:grid; grid-template-columns:repeat(4,1fr); }
.trust-item{ text-align:center; padding:20px 8px; position:relative; }
.trust-item + .trust-item::before{ content:""; position:absolute; left:0; top:22%; height:56%; width:1px; background:rgba(255,255,255,.18); }
.trust-item strong{ display:block; font-size:1.7rem; font-weight:900; color:#fff; line-height:1.1; }
.trust-item strong em{ font-size:.9rem; font-style:normal; font-weight:700; margin-left:2px; }
.trust-item span{ font-size:.74rem; color:rgba(255,255,255,.78); font-weight:600; }

/* ---------- セクション共通 ---------- */
.section{ padding-block:70px; }
.section-head{ text-align:center; margin-bottom:42px; }
.section-label{ display:block; font-size:.8rem; font-weight:800; letter-spacing:.22em; color:var(--sky); }
.section-title{ font-size:1.85rem; font-weight:900; color:var(--navy); line-height:1.4; margin-top:8px; }
.section-title::after{ content:""; display:block; width:48px; height:4px; border-radius:4px; background:var(--orange); margin:16px auto 0; }
.section-desc{ margin-top:16px; color:var(--ink-soft); font-size:1rem; }

/* ---------- 2. お悩み ---------- */
.section-trouble{ background:var(--sky-bg); }
.trouble-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.trouble-list li{
  background:#fff; border:1px solid var(--line); border-radius:12px;
  padding:18px 18px 18px 52px; position:relative; font-weight:700; box-shadow:var(--shadow-sm);
  font-size:.98rem;
}
.trouble-list li::before{
  content:"?"; position:absolute; left:16px; top:50%; transform:translateY(-50%);
  width:26px; height:26px; border-radius:50%; background:var(--sky-light); color:var(--navy);
  display:grid; place-items:center; font-weight:900; font-size:.95rem;
}
.trouble-conc{ text-align:center; margin-top:36px; }
.trouble-conc p{ font-size:1.12rem; font-weight:700; }
.trouble-conc p:first-child{ margin-bottom:6px; }
.trouble-conc b{ color:var(--orange-dk); }

/* ---------- 3. 選ばれる理由 ---------- */
.reason-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.reason-card{
  position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:34px 24px 26px; box-shadow:var(--shadow-sm); transition:transform .18s ease, box-shadow .18s ease;
}
.reason-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.reason-num{
  position:absolute; top:-14px; left:22px; font-size:1.05rem; font-weight:900; color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--blue)); width:44px; height:34px;
  display:grid; place-items:center; border-radius:9px; letter-spacing:.02em;
}
.reason-icon{ width:60px; height:60px; border-radius:14px; background:var(--sky-light); color:var(--navy); display:grid; place-items:center; margin-bottom:16px; }
.reason-card h3{ font-size:1.14rem; color:var(--navy); font-weight:800; margin-bottom:10px; line-height:1.5; }
.reason-card p{ color:var(--ink-soft); font-size:.94rem; }
.reason-card-cta{
  background:linear-gradient(135deg,var(--navy),var(--blue)); color:#fff; border:none;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; text-align:center;
}
.reason-card-cta:hover{ transform:none; }
.reason-cta-txt{ font-weight:800; font-size:1.1rem; }

/* ---------- 4. サービス ---------- */
.service-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.service-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px;
  box-shadow:var(--shadow-sm); border-top:4px solid var(--sky); transition:transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.service-card h3{ font-size:1.2rem; color:var(--navy); font-weight:800; margin-bottom:10px; padding-left:16px; position:relative; }
.service-card h3::before{ content:""; position:absolute; left:0; top:6px; width:6px; height:70%; background:var(--orange); border-radius:3px; }
.service-card p{ color:var(--ink-soft); font-size:.95rem; }
.service-card-wide{ grid-column:1 / -1; border-top-color:var(--orange); }

/* ---------- 5. 料金 ---------- */
.section-price{ background:var(--sky-bg); }
.price-table{ max-width:640px; margin-inline:auto; background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line); }
.price-row{ display:flex; justify-content:space-between; align-items:center; gap:16px; padding:20px 26px; border-bottom:1px solid var(--line); }
.price-row:last-child{ border-bottom:none; }
.price-row:nth-child(odd){ background:#fbfdff; }
.price-name{ font-weight:700; font-size:1rem; }
.price-val{ font-weight:900; font-size:1.28rem; color:var(--orange-dk); white-space:nowrap; }
.price-note{ max-width:640px; margin:20px auto 0; }
.price-note li{ font-size:.85rem; color:var(--ink-soft); }

/* ---------- 中間CTAバンド ---------- */
.cta-band{ position:relative; color:#fff; text-align:center; padding-block:60px; background:linear-gradient(135deg,var(--navy),var(--blue)); overflow:hidden; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(80% 120% at 50% 0%, rgba(255,255,255,.12), transparent 60%); }
.cta-band-inner{ position:relative; }
.cta-band-lead{ font-size:1rem; color:var(--sky-light); font-weight:600; }
.cta-band-title{ font-size:1.7rem; font-weight:900; margin-top:6px; }
.cta-band-btns{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:26px; }

/* ---------- 6. お客様の声 ---------- */
.voice-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.voice-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px; box-shadow:var(--shadow-sm); }
.voice-stars{ color:#f5a623; font-size:1.05rem; letter-spacing:.06em; margin-bottom:12px; }
.voice-card p{ color:var(--ink); font-size:.96rem; }
.voice-rating{ display:flex; align-items:center; justify-content:center; gap:26px; flex-wrap:wrap; margin-top:34px; background:var(--sky-light); border-radius:var(--radius); padding:26px 30px; }
.voice-rating-score{ display:flex; align-items:baseline; gap:6px; }
.voice-rating-num{ font-size:3rem; font-weight:900; color:var(--navy); line-height:1; }
.voice-rating-max{ font-size:1.1rem; font-weight:700; color:var(--ink-soft); }
.voice-rating-stars{ color:#f5a623; font-size:1.3rem; letter-spacing:.08em; }
.voice-rating-meta p{ font-size:.92rem; font-weight:700; color:var(--navy); margin-top:4px; }
.voice-rating-meta small{ font-weight:500; color:var(--ink-soft); font-size:.78rem; }

/* ---------- 7. ご依頼の流れ ---------- */
.flow-list{ max-width:760px; margin-inline:auto; position:relative; }
.flow-step{ position:relative; padding:0 0 34px 76px; }
.flow-step::before{ content:""; position:absolute; left:27px; top:6px; bottom:-6px; width:2px; background:var(--sky); }
.flow-step:last-child{ padding-bottom:0; }
.flow-step:last-child::before{ display:none; }
.flow-num{
  position:absolute; left:0; top:0; width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,var(--navy),var(--blue)); color:#fff;
  display:grid; place-items:center; font-size:.72rem; font-weight:800; text-align:center; line-height:1.2; z-index:1;
}
.flow-step h3{ font-size:1.16rem; color:var(--navy); font-weight:800; padding-top:6px; }
.flow-step p{ color:var(--ink-soft); font-size:.95rem; margin-top:4px; }

/* ---------- 8. 対応エリア ---------- */
.section-area{ background:var(--sky-bg); text-align:center; }
.area-lead{ font-size:1.05rem; max-width:640px; margin:0 auto; }
.area-list{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin:28px 0 16px; }
.area-list li{ background:#fff; border:2px solid var(--sky); color:var(--navy); font-weight:800; padding:12px 26px; border-radius:999px; box-shadow:var(--shadow-sm); }
.area-note{ font-size:.85rem; color:var(--ink-soft); }

/* ---------- 9. 代表紹介 ---------- */
.owner-inner{ display:grid; grid-template-columns:220px 1fr; gap:40px; align-items:center; }
.owner-photo{
  aspect-ratio:1; border-radius:var(--radius); background:var(--sky-light); color:var(--sky);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; border:1px dashed var(--sky);
}
.owner-photo-note{ font-size:.72rem; color:var(--ink-soft); font-weight:600; }
.owner-title{ text-align:left; margin-top:6px; }
.owner-title::after{ margin-inline:0; }
.owner-name{ font-size:1.1rem; margin:14px 0 12px; }
.owner-name b{ font-size:1.28rem; color:var(--navy); }
.owner-body p{ color:var(--ink-soft); margin-bottom:10px; }

/* ---------- 10. FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-sm); overflow:hidden; }
.faq-item summary{
  list-style:none; cursor:pointer; padding:20px 54px 20px 52px; font-weight:700; position:relative; font-size:1.02rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::before{
  content:"Q"; position:absolute; left:18px; top:50%; transform:translateY(-50%);
  width:26px; height:26px; border-radius:6px; background:var(--navy); color:#fff;
  display:grid; place-items:center; font-weight:900; font-size:.9rem;
}
.faq-item summary::after{
  content:""; position:absolute; right:22px; top:50%; width:11px; height:11px;
  border-right:2px solid var(--sky); border-bottom:2px solid var(--sky);
  transform:translateY(-70%) rotate(45deg); transition:transform .2s ease;
}
.faq-item[open] summary::after{ transform:translateY(-30%) rotate(-135deg); }
.faq-a{ padding:0 24px 20px 52px; color:var(--ink-soft); }
.faq-a p{ position:relative; }

/* ---------- 11. お問い合わせ ---------- */
.section-contact{ background:linear-gradient(180deg,#fff 0%, var(--sky-bg) 100%); }
.contact-head{ text-align:center; margin-bottom:32px; }
.contact-title{ font-size:1.9rem; font-weight:900; color:var(--navy); line-height:1.4; }
.contact-lead{ margin-top:16px; color:var(--ink-soft); }
.contact-lead b{ color:var(--orange-dk); }
.contact-tel-box{ background:#fff; border:2px solid var(--orange); border-radius:var(--radius); text-align:center; padding:26px 20px; box-shadow:var(--shadow); }
.contact-tel-label{ font-weight:700; color:var(--ink); font-size:.95rem; }
.contact-tel-num{ display:inline-flex; align-items:center; gap:10px; font-size:2.1rem; font-weight:900; color:var(--orange-dk); letter-spacing:.02em; margin:6px 0 4px; }
.contact-tel-hours{ font-size:.85rem; color:var(--ink-soft); }
.contact-form-guide{ text-align:center; margin:30px 0 20px; color:var(--ink-soft); font-size:.95rem; }

.contact-form{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; box-shadow:var(--shadow); }
.form-row{ margin-bottom:18px; }
.form-row label{ display:block; font-weight:700; margin-bottom:7px; font-size:.94rem; }
.req{ font-size:.7rem; background:var(--orange); color:#fff; padding:2px 8px; border-radius:4px; margin-left:6px; font-weight:700; vertical-align:middle; }
.contact-form input,.contact-form textarea{
  width:100%; font:inherit; padding:13px 14px; border:1.5px solid var(--line); border-radius:9px;
  background:#fbfdff; color:var(--ink); transition:border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,.contact-form textarea:focus{ outline:none; border-color:var(--sky); box-shadow:0 0 0 3px rgba(74,163,223,.18); background:#fff; }
.contact-form textarea{ resize:vertical; }
.form-note{ text-align:center; font-weight:700; margin-top:12px; min-height:1.4em; }
.form-note.ok{ color:#1a8a4a; }
.form-note.err{ color:#d64545; }
.form-disclaimer{ text-align:center; font-size:.78rem; color:var(--ink-soft); margin-top:12px; }

/* ---------- フッター ---------- */
.site-footer{ background:var(--navy-dark); color:rgba(255,255,255,.85); padding-top:48px; }
.footer-inner{ display:grid; grid-template-columns:1.2fr 1.4fr; gap:34px 40px; }
.footer-brand .brand-name{ color:#fff; font-size:1.2rem; }
.footer-brand p{ font-size:.85rem; margin-top:8px; color:rgba(255,255,255,.7); }
.footer-info{ display:grid; gap:10px; }
.footer-info > div{ display:flex; gap:12px; font-size:.9rem; }
.footer-info dt{ flex:none; width:78px; color:var(--sky); font-weight:700; }
.footer-info dd{ color:rgba(255,255,255,.88); }
.footer-info a{ color:#fff; text-decoration:underline; }
.footer-nav{ grid-column:1 / -1; display:flex; flex-wrap:wrap; gap:8px 22px; border-top:1px solid rgba(255,255,255,.14); padding-top:22px; }
.footer-nav a{ font-size:.86rem; color:rgba(255,255,255,.8); }
.footer-nav a:hover{ color:#fff; }
.copyright{ text-align:center; font-size:.8rem; color:rgba(255,255,255,.6); padding:26px 20px 10px; }
.demo-flag{ text-align:center; font-size:.74rem; color:rgba(255,255,255,.5); padding:0 20px 26px; max-width:720px; margin-inline:auto; }

/* ---------- スマホ固定CTA ---------- */
.sticky-cta{ position:fixed; inset:auto 0 0 0; z-index:90; display:none; grid-template-columns:1fr 1fr; gap:1px; background:rgba(0,0,0,.06); box-shadow:0 -4px 18px rgba(10,58,99,.14); }
.sticky-btn{ display:flex; align-items:center; justify-content:center; gap:8px; padding:14px 8px; font-weight:800; font-size:1rem; color:#fff; }
.sticky-tel{ background:var(--orange); }
.sticky-form{ background:var(--navy); }

/* =========================================================
   画像挿入枠（img-slot）: 写真差し替え用の共通パーツ
   使い方: <figure class="img-slot"> を <img> に差し替えるだけ
   ========================================================= */
.img-slot{
  position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; text-align:center; padding:18px; overflow:hidden;
  background:
    repeating-linear-gradient(-45deg, rgba(74,163,223,.06) 0 12px, transparent 12px 24px),
    linear-gradient(135deg,#eef6fd,#dbebf8);
  border:2px dashed var(--sky); border-radius:var(--radius); color:var(--blue);
}
.img-slot .img-slot-ico{ display:grid; place-items:center; width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,.7); color:var(--blue); }
.img-slot-label{ font-weight:800; font-size:.92rem; color:var(--navy); line-height:1.4; }
.img-slot-hint{ font-size:.72rem; color:var(--ink-soft); }
.img-slot img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* ---------- ヒーローを2カラム化＋写真枠 ---------- */
.hero-inner{ display:grid; grid-template-columns:1.08fr .92fr; gap:46px; align-items:center; }
.hero-copy{ min-width:0; }
.hero-figure{ min-width:0; }
.hero-figure .img-slot{
  aspect-ratio:4/3; background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px),
    rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.45); color:#fff; box-shadow:0 20px 50px rgba(0,0,0,.28);
}
.hero-figure .img-slot .img-slot-ico{ background:rgba(255,255,255,.16); color:#fff; }
.hero-figure .img-slot-label{ color:#fff; }
.hero-figure .img-slot-hint{ color:rgba(255,255,255,.8); }

/* ---------- サービスカードのアイコン ---------- */
.service-icon{ width:52px; height:52px; border-radius:13px; background:var(--sky-light); color:var(--navy); display:grid; place-items:center; margin-bottom:14px; }

/* ---------- 作業の様子ギャラリー（WORKS） ---------- */
.section-works{ background:var(--sky-bg); }
.works-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.work-item{ margin:0; }
.work-item .img-slot{ aspect-ratio:4/3; box-shadow:var(--shadow-sm); }
.work-item figcaption{ text-align:center; font-weight:700; font-size:.9rem; margin-top:10px; color:var(--navy); }
.works-note{ text-align:center; font-size:.82rem; color:var(--ink-soft); margin-top:22px; }

/* ---------- お客様の声：アバター ---------- */
.voice-head{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.voice-avatar{ width:44px; height:44px; border-radius:50%; flex:none; display:grid; place-items:center; background:var(--sky-light); border:2px dashed var(--sky); color:var(--blue); overflow:hidden; }
.voice-avatar img{ width:100%; height:100%; object-fit:cover; border-radius:50%; }
.voice-person{ line-height:1.3; }
.voice-name{ font-weight:800; font-size:.92rem; color:var(--navy); }
.voice-src{ font-size:.72rem; color:var(--ink-soft); }
.voice-card p{ margin-top:0; }

/* =========================================================
   リッチデザイン強化：色数・装飾を増やす
   ========================================================= */

/* --- セクションを装飾ブロブの土台に --- */
.section{ position:relative; overflow:hidden; }
.section > .container{ position:relative; z-index:1; }
.section::before,.section::after{ content:""; position:absolute; border-radius:50%; z-index:0; pointer-events:none; filter:blur(4px); }

/* --- 見出しラベルを色付きピルに --- */
.section-label{
  display:inline-block; background:var(--sky-light); color:var(--blue);
  padding:6px 16px; border-radius:999px; letter-spacing:.16em; font-size:.72rem;
  box-shadow:inset 0 0 0 1px rgba(74,163,223,.25);
}

/* --- 各セクションの背景に色調変化 --- */
.section-trouble{ background:linear-gradient(180deg,#eaf4fc 0%, #f2f8fd 100%); }
.section-trouble::before{ width:360px; height:360px; top:-140px; right:-90px; background:radial-gradient(circle,rgba(74,163,223,.20),transparent 70%); }
.section-trouble::after{ width:280px; height:280px; bottom:-120px; left:-80px; background:radial-gradient(circle,rgba(255,122,26,.10),transparent 70%); }

.section-reason{ background:linear-gradient(180deg,#ffffff 0%, #eef6fd 100%); }
.section-reason::before{ width:320px; height:320px; top:-120px; left:-100px; background:radial-gradient(circle,rgba(26,111,181,.12),transparent 70%); }
.section-reason::after{ width:300px; height:300px; bottom:-130px; right:-90px; background:radial-gradient(circle,rgba(74,163,223,.16),transparent 70%); }

.section-service{ background:linear-gradient(180deg,#ffffff 0%, #fff6ee 100%); }
.section-service::before{ width:340px; height:340px; top:-140px; right:-100px; background:radial-gradient(circle,rgba(255,122,26,.12),transparent 70%); }

.section-works{ background:linear-gradient(180deg,#f2f8fd 0%, #e8f2fb 100%); }
.section-works::after{ width:300px; height:300px; bottom:-120px; right:-90px; background:radial-gradient(circle,rgba(26,111,181,.12),transparent 70%); }

.section-voice{ background:linear-gradient(180deg,#ffffff 0%, #f2f8fd 100%); }
.section-voice::before{ width:300px; height:300px; top:-120px; left:-90px; background:radial-gradient(circle,rgba(245,166,35,.12),transparent 70%); }

.section-flow{ background:linear-gradient(180deg,#ffffff 0%, #eef6fd 100%); }
.section-owner{ background:linear-gradient(135deg,#eef6fd 0%, #ffffff 60%); }
.section-faq{ background:linear-gradient(180deg,#f2f8fd 0%, #eaf4fc 100%); }

/* --- 信頼バー：波形ディバイダで下のセクションへ繋ぐ --- */
.trustbar{ position:relative; background:linear-gradient(135deg,var(--navy) 0%, var(--blue) 100%); padding-bottom:30px; }
.trustbar::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:34px;
  background:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%2034'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2034L0%2018C200%202%20400%2032%20600%2018S1000%202%201200%2018L1200%2034Z'%20fill='%23eaf4fc'/%3E%3C/svg%3E") no-repeat bottom/100% 34px;
}
.trust-item strong{ text-shadow:0 2px 12px rgba(0,0,0,.2); }
.trust-item strong em{ color:var(--sky); }

/* --- アイコンをグラデーション化して鮮やかに --- */
.reason-icon{ background:linear-gradient(135deg,#4aa3df,#1a6fb5); color:#fff; box-shadow:0 10px 20px rgba(26,111,181,.28); }
.service-icon{ background:linear-gradient(135deg,#ffab5e,#ff7a1a); color:#fff; box-shadow:0 10px 20px rgba(255,122,26,.26); }

/* --- カードに彩り・立体感 --- */
.reason-card{ border-top:4px solid var(--sky); }
.reason-card:nth-child(2){ border-top-color:var(--blue); }
.reason-card:nth-child(3){ border-top-color:var(--orange); }
.reason-card:nth-child(4){ border-top-color:var(--sky); }
.reason-card:nth-child(5){ border-top-color:var(--blue); }
.reason-card:hover{ box-shadow:0 16px 34px rgba(26,111,181,.18); }
.service-card:hover{ box-shadow:0 16px 34px rgba(255,122,26,.16); }

/* --- 料金表：ヘッダー帯と強調 --- */
.price-table{ border:none; box-shadow:0 16px 40px rgba(10,58,99,.14); }
.price-table::before{
  content:"料金の目安"; display:block; background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff; font-weight:800; text-align:center; padding:14px; letter-spacing:.04em; font-size:1.02rem;
}
.price-val{ background:linear-gradient(135deg,#fff2e6,#ffe6d1); padding:6px 14px; border-radius:999px; }

/* --- フロー番号：影と発色 --- */
.flow-num{ box-shadow:0 8px 18px rgba(26,111,181,.32); }
.flow-step::before{ background:linear-gradient(180deg,var(--sky),rgba(74,163,223,.2)); }

/* --- お客様の声：総合評価カードを鮮やかに --- */
.voice-rating{ background:linear-gradient(135deg,#e8f4fc,#dbebf8); box-shadow:inset 0 0 0 2px rgba(74,163,223,.25); }

/* --- 対応エリアのタグにグラデ --- */
.area-list li{ background:linear-gradient(135deg,#ffffff,#eef6fd); }

/* --- ヒーロー下部の波形 --- */
.hero{ padding-bottom:0; }
.hero::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:40px; z-index:1;
  background:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%2040'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2040L0%2024C200%208%20400%2036%20600%2022S1000%206%201200%2022L1200%2040Z'%20fill='%23072a49'/%3E%3C/svg%3E") no-repeat bottom/100% 40px;
}

/* =========================================================
   レスポンシブ（スマホ最優先で調整）
   ========================================================= */
@media (max-width:900px){
  .footer-inner{ grid-template-columns:1fr; }
}

@media (max-width:820px){
  .gnav{
    position:fixed; inset:var(--header-h) 0 auto 0; flex-direction:column; gap:0;
    background:#fff; border-bottom:1px solid var(--line); padding:8px 20px 16px;
    transform:translateY(-130%); transition:transform .28s ease; box-shadow:0 12px 24px rgba(10,58,99,.12);
    max-height:calc(100vh - var(--header-h)); overflow:auto;
  }
  .gnav.open{ transform:translateY(0); }
  .gnav a{ padding:14px 6px; border-bottom:1px solid var(--line); font-size:1rem; }
  .gnav a::after{ display:none; }
  .nav-toggle{ display:block; }
  .header-tel-txt{ display:none; }
  .header-tel{ gap:0; }
  .reason-grid{ grid-template-columns:repeat(2,1fr); }
  .voice-grid{ grid-template-columns:1fr; }
  .hero-inner{ grid-template-columns:1fr; gap:30px; }
  .hero-figure{ max-width:520px; width:100%; }
  .works-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:640px){
  body{ font-size:15.5px; }
  .sp-only{ display:inline; }
  .section{ padding-block:52px; }
  .section-title{ font-size:1.5rem; }
  .section-head{ margin-bottom:32px; }

  .hero-inner{ padding-block:44px 56px; }
  .hero-title{ font-size:2.05rem; }
  .hero-lead{ font-size:1.12rem; }
  .hero-desc{ font-size:.98rem; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }
  .hero-figure{ margin-inline:auto; }
  .hero-figure .img-slot{ aspect-ratio:16/10; }

  .trustbar-inner{ grid-template-columns:repeat(2,1fr); }
  .trust-item + .trust-item::before{ display:none; }
  .trust-item:nth-child(3)::before,
  .trust-item:nth-child(2)::before{ display:none; }
  .trust-item{ border-bottom:1px solid rgba(255,255,255,.12); }
  .trust-item strong{ font-size:1.5rem; }

  .trouble-list{ grid-template-columns:1fr; }
  .reason-grid{ grid-template-columns:1fr; }
  .service-grid{ grid-template-columns:1fr; }
  .service-card-wide{ grid-column:auto; }

  .price-row{ padding:16px 18px; }
  .price-val{ font-size:1.14rem; }

  .cta-band-title{ font-size:1.4rem; }
  .cta-band-btns{ flex-direction:column; }
  .cta-band-btns .btn{ width:100%; }

  .voice-rating{ flex-direction:column; gap:12px; text-align:center; }

  .owner-inner{ grid-template-columns:1fr; gap:24px; text-align:center; }
  .owner-photo{ max-width:200px; margin-inline:auto; }
  .owner-title{ text-align:center; }
  .owner-title::after{ margin-inline:auto; }

  .contact-title{ font-size:1.5rem; }
  .contact-tel-num{ font-size:1.7rem; }
  .contact-form{ padding:24px 18px; }

  .sticky-cta{ display:grid; }
  body{ padding-bottom:58px; }
  :root{ --header-h:58px; }
}

@media (max-width:360px){
  .hero-title{ font-size:1.82rem; }
  .contact-tel-num{ font-size:1.5rem; }
}

/* アクセシビリティ：モーション低減 */
@media (prefers-reduced-motion:reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}
