/* 北海道ページ固有スタイル。
   メインカラムの白背景やセクション区切り(下線)は top-renewal.css / guide-common.css の
   標準デザインをそのまま使い、ここでは北海道ページ内の部品だけを定義する。
   （area-yamagata.css と同じ方針）
   色は guide-common.css の既存CSS変数を再利用し、同じ色を別名で定義しない。 */
.hokkaido-choice-card,
.hokkaido-related-card {
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(45, 52, 54, .05);
}

.hokkaido-choice-card {
  padding: 24px;
}

.area-hokkaido-guide .area-school-card + .area-school-card,
.area-hokkaido-guide .hokkaido-choice-card + .hokkaido-choice-card {
  margin-top: 18px;
}

/* mv */
.guide-page-header {
  /* background: url(/img/area/hokkaido_mv.jpg) bottom center / cover no-repeat; */
}

/* ページヘッダーの対象地域・掲載校数・更新日 */
.hokkaido-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.hokkaido-page-meta > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--guide-soft);
  border: 1px solid var(--guide-border);
}

.hokkaido-page-meta dt {
  margin: 0;
  color: var(--guide-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hokkaido-page-meta dd {
  margin: 0;
  color: var(--guide-ink);
  font-weight: 700;
}

p.hokkaido-note {
  margin-top: 8px;
}

.hokkaido-note {
  margin: 16px 0 0;
  color: var(--guide-muted);
  line-height: 1.85;
}

.hokkaido-note a {
  color: var(--guide-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 3つの選び方 */
.hokkaido-choice-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--guide-ink);
  font-size: 1.1rem;
  line-height: 1.45;
}

.hokkaido-choice-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--guide-gold);
  color: var(--guide-ink);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.hokkaido-choice-card p {
  margin: 0;
  color: var(--guide-muted);
  line-height: 1.85;
}

.hokkaido-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hokkaido-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hokkaido-related-card {
  display: block;
  padding: 22px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hokkaido-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 52, 54, .1);
}

.hokkaido-related-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--guide-ink);
  font-size: 1.02rem;
}

.hokkaido-related-card span {
  color: var(--guide-muted);
  line-height: 1.8;
}

/* 一覧上部の表示件数・対象地域・絞り込み・並び替え */
.hokkaido-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hokkaido-check-list li {
  position: relative;
  padding: 10px 14px 10px 34px;
  border-radius: 12px;
  background: var(--guide-green-pale);
  border: 1px solid var(--guide-border);
  color: var(--guide-ink);
  line-height: 1.6;
}

.hokkaido-check-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 9px;
  height: 5px;
  border-left: 3px solid var(--guide-gold-dark);
  border-bottom: 3px solid var(--guide-gold-dark);
  transform: rotate(-45deg);
}

/* 各校の宿泊情報リンク */
.hokkaido-sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
}

.hokkaido-sightseeing-card {
  padding: 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--guide-border);
  box-shadow: 0 8px 22px rgba(45, 52, 54, .05);
}

.hokkaido-sightseeing-card h3 {
  margin: 0 0 10px;
  color: var(--guide-ink);
  font-size: 1.05rem;
}

.hokkaido-sightseeing-card p {
  margin: 0 0 8px;
  color: var(--guide-muted);
  line-height: 1.8;
}

.hokkaido-sightseeing-card__food {
  margin-bottom: 0;
}

/* 申込前チェックリスト（チェック状態は持たない確認項目の一覧） */
@media (max-width: 767px) {
  .hokkaido-choice-card {
    padding: 18px;
  }

  .hokkaido-page-meta > div {
    width: 100%;
  }

  .hokkaido-related-grid,
  .hokkaido-sightseeing-grid {
    grid-template-columns: 1fr;
  }

}

/* 印刷時は固定フッターCTAが本文へ重ならないようにする */
@media print {
  .fixed-actions {
    display: none;
  }
}

.hokkaido-link-list a {
  color: var(--guide-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hokkaido-school-count {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--guide-gold-pale);
  color: var(--guide-gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  vertical-align: middle;
}

/* アクセス・宿泊の学校別リンク一覧 */
.hokkaido-link-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hokkaido-link-list li {
  padding: 14px 16px;
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  background: #fff;
}

.hokkaido-link-list li span {
  display: block;
  margin-top: 4px;
  color: var(--guide-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}
