@charset "UTF-8";
/* ============================================================
// about.scss (運営法人について)
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 22.9074889868vw + 154.0969162996px, 500px);
  padding-top: clamp(76px, 4.7577092511vw + 58.1585903084px, 130px);
  overflow: hidden;
  background-image: url(../images/about/bg-page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
  border-bottom: 3px solid #00b0ca;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #004b40;
  border-bottom: 2px solid #fff;
  z-index: 3;
}
.page-header__inner {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  z-index: 2;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 2.2907488987vw + 25.40969163px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-shadow: 0 0 10px #fff, 0 0 5px #fff;
}
.page-header__jp {
  position: relative;
  display: inline-block;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px #fff, 0 0 5px #fff;
  margin-top: 10px;
  padding-bottom: 10px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #1d1d1d;
}