@charset "utf-8";

/* ============================================================
   ページヘッダー
============================================================ */
#page-header {
  width: 100%;
  height: 300px;
  background-image: url(../sitemap/img/topimg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-header__logo {
  position: absolute;
  top: 32px;
  left: 48px;
  z-index: 2;
}

.page-header__logo img {
  width: 120px;
  height: auto;
  display: block;
}

.page-header__inner {
  padding: 0 48px;
  margin-top: 120px;
}

.page-header__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  color: #03407a;
  margin: 0 0 8px;
  line-height: 1.2;
}

.page-header__sub {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.page-header__sub-text {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  line-height: 1;
}

.page-header__sub-line {
  display: block;
  width: 200px;
  height: 2px;
  background-color: #03407a;
  flex-shrink: 0;
}


/* ============================================================
   サイトマップ本文
============================================================ */
.sitemap-section {
  padding: 80px 48px;
  background-color: #f3f7fa;
}

.sitemap-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

/* リスト共通リセット */
.sitemap__list,
.sitemap__child {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* L1：トップレベル */
.sitemap__item--l1 {
}

.sitemap__item--l1:first-child {
}

.sitemap__link--l1 {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #03407a;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
  background-color: #fff;
}

.sitemap__link--l1:hover {
  opacity: 0.7;
}

/* L2：子ページ */
.sitemap__child {
  padding: 0 0 12px 48px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sitemap__item--l2 {
  position: relative;
  padding-left: 16px;
}

.sitemap__item--l2::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #03407a;
  font-size: 15px;
  line-height: 1.8;
}

.sitemap__link--l2 {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: #03407a;
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.8;
  transition: opacity 0.2s ease;
}

.sitemap__link--l2:hover {
  opacity: 0.7;
}


/* ============================================================
   @media SP（1024px以下）
============================================================ */
@media (max-width: 1024px) {

  #page-header {
    height: 160px;
  }

  .page-header__inner {
    padding: 0 20px;
    margin-top: 40px;
  }

  .page-header__title {
    font-size: 28px;
  }

  .page-header__sub-text {
    font-size: 16px;
  }

  .page-header__sub-line {
    width: 80px;
  }

  .page-header__logo {
    display: none;
  }

  .sitemap-section {
    padding: 40px 20px;
  }

  .sitemap__link--l1 {
    font-size: 16px;
    padding: 14px 16px;
  }

  .sitemap__child {
    padding: 0 0 12px 32px;
  }

  .sitemap__link--l2 {
    font-size: 14px;
  }

} /* end @media 1024px */