@charset "UTF-8";
/*----------------------------------------------------

	読み込み専用のマスターファイルです。
	このファイルに直接スタイルを書き込まないでください。

----------------------------------------------------*/
/*--------------------------
	Base
--------------------------*/
/*----------------------------------------------------

	サイトの基本設定のファイルです。
	最初の設定以外、基本変更することはありません。

----------------------------------------------------*/
/*--------------------------
	フォントの設定
--------------------------*/
/*--------------------------
	カラーの設定
--------------------------*/
/*--------------------------
	レイアウトの設定
--------------------------*/
/*--------------------------
	グリッドのガター
--------------------------*/
/*--------------------------
	レスポンシブの設定
--------------------------*/
/*--------------------------
  アニメーションの設定
--------------------------*/
/*----------------------------------------------------

	Mixinをまとめたファイルです。
	基本的に変更することはありません。
	Mixinを追加したい場合、_mixin_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関連
--------------------------*/
/*----------------------------------------------------

	自作関数をまとめたファイルです。
	基本的に変更することはありません。
	自作関数を追加したい場合、_functions_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*----------------------------------------------------

	初期設定を行うファイルです。
	デフォルトの設定を行う時以外、基本的に編集することはありません。

----------------------------------------------------*/
img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

/*--------------------------
	utility
--------------------------*/
/*----------------------------------------------------

	汎用クラスをまとめたファイルです。
	基本的に変更することはありません。
	汎用クラスを追加したい場合、_utility_●●.scssという
	別ファイルを生成し、追加してください。

	命名規則として、クラス名の頭に 
	u-* (utilityのu)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
.u-txt-bold {
  font-weight: bold !important;
}

.u-txt-xsmall {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .u-txt-xsmall {
    font-size: 1rem !important;
  }
}

.u-txt-small {
  font-size: 1.4rem !important;
}
@media screen and (max-width: 767px) {
  .u-txt-small {
    font-size: 1.2rem !important;
  }
}

.u-txt-medium {
  font-size: 1.8rem !important;
}
@media screen and (max-width: 767px) {
  .u-txt-medium {
    font-size: 1.4rem !important;
  }
}

.u-txt-large {
  font-size: 2rem !important;
}
@media screen and (max-width: 767px) {
  .u-txt-large {
    font-size: 1.6rem !important;
  }
}

.u-link {
  color: #000;
  text-decoration: underline;
}
.u-link:hover {
  text-decoration: none;
}

.u-ul-default {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}
.u-ul-default li {
  list-style: inherit;
}

.u-ol-default {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.u-ol-default li {
  list-style: inherit;
}

.u-ul-style > li {
  position: relative;
  padding-left: 1.3em;
}
.u-ul-style > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-ul-style--asterisk > li::before {
  content: "※";
}
.u-ul-style--disc > li::before {
  content: "●";
  color: #ccc;
}
.u-ul-style--disc-red > li::before {
  content: "●";
  color: #000;
}
.u-ul-style--disc-blue > li::before {
  content: "●";
  color: #00AFDD;
  left: -10px;
}
@media screen and (max-width: 767px) {
  .u-ul-style--disc-blue > li::before {
    top: 8px;
    left: -1px;
    font-size: 8px;
  }
}
.u-ul-style--number > li {
  counter-increment: number;
}
.u-ul-style--number > li::before {
  content: counter(number) ".";
}
.u-ul-style--number-circle > li {
  counter-increment: number;
}
.u-ul-style--number-circle > li::before {
  content: counter(number);
  color: #fff;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .u-ul-style--number-circle > li::before {
    line-height: 1.6 !important;
  }
}
.u-ul-style--number-circle > li::after {
  position: absolute;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #1E2678;
  font-size: 16px;
  border-radius: 100%;
  top: 6px;
  left: -5px;
  z-index: 0;
  content: "・";
}
@media screen and (max-width: 767px) {
  .u-ul-style--number-circle > li::after {
    width: clamp(15px, 3.65vw, 28px);
    height: clamp(15px, 3.65vw, 28px);
    top: 5%;
    left: -4px;
  }
}
.u-ul-style--number-red > li {
  counter-increment: number;
}
.u-ul-style--number-red > li::before {
  content: counter(number) ".";
  color: #000;
}

.u-align-l {
  text-align: left !important;
}

.u-align-c {
  text-align: center !important;
}

.u-align-r {
  text-align: right !important;
}

@media screen and (max-width: 1000px) {
  .u-align-l-tab {
    text-align: left !important;
  }
  .u-align-c-tab {
    text-align: center !important;
  }
  .u-align-r-tab {
    text-align: right !important;
  }
}
@media screen and (max-width: 767px) {
  .u-align-l-sp {
    text-align: left !important;
  }
  .u-align-c-sp {
    text-align: center !important;
  }
  .u-align-r-sp {
    text-align: right !important;
  }
}
.u-iframe-responsive {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 56.25%;
}
.u-iframe-responsive iframe,
.u-iframe-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*--------------------------
	padding margin 調整用
--------------------------*/
.u-mt-s {
  margin-top: 2rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-s {
    margin-top: 1rem !important;
  }
}

.u-mt-m {
  margin-top: 4rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-m {
    margin-top: 2rem !important;
  }
}

.u-mt-l {
  margin-top: 6rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-l {
    margin-top: 3rem !important;
  }
}

.u-mt-xl {
  margin-top: 8rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-xl {
    margin-top: 4rem !important;
  }
}

.u-mb-s {
  margin-bottom: 2rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-s {
    margin-bottom: 1rem !important;
  }
}

.u-mb-m {
  margin-bottom: 4rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-m {
    margin-bottom: 2rem !important;
  }
}

.u-mb-l {
  margin-bottom: 6rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-l {
    margin-bottom: 3rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 8rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-xl {
    margin-bottom: 4rem !important;
  }
}

.u-mt120 {
  margin-top: 12rem !important;
}

.u-mb120 {
  margin-bottom: 12rem !important;
}

.u-ml120 {
  margin-left: 12rem !important;
}

.u-mr120 {
  margin-right: 12rem !important;
}

.u-pt120 {
  padding-top: 12rem !important;
}

.u-pb120 {
  padding-bottom: 12rem !important;
}

.u-pl120 {
  padding-left: 12rem !important;
}

.u-pr120 {
  padding-right: 12rem !important;
}

.u-mt110 {
  margin-top: 11rem !important;
}

.u-mb110 {
  margin-bottom: 11rem !important;
}

.u-ml110 {
  margin-left: 11rem !important;
}

.u-mr110 {
  margin-right: 11rem !important;
}

.u-pt110 {
  padding-top: 11rem !important;
}

.u-pb110 {
  padding-bottom: 11rem !important;
}

.u-pl110 {
  padding-left: 11rem !important;
}

.u-pr110 {
  padding-right: 11rem !important;
}

.u-mt100 {
  margin-top: 10rem !important;
}

.u-mb100 {
  margin-bottom: 10rem !important;
}

.u-ml100 {
  margin-left: 10rem !important;
}

.u-mr100 {
  margin-right: 10rem !important;
}

.u-pt100 {
  padding-top: 10rem !important;
}

.u-pb100 {
  padding-bottom: 10rem !important;
}

.u-pl100 {
  padding-left: 10rem !important;
}

.u-pr100 {
  padding-right: 10rem !important;
}

.u-mt90 {
  margin-top: 9rem !important;
}

.u-mb90 {
  margin-bottom: 9rem !important;
}

.u-ml90 {
  margin-left: 9rem !important;
}

.u-mr90 {
  margin-right: 9rem !important;
}

.u-pt90 {
  padding-top: 9rem !important;
}

.u-pb90 {
  padding-bottom: 9rem !important;
}

.u-pl90 {
  padding-left: 9rem !important;
}

.u-pr90 {
  padding-right: 9rem !important;
}

.u-mt80 {
  margin-top: 8rem !important;
}

.u-mb80 {
  margin-bottom: 8rem !important;
}

.u-ml80 {
  margin-left: 8rem !important;
}

.u-mr80 {
  margin-right: 8rem !important;
}

.u-pt80 {
  padding-top: 8rem !important;
}

.u-pb80 {
  padding-bottom: 8rem !important;
}

.u-pl80 {
  padding-left: 8rem !important;
}

.u-pr80 {
  padding-right: 8rem !important;
}

.u-mt75 {
  margin-top: 7.5rem !important;
}

.u-mb75 {
  margin-bottom: 7.5rem !important;
}

.u-ml75 {
  margin-left: 7.5rem !important;
}

.u-mr75 {
  margin-right: 7.5rem !important;
}

.u-pt75 {
  padding-top: 7.5rem !important;
}

.u-pb75 {
  padding-bottom: 7.5rem !important;
}

.u-pl75 {
  padding-left: 7.5rem !important;
}

.u-pr75 {
  padding-right: 7.5rem !important;
}

.u-mt70 {
  margin-top: 7rem !important;
}

.u-mb70 {
  margin-bottom: 7rem !important;
}

.u-ml70 {
  margin-left: 7rem !important;
}

.u-mr70 {
  margin-right: 7rem !important;
}

.u-pt70 {
  padding-top: 7rem !important;
}

.u-pb70 {
  padding-bottom: 7rem !important;
}

.u-pl70 {
  padding-left: 7rem !important;
}

.u-pr70 {
  padding-right: 7rem !important;
}

.u-mt65 {
  margin-top: 6.5rem !important;
}

.u-mb65 {
  margin-bottom: 6.5rem !important;
}

.u-ml65 {
  margin-left: 6.5rem !important;
}

.u-mr65 {
  margin-right: 6.5rem !important;
}

.u-pt65 {
  padding-top: 6.5rem !important;
}

.u-pb65 {
  padding-bottom: 6.5rem !important;
}

.u-pl65 {
  padding-left: 6.5rem !important;
}

.u-pr65 {
  padding-right: 6.5rem !important;
}

.u-mt60 {
  margin-top: 6rem !important;
}

.u-mb60 {
  margin-bottom: 6rem !important;
}

.u-ml60 {
  margin-left: 6rem !important;
}

.u-mr60 {
  margin-right: 6rem !important;
}

.u-pt60 {
  padding-top: 6rem !important;
}

.u-pb60 {
  padding-bottom: 6rem !important;
}

.u-pl60 {
  padding-left: 6rem !important;
}

.u-pr60 {
  padding-right: 6rem !important;
}

.u-mt55 {
  margin-top: 5.5rem !important;
}

.u-mb55 {
  margin-bottom: 5.5rem !important;
}

.u-ml55 {
  margin-left: 5.5rem !important;
}

.u-mr55 {
  margin-right: 5.5rem !important;
}

.u-pt55 {
  padding-top: 5.5rem !important;
}

.u-pb55 {
  padding-bottom: 5.5rem !important;
}

.u-pl55 {
  padding-left: 5.5rem !important;
}

.u-pr55 {
  padding-right: 5.5rem !important;
}

.u-mt50 {
  margin-top: 5rem !important;
}

.u-mb50 {
  margin-bottom: 5rem !important;
}

.u-ml50 {
  margin-left: 5rem !important;
}

.u-mr50 {
  margin-right: 5rem !important;
}

.u-pt50 {
  padding-top: 5rem !important;
}

.u-pb50 {
  padding-bottom: 5rem !important;
}

.u-pl50 {
  padding-left: 5rem !important;
}

.u-pr50 {
  padding-right: 5rem !important;
}

.u-mt45 {
  margin-top: 4.5rem !important;
}

.u-mb45 {
  margin-bottom: 4.5rem !important;
}

.u-ml45 {
  margin-left: 4.5rem !important;
}

.u-mr45 {
  margin-right: 4.5rem !important;
}

.u-pt45 {
  padding-top: 4.5rem !important;
}

.u-pb45 {
  padding-bottom: 4.5rem !important;
}

.u-pl45 {
  padding-left: 4.5rem !important;
}

.u-pr45 {
  padding-right: 4.5rem !important;
}

.u-mt40 {
  margin-top: 4rem !important;
}

.u-mb40 {
  margin-bottom: 4rem !important;
}

.u-ml40 {
  margin-left: 4rem !important;
}

.u-mr40 {
  margin-right: 4rem !important;
}

.u-pt40 {
  padding-top: 4rem !important;
}

.u-pb40 {
  padding-bottom: 4rem !important;
}

.u-pl40 {
  padding-left: 4rem !important;
}

.u-pr40 {
  padding-right: 4rem !important;
}

.u-mt35 {
  margin-top: 3.5rem !important;
}

.u-mb35 {
  margin-bottom: 3.5rem !important;
}

.u-ml35 {
  margin-left: 3.5rem !important;
}

.u-mr35 {
  margin-right: 3.5rem !important;
}

.u-pt35 {
  padding-top: 3.5rem !important;
}

.u-pb35 {
  padding-bottom: 3.5rem !important;
}

.u-pl35 {
  padding-left: 3.5rem !important;
}

.u-pr35 {
  padding-right: 3.5rem !important;
}

.u-mt30 {
  margin-top: 3rem !important;
}

.u-mb30 {
  margin-bottom: 3rem !important;
}

.u-ml30 {
  margin-left: 3rem !important;
}

.u-mr30 {
  margin-right: 3rem !important;
}

.u-pt30 {
  padding-top: 3rem !important;
}

.u-pb30 {
  padding-bottom: 3rem !important;
}

.u-pl30 {
  padding-left: 3rem !important;
}

.u-pr30 {
  padding-right: 3rem !important;
}

.u-mt25 {
  margin-top: 2.5rem !important;
}

.u-mb25 {
  margin-bottom: 2.5rem !important;
}

.u-ml25 {
  margin-left: 2.5rem !important;
}

.u-mr25 {
  margin-right: 2.5rem !important;
}

.u-pt25 {
  padding-top: 2.5rem !important;
}

.u-pb25 {
  padding-bottom: 2.5rem !important;
}

.u-pl25 {
  padding-left: 2.5rem !important;
}

.u-pr25 {
  padding-right: 2.5rem !important;
}

.u-mt20 {
  margin-top: 2rem !important;
}

.u-mb20 {
  margin-bottom: 2rem !important;
}

.u-ml20 {
  margin-left: 2rem !important;
}

.u-mr20 {
  margin-right: 2rem !important;
}

.u-pt20 {
  padding-top: 2rem !important;
}

.u-pb20 {
  padding-bottom: 2rem !important;
}

.u-pl20 {
  padding-left: 2rem !important;
}

.u-pr20 {
  padding-right: 2rem !important;
}

.u-mt15 {
  margin-top: 1.5rem !important;
}

.u-mb15 {
  margin-bottom: 1.5rem !important;
}

.u-ml15 {
  margin-left: 1.5rem !important;
}

.u-mr15 {
  margin-right: 1.5rem !important;
}

.u-pt15 {
  padding-top: 1.5rem !important;
}

.u-pb15 {
  padding-bottom: 1.5rem !important;
}

.u-pl15 {
  padding-left: 1.5rem !important;
}

.u-pr15 {
  padding-right: 1.5rem !important;
}

.u-mt10 {
  margin-top: 1rem !important;
}

.u-mb10 {
  margin-bottom: 1rem !important;
}

.u-ml10 {
  margin-left: 1rem !important;
}

.u-mr10 {
  margin-right: 1rem !important;
}

.u-pt10 {
  padding-top: 1rem !important;
}

.u-pb10 {
  padding-bottom: 1rem !important;
}

.u-pl10 {
  padding-left: 1rem !important;
}

.u-pr10 {
  padding-right: 1rem !important;
}

.u-mt5 {
  margin-top: 0.5rem !important;
}

.u-mb5 {
  margin-bottom: 0.5rem !important;
}

.u-ml5 {
  margin-left: 0.5rem !important;
}

.u-mr5 {
  margin-right: 0.5rem !important;
}

.u-pt5 {
  padding-top: 0.5rem !important;
}

.u-pb5 {
  padding-bottom: 0.5rem !important;
}

.u-pl5 {
  padding-left: 0.5rem !important;
}

.u-pr5 {
  padding-right: 0.5rem !important;
}

.u-mt0 {
  margin-top: 0rem !important;
}

.u-mb0 {
  margin-bottom: 0rem !important;
}

.u-ml0 {
  margin-left: 0rem !important;
}

.u-mr0 {
  margin-right: 0rem !important;
}

.u-pt0 {
  padding-top: 0rem !important;
}

.u-pb0 {
  padding-bottom: 0rem !important;
}

.u-pl0 {
  padding-left: 0rem !important;
}

.u-pr0 {
  padding-right: 0rem !important;
}

@media screen and (max-width: 1000px) {
  .u-mt120-tab {
    margin-top: 12rem !important;
  }
  .u-mb120-tab {
    margin-bottom: 12rem !important;
  }
  .u-ml120-tab {
    margin-left: 12rem !important;
  }
  .u-mr120-tab {
    margin-right: 12rem !important;
  }
  .u-pt120-tab {
    padding-top: 12rem !important;
  }
  .u-pb120-tab {
    padding-bottom: 12rem !important;
  }
  .u-pl120-tab {
    padding-left: 12rem !important;
  }
  .u-pr120-tab {
    padding-right: 12rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt110-tab {
    margin-top: 11rem !important;
  }
  .u-mb110-tab {
    margin-bottom: 11rem !important;
  }
  .u-ml110-tab {
    margin-left: 11rem !important;
  }
  .u-mr110-tab {
    margin-right: 11rem !important;
  }
  .u-pt110-tab {
    padding-top: 11rem !important;
  }
  .u-pb110-tab {
    padding-bottom: 11rem !important;
  }
  .u-pl110-tab {
    padding-left: 11rem !important;
  }
  .u-pr110-tab {
    padding-right: 11rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt100-tab {
    margin-top: 10rem !important;
  }
  .u-mb100-tab {
    margin-bottom: 10rem !important;
  }
  .u-ml100-tab {
    margin-left: 10rem !important;
  }
  .u-mr100-tab {
    margin-right: 10rem !important;
  }
  .u-pt100-tab {
    padding-top: 10rem !important;
  }
  .u-pb100-tab {
    padding-bottom: 10rem !important;
  }
  .u-pl100-tab {
    padding-left: 10rem !important;
  }
  .u-pr100-tab {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt90-tab {
    margin-top: 9rem !important;
  }
  .u-mb90-tab {
    margin-bottom: 9rem !important;
  }
  .u-ml90-tab {
    margin-left: 9rem !important;
  }
  .u-mr90-tab {
    margin-right: 9rem !important;
  }
  .u-pt90-tab {
    padding-top: 9rem !important;
  }
  .u-pb90-tab {
    padding-bottom: 9rem !important;
  }
  .u-pl90-tab {
    padding-left: 9rem !important;
  }
  .u-pr90-tab {
    padding-right: 9rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt80-tab {
    margin-top: 8rem !important;
  }
  .u-mb80-tab {
    margin-bottom: 8rem !important;
  }
  .u-ml80-tab {
    margin-left: 8rem !important;
  }
  .u-mr80-tab {
    margin-right: 8rem !important;
  }
  .u-pt80-tab {
    padding-top: 8rem !important;
  }
  .u-pb80-tab {
    padding-bottom: 8rem !important;
  }
  .u-pl80-tab {
    padding-left: 8rem !important;
  }
  .u-pr80-tab {
    padding-right: 8rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt75-tab {
    margin-top: 7.5rem !important;
  }
  .u-mb75-tab {
    margin-bottom: 7.5rem !important;
  }
  .u-ml75-tab {
    margin-left: 7.5rem !important;
  }
  .u-mr75-tab {
    margin-right: 7.5rem !important;
  }
  .u-pt75-tab {
    padding-top: 7.5rem !important;
  }
  .u-pb75-tab {
    padding-bottom: 7.5rem !important;
  }
  .u-pl75-tab {
    padding-left: 7.5rem !important;
  }
  .u-pr75-tab {
    padding-right: 7.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt70-tab {
    margin-top: 7rem !important;
  }
  .u-mb70-tab {
    margin-bottom: 7rem !important;
  }
  .u-ml70-tab {
    margin-left: 7rem !important;
  }
  .u-mr70-tab {
    margin-right: 7rem !important;
  }
  .u-pt70-tab {
    padding-top: 7rem !important;
  }
  .u-pb70-tab {
    padding-bottom: 7rem !important;
  }
  .u-pl70-tab {
    padding-left: 7rem !important;
  }
  .u-pr70-tab {
    padding-right: 7rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt65-tab {
    margin-top: 6.5rem !important;
  }
  .u-mb65-tab {
    margin-bottom: 6.5rem !important;
  }
  .u-ml65-tab {
    margin-left: 6.5rem !important;
  }
  .u-mr65-tab {
    margin-right: 6.5rem !important;
  }
  .u-pt65-tab {
    padding-top: 6.5rem !important;
  }
  .u-pb65-tab {
    padding-bottom: 6.5rem !important;
  }
  .u-pl65-tab {
    padding-left: 6.5rem !important;
  }
  .u-pr65-tab {
    padding-right: 6.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt60-tab {
    margin-top: 6rem !important;
  }
  .u-mb60-tab {
    margin-bottom: 6rem !important;
  }
  .u-ml60-tab {
    margin-left: 6rem !important;
  }
  .u-mr60-tab {
    margin-right: 6rem !important;
  }
  .u-pt60-tab {
    padding-top: 6rem !important;
  }
  .u-pb60-tab {
    padding-bottom: 6rem !important;
  }
  .u-pl60-tab {
    padding-left: 6rem !important;
  }
  .u-pr60-tab {
    padding-right: 6rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt55-tab {
    margin-top: 5.5rem !important;
  }
  .u-mb55-tab {
    margin-bottom: 5.5rem !important;
  }
  .u-ml55-tab {
    margin-left: 5.5rem !important;
  }
  .u-mr55-tab {
    margin-right: 5.5rem !important;
  }
  .u-pt55-tab {
    padding-top: 5.5rem !important;
  }
  .u-pb55-tab {
    padding-bottom: 5.5rem !important;
  }
  .u-pl55-tab {
    padding-left: 5.5rem !important;
  }
  .u-pr55-tab {
    padding-right: 5.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt50-tab {
    margin-top: 5rem !important;
  }
  .u-mb50-tab {
    margin-bottom: 5rem !important;
  }
  .u-ml50-tab {
    margin-left: 5rem !important;
  }
  .u-mr50-tab {
    margin-right: 5rem !important;
  }
  .u-pt50-tab {
    padding-top: 5rem !important;
  }
  .u-pb50-tab {
    padding-bottom: 5rem !important;
  }
  .u-pl50-tab {
    padding-left: 5rem !important;
  }
  .u-pr50-tab {
    padding-right: 5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt45-tab {
    margin-top: 4.5rem !important;
  }
  .u-mb45-tab {
    margin-bottom: 4.5rem !important;
  }
  .u-ml45-tab {
    margin-left: 4.5rem !important;
  }
  .u-mr45-tab {
    margin-right: 4.5rem !important;
  }
  .u-pt45-tab {
    padding-top: 4.5rem !important;
  }
  .u-pb45-tab {
    padding-bottom: 4.5rem !important;
  }
  .u-pl45-tab {
    padding-left: 4.5rem !important;
  }
  .u-pr45-tab {
    padding-right: 4.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt40-tab {
    margin-top: 4rem !important;
  }
  .u-mb40-tab {
    margin-bottom: 4rem !important;
  }
  .u-ml40-tab {
    margin-left: 4rem !important;
  }
  .u-mr40-tab {
    margin-right: 4rem !important;
  }
  .u-pt40-tab {
    padding-top: 4rem !important;
  }
  .u-pb40-tab {
    padding-bottom: 4rem !important;
  }
  .u-pl40-tab {
    padding-left: 4rem !important;
  }
  .u-pr40-tab {
    padding-right: 4rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt35-tab {
    margin-top: 3.5rem !important;
  }
  .u-mb35-tab {
    margin-bottom: 3.5rem !important;
  }
  .u-ml35-tab {
    margin-left: 3.5rem !important;
  }
  .u-mr35-tab {
    margin-right: 3.5rem !important;
  }
  .u-pt35-tab {
    padding-top: 3.5rem !important;
  }
  .u-pb35-tab {
    padding-bottom: 3.5rem !important;
  }
  .u-pl35-tab {
    padding-left: 3.5rem !important;
  }
  .u-pr35-tab {
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt30-tab {
    margin-top: 3rem !important;
  }
  .u-mb30-tab {
    margin-bottom: 3rem !important;
  }
  .u-ml30-tab {
    margin-left: 3rem !important;
  }
  .u-mr30-tab {
    margin-right: 3rem !important;
  }
  .u-pt30-tab {
    padding-top: 3rem !important;
  }
  .u-pb30-tab {
    padding-bottom: 3rem !important;
  }
  .u-pl30-tab {
    padding-left: 3rem !important;
  }
  .u-pr30-tab {
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt25-tab {
    margin-top: 2.5rem !important;
  }
  .u-mb25-tab {
    margin-bottom: 2.5rem !important;
  }
  .u-ml25-tab {
    margin-left: 2.5rem !important;
  }
  .u-mr25-tab {
    margin-right: 2.5rem !important;
  }
  .u-pt25-tab {
    padding-top: 2.5rem !important;
  }
  .u-pb25-tab {
    padding-bottom: 2.5rem !important;
  }
  .u-pl25-tab {
    padding-left: 2.5rem !important;
  }
  .u-pr25-tab {
    padding-right: 2.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt20-tab {
    margin-top: 2rem !important;
  }
  .u-mb20-tab {
    margin-bottom: 2rem !important;
  }
  .u-ml20-tab {
    margin-left: 2rem !important;
  }
  .u-mr20-tab {
    margin-right: 2rem !important;
  }
  .u-pt20-tab {
    padding-top: 2rem !important;
  }
  .u-pb20-tab {
    padding-bottom: 2rem !important;
  }
  .u-pl20-tab {
    padding-left: 2rem !important;
  }
  .u-pr20-tab {
    padding-right: 2rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt15-tab {
    margin-top: 1.5rem !important;
  }
  .u-mb15-tab {
    margin-bottom: 1.5rem !important;
  }
  .u-ml15-tab {
    margin-left: 1.5rem !important;
  }
  .u-mr15-tab {
    margin-right: 1.5rem !important;
  }
  .u-pt15-tab {
    padding-top: 1.5rem !important;
  }
  .u-pb15-tab {
    padding-bottom: 1.5rem !important;
  }
  .u-pl15-tab {
    padding-left: 1.5rem !important;
  }
  .u-pr15-tab {
    padding-right: 1.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt10-tab {
    margin-top: 1rem !important;
  }
  .u-mb10-tab {
    margin-bottom: 1rem !important;
  }
  .u-ml10-tab {
    margin-left: 1rem !important;
  }
  .u-mr10-tab {
    margin-right: 1rem !important;
  }
  .u-pt10-tab {
    padding-top: 1rem !important;
  }
  .u-pb10-tab {
    padding-bottom: 1rem !important;
  }
  .u-pl10-tab {
    padding-left: 1rem !important;
  }
  .u-pr10-tab {
    padding-right: 1rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt5-tab {
    margin-top: 0.5rem !important;
  }
  .u-mb5-tab {
    margin-bottom: 0.5rem !important;
  }
  .u-ml5-tab {
    margin-left: 0.5rem !important;
  }
  .u-mr5-tab {
    margin-right: 0.5rem !important;
  }
  .u-pt5-tab {
    padding-top: 0.5rem !important;
  }
  .u-pb5-tab {
    padding-bottom: 0.5rem !important;
  }
  .u-pl5-tab {
    padding-left: 0.5rem !important;
  }
  .u-pr5-tab {
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt0-tab {
    margin-top: 0rem !important;
  }
  .u-mb0-tab {
    margin-bottom: 0rem !important;
  }
  .u-ml0-tab {
    margin-left: 0rem !important;
  }
  .u-mr0-tab {
    margin-right: 0rem !important;
  }
  .u-pt0-tab {
    padding-top: 0rem !important;
  }
  .u-pb0-tab {
    padding-bottom: 0rem !important;
  }
  .u-pl0-tab {
    padding-left: 0rem !important;
  }
  .u-pr0-tab {
    padding-right: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt120-sp {
    margin-top: 12rem !important;
  }
  .u-mb120-sp {
    margin-bottom: 12rem !important;
  }
  .u-ml120-sp {
    margin-left: 12rem !important;
  }
  .u-mr120-sp {
    margin-right: 12rem !important;
  }
  .u-pt120-sp {
    padding-top: 12rem !important;
  }
  .u-pb120-sp {
    padding-bottom: 12rem !important;
  }
  .u-pl120-sp {
    padding-left: 12rem !important;
  }
  .u-pr120-sp {
    padding-right: 12rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt110-sp {
    margin-top: 11rem !important;
  }
  .u-mb110-sp {
    margin-bottom: 11rem !important;
  }
  .u-ml110-sp {
    margin-left: 11rem !important;
  }
  .u-mr110-sp {
    margin-right: 11rem !important;
  }
  .u-pt110-sp {
    padding-top: 11rem !important;
  }
  .u-pb110-sp {
    padding-bottom: 11rem !important;
  }
  .u-pl110-sp {
    padding-left: 11rem !important;
  }
  .u-pr110-sp {
    padding-right: 11rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt100-sp {
    margin-top: 10rem !important;
  }
  .u-mb100-sp {
    margin-bottom: 10rem !important;
  }
  .u-ml100-sp {
    margin-left: 10rem !important;
  }
  .u-mr100-sp {
    margin-right: 10rem !important;
  }
  .u-pt100-sp {
    padding-top: 10rem !important;
  }
  .u-pb100-sp {
    padding-bottom: 10rem !important;
  }
  .u-pl100-sp {
    padding-left: 10rem !important;
  }
  .u-pr100-sp {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt90-sp {
    margin-top: 9rem !important;
  }
  .u-mb90-sp {
    margin-bottom: 9rem !important;
  }
  .u-ml90-sp {
    margin-left: 9rem !important;
  }
  .u-mr90-sp {
    margin-right: 9rem !important;
  }
  .u-pt90-sp {
    padding-top: 9rem !important;
  }
  .u-pb90-sp {
    padding-bottom: 9rem !important;
  }
  .u-pl90-sp {
    padding-left: 9rem !important;
  }
  .u-pr90-sp {
    padding-right: 9rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt80-sp {
    margin-top: 8rem !important;
  }
  .u-mb80-sp {
    margin-bottom: 8rem !important;
  }
  .u-ml80-sp {
    margin-left: 8rem !important;
  }
  .u-mr80-sp {
    margin-right: 8rem !important;
  }
  .u-pt80-sp {
    padding-top: 8rem !important;
  }
  .u-pb80-sp {
    padding-bottom: 8rem !important;
  }
  .u-pl80-sp {
    padding-left: 8rem !important;
  }
  .u-pr80-sp {
    padding-right: 8rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt75-sp {
    margin-top: 7.5rem !important;
  }
  .u-mb75-sp {
    margin-bottom: 7.5rem !important;
  }
  .u-ml75-sp {
    margin-left: 7.5rem !important;
  }
  .u-mr75-sp {
    margin-right: 7.5rem !important;
  }
  .u-pt75-sp {
    padding-top: 7.5rem !important;
  }
  .u-pb75-sp {
    padding-bottom: 7.5rem !important;
  }
  .u-pl75-sp {
    padding-left: 7.5rem !important;
  }
  .u-pr75-sp {
    padding-right: 7.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt70-sp {
    margin-top: 7rem !important;
  }
  .u-mb70-sp {
    margin-bottom: 7rem !important;
  }
  .u-ml70-sp {
    margin-left: 7rem !important;
  }
  .u-mr70-sp {
    margin-right: 7rem !important;
  }
  .u-pt70-sp {
    padding-top: 7rem !important;
  }
  .u-pb70-sp {
    padding-bottom: 7rem !important;
  }
  .u-pl70-sp {
    padding-left: 7rem !important;
  }
  .u-pr70-sp {
    padding-right: 7rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt65-sp {
    margin-top: 6.5rem !important;
  }
  .u-mb65-sp {
    margin-bottom: 6.5rem !important;
  }
  .u-ml65-sp {
    margin-left: 6.5rem !important;
  }
  .u-mr65-sp {
    margin-right: 6.5rem !important;
  }
  .u-pt65-sp {
    padding-top: 6.5rem !important;
  }
  .u-pb65-sp {
    padding-bottom: 6.5rem !important;
  }
  .u-pl65-sp {
    padding-left: 6.5rem !important;
  }
  .u-pr65-sp {
    padding-right: 6.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt60-sp {
    margin-top: 6rem !important;
  }
  .u-mb60-sp {
    margin-bottom: 6rem !important;
  }
  .u-ml60-sp {
    margin-left: 6rem !important;
  }
  .u-mr60-sp {
    margin-right: 6rem !important;
  }
  .u-pt60-sp {
    padding-top: 6rem !important;
  }
  .u-pb60-sp {
    padding-bottom: 6rem !important;
  }
  .u-pl60-sp {
    padding-left: 6rem !important;
  }
  .u-pr60-sp {
    padding-right: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt55-sp {
    margin-top: 5.5rem !important;
  }
  .u-mb55-sp {
    margin-bottom: 5.5rem !important;
  }
  .u-ml55-sp {
    margin-left: 5.5rem !important;
  }
  .u-mr55-sp {
    margin-right: 5.5rem !important;
  }
  .u-pt55-sp {
    padding-top: 5.5rem !important;
  }
  .u-pb55-sp {
    padding-bottom: 5.5rem !important;
  }
  .u-pl55-sp {
    padding-left: 5.5rem !important;
  }
  .u-pr55-sp {
    padding-right: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt50-sp {
    margin-top: 5rem !important;
  }
  .u-mb50-sp {
    margin-bottom: 5rem !important;
  }
  .u-ml50-sp {
    margin-left: 5rem !important;
  }
  .u-mr50-sp {
    margin-right: 5rem !important;
  }
  .u-pt50-sp {
    padding-top: 5rem !important;
  }
  .u-pb50-sp {
    padding-bottom: 5rem !important;
  }
  .u-pl50-sp {
    padding-left: 5rem !important;
  }
  .u-pr50-sp {
    padding-right: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt45-sp {
    margin-top: 4.5rem !important;
  }
  .u-mb45-sp {
    margin-bottom: 4.5rem !important;
  }
  .u-ml45-sp {
    margin-left: 4.5rem !important;
  }
  .u-mr45-sp {
    margin-right: 4.5rem !important;
  }
  .u-pt45-sp {
    padding-top: 4.5rem !important;
  }
  .u-pb45-sp {
    padding-bottom: 4.5rem !important;
  }
  .u-pl45-sp {
    padding-left: 4.5rem !important;
  }
  .u-pr45-sp {
    padding-right: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt40-sp {
    margin-top: 4rem !important;
  }
  .u-mb40-sp {
    margin-bottom: 4rem !important;
  }
  .u-ml40-sp {
    margin-left: 4rem !important;
  }
  .u-mr40-sp {
    margin-right: 4rem !important;
  }
  .u-pt40-sp {
    padding-top: 4rem !important;
  }
  .u-pb40-sp {
    padding-bottom: 4rem !important;
  }
  .u-pl40-sp {
    padding-left: 4rem !important;
  }
  .u-pr40-sp {
    padding-right: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt35-sp {
    margin-top: 3.5rem !important;
  }
  .u-mb35-sp {
    margin-bottom: 3.5rem !important;
  }
  .u-ml35-sp {
    margin-left: 3.5rem !important;
  }
  .u-mr35-sp {
    margin-right: 3.5rem !important;
  }
  .u-pt35-sp {
    padding-top: 3.5rem !important;
  }
  .u-pb35-sp {
    padding-bottom: 3.5rem !important;
  }
  .u-pl35-sp {
    padding-left: 3.5rem !important;
  }
  .u-pr35-sp {
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt30-sp {
    margin-top: 3rem !important;
  }
  .u-mb30-sp {
    margin-bottom: 3rem !important;
  }
  .u-ml30-sp {
    margin-left: 3rem !important;
  }
  .u-mr30-sp {
    margin-right: 3rem !important;
  }
  .u-pt30-sp {
    padding-top: 3rem !important;
  }
  .u-pb30-sp {
    padding-bottom: 3rem !important;
  }
  .u-pl30-sp {
    padding-left: 3rem !important;
  }
  .u-pr30-sp {
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt25-sp {
    margin-top: 2.5rem !important;
  }
  .u-mb25-sp {
    margin-bottom: 2.5rem !important;
  }
  .u-ml25-sp {
    margin-left: 2.5rem !important;
  }
  .u-mr25-sp {
    margin-right: 2.5rem !important;
  }
  .u-pt25-sp {
    padding-top: 2.5rem !important;
  }
  .u-pb25-sp {
    padding-bottom: 2.5rem !important;
  }
  .u-pl25-sp {
    padding-left: 2.5rem !important;
  }
  .u-pr25-sp {
    padding-right: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt20-sp {
    margin-top: 2rem !important;
  }
  .u-mb20-sp {
    margin-bottom: 2rem !important;
  }
  .u-ml20-sp {
    margin-left: 2rem !important;
  }
  .u-mr20-sp {
    margin-right: 2rem !important;
  }
  .u-pt20-sp {
    padding-top: 2rem !important;
  }
  .u-pb20-sp {
    padding-bottom: 2rem !important;
  }
  .u-pl20-sp {
    padding-left: 2rem !important;
  }
  .u-pr20-sp {
    padding-right: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt15-sp {
    margin-top: 1.5rem !important;
  }
  .u-mb15-sp {
    margin-bottom: 1.5rem !important;
  }
  .u-ml15-sp {
    margin-left: 1.5rem !important;
  }
  .u-mr15-sp {
    margin-right: 1.5rem !important;
  }
  .u-pt15-sp {
    padding-top: 1.5rem !important;
  }
  .u-pb15-sp {
    padding-bottom: 1.5rem !important;
  }
  .u-pl15-sp {
    padding-left: 1.5rem !important;
  }
  .u-pr15-sp {
    padding-right: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt10-sp {
    margin-top: 1rem !important;
  }
  .u-mb10-sp {
    margin-bottom: 1rem !important;
  }
  .u-ml10-sp {
    margin-left: 1rem !important;
  }
  .u-mr10-sp {
    margin-right: 1rem !important;
  }
  .u-pt10-sp {
    padding-top: 1rem !important;
  }
  .u-pb10-sp {
    padding-bottom: 1rem !important;
  }
  .u-pl10-sp {
    padding-left: 1rem !important;
  }
  .u-pr10-sp {
    padding-right: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt5-sp {
    margin-top: 0.5rem !important;
  }
  .u-mb5-sp {
    margin-bottom: 0.5rem !important;
  }
  .u-ml5-sp {
    margin-left: 0.5rem !important;
  }
  .u-mr5-sp {
    margin-right: 0.5rem !important;
  }
  .u-pt5-sp {
    padding-top: 0.5rem !important;
  }
  .u-pb5-sp {
    padding-bottom: 0.5rem !important;
  }
  .u-pl5-sp {
    padding-left: 0.5rem !important;
  }
  .u-pr5-sp {
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt0-sp {
    margin-top: 0rem !important;
  }
  .u-mb0-sp {
    margin-bottom: 0rem !important;
  }
  .u-ml0-sp {
    margin-left: 0rem !important;
  }
  .u-mr0-sp {
    margin-right: 0rem !important;
  }
  .u-pt0-sp {
    padding-top: 0rem !important;
  }
  .u-pb0-sp {
    padding-bottom: 0rem !important;
  }
  .u-pl0-sp {
    padding-left: 0rem !important;
  }
  .u-pr0-sp {
    padding-right: 0rem !important;
  }
}
/*--------------------------
	margin マイナス調整用
--------------------------*/
.u-mt-70-negative {
  margin-top: -7rem !important;
}

@media screen and (max-width: 767px) {
  .u-mt-40-negative-sp {
    margin-top: -4rem !important;
  }
}
/*--------------------------
	Layout
--------------------------*/
/*----------------------------------------------------

	レイアウト設定のファイルです。
	グリッドレイアウトのスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
/*--------------------------
	グリッドシステム
--------------------------*/
.l-grid {
  display: flex;
  flex-wrap: wrap;
}
.l-grid_item {
  box-sizing: border-box;
  width: 16.667%;
}
.l-grid_item-1 {
  width: 8.33%;
}
.l-grid_item-2 {
  width: 16.667%;
}
.l-grid_item-3 {
  width: 25%;
}
.l-grid_item-4 {
  width: 33.333%;
}
.l-grid_item-5 {
  width: 41.666%;
}
.l-grid_item-6 {
  width: 50%;
}
.l-grid_item-7 {
  width: 58.333%;
}
.l-grid_item-8 {
  width: 66.666%;
}
.l-grid_item-9 {
  width: 75%;
}
.l-grid_item-10 {
  width: 83.33%;
}
.l-grid_item-11 {
  width: 91.666%;
}
.l-grid_item-12 {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l-grid_item-1-tab {
    width: 8.33%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-2-tab {
    width: 16.667%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-3-tab {
    width: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-4-tab {
    width: 33.333%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-5-tab {
    width: 41.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-6-tab {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-7-tab {
    width: 58.333%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-8-tab {
    width: 66.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-9-tab {
    width: 75%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-10-tab {
    width: 83.33%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-11-tab {
    width: 91.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-12-tab {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-1-sp {
    width: 8.33%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-2-sp {
    width: 16.667%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-3-sp {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-4-sp {
    width: 33.333%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-5-sp {
    width: 41.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-6-sp {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-7-sp {
    width: 58.333%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-8-sp {
    width: 66.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-9-sp {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-10-sp {
    width: 83.33%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-11-sp {
    width: 91.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-12-sp {
    width: 100%;
  }
}
.l-grid--ai-center {
  align-items: center;
}
.l-grid.l-gutter-s {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -1rem;
}
.l-grid.l-gutter-s > .l-grid_item {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.l-grid.l-gutter-m {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -2rem;
}
.l-grid.l-gutter-m > .l-grid_item {
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.l-grid.l-gutter-l {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-bottom: -4rem;
}
.l-grid.l-gutter-l > .l-grid_item {
  margin-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.l-grid.l-gutter-xl {
  margin-left: -3rem;
  margin-right: -3rem;
  margin-bottom: -6rem;
}
.l-grid.l-gutter-xl > .l-grid_item {
  margin-bottom: 6rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.l-grid.l-gutter-2l {
  margin-left: -4rem;
  margin-right: -4rem;
  margin-bottom: -8rem;
}
.l-grid.l-gutter-2l > .l-grid_item {
  margin-bottom: 8rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-s-tab {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1rem;
  }
  .l-grid.l-gutter-s-tab > .l-grid_item {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-m-tab {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }
  .l-grid.l-gutter-m-tab > .l-grid_item {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-l-tab {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -4rem;
  }
  .l-grid.l-gutter-l-tab > .l-grid_item {
    margin-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-s-sp {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1rem;
  }
  .l-grid.l-gutter-s-sp > .l-grid_item {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-m-sp {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }
  .l-grid.l-gutter-m-sp > .l-grid_item {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-l-sp {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -4rem;
  }
  .l-grid.l-gutter-l-sp > .l-grid_item {
    margin-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-grid.l-grid-mb0 > .l-grid_item {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1000px) {
  .l-grid.l-grid-mb0-tab > .l-grid_item {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-grid-mb0-sp > .l-grid_item {
    margin-bottom: 0 !important;
  }
}

/*----------------------------------------------------

	レイアウト設定のファイルです。
	レイアウトに関する汎用性の高いスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
.l-section {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin: 4rem 0;
  }
}

.l-inner {
  margin: 0 auto;
  width: 1000px;
}
@media screen and (max-width: 1200px) {
  .l-inner {
    width: 86%;
  }
}
@media screen and (max-width: 370px) {
  .l-inner {
    width: 88%;
  }
}

.l-flex {
  display: flex;
}
.l-flex--aic {
  align-items: center;
}

.l-pos-relative {
  position: relative;
}

.l-pos-center {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.l-clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.l-left {
  float: left;
}

.l-right {
  float: right;
}

/*--------------------------
	module
--------------------------*/
.header {
  background: #333;
  height: 8rem;
  position: relative;
  z-index: 999;
}
.header__hmbbtn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.header--clone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0%);
  transition: 0.25s;
}
.header--clone.hidden {
  transform: translateY(-100%);
}
.header--clone.is-top {
  transform: translateY(-100%) !important;
}

.menu-sp {
  background: #333;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.menu-sp.open {
  opacity: 1;
  pointer-events: auto;
}

.kouhen-btn {
  position: relative;
  display: inline-block;
  padding: 15px 60px 15px 40px;
  line-height: 1;
  color: #1E2678 !important;
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: 2px solid #1E2678 !important;
  border-radius: 60px;
  box-shadow: 0 6px 0 0 rgba(87, 141, 155, 0.12);
  transition: 0.25s ease;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .kouhen-btn {
    padding: 15px 45px 15px 25px;
    font-size: clamp(14px, 3.65vw, 28px) !important;
  }
}
.kouhen-btn::after {
  position: absolute;
  width: 15px;
  height: 15px;
  background: url("../img/kouhen-arrow.svg") no-repeat;
  background-size: contain;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  transition: 0.25s ease;
  content: "";
}
@media screen and (max-width: 767px) {
  .kouhen-btn::after {
    right: 22px;
  }
}
.kouhen-btn:hover {
  color: #fff !important;
  background-color: #1E2678;
  border-bottom: none;
  transform: translateY(3px);
  box-shadow: 0 0 0 0 rgba(87, 141, 155, 0.12);
}
.kouhen-btn:hover::after {
  filter: brightness(0) invert(1);
}

.pagetop {
  position: relative;
  display: inline-block;
  border-radius: 100%;
  transition: 0.25s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pagetop img {
    width: clamp(40px, 10.43vw, 80px) !important;
    height: auto;
  }
}
.pagetop a {
  display: block;
}
.pagetop:hover {
  opacity: 0.7 !important;
}

/*------------------------------
	ナビゲーション
------------------------------*/
/*------------------------------
	ページネーション
------------------------------*/
.wp-pagenavi {
  text-align: center;
  clear: both;
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 4rem 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  background-color: #fff;
  border: none !important;
  color: #999;
  font-size: 2rem;
  padding: 0.8rem 1.5rem !important;
  margin: 0 1.5rem !important;
  white-space: nowrap;
  border-radius: 50%;
  transition: 0.25s ease-in-out;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.4rem;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.5rem !important;
  }
}
.wp-pagenavi a:hover {
  color: #000;
}
.wp-pagenavi span.current {
  color: #000;
  font-weight: bold;
}

.wp-content-header {
  margin-bottom: 2rem;
}

/*------------------------------
	Content( 記事の本文 )
------------------------------*/
.wp-content {
  line-height: 1.8;
  margin-bottom: 8rem;
  /* img */
}
.wp-content:after {
  content: "";
  clear: both;
  display: block;
}
.wp-content strong {
  font-weight: bold;
}
.wp-content em {
  font-style: italic;
}
.wp-content blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 4rem;
  -webkit-margin-end: 4rem;
}
.wp-content .aligncenter {
  display: block;
  margin: 0 auto;
}
.wp-content .alignright {
  float: right;
  margin-left: 1.5rem !important;
}
.wp-content .alignleft {
  float: left;
  margin-right: 1.5rem !important;
}
.wp-content img[class*=wp-image-],
.wp-content img[class*=attachment-] {
  height: auto;
  max-width: 100%;
  margin: 1.5rem 0;
}
.wp-content .wp-caption {
  max-width: 100%;
}
.wp-content p {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.wp-content a {
  color: #000;
  text-decoration: underline;
}
.wp-content a:hover {
  text-decoration: none;
}
.wp-content ul {
  margin: 1em 0;
  padding-left: 4rem;
  list-style-type: disc;
}
.wp-content ul li {
  list-style-type: disc;
}
.wp-content ol {
  margin: 1em 0;
  padding-left: 4rem;
  list-style-type: decimal;
}
.wp-content ol li {
  list-style-type: decimal;
}
.wp-content blockquote {
  margin: 0 0 1em 0;
  padding: 50px 50px 40px;
  background: #f2f2f2;
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(248, 248, 248) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(248, 248, 248)));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#f8f8f8",GradientType=0 );
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  border: 1px solid #c1c1c1;
}
.wp-content blockquote:before {
  content: '"';
  font-style: italic;
  font-size: 4rem;
  font-weight: bold;
  line-height: 4rem;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #999;
}
.wp-content blockquote:after {
  content: '"';
  font-style: italic;
  font-size: 4rem;
  font-weight: bold;
  text-align: left;
  line-height: 6rem;
  width: 3rem;
  height: 3rem;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: #999;
}
.wp-content pre {
  margin: 1em 0;
  padding: 1em;
  color: #000000;
  white-space: pre-wrap; /* css-3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
/*--------------------------
	page
--------------------------*/
.slider-thumb {
  margin-top: clamp(23px, 4.6vw, 46px);
  width: 70%;
}
@media screen and (max-width: 1110px) {
  .slider-thumb {
    width: 80%;
  }
}
@media screen and (max-width: 1000px) {
  .slider-thumb {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .slider-thumb {
    margin: clamp(25px, 6.52vw, 50px) calc(63% - 50vw) 0;
    width: 82vw;
  }
}
.slider-thumb__box {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
@media screen and (max-width: 767px) {
  .slider-thumb__box {
    gap: clamp(5.5px, 1.43vw, 11px);
  }
}
.slider-thumb__btn {
  position: relative;
  width: clamp(37px, 7.4vw, 74px);
  height: clamp(37px, 7.4vw, 74px);
  border: 3px solid #A0E4D4;
  border-radius: 100%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .slider-thumb__btn {
    width: clamp(44px, 11.6vw, 89px);
    height: clamp(44px, 11.6vw, 89px);
    border: 1.5px solid #A0E4D4;
  }
}
.slider-thumb__btn p {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1 !important;
  font-family: "Roboto", sans-serif;
  color: #A0E4D4;
  font-size: clamp(6.5px, 1.3vw, 13px) !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .slider-thumb__btn p {
    font-size: clamp(8px, 2.09vw, 16px) !important;
  }
}
.slider-thumb__btn p span {
  line-height: 1 !important;
  font-size: clamp(16.5px, 3.3vw, 33px);
  font-weight: 300 !important;
}
@media screen and (max-width: 767px) {
  .slider-thumb__btn p span {
    font-size: clamp(20px, 5.21vw, 40px);
  }
}
.slider-thumb__triangle {
  width: clamp(9px, 1.9vw, 19px);
  height: clamp(9px, 1.9vw, 19px);
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #A0E4D4;
}
@media screen and (max-width: 767px) {
  .slider-thumb__triangle {
    width: clamp(10px, 2.4vw, 23px);
    height: clamp(10px, 2.4vw, 23px);
  }
}
.slider-thumb .swiper-wrapper {
  height: auto;
}
.slider-thumb .swiper-slide-thumb-active .slider-thumb__btn {
  border: 3px solid #2AA689;
}
@media screen and (max-width: 767px) {
  .slider-thumb .swiper-slide-thumb-active .slider-thumb__btn {
    border: 1.5px solid #2AA689;
  }
}
.slider-thumb .swiper-slide-thumb-active .slider-thumb__btn p {
  color: #2AA689;
}
.slider-thumb .swiper-slide-thumb-active .slider-thumb__triangle {
  background: #2AA689;
}

.step-swiper-container {
  position: relative;
  padding-top: clamp(30px, 6vw, 60px);
}
@media screen and (max-width: 767px) {
  .step-swiper-container {
    margin-top: 0;
    padding-top: clamp(30px, 7.82vw, 60px);
  }
}
.step-swiper-container .swiper-button-prev,
.step-swiper-container .swiper-button-next {
  width: clamp(56.5px, 11.3vw, 113px);
  height: clamp(56.5px, 11.3vw, 113px);
}
@media screen and (max-width: 1200px) {
  .step-swiper-container .swiper-button-prev,
  .step-swiper-container .swiper-button-next {
    width: clamp(56.5px, 9.42vw, 113px);
    height: clamp(56.5px, 9.42vw, 113px);
  }
}
@media screen and (max-width: 767px) {
  .step-swiper-container .swiper-button-prev,
  .step-swiper-container .swiper-button-next {
    top: 70%;
    width: clamp(56.5px, 14.73vw, 113px);
    height: clamp(56.5px, 14.73vw, 113px);
  }
}
.step-swiper-container .swiper-button-prev {
  left: -150px;
}
@media screen and (max-width: 767px) {
  .step-swiper-container .swiper-button-prev {
    left: -15%;
  }
}
.step-swiper-container .swiper-button-next {
  right: -150px;
}
@media screen and (max-width: 767px) {
  .step-swiper-container .swiper-button-next {
    right: -15%;
  }
}
.step-swiper-container .swiper-button-prev::after,
.step-swiper-container .swiper-button-next::after {
  margin: auto;
  width: clamp(56.5px, 11.3vw, 113px);
  height: clamp(56.5px, 11.3vw, 113px);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 1200px) {
  .step-swiper-container .swiper-button-prev::after,
  .step-swiper-container .swiper-button-next::after {
    width: clamp(56.5px, 9.42vw, 113px);
    height: clamp(56.5px, 9.42vw, 113px);
  }
}
@media screen and (max-width: 767px) {
  .step-swiper-container .swiper-button-prev::after,
  .step-swiper-container .swiper-button-next::after {
    width: clamp(50px, 13.04vw, 113px);
    height: clamp(50px, 13.04vw, 113px);
  }
}
.step-swiper-container .swiper-button-prev::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEzIiBoZWlnaHQ9IjExNCIgdmlld0JveD0iMCAwIDExMyAxMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01Ni41IDExMy4zNTNDMjUuMjk1OSAxMTMuMzUzIDAgODguMDU3MSAwIDU2Ljg1M0MwIDI1LjY0ODkgMjUuMjk1OSAwLjM1MzAyNyA1Ni41IDAuMzUzMDI3Qzg3LjcwNDEgMC4zNTMwMjcgMTEzIDI1LjY0ODkgMTEzIDU2Ljg1M0MxMTMgODguMDU3MSA4Ny43MDQxIDExMy4zNTMgNTYuNSAxMTMuMzUzWk02MS4wMzkxIDI5LjIxMzNDNjIuNDU4NiAyNy43OTM4IDY0Ljc2IDI3Ljc5MzggNjYuMTc5NSAyOS4yMTMzQzY3LjU5OSAzMC42MzI3IDY3LjU5OSAzMi45MzQyIDY2LjE3OTUgMzQuMzUzN0w0NS44NzYyIDU0LjY1N0M0NC41OTE5IDU1Ljk0MTIgNDMuODkyOCA1Ni42NTEzIDQzLjQ2OTYgNTcuMjA1OUw0My40NTM1IDU3LjIyNzJMNDMuNDY5NiA1Ny4yNDg1QzQzLjg5MjggNTcuODAzIDQ0LjU5MTkgNTguNTEzMSA0NS44NzYyIDU5Ljc5NzRMNjYuMTc5NSA4MC4xMDA3QzY3LjU5OSA4MS41MjAyIDY3LjU5OSA4My44MjE2IDY2LjE3OTUgODUuMjQxMUM2NC43NiA4Ni42NjA2IDYyLjQ1ODYgODYuNjYwNiA2MS4wMzkxIDg1LjI0MTFMNDAuNzM1OCA2NC45Mzc4TDQwLjU5NTkgNjQuNzk4QzM5LjUwNTggNjMuNzA4MiAzOC40NDYzIDYyLjY0OTIgMzcuNjkwMSA2MS42NTgxQzM2LjgzNzYgNjAuNTQwOCAzNi4wMzY0IDU5LjA5NDIgMzYuMDM2NCA1Ny4yMjcyQzM2LjAzNjQgNTUuMzYwMSAzNi44Mzc2IDUzLjkxMzYgMzcuNjkwMSA1Mi43OTYzQzM4LjQ0NjMgNTEuODA1MiAzOS41MDU4IDUwLjc0NjEgNDAuNTk1OSA0OS42NTY0TDQwLjczNTggNDkuNTE2Nkw2MS4wMzkxIDI5LjIxMzNaIiBmaWxsPSIjNEJCQ0QwIiBmaWxsLW9wYWNpdHk9IjAuMyIvPjwvc3ZnPg==");
}
.step-swiper-container .swiper-button-next::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEzIiBoZWlnaHQ9IjExNCIgdmlld0JveD0iMCAwIDExMyAxMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01Ni41IDExMy4zNTNDODcuNzA0MSAxMTMuMzUzIDExMyA4OC4wNTcxIDExMyA1Ni44NTNDMTEzIDI1LjY0ODkgODcuNzA0MSAwLjM1MzAyNyA1Ni41IDAuMzUzMDI3QzI1LjI5NTkgMC4zNTMwMjcgMCAyNS42NDg5IDAgNTYuODUzQzAgODguMDU3MSAyNS4yOTU5IDExMy4zNTMgNTYuNSAxMTMuMzUzWk01MS45NjA5IDI5LjIxMzNDNTAuNTQxNCAyNy43OTM4IDQ4LjI0IDI3Ljc5MzggNDYuODIwNSAyOS4yMTMzQzQ1LjQwMSAzMC42MzI3IDQ1LjQwMSAzMi45MzQyIDQ2LjgyMDUgMzQuMzUzN0w2Ny4xMjM4IDU0LjY1N0M2OC40MDgxIDU1Ljk0MTIgNjkuMTA3MiA1Ni42NTEzIDY5LjUzMDQgNTcuMjA1OUw2OS41NDY1IDU3LjIyNzJMNjkuNTMwNCA1Ny4yNDg1QzY5LjEwNzIgNTcuODAzIDY4LjQwODEgNTguNTEzMSA2Ny4xMjM4IDU5Ljc5NzRMNDYuODIwNSA4MC4xMDA3QzQ1LjQwMSA4MS41MjAyIDQ1LjQwMSA4My44MjE2IDQ2LjgyMDUgODUuMjQxMUM0OC4yNCA4Ni42NjA2IDUwLjU0MTQgODYuNjYwNiA1MS45NjA5IDg1LjI0MTFMNzIuMjY0MiA2NC45Mzc4TDcyLjQwNDEgNjQuNzk4QzczLjQ5NDIgNjMuNzA4MiA3NC41NTM3IDYyLjY0OTIgNzUuMzA5OSA2MS42NTgxQzc2LjE2MjQgNjAuNTQwOCA3Ni45NjM2IDU5LjA5NDIgNzYuOTYzNiA1Ny4yMjcyQzc2Ljk2MzYgNTUuMzYwMSA3Ni4xNjI0IDUzLjkxMzYgNzUuMzA5OSA1Mi43OTYzQzc0LjU1MzcgNTEuODA1MiA3My40OTQyIDUwLjc0NjEgNzIuNDA0MSA0OS42NTY0TDcyLjI2NDIgNDkuNTE2Nkw1MS45NjA5IDI5LjIxMzNaIiBmaWxsPSIjNEJCQ0QwIiBmaWxsLW9wYWNpdHk9IjAuMyIvPjwvc3ZnPg==");
}

.step-swiper {
  position: relative;
}
.step-swiper::before {
  position: absolute;
  width: clamp(192px, 38.4vw, 384px);
  height: clamp(192px, 38.4vw, 384px);
  background: linear-gradient(135deg, rgba(165, 232, 196, 0.4), rgba(158, 233, 205, 0.4), rgba(153, 234, 214, 0.4), rgba(149, 234, 223, 0.4), rgba(146, 234, 232, 0.4), rgba(145, 233, 240, 0.4), rgba(148, 233, 248, 0.4), rgba(152, 232, 255, 0.4));
  border-radius: 50%;
  top: 50%;
  right: 0.5%;
  transform: translateY(-50%);
  content: "";
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .step-swiper::before {
    width: clamp(192px, 32vw, 384px);
    height: clamp(192px, 32vw, 384px);
  }
}
@media screen and (max-width: 1060px) {
  .step-swiper::before {
    width: clamp(155px, 29.25vw, 310px);
    height: clamp(155px, 29.25vw, 310px);
  }
}
@media screen and (max-width: 767px) {
  .step-swiper::before {
    width: clamp(200px, 52.15vw, 400px);
    height: clamp(200px, 52.15vw, 400px);
    transform: translate(-50%, 0);
    top: auto;
    bottom: clamp(25px, 6.52vw, 50px);
    right: auto;
    left: 50%;
  }
}
.step-swiper__detail-area {
  width: clamp(181px, 32.2vw, 362px);
}
@media screen and (max-width: 767px) {
  .step-swiper__detail-area {
    width: 100%;
    text-align: center;
  }
}
.step-swiper__detail-area--05 {
  width: clamp(170px, 34vw, 340px);
}
@media screen and (max-width: 767px) {
  .step-swiper__detail-area--05 {
    width: 100%;
  }
}
.step-swiper__num {
  display: inline-block;
  padding: 6px 10px;
  letter-spacing: 1px;
  line-height: 1 !important;
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: #00AFDD;
  font-size: clamp(7px, 1.4vw, 16px) !important;
  font-weight: bold;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .step-swiper__num {
    padding: clamp(4px, 1.04vw, 8px) clamp(10px, 2.6vw, 20px);
    font-size: clamp(16px, 4.17vw, 32px) !important;
  }
}
@media screen and (max-width: 440px) {
  .step-swiper__num {
    font-size: clamp(14px, 3.17vw, 28px) !important;
  }
}
.step-swiper__ttl {
  margin-top: clamp(10px, 2vw, 20px);
  line-height: 1.4 !important;
  color: #1E2678;
  font-size: clamp(14px, 2.8vw, 28px) !important;
  font-weight: 600;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1200px) {
  .step-swiper__ttl {
    font-size: clamp(12px, 2.2vw, 24px) !important;
  }
}
@media screen and (max-width: 767px) {
  .step-swiper__ttl {
    margin-top: clamp(15px, 3.91vw, 30px);
    line-height: 1.4;
    font-size: clamp(20px, 5.22vw, 40px) !important;
  }
}
@media screen and (max-width: 440px) {
  .step-swiper__ttl {
    font-size: clamp(16px, 4.22vw, 30px) !important;
  }
}
.step-swiper__txt {
  margin-top: clamp(16px, 3.2vw, 32px);
  line-height: 1.7 !important;
  font-size: clamp(9px, 1.8vw, 18px) !important;
  font-weight: 500;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1100px) {
  .step-swiper__txt {
    font-size: clamp(8px, 1.4vw, 16px) !important;
  }
}
@media screen and (max-width: 767px) {
  .step-swiper__txt {
    margin-top: clamp(15px, 3.91vw, 30px);
    font-size: clamp(16px, 3.55vw, 24px) !important;
    text-align: left;
  }
}
@media screen and (max-width: 440px) {
  .step-swiper__txt {
    font-size: clamp(14px, 2.2vw, 22px) !important;
  }
}
.step-swiper__txt span {
  font-weight: bold;
}
.step-swiper__txt--blue {
  color: #1E2678;
  font-weight: bold;
}
.step-swiper__img {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .step-swiper__img {
    margin-top: auto;
  }
}
@media screen and (max-width: 767px) {
  .step-swiper__img img {
    width: 78% !important;
  }
}
.step-swiper .swiper-wrapper {
  height: auto;
}
.step-swiper .swiper-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  height: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .step-swiper .swiper-slide {
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(12px, 3.13vw, 24px);
    padding: 0;
  }
}

.fix-area {
  position: fixed;
  top: 55%;
  right: 0;
  width: 77px;
  background-color: #1E2678;
  border: solid 5px #1E2678;
  border-right: none;
  border-radius: 20px 0 0 20px;
  transform: translateY(-50%) !important;
  transition: all 0.25s ease;
  z-index: 50;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fix-area {
    margin: 0;
    width: 98%;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    border: solid 3px #1E2678;
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    transform: translateX(-50%) !important;
  }
}
.fix-area__head {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 35px 10px 45px 8px;
  background-color: #fff;
  border-radius: 15px 0 0 15px;
  transition: all 0.25s ease;
  cursor: pointer;
  pointer-events: none;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .fix-area__head {
    flex-direction: row;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 12px 12px 0 0;
  }
}
.fix-area__head::before {
  position: absolute;
  width: 50px;
  height: 48px;
  background: url("../img/fix-area_attention.svg") no-repeat;
  background-size: contain;
  top: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .fix-area__head::before {
    width: clamp(36px, 9.39vw, 72px);
    height: clamp(32px, 8.47vw, 65px);
    top: 50%;
    left: 8%;
  }
}
.fix-area__head::after {
  position: absolute;
  width: 29px;
  height: 29px;
  background: url("../img/fix-area_external.svg") no-repeat;
  background-size: contain;
  left: 50%;
  bottom: -4px;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .fix-area__head::after {
    width: clamp(29px, 7.56vw, 58px);
    height: clamp(29px, 7.56vw, 58px);
    top: 50%;
    left: auto;
    bottom: auto;
    right: 0;
  }
}
.fix-area__head:hover {
  background-color: #1E2678;
}
.fix-area__head:hover::after {
  filter: brightness(0) invert(1);
}
.fix-area__head:hover .fix-area__txt {
  color: #fff;
}
.fix-area__txt {
  font-size: clamp(9px, 1.6vw, 18px) !important;
  font-weight: 900;
  color: #1E2678;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .fix-area__txt {
    font-size: clamp(15px, 3.91vw, 30px) !important;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 450px) {
  .fix-area__txt {
    font-size: clamp(12.5px, 3.26vw, 25px) !important;
  }
}
.fix-area__accent {
  line-height: 1.2 !important;
  color: #EE7800 !important;
  font-size: clamp(13px, 2vw, 26px) !important;
  font-weight: 900;
  font-feature-settings: "palt";
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .fix-area__accent {
    text-align: center;
    font-size: clamp(20px, 5.22vw, 40px) !important;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 450px) {
  .fix-area__accent {
    font-size: clamp(18px, 3.91vw, 30px) !important;
  }
}
.fix-area.is-visible {
  opacity: 1 !important;
}
.fix-area.is-visible .fix-area__head {
  pointer-events: auto !important;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {
	}
	※CSSに展開した場合

----------------------------------------------------*/
.breadcrumbList-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  height: 100%;
}
.breadcrumbList-nav li {
  position: relative;
  display: inline-block;
  font-size: 17px;
}
.breadcrumbList-nav li::after {
  position: absolute;
  right: -17px;
  font-size: 17px;
  content: ">";
}
.breadcrumbList-nav li:last-child::after {
  content: "";
}
.breadcrumbList-nav li a {
  text-decoration: underline;
}
.breadcrumbList-nav li a:hover {
  opacity: 0.7;
}

.kouhen-bg {
  background: #BBEDFB url(../img/mv-bg.png) no-repeat 50% -5px;
  background-size: 100% 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kouhen-bg {
    background: #BBEDFB url(../img/mv-bg_sp.png) no-repeat 50% top;
    background-size: 100% 100%;
  }
}

.kouhen-mv {
  position: relative;
  z-index: 5;
}
.kouhen-mv__logo {
  margin-top: clamp(15px, 1vw, 30px);
  margin-bottom: -1vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .kouhen-mv__logo {
    margin-top: 3vw;
    margin-bottom: 18vw;
  }
}
.kouhen-mv__logo img {
  width: clamp(240px, 22vw, 400px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .kouhen-mv__logo img {
    width: clamp(223px, 58.15vw, 446px) !important;
  }
}
.kouhen-mv__img {
  position: relative;
  height: clamp(203px, 21.15vw, 406px);
}
@media screen and (min-width: 1920px) {
  .kouhen-mv__img {
    margin: 0 auto;
    max-width: 1920px;
  }
}
@media screen and (max-width: 767px) {
  .kouhen-mv__img {
    height: 78vw;
  }
}
.kouhen-mv__left {
  position: absolute;
  width: clamp(523.5px, 54.53vw, 1047px);
  top: 0;
  left: 24.5%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .kouhen-mv__left {
    width: 100%;
    top: 0;
    left: -4%;
    transform: scale(1);
  }
}
.kouhen-mv__left.is-image {
  width: clamp(576px, 60vw, 1152px);
}
@media screen and (max-width: 767px) {
  .kouhen-mv__left.is-image {
    width: 100%;
  }
}
.kouhen-mv__right {
  position: absolute;
  width: clamp(576px, 60vw, 1152px);
  top: 0;
  left: 72.5%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .kouhen-mv__right {
    width: 100%;
    top: auto;
    bottom: 0;
    left: 8%;
    transform: scale(1);
  }
}
.kouhen-mv__ttl {
  margin: clamp(12.5px, 1.3vw, 25px) auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .kouhen-mv__ttl {
    width: 90%;
    margin: 20vw auto 0;
  }
}
.kouhen-mv__ttl img {
  width: clamp(334px, 34.79vw, 668px);
  height: auto;
}
.kouhen-mv__route {
  position: absolute;
  width: 16.5%;
  top: 5%;
  left: 13.2%;
  transform: translateX(-50%);
}
.kouhen-mv__route img {
  width: clamp(153.5px, 15.99vw, 307px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .kouhen-mv__route {
    width: 44.5%;
    top: 15%;
    left: 29%;
    transform: translateX(-50%) scale(1.1);
  }
}
.kouhen-mv__time {
  position: absolute;
  width: 17.7%;
  bottom: 10%;
  left: 87.5%;
  transform: translateX(-50%);
}
.kouhen-mv__time img {
  width: clamp(152px, 15.83vw, 304px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .kouhen-mv__time {
    width: 44.05%;
    bottom: 16%;
    left: 74%;
    transform: translateX(-50%) scale(1.1);
  }
}

.kouhen-mv__left,
.kouhen-mv__right,
.kouhen-mv__route,
.kouhen-mv__time {
  opacity: 0;
}

.kouhen-nav {
  margin-top: clamp(67.5px, 7.03vw, 135px);
  padding-bottom: clamp(10px, 2vw, 20px);
}
@media screen and (max-width: 767px) {
  .kouhen-nav {
    margin-top: clamp(37.5px, 9.78vw, 75px) !important;
  }
}
.kouhen-nav__ttl {
  text-align: center;
  margin: 0 auto;
  width: clamp(281.5px, 56.3vw, 563px);
}
@media screen and (max-width: 767px) {
  .kouhen-nav__ttl {
    margin: 0 auto;
    width: 75%;
  }
}
.kouhen-nav__list {
  display: flex;
  gap: clamp(35px, 5vw, 70px);
  margin-top: clamp(17.5px, 3.5vw, 35px);
}
@media screen and (max-width: 767px) {
  .kouhen-nav__list {
    gap: clamp(22px, 5.86vw, 45px);
  }
}
.kouhen-nav__item {
  position: relative;
  display: flex;
  width: 33.3333333333%;
  border: 4px solid #00AFDD;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .kouhen-nav__item {
    border: 2px solid #00AFDD;
  }
}
.kouhen-nav__item:not(:last-child)::after {
  position: absolute;
  width: clamp(17px, 3.4vw, 34px);
  height: clamp(8.5px, 1.7vw, 17px);
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAzNiAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTggOS4zNzkxNUw1LjE5ODc5IDE2Ljc0MDRMNS4xOTg4IDIuMDE3OTNMMTggOS4zNzkxNVoiIGZpbGw9IndoaXRlIi8+PHBhdGggZD0iTTM1LjA2ODQgOS4zNzkxNUwyMi4yNjcyIDE2Ljc0MDRMMjIuMjY3MiAyLjAxNzkzTDM1LjA2ODQgOS4zNzkxNVoiIGZpbGw9IndoaXRlIi8+PC9zdmc+") no-repeat;
  background-size: contain;
  top: 50%;
  right: -26%;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .kouhen-nav__item:not(:last-child)::after {
    right: -33%;
    width: clamp(16px, 4.43vw, 34px);
    height: clamp(8.5px, 2.21vw, 17px);
  }
}
.kouhen-nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: clamp(10px, 2vw, 20px) 0 clamp(7.5px, 1.5vw, 15px);
  width: 100%;
  color: #00AFDD;
  background: #FFFFFF;
  font-size: clamp(12px, 2vw, 24px);
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none !important;
}
@media screen and (max-width: 1200px) {
  .kouhen-nav__item a {
    gap: 5px;
    padding: clamp(11px, 1.83vw, 22px) 0 clamp(6px, 0.92vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .kouhen-nav__item a {
    justify-content: flex-end;
    gap: clamp(5px, 1.3vw, 10px);
    padding: clamp(10px, 2.6vw, 20px) 0 clamp(5px, 1.3vw, 10px);
    line-height: 1.2;
    font-size: clamp(12px, 2.52vw, 24px);
    text-align: center;
  }
}
.kouhen-nav__item a:hover {
  background: rgba(200, 245, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .kouhen-nav__item svg {
    width: clamp(24px, 5.6vw, 46px);
    height: auto;
  }
}
.kouhen-nav__arrow {
  width: 13px;
  height: 7px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEzIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01LjY1NjU0IDcuMDcxTC0wLjAwMDQ2MTY0IDEuNDE0TDEuNDEzNTQgLTQuOTQ1NTFlLTA3TDYuMzYzNTQgNC45NUwxMS4zMTM1IC02LjE4MDc5ZS0wOEwxMi43Mjc1IDEuNDE0TDcuMDcwNTQgNy4wNzFDNi44ODMwMSA3LjI1ODQ3IDYuNjI4NyA3LjM2Mzc5IDYuMzYzNTQgNy4zNjM3OUM2LjA5ODM3IDcuMzYzNzkgNS44NDQwNyA3LjI1ODQ3IDUuNjU2NTQgNy4wNzFaIiBmaWxsPSIjMDBBRkREIi8+PC9zdmc+") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .kouhen-nav__arrow {
    width: clamp(13px, 3.39vw, 26px);
    height: clamp(7.5px, 1.96vw, 15px);
  }
}
.kouhen-nav__check {
  position: absolute;
  top: -13px;
  left: clamp(10px, 0.73vw, 14px);
  line-height: 1 !important;
  font-family: "Roboto", sans-serif;
  color: #00AFDD;
  font-size: clamp(11.5px, 2.3vw, 23px) !important;
  font-weight: 900;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
}
@media screen and (max-width: 767px) {
  .kouhen-nav__check {
    font-size: clamp(13px, 3.3vw, 26px) !important;
    left: clamp(2px, 0.52vw, 4px);
  }
}
@media screen and (max-width: 440px) {
  .kouhen-nav__check {
    top: -8px;
    font-size: clamp(11px, 2.4vw, 24px) !important;
  }
}

.kouhen-txt {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .kouhen-txt {
    margin-top: 0;
  }
}
.kouhen-txt p {
  padding-top: clamp(24px, 2.5vw, 48px);
  line-height: 1.8 !important;
  color: #1E2678;
  font-size: clamp(10px, 2vw, 20px) !important;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .kouhen-txt p {
    padding-top: clamp(25px, 6.51vw, 50px);
    font-size: clamp(14px, 3.5vw, 28px) !important;
    font-weight: 500;
  }
}
@media screen and (max-width: 440px) {
  .kouhen-txt p {
    font-size: clamp(12px, 3.2vw, 24px) !important;
  }
}
.kouhen-txt__img {
  margin: 0 auto;
  width: clamp(281.5px, 56.3vw, 563px);
}
@media screen and (max-width: 767px) {
  .kouhen-txt__img {
    margin: 0 auto;
    width: 100%;
  }
}

.kouhen-check {
  position: relative;
  padding: clamp(80.5px, 16.1vw, 161px) 0 clamp(40px, 4.17vw, 80px);
  background-color: #BBEDFB;
}
@media screen and (max-width: 767px) {
  .kouhen-check {
    padding: 0 0 clamp(60px, 15.65vw, 120px);
  }
}
.kouhen-check__deco {
  position: absolute;
  width: 100%;
  top: -2px;
  left: 0;
  z-index: -1;
}
.kouhen-check__deco img {
  width: 100%;
}
.kouhen-check__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .kouhen-check__dots {
    gap: clamp(5px, 1.3vw, 10px);
  }
}
.kouhen-check__dots > li {
  width: 9px;
  height: 9px;
  background: #1E2678;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .kouhen-check__dots > li {
    width: 4.5px;
    height: 4.5px;
  }
}
.kouhen-check__box {
  padding-top: clamp(18.5px, 3.7vw, 37px);
}
@media screen and (max-width: 767px) {
  .kouhen-check__box {
    padding-top: clamp(40px, 10.43vw, 80px);
  }
}

.kouhen-check-content {
  position: relative;
  margin-top: clamp(39px, 7.8vw, 78px);
  padding: clamp(38px, 7.6vw, 76px) clamp(50px, 10vw, 100px);
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 0 #5CADC2;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .kouhen-check-content {
    margin-top: clamp(65px, 16.95vw, 130px);
    padding: clamp(20px, 5.52vw, 50px);
    box-shadow: 0 7px 0 #5CADC2;
  }
}
.kouhen-check-content--03 {
  margin-top: clamp(44px, 8.8vw, 88px);
}
@media screen and (max-width: 767px) {
  .kouhen-check-content--03 {
    margin-top: clamp(105px, 27.38vw, 210px);
  }
}
@media screen and (max-width: 767px) {
  .kouhen-check-content--03 .kouhen-check-content__head {
    top: -4.5%;
  }
}
.kouhen-check-content__deco {
  position: absolute;
  width: 17%;
  height: auto;
  top: -8%;
  left: -4%;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__deco {
    transform: none;
    top: -7.5%;
    left: auto;
    right: 0;
    width: clamp(66px, 20vw, 153px);
  }
}
.kouhen-check-content__head {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: clamp(12px, 1.25vw, 24px);
  width: 100%;
  top: -3%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__head {
    gap: clamp(5px, 1.5vw, 20px);
    top: -2.5%;
  }
}
.kouhen-check-content__head--01 {
  top: -4%;
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__head--01 {
    top: -2.5%;
  }
}
.kouhen-check-content__congestion {
  width: clamp(167px, 33.4vw, 334px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__congestion {
    width: clamp(160px, 43.55vw, 334px);
  }
}
.kouhen-check-content__detour {
  width: clamp(169.5px, 33.9vw, 339px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__detour {
    width: clamp(150px, 42.2vw, 340px);
  }
}
.kouhen-check-content__realtime {
  width: clamp(291.5px, 58.3vw, 583px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__realtime {
    width: clamp(170px, 47.24vw, 370px);
  }
}
.kouhen-check-content__subhead {
  line-height: 1.5 !important;
  color: #1E2678;
  font-size: clamp(13px, 2.6vw, 26px) !important;
  font-weight: bold;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1200px) {
  .kouhen-check-content__subhead {
    font-size: clamp(12px, 2.4vw, 24px) !important;
  }
}
@media screen and (max-width: 1080px) {
  .kouhen-check-content__subhead {
    font-size: clamp(12px, 1.9vw, 22px) !important;
  }
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__subhead {
    font-size: clamp(13px, 3vw, 26px) !important;
  }
}
@media screen and (max-width: 440px) {
  .kouhen-check-content__subhead {
    font-size: clamp(12px, 2.8vw, 24px) !important;
  }
}
.kouhen-check-content__bubble {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__bubble {
    margin: 0 auto;
    width: 80%;
  }
}
.kouhen-check-content__ttl {
  position: relative;
  width: 85%;
  margin: clamp(16px, 3.2vw, 32px) auto 0;
  padding-left: clamp(22px, 4.4vw, 44px);
  line-height: 1.4 !important;
  font-size: clamp(22.5px, 4.5vw, 45px);
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .kouhen-check-content__ttl {
    font-size: clamp(22.5px, 3.5vw, 45px);
  }
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__ttl {
    margin: clamp(25px, 6.52vw, 50px) auto 0;
    font-size: clamp(20px, 5.21vw, 40px);
  }
}
.kouhen-check-content__ttl::before {
  position: absolute;
  width: clamp(22px, 4.4vw, 44px);
  height: clamp(22px, 4.4vw, 44px);
  top: 52.5%;
  left: 0;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDUiIGhlaWdodD0iNDUiIHZpZXdCb3g9IjAgMCA0NSA0NSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIyMi42MTQzIiBjeT0iMjIuMTYzOCIgcj0iMjIiIGZpbGw9IiNFNTAwNEYiLz48cGF0aCBkPSJNMTUuNzAwMiAyMy40MjFMMjAuNzI4OCAyOC40NDk2TDMzLjMwMDIgMTUuODc4MiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSI1LjAyODU3Ii8+PC9zdmc+") no-repeat;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__ttl::before {
    width: clamp(22px, 5.74vw, 44px);
    height: clamp(22px, 5.74vw, 44px);
  }
}
.kouhen-check-content__ttl--03 {
  width: 90%;
  padding-left: clamp(20px, 4vw, 40px);
  font-size: clamp(21px, 4.2vw, 42px);
}
@media screen and (max-width: 1200px) {
  .kouhen-check-content__ttl--03 {
    font-size: clamp(21px, 3.3vw, 42px);
  }
}
.kouhen-check-content__txt {
  margin: clamp(17.5px, 3.5vw, 34px) auto 0;
  width: 95%;
  line-height: 1.8 !important;
  font-size: clamp(10px, 2vw, 20px) !important;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .kouhen-check-content__txt {
    margin: clamp(25px, 6.52vw, 50px) auto 0;
    line-height: 1.6 !important;
    font-size: clamp(14px, 3.65vw, 28px) !important;
  }
}
.kouhen-check-content__txt--03 {
  width: 90%;
}

.kouhen-check-guide {
  margin-top: clamp(25px, 5vw, 50px);
  background-image: linear-gradient(to right, #1E2678 8px, transparent 8px);
  background-size: 15px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}
@media screen and (max-width: 767px) {
  .kouhen-check-guide {
    margin-top: clamp(25px, 6.52vw, 50px);
  }
}
.kouhen-check-guide__ttl {
  padding-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .kouhen-check-guide__ttl {
    padding-top: clamp(25px, 6.52vw, 50px);
  }
}
.kouhen-check-guide__ttl figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kouhen-check-guide__ttl figure figcaption {
  margin-top: 0;
  padding-left: 3.5em;
  font-size: 14px !important;
}
@media screen and (max-width: 767px) {
  .kouhen-check-guide__ttl figure figcaption {
    padding-left: 1.75em;
    font-size: clamp(10px, 1.82vw, 14px) !important;
  }
}

.kouhen-area {
  position: relative;
  padding-bottom: clamp(30px, 6vw, 60px);
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 56%, rgb(206, 243, 252) 100%);
}
@media screen and (max-width: 767px) {
  .kouhen-area {
    padding-bottom: clamp(41px, 10.69vw, 82px);
  }
}
.kouhen-area__deco02 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/kouhen-area_deco.png") no-repeat center;
  background-size: 100%;
  top: clamp(-80px, 16vw, -160px);
  left: 0;
  transform: translateY(-50%);
  content: "";
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .kouhen-area__deco02 {
    top: clamp(-60px, 15.65vw, -120px);
  }
}
@media screen and (max-width: 540px) {
  .kouhen-area__deco02 {
    top: clamp(-30px, 11.11vw, -60px);
  }
}
.kouhen-area__ttl {
  position: relative;
  margin: 0 auto;
  width: clamp(325.5px, 33.9vw, 651px);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kouhen-area__ttl {
    width: 80%;
  }
}
.kouhen-area__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(25px, 5vw, 50px);
}
@media screen and (max-width: 767px) {
  .kouhen-area__wrap {
    margin-top: clamp(20px, 5.22vw, 40px);
  }
}
.kouhen-area__btn {
  position: absolute;
  padding: 11px 24px;
  line-height: 1 !important;
  color: #1F1E1E;
  background-color: #fff;
  font-size: clamp(9px, 1.8vw, 18px) !important;
  border-radius: 50px;
  right: 13px;
  bottom: 17px;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  .kouhen-area__btn {
    padding: 5.5px 12px;
    font-size: clamp(12px, 3.13vw, 24px) !important;
    right: 9px;
    bottom: 9px;
  }
}
.kouhen-area__btn-wrap {
  position: relative;
  transition: all 0.25s ease;
}
.kouhen-area__btn-wrap:hover .kouhen-area__btn {
  color: #FFF;
  background-color: #1F1E1E;
}

.kouhen-pagetop {
  background-color: #cef3fc;
  background-blend-mode: lighten;
  background-size: cover;
}
.kouhen-pagetop__wrap {
  position: relative;
  height: 30px;
}
.kouhen-pagetop__inner {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 767px) {
  .kouhen-pagetop__inner {
    right: 4%;
  }
}

html[lang=en] .kouhen-check-content__ttl {
  font-size: clamp(17.5px, 3.5vw, 35px) !important;
}

html[lang=en] .kouhen-check-content__ttl--03 {
  font-size: clamp(17.5px, 3.5vw, 35px) !important;
}

html[lang=en] .fix-area__accent {
  font-size: clamp(10px, 2vw, 20px) !important;
}

html[lang=en] .fix-area__txt {
  font-size: clamp(10px, 1.6vw, 16px) !important;
}

@media screen and (max-width: 767px) {
  html[lang=en] .fix-area__head {
    flex-direction: column !important;
    gap: 0 !important;
  }
  html[lang=en] .fix-area__accent {
    font-size: clamp(14px, 3.91vw, 30px) !important;
  }
}
/*--------------------------
	animation
--------------------------*/
/*----------------------------------------------------
  リサイズ時のtransition停止
----------------------------------------------------*/
body.transition-stop * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/*----------------------------------------------------
  見出し アニメーション
----------------------------------------------------*/
.a-heading-A {
  opacity: 0;
  transition: 0.65s;
}
.a-heading-A.active {
  opacity: 1;
}

/*----------------------------------------------------
  anim-txts
*/
/*----------------------------------------------------
  使用方法：

<h1 class="as a-anim-txts">
  <span class="anim-txt anim-txt-0">テ</span>
  <span class="anim-txt anim-txt-1">キ</span>
  <span class="anim-txt anim-txt-2">ス</span>
  <span class="anim-txt anim-txt-3">ト</span>
</h1>
----------------------------------------------------*/
.a-anim-txts > span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
  -moz-transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
  transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
}
.a-anim-txts > span:nth-child(1) {
  transition: 0.65s 0.0625s;
}
.a-anim-txts > span:nth-child(2) {
  transition: 0.65s 0.125s;
}
.a-anim-txts > span:nth-child(3) {
  transition: 0.65s 0.1875s;
}
.a-anim-txts > span:nth-child(4) {
  transition: 0.65s 0.25s;
}
.a-anim-txts > span:nth-child(5) {
  transition: 0.65s 0.3125s;
}
.a-anim-txts > span:nth-child(6) {
  transition: 0.65s 0.375s;
}
.a-anim-txts > span:nth-child(7) {
  transition: 0.65s 0.4375s;
}
.a-anim-txts > span:nth-child(8) {
  transition: 0.65s 0.5s;
}
.a-anim-txts > span:nth-child(9) {
  transition: 0.65s 0.5625s;
}
.a-anim-txts > span:nth-child(10) {
  transition: 0.65s 0.625s;
}
.a-anim-txts > span:nth-child(11) {
  transition: 0.65s 0.6875s;
}
.a-anim-txts > span:nth-child(12) {
  transition: 0.65s 0.75s;
}
.a-anim-txts > span:nth-child(13) {
  transition: 0.65s 0.8125s;
}
.a-anim-txts > span:nth-child(14) {
  transition: 0.65s 0.875s;
}
.a-anim-txts > span:nth-child(15) {
  transition: 0.65s 0.9375s;
}
.a-anim-txts > span:nth-child(16) {
  transition: 0.65s 1s;
}
.a-anim-txts > span:nth-child(17) {
  transition: 0.65s 1.0625s;
}
.a-anim-txts > span:nth-child(18) {
  transition: 0.65s 1.125s;
}
.a-anim-txts > span:nth-child(19) {
  transition: 0.65s 1.1875s;
}
.a-anim-txts > span:nth-child(20) {
  transition: 0.65s 1.25s;
}
.a-anim-txts > span:nth-child(21) {
  transition: 0.65s 1.3125s;
}
.a-anim-txts > span:nth-child(22) {
  transition: 0.65s 1.375s;
}
.a-anim-txts > span:nth-child(23) {
  transition: 0.65s 1.4375s;
}
.a-anim-txts > span:nth-child(24) {
  transition: 0.65s 1.5s;
}
.a-anim-txts > span:nth-child(25) {
  transition: 0.65s 1.5625s;
}
.a-anim-txts > span:nth-child(26) {
  transition: 0.65s 1.625s;
}
.a-anim-txts > span:nth-child(27) {
  transition: 0.65s 1.6875s;
}
.a-anim-txts > span:nth-child(28) {
  transition: 0.65s 1.75s;
}
.a-anim-txts > span:nth-child(29) {
  transition: 0.65s 1.8125s;
}
.a-anim-txts > span:nth-child(30) {
  transition: 0.65s 1.875s;
}
.a-anim-txts > span:nth-child(31) {
  transition: 0.65s 1.9375s;
}
.a-anim-txts > span:nth-child(32) {
  transition: 0.65s 2s;
}
.a-anim-txts > span:nth-child(33) {
  transition: 0.65s 2.0625s;
}
.a-anim-txts > span:nth-child(34) {
  transition: 0.65s 2.125s;
}
.a-anim-txts > span:nth-child(35) {
  transition: 0.65s 2.1875s;
}
.a-anim-txts > span:nth-child(36) {
  transition: 0.65s 2.25s;
}
.a-anim-txts > span:nth-child(37) {
  transition: 0.65s 2.3125s;
}
.a-anim-txts > span:nth-child(38) {
  transition: 0.65s 2.375s;
}
.a-anim-txts > span:nth-child(39) {
  transition: 0.65s 2.4375s;
}
.a-anim-txts > span:nth-child(40) {
  transition: 0.65s 2.5s;
}
.a-anim-txts > span:nth-child(41) {
  transition: 0.65s 2.5625s;
}
.a-anim-txts > span:nth-child(42) {
  transition: 0.65s 2.625s;
}
.a-anim-txts > span:nth-child(43) {
  transition: 0.65s 2.6875s;
}
.a-anim-txts > span:nth-child(44) {
  transition: 0.65s 2.75s;
}
.a-anim-txts > span:nth-child(45) {
  transition: 0.65s 2.8125s;
}
.a-anim-txts > span:nth-child(46) {
  transition: 0.65s 2.875s;
}
.a-anim-txts > span:nth-child(47) {
  transition: 0.65s 2.9375s;
}
.a-anim-txts > span:nth-child(48) {
  transition: 0.65s 3s;
}
.a-anim-txts > span:nth-child(49) {
  transition: 0.65s 3.0625s;
}
.a-anim-txts > span:nth-child(50) {
  transition: 0.65s 3.125s;
}
.a-anim-txts > span:nth-child(51) {
  transition: 0.65s 3.1875s;
}
.a-anim-txts > span:nth-child(52) {
  transition: 0.65s 3.25s;
}
.a-anim-txts > span:nth-child(53) {
  transition: 0.65s 3.3125s;
}
.a-anim-txts > span:nth-child(54) {
  transition: 0.65s 3.375s;
}
.a-anim-txts > span:nth-child(55) {
  transition: 0.65s 3.4375s;
}
.a-anim-txts > span:nth-child(56) {
  transition: 0.65s 3.5s;
}
.a-anim-txts > span:nth-child(57) {
  transition: 0.65s 3.5625s;
}
.a-anim-txts > span:nth-child(58) {
  transition: 0.65s 3.625s;
}
.a-anim-txts > span:nth-child(59) {
  transition: 0.65s 3.6875s;
}
.a-anim-txts > span:nth-child(60) {
  transition: 0.65s 3.75s;
}
.a-anim-txts > span:nth-child(61) {
  transition: 0.65s 3.8125s;
}
.a-anim-txts > span:nth-child(62) {
  transition: 0.65s 3.875s;
}
.a-anim-txts > span:nth-child(63) {
  transition: 0.65s 3.9375s;
}
.a-anim-txts > span:nth-child(64) {
  transition: 0.65s 4s;
}
.a-anim-txts > span:nth-child(65) {
  transition: 0.65s 4.0625s;
}
.a-anim-txts > span:nth-child(66) {
  transition: 0.65s 4.125s;
}
.a-anim-txts > span:nth-child(67) {
  transition: 0.65s 4.1875s;
}
.a-anim-txts > span:nth-child(68) {
  transition: 0.65s 4.25s;
}
.a-anim-txts > span:nth-child(69) {
  transition: 0.65s 4.3125s;
}
.a-anim-txts > span:nth-child(70) {
  transition: 0.65s 4.375s;
}
.a-anim-txts > span:nth-child(71) {
  transition: 0.65s 4.4375s;
}
.a-anim-txts > span:nth-child(72) {
  transition: 0.65s 4.5s;
}
.a-anim-txts > span:nth-child(73) {
  transition: 0.65s 4.5625s;
}
.a-anim-txts > span:nth-child(74) {
  transition: 0.65s 4.625s;
}
.a-anim-txts > span:nth-child(75) {
  transition: 0.65s 4.6875s;
}
.a-anim-txts > span:nth-child(76) {
  transition: 0.65s 4.75s;
}
.a-anim-txts > span:nth-child(77) {
  transition: 0.65s 4.8125s;
}
.a-anim-txts > span:nth-child(78) {
  transition: 0.65s 4.875s;
}
.a-anim-txts > span:nth-child(79) {
  transition: 0.65s 4.9375s;
}
.a-anim-txts > span:nth-child(80) {
  transition: 0.65s 5s;
}
.a-anim-txts > span:nth-child(81) {
  transition: 0.65s 5.0625s;
}
.a-anim-txts > span:nth-child(82) {
  transition: 0.65s 5.125s;
}
.a-anim-txts > span:nth-child(83) {
  transition: 0.65s 5.1875s;
}
.a-anim-txts > span:nth-child(84) {
  transition: 0.65s 5.25s;
}
.a-anim-txts > span:nth-child(85) {
  transition: 0.65s 5.3125s;
}
.a-anim-txts > span:nth-child(86) {
  transition: 0.65s 5.375s;
}
.a-anim-txts > span:nth-child(87) {
  transition: 0.65s 5.4375s;
}
.a-anim-txts > span:nth-child(88) {
  transition: 0.65s 5.5s;
}
.a-anim-txts > span:nth-child(89) {
  transition: 0.65s 5.5625s;
}
.a-anim-txts > span:nth-child(90) {
  transition: 0.65s 5.625s;
}
.a-anim-txts > span:nth-child(91) {
  transition: 0.65s 5.6875s;
}
.a-anim-txts > span:nth-child(92) {
  transition: 0.65s 5.75s;
}
.a-anim-txts > span:nth-child(93) {
  transition: 0.65s 5.8125s;
}
.a-anim-txts > span:nth-child(94) {
  transition: 0.65s 5.875s;
}
.a-anim-txts > span:nth-child(95) {
  transition: 0.65s 5.9375s;
}
.a-anim-txts > span:nth-child(96) {
  transition: 0.65s 6s;
}
.a-anim-txts > span:nth-child(97) {
  transition: 0.65s 6.0625s;
}
.a-anim-txts > span:nth-child(98) {
  transition: 0.65s 6.125s;
}
.a-anim-txts > span:nth-child(99) {
  transition: 0.65s 6.1875s;
}
.a-anim-txts > span:nth-child(100) {
  transition: 0.65s 6.25s;
}
.a-anim-txts.active span {
  opacity: 1;
  -webkit-transform: translate(0, 0) skewX(0deg) scale(1, 1);
  -moz-transform: translate(0, 0) skewX(0deg) scale(1, 1);
  transform: translate(0, 0) skewX(0deg) scale(1, 1);
}

/*----------------------------------------------------
  slide-box-A
*/
/*----------------------------------------------------
  使用方法：

  <div class="as a-slide-box-A">
    <img src="./img/sample.jpg" alt="" />
  </div>
----------------------------------------------------*/
.a-slide-box-A {
  overflow: hidden;
  opacity: 1;
  position: relative;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
  transition: 0.65s;
}
.a-slide-box-A:after {
  background: #bbb; /* Old browsers */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: 0.65s 0.65s;
}
.a-slide-box-A img {
  transition: 0.65s 0.65s;
  -webkit-transform: scale(1.5, 1.5);
  -moz-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  transform-origin: center center;
}
.a-slide-box-A.a-slide-box-A--t {
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-A.a-slide-box-A--b {
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-A.a-slide-box-A--l {
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-A.a-slide-box-A--r {
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-A.active {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}
.a-slide-box-A.active:after {
  opacity: 0;
}
.a-slide-box-A.active img {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}

/*----------------------------------------------------
  slide-box-B
*/
/*----------------------------------------------------
  使用方法：

  <div class="as a-slide-box-B">
    <div class="slide-box-B__bg">
      <img src="" alt="">
    </div>
  </div>
----------------------------------------------------*/
.a-slide-box-B {
  display: block;
}
.a-slide-box-B img {
  vertical-align: middle;
}
.a-slide-box-B .slide-box-B__bg {
  background: #fff;
  display: inline-block;
  position: relative;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
  overflow: hidden;
}
.a-slide-box-B .slide-box-B__bg img {
  opacity: 0;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
  transition: all 0.65s;
}
.a-slide-box-B .slide-box-B__bg:after {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  margin-left: 100%;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  transition: all 0.65s;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg img {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg:after {
  margin: 100% 0 0 0;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg img {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg:after {
  margin: -100% 0 0 0;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg {
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg img {
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg:after {
  margin: 0 0 0 100%;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg img {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg:after {
  margin: 0 0 0 -100%;
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.a-slide-box-B.active .slide-box-B__bg img {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}
.a-slide-box-B.active .slide-box-B__bg:after {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*----------------------------------------------------
  スライダー
----------------------------------------------------*/
.slide-gallery {
  overflow: hidden;
}
.slide-gallery .slide-gallery__inner {
  height: 220px;
  width: 3840px;
  -webkit-animation: slide 60s linear infinite;
  -moz-animation: slide 60s linear infinite;
  animation: slide 60s linear infinite;
  position: relative;
}
@keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-1920px, 0, 0);
    -moz-transform: translate3d(-1920px, 0, 0);
    transform: translate3d(-1920px, 0, 0);
  }
}

/*--------------------------
	state
--------------------------*/
/*----------------------------------------------------

	JavaScriptなどの制御による状態の変化を表すスタイルの設定ファイルです。
	汎用的なstateのスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	is-* という接頭辞をつけることを推奨します。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関係 ファブレットはなし
--------------------------*/
@media screen and (max-width: 1000px) {
  .is-Pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-Tab {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  .is-Tab {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-Sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-Pc_Tab {
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .is-Tab_Sp {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
