/* ===== パンくず ===== */
.breadcrumb {
  margin-top: 80px;
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
  padding: 12px 32px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: #888;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb-inner a { color: #888; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--orange); }
.breadcrumb-inner span:last-child { color: #333; }

/* ===== サービスヒーロー ===== */
.service-hero {
  position: relative;
  overflow: hidden;
  height: 420px;
}
.service-hero-img {
  position: absolute;
  inset: 0;
}
.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.service-hero-text {
  position: absolute;
  inset: 0;
  /* 左40%を完全塗りつぶし → 右へ向けてフェードアウト */
  background: linear-gradient(
    to right,
    #0f2035 0%,
    #0f2035 38%,
    rgba(15,32,53,0.85) 52%,
    rgba(15,32,53,0.2) 72%,
    transparent 88%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 6%;
  color: #fff;
}
.service-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 3px;
  margin-bottom: 16px;
  width: fit-content;
}
.service-hero-text h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.service-hero-text p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* ===== メイン ===== */
.service-main { padding: 64px 32px; background: #fff; }
.service-inner { max-width: 1100px; margin: 0 auto; }

/* ===== リード ===== */
.lead-section {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #eee;
}
.lead-section h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.4;
}
.lead-section p { color: #555; line-height: 2; margin-bottom: 16px; font-size: 0.97rem; }

/* ===== セクション共通 ===== */
.content-section { margin-bottom: 64px; }
.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.section-title span {
  position: relative;
  padding-bottom: 8px;
}
.section-title span::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ===== チェックグリッド ===== */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.check-grid--3 { grid-template-columns: repeat(3, 1fr); }

.check-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 28px;
  border-top: 4px solid var(--navy);
}
.check-icon { font-size: 1.8rem; margin-bottom: 12px; }
.check-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.check-card ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.check-card li {
  font-size: 0.87rem;
  color: #555;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.check-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ===== 症状グリッド ===== */
.symptom-section { background: #fff8f4; padding: 40px; border-radius: 8px; border-left: 4px solid var(--orange); }
.symptom-section .section-title { margin-bottom: 24px; }
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.symptom-item {
  background: #fff;
  border: 1px solid #fde8d8;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

/* ===== 2カラム ===== */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.col-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 28px;
}
.col-card--accent { background: #edf2f8; border-left: 4px solid var(--navy); }
.col-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.col-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--orange); margin: 16px 0 8px; }
.col-card p { font-size: 0.88rem; color: #555; line-height: 1.8; }
.col-card ul { padding-left: 0; display: flex; flex-direction: column; gap: 6px; }
.col-card li { font-size: 0.87rem; color: #555; padding-left: 14px; position: relative; }
.col-card li::before { content: '·'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ===== 料金テーブル ===== */
.price-section .price-note {
  font-size: 0.87rem;
  color: #888;
  margin-bottom: 16px;
}
.price-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.price-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e8e8e8;
  color: #444;
}
.price-table tr:hover td { background: #f5f8fb; }
.highlight-row td { background: #fef9f5; font-weight: 500; }
.highlight-row td:first-child { color: var(--navy); }
.price-notes {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-notes li {
  font-size: 0.83rem;
  color: #777;
  padding-left: 16px;
  position: relative;
}
.price-notes li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: #aaa;
}

/* ===== フロー ===== */
.flow-section { }
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 180px;
  background: #f7f9fc;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 12px;
}
.flow-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.flow-step p { font-size: 0.83rem; color: #666; line-height: 1.7; }
.flow-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  align-self: center;
  flex-shrink: 0;
  padding-top: 4px;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--navy);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 64px;
  color: #fff;
}
.cta-section h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.cta-section p { opacity: 0.85; margin-bottom: 32px; font-size: 0.95rem; line-height: 1.8; }

/* ===== 他サービス ===== */
.other-services { margin-bottom: 16px; }
.other-services h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--mid-gray);
}
.other-services-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.other-service-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
}
.other-service-card:hover { background: #edf2f8; border-color: var(--navy); }
.other-service-card .icon { font-size: 1.2rem; }

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .service-main { padding: 40px 20px; }
  .check-grid, .check-grid--3, .two-col { grid-template-columns: 1fr; }
  .symptom-grid { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); align-self: center; }
  .cta-section { padding: 40px 24px; }
  .breadcrumb { padding: 10px 20px; margin-top: 80px; }
  .service-hero-text { padding: 0 5%; }
}
