@charset "UTF-8";
/* ========== Document Setting ========== */
/* ========== Color ========== */
/* ========== Font Family ========== */
/* ======================================================================
メディア・コンテナークエリ
====================================================================== */
/* ======================================================================
テキスト
====================================================================== */
/* ---------- テキスト設定（ショートハンド） ---------- */
/* ---------- 見出し（大） ---------- */
/* ---------- 見出し（中） ---------- */
/* ---------- 見出し（小） ---------- */
/* ---------- 見出し（極小） ---------- */
/* ---------- テキスト（通常） ---------- */
/* ---------- テキスト（小） ---------- */
/* ---------- パーマリンク ---------- */
/* ---------- ナビゲーション ---------- */
/* ---------- ラベル ---------- */
/* ---------- 欧文見出し（大） ---------- */
/* ---------- 欧文見出し（大） ---------- */
/* ---------- 読み上げ専用テキスト（スクリーンリーダー対応） ---------- */
/* ======================================================================
アニメーション
====================================================================== */
/* ---------- アニメーション（アンダーライン - 長さ拡大） ---------- */
/* ---------- アニメーション（アイコン - スライドアップ） ---------- */
/* ======================================================================
擬似要素 - テキストループスライダー
====================================================================== */
/* ======================================================================
下層ページヘッダー
====================================================================== */
/* ======================================================================
セクションコンテンツ
====================================================================== */
/* ======================================================================
ユーティリティー
====================================================================== */
/* ---------- インナー（コンテンツ幅の制限あり） ---------- */
/* ---------- インナー（コンテンツ幅の制限なし） ---------- */
/* ---------- インナー（セクション幅） ---------- */
/* ======================================================================
ポジション
====================================================================== */
/* ---------- ポジション設定（ショートハンド） ---------- */
/* ======================================================================
アイコン
====================================================================== */
/* ---------- アイコン（内部リンク） ---------- */
/* ---------- アイコン（内部リンク） ---------- */
/* ---------- アイコン（外部リンク） ---------- */
/* ---------- アイコン（中央配置） ---------- */
/* ---------- リンク下線（Black） ---------- */
/* ---------- リンク下線（Gray） ---------- */
/* ======================================================================
コンポーネント
====================================================================== */
/* ---------- ボタン（Japanese） ---------- */
/* ---------- ボタン（English） ---------- */
/* ---------- パーマリンク（Japanese） ---------- */
/* ---------- パーマリンク（English） ---------- */
/* ================================================================================
#pageHeader（ページヘッダー）
================================================================================ */
#pageHeader {
  position: relative;
  width: 100%;
  padding-inline: max(40px, (100% - 1120px) / 2);
  width: 100%;
  height: auto;
  background-color: transparent;
  padding-block: 200px 160px;
  overflow: hidden;
  transition: all 0.2s;
  /* ---------- タイトルコンテンツ ---------- */
  /* ---------- カバー画像 ---------- */
}
@media (max-width: 767px) {
  #pageHeader {
    padding-inline: max(20px, (100% - 1120px) / 2);
  }
}
@media (max-width: 767px) {
  #pageHeader {
    padding-block: 96px 80px;
  }
}
#pageHeader #pageHeaderTitle {
  position: absolute;
  top: 216px;
  left: auto;
  display: flex;
  flex-direction: column;
  padding-top: 44px;
  /* -- 装飾 -- */
}
@media (max-width: 767px) {
  #pageHeader #pageHeaderTitle {
    position: relative;
    top: auto;
    left: auto;
    padding-top: 22px;
  }
}
#pageHeader #pageHeaderTitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 82px;
  height: 12px;
  background: url(../img/decoration/decoration-section-heading.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  #pageHeader #pageHeaderTitle::before {
    width: 36px;
    height: 6px;
  }
}
#pageHeader #pageHeaderTitle .title--ja {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 24px;
  order: 2;
}
@media (max-width: 767px) {
  #pageHeader #pageHeaderTitle .title--ja {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  #pageHeader #pageHeaderTitle .title--ja {
    margin-top: 24px;
  }
}
#pageHeader #pageHeaderTitle .title--en {
  text-align: left;
  font-family: futura-pt, sans-serif;
  font-size: 120px;
  font-weight: 500;
  color: #DB6145;
  line-height: 1.25;
  letter-spacing: 0.06em;
  order: 1;
}
@media (max-width: 767px) {
  #pageHeader #pageHeaderTitle .title--en {
    font-size: 24px;
  }
}
#pageHeader #pageHeaderTitle .title--lead {
  width: 30.1785714286vw;
  max-width: 338px;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #2F2F2F;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 64px;
  order: 2;
}
@media (max-width: 767px) {
  #pageHeader #pageHeaderTitle .title--lead {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #pageHeader #pageHeaderTitle .title--lead {
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
  }
}
#pageHeader #pageHeaderImg {
  position: relative;
  width: 59.84375vw;
  height: 460px;
  min-height: 460px;
  overflow: hidden;
  margin-inline: auto calc(50% - 50vw);
  z-index: -1;
}
@media (max-width: 767px) {
  #pageHeader #pageHeaderImg {
    width: calc(100% - (50% - 50vw));
    height: 202px;
    min-height: 202px;
    margin-top: 56px;
    margin-left: calc(50% - 50vw);
  }
}
#pageHeader #pageHeaderImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* ================================================================================
#pageAnchor（ページ内アンカー）
================================================================================ */
#pageAnchor {
  container-type: inline-size;
  width: 100%;
  max-width: 1200px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  #pageAnchor {
    max-width: 1160px;
    padding-inline: 20px;
  }
}
#pageAnchor .nav__heading {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
#pageAnchor .nav__list {
  display: flex;
  justify-content: center;
  gap: 20px 40px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 48px;
  margin-inline: auto;
}
@container (width < 900px) {
  #pageAnchor .nav__list {
    flex-direction: column;
    padding: 32px 32px 40px 32px;
  }
}
#pageAnchor .nav__list__item {
  width: 100%;
  max-width: 270px;
}
@container (width < 900px) {
  #pageAnchor .nav__list__item {
    max-width: 100%;
  }
}
#pageAnchor .nav__list__item .permalink {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  #pageAnchor .nav__list__item .permalink {
    width: 100%;
    padding-bottom: 12px;
  }
}
#pageAnchor .nav__list__item .permalink::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: #999999;
  transition: width 0.2s;
  z-index: 1;
}
#pageAnchor .nav__list__item .permalink:hover::before {
  animation: animation-underline-grow 0.2s ease-in-out forwards;
}
@keyframes animation-underline-grow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
#pageAnchor .nav__list__item .permalink::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #2F2F2F;
  mask-image: url(../img/icon/icon--internal-page.svg);
  mask-size: 100% 100%;
  mask-position: center right;
  mask-repeat: no-repeat;
  margin-left: 0.5em;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
#pageAnchor .nav__list__item .permalink:hover::after {
  animation: animation-icon-up 0.2s ease-in-out forwards;
}
@keyframes animation-icon-up {
  0% {
    mask-position: right top 1.25em;
  }
  100% {
    mask-position: right center;
  }
}
#pageAnchor .nav__list__item .permalink .symbol {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
#pageAnchor .nav__list__item .permalink .label {
  flex-grow: 1;
  flex-shrink: 1;
}
#pageAnchor .nav__list__item .permalink .label__ja {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  #pageAnchor .nav__list__item .permalink .label__ja {
    font-size: 16px;
  }
}
#pageAnchor .nav__list__item .permalink .label__en {
  text-align: left;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #DB6145;
  line-height: 1.25;
  letter-spacing: 0.06em;
}

/* ================================================================================
#benefits（福利厚生）
================================================================================ */
#benefits {
  width: 100%;
  padding-inline: max(40px, (100% - 1120px) / 2);
  margin-top: 136px;
  scroll-margin: 100px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  #benefits {
    padding-inline: max(20px, (100% - 1120px) / 2);
  }
}
@media (max-width: 767px) {
  #benefits {
    margin-top: 120px;
  }
}
#benefits .wrapper {
  margin-inline: auto;
}
#benefits .wrapper #benefitsHeading {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
@media (max-width: 767px) {
  #benefits .wrapper #benefitsHeading {
    gap: 12px;
  }
}
#benefits .wrapper #benefitsHeading hgroup h1 {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  #benefits .wrapper #benefitsHeading hgroup h1 {
    font-size: 24px;
  }
}
#benefits .wrapper #benefitsHeading hgroup p {
  text-align: left;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #DB6145;
  line-height: 1.25;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
@media (max-width: 767px) {
  #benefits .wrapper #benefitsHeading hgroup p {
    margin-top: 4px;
  }
}
#benefits .wrapper #benefitsHeading img {
  width: 96px;
  height: 96px;
}
@media (max-width: 767px) {
  #benefits .wrapper #benefitsHeading img {
    width: 80px;
    height: 80px;
  }
}
#benefits .wrapper .article {
  margin-top: 80px;
}
@media (max-width: 767px) {
  #benefits .wrapper .article {
    margin-top: 32px;
  }
}
#benefits .wrapper .article + .article {
  margin-top: 120px;
}
@media (max-width: 767px) {
  #benefits .wrapper .article + .article {
    margin-top: 96px;
  }
}
#benefits .wrapper .article__heading {
  position: relative;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #DB6145;
  padding-top: 14px;
  padding-left: 14px;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__heading {
    font-size: 20px;
  }
}
#benefits .wrapper .article__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-top: 2px solid #DB6145;
  border-left: 2px solid #DB6145;
}
#benefits .wrapper .article__list {
  list-style: none;
  margin-top: 56px;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__list {
    margin-top: 40px;
  }
}
#benefits .wrapper .article__list .article__list__item {
  background-color: #FFFFFF;
  padding: 32px 32px 40px 32px;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__list .article__list__item {
    padding: 24px 24px 32px 24px;
  }
}
#benefits .wrapper .article__list .article__list__item .content h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__list .article__list__item .content h2 {
    font-size: 16px;
  }
}
#benefits .wrapper .article__list .article__list__item .content h2::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #DB6145;
}
#benefits .wrapper .article__list .article__list__item .content p {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #2F2F2F;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 24px;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__list .article__list__item .content p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #benefits .wrapper .article__list .article__list__item .content p {
    margin-top: 16px;
  }
}
#benefits .wrapper .article__list .article__list__item .content p b {
  font-weight: 500;
}
#benefits .wrapper .article__comment {
  max-width: 866px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-block: 1px solid #DB6145;
  padding-block: 32px;
  margin-top: 80px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__comment {
    gap: 16px;
    padding: 16px 8px;
    margin-top: 40px;
  }
}
#benefits .wrapper .article__comment .commenter {
  width: 112px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__comment .commenter {
    width: 70px;
  }
}
#benefits .wrapper .article__comment .commenter p {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__comment .commenter p {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  #benefits .wrapper .article__comment .commenter p {
    margin-top: 10px;
  }
}
#benefits .wrapper .article__comment .content {
  flex-shrink: 1;
}
#benefits .wrapper .article__comment .content h2 {
  text-align: left;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #DB6145;
  line-height: 1.25;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__comment .content h2 {
    font-size: 12px;
  }
}
#benefits .wrapper .article__comment .content p {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  #benefits .wrapper .article__comment .content p {
    font-size: 12px;
    margin-top: 8px;
  }
}
#benefits .wrapper #worklifeBalance .article__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 48px 35px;
}
@media (max-width: 767px) {
  #benefits .wrapper #worklifeBalance .article__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
#benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(1) {
  grid-area: 1/1/2/2;
}
#benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(2) {
  grid-area: 1/2/2/3;
}
#benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(3) {
  grid-area: 1/3/2/4;
}
#benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(4) {
  grid-area: 2/1/3/2;
}
#benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(5) {
  grid-area: 2/2/3/3;
}
#benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(6) {
  grid-area: 2/3/3/4;
}
#benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(7) {
  grid-area: 3/1/4/4;
}
#benefits .wrapper #worklifeBalance .article__list .article__list__item.col--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 72px;
}
@media (max-width: 767px) {
  #benefits .wrapper #worklifeBalance .article__list .article__list__item {
    padding: 24px 24px 24px 32px;
  }
  #benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(1), #benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(2), #benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(3), #benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(4), #benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(5), #benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(6), #benefits .wrapper #worklifeBalance .article__list .article__list__item:nth-child(7) {
    grid-area: unset;
  }
  #benefits .wrapper #worklifeBalance .article__list .article__list__item.col--2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
#benefits .wrapper #skillUp {
  scroll-margin: 100px;
}
#benefits .wrapper #skillUp .article__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 48px 35px;
}
@media (max-width: 767px) {
  #benefits .wrapper #skillUp .article__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
#benefits .wrapper #internalSystem .article__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 48px 35px;
}
@media (max-width: 767px) {
  #benefits .wrapper #internalSystem .article__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
#benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(1) {
  grid-area: 1/1/2/3;
}
#benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(2) {
  grid-area: 1/3/2/5;
}
#benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(3) {
  grid-area: 1/5/2/7;
}
#benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(4) {
  grid-area: 2/1/3/4;
}
#benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(5) {
  grid-area: 2/4/3/7;
}
@media (max-width: 767px) {
  #benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(1), #benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(2), #benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(3), #benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(4), #benefits .wrapper #internalSystem .article__list .article__list__item:nth-child(5) {
    grid-area: unset;
  }
}
#benefits .wrapper #internalExchange .article__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 48px 35px;
}
@media (max-width: 767px) {
  #benefits .wrapper #internalExchange .article__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

/* ================================================================================
#event（社内行事）
================================================================================ */
#event {
  position: relative;
  width: 100%;
  padding-inline: max(40px, (100% - 1120px) / 2);
  padding-block: 88px 120px;
  margin-top: 120px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  #event {
    padding-inline: max(20px, (100% - 1120px) / 2);
  }
}
@media (max-width: 767px) {
  #event {
    padding-block: 48px 80px;
    margin-top: 80px;
  }
}
#event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F5CC;
  mix-blend-mode: overlay;
  z-index: -1;
}
#event .wrapper #eventHeading {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
@media (max-width: 767px) {
  #event .wrapper #eventHeading {
    gap: 12px;
  }
}
#event .wrapper #eventHeading hgroup h1 {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  #event .wrapper #eventHeading hgroup h1 {
    font-size: 24px;
  }
}
#event .wrapper #eventHeading hgroup p {
  text-align: left;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #DB6145;
  line-height: 1.25;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
@media (max-width: 767px) {
  #event .wrapper #eventHeading hgroup p {
    margin-top: 4px;
  }
}
#event .wrapper #eventHeading img {
  width: 96px;
  height: 96px;
}
@media (max-width: 767px) {
  #event .wrapper #eventHeading img {
    width: 80px;
    height: 80px;
  }
}
#event .wrapper #eventContent {
  width: 100%;
  display: flex;
  gap: 88px 80px;
  margin-top: 56px;
}
@media (max-width: 767px) {
  #event .wrapper #eventContent {
    flex-direction: column-reverse;
    margin-top: 32px;
  }
}
#event .wrapper #eventContent .event-thumbnail {
  width: 480px;
  flex-shrink: 1;
}
@media (max-width: 767px) {
  #event .wrapper #eventContent .event-thumbnail {
    width: calc(50% - 50vw + 100vw);
    margin-left: calc(50% - 50vw);
  }
}
#event .wrapper #eventContent .article-container {
  width: 560px;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  #event .wrapper #eventContent .article-container {
    width: 100%;
    gap: 32px;
  }
}
#event .wrapper #eventContent .article-container article h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  #event .wrapper #eventContent .article-container article h2 {
    font-size: 16px;
  }
}
#event .wrapper #eventContent .article-container article h2::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #DB6145;
}
#event .wrapper #eventContent .article-container article p {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #2F2F2F;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 24px;
}
@media (max-width: 767px) {
  #event .wrapper #eventContent .article-container article p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #event .wrapper #eventContent .article-container article p {
    margin-top: 16px;
  }
}
#event .wrapper #eventContent .article-container article p b {
  font-weight: 500;
}

/* ================================================================================
#training（研修制度）
================================================================================ */
#training {
  position: relative;
  width: 100%;
  padding-inline: max(40px, (100% - 1120px) / 2);
  padding-block: 88px 120px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  #training {
    padding-inline: max(20px, (100% - 1120px) / 2);
  }
}
@media (max-width: 767px) {
  #training {
    padding-block: 48px 120px;
  }
}
#training::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.6) 100%);
  mix-blend-mode: overlay;
  z-index: -1;
}
#training .wrapper #trainingHeading {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
@media (max-width: 767px) {
  #training .wrapper #trainingHeading {
    gap: 12px;
  }
}
#training .wrapper #trainingHeading hgroup h1 {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  #training .wrapper #trainingHeading hgroup h1 {
    font-size: 24px;
  }
}
#training .wrapper #trainingHeading hgroup p {
  text-align: left;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #DB6145;
  line-height: 1.25;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
@media (max-width: 767px) {
  #training .wrapper #trainingHeading hgroup p {
    margin-top: 4px;
  }
}
#training .wrapper #trainingHeading img {
  width: 96px;
  height: 96px;
}
@media (max-width: 767px) {
  #training .wrapper #trainingHeading img {
    width: 80px;
    height: 80px;
  }
}
#training .wrapper #trainingContent {
  width: 100%;
  margin-top: 56px;
}
@media (max-width: 767px) {
  #training .wrapper #trainingContent {
    margin-top: 32px;
  }
}
#training .wrapper #trainingContent .heading__title {
  position: relative;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #DB6145;
  padding-top: 14px;
  padding-left: 14px;
}
@media (max-width: 767px) {
  #training .wrapper #trainingContent .heading__title {
    font-size: 20px;
  }
}
#training .wrapper #trainingContent .heading__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-top: 2px solid #DB6145;
  border-left: 2px solid #DB6145;
}
#training .wrapper #trainingContent .heading__description {
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #2F2F2F;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 40px;
}
@media (max-width: 767px) {
  #training .wrapper #trainingContent .heading__description {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #training .wrapper #trainingContent .heading__description {
    margin-top: 24px;
  }
}
#training .wrapper #trainingContent .schedule-img {
  width: 100%;
  margin-top: 72px;
}
@media (max-width: 767px) {
  #training .wrapper #trainingContent .schedule-img {
    margin-top: 40px;
  }
}

/*# sourceMappingURL=environment.css.map */
