@charset "UTF-8";
/* ========== Document Setting ========== */
/* ========== Color ========== */
/* ========== Font Family ========== */
/* ======================================================================
メディア・コンテナークエリ
====================================================================== */
/* ======================================================================
テキスト
====================================================================== */
/* ---------- テキスト設定（ショートハンド） ---------- */
/* ---------- 見出し（大） ---------- */
/* ---------- 見出し（中） ---------- */
/* ---------- 見出し（小） ---------- */
/* ---------- 見出し（極小） ---------- */
/* ---------- テキスト（通常） ---------- */
/* ---------- テキスト（小） ---------- */
/* ---------- パーマリンク ---------- */
/* ---------- ナビゲーション ---------- */
/* ---------- ラベル ---------- */
/* ---------- 欧文見出し（大） ---------- */
/* ---------- 欧文見出し（大） ---------- */
/* ---------- 読み上げ専用テキスト（スクリーンリーダー対応） ---------- */
/* ======================================================================
アニメーション
====================================================================== */
/* ---------- アニメーション（アンダーライン - 長さ拡大） ---------- */
/* ---------- アニメーション（アイコン - スライドアップ） ---------- */
/* ======================================================================
擬似要素 - テキストループスライダー
====================================================================== */
/* ======================================================================
下層ページヘッダー
====================================================================== */
/* ======================================================================
セクションコンテンツ
====================================================================== */
/* ======================================================================
ユーティリティー
====================================================================== */
/* ---------- インナー（コンテンツ幅の制限あり） ---------- */
/* ---------- インナー（コンテンツ幅の制限なし） ---------- */
/* ---------- インナー（セクション幅） ---------- */
/* ======================================================================
ポジション
====================================================================== */
/* ---------- ポジション設定（ショートハンド） ---------- */
/* ======================================================================
アイコン
====================================================================== */
/* ---------- アイコン（内部リンク） ---------- */
/* ---------- アイコン（内部リンク） ---------- */
/* ---------- アイコン（外部リンク） ---------- */
/* ---------- アイコン（中央配置） ---------- */
/* ---------- リンク下線（Black） ---------- */
/* ---------- リンク下線（Gray） ---------- */
/* ======================================================================
コンポーネント
====================================================================== */
/* ---------- ボタン（Japanese） ---------- */
/* ---------- ボタン（English） ---------- */
/* ---------- パーマリンク（Japanese） ---------- */
/* ---------- パーマリンク（English） ---------- */
/* ======================================================================
#joinUs
====================================================================== */
#joinUs {
  width: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #F5A04E 0%, #DB6244 100%);
  padding-block: 70px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  #joinUs {
    align-items: flex-start;
    flex-direction: column-reverse;
    padding-block: 64px 88px;
  }
}
#joinUs .thumbnail {
  width: 50%;
  display: block;
}
@media (max-width: 767px) {
  #joinUs .thumbnail {
    width: 85.6vw;
    margin-left: calc(50% - 50vw);
  }
}
#joinUs .content {
  width: 50%;
  padding-inline: 96px 40px;
  margin-top: -50px;
}
@media (max-width: 767px) {
  #joinUs .content {
    width: 100%;
    padding-inline: 20px;
    margin-block: 0 80px;
  }
}
#joinUs .content h1 {
  text-align: left;
  font-family: futura-pt, sans-serif;
  font-size: 88px;
  font-weight: 500;
  color: transparent;
  line-height: 1.3;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 1px #FFFFFF;
}
@media (max-width: 767px) {
  #joinUs .content h1 {
    font-size: 82px;
  }
}
#joinUs .content p {
  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;
  color: #FFFFFF;
  margin-top: 10px;
}
@media (max-width: 767px) {
  #joinUs .content p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  #joinUs .content p {
    margin-top: 0;
  }
}
#joinUs .content a {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 24px;
  /* -- ボタン下線 -- */
  /* -- 別窓アイコン -- */
  /* -- hover -- */
  margin-top: 56px;
}
@media (max-width: 767px) {
  #joinUs .content a {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #joinUs .content a {
    padding-bottom: 16px;
  }
}
#joinUs .content a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: #2F2F2F;
  transition: width 0.2s;
  z-index: 1;
}
#joinUs .content a::after {
  content: "";
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: #F5A04E;
  mask-image: url(../img/icon/icon--internal.svg);
  mask-size: 100% 100%;
  mask-position: center right;
  mask-repeat: no-repeat;
  margin-left: 16px;
}
@media (max-width: 767px) {
  #joinUs .content a::after {
    width: 18px;
    height: 18px;
  }
}
#joinUs .content a:hover::before {
  animation: animation-underline-grow 0.2s ease-in-out forwards;
}
@keyframes animation-underline-grow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
#joinUs .content a: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;
  }
}
@media (max-width: 767px) {
  #joinUs .content a {
    margin-top: 48px;
  }
}

/*# sourceMappingURL=global-joinUs.css.map */
