@charset "UTF-8";
/* サブページ 共通スタイル */

/*---------------------------------
ページヒーロー（共通構造）
---------------------------------*/

.page_hero {
  position: relative;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.page_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 48, 0.52);
}

.page_hero_content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.page_hero_en {
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.6em;
}

.page_hero_title {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  margin: 0;
  border: 0;
}

@media screen and (max-width: 768px) {
  .page_hero {
    height: 200px;
  }
  .page_hero_title {
    font-size: 1.6rem;
  }
}

/*---------------------------------
パンくずリスト
---------------------------------*/

.breadcrumb {
  background: #f5f5f5;
  padding: 10px 0;
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.05em;
}

.breadcrumb .container-xl {
  padding: 0 2rem;
}

.breadcrumb a {
  color: var(--base_color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.5em;
}

/*---------------------------------
セクション共通
---------------------------------*/

.sub_section {
  padding: 5rem 0;
}

.sub_section:nth-child(even) {
  background: #f9f9f9;
}

.sub_section--white {
  background: #fff;
}

.sub_section--gray {
  background: #f9f9f9;
}

.sub_section_title {
  text-align: center;
  margin-bottom: 3rem;
}

.sub_section_title .en {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sec_color);
  margin-bottom: 0.5em;
}

.sub_section_title h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.8em;
}

.sub_section_title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--base_color);
}

.sub_section_lead {
  text-align: center;
  color: #555;
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.9;
}

/*---------------------------------
CTAセクション（共通）
---------------------------------*/

.cta_section {
  background: var(--base_color);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.cta_section_sub {
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.5em;
}

.cta_section_title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.5em;
}

.cta_btn {
  display: inline-block;
  background: #fff;
  color: var(--base_color);
  padding: 0.85rem 3rem;
  border-radius: 2px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.cta_btn:hover {
  opacity: 0.82;
  color: var(--base_color);
}
