@charset "UTF-8";

/* ========================================
MARK: ■全体設定
======================================== */

:root {
  /* 色の変数 */
  --main-color: #50c8ff;
  --sub-color: #f46e08;
  --text-color: #1f1f1f;

  /* headerの高さ */
  --header_height: 77px;

  /* 角丸の変数 */
  --radius-size_s: 4px;
  --radius-size_l: 8px;

  /* トランジションの変数 */
  --trans-time: 0.2s;

  /* ドロップシャドウ */
  /*  影1つ */
  --shadow_single: 5px 5px var(--main-color);
  /*  影2つ（雑誌風） */
  --shadow_double: 2.5px 2.5px var(--main-color), 5px 5px #00aeff;
  /*  半透明 */
  --shadow_translucent_25: 4px 4px rgba(34, 81, 163, 0.2);
  /*  ぼかし */
  --shadow_blur: 0 0 10px rgba(34, 81, 163, 0.05);

  /* フォントの太さ */
  --font-weight_light: 200;
  --font-weight_regular: 400;
  --font-weight_semi-bold: 500;
  --font-weight_bold: 700;
  --font-weight_extra-bold: 800;

  /* 基本のテキスト設定 */
  font-family: sans-serif, serif;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;

  /* スクロールの設定 */
  scroll-behavior: smooth;
  scroll-padding: 7rem;
  scrollbar-gutter: stable;

  position: relative;

  /* ===== パララックス ===== */
  --parallax-size_large: 200px;
  --parallax-size_medium: 100px;
  --parallax-size_small: 60px;
  /* 画像サイズ（約30px） */
  --parallax-space: 87vw;
  /* 端から80%空ける */
  --z-parallax: 20;
  /* パララックスの重なり */
  --z-cloud: 21;
  --z-rocket: 22;
}


/* MARK: タグの設定
---------------------------------------- */

/* パララックス */
main {
  position: relative;
  z-index: 30;
  /* パララックス(20)より上にする */
  overflow-x: hidden;
}

/* 画像 */
img {
  width: 100%;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* ボタン */
button {
  background: none;
  border: none;
}

/* ホバー時のカーソルを人差し指に */
a,
button,
.oval-btn {
  cursor: pointer;
}

body {
  background-image: linear-gradient(#b6f0ff 0%, #ddf4ff 100%);
  overflow-x: hidden;
}

textarea {
  resize: vertical;
  max-width: 600px;
  height: 200px;
}



/* ========================================
MARK: ■共通デザイン
======================================== */

/* インナーボックス */
.inner {
  width: calc(100% - 3.5rem);
  max-width: 1000px;
  min-width: 320px;
  margin: 0 auto 8rem;
}

/* h2 */
.section-title {
  width: 335px;
  height: 140px;
  margin: 0 auto 4rem;
  padding-top: 45px;

  color: var(--sub-color);
  font-size: 32px;
  text-align: center;

  background-image: url(../img/section-title_background.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.section-title span {
  display: block;
  font-size: 15px;
  margin-top: 2px;
  font-weight: var(--font-weight_semi-bold);
}

/* h3 */
.content-title {
  text-align: center;
}

.content-title_text {
  display: inline-block;
  margin: 0 auto 2rem;
  padding: 0 0.5em;
  font-size: 1.5rem;
  font-weight: var(--font-weight_bold);
  background: linear-gradient(transparent 65%, #fff47b 30%);
}

.content-title_text_small {
  font-size: 1.3rem;
}


/* 便箋風 罫線 */
.dashed {
  max-width: 500px;
  margin: 0 auto;
  /* border: 1px solid red; */
  /* 点線1の色 */
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
    /* 点線2の色と太さ */
    linear-gradient(180deg, #ddd 1px, transparent 1px);

  background-size:
    /* 点線1のサイズ */
    4px 100%,
    /* 点線2のサイズ */
    100% 2.5em;

  /* 文字の高さ */
  line-height: 2.55em;
  /* 最終行の下にも罫線を引く */
  padding-bottom: 1px;
}

/* MARK: PC
---------------------------------------- */
@media all and (min-width: 768px) {
  /* 便箋風 罫線 */
  .dashed {
    max-width: 750px;
    padding: 2px 0.7rem;
  }

  .remove_line-breaks{
    display: none;
  }
}

/* テキスト　強調スタイル */
.text_marker {
  margin: 0 0.1rem;
  color: var(--sub-color);
  font-size: 1.1rem;
  font-weight: var(--font-weight_bold);
}

/*
  MARK: チケット風ボタン
*/
.button_ticket {
  background-color: var(--sub-color);

  transition: var(--trans-time);
  position: relative;
}

/* 青 */
.button_ticket.button_ticket_blue {
  background-color: #0089c8;
}

.button_ticket:hover {
  font-weight: var(--font-weight_bold);
  transform: scale(0.98);
}

.button_ticket_text {
  display: block;
  
  height: 40px;
  margin: 0 auto;
  padding: 0 24px;

  color: #fff;
  font-size: 1rem;
  text-align: center;
  line-height: 40px;
}

.button_ticket::before {
  content: '';
  display: block;
  width: 60px;
  height: 10px;
  margin: auto;
  background: radial-gradient(circle farthest-side, #fff, #fff 60%, transparent 60%, transparent);
  background-size: 10px;

  transform: rotate(90deg);

  position: absolute;
  top: 0;
  bottom: 0;
  left: -31px;
}

.button_ticket::after {
  content: '';
  display: block;
  width: 60px;
  height: 10px;
  margin: auto;
  background: radial-gradient(circle farthest-side, #fff, #fff 60%, transparent 60%, transparent);
  background-size: 10px;

  transform: rotate(90deg);

  position: absolute;
  top: 0;
  bottom: 0;
  right: -31px;
}

/* 要素をフェードインで出現 */
.fade-in_element {
  opacity: 0;
  transform: translateY(20px);
  /* 少し下から表示 */
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* アニメーション */
}

/* フェードイン後 */
.fade-in_element.fade-in {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に戻す */
}

/* チェックボックス */
.checkbox {
  accent-color: #0089c8;
}


/* ========================================
MARK: ■パララックス
======================================== */

/* 画面全体に重ねる“レイヤー” */
.parallax {
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* クリック等を邪魔しない */
  z-index: var(--z-parallax);
}

/* パララックス対象（img） */
.parallax_item_right {
  position: fixed;
  /* スクロールしても画面に固定 */
  left: var(--parallax-space);
  /* 左端から80%空ける */
  width: var(--parallax-size_small);
  height: var(--parallax-size_small);
  aspect-ratio: 1 / 1;
  /* 正方形枠（約30px） */
  object-fit: contain;
  /* 枠内に収める（比率維持） */

  will-change: transform;
  /* transform最適化 */
  transform: translate3d(0, 0, 0);
  /* GPU合成のきっかけ */
  opacity: 0.5;
}

.parallax_item_left {
  position: fixed;
  /* スクロールしても画面に固定 */
  right: var(--parallax-space);
  /* 右端から80%空ける */
  width: var(--parallax-size_small);
  height: var(--parallax-size_small);
  aspect-ratio: 1 / 1;
  /* 正方形枠（約30px） */
  object-fit: contain;
  /* 枠内に収める（比率維持） */

  will-change: transform;
  /* transform最適化 */
  transform: translate3d(0, 0, 0);
  /* GPU合成のきっかけ */
  opacity: 0.5;
}

/* 雲（ロケットより奥） */
.parallax_cloud_right {
  width: var(--parallax-size_large);
  height: var(--parallax-size_large);

  z-index: var(--z-cloud);
  /* JSが動くまでの“仮の初期位置”（任意だが入れておくと見た目が安定） */
  transform: translate3d(0, 25vh, 0);
}

/* 雲（ロケットより奥） */
.parallax_cloud_left {
  width: var(--parallax-size_large);
  height: var(--parallax-size_large);

  z-index: var(--z-cloud);
  /* JSが動くまでの“仮の初期位置”（任意だが入れておくと見た目が安定） */
  transform: translate3d(0, 50vh, 0);
}

/* ロケット（雲より手前） */
.parallax_rocket {
  width: var(--parallax-size_medium);
  height: var(--parallax-size_medium);

  z-index: var(--z-rocket);
  /* JSが動くまでの“仮の初期位置” */
  transform: translate3d(0, 65vh, 0);
}

/* 黄色の鳥 */
.parallax_yellow-bird {
  width: var(--parallax-size_small);
  height: var(--parallax-size_small);

  z-index: var(--z-cloud);
  /* JSが動くまでの“仮の初期位置”（任意だが入れておくと見た目が安定） */
  transform: translate3d(0, 50vh, 0);
}

/* 飛行船 */
.parallax_airship {
  width: var(--parallax-size_medium);
  height: var(--parallax-size_medium);

  z-index: var(--z-cloud);
  /* JSが動くまでの“仮の初期位置”（任意だが入れておくと見た目が安定） */
  transform: translate3d(0, 75vh, 0);
}

/* 羽　右 */
.parallax_feather_right {
  width: calc(var(--parallax-size_small) / 1.5);
  height: calc(var(--parallax-size_small) / 1.5);

  z-index: var(--z-cloud);
  /* JSが動くまでの“仮の初期位置”（任意だが入れておくと見た目が安定） */
  transform: translate3d(0, 80vh, 0);
}

/* 羽　左 */
.parallax_feather_left {
  width: calc(var(--parallax-size_small) / 1.5);
  height: calc(var(--parallax-size_small) / 1.5);

  z-index: var(--z-cloud);
  /* JSが動くまでの“仮の初期位置”（任意だが入れておくと見た目が安定） */
  transform: translate3d(0, 80vh, 0) scale(-1, 1);
}

/* reduced-motion: 追加で“CSS側”でも負荷を落とす（JS停止と併用OK） */
@media (prefers-reduced-motion: reduce) {
  .parallax_item {
    will-change: auto;
  }
}



/* ========================================
MARK: ■hero-img
======================================== */
/* キラキラ */
/* 星空の背景のスタイル */
.stars {
  position: relative;
}

/* 星のスタイル */
.star {
  position: absolute;
  display: block;
  background-color: rgb(163, 247, 255);
  /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px rgb(255, 255, 255, 0.8);
  /* 星の影 */
  opacity: 0;
  animation: twinkle 5s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
  0% {
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}


.hero-img_outer {
  width: 100vw;
  height: 92vh;
  margin-bottom: 7rem;
  position: relative;
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;

  background-image: linear-gradient(#0b6cfe 0%, #83eeff 90%);

  clip-path: ellipse(100% 100% at 50% 0%);

  z-index: -1;
}

.hero-img_inner {
  margin-top: 40px;
}

/* 背景の丸 */
/* 上 */
.hero-img::before {
  content: "";
  display: block;
  width: 320px;
  height: 270px;
  background-image: linear-gradient(45deg, transparent 0%, hsla(0, 0%, 100%, 0.1) 70%);

  border-radius: 100%;

  position: absolute;
  top: -5%;
  right: 50%;

  animation: hero-img_background_circle 4s ease infinite;
}

/* 中央 */
.hero-img::after {
  content: "";
  display: block;
  width: 580px;
  height: 510px;
  margin: auto;
  background-image: linear-gradient(45deg, transparent 0%, hsla(0, 0%, 100%, 0.1) 90%);

  border-radius: 100%;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 60%;

  animation: hero-img_background_circle 4s ease 2s infinite;
}

/* 下 */
.hero-img_inner::before {
  content: "";
  display: block;
  width: 710px;
  height: 600px;
  background-image: linear-gradient(-45deg, transparent 0%, hsla(0, 0%, 100%, 0.1) 70%);
  background-image:
    repeating-linear-gradient(145deg, rgb(255, 255, 255, 0.1), rgb(255, 255, 255, 0.1) 12px, rgb(255, 255, 255, 0.02) 12px, rgb(255, 255, 255, 0.02) 22px);

  border-radius: 100%;

  position: absolute;
  bottom: -20%;
  right: 60%;

  animation: hero-img_background_circle 4s ease 4s infinite;
}

/* 丸　水玉　右上 */
.hero-img_outer::before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  background-image:
    radial-gradient(rgb(255, 255, 255, 0.1) 30%, transparent 30%);
  background-size: 17px 17px;
  background-position: center;
  border-radius: 100px;

  position: absolute;
  top: 15%;
  left: 70%;

  z-index: 1;

  animation: hero-img_background_circle 4s ease -1s infinite;
}

/* 丸　水玉　左下 */
.hero-img_outer::after {
  content: "";
  display: block;
  width: 210px;
  height: 210px;
  background-image:
    radial-gradient(rgba(196, 249, 255, 0.4) 30%, transparent 30%);
  background-size: 20px 20px;
  background-position: center;
  border-radius: 40px;

  position: absolute;
  bottom: 5%;
  right: 75%;

  animation: hero-img_background_circle 4s ease -1s infinite;
}


/* 丸の透明度のアニメーション */
@keyframes hero-img_background_circle {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* コンセプトテキスト（画像） */
.hero-img_concept-text {
  width: 342px;
  margin: 0 auto 16px;

  animation: hero-img_opening 1s ease;

  z-index: 99999;
}

/* コンセプトテキスト　ページ更新時アニメーション */
@keyframes hero-img_opening {
  from {
    opacity: 0;
    scale: 90%;
  }

  to {
    opacity: 1;
    scale: 100%;
  }
}

/* MARK: イラスト
---------------------------------------- */
/* 雲　右　背景 */
.hero-img_cloud_right_background {
  width: 250px;
  position: absolute;
  top: 25%;
  left: 80%;

  opacity: 0.1;

  animation: float_small 6s ease infinite;
}

/* 雲　左　背景 */
.hero-img_cloud_left_background {
  width: 250px;
  position: absolute;
  top: 35%;
  right: 85%;

  opacity: 0.1;

  animation: float_small 6s ease infinite;
}

/* 雲　右奥 */
.hero-img_cloud_right_behind {
  width: 370px;
  position: absolute;
  bottom: 3%;
  left: 80%;

  animation: float_small 6s ease infinite;
}

/* 雲　右前 */
.hero-img_cloud_right_front {
  width: 270px;
  position: absolute;
  bottom: -6%;
  left: 67%;

  animation: float_small 6s ease -4s infinite;
}

/* 雲　左奥 */
.hero-img_cloud_left_behind {
  width: 400px;
  position: absolute;
  bottom: 3%;
  right: 80%;

  animation: float_small 6s ease infinite;
}

/* 雲　左前 */
.hero-img_cloud_left_front {
  width: 270px;
  position: absolute;
  bottom: -6%;
  right: 67%;

  animation: float_large 6s ease -3s infinite;
}

/* 飛行機 */
.hero-img_airplane {
  width: 520px;

  position: absolute;
  top: 10%;
  right: 62%;
  z-index: -1;

  animation: float_large 6s ease infinite;
}

/* 気球 */
.hero-img_balloon {
  width: 280px;

  position: absolute;
  bottom: 5%;
  left: 72%;

  animation: float_large 6s ease -2s infinite;
}

/* 赤いロケット */
.hero-img_rocket {
  width: 70px;

  position: absolute;
  bottom: 17%;
  right: 90%;

  animation: float_large 6s ease -3s infinite;
}

/* 飛行船 */
.hero-img_airship {
  width: 84px;

  position: absolute;
  bottom: 0%;
  left: 90%;

  animation: float_large 6s ease -3s infinite;
}

/* 羽　右上 */
.hero-img_feather_right {
  width: 40px;

  position: absolute;
  top: 18%;
  left: 78%;

  opacity: 0.2;
  animation: float_large 6s ease -3s infinite;
}

/* 羽　左下 */
.hero-img_feather_left {
  width: 50px;

  position: absolute;
  bottom: 35%;
  right: 82%;

  opacity: 0.2;

  animation: float_large 6s ease infinite;
}

/* 左右反転 */
.hero-img_feather_left img {
  transform: scale(-1, 1);
}



/* ふわふわと浮いているようなアニメーション */
/* 大 */
@keyframes float_large {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }

  100% {
    transform: translateY(0);
  }
}

/* 小 */
@keyframes float_small {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0);
  }
}


/* ページ要約テキスト */
/* ボックス */
.hero-img_site-description-text_box {
  text-align: center;

  animation: hero-img_opening 1s ease;
}

.hero-img_site-description-text {
  display: inline-block;
  padding: 0.2em 0.5em;
  color: #2252a3;
  font-size: 1.25rem;
  font-weight: var(--font-weight_bold);
  background-color: #fff;
  box-shadow: var(--shadow_translucent_25);
}

/* 最後の要素以外に下マージン */
.hero-img_site-description-text:not(:last-child) {
  margin-bottom: 8px;
}


/* MARK: PC
---------------------------------------- */
@media all and (min-width: 768px) {

  /* コンセプトテキスト（画像）のサイズ */
  .hero-img_concept-text {
    width: 470px;
    margin-top: 24px;
  }

  /* ページ要約テキストの文字サイズ */
  .hero-img_site-description-text {
    font-size: 1.5rem;
  }

  /* 改行用のbrタグを消す */
  .hero-img_site-description-text_br {
    display: none;
  }

  /* 飛行機 */
  .hero-img_airplane {
    width: 550px;
  }

  /* 気球 */
  .hero-img_balloon {
    width: 310px;
  }
}



/* ========================================
MARK: ■header
======================================== */

/* ヘッダー */
.header {
  margin: 1rem;

  position: fixed;
  top: 4px;
  right: 0;
  left: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 976px;
  margin: 0 auto;
  padding: 0 40px;
  background-color: #fff;

  border-radius: 100vmax;
  box-shadow: var(--shadow_blur);
}

.header-nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-weight: var(--font-weight_semi-bold);

  transition: var(--trans-time);
}

.header-nav_list:hover {
  color: #777;
}

.header-nav_list_item {
  transition: var(--trans-time);
  letter-spacing: -0.05px;
}

.header-nav_list_item:hover {
  color: #000;
  font-weight: var(--font-weight_bold);
}



/* MARK: ヘッダー アコーディオン
---------------------------------------- */
.header-nav_list_item {
  padding: 1.1rem 1rem;
}

.header-nav_list_item:nth-child(3) {
  margin-right: 1rem;
}

.header-nav_list_accordion {
  position: relative;
}

.header-nav_list_training {
  position: absolute;

  background-color: #fff;
  border-radius: 0 0 var(--radius-size_s) var(--radius-size_s);
  box-shadow: var(--shadow_blur);

  z-index: 1;
  width: 100%;
  top: 100%;
  left: 0;
}

.header-nav_list_training_item a {
  display: block;
  width: 8rem;
  padding: 1.1rem;
  font-size: 14px;
  font-weight: var(--font-weight_regular);

  border-top: 1px dotted #eee;
  transition: var(--trans-time);
}

.header-nav_list_training_item a:hover {
  color: #00aeff;
  font-weight: var(--font-weight_bold);
  background-color: #eaf9ff;
  border-radius: 0 0 var(--radius-size_s) var(--radius-size_s);
}

/* サブメニュー（初期状態） */
.header-nav_list_training {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* hover時に表示 */
.header-nav_list>li:hover .header-nav_list_training {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



/* MARK: ヘッダー　h1
---------------------------------------- */
.page-title img {
  width: 70px;
}


/* MARK:　ハンバーガーボタン
----------------------------*/

/* ハンバーガーボタン（SP用） */
.ham-btn {
  width: 3.8rem;
  height: 60px;

  background-color: #fff;
  border: 0;
  border-radius: 35px;

  position: relative;
  appearance: none;
  z-index: 101;
  box-shadow: var(--shadow_blur);
}

/* 三本線共通 */
.ham-btn span {
  display: block;
  width: 22px;
  height: 3px;
  margin: auto;

  background-color: var(--text-color);
  border-radius: 2px;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 7px;

  transition: var(--trans-time);
}

/* ３本線の横の丸 */
.ham-btn span::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin: auto;

  background-color: var(--text-color);
  border-radius: 3px;

  position: absolute;
  top: 0;
  bottom: 0;
  left: -7px;
}

/* 上の線 */
.ham-btn span:first-child {
  content: "";
  transform: translateY(-10px);
}

/* 下の線 */
.ham-btn span:last-child {
  content: "";
  transform: translateY(10px);
}



/* MARK:　g-nav
----------------------------*/

/* オープンする部分 */
@media all and (max-width: 767px) {
  .js_open {
    overflow: hidden;
  }

  .header-inner {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  /* サイトロゴ（h1） */
  .page-title {
    padding: 7px 18px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow_blur);
  }

  /* 開いた時の背景 */
  .header-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 100%;
    height: 100dvh;
    padding: 5em 0 3em;
    background-color: #fff;

    position: fixed;
    top: 0;
    right: 0;

    opacity: 0;
    transform: translateX(120%);
    transition: 0.5s;
  }

  .js_open .header-nav {
    opacity: 1;
    transform: translateX(0);

    scrollbar-color: #fff #fff;
    scroll-behavior: smooth;
    scroll-padding: 3rem;
    scrollbar-gutter: auto;
  }

  /* 開いた時のインナー */
  .header-nav_list {
    display: block;
    width: 65vw;
    margin: 0 auto;
  }

  /* リストの領域に入ったときの色 */
  .header-nav_list:hover,
  .header-nav_list_training:hover {
    color: #999;
  }

  .header-nav_list_item {
    position: relative;
    transition: 0.4s;
    padding: 2rem 0;
    font-size: 15px;
  }

  .header-nav_list_item a {
    padding: 0.5rem;
    transition: var(--trans-time);
  }

  .header-nav_list_item:hover {
    font-weight: var(--font-weight_semi-bold);
  }

  .header-nav_list_item a:hover {
    color: #000;
    font-weight: var(--font-weight_bold);
  }

  /* 最後の要素以外、下線を引く */
  .header-nav_list_item:not(:first-child) {
    margin: 0;
    border-top: 1px solid #d5d5d5;
  }

  /* 研修について　アコーディオン要素　常時表示 */
  .header-nav_list_training {
    display: block;
    position: inherit;
    margin-top: 0.5rem;
    box-shadow: none;
    inset: 0;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  /* 研修について　h3 */
  .header-nav_list_training_item a {
    display: inline-block;
    width: 100%;
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 14px;
    font-weight: var(--font-weight_regular);
    background-color: transparent;
    border-top: none;
    transition: var(--trans-time);

    position: relative;
  }

  /* ・を作る */
  .header-nav_list_training_item a::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #999;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 1rem;
    margin: auto;
  }

  /* ・のホバーアニメーション */
  .header-nav_list_training_item a:hover::before {
    background-color: var(--text-color);
  }

  /* 最後の要素の角丸を消す */
  .header-nav_list_training_item:last-child {
    border-radius: 0;
  }

  /* 研修について　h3　ホバーアニメーション */
  .header-nav_list_training_item a:hover {
    color: var(--text-color);
    font-weight: var(--font-weight_semi-bold);
    background-color: transparent;
  }

  /* ハンバーガーメニュー　開いた時にでてくるロゴ */
  .header-nav_logo {
    width: 100px;
    margin: 0 auto;
  }


  /* MARK: × ハンバーガーメニュー
	---------------------------------------- */
  /* 上の線 */
  .js_open .ham-btn span:first-child {
    transform: translateY(0) rotate(-40deg);
    width: 34px;
    right: 5px;
  }

  /* 下の線を傾ける */
  .js_open .ham-btn span:last-child {
    transform: translateY(0) rotate(40deg);
    width: 34px;
    right: 5px;
  }

  /* 真ん中の線を消す */
  .js_open .ham-btn span:nth-child(2) {
    opacity: 0;
  }

  /* 丸を消す */
  .js_open .ham-btn span::before {
    content: "";
    width: 0;
    height: 0;
  }
}

/* 閉じてるとき */
@media all and (min-width: 768px) {
  .ham-btn {
    display: none;
  }
}




/* ========================================
MARK: ■皆さんへ
======================================== */

.message_text_box {
  position: relative;
  padding: 4rem 2rem;
  font-weight: var(--font-weight_bold);
  background-color: #fff;

  border-radius: var(--radius-size_s);
  box-shadow: var(--shadow_single);
}

/* 左上飾り */
.message_text_box::before {
  content: "";
  display: inline-block;

  width: 200px;
  height: 77px;
  background-image: url(../img/message_illustration01.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  top: 10px;
  left: -60px;
}

/* 右下飾り */
.message_text_box::after {
  content: "";
  display: inline-block;

  width: 110px;
  height: 110px;
  background-image: url(../img/message_illustration02.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  bottom: -30px;
  right: -22px;

  transform: rotate(10deg);
}

.message_text_box .message_text {
  padding: 2px 0.7rem;
}

.message_text_box .message_text:not(:last-child) {
  margin-bottom: 2rem;
  padding: auto 0.5rem;
}

/* メッセージ　テキスト画像 */
.message_text_heading_box {
  margin: 0 auto;
}

.message_text_heading:last-child {
  display: block;
  width: 251px;
  margin: 0 auto 2rem;
}

/* MARK: PC
---------------------------------------- */
@media all and (min-width: 768px) {
  .message_text_heading:last-child {
    display: block;
    width: 466px;
    margin: 0 auto 3rem;
  }
}



/* ========================================
MARK: ■研修について
======================================== */


/* MARK: 研修の種類
---------------------------------------- */

/* ここから */

/* 切り替えタブ */
.training_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;

  max-width: 450px;
  margin: 3.5rem auto 6rem;

  border-radius: 4px;
  box-shadow: var(--shadow_double);

  position: relative;
}

/* 切り替えるボタン */
.training_list_button {
  width: 28%;
  padding: 10px 0 40px;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;

  border-radius: 2px;
  background-image: linear-gradient(#f4a700 0%, #f48208);
  box-shadow: 2px 2px rgba(34, 81, 163, 0.2);
  opacity: 0.5;

  cursor: pointer;

  position: absolute;
  top: -40px;

  transition: 0.2s;
}

/* 色と配置を変える */
.training_list_button:nth-of-type(1) {
  left: 4%;
  transform: rotateZ(-1deg);
}

.training_list_button:nth-of-type(2) {
  margin: auto;
  background-image: linear-gradient(#33beff 0%, #26a1f4);
  right: 0;
  left: 0;
  transform: rotateZ(1deg);
}

.training_list_button:nth-of-type(3) {
  background-image: linear-gradient(#5cb900 0%, #28a300);
  right: 4%;
  transform: rotateZ(-1deg);
}

/* ボタンのホバーアニメーション */
.training_list_button:hover {
  opacity: 0.8;
  top: -43px;
}

/* ラジオボタンの●を消す */
.training_list_button input {
  display: none;
}

/* ボタンをクリックした時のボタンのスタイル */
.training_list_button:has(:checked) {
  padding: 21px 0 45px;
  font-size: 1rem;
  font-weight: bold;
  opacity: 1;

  z-index: 2;
  top: -54px;
}

/* ボタンをクリックした時、タブを切り替える */
.training_list_button:has(:checked)+.training_list_item {
  display: block;
}

/* タブの内容 */
.training_list_item {
  display: none;
  width: 100%;
  padding: 2rem 1rem 3rem;
  background-color: #fff;
  border-radius: 4px;

  z-index: 1;
}

/* 研修のタイトル */
.training_list_title_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;

  font-size: 20px;
  text-align: center;
  margin: 2rem auto;
  padding-bottom: 1.5rem;
  color: #f46e08;
  border-bottom: 1px dashed #cdd3d4;
}

.training_list_title_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;

  font-size: 20px;
  text-align: center;
  margin: 2rem auto;
  padding-bottom: 1.5rem;
  color: #2990d6;
  border-bottom: 1px dashed #cdd3d4;
}

.training_list_title_3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;

  font-size: 20px;
  text-align: center;
  margin: 2rem auto;
  padding-bottom: 1.5rem;
  color: #269900;
  border-bottom: 1px dashed #cdd3d4;
}

/* 研修を説明する画像 */
.training_list_description-img {
  width: 180px;
  margin: 0 auto 2rem;
}

/* 研修を説明するテキスト */
.training_list_description-text {
  font-weight: var(--font-weight_semi-bold);
  text-align: center;
}

/* 最後の要素以外に下margin */
.training_list_description-text:not(:last-child) {
  margin-bottom: 1rem;
}

/* 研修を説明するテキスト内の強調スタイル */
.training_list_description-text_marker_1 {
  color: #f46e08;
  font-size: 1.1rem;
  font-weight: var(--font-weight_bold);
  background: linear-gradient(transparent 75%, #fff47b 25%);
}

.training_list_description-text_marker_2 {
  color: #2990d6;
  font-size: 1.1rem;
  font-weight: var(--font-weight_bold);
  background: linear-gradient(transparent 75%, #fff47b 25%);
}

.training_list_description-text_marker_3 {
  color: #269900;
  font-size: 1.1rem;
  font-weight: var(--font-weight_bold);
  background: linear-gradient(transparent 75%, #fff47b 25%);
}


/* MARK: TB
---------------------------------------- */
@media all and (min-width: 768px) {
  .training_list {
    max-width: 1000px;
  }

  /* 切り替えるボタン */
  .training_list_button {
    font-size: 1rem;
  }

  /* ボタンをクリックした時のボタンのスタイル */
  .training_list_button:has(:checked) {
    font-size: 1.1rem;
  }

  /* 研修を説明する画像 */
  .training_list_description-img {
    width: 190px;
    margin-bottom: 0;
  }

  /* 画像とテキストを横並びにする */
  .training_list_description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    width: 600px;
    margin: 0 auto;
  }

  /* テキストの横幅を固定 */
  .training_list_description-text_box {
    width: 300px;
  }
}

/* MARK: PC
---------------------------------------- */
@media all and (min-width: 1000px) {

  /* 研修を説明する画像 */
  .training_list_description-img {
    width: 200px;
  }

  /* 画像とテキストを横並びにする */
  .training_list_description {
    width: 800px;
  }

  /* テキストの横幅を固定 */
  .training_list_description-text_box {
    width: 550px;
  }

  /* 改行を削除 */
  .training_list_description-text_remove_line-breaks {
    display: none;
  }
}


/* MARK: 新人研修期間
---------------------------------------- */
.training_period_box {
  margin-bottom: 6rem;
  padding: 3rem 1.5rem;
  background-color: rgba(6, 176, 255, 0.1);
  border-radius: var(--radius-size_s);
}

/* 期間の画像 */
.training_period_img:last-child {
  display: block;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.training_period_text_box {
  padding: 2rem 1.5rem;
  background-color: #fff;
  border-radius: var(--radius-size_s);
  box-shadow: var(--shadow_single);
  font-weight: var(--font-weight_bold);
}

.training_period_text_box:not(:last-child) {
  margin-bottom: 4rem;
}


/* MARK: メッセージ
---------------------------------------- */
.training_message_text_box {
  margin-bottom: 4rem;
  padding: 3rem 1.5rem;
  font-weight: var(--font-weight_bold);
  background-color: #fff;
  border-radius: var(--radius-size_s);
  box-shadow: var(--shadow_single);
}

/* .training_message_text_box .message_text {
  padding: 2px 0.3rem;
} */

.training_message_text_box .message_text:not(:last-child) {
  margin-bottom: 2rem;
}



/* ========================================
MARK: ■S.E.Cについて
======================================== */

.contents_box {
  padding: 3rem 1.5rem;
  background-color: rgba(6, 176, 255, 0.1);
  border-radius: var(--radius-size_s);
}

/* リストアイテムの最後以外の要素に下余白 */
.contents_list_item:not(:last-child) {
  margin-bottom: 4rem;
}

/* h3の紹介吹き出し */
.contents_explanation_blue,
.contents_explanation_orange {
  position: relative;
  width: 230px;
  margin: 0 auto 2rem;
  padding: 1rem;

  color: #fff;
  font-size: 0.875rem;
  font-weight: var(--font-weight_semi-bold);
  text-align: center;

  background-color: var(--main-color);
  border-radius: 3rem;
}

.contents_explanation_orange {
  width: 270px;

  background-color: #ffae00;
  border-radius: 4rem;
}

/* 吹き出しの下三角▼ */
.contents_explanation_blue::after,
.contents_explanation_orange::after {
  content: "";
  display: block;

  width: 20px;
  height: 24px;
  margin: 0 auto;
  border-top: 12px solid var(--main-color);
  border-right: 10px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 10px solid transparent;

  position: absolute;
  right: 0;
  bottom: -22px;
  left: 0;
}

.contents_explanation_orange::after {
  border-top: 12px solid #ffae00;
}

/* 吹き出し内強調線　左＼ */
.contents_explanation_text::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1rem;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);

  position: absolute;
  top: 2rem;
  left: 1.2rem;
}

/* 吹き出し内強調線　右／ */
.contents_explanation_text::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1rem;
  border-left: 1px solid #fff;
  transform: rotate(45deg);

  position: absolute;
  top: 2rem;
  right: 1.2rem;
}

/* コンテンツリンク画像 */
.contents_link_movie_img,
.contents_link_comic_img {
  width: 280px;
  margin: 0 auto;

  animation: float_small 6s ease infinite;
  position: relative;
}

.contents_link_comic_img {
  animation: float_small 6s ease -2s infinite;
}


.contents_link_movie_img a::before {
  content: "";
  display: block;
  width: 75px;
  height: 75px;
  margin: auto;

  background-image: url(../img/contents_movie_icon.webp);
  background-size: cover;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--trans-time);

  position: absolute;
  inset: 0 0 15px;
}

.contents_link_comic_img a::before {
  content: "";
  display: block;
  width: 75px;
  height: 75px;
  margin: auto;

  background-image: url(../img/contents_comic_icon.webp);
  background-size: cover;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--trans-time);

  position: absolute;
  inset: 0 0 15px;
}

.contents_link_movie_img:hover a::before,
.contents_link_comic_img:hover a::before {
  opacity: 1;
}

/* MARK: PC
---------------------------------------- */
@media all and (min-width: 768px) {
  .contents_list {
    display: flex;
    justify-content: center;
    gap: 4rem;
  }

  .contents_list_item:not(:last-child) {
    margin-bottom: 0;
  }
}



/* ========================================
MARK: ■form
======================================== */

.form_box {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  background-color: #fff;
  border-radius: 1rem;
  border: 8px solid #ffae00;
  box-shadow: var(--shadow_single);

  position: relative;
}

.form_inner {
  max-width: 600px;
  margin: 0 auto;
}

/* バインダーの画像を疑似要素で追加 */
.form_box::before {
  content: "";
  display: block;
  width: 206px;
  height: 75px;
  background-image: url(../img/form_board.webp);
  background-repeat: no-repeat;
  background-size: cover;

  position: absolute;
  margin: 0 auto;
  top: -50px;
  right: 0;
  left: 0;
}

/* フォームの流れ */
.entry_flow_box_1,
.entry_flow_box_2,
.entry_flow_box_3 {
  display: flex;
  justify-content: space-between;

  width: 320px;
  margin: 150px auto 100px;

  position: relative;
}

/* 横棒― */
.entry_flow_item:not(:last-child):before {
  content: "";
  display: block;
  width: 127px;
  border-top: 3px solid #fff;

  position: absolute;
  top: -31px;
  left: 40px;

  z-index: -1;
}

/* 横棒― 2階層目 */
.entry_flow_box_2 .entry_flow_item:first-child::before {
  content: "";
  display: block;
  width: 127px;
  border-top: 3px solid #02a0e9;

  position: absolute;
  top: -31px;
  left: 40px;

  z-index: -1;
}

/* 横棒― 3階層目 */
.entry_flow_box_3 .entry_flow_item:not(:last-child):before {
  content: "";
  display: block;
  width: 127px;
  border-top: 3px solid #02a0e9;

  position: absolute;
  top: -31px;
  left: 40px;

  z-index: -1;
}


/* テキスト 通常 */
.entry_flow_item {
  width: 7em;
  color: #7bd0ed;
  font-size: 14px;
  font-weight: var(--font-weight_semi-bold);
  text-align: center;

  position: relative;
}

/* テキスト　1階層目 */
.entry_flow_box_1 .entry_flow_item:nth-child(1) {
  color: #0089c8;
  font-weight: var(--font-weight_bold);
}

/* テキスト　2階層目 */
.entry_flow_box_2 .entry_flow_item:not(:last-child) {
  color: #0089c8;
  font-weight: var(--font-weight_bold);
}

/* テキスト　3階層目 */
.entry_flow_box_3 .entry_flow_item {
  color: #0089c8;
  font-weight: var(--font-weight_bold);
}


/* 丸○ */
.entry_flow_item.other::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: #fff;
  border-radius: 15px;

  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}

/* 丸○ 2階層目 */
.entry_flow_box_2 .entry_flow_item.other:first-child::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: #02a0e9;
  border-radius: 15px;

  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}

/* 丸○ 3階層目 */
.entry_flow_box_3 .entry_flow_item.other::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: #02a0e9;
  border-radius: 15px;

  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}


/* 現在の階層のマーク（飛行機） */
.entry_flow_item.current::after {
  content: "";
  display: block;
  width: 72px;
  height: 47px;
  margin: 0 auto;

  background-image: url(../img/entry_flow.webp);
  background-repeat: no-repeat;
  background-size: cover;

  position: absolute;
  top: -53px;
  right: 0;
  left: 0;
}

/* フォームの説明テキスト */
.form_explanation-text {
  text-align: center;
  margin-bottom: 0.5rem;
}

.form_explanation-text:last-of-type {
  margin-bottom: 2rem;
}

/* オレンジ色にする */
.form_explanation-text_orange {
  color: var(--sub-color);
  font-weight: var(--font-weight_bold);
}

.form_input-title {
  font-weight: var(--font-weight_bold);
}

.form_input_box {
  margin: 0.5rem 0 2rem;
}

.form_input_box_flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.5rem 0 2rem;
}

.form_input_item {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  background-color: #ededed;
  border: 2px solid transparent;
  border-radius: 4px;
}

/* input　正誤 */
.from_input_right {
  border: 2px solid var(--main-color);
}

.from_input_error {
  border: 2px solid var(--sub-color);
}

/* 文字数カウント */
.form_counter {
  font-size: 1rem;
  font-weight: var(--font-weight_regular);
  text-align: right;
}

/* 個人情報の取り扱いについて */
.form_consent {
  height: 200px;
  margin-bottom: 2rem;
  padding: 1.5rem 14px;
  color: #fff;
  font-size: 12px;
  font-weight: var(--font-weight_regular);
  background-color: #0089c8;
  border-radius: 4px;
  overflow-y: scroll;
}


.form_consent p {
  margin: 0 1em;
}

.form_consent label.form_consent_title {
  display: block;
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: var(--font-weight_bold);
  text-align: center;
}

/* h3 */
.form_consent_sub-title {
  margin: 1rem 0 0.2rem;
}

/* h4 */
.form_consent_sub-title_title {
  margin: 0.4rem 0 0.1rem;
}

.form_consent_checkbox {
  display: block;
  margin-bottom: 2rem;
  font-size: 14px;
  text-align: center;
}

/* チケット風ボタン　送信ボタン個別設定 */
.form_box .button_ticket {
  display: block;
  margin: 0 auto;
  padding: 0 3rem;
}

/* MARK: 確認画面
---------------------------------------- */
.form_confirm_title {
  padding: 2rem 0 0.5rem;
  font-weight: var(--font-weight_bold);
  border-top: 1px dashed #d5d5d5;
}

.form_confirm_text {
  margin: 0 1rem 2rem;
}

.form_confirm_text span {
  word-break: break-all;
}

/* 2つのボタンを横並びにする */
.form_confirm_button_box {
  max-width: 300px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;

  margin: 0 auto;
}

.form_confirm_button_box .button_ticket {
  max-width: 120px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}


/* MARK: 送信完了画面
---------------------------------------- */
.form_send-img {
  width: 170px;
  margin: 4rem auto;
}

.send .button_ticket {
  width: 180px;
}

.form-only_inner {
  margin-top: 120px;
}


/* MARK: エラー画面
---------------------------------------- */
.form_box.error {
  margin-top: 6rem;
}

.error .form_explanation-text{
  padding: 2rem 0;
}


/* ========================================
MARK: ■footer
======================================== */

/* MARK: トップに戻るボタン
---------------------------------------- */
.page-top_box {
  width: 50px;
  padding-right: 3.7rem;
  background-color: #7bd0ed;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-radius: 35px 0 0 35px;
  color: #0089c8;

  position: absolute;
  right: 0;
  bottom: 22px;

  z-index: 999;

  transition: var(--trans-time);
}

.page-top_box::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #0089c8;
  border-left: 3px solid #0089c8;

  transform: rotate(45deg);

  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
}

.page-top {
  padding: 2.7rem 1rem 1.3rem;
  font-weight: var(--font-weight_bold);

  writing-mode: vertical-rl;
  text-orientation: upright;

  position: relative;
}

/* MARK: PC
---------------------------------------- */
@media all and (min-width: 768px) {
  .page-top_box {
    width: 70px;
    height: 70px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 40px;

    position: absolute;
    right: 7%;
    bottom: 64px;

    z-index: 999;

    transition: var(--trans-time);
  }

  .page-top_box::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin: auto;
    border-top: 3px solid #0089c8;
    border-left: 3px solid #0089c8;

    transform: rotate(45deg);

    position: absolute;
    top: 17px;
    right: 0;
    left: 0;
  }

  .page-top_box:hover {
    color: #7bd0ed;
    background-color: #0089c8;
    border: 2px solid #7bd0ed;
  }

  .page-top_box:hover::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin: auto;
    border-top: 3px solid #7bd0ed;
    border-left: 3px solid #7bd0ed;

    transform: rotate(45deg);

    position: absolute;
    top: 17px;
    right: 0;
    left: 0;
  }

  .page-top {
    height: 80px;
    line-height: 80px;
    margin: 0 auto;
    padding: 2rem 1rem 1rem;
    font-weight: var(--font-weight_bold);

    writing-mode: unset;
    text-orientation: unset;
  }
}


.footer_box {
  margin-top: 3rem;
  position: relative;

  z-index: 30;
}

.footer_outer {
  padding: 4rem 0;
  background-color: #0089c8;
  background-image:
    url(../img/footer_background.webp),
    linear-gradient(#00a0d1 0%, #0089c8 50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;

  position: relative;

  clip-path: ellipse(300% 100% at 50% 100%);
}

.footer_box .inner {
  margin-bottom: 0;
}

.footer_airport_box {
  width: 100%;
  text-align: center;

  background-image: url(../img/footer_airport_background.webp);
  background-repeat: repeat-x;
  background-size: 400px;
  background-position: center;

  position: absolute;
  top: -92px;
}

.footer_airport {
  width: 285px;
  margin-bottom: 50px;
}

.footer_nav_box {
  width: 80vw;
  min-width: 340px;
  margin: 0 auto;
}

.footer_nav_box.inner {
  min-width: 200px;
}

.footer_nav {
  width: 100%;
}

/* 最初以外の要素に余白とボーダー */
.footer_nav:not(:first-child) {
  margin-top: 3rem;
}

/* ナビゲーションのタイトル */
.footer_nav_title {
  margin-bottom: 0.6rem;
  padding-bottom: 0.8rem;
  color: #fff;
  border-bottom: 1px dotted #d1f6ff;

  position: relative;
}

.footer_nav_corporate-site .footer_nav_title{
  border-bottom: 1px dotted #8adcf1;
}

.footer_nav_list {
  color: #fff;
  transition: var(--trans-time);
}

.footer_nav_list-item {
  font-size: 14px;

  position: relative;
}

.footer_nav_list-item a {
  display: block;
  padding: 0.7rem 0 0.7rem 1.3rem;

  transition: var(--trans-time);
}

/* 矢印 */
.footer_nav_list-item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1.5px solid #b6f0ff;
  border-right: 1.5px solid #b6f0ff;
  transform: rotate(45deg);

  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
}

/* コーポレートサイト */
.footer_nav_corporate-site .footer_nav_title,
.footer_nav_corporate-site .footer_nav_list-item {
  color: #b6f0ff;
  font-weight: var(--font-weight_regular);
}

/* ロゴ、コピーライト */
.footer_logo_copyright_box {
  padding: 2.8rem;
  background-color: #004E85;
}

.footer_logo {
  width: 100px;
  margin: 0 auto 1.5rem;
}

.copyright {
  color: #9ecfe5;
  font-size: 12px;
  text-align: center;
}

/* MARK: PC
---------------------------------------- */
@media all and (min-width: 768px) {
  .footer_nav_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 3rem;
  }
  
  .footer_nav{
    width: 260px;
  }

  /* 最初以外の要素に余白とボーダー */
  .footer_nav:not(:first-child) {
    margin-top: 0;
  }

  .footer_nav_list-item:not(:last-child) {
    margin-bottom: 0;
  }

  /* ホバーアニメーション */
  .footer_nav_list:hover {
    color: #c3e2f0;
  }

  .footer_nav_list-item a:hover {
    color: #fff;
    font-weight: var(--font-weight_bold);
  }
}

/* ========================================
MARK: ■SP
======================================== */
@media all and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
