/* ===============================================
 * 下層ページ専用CSS
 * ============================================= */

/* パンくずナビゲーション */
.breadcrumb-wrap {
  background-color: #FFFFFF;
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  flex-wrap: wrap;
}

.breadcrumb-link {
  color: var(--color-normaltext);
  text-decoration: underline;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: var(--color-darkblue);
}

.breadcrumb-separator {
  color: #999999;
  font-size: 12px;
}

.breadcrumb-current {
  color: var(--color-darkblue);
  font-weight: 500;
}

/* ページタイトル背景 */
.bg-page-ttl {
  background-image:
    url('../img/bg-page-ttl.png');
  background-repeat: no-repeat;
  background-position: center top, center bottom;
  background-size: 100%, contain;
  padding: 32px 0 32px;
  position: relative;
}

.page-ttl {
  margin: 0;
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-darkblue);
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* コンテンツエリア */
.subpage-content {
  padding: 0;
}

/* 情報ブロック */
.info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-stroke);
}

.info-block:first-child {
  padding-top: 0;
}

.info-block:last-child {
  border-bottom: none;
}

h2 {
  margin: 0 0 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-darkblue);
  padding-left: 12px;
  border-left: 4px solid var(--color-orange);
}

.info-heading {
  margin: 0 0 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-darkblue);
}

.info-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-normaltext);
}

.info-text-bold {
  font-weight: 700;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}