/* ============================
   成功するシニアビジネス完全ガイド
   共通スタイルシート
   senior-guide.css
============================ */

h1.entry-title { display: none; }
p:empty { display: none; }

/* ============================
   Cocoon style.css 競合対策
============================ */

/* 対策1: .entry-content { margin-top:-20px } の打ち消し */
.entry-content .hero {
  margin-top: 20px;
}

/* 対策2: section { margin-bottom:0!important } の打ち消し */
.teal-section {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

/* 対策3: .article h2 / .article h3 の詳細度対策 */
.entry-content .page-wrap h2 {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  line-height: 1.45 !important;
  background-color: transparent !important;
  text-align: left !important;
  border: none !important;
  border-bottom: 2px solid var(--border) !important;
  padding: 0 0 14px 0 !important;
  margin: 56px 0 24px !important;
}
.entry-content .page-wrap h3 {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  background-color: transparent !important;
  border: none !important;
  border-left: 4px solid var(--teal) !important;
  padding: 0 0 0 14px !important;
  margin: 20px 0 20px !important;
}
.entry-content .page-wrap h4 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 32px 0 12px !important;
}
/* teal-section 内のh2保護 */
.entry-content .teal-section h2 {
  color: var(--white) !important;
  background: none !important;
  border: none !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* section-block 内のh2保護 */
.entry-content .section-block h2 {
  background-color: transparent !important;
  border: none !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ============================
   CSS変数
============================ */
:root {
  --navy:        #1c3a5e;
  --navy-mid:    #2a5080;
  --teal:        #4a8fa8;
  --teal-light:  #6db3c8;
  --teal-pale:   #e8f4f8;
  --teal-bg:     #5b9db5;
  --light-bg:    #eef4f7;
  --white:       #ffffff;
  --text:        #333333;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #d0dce6;
  --myth-bg:     #fff8e6;
  --myth-border: #e8b84b;
  --truth-bg:    #e8f4f8;
  --truth-border:#4a8fa8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

/* ============================
   ヒーロー
============================ */
.hero {
  position: relative;
  min-height: 380px;
  background: linear-gradient(120deg, #1c3a5e 0%, #2a5c8a 55%, #4a8fa8 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 40px;
}
.hero::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-light);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  line-height: 1.8;
}
.hero-img {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 240px;
  background: rgba(255,255,255,.08);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 13px;
}
.hero-img span:first-child { font-size: 36px; }

/* ============================
   パンくず
============================ */
.breadcrumb {
  background: var(--light-bg);
  padding: 10px 40px;
margin:0!important;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: var(--border); }

/* ============================
   メインラッパー
============================ */
.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px 40px;
}

/* ============================
   リード文
============================ */
.lead-area {
  padding: 32px 0 20px;
  border-bottom: 1px solid var(--border);
}
.lead-area p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-mid);
}

/* ============================
   h2（白背景エリア）
============================ */
.page-wrap h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin: 56px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.page-wrap h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 50px; height: 2px;
  background: var(--teal);
}

/* ============================
   章：数字＋タイトル横並びh2ブロック
============================ */
.section-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.section-block::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 50px; height: 2px;
  background: var(--teal);
}
.section-block .sec-num {
  display: inline-block !important;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  flex-shrink: 0;
  color: rgba(30, 45, 58, 0.1);
}
.section-block h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
  padding: 0;
  border: none;
  position: static;
  background-color: transparent !important;
}
.section-block h2::after,
.section-block h2::before { display: none; }

/* ============================
   h3
============================ */
.page-wrap h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin: 40px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--teal);
}

/* ============================
   h4
============================ */
.page-wrap h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin: 32px 0 12px;
}

/* ============================
   本文
============================ */
.page-wrap p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.page-wrap p:last-child { margin-bottom: 0; }

.page-wrap ul,
.page-wrap ol {
  font-size: 18px;
  line-height: 1.9;
  padding-left: 0;
  margin-bottom: 18px!important;
  list-style: none;
}
.page-wrap ul li,
.page-wrap ol li {
  position: relative;
  padding: 10px 16px 10px 44px;
  margin-bottom: 4px;
  background: var(--light-bg);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
}
.page-wrap ul li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.page-wrap ol {
  counter-reset: list-counter;
}
.page-wrap ol li {
  counter-increment: list-counter;
}
.page-wrap ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================
   summary-wrap内のliリセット
============================ */
.summary-wrap li {
  background: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  padding: 10px 0 10px 28px !important;
  margin-bottom: 0 !important;
}
.summary-wrap li::before {
  content: '✓' !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  color: var(--teal) !important;
  font-size: inherit !important;
  font-weight: 700 !important;
  transform: none !important;
  top: 10px !important;
  left: 0 !important;
}

/* ============================
   ポイントボックス
============================ */
.point-box {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
.point-box .pt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--teal);
  margin-bottom: 8px;
}
.point-box p {
  font-size: 18px !important;
  color: var(--navy) !important;
  margin: 0 !important;
  font-weight: 500;
  line-height: 1.8 !important;
}

/* ============================
   ティール帯
============================ */
.teal-section {
  background: #4e8fa5;
  padding: 28px 0;
  margin: 16px -40px;
}
.teal-section .teal-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.teal-section .teal-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.teal-section .section-label {
  display: inline-block !important;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  flex-shrink: 0;
  color: rgba(255,255,255,.45);
}
.teal-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  position: static !important;
}
.teal-section h2::after,
.teal-section h2::before { display: none !important; }
.teal-section .teal-body p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  line-height: 1.9;
}
.teal-section .teal-body p:last-child { margin-bottom: 0; }

/* ============================
   画像プレースホルダー
============================ */
.img-ph {
  background: linear-gradient(135deg, #e4ecf3 0%, #ccd8e4 100%);
  border: 2px dashed #aabccc;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7a8fa8;
  font-size: 14px;
  margin: 24px 0;
  letter-spacing: .04em;
}
.img-ph .ph-icon { font-size: 34px; opacity: .55; }
.img-ph-wide  { height: 260px; }
.img-ph-half  { height: 200px; }

.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

/* ============================
   区切り線
============================ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* ============================
   まとめボックス
============================ */
.summary-wrap {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 40px;
  margin: 48px 0 0;
}
.summary-wrap h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
}
.summary-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.summary-wrap li {
  font-size: 18px;
  line-height: 1.75;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.summary-wrap li:last-child { border-bottom: none; }
.summary-wrap li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ============================
   ページナビ
============================ */
.page-nav {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    margin-top: 48px;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
  transition: .2s;
  border: 1px solid var(--border);
  color: var(--navy);
  background: var(--white);
}
.nav-btn:hover { background: var(--teal-pale); border-color: var(--teal); }
.nav-btn.primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.nav-btn.primary:hover { background: var(--navy-mid); }

/* ============================
   セクション問いラベル（theme02〜共通）
============================ */
.sec-question {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 6px;
}
/* teal-section 内では白抜き */
.teal-section .sec-question {
  color: rgba(255,255,255,.65);
}

/* ============================
   セクションリード文（theme02〜共通）
============================ */
.sec-lead {
  font-size: 16px !important;
  color: var(--text-mid) !important;
  line-height: 1.9 !important;
  margin-bottom: 6px !important;
  padding: 0 0 16px !important;
  border-bottom: 1px dashed var(--border);
}

/* ============================
   3カラムカード（theme02〜共通）
============================ */
.three-k-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.k-card {
  text-align: center;
  padding: 20px 16px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.k-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.k-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.k-sub {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================
   事例カードグリッド（theme02〜共通）
============================ */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  border-radius: 0 0 4px 4px;
  padding: 18px 20px;
}
.case-card .case-label {
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.case-card .case-name {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 8px !important;
  line-height: 1.4 !important;
}
.case-card .case-body {
  font-size: 14px !important;
  color: var(--text-mid) !important;
  line-height: 1.8 !important;
  margin: 0 0 10px !important;
}
.case-result {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 3px 10px;
  border-radius: 3px;
}

/* ============================
   条件グリッド・teal帯内（theme02〜共通）
============================ */
.cond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 0;
}
.cond-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 12px 14px;
}
.cond-num {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.cond-text {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
}

/* ============================
   比較テーブル（theme02〜共通）
============================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.compare-table th:first-child { width: 22%; }
.compare-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
}
.compare-table tr:nth-child(even) td {
  background: var(--light-bg);
}
.compare-table .problem {
  color: #c0392b;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}
.compare-table .chance {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

/************************************
お問い合わせ
************************************/
.sec-contact {
    background: url("images/bg-sec07.jpg") repeat center bottom;
    padding: 50px;
	
}

.sec-contact .inner {
	background-color: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    width: auto;
    box-sizing: border-box;
	    max-width: 860px;
}



/* ============================
   レスポンシブ
============================ */
@media (max-width: 700px) {
  .hero { padding: 40px 24px; min-height: auto; }
  .hero-img { display: none; }
  .breadcrumb { padding: 10px 24px; }
  .page-wrap { padding: 0 24px 60px; }
  .teal-section { margin: 40px -24px; }
  .teal-section .teal-inner { padding: 0 24px; }
  .teal-section .section-label { font-size: 36px; }
  .section-block .sec-num { font-size: 36px; }
  .img-grid-2 { grid-template-columns: 1fr; }
  .summary-wrap { padding: 24px 20px; }
  .page-nav { flex-direction: column; }
  .nav-btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .three-k-grid { grid-template-columns: 1fr; }
  .case-grid    { grid-template-columns: 1fr; }
  .cond-grid    { grid-template-columns: 1fr; }
  .compare-table         { font-size: 12px; }
  .compare-table th,
  .compare-table td      { padding: 8px 10px; }
}