@charset "UTF-8";
/* ============================================================
// company.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: relative;
  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/company/bg-page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.page-header__title-area {
  color: #fff;
}
.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;
}
.page-header__jp {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 0.1762114537vw + 13.3392070485px, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 5px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

/* ------------------------------------------------------------
// ご挨拶
------------------------------------------------------------ */
.company__greeting {
  font-size: clamp(16px, 0.3524229075vw + 14.6784140969px, 20px);
  line-height: 2.4;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media screen and (max-width: 991px) {
  .company__greeting {
    line-height: 1.8;
    padding-inline: 20px;
  }
}