/*
Theme Name: おそうじの勇気 -CLeeeeAN-
Theme URI: https://osouji-cleeeean-komaki.com
Author: HIKONIRA
Description: おそうじの勇気 -CLeeeeAN- ハウスクリーニング専用テーマ
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: yuuki-cleeeean
*/

/* ===== CSS Variables ===== */
:root {
  --teal: #0891b2;
  --teal-dark: #0e7490;
  --teal-deep: #155e75;
  --teal-light: #cffafe;
  --teal-pale: #ecfeff;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --line-green: #06c755;
  --line-green-dark: #05a344;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  color: var(--gray-700);
  background: #fff;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }

/* ===== Layout ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--teal-deep);
  margin-bottom: 12px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--teal);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-sub {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--teal-deep);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 0;
  text-align: center;
}
.topbar a { color: #fff; text-decoration: underline; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 12px;
}
.site-logo {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 900;
  color: var(--teal-deep);
  line-height: 1.2;
}
.site-logo span { color: var(--teal); }
.site-logo small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-tel:hover { background: var(--teal-dark); }
.btn-tel .icon { font-size: 1rem; }
.btn-line {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--line-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-line:hover { background: var(--line-green-dark); }
.btn-line .line-icon {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--line-green);
  font-weight: 900;
  font-size: 0.75rem;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 60%, #0ea5e9 100%);
  color: #fff;
  padding: 48px 20px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-catch {
  font-size: clamp(0.85rem, 2vw, 1rem);
  background: rgba(255,255,255,0.2);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
  font-size: 1.1em;
}
.hero-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-services .badge {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(245,158,11,0.4);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-price-badge .price-main {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}
.hero-price-badge .price-sub {
  font-size: 0.85rem;
  opacity: 0.9;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cta-group .cta-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-deep);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}
.hero-cta-group .cta-tel:hover { transform: translateY(-2px); }
.hero-cta-group .cta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(6,199,85,0.4);
  transition: transform 0.2s;
}
.hero-cta-group .cta-line:hover { transform: translateY(-2px); }

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--teal-pale);
  border-top: 3px solid var(--teal-light);
  border-bottom: 3px solid var(--teal-light);
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 24px 20px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-item .icon { font-size: 1.8rem; }
.trust-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-deep);
}

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--gray-200);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--teal-light);
}
.service-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 2.5rem;
}
.service-card-img-placeholder span {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 8px;
}
.service-card-body { padding: 20px; }
.service-card-body h3 {
  font-size: 1.1rem;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.6;
}
.service-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--teal);
}
.service-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* ===== Price Highlight ===== */
.price-highlight-section {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: #fff;
  padding: 48px 20px;
  text-align: center;
}
.price-highlight-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 24px;
}
.price-highlight-title em {
  font-style: normal;
  color: var(--accent);
}
.price-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.price-card {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 180px;
  text-align: center;
}
.price-card .svc-name {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
}
.price-card .svc-price {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--accent);
}
.price-card .svc-price sub {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 400;
}
.price-note {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 24px;
}
.price-cta-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.price-cta-group a {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s;
}
.price-cta-group a:hover { transform: translateY(-2px); }
.price-cta-group .btn-white {
  background: #fff;
  color: var(--teal-deep);
}
.price-cta-group .btn-line-lg {
  background: var(--line-green);
  color: #fff;
}

/* ===== BA Gallery ===== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
/* BA 単一画像カード */
.ba-single-img {
  position: relative;
  width: 100%;
}
.ba-single-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.ba-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--teal-light), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.ba-label {
  position: absolute;
  top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.ba-label.before { left: 8px; background: var(--gray-700); color: #fff; }
.ba-label.after { right: 8px; background: var(--teal); color: #fff; }
.ba-card-body {
  padding: 14px 16px;
  background: #fff;
}
.ba-card-body h4 {
  font-size: 0.95rem;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.ba-card-body p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ===== Work Gallery ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.work-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.work-item img, .work-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-placeholder {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--teal);
}
.work-placeholder small {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 6px;
}
.work-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14,116,144,0.85);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px;
}

/* ===== Reviews ===== */
.bg-gray { background: var(--gray-50); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--teal);
  position: relative;
}
.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--teal-light);
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 8px;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 12px;
}
.review-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
}

/* ===== Flow ===== */
.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 140px;
  flex-shrink: 0;
}
.flow-step-num {
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(8,145,178,0.3);
}
.flow-step h4 {
  font-size: 0.9rem;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.flow-step p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; }
.flow-arrow {
  font-size: 1.5rem;
  color: var(--teal-light);
  align-self: center;
  margin-top: -20px;
}

/* ===== Area ===== */
.bg-teal-pale { background: var(--teal-pale); }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.area-tag {
  background: #fff;
  border: 2px solid var(--teal);
  color: var(--teal-deep);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.contact-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 12px;
}
.contact-section p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 36px;
}
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.contact-tel-box, .contact-line-box {
  border-radius: var(--radius);
  padding: 24px 32px;
  min-width: 240px;
  text-align: center;
}
.contact-tel-box {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
}
.contact-line-box {
  background: var(--line-green);
  border: 2px solid var(--line-green-dark);
}
.contact-tel-box .label, .contact-line-box .label {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 8px;
}
.contact-tel-box .tel-num {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.contact-tel-box .hours {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 4px;
}
.contact-line-box a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--line-green-dark);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
  transition: transform 0.2s;
}
.contact-line-box a:hover { transform: translateY(-2px); }

/* ===== Staff / About ===== */
.staff-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.staff-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.staff-img img { width: 100%; }
.staff-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--teal);
  border-radius: var(--radius);
}
.staff-img-placeholder small {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 8px;
}
.staff-text h3 {
  font-size: 1.4rem;
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.staff-text p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 12px;
}

/* ===== Sub Page Nav (links to sub-pages) ===== */
.subpage-nav {
  background: var(--gray-100);
  padding: 20px 0;
}
.subpage-nav .container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.subpage-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 2px solid var(--teal);
  color: var(--teal-deep);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.subpage-link:hover {
  background: var(--teal);
  color: #fff;
}

/* ===== Floating Buttons ===== */
.float-btns {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-tel, .float-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.float-tel { background: var(--teal); }
.float-line { background: var(--line-green); }
.float-tel:hover, .float-line:hover { transform: scale(1.05); }

/* ===== Footer ===== */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.85);
  padding: 40px 20px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand .logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; }
.footer-nav h4 { color: #fff; font-size: 0.9rem; margin-bottom: 12px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 0.85rem; opacity: 0.8; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 1; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== ガイヘキ洗浄バスターズ Page ===== */
.gaiheki-hero {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 60%, #3b82f6 100%);
  color: #fff;
  padding: 48px 20px 56px;
  text-align: center;
}
.gaiheki-hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.gaiheki-hero .sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 24px;
}
.gaiheki-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gaiheki-reason-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.gaiheki-reason-num {
  font-size: 2rem;
  font-weight: 900;
  color: #f59e0b;
  margin-bottom: 8px;
}
.gaiheki-reason-card h3 {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.5;
}
.gaiheki-reason-big {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1e40af;
}
.gaiheki-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gaiheki-price-table th {
  background: #1e40af;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.9rem;
}
.gaiheki-price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.gaiheki-price-table tr:last-child td { border-bottom: none; }
.gaiheki-price-table tr:nth-child(even) td { background: #f0f9ff; }

/* ===== 会社概要 Page ===== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.company-table th {
  background: var(--teal-pale);
  color: var(--teal-deep);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  width: 30%;
  border-bottom: 2px solid var(--teal-light);
  vertical-align: top;
}
.company-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  line-height: 1.8;
}
.map-container {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 16px;
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.office-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.office-card-header {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: #fff;
  padding: 16px 20px;
}
.office-card-header h3 { font-size: 1rem; }
.office-card-body { padding: 16px 20px; }
.office-card-body p { font-size: 0.88rem; color: var(--gray-700); margin-bottom: 8px; }
.office-card-body .address {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.office-card .map-container { margin: 12px 20px 20px; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; justify-content: center; }
  .site-logo { text-align: center; width: 100%; }
  .staff-section { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gaiheki-reasons { grid-template-columns: 1fr; }
  .float-btns { bottom: 12px; right: 10px; }
  .float-tel span, .float-line span { display: none; }
  .float-tel, .float-line { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .flow-arrow { display: none; }
  .flow-steps { gap: 16px; }
}
@media (max-width: 480px) {
  .contact-tel-box, .contact-line-box { min-width: unset; width: 100%; }
  .price-card { min-width: unset; width: 100%; }
}

/* ===== Header Logo ===== */
.header-logo-img {
  max-height: 44px;
  width: auto;
  display: block;
}
.logo-accent { color: var(--teal); }
.staff-logo {
  max-width: 160px;
  margin-bottom: 12px;
  filter: invert(30%) sepia(80%) saturate(400%) hue-rotate(160deg);
}
.footer-logo {
  max-width: 140px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ===== エアコン強調セクション ===== */
.ac-highlight-section {
  background: linear-gradient(135deg, #f0fdff 0%, #e0f7fa 100%);
  border-top: 3px solid var(--teal-light);
  border-bottom: 3px solid var(--teal-light);
  padding: 56px 20px;
}
.ac-highlight-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.ac-highlight-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ac-highlight-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ac-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--radius);
}
.ac-highlight-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-pale);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid var(--teal-light);
}
.ac-highlight-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--teal-deep);
  line-height: 1.2;
  margin-bottom: 8px;
}
.ac-highlight-title em {
  font-style: normal;
  color: var(--accent-dark);
  font-size: 1.2em;
  display: inline-block;
}
.ac-highlight-multi {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
}
.ac-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.ac-highlight-list li {
  font-size: 0.92rem;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px dashed var(--gray-200);
}
.ac-highlight-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-ac-tel, .btn-ac-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.btn-ac-tel:hover, .btn-ac-line:hover { transform: translateY(-2px); }
.btn-ac-tel {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(8,145,178,0.35);
}
.btn-ac-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(6,199,85,0.35);
}

/* ===== ガイヘキ洗浄バスターズ加盟店セクション ===== */
.gsb-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  padding: 56px 20px;
  color: #fff;
}
.gsb-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.gsb-img-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gsb-img-col img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.gsb-ba-img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.gsb-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.15);
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.gsb-label {
  font-size: 0.85rem;
  background: #fbbf24;
  color: #1e3a8a;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 12px;
}
.gsb-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.gsb-title span { color: #fbbf24; }
.gsb-desc {
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 20px;
}
.gsb-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.gsb-price {
  font-size: 2rem;
  font-weight: 900;
  color: #fbbf24;
}
.gsb-price small { font-size: 0.6em; font-weight: 400; color: rgba(255,255,255,0.8); }
.gsb-plus { font-size: 1.2rem; opacity: 0.7; }
.gsb-base { font-size: 0.9rem; opacity: 0.9; background: rgba(255,255,255,0.15); padding: 4px 12px; border-radius: 8px; }
.gsb-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.gsb-points li { font-size: 0.9rem; opacity: 0.9; }
.btn-gsb-detail {
  display: inline-block;
  background: #fbbf24;
  color: #1e3a8a;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.btn-gsb-detail:hover { transform: translateY(-2px); }

/* ===== 追い焚き配管洗浄 横長セクション ===== */
.oitaki-section {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e4 100%);
  border-top: 3px solid #fed7aa;
  border-bottom: 3px solid #fed7aa;
  padding: 56px 20px;
}
.oitaki-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.oitaki-img-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oitaki-img-top, .oitaki-img-bottom {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}
.oitaki-img-top { aspect-ratio: 4/3; }
.oitaki-img-bottom { aspect-ratio: 4/3; }
.oitaki-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #fff0e0, #ffe4c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--radius);
}
.oitaki-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c2410c;
  background: #fff7ed;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid #fed7aa;
}
.oitaki-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #c2410c;
  line-height: 1.25;
  margin-bottom: 12px;
}
.oitaki-lead {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}
.oitaki-bacteria-box {
  background: #fff;
  border: 2px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 16px;
}
.oitaki-bacteria-box p {
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.oitaki-bacteria-box ul li {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 2;
}
.oitaki-appeal {
  font-size: 1rem;
  font-weight: 700;
  color: #c2410c;
  line-height: 1.7;
  margin-bottom: 20px;
}
.oitaki-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-oitaki-tel, .btn-oitaki-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.btn-oitaki-tel:hover, .btn-oitaki-line:hover { transform: translateY(-2px); }
.btn-oitaki-tel {
  background: #ea580c;
  color: #fff;
  box-shadow: 0 4px 12px rgba(234,88,12,0.35);
}
.btn-oitaki-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(6,199,85,0.35);
}

/* ===== Oitaki Price Box ===== */
.oitaki-price-box {
  background: #fff7ed;
  border: 2px solid #fed7aa;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 16px;
  text-align: center;
}
.oitaki-price-main {
  font-size: 1.4rem;
  font-weight: 900;
  color: #c2410c;
}
.oitaki-price-main span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
}
.oitaki-price-set {
  font-size: 0.85rem;
  color: #ea580c;
  font-weight: 700;
  margin-top: 4px;
}

/* ===== Service Price List (水回り等) ===== */
.service-price-list {
  margin: 8px 0 4px;
  border-top: 1px solid var(--gray-200);
  padding-top: 8px;
}
.service-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 3px 0;
  color: var(--gray-700);
  border-bottom: 1px dashed var(--gray-200);
}
.service-price-row:last-child {
  border-bottom: none;
}
.service-price-row .row-name {
  color: var(--gray-500);
}
.service-price-row .row-price {
  font-weight: 700;
  color: var(--teal-dark);
}

/* ===== Price Note Small ===== */
.price-note-small {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 4px;
  display: block;
}

/* ===== Responsive (新セクション) ===== */
@media (max-width: 768px) {
  .ac-highlight-inner,
  .gsb-inner,
  .oitaki-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oitaki-img-col img,
  .oitaki-img-placeholder {
    aspect-ratio: 4/3;
  }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.font-bold { font-weight: 700; }
.text-teal { color: var(--teal); }
.text-accent { color: var(--accent-dark); }
.badge-new {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
