/* =============================================================================
   Page MV（サブページ共通メインビジュアル）
   ============================================================================= */

.page-mv {
  container-type: inline-size;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--margin-40); /* ヘッダー高さ分のオフセット */
  overflow: hidden;
}

/* 背景画像レイヤー */
.page-mv__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 青オーバーレイ */
.page-mv__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 95, 161, 0.25);
}

/* テキストエリア */
.page-mv__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--margin-4);
}

/* サブタイトル */
.page-mv__subtitle {
  font-family: var(--font-family-button);
  font-weight: bold;
  font-size: var(--font-size-28);
  color: var(--color-white);
  text-align: center;
  margin: 0;
}

/* 日本語ページタイトル */
.page-mv__title {
  font-family: var(--font-family-button);
  font-weight: bold;
  font-size: var(--text-page-title);
  color: var(--color-white);
  text-align: center;
  margin: 0;
}

/* Page MV（SP） */
@container (max-width: 320px) {

  .page-mv__subtitle {
    font-size: var(--font-size-16);
  }
}
