/* =========================
  Reset / Base
========================= */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1.9;
}

/* =========================
  Header
========================= */
.site-header__top {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.global-nav {
  max-width: 1200px;
  margin: 0 auto;
}

.global-nav__list {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 12px 20px;
}

.global-nav__link {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.global-nav__icon {
  margin-left: 4px;
  font-weight: 700;
}

.site-header__title {
  background: #006b5f;
  padding: 28px 20px;
}

.site-header__heading {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

/* =========================
  Layout
========================= */
.policy-layout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
}

/* =========================
  Policy
========================= */
.policy__section {
  margin-bottom: 36px;
}

.policy__section-title {
  background: #f2f7f6;
  border-left: 5px solid #006b5f;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.policy__text {
  margin-bottom: 10px;
}

.policy__list {
  padding-left: 20px;
}

.policy__list-item {
  margin-bottom: 8px;
}

.policy__footer {
  margin-top: 48px;
  font-weight: 700;
}

/* =========================
  Sidebar
========================= */
.policy-side__box {
  border: 1px solid #ddd;
  padding: 16px;
}

.policy-side__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.policy-side__list {
  list-style: none;
  padding: 0;
}

.policy-side__item {
  margin-bottom: 8px;
}

.policy-side__item a {
  text-decoration: none;
  color: #006b5f;
}

.policy-side__item--active {
  font-weight: 700;
}

/* =========================
  Home（Index）専用レイアウト
========================= */

/* トップページは中央寄せ＋余白広め */
.policy-layout--home {
  grid-template-columns: 1fr 300px;
  align-items: start;
}

/* トップ本文側 */
.policy-layout--home .home-content {
  background: #ffffff;
}

/* サイドナビを少し下げて“浮き”を防ぐ */
.policy-layout--home .policy-side {
  margin-top: 24px;
}

/* トップではカード感を少し強める */
.policy-layout--home .policy-side__box {
  background: #fafafa;
  border-radius: 4px;
}

/* ホームだけ active をやや控えめに */
.policy-layout--home .policy-side__item--active {
  color: #006b5f;
  font-weight: 700;
}
