/* =========================================================
 * Purpose: サイト全体の共通スタイル
 * Updated: 2025-11-18
========================================================= */

/* -- ▼ root -- */
:root {
  --text: #323b4d;
  --sub_text: #909cb5;
  --main_blue: #293fcd;
  --back_blue: #e7f0ff;
  --cta: #fe6456;
  --cta_sub: #39c8ed;
  --gray_line: #babdd3;
  --white: #fff;
}
/* -- ▲ root -- */

/* -- ▼ フォント -- */
/* Noto Sans JP */
@font-face {
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP-Black.ttf") format("truetype");
  font-weight: 900;
}
/* ./Noto Sans JP */

/* Prompt */
@font-face {
  font-family: "Prompt";
  src: url("./fonts/Prompt-Bold.ttf") format("truetype");
  font-weight: 700;
}
/* ./Prompt */
/* -- ▲ フォント -- */

/* -- ▼ 共通スタイル -- */
main {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
  font-family: "Noto Sans JP", Roboto, sans-serif;
}
main .wrapper {
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}
main a,
main img {
  display: block;
}
main a {
  transition: 0.3s;
  word-wrap: break-word;
}
main a:hover {
  opacity: 0.5;
}
main img {
  width: 100%;
  margin: 0 auto;
}
main section {
  padding: 60px 0;
  position: relative;
}
main .d_pc {
  display: none;
}
@media (min-width: 769px) {
  main {
    font-size: 18px;
    padding-top: 0;
  }
  main .wrapper {
    max-width: 1030px;
  }
  main section {
    padding: 100px 0;
  }
  main .d_pc {
    display: block;
  }
  main .d_sp {
    display: none;
  }
}

/* ヘッダーの重なる部分を避ける */
@media screen and (max-width: 1024px) {
  main {
    padding-top: 60px;
  }
}
/* ./ヘッダーの重なる部分を避ける */

/* 背景色 */
.bk_b {
  background-color: var(--main_blue);
}
.bk_bb {
  background-color: var(--back_blue);
}
.bk_p {
  background-color: var(--cta);
}
.bk_w {
  background-color: var(--white);
}
.bk_sub {
  background-color: var(--sub_text);
}
/* ./背景色 */

/* テキストの色 */
.tx_b {
  color: var(--main_blue);
}
.tx_sub {
  color: var(--sub_text);
}
.tx_p {
  color: var(--cta);
}
.tx_w {
  color: var(--white);
}
/* ./テキストの色 */

/* テキストの太さ */
.fw_b {
  font-weight: 700;
}
.fw_bl {
  font-weight: 900;
}
/* ./テキストの太さ */

/* 文字揃え */
.ta_c {
  text-align: center;
}
.ta_r {
  text-align: right;
}
/* ./文字揃え */

/* 角丸 */
.br_15 {
  border-radius: 15px;
}
.br_20 {
  border-radius: 20px;
}
.br_30 {
  border-radius: 20px;
}
.br_max {
  border-radius: 9999px;
}
.br_sec {
  border-radius: 30px 30px 0 0;
}
@media screen and (min-width: 769px) {
  .br_30 {
    border-radius: 30px;
  }
  .br_sec {
    border-radius: 50px 50px 0 0;
  }
}
/* ./角丸 */

/* 余白 */
.mb_0 {
  margin-bottom: 0 !important;
}
.m5_0 {
  margin-top: 0 !important;
}
/* ./余白 */

/* フォント変更(Prompt) */
.ep_prompt {
  font-family: "Prompt";
  font-weight: 700;
}
/* ./フォント変更 */
/* -- ▲ 共通スタイル -- */

/* -- ▼ フェードイン -- */
/* スクロールでふわっと出てくるフェードイン */
.scroll_up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll_up.is_show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
/* ./スクロールでふわっと出てくるフェードイン */

/* ロード後にふわっと出てくるフェードイン */
.load_fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(50px);
}
.load_fade.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
/* ./ロード後にふわっと出てくるフェードイン */
/* -- ▲ フェードイン -- */

/* -- ▼ アコーディオン -- */
.accordion {
  cursor: pointer;
}
.accordion_head {
  cursor: pointer;
  transition: 0.3s;
}

/* アコーディオンの中身 */
.accordion_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.accordion_body.is-open {
  max-height: 2000px;
}
/* ./アコーディオンの中身 */

/* トグルボタン */
.accordion_button {
  background: #d6e4fc;
  width: 35px;
  height: 35px;
  position: relative;
  display: block;
  border-radius: 99px;
  cursor: pointer;
}
.accordion_button::before,
.accordion_button::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 2px;
  border-radius: 10px;
  top: calc(50% - 1px);
  right: calc(50% - (15px / 2));
  background: var(--main_blue);
  transition: 0.5s;
}
.accordion_button::after {
  transform: rotateZ(90deg);
}
.accordion_body.is-open ~ .accordion_button::after {
  transform: rotateZ(-180deg);
}
/* ./トグルボタン */

@media screen and (min-width: 769px) {
  .accordion .accordion_button,
  .accordion:hover .accordion_head p {
    transition: 0.3s;
  }
  .accordion:hover .accordion_button {
    transform: scale(1.4);
  }
  .accordion:hover .accordion_head p {
    color: var(--main_blue);
  }
}
/* -- ▲ アコーディオン -- */

/* -- ▼ パーツ -- */
/* 共通タイトル(h2) */
h2.common_title {
  font-size: 30px !important;
  font-weight: 700;
  margin-bottom: 30px;
}
span.common_title {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
span.common_title::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: center no-repeat;
  background-image: url("./img/common_common_title_icon.png");
  background-size: cover;
}
h2.common_title span {
  font-size: 22px;
}
.common_title_line::after {
  content: "";
  display: block;
  background-color: var(--main_green);
  height: 3px;
  width: 50px;
  margin: 10px auto 0;
  border-radius: 30px;
}
/* ./共通タイトル(h2) */

/* 共通タイトル(h3) */
.common_title_sub {
  font-size: 24px !important;
  font-weight: 700;
  padding-left: 10px;
  border-left: var(--main_blue) solid 8px;
  margin-bottom: 30px;
}
/* ./共通タイトル(h3) */

/* 共通タイトル下のテキスト */
.common_readtext {
  line-height: 2;
  margin-bottom: 35px;
}
/* ./共通タイトル下のテキスト */

/* 固定背景画像 */
.bg_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
/* ./固定背景画像 */

/* CTAボタン */
.cta_button {
  background: var(--cta);
  box-shadow: 0 3px 6px 0 rgba(41, 63, 205, 0.3);
  text-align: center;
  max-width: 360px;
  width: 100%;
  height: 70px;
  font-size: 20px;
  border-radius: 100px;
  padding: 20px 10px;
  margin: 0 auto;
  font-weight: 900;
  position: relative;
}
.cta_button span {
  z-index: 5;
}
.cta_button .button_text {
  color: var(--white) !important;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
}
.cta_button .button_arrow {
  position: absolute;
  overflow: hidden;
  display: block;
  width: 35px;
  height: 6px;
  top: calc(50% - 3px);
  right: 30px;
  line-height: 1;
}
.cta_button .button_arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 6px;
  top: 0;
  right: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  background: center no-repeat;
  background-size: cover;
  background-image: url("./img/cta_button_icon.png");
}
/* ./CTAボタン */

/* リーディング用の非表示テキスト */
.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* ./リーディング用の非表示テキスト */

@media screen and (min-width: 769px) {
  /* 共通タイトル */
  h2.common_title {
    font-size: 50px !important;
    margin-bottom: 40px;
  }
  span.common_title {
    margin-bottom: 5px;
    font-size: 24px;
  }
  span.common_title::before {
    width: 15px;
    height: 15px;
  }
  h2.common_title span {
    font-size: 50px;
  }
  /* ./共通タイトル */

  /* 共通タイトル(h3) */
  .common_title_sub {
    font-size: 35px !important;
    padding-left: 15px;
    border-left: var(--main_blue) solid 10px;
  }
  /* ./共通タイトル(h3) */

  /* 共通タイトル下のテキスト */
  .common_readtext {
    margin-bottom: 40px;
  }
  /* ./共通タイトル下のテキスト */

  /* CTAボタン */
  .cta_button {
    max-width: 350px;
    overflow: hidden;
  }
  .cta_button::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background: var(--white);
    width: 100%;
    height: 100%;
    transform: translate(-100%) skewX(-30deg);
    transform-origin: right top;
    opacity: 0.4;
  }
  .cta_button .button_arrow {
    right: 40px;
    transition: 0.3s;
    transform: scale(1);
  }
  .cta_button .button_arrow::after,
  .cta_button .button_arrow::before {
    content: "";
    position: absolute;
    display: block;
    width: 35px;
    height: 6px;
    top: 0;
    right: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.3s;
    background: center no-repeat;
    background-size: cover;
    background-image: url("./img/cta_button_icon.png");
  }
  .cta_button .button_arrow::after {
    transform: translateX(-100%);
  }
  .cta_button:hover::after {
    transform-origin: left top;
    transform: translate(120%) skewX(-30deg);
    transition: transform 0.4s ease-out;
  }
  .cta_button:hover {
    opacity: 1;
  }
  .cta_button:hover .button_arrow {
    transform: translateX(10px);
  }
  .cta_button:hover .button_arrow::before {
    animation-name: transformRightLeft;
    animation-delay: 0s;
  }
  .cta_button:hover .button_arrow::after {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
  }
  @keyframes transformLeftRight {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes transformRightLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }
  /* ./CTAボタン */
}
/* -- ▲ パーツ -- */

/* -- ▼ メインビジュアル -- */
.ep_mv {
  background: linear-gradient(0deg, var(--back_blue), var(--white));
  padding: 0;
  min-height: calc(100vh - 60px);
  z-index: 0;
}
.mv_wrapper {
  width: 100%;
  aspect-ratio: 39 / 29;
}
/* メインビジュアルスライダー */
.mv_slider_area {
  width: 100%;
  aspect-ratio: 39 / 29;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.mv_slider_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  animation-name: slideShow;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}
.mv_slider_item:nth-child(2) {
  animation-delay: 5s;
}
.mv_slider_item:nth-child(3) {
  animation-delay: 10s;
}
.mv_slider_item img {
  width: 100%;
  aspect-ratio: 39 / 29;
}
@keyframes slideShow {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
/* ./メインビジュアルスライダー */

/* メインビジュアルテキスト */
.ep_mv .wrapper {
  font-weight: 700;
  max-width: 500px;
  padding: 70px 15px 110px;
  z-index: 2;
  position: relative;
}
.ep_mv .wrapper::before {
  position: absolute;
  display: block;
  content: "";
  top: -25px;
  left: 0;
  background: center no-repeat;
  background-image: url("./img/mv_shine_sp.png");
  background-size: cover;
  width: 100%;
  max-width: 390px;
  height: 95px;
}
.ep_mv .wrapper h2 {
  margin-bottom: 25px;
}
.ep_mv .wrapper h4 {
  font-size: 14px;
  margin: 20px 0 5px;
}
.ep_mv .wrapper h3 {
  font-size: 22px;
}
/* ./メインビジュアルテキスト */

/* メインビジュアル背景 */
.ep_mv .mv_back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  background-image: url("./img/mv_back_sp.png");
}
/* ./メインビジュアル背景 */
@media screen and (min-width: 769px) {
  .ep_mv {
    height: 613px;
    min-height: auto;
  }
  .mv_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: absolute;
    aspect-ratio: none;
    height: 613px;
    top: 0;
    left: calc(50% - 640px);
  }
  /* メインビジュアルスライダー */
  .mv_slider_area {
    width: 100%;
    max-width: 710px;
    aspect-ratio: 142 / 113;
    margin: 0 0 0 auto;
  }
  .mv_slider_item img {
    aspect-ratio: 142 / 113;
  }
  /* ./メインビジュアルスライダー */

  /* メインビジュアルテキスト */
  .ep_mv .wrapper {
    max-width: 1030px;
    height: 613px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
  }
  .ep_mv .wrapper::before {
    top: 25px;
    left: -60px;
    background-image: url("./img/mv_shine_pc.png");
    width: 326px;
    max-width: none;
    height: 109px;
  }
  .ep_mv .wrapper img {
    max-width: 360px;
    margin: 0 auto 0 0;
  }
  .ep_mv .wrapper h2 {
    margin-bottom: 20px;
  }
  .ep_mv .wrapper h4 {
    font-size: 18px;
    margin: 25px 0 5px;
  }
  .ep_mv .wrapper h3 {
    font-size: 28px;
  }
  /* ./メインビジュアルテキスト */

  /* メインビジュアル背景 */
  .ep_mv .mv_back {
    height: 613px;
    background-image: url("./img/mv_back_pc.png");
  }
  /* ./メインビジュアル背景 */
}

/* メインビジュアルの微調整 */
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .mv_wrapper {
    left: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .ep_mv,
  .ep_mv .mv_back {
    height: 550px;
  }
  .mv_slider_area {
    max-width: 60vw;
  }
  .ep_mv .wrapper {
    max-width: none;
  }
  .ep_mv .wrapper::before {
    left: 0;
    top: 15px;
  }
}
@media screen and (min-width: 769px) and (max-width: 940px) {
  .ep_mv .wrapper img {
    max-width: 300px;
    margin: 0 auto 0 0;
  }
  .ep_mv .wrapper::before {
    top: 30px;
  }
}
/* ./メインビジュアルの微調整 */

/* -- ▲ メインビジュアル -- */

/* -- ▼ 右下の固定ボタン -- */
.ep_fixed {
  position: fixed;
  right: calc(50% - (360px / 2));
  bottom: 10px;
  width: fit-content;
  z-index: 5;
  min-width: 360px;
  padding: 0;
}
.ep_fixed .fixed_topbutton {
  width: 60px;
  margin: 0 0 10px auto;
}
@media screen and (max-width: 375px) {
  .ep_fixed {
    width: calc(100vw - 30px);
    min-width: auto;
    right: 15px;
  }
}
@media screen and (min-width: 769px) {
  .ep_fixed {
    bottom: 30px;
    right: 0;
  }
  .ep_fixed .fixed_topbutton {
    margin: 0 15px 10px auto;
  }
  .ep_fixed .cta_button {
    margin: 0 0 0 auto;
    border-radius: 50px 0 0 50px;
    max-width: 240px;
    text-align: left;
    padding: 20px 15px 20px 40px;
  }
  .ep_fixed .cta_button .button_text {
    width: calc(100% - 55px);
    left: 40px;
    text-align: left;
  }
  .ep_fixed .cta_button:hover {
    opacity: 1;
  }
  .ep_fixed .cta_button .button_arrow {
    right: 15px;
  }
}

/* -- ▲ 右下の固定ボタン -- */

/* -- ▼ アンカーリンク -- */
/* アンカーリンク到達地点調整 */
.ep_anchor {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  right: 0;
  top: -60px;
}
/* ./アンカーリンク到達地点調整 */

/* アンカーリンクリスト */
.ep_anchorlist {
  padding: 15px 0 0 0;
}
.ep_anchorlist ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ep_anchorlist li {
  width: calc((100% - 20px) / 3);
  background: var(--white);
  border: var(--main_blue) solid 1px;
  border-radius: 15px;
  box-shadow: 0 0 5px 0 rgba(41, 63, 205, 0.2);
}
.ep_anchorlist li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  font-size: 12px;
  color: var(--main_blue);
  height: 60px;
}
.ep_anchorlist li a::after {
  display: block;
  content: "";
  width: 7px;
  height: 4px;
  background: no-repeat center;
  background-image: url("./img/anchorlink_arrow_sp.png");
  background-size: cover;
}
/* ./アンカーリンクリスト */

/* ページ下部のアンカーリンクリスト */
.ep_anchorlist:last-of-type {
  padding: 0 0 15px;
}
.ep_anchorlist:last-of-type li a::after {
  transform: rotateZ(-180deg);
}
/* ./ページ下部のアンカーリンクリスト */

@media screen and (min-width: 769px) {
  /* アンカーリンク到達地点調整 */
  .ep_anchor {
    top: 10px;
  }
  /* ./アンカーリンク到達地点調整 */

  /* アンカーリンクリスト */
  .ep_anchorlist {
    padding: 20px 0 0 0;
  }
  .ep_anchorlist ul {
    background: var(--white);
    border: var(--main_blue) solid 1px;
    border-radius: 999px;
    gap: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 15px 0;
    box-shadow: 0 0 5px 0 rgba(41, 63, 205, 0.2);
  }
  .ep_anchorlist li {
    width: auto;
    border: none;
    border-right: var(--gray_line) solid 1px;
    border-radius: 0;
    padding: 0 15px;
    box-shadow: none;
    background: none;
  }
  .ep_anchorlist li:last-of-type {
    border-right: none;
  }
  .ep_anchorlist li a {
    font-size: 18px;
    color: var(--text);
    height: 40px;
  }
  .ep_anchorlist li a::after {
    width: 10px;
    height: 5px;
    background-image: url("./img/anchorlink_arrow_pc.png");
  }
  .ep_anchorlist li a:hover {
    color: var(--main_blue);
    opacity: 1;
  }
  /* ./アンカーリンクリスト */

  /* ページ下部のアンカーリンクリスト */
  .ep_anchorlist:last-of-type {
    padding: 0 0 50px;
  }
  /* ./ページ下部のアンカーリンクリスト */
}
/* PC版の画面幅が小さくなった時にデザインが崩れないよう調整 */
@media screen and (min-width: 769px) and (max-width: 913px) {
  .ep_anchorlist li {
    padding: 0 10px;
  }
  .ep_anchorlist li a {
    font-size: 14px;
  }
}
/* ./PC版の画面幅が小さくなった時にデザインが崩れないよう調整 */

/* アンカーリンクの到達地点調整 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ep_anchor {
    top: 0px;
  }
}
/* ./アンカーリンクの到達地点調整 */
/* -- ▲ アンカーリンク -- */

/* -- ▼ 未経験から3ヶ月でエンジニアに？ -- */
.ep_intro {
  background: linear-gradient(180deg, var(--back_blue), var(--white));
  overflow: hidden;
}
.ep_intro .wrapper {
  position: relative;
  z-index: 2;
}
.intro_readtext img {
  max-width: 360px;
  margin: 0 auto 30px 0;
}
.ep_intro .common_readtext {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 50px;
}
.intro_foot > p.fw_b {
  font-size: 24px;
}
.intro_foot > p.fw_b::after {
  display: block;
  content: "";
  width: 40px;
  height: 17px;
  background: no-repeat center;
  background-size: cover;
  background-image: url("./img/intro_arrow_sp.png");
  margin: 10px auto 15px;
}
.intro_foot ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intro_foot ul li {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 0 5px 0 rgba(41, 63, 205, 0.2);
  padding: 15px;
  color: var(--main_blue);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.intro_foot ul li::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: var(--main_blue);
}
.intro_foot ul li p {
  width: calc(100% - 30px);
}
.ep_intro .intro_back {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 80px;
}
@media screen and (min-width: 769px) {
  .intro_readtext img {
    max-width: 677px;
    margin: 0 auto 35px 0;
  }
  .ep_intro .common_readtext {
    font-size: 24px;
    line-height: 2.25;
    margin-bottom: 60px;
  }
  .intro_foot > p.fw_b {
    font-size: 34px;
  }
  .intro_foot > p.fw_b::after {
    width: 50px;
    height: 21px;
    background-image: url("./img/intro_arrow_pc.png");
    margin: 15px auto 20px;
  }
  .intro_foot ul {
    flex-direction: row;
    gap: 30px;
  }
  .intro_foot ul li {
    padding: 35px 10px;
    font-size: 26px;
    text-align: center;
    display: flex;
    align-items: center;
    width: calc((100% - 60px) / 3);
  }
  .intro_foot ul li::before {
    display: none;
  }
  .intro_foot ul li p {
    width: 100%;
  }
  .ep_intro .intro_back {
    top: 140px;
  }
}
@media screen and (min-width: 1280px) {
  .ep_intro .intro_back {
    max-width: 1280px;
    left: calc(50% - 640px);
  }
}
/* -- ▲ 未経験から3ヶ月でエンジニアに？ -- */

/* -- ▼ 働く環境 -- */
.ep_environment {
  padding-bottom: 120px;
}
.ep_environment ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ep_environment li {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.ep_environment > .br_sec {
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ep_environment .ta_r {
  margin-top: 10px;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .ep_environment {
    padding-bottom: 200px;
  }
  .ep_environment li {
    width: calc((100% - 20px) / 2);
  }
  .ep_environment > .br_sec {
    height: 100px;
  }
}
/* -- ▲ 働く環境 -- */

/* -- ▼ 研修だけに集中できる3ヶ月間 -- */
.ep_training {
  background: linear-gradient(0deg, var(--back_blue), var(--white));
  padding-top: 0;
}
.ep_training ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.ep_training ul li {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: center no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 360px;
  height: 325px;
}
.ep_training ul li:nth-of-type(1) {
  background-image: url("./img/training_image01_sp.jpg");
}
.ep_training ul li:nth-of-type(2) {
  background-image: url("./img/training_image02_sp.jpg");
}
.ep_training ul li:nth-of-type(3) {
  background-image: url("./img/training_image03_sp.jpg");
}
.ep_training ul li:nth-of-type(4) {
  background-image: url("./img/training_image04_sp.jpg");
}
.ep_training ul li div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, var(--main_blue), rgb(41 63 205 / 0));
  padding: 0 15px 25px;
  color: var(--white);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.ep_training ul li div p {
  font-size: 12px;
  line-height: 1.8;
}
.ep_training ul li div p.fw_b {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .ep_training ul {
    gap: 40px;
  }
  .ep_training ul li {
    border-radius: 30px;
    width: calc((100% - 40px) / 2);
    max-width: none;
    min-width: 410px;
    height: 400px;
  }
  .ep_training ul li:nth-of-type(1) {
    background-image: url("./img/training_image01_pc.jpg");
  }
  .ep_training ul li:nth-of-type(2) {
    background-image: url("./img/training_image02_pc.jpg");
  }
  .ep_training ul li:nth-of-type(3) {
    background-image: url("./img/training_image03_pc.jpg");
  }
  .ep_training ul li:nth-of-type(4) {
    background-image: url("./img/training_image04_pc.jpg");
  }
  .ep_training ul li div {
    height: 215px;
    padding: 0 25px 30px;
  }
  .ep_training ul li div p {
    font-size: 16px;
    line-height: 1.3;
  }
  .ep_training ul li div p.fw_b {
    font-size: 28px;
  }
}

/* -- ▲ 研修だけに集中できる3ヶ月間 -- */

/* -- ▼ 人事制度・福利厚生 -- */
.ep_benefits {
  overflow: hidden;
  background: linear-gradient(180deg, var(--back_blue), var(--white));
  z-index: 0;
}
.ep_benefits .bg {
  background-image: url("./img/benefits_back_sp.png");
  z-index: 1;
}
.ep_benefits .wrapper {
  position: relative;
  z-index: 2;
}
.ep_benefits ul li {
  box-shadow: 0 0 5px 0 rgba(41, 63, 205, 0.2);
  padding: 20px 0;
  position: relative;
  margin-bottom: 20px;
}
.ep_benefits ul li:last-of-type {
  margin-bottom: 50px;
}
.ep_benefits .benefits_head {
  padding: 0 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.ep_benefits .benefits_head img {
  width: 25px;
  margin: 0;
}
.ep_benefits .benefits_head p {
  width: calc(100% - 10px - 25px - 35px);
  font-size: 18px;
}
.ep_benefits .benefits_body {
  padding: 15px 15px 0;
  font-size: 12px;
  border-top: #d7e3fd solid 1px;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .ep_benefits .bg {
    background-image: url("./img/benefits_back_pc.png");
  }
  .ep_benefits ul li {
    padding: 30px 0 33px;
    margin-bottom: 30px;
  }
  .ep_benefits .ul li:last-of-type {
    margin-bottom: 70px;
  }
  .ep_benefits .benefits_head {
    padding: 0 30px;
  }
  .ep_benefits .benefits_head img {
    width: 30px;
  }
  .ep_benefits .benefits_head p {
    width: calc(100% - 10px - 30px - 40px);
    font-size: 24px;
  }
  .ep_benefits .benefits_body {
    padding: 25px 30px 0;
    font-size: 16px;
    margin-top: 17px;
  }
}
/* -- ▲ 人事制度・福利厚生 -- */

/* -- ▼ 共通CTA -- */
.ep_cta {
  overflow: hidden;
}
.ep_cta .bg {
  background-image: url("./img/cta_back_sp.png");
  z-index: -2;
}
.ep_cta .wrapper {
  position: relative;
}
.cta_shine {
  position: absolute;
  z-index: -1;
  left: -15px;
  top: -75px;
}
.cta_shine img {
  max-width: 390px;
}
.cta_flex {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}
.ep_cta h2 img {
  max-width: 360px;
}
@media screen and (min-width: 769px) {
  .ep_cta {
    padding: 70px 0;
  }
  .ep_cta .bg {
    background-image: url("./img/cta_back_pc.png");
  }
  .cta_shine {
    left: -50px;
    top: -80px;
  }
  .cta_shine img {
    max-width: 547px;
  }
  .cta_flex {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
  }
  .cta_flex .cta_button {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .cta_shine {
    left: -10px;
  }
}
/* -- ▲ 共通CTA -- */

/* -- ▼ あなたが活躍するフィールドはインフラエンジニア -- */
.ep_engineer .bg {
  background-image: url("./img/engineer_back_sp.png");
  z-index: -2;
}
.ep_engineer .engineer_box {
  margin-bottom: 50px;
}
.ep_engineer .engineer_job,
.ep_engineer .engineer_appeal {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.ep_engineer .engineer_appeal > div {
  padding: 50px 15px 25px;
  position: relative;
}
.ep_engineer .engineer_appeal > div::before {
  position: absolute;
  display: block;
  content: "";
  background: center no-repeat;
  background-size: cover;
  top: -5px;
  left: calc(50% - (107px / 2));
  width: 107px;
}
.ep_engineer .engineer_appeal > .engineer_appeal01::before {
  background-image: url("./img/engineer_point01.png");
  height: 56px;
}
.ep_engineer .engineer_appeal > .engineer_appeal02::before {
  background-image: url("./img/engineer_point02.png");
  height: 55px;
}
.ep_engineer .engineer_appeal > .engineer_appeal03::before {
  background-image: url("./img/engineer_point03.png");
  height: 56px;
}
.ep_engineer .engineer_appeal > div p {
  font-size: 12px;
}
.ep_engineer .engineer_appeal > div p.tx_b {
  font-size: 20px;
  margin-bottom: 8px;
}
.ep_engineer .engineer_job > div.bk_bb {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
}
.ep_engineer .engineer_job > div.bk_bb img {
  width: 55px;
}
.ep_engineer .engineer_job > div.bk_bb > div {
  width: calc(100% - 15px - 55px);
}
.ep_engineer .engineer_job > div.bk_bb > div p {
  font-size: 12px;
  line-height: 2;
}
.ep_engineer .engineer_job > div.bk_bb > div p.fw_b {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.7;
}
.ep_engineer .accordion {
  margin-bottom: 90px;
}
.ep_engineer .common_readtext span.tx_b {
  position: relative;
}
.ep_engineer .common_readtext span.tx_b::after {
  content: "";
  position: absolute;
  display: block;
  height: 50%;
  width: 100%;
  bottom: 1px;
  left: 0;
  background: var(--back_blue);
  z-index: -1;
}
.ep_engineer .accordion_head,
.ep_engineer .accordion_body {
  max-width: 450px;
  margin: 0 auto;
}
.ep_engineer .accordion_button {
  margin: 10px auto 0;
}
.ep_engineer .accordion:has(.accordion_body.is-open) .accordion_button::after {
  transform: rotateZ(-180deg);
}
.ep_engineer .accordion_body.is-open {
  padding-top: 15px;
}
.engineer_comment {
  display: flex;
  gap: 65px;
  flex-direction: column;
}
.engineer_comment > div {
  background: linear-gradient(180deg, var(--back_blue), var(--white));
  border-radius: 30px;
  padding: 65px 25px 35px;
  border: #e6f0ff solid 1px;
  position: relative;
}
.engineer_comment > div:first-of-type::before,
.engineer_comment > div:last-of-type::before {
  display: block;
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -50px;
  left: calc(50% - 55px);
  background: center no-repeat;
  background-size: cover;
}
.engineer_comment > div:first-of-type::before {
  background-image: url("./img/engineer_engineer_comment01.png");
}
.engineer_comment > div:last-of-type::before {
  background-image: url("./img/engineer_engineer_comment02.png");
}
.engineer_comment > div > p {
  font-size: 12px;
}
.engineer_comment > div > p.fw_b {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .ep_engineer .bg {
    background-image: url("./img/engineer_back_pc.png");
  }
  .ep_engineer .engineer_box {
    margin-bottom: 70px;
  }
  .ep_engineer .engineer_appeal {
    gap: 20px;
    flex-direction: row;
    align-items: start;
  }
  .ep_engineer .engineer_appeal > div {
    width: calc((100% - 40px) / 3);
    margin-top: 35px;
    padding: 50px 0 25px;
  }
  .ep_engineer .engineer_appeal > div::before {
    top: -15px;
  }
  .ep_engineer .engineer_appeal > .engineer_appeal02 {
    margin-top: 0;
  }
  .ep_engineer .engineer_appeal > div p {
    padding: 0 30px;
    font-size: 14px;
  }
  .ep_engineer .engineer_appeal > div p.tx_b {
    padding: 0 10px;
    font-size: 20px;
  }
  .ep_engineer .engineer_job {
    display: flex;
    gap: 25px 30px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ep_engineer .engineer_job > div.bk_bb {
    width: calc((100% - 30px) / 2);
    gap: 20px;
    padding: 20px 50px;
  }
  .ep_engineer .engineer_job > div.bk_bb img {
    width: 63px;
  }
  .ep_engineer .engineer_job > div.bk_bb > div {
    width: calc(100% - 20px - 63px);
  }
  .ep_engineer .engineer_job > div.bk_bb > div p {
    font-size: 14px;
    line-height: 1.7;
  }
  .ep_engineer .engineer_job > div.bk_bb > div p.fw_b {
    font-size: 20px;
    line-height: 1.4;
  }
  .ep_engineer .accordion {
    margin-bottom: 100px;
  }
  .ep_engineer .accordion_head {
    max-width: 530px;
  }
  .ep_engineer .accordion_body {
    max-width: none;
  }
  .ep_engineer .accordion_body.is-open {
    padding-top: 20px;
  }
  .engineer_comment {
    display: flex;
    gap: auto;
    flex-direction: row;
    gap: 35px;
    justify-content: center;
  }
  .engineer_comment > div {
    padding: 60px 50px 25px;
    max-width: 400px;
  }
  .engineer_comment > div > p {
    font-size: 14px;
  }
  .engineer_comment > div > p.fw_b {
    font-size: 20px;
  }
}
@media screen and (max-width: 565px) {
  .ep_engineer .common_readtext br.d_sp {
    display: block;
  }
}
@media screen and (min-width: 566px) {
  .ep_engineer .common_readtext br.d_sp {
    display: none;
  }
}
/* -- ▲ あなたが活躍するフィールドはインフラエンジニア -- */

/* -- ▼ 将来目指せるキャリアパス -- */
.ep_carrierpass {
  overflow: hidden;
}
.ep_carrierpass .bg {
  background-image: url("./img/carrierpass_back_sp.png");
}
.ep_carrierpass .common_title_sub {
  margin-bottom: 40px;
}
.ep_carrierpass img {
  max-width: 400px;
}
@media screen and (min-width: 769px) {
  .ep_carrierpass .bg {
    background-image: url("./img/carrierpass_back_pc.png");
  }
  .ep_carrierpass .wrapper {
    position: relative;
  }
  .ep_carrierpass .common_title_sub {
    position: absolute;
    top: 0;
    left: 0;
  }
  .ep_carrierpass img {
    max-width: none;
  }
}
/* -- ▲ 将来目指せるキャリアパス -- */

/* -- ▼ インタビュー -- */
.ep_interview .bg {
  background-image: url("./img/interview_back_sp.png");
}
.ep_interview .accordion {
  padding-bottom: 25px;
  box-shadow: 0 0 5px 0 rgba(41, 63, 205, 0.2);
  margin-bottom: 30px;
}
.ep_interview .accordion_head_image img {
  border-radius: 20px 20px 0 0;
}
.ep_interview .interview_head {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 5px;
}
.ep_interview .interview_head span {
  font-size: 12px;
}
.ep_interview .interview_head p {
  font-size: 10px;
  padding: 1px 10px;
}
.ep_interview .accordion_head_text {
  padding: 20px 15px 15px;
}
.ep_interview .accordion_head_text h3 {
  font-size: 20px;
}
.ep_interview .accordion_body {
  padding: 0 15px;
  font-size: 12px;
}
.ep_interview .accordion_body.is-open {
  margin-bottom: 25px;
}
.ep_interview .accordion_body p::before {
  content: "";
  display: block;
  opacity: 0;
  width: 60px;
  height: 1px;
  margin: 10px 0 25px;
  background: var(--sub_text);
  transition: 0.3s;
}
.ep_interview .accordion_body.is-open p::before {
  opacity: 1;
}
.ep_interview .accordion_button {
  background: none;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.ep_interview .accordion_button::before {
  content: "もっと見る";
  color: var(--sub_text);
  position: static;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  text-align: center;
  font-size: 12px;
}
.ep_interview .accordion_button::after {
  content: "";
  position: static;
  width: 15px;
  height: 10px;
  background: center no-repeat;
  background-image: url("./img/interview_arrow_sp.png");
  background-size: cover;
  border-radius: 0;
  margin: 5px auto 0;
  transform: rotateZ(0);
}
.ep_interview .accordion_body.is-open + .accordion_button::before {
  content: "閉じる";
}
@media screen and (min-width: 769px) {
  .ep_interview .bg {
    background-image: url("./img/interview_back_pc.png");
  }
  .ep_interview ul li {
    display: flex;
    gap: 40px;
    padding: 50px;
    margin-bottom: 50px;
  }
  .ep_interview .interview_image {
    width: 210px;
  }
  .ep_interview .interview_text {
    width: calc(100% - 40px - 210px);
  }
  .ep_interview .interview_head {
    gap: 10px;
    margin-bottom: 10px;
  }
  .ep_interview .interview_head span {
    font-size: 18px;
  }
  .ep_interview .interview_head p {
    font-size: 14px;
    padding: 1px 15px;
  }
  .ep_interview .interview_text h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .ep_interview .interview_body {
    font-size: 14px;
  }
}
/* -- ▲ インタビュー -- */

/* -- ▼ 募集要項 -- */
.ep_description {
  padding-bottom: 130px;
  overflow: hidden;
}
.description_table > li {
  border-top: var(--gray_line) solid 1px;
}
.description_table > li:last-of-type {
  border-bottom: var(--gray_line) solid 1px;
}
.description_head {
  width: 100%;
  font-weight: 700;
  text-align: center;
  background-color: var(--back_blue);
  padding: 12px 10px;
  font-size: 16px;
  border-bottom: var(--gray_line) solid 1px;
}
.description_content {
  width: 100%;
  padding: 20px 15px;
}
.description_content > p {
  margin-bottom: 15px;
}
.description_content > p:first-of-type {
  margin-top: 0 !important;
}
.description_content > p.fw_b {
  font-size: 16px;
  margin: 30px 0 15px;
}
.description_content > ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.description_content > ul li:last-of-type {
  margin-bottom: 15px;
}
.description_content > ul li::before {
  content: "";
  display: flex;
  width: 7px;
  height: 7px;
  background: var(--main_blue);
  border-radius: 2px;
  margin-top: 8px;
}
.description_content > ul li p {
  width: calc(100% - 7px - 10px);
  margin: 0;
}
.description_content > span.tx_sub {
  font-size: 12px;
  margin-top: 10px;
  display: flex;
  gap: 3px;
}
.description_content > span.tx_sub::before {
  content: "※";
}
.description_content > span.tx_sub:last-of-type {
  margin-bottom: 0;
}
.description_content > .description_flow li {
  display: block;
}
.description_content > .description_flow li::before {
  display: none;
}
.description_content > .description_flow li::after {
  display: block;
  content: "";
  width: 15px;
  height: 9px;
  background: center no-repeat;
  background-image: url("./img/description_arrow_sp.png");
  background-size: cover;
  margin: 10px auto;
}
.description_content > .description_flow li:last-of-type:after {
  display: none;
}
.description_content > .description_flow li p {
  width: 100%;
}
.description_content .mt15 {
  margin-top: 15px;
}
.description_foot {
  position: relative;
}
.description_foot > p {
  margin: 40px auto 25px;
}
.description_foot .cta_button {
  background: #5fc613;
  height: 80px;
  max-width: 450px;
  padding: 21px 10px;
  font-size: 22px;
}
.description_shine {
  position: absolute;
  left: -10px;
  bottom: -105px;
  z-index: -1;
  width: 388px;
}
@media screen and (min-width: 769px) {
  .ep_description {
    padding-bottom: 215px;
  }
  .description_table > li {
    display: flex;
  }
  .description_head {
    border-bottom: none;
    width: 200px;
    padding: 25px 10px;
    font-size: 18px;
  }
  .description_content {
    padding: 25px 30px;
    width: calc(100% - 200px);
  }
  .description_content > p.fw_b {
    font-size: 20px;
    margin: 35px 0 15px;
  }
  .description_content > ul li::before {
    width: 10px;
    height: 10px;
    margin-top: 11px;
  }
  .description_content > span.tx_sub {
    font-size: 14px;
    margin-top: 5px;
  }
  .description_flow {
    max-width: 300px;
  }
  .description_content > .description_flow li::after {
    width: 20px;
    height: 12px;
    background-image: url("./img/description_arrow_pc.png");
    margin: 15px auto;
  }
  .description_content .mt15 {
    margin-top: 20px;
  }
  .description_foot > p {
    font-size: 24px;
    margin: 50px auto 25px;
  }
  .description_foot .cta_button {
    padding: 20px 10px;
    font-size: 24px;
  }
  .description_shine {
    position: absolute;
    left: calc(50% - (505px / 2));
    bottom: -120px;
    width: 505px;
  }
}
/* -- ▲ 募集要項 -- */

/* -- ▼ よくある質問 -- */
/* faq内のアンカーリンクリスト */
.ep_faq {
  padding: 0;
}
.ep_faq .ep_anchor {
  top: -100px;
}
.faq_box .ep_anchor {
  top: -80px;
}
.faq_anchorlist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.faq_anchorlist li {
  width: calc((100% - 10px) / 2);
}
.faq_anchorlist li a {
  background: var(--main_blue);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 99px;
  position: relative;
  line-height: 2;
}
.faq_anchorlist li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  top: calc(50% - 2px);
  right: 20px;
  background: center no-repeat;
  background-image: url("./img/faq_arrow_sp.png");
  background-size: cover;
}
/* ./faq内のアンカーリンクリスト */
.faq_box {
  position: relative;
  margin-top: 50px;
}
/* faqアコーディオン */
.faq_list {
  margin-top: 40px;
}
.faq_list > li {
  border-top: var(--gray_line) solid 1px;
  padding: 20px 0;
}
.faq_list > li:last-of-type {
  border-bottom: var(--gray_line) solid 1px;
}
.faq_list .accordion_head {
  width: 100%;
}
.faq_list .accordion_head_inner {
  width: 100%;
  display: flex;
  gap: 10px;
}
.faq_list .accordion_head_inner p {
  font-size: 16px;
  width: calc(100% - 45px - 10px);
  font-weight: 700;
}
.faq_list .accordion_head img,
.faq_list .accordion_body img {
  width: 45px;
}
.faq_list .accordion_body {
  padding: 0;
  display: flex;
  gap: 15px;
}
.faq_list .accordion_body.is-open {
  padding: 20px 0 0;
}
.faq_list .accordion_body > div {
  width: calc(100% - 45px - 15px);
  font-size: 14px;
}
.faq_list .accordion_body > div a {
  color: var(--main_blue);
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 10px;
}
.faq_list .accordion_body > div a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: center no-repeat;
  background-image: url("./img/faq_link_icon.png");
  background-size: cover;
}
.faq_list .accordion_button {
  margin: 15px auto 0;
}
/* ./faqアコーディオン */
@media screen and (min-width: 769px) {
  /* faq内のアンカーリンクリスト */
  .faq_anchorlist li {
    width: calc((100% - 30px) / 4);
  }
  .faq_anchorlist li a {
    font-size: 16px;
    padding: 15px 0;
    line-height: 2;
  }
  .faq_anchorlist li a::after {
    width: 10px;
    height: 5px;
    top: calc(50% - (5px / 2));
    right: 30px;
    background-image: url("./img/faq_arrow_pc.png");
  }
  /* ./faq内のアンカーリンクリスト */
  .faq_box {
    margin-top: 70px;
  }
  /* faqアコーディオン */
  .faq_list {
    margin-top: 30px;
  }
  .faq_list > li {
    padding: 15px;
    position: relative;
    transition: 0.3s;
  }
  .faq_list .accordion_head_inner {
    gap: 20px;
    align-items: center;
    width: calc(100% - 35px - 15px);
  }
  .faq_list .accordion_head_inner p {
    font-size: 20px;
    width: calc(100% - 55px - 20px);
    font-weight: 500;
  }
  .faq_list .accordion_head img,
  .faq_list .accordion_body img {
    width: 55px;
  }
  .faq_list .accordion_body {
    gap: 20px;
  }
  .faq_list .accordion_body.is-open {
    padding: 15px 0 0;
  }
  .faq_list .accordion_body > div {
    width: calc(100% - 55px - 20px);
    font-size: 16px;
  }
  .faq_list .accordion_body > div a {
    margin-top: 5px;
  }
  .faq_list .accordion_button {
    position: absolute;
    top: 30px;
    right: 15px;
    margin: 0;
  }
  /* ./faqアコーディオン */
}
/* PC版で画面幅が小さくなった際の崩れを調整 */
@media screen and (min-width: 769px) and (max-width: 920px) {
  .faq_anchorlist li a {
    font-size: 14px;
  }
  .faq_anchorlist li a::after {
    right: 20px;
  }
}
/* ./PC版で画面幅が小さくなった際の崩れを調整 */
/* -- ▲ よくある質問 -- */

/* -- ▼ メッセージ -- */
.ep_message {
  background: linear-gradient(0deg, var(--back_blue), var(--white));
}
.ep_message h2 {
  font-size: 30px !important;
}
.ep_message .message_image {
  max-width: calc(100% - 15px);
  margin: 30px 0 40px;
}
.ep_message .d_sp .fw_b {
  font-size: 20px;
  margin: 25px 0 3px;
}
.ep_message .d_sp span {
  margin-bottom: 40px;
  display: block;
}
@media screen and (min-width: 769px) {
  .ep_message {
    padding-top: 150px;
  }
  .message_flex {
    display: flex;
    gap: 45px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
  }
  .message_left {
    width: 330px;
  }
  .message_right {
    width: calc(100% - 330px - 45px);
    min-width: 495px;
  }
  .message_left span {
    width: 100%;
    display: block;
  }
  .message_left > p {
    font-size: 24px;
    margin: 25px 0 5px;
  }
  .message_left {
    font-size: 16px;
  }
  .ep_message h2 {
    font-size: 45px !important;
  }
  .message_right > p {
    font-size: 20px;
    line-height: 2.25;
    margin-top: 45px;
  }
}
@media (max-width: 380px) {
  .ep_message h2 {
    font-size: 28px !important;
  }
}

/* -- ▲ メッセージ -- */
