/* ===== Hero ===== */
.page-hero--house .page-hero-overlay {
  background: linear-gradient(90deg, rgba(5,15,30,0.65) 0%, rgba(5,15,30,0.35) 55%, rgba(5,15,30,0.05) 100%);
}

/* ===== リード サービスメニュー ===== */
.hc-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.hc-menu-item {
  background: var(--bg-alt);
  border: 1.5px solid #d0dce8;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  text-align: center;
  line-height: 1.6;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hc-menu-item:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ===== こんな悩み ===== */
.hc-worries {
  padding: 72px 0;
  background: var(--bg-alt);
}
.hc-worries-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.hc-worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.hc-worry-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px 22px;
  box-shadow: 0 2px 10px rgba(0,40,80,.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hc-worry-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(1,66,127,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  color: var(--blue);
}
.hc-worry-icon svg {
  width: 100%;
  height: 100%;
}
.hc-worry-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  padding-top: 6px;
}
.hc-worries-closing {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: #fff;
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: 0 2px 8px rgba(0,40,80,.05);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== サービス共通 ===== */
.hc-service {
  padding: 80px 0 0;
  background: #fff;
}
.hc-service--alt {
  background: var(--bg-alt);
}
.hc-svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hc-svc-row--rev .hc-svc-img { order: 2; }
.hc-svc-row--rev .hc-svc-body { order: 1; }

.hc-svc-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hc-svc-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.hc-svc-img--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.hc-svc-img--duo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 240px;
}

.hc-svc-label {
  font-size: 0.72rem;
  letter-spacing: .14em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 10px;
}
.hc-svc-title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}
.hc-svc-catch {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}
.hc-svc-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 2;
}

/* ===== 詳細エリア ===== */
.hc-svc-detail {
  padding: 48px 0 80px;
}
.hc-detail-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--green);
}
.hc-area-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.hc-area-grid li {
  padding: 11px 16px;
  font-size: 0.86rem;
  color: var(--text);
  border-bottom: 1px solid #e0e8f0;
  border-right: 1px solid #e0e8f0;
}
.hc-area-grid li:nth-child(even) { border-right: none; }
.hc-area-grid li:nth-last-child(-n+2) { border-bottom: none; }
.hc-area-grid li:nth-child(odd) { background: #f8fafc; }

.hc-area-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

/* ===== オプション ===== */
.hc-option {
  background: #f0f7ff;
  border: 1px solid #c8ddf5;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.hc-option-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.hc-option-effect {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--blue);
  background: rgba(26,110,212,.1);
  border-radius: 20px;
  padding: 2px 10px;
  margin-left: 8px;
}
.hc-option-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.hc-option-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text);
}
.hc-option-price strong {
  font-size: 1.1rem;
  color: var(--blue);
}
.hc-option-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }
.hc-option-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== 価格ボックス ===== */
.hc-price-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hc-price-cond {
  font-size: 0.85rem;
  color: rgba(255,255,255,.75);
  flex: 1;
}
.hc-price-cond-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 6px;
}
.hc-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.hc-price-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.hc-price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1;
}
.hc-price-amount small {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: inherit;
  color: rgba(255,255,255,.7);
  margin-left: 4px;
}

/* ===== エアコンクリーニングへの導線 ===== */
.hc-cross { padding: 72px 0; }
.hc-cross-inner {
  background: var(--bg-alt, #f4f7fb);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.hc-cross-img { height: 100%; }
.hc-cross-img img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }
.hc-cross-body { padding: 40px 48px; }
.hc-cross-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 10px;
}
.hc-cross-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.hc-cross-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hc-worry-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-worries-closing { max-width: 100%; }
  .hc-svc-row { grid-template-columns: 1fr; gap: 32px; }
  .hc-svc-row--rev .hc-svc-img { order: 0; }
  .hc-svc-row--rev .hc-svc-body { order: 0; }
  .hc-svc-img img { height: 240px; }
  .hc-svc-img--duo img { height: 180px; }
  .hc-area-cols { grid-template-columns: 1fr; gap: 24px; }
  .hc-cross-inner { grid-template-columns: 1fr; }
  .hc-cross-img img { min-height: 200px; }
  .hc-cross-body { padding: 32px; }
}
@media (max-width: 600px) {
  .hc-worry-grid { grid-template-columns: 1fr; }
  .hc-worry-card { padding: 18px 16px; }
  .hc-menu { gap: 8px; }
  .hc-menu-item { padding: 12px 16px; font-size: 0.8rem; }
  .hc-svc-img--duo { grid-template-columns: 1fr; }
  .hc-svc-img--duo img { height: 200px; }
  .hc-price-box { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hc-area-grid { grid-template-columns: 1fr; }
  .hc-area-grid li:nth-child(odd) { border-right: none; }
  .hc-area-grid li:nth-last-child(-n+2) { border-bottom: 1px solid #e0e8f0; }
  .hc-area-grid li:last-child { border-bottom: none; }
}
