@charset "UTF-8";
/* ============================================================
   /column/ogata2/direct-exam/ 大型二種免許を直接受験する方法 ページ固有スタイル
   guide-common.css のトークン（--guide-ink など）を前提とする。
   合格率・難易度・費用を強調しない・断定しない方針。
   新しいアイコン体系やインラインstyleは追加しない（指示書§22）。
   ============================================================ */

.ogata-direct-guide {
  margin-top: 8px;
}

.ogata-direct-guide .guide-section {
  border-bottom: 1px solid var(--guide-border);
}

.ogata-direct-guide .guide-intro__lead {
  margin-top: 0;
  color: var(--guide-ink);
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.9;
}

.ogata-direct-guide .guide-intro__note {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: var(--guide-soft);
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  color: var(--guide-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* 冒頭の結論・確認事項のカード型箇条書き */
.ogata-direct-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ogata-direct-points li {
  position: relative;
  padding: 12px 14px 12px 40px;
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  line-height: 1.8;
}

.ogata-direct-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.15em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--guide-gold);
}

/* 通常の箇条書き */
.ogata-direct-list {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.ogata-direct-list li {
  margin: 8px 0;
  color: var(--guide-ink);
  line-height: 1.9;
}

/* 路上練習セクションなどの個別トピック見出し（H3） */
.ogata-direct-guide .guide-section h3 {
  margin: 28px 0 8px;
  padding-left: 14px;
  border-left: 4px solid var(--guide-gold);
  color: var(--guide-ink);
  font-size: 1.05rem;
  line-height: 1.6;
}

.ogata-direct-guide .guide-section h3:first-of-type {
  margin-top: 24px;
}

/* 直接受験の流れ（順序付きリスト） */
.ogata-direct-flow {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: direct-step;
  display: grid;
  gap: 12px;
}

.ogata-direct-flow li {
  position: relative;
  counter-increment: direct-step;
  padding: 14px 16px 14px 58px;
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  line-height: 1.8;
}

.ogata-direct-flow li::before {
  content: counter(direct-step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--guide-ink);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

/* 所持免許による違いのテーブル */
.by-license-table {
  min-width: 640px;
}

.by-license-table thead th {
  background: var(--guide-ink);
  color: #fff;
}

.by-license-table tbody th[scope="row"] {
  background: var(--guide-soft);
  text-align: left;
  vertical-align: top;
}

.by-license-table tbody td {
  text-align: left;
  vertical-align: top;
}

.by-license-table tbody tr:nth-child(even) {
  background: var(--guide-soft);
}

/* 受付・申請の必要書類テーブル、直接受験と指定教習所の比較テーブル */
.apply-table,
.choose-table {
  min-width: 560px;
}

.choose-table {
  min-width: 720px;
}

.apply-table thead th,
.choose-table thead th {
  background: var(--guide-ink);
  color: #fff;
}

.apply-table tbody th[scope="row"],
.choose-table tbody th[scope="row"] {
  background: var(--guide-soft);
  text-align: left;
  vertical-align: top;
}

.apply-table tbody td,
.choose-table tbody td {
  text-align: left;
  vertical-align: top;
}

.apply-table tbody tr:nth-child(even),
.choose-table tbody tr:nth-child(even) {
  background: var(--guide-soft);
}

/* 関連ページ */
.ogata-direct-related {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

@media (min-width: 620px) {
  .ogata-direct-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ogata-direct-related a {
  display: block;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--guide-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ogata-direct-related a:hover,
.ogata-direct-related a:focus-visible {
  border-color: var(--guide-gold);
  box-shadow: 0 8px 20px rgba(45, 52, 54, 0.08);
}

.ogata-direct-related a strong {
  display: block;
  margin-bottom: 4px;
}

.ogata-direct-related a span {
  color: var(--guide-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ページ下部の車種導線（主導線＋空き確認の副導線） */
.ogata-direct-cta .guide-cta__primary p {
  margin-top: 0;
}

.ogata-direct-cta .guide-button {
  margin-top: 12px;
}

