/* ===== ページ固有スタイル: セカンドオピニオン ===== */

/* ===== ページヒーロー（2カラム） ===== */
.page-hero {
  background: var(--bg-light);
  padding: 48px 0 56px;
  color: #1a1a1a;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  margin-bottom: 24px;
  opacity: .8;
}
.breadcrumb a { color: rgba(90, 60, 55, 0.75); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: .5; }
.page-hero-inner { display: flex; align-items: center; gap: 48px; }
.page-hero-content { flex: 1; min-width: 0; }
.page-hero-img {
  flex: 0 0 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.page-hero-img img { width: 100%; height: 280px; object-fit: cover; display: block; }
.page-hero-label {
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  display: inline-block;
  padding: 3px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
  letter-spacing: .1em;
}
.page-hero h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.35; margin-bottom: 20px; }
.page-hero h1 em { font-style: normal; color: #5a3c37; }
.page-hero-lead { font-size: 1.6rem; line-height: 1.8; opacity: 1; margin-bottom: 28px; }
.page-hero-kpi { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.page-hero-kpi-item { font-size: 1.4rem; opacity: .9; display: flex; align-items: baseline; gap: 8px; }
.page-hero-kpi-item strong { font-size: 2.4rem; font-weight: 900; color: var(--accent); white-space: nowrap; }

/* ===== 相談事例カード ===== */
.example-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.example-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.example-card-head { background: var(--bg-light); padding: 20px 24px; border-bottom: 1px solid var(--border); }
.example-card-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  border-radius: 3px;
  padding: 2px 10px;
  margin-bottom: 8px;
}
.example-card-title { font-size: 1.6rem; font-weight: 700; color: #222; line-height: 1.5; }
.example-card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.example-card-profile { font-size: 1.4rem; color: var(--text-muted); }
.example-card-result { display: flex; align-items: baseline; gap: 10px; }
.example-card-result-label {
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--accent-light);
  color: #b8860b;
  border-radius: 3px;
  padding: 2px 10px;
  white-space: nowrap;
}
.example-card-result-value { font-size: 2.0rem; font-weight: 900; color: var(--primary); }
.example-card-text { font-size: 1.4rem; color: #444; line-height: 1.7; }

/* ===== 関連サービス ===== */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.related-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
}
.related-card-title { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.related-card-text { font-size: 1.5rem; color: #444; line-height: 1.7; flex: 1; }
.related-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  align-self: flex-start;
}
.related-card-link::after { content: ' →'; }

/* ===== こんな方に ===== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.target-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid var(--accent);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.target-card:hover { border-left-color: var(--primary); box-shadow: var(--shadow-hover); }
.target-icon { font-size: 3.0rem; line-height: 1; flex-shrink: 0; }
.target-body {}
.target-title { font-size: 1.6rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; line-height: 1.4; }
.target-text { font-size: 1.4rem; color: #555; line-height: 1.6; }

/* ===== 申告前・申告後の対応 ===== */
.timing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.timing-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.timing-card-head {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.timing-card-head-before { background: var(--primary); color: #fff; }
.timing-card-head-after  { background: #7d6608;        color: #fff; }
.timing-card-head-icon { font-size: 3.2rem; line-height: 1; flex-shrink: 0; }
.timing-card-head-meta {}
.timing-card-head-label {
  font-size: 1.3rem;
  font-weight: 700;
  opacity: .75;
  letter-spacing: .08em;
}
.timing-card-head-title { font-size: 2.2rem; font-weight: 900; }
.timing-card-body { background: #fff; padding: 24px 28px; }
.timing-card-merit {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--accent-light);
  color: #7d6608;
  border-radius: 4px;
  padding: 3px 12px;
  margin-bottom: 14px;
  border: 1px solid #e8cc7a;
}
.timing-card-desc { font-size: 1.5rem; color: #444; line-height: 1.8; margin-bottom: 16px; }
.timing-card-list { display: flex; flex-direction: column; gap: 8px; }
.timing-card-list li {
  font-size: 1.4rem;
  color: #333;
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.timing-card-list li::before { content: '▶'; position: absolute; left: 0; font-size: 1.0rem; color: var(--accent); top: 4px; }

/* ===== 確認ポイント ===== */
.check-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.check-point-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.check-point-head {
  background: var(--primary);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-point-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  flex-shrink: 0;
}
.check-point-title { font-size: 1.8rem; font-weight: 700; }
.check-point-body { padding: 20px 24px; }
.check-point-freq {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--accent-light);
  color: #7d6608;
  border-radius: 4px;
  padding: 3px 12px;
  margin-bottom: 12px;
  border: 1px solid #e8cc7a;
}
.check-point-desc { font-size: 1.5rem; color: #444; line-height: 1.8; margin-bottom: 12px; }
.check-point-list { display: flex; flex-direction: column; gap: 6px; }
.check-point-list li {
  font-size: 1.4rem;
  color: #333;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.check-point-list li::before { content: '▶'; position: absolute; left: 0; font-size: 1.0rem; color: var(--accent); top: 4px; }

/* ===== 安心ポイント ===== */
.reassure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.reassure-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.reassure-icon { font-size: 4.0rem; margin-bottom: 14px; }
.reassure-title { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.reassure-text { font-size: 1.5rem; color: #444; line-height: 1.8; }

/* ===== 料金 ===== */
.fee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.fee-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}
.fee-card-head {
  background: var(--bg-light);
  padding: 24px 20px;
}
.fee-card-featured .fee-card-head { background: var(--primary); color: #fff; }
.fee-card-tag {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 2px 14px;
  margin-bottom: 10px;
}
.fee-card-name { font-size: 2.0rem; font-weight: 700; margin-bottom: 8px; }
.fee-card-price { font-size: 3.2rem; font-weight: 900; color: var(--primary); line-height: 1.1; }
.fee-card-featured .fee-card-price { color: var(--accent); }
.fee-card-price small { font-size: 1.6rem; font-weight: 400; }
.fee-card-body { padding: 20px 24px; }
.fee-card-cond { font-size: 1.4rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.fee-card-list { text-align: left; }
.fee-card-list li {
  font-size: 1.4rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.fee-card-list li:last-child { border-bottom: none; }
.fee-card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ===== レスポンシブ（ページ固有） ===== */
@media (max-width: 1040px) {
  .page-hero-img { flex: 0 0 300px; }
  .check-points-grid { grid-template-columns: 1fr 1fr; }
  .example-cards { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero-inner { flex-direction: column; gap: 32px; }
  .page-hero-img { flex: 1 1 auto; width: 100%; }
  .page-hero h1 { font-size: 2.4rem; }
  .target-grid { grid-template-columns: 1fr; }
  .timing-grid { grid-template-columns: 1fr; }
  .check-points-grid { grid-template-columns: 1fr; }
  .reassure-grid { grid-template-columns: 1fr; }
  .fee-cards { grid-template-columns: 1fr; }
  .example-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
