@charset "UTF-8";
/*----------------------------------------------------

	読み込み専用のマスターファイルです。
	このファイルに直接スタイルを書き込まないでください。

----------------------------------------------------*/
/*--------------------------
	Base
--------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*----------------------------------------------------

	リセットCSS調整ファイルです。
	リセットCSSを調整、カスタマイズしたい場合に編集します。

----------------------------------------------------*/
/* ====================================================

	EXAMPLES FONT-SIZE
	------------------
	 77% = 9px
	 85% = 10px
	 93% = 11px
	100% = 12px
	108% = 13px
	116% = 14px
	124% = 15px
	131% = 16px
	139% = 17px
	147% = 18px
	154% = 19px
	162% = 20px
	170% = 21px
	177% = 22px
	185% = 23px
	193% = 24px
	200% = 25px
	---------------

====================================================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 52.5%;
  }
}

body {
  *font-size: small;
  *font: x-small;
  _font-size: 14px;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

img {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/*----------------------------------------------------

	サイトの基本設定のファイルです。
	最初の設定以外、基本変更することはありません。

----------------------------------------------------*/
/*--------------------------
	フォントの設定
--------------------------*/
/*--------------------------
	カラーの設定
--------------------------*/
/*--------------------------
	レイアウトの設定
--------------------------*/
/*--------------------------
	グリッドのガター
--------------------------*/
/*--------------------------
	レスポンシブの設定
--------------------------*/
/*--------------------------
  アニメーションの設定
--------------------------*/
/*----------------------------------------------------

	Mixinをまとめたファイルです。
	基本的に変更することはありません。
	Mixinを追加したい場合、_mixin_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関連
--------------------------*/
/*----------------------------------------------------

	自作関数をまとめたファイルです。
	基本的に変更することはありません。
	自作関数を追加したい場合、_functions_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*----------------------------------------------------

	初期設定を行うファイルです。
	デフォルトの設定を行う時以外、基本的に編集することはありません。

----------------------------------------------------*/
html {
  font-size: 10px;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83333vw; /* 10px / 1200px * 100 */
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 2.85714286vw; /* 10px / 350px * 100 */
  }
}

body {
  background: #fff;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  body {
    font-size: 1.4rem;
  }
}

.wrap {
  overflow: hidden;
  position: relative;
}

img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

sup {
  font-size: 50%;
  vertical-align: super;
}

/*--------------------------
	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: 700px) {
  .u-txt-xsmall {
    font-size: 1rem !important;
  }
}

.u-txt-small {
  font-size: 1.4rem !important;
}
@media screen and (max-width: 700px) {
  .u-txt-small {
    font-size: 1.2rem !important;
  }
}

.u-txt-medium {
  font-size: 1.8rem !important;
}
@media screen and (max-width: 700px) {
  .u-txt-medium {
    font-size: 1.4rem !important;
  }
}

.u-txt-large {
  font-size: 2rem !important;
}
@media screen and (max-width: 700px) {
  .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--number > li {
  counter-increment: number;
}
.u-ul-style--number > li::before {
  content: counter(number) ".";
}
.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: 1024px) {
  .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: 700px) {
  .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: 700px) {
  .u-mt-s {
    margin-top: 1rem !important;
  }
}

.u-mt-m {
  margin-top: 4rem !important;
}
@media screen and (max-width: 700px) {
  .u-mt-m {
    margin-top: 2rem !important;
  }
}

.u-mt-l {
  margin-top: 6rem !important;
}
@media screen and (max-width: 700px) {
  .u-mt-l {
    margin-top: 3rem !important;
  }
}

.u-mt-xl {
  margin-top: 8rem !important;
}
@media screen and (max-width: 700px) {
  .u-mt-xl {
    margin-top: 4rem !important;
  }
}

.u-mb-s {
  margin-bottom: 2rem !important;
}
@media screen and (max-width: 700px) {
  .u-mb-s {
    margin-bottom: 1rem !important;
  }
}

.u-mb-m {
  margin-bottom: 4rem !important;
}
@media screen and (max-width: 700px) {
  .u-mb-m {
    margin-bottom: 2rem !important;
  }
}

.u-mb-l {
  margin-bottom: 6rem !important;
}
@media screen and (max-width: 700px) {
  .u-mb-l {
    margin-bottom: 3rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 8rem !important;
}
@media screen and (max-width: 700px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 1024px) {
  .l-grid_item-1-tab {
    width: 8.33%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-2-tab {
    width: 16.667%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-3-tab {
    width: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-4-tab {
    width: 33.333%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-5-tab {
    width: 41.666%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-6-tab {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-7-tab {
    width: 58.333%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-8-tab {
    width: 66.666%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-9-tab {
    width: 75%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-10-tab {
    width: 83.33%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-11-tab {
    width: 91.666%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-12-tab {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-1-sp {
    width: 8.33%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-2-sp {
    width: 16.667%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-3-sp {
    width: 25%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-4-sp {
    width: 33.333%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-5-sp {
    width: 41.666%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-6-sp {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-7-sp {
    width: 58.333%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-8-sp {
    width: 66.666%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-9-sp {
    width: 75%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-10-sp {
    width: 83.33%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-11-sp {
    width: 91.666%;
  }
}
@media screen and (max-width: 700px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: 700px) {
  .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: 700px) {
  .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: 700px) {
  .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: 1024px) {
  .l-grid.l-grid-mb0-tab > .l-grid_item {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 700px) {
  .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: 700px) {
  .l-section {
    margin: 4rem 0;
  }
}

.l-inner {
  margin: 0 auto;
  width: 1080px;
}
@media screen and (max-width: 1200px) {
  .l-inner {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .l-inner {
    padding: 0 2.5rem;
    width: 100%;
  }
}

.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#header {
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0rem 0.6rem 0.4rem rgba(0, 0, 0, 0.16);
  box-shadow: 0rem 0.6rem 0.4rem rgba(0, 0, 0, 0.16);
  z-index: 999;
  position: fixed;
}

@media screen and (max-width: 700px) {
  header#header {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    -webkit-box-shadow: 0rem 0.4rem 0rem rgba(0, 0, 0, 0.16);
    box-shadow: 0rem 0.4rem 0rem rgba(0, 0, 0, 0.16);
  }
}
header#header .header_box_1 {
  display: flex;
  padding: 2.3rem 2rem 3.3rem 3.5rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 700px) {
  header#header .header_box_1 {
    padding: 1.2rem 1.5rem;
  }
}

.header_txt-img {
  background: #0090D4;
  padding: 1.4rem 0;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .header_txt-img {
    padding: 0.7rem 0;
  }
}

.header_txt-img-inner {
  width: 50rem;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .header_txt-img-inner {
    width: 90%;
    margin: 0 auto;
  }
}

.header__line {
  width: 100%;
  background: #992121;
  background: linear-gradient(90deg, #992121 0%, #D40101 100%);
  padding: 1rem 0;
}

.header__line-img {
  margin: 0 auto;
  text-align: center;
  width: 50rem;
}
@media screen and (max-width: 700px) {
  .header__line-img {
    width: 34rem;
  }
}

@media screen and (max-width: 700px) {
  .header_logo_1 {
    width: 50%;
  }
}

@media screen and (max-width: 700px) {
  .header_logo_2 {
    width: 40%;
  }
}

header#header .header_box_1 .header_box_1_1 {
  width: 15%;
}

@media screen and (max-width: 700px) {
  header#header .header_box_1 .header_box_1_1 .header_logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    width: 32.5rem;
    height: auto;
    margin: 0 auto;
    gap: 1rem;
  }
  header#header .header_box_1 .header_box_1_1 .header_logo a img.pc {
    width: auto;
  }
}
.header_box_1_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  width: 85%;
  justify-content: flex-end;
}

header#header .image_4 {
  width: 45rem;
  height: 6.5rem;
  background: url(../images/top/header_amazon.png) no-repeat left center/contain;
  position: absolute;
  bottom: -5.5rem;
  right: -25rem;
  z-index: 340;
}

.header_box_1_2_1,
.header_box_1_2_2 {
  position: relative;
}

header#header .header_box_1 .header_box_1_2_1 .link_1,
header#header .header_box_1 .header_box_1_2_2 .link_1 {
  position: relative;
  display: block;
  width: 26rem;
  height: 6rem;
  background: #189DFF;
  border-radius: 1.4rem;
  margin-right: 1rem;
  margin-right: 2.7rem;
  left: 0px;
  top: 0px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0.5rem #BDB9B8;
  box-shadow: 0px 0.5rem #BDB9B8;
  transition: 0.4s;
}
header#header .header_box_1 .header_box_1_2_1 .link_1:hover,
header#header .header_box_1 .header_box_1_2_2 .link_1:hover {
  -webkit-transform: translateY(0.8rem);
  transform: translateY(0.8rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
}

header#header .header_box_1 .header_box_1_2_1 .link_1 span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22rem;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
header#header .header_box_1 .header_box_1_2_1 .link_1 span img {
  width: 100%;
  height: auto;
  display: block;
}

.header#header .header_box_1 .header_box_1_2_1 .link_1 {
  -webkit-box-shadow: 0px 0.5rem #016FBF;
  box-shadow: 0px 0.5rem #016FBF;
}

.header#header .header_box_1 .header_box_1_2_1 .link_1:hover {
  -webkit-transform: translateY(0.8rem);
  transform: translateY(0.8rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #027DD8;
}

header#header .header_box_1 .header_box_1_2_1 .link_1 .image_3,
.header#header .header_box_1 .header_box_1_2_1 .link_1 .image_3 {
  height: 1.7rem;
  width: 24rem;
  background: url(../images/top/header_btn1_1_pc.svg) no-repeat left center/contain;
  position: absolute;
  top: -2.4rem;
  left: 0.9rem;
  transition: background-image 0.3s ease;
}

header#header .header_box_1 .header_box_1_2_2 {
  margin-right: 7px;
  width: 39rem;
}

header#header .header_box_1 .header_box_1_2_2 .link_1 {
  background: #1EAA39;
  width: 38rem;
  height: 8rem;
  display: flex;
  justify-content: end;
  align-items: center;
  -webkit-box-shadow: 0px 0.5rem #00913A;
  box-shadow: 0px 0.5rem #00913A;
  transition: 0.4s;
  padding-right: 2.7rem;
  position: relative;
}
header#header .header_box_1 .header_box_1_2_2 .link_1:hover {
  -webkit-transform: translateY(0.8rem);
  transform: translateY(0.8rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #00913A;
}

.header_box_1_2_2-span {
  width: 36rem;
  position: relative;
  top: -1rem;
  left: 2.3rem;
}

.header_box_1_2_2-span3,
.header_box_1_2_2-span2 {
  position: absolute;
  top: 53%;
  left: 18%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 11rem;
  transform-origin: center center;
}

.header_box_1_2_2-span3 {
  z-index: 1;
  opacity: 1;
}

.header_box_1_2_2-span2 {
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
}

header#header .header_box_1 .header_box_1_2_2 .link_1:hover .header_box_1_2_2-span2 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
header#header .header_box_1 .header_box_1_2_2 .link_1:hover .header_box_1_2_2-span3 {
  opacity: 0;
}

header#header .header_box_1 .header_box_1_2_2 .link_1 .header_box_color {
  color: #FFED00;
}

header#header .header_box_1 .header_box_1_2_2 .link_1 .image_1 {
  background: url("../images/top/header_btn2_2_pc.svg") no-repeat left center/contain;
  width: 55%;
}

@media screen and (max-width: 980px) {
  header#header .header_box_1 .header_box_1_2_2 .link_1 .image_3 {
    width: 12.4rem;
    height: 1.3rem;
  }
}
@media screen and (max-width: 870px) {
  header#header .header_box_1 .header_box_1_2_2 .link_1 .image_3 {
    width: 14rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 790px) {
  header#header .header_box_1 .header_box_1_2_2 .link_1 .image_3 {
    width: 13.4rem;
    height: 1.2rem;
  }
}
header#header .header_box_1 .header_box_1_2_2 .link_1:hover .image_1 {
  background: url("../images/top/header_btn2_2_hover_pc.svg") no-repeat left center/contain;
  width: 55%;
}

header#header .header_box_1 .header_box_1_2_2 .link_1::after {
  width: 27rem;
}

header#header .header_box_1 .header_box_1_2_3 {
  width: 22rem;
  padding-top: 0.6rem;
}

header#header .header_box_1 .header_box_1_2_3 a {
  pointer-events: all;
}

@media screen and (max-width: 700px) {
  .header_logo {
    width: auto;
  }
}

footer.footer {
  width: 100%;
  position: relative;
  z-index: 100;
  background: #fff;
  padding: 5rem 0;
}
@media screen and (max-width: 700px) {
  footer.footer {
    padding: 3rem 0 16rem;
  }
}

.footer-logo {
  width: 29rem;
}
@media screen and (max-width: 700px) {
  .footer-logo {
    width: 37vw;
  }
}

.footer_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 700px) {
  .footer_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 95%;
    margin: 0 auto;
  }
}
.footer_box .text_1 {
  font-size: 1.2rem;
}

.footer_sns {
  display: flex;
}
@media screen and (max-width: 700px) {
  .footer_sns {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-right: 0 auto;
    width: 53%;
  }
}

.footer_sns a {
  display: inline-block;
  width: 23%;
  margin-left: 3rem;
  transition: 0.2s;
}
@media screen and (max-width: 700px) {
  .footer_sns a {
    display: inline-block;
    width: 25%;
    margin-left: 1.5rem;
  }
}
.footer_sns a:hover {
  transform: scale(1.1);
  transition: 0.2s;
}

.footer_copy-sp {
  font-size: 0.9rem;
  text-align: center;
  padding-top: 1.5rem;
}

.sp_footer_menu_box {
  position: fixed;
  bottom: 13.3rem;
  height: 0rem;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.sp_footer_menu_box.scrolled {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.sp_footer_menu_box .sp_footer_menu_box_1 {
  background: url(../images/top/sp_footer_menu.png?ver=1.1) no-repeat center bottom/contain;
  height: 14rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  top: 300rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sp_footer_menu_box .sp_footer_menu_box_1.run {
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sp_footer_menu_box .sp_footer_menu_box_1 .sp_footer_menu_box_1_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  bottom: 6rem;
  position: absolute;
  width: 100%;
}

.sp_footer_menu_box .sp_footer_menu_box_1 .sp_footer_menu_box_1_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.sp_footer_menu_box .sp_footer_menu_box_1 .link_1 {
  height: 7.1rem;
  display: block;
  width: 100%;
}

.sp_footer_menu_box .sp_footer_menu_box_1 .link_2 {
  width: 50%;
  height: 6.4rem;
  display: block;
}

.sp_footer_menu_box .sp_footer_menu_box_1 .link_3 {
  width: 50%;
  height: 6.4rem;
  display: block;
}

.btn-A {
  display: inline-block;
  position: relative;
  padding: 3.5rem 10rem 3.5rem 4rem;
  bottom: 0;
  text-align: center;
  color: #F542A9;
  background-color: #FFFF00;
  box-shadow: 0px 0.5rem #B3455E;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 9px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}
.btn-A--blue {
  box-shadow: 0px 0.5rem #008F9B;
}
.btn-A span .cta-txt-default,
.btn-A span .cta-txt-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease;
}
.btn-A span .cta-txt-default {
  opacity: 1;
}
.btn-A span .cta-txt-hover {
  opacity: 0;
  pointer-events: none;
}
.btn-A:hover {
  transform: translateY(0.5rem);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #FFB601;
}
.btn-A:hover::before {
  background: url(../images/top/img-cta-txt-hov-arrow.svg) no-repeat;
  background-size: contain;
  right: 1rem;
}
.btn-A:hover span .cta-txt-default {
  opacity: 0;
}
.btn-A:hover span .cta-txt-hover {
  opacity: 1;
}

.btn-B {
  display: inline-block;
  position: relative;
  padding: 2.8rem 7rem 2.4rem 8rem;
  padding-left: 4rem;
  bottom: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: #00BF3B;
  -webkit-box-shadow: 0px 0.4rem rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0.4rem rgba(0, 0, 0, 0.5); /* 0.5 は50%の不透明度 */
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .btn-B {
    padding: 1.4rem 3rem 1.2rem 3rem;
    font-size: 1.6rem;
  }
}
.btn-B::before {
  position: absolute;
  width: 5rem;
  height: 5rem;
  background: url(../images/top/cta-arrow.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: 0rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 700px) {
  .btn-B::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.btn-B:hover {
  -webkit-transform: translateY(0.6rem);
  transform: translateY(0.6rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #019A2F;
  color: #FFED00;
}
@media screen and (max-width: 700px) {
  .btn-B:hover {
    -webkit-transform: none;
    transform: none;
    color: #fff;
    background-color: #E44DAE;
    -webkit-box-shadow: 0px 0.4rem #B3941A;
    box-shadow: 0px 0.4rem #B3941A;
  }
}
.btn-B span {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3rem;
  font-size: 3.2rem;
}
@media screen and (max-width: 700px) {
  .btn-B span {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}

.btn-C {
  display: inline-block;
  position: absolute;
  bottom: 1%;
  padding: 1.2rem 5rem 1.4rem 0rem;
  padding-left: 2rem;
  bottom: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: #00BF3B;
  -webkit-box-shadow: 0px 0.4rem #0086AE;
  box-shadow: 0px 0.4rem #0086AE;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .btn-C {
    padding: 1.3rem 2rem 1.7rem 2rem;
    width: 110%;
  }
}
.btn-C::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: url(../images/top/cta-arrow-online.svg) no-repeat;
  background-size: contain;
  top: 52%;
  right: 0.1rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  .btn-C::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.btn-C:hover::before {
  background: url(../images/top/cta-arrow-online-hov.svg) no-repeat;
  background-size: contain;
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 700px) {
  .btn-C:hover::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.btn-C:hover {
  -webkit-transform: translateY(0.6rem);
  transform: translateY(0.6rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #C43490;
  color: #FFED00;
}
@media screen and (max-width: 700px) {
  .btn-C:hover {
    -webkit-transform: none;
    transform: none;
    color: #fff;
    background-color: #00BF3B;
    -webkit-box-shadow: 0px 0.4rem #0086AE;
    box-shadow: 0px 0.4rem #0086AE;
  }
}
.btn-C span {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3rem;
  font-size: 2rem;
}
@media screen and (max-width: 700px) {
  .btn-C span {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}

.btn-D {
  display: inline-block;
  position: absolute;
  bottom: 0.7rem;
  padding: 1.7rem 3rem 1.7rem 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* text-align: center; */
  color: #fff;
  background-color: #1EAA39;
  -webkit-box-shadow: 0px 0.5rem #00913A;
  box-shadow: 0px 0.5rem #00913A;
  /* font-size: 2.5rem; */
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 34rem;
  line-height: 1.5;
  display: flex;
  justify-content: flex-end;
  border-radius: 1rem;
}
@media screen and (max-width: 700px) {
  .btn-D {
    padding: 1.5rem 0rem 1.5rem 5.5rem;
    border-radius: 0;
    justify-content: center;
    border-radius: 1rem;
    width: 100%;
    bottom: 1.8rem;
    line-height: 1.3;
  }
}
.btn-D:hover {
  -webkit-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #0E8E26;
}
@media screen and (max-width: 700px) {
  .btn-D:hover {
    -webkit-transform: none;
    transform: none;
    background-color: #1EAA39;
    -webkit-box-shadow: 0px 0.5rem #00913A;
    box-shadow: 0px 0.5rem #00913A;
  }
}
.btn-D span {
  width: 21rem;
}
@media screen and (max-width: 700px) {
  .btn-D span {
    letter-spacing: 0;
    width: 18rem;
  }
}

.btn-E {
  display: inline-block;
  position: absolute;
  bottom: 1%;
  padding: 2.5rem 6rem 2.5rem 0rem;
  padding-left: 0rem;
  bottom: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  color: #fff;
  background-color: #FF6412;
  -webkit-box-shadow: 0px 0.6rem #B3A902;
  box-shadow: 0px 0.6rem #B3A902;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 80px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 95%;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .btn-E {
    font-size: 1.3rem;
    padding: 1.5rem 3rem 1.3rem 3rem;
    justify-content: flex-start;
  }
}
.btn-E::before {
  content: "";
  position: absolute;
  width: 7rem;
  height: 7rem;
  background: url(../images/top/cta-arrow-tv.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: -3%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .btn-E::before {
    width: 4.5rem;
    height: 4.5rem;
    right: -4%;
  }
}
.btn-E:hover {
  -webkit-transform: translateY(0.6rem);
  transform: translateY(0.6rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #C43490;
  color: #FFED00;
}
@media screen and (max-width: 700px) {
  .btn-E:hover {
    -webkit-transform: none;
    transform: none;
    background-color: #FF6412;
    -webkit-box-shadow: 0px 0.6rem #B3A902;
    box-shadow: 0px 0.6rem #B3A902;
    color: #fff;
  }
}
.btn-E span {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3rem;
  font-size: 2.8rem;
}
@media screen and (max-width: 700px) {
  .btn-E span {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.btn-program {
  display: inline-block;
  position: absolute;
  bottom: 1%;
  padding: 1.5rem 5rem 1.5rem 5rem;
  bottom: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  color: #fff;
  background-color: #693200;
  -webkit-box-shadow: 0px 0.7rem #B3A902;
  box-shadow: 0px 0.7rem #B3A902;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .btn-program {
    padding: 1.3rem 0 1.3rem 0rem;
    justify-content: center;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0.5rem #B3A25B;
    box-shadow: 0px 0.5rem #B3A25B;
  }
}
.btn-program::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/top/viewing-program-icon.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: 4%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .btn-program::before {
    width: 1.5rem;
    height: 1.5rem;
    right: 2%;
  }
}
.btn-program:hover {
  -webkit-transform: translateY(0.7rem);
  transform: translateY(0.7rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #C43490;
  color: #FFED00;
}
@media screen and (max-width: 700px) {
  .btn-program:hover {
    -webkit-transform: none;
    transform: none;
    color: #fff;
    background-color: #693200;
    -webkit-box-shadow: 0px 0.5rem #B3A25B;
    box-shadow: 0px 0.5rem #B3A25B;
  }
}
.btn-program--02::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/top/viewing-program-icon-white.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: 4%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .btn-program--02::before {
    width: 1.5rem;
    height: 1.5rem;
    right: 2%;
  }
}
.btn-program span {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 700px) {
  .btn-program span {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}

.btn-smartphone {
  display: flex;
  padding: 2rem 3rem 2rem 3rem;
  bottom: 0;
  background-color: #8DC21F;
  -webkit-box-shadow: 0px 0.5rem #37AE02;
  box-shadow: 0px 0.5rem #37AE02;
  line-height: 1;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  width: 46rem;
  line-height: 1;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .btn-smartphone {
    width: 100%;
    padding: 1.4rem 2rem 1.4rem 2rem;
    border-radius: 10px;
  }
}
.btn-smartphone:hover {
  -webkit-transform: translateY(0.7rem);
  transform: translateY(0.7rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #00913A;
}
@media screen and (max-width: 700px) {
  .btn-smartphone:hover {
    -webkit-transform: none;
    transform: none;
    color: #fff;
    background-color: #7CCE57;
    -webkit-box-shadow: 0px 0.5rem #37AE02;
    box-shadow: 0px 0.5rem #37AE02;
  }
}

.wi-fi__home-style-btn-flex {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn-flex {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.wi-fi__home-style-btn01 {
  display: flex;
  justify-content: center;
  padding: 2.5rem 3rem 2.5rem 3rem;
  bottom: 0;
  background-color: #F89EF5;
  -webkit-box-shadow: 0px 0.5rem #E850E3;
  box-shadow: 0px 0.5rem #E850E3;
  line-height: 1;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  width: 38rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn01 {
    width: 85%;
    margin: 0 auto;
    padding: 1.5rem 3rem 1.5rem 3rem;
  }
}
.wi-fi__home-style-btn01 span {
  width: 53%;
}
.wi-fi__home-style-btn01:hover {
  -webkit-transform: translateY(0.7rem);
  transform: translateY(0.7rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #E850E3;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn01:hover {
    transform: none;
    background-color: #F89EF5;
    -webkit-box-shadow: 0px 0.5rem #E850E3;
    box-shadow: 0px 0.5rem #E850E3;
  }
}
.wi-fi__home-style-btn01::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/top/common-arrow.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: 4%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn01::before {
    width: 1.5rem;
    height: 1.5rem;
    right: 2%;
  }
}
.wi-fi__home-style-btn01:hover::before {
  right: 2%;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn01:hover::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.wi-fi__home-style-btn02 {
  display: flex;
  justify-content: center;
  padding: 2.5rem 3rem 2.5rem 3rem;
  bottom: 0;
  background-color: #7CCE57;
  -webkit-box-shadow: 0px 0.5rem #36AF00;
  box-shadow: 0px 0.5rem #36AF00;
  line-height: 1;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  width: 38rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn02 {
    width: 85%;
    margin: 0 auto;
    padding: 1.5rem 3rem 1.5rem 3rem;
  }
}
.wi-fi__home-style-btn02 span {
  width: 54%;
}
.wi-fi__home-style-btn02:hover {
  -webkit-transform: translateY(0.7rem);
  transform: translateY(0.7rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #36AF00;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn02:hover {
    -webkit-transform: none;
    transform: none;
    color: #fff;
    background-color: #7CCE57;
    -webkit-box-shadow: 0px 0.5rem #37AE02;
    box-shadow: 0px 0.5rem #37AE02;
  }
}
.wi-fi__home-style-btn02::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/top/common-arrow.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: 4%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn02::before {
    width: 1.5rem;
    height: 1.5rem;
    right: 2%;
  }
}
.wi-fi__home-style-btn02:hover::before {
  right: 2%;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn02:hover::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.sec04__viewing-btn {
  display: flex;
  padding: 2.5rem 0rem 2.5rem 2rem;
  bottom: 0;
  background-color: #8DC21F;
  -webkit-box-shadow: 0px 0.5rem #1FA939;
  box-shadow: 0px 0.5rem #1FA939;
  line-height: 1;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  width: 60rem;
  line-height: 1;
  margin: 0 auto;
  margin-bottom: 3rem;
  position: relative;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .sec04__viewing-btn {
    width: 100%;
    margin-bottom: 2.8rem;
    padding: 1.5rem 0rem 1.5rem 0rem;
    border-radius: 10px;
  }
}
.sec04__viewing-btn span {
  width: 85%;
}
@media screen and (max-width: 700px) {
  .sec04__viewing-btn span {
    width: 83%;
  }
}
.sec04__viewing-btn:hover {
  -webkit-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #1FA939;
}
@media screen and (max-width: 700px) {
  .sec04__viewing-btn:hover {
    -webkit-transform: none;
    transform: none;
    color: #fff;
    background-color: #8DC21F;
    -webkit-box-shadow: 0px 0.5rem #C67B01;
    box-shadow: 0px 0.5rem #C67B01;
  }
}

.btn-cable-smartphone {
  display: inline-block;
  position: absolute;
  bottom: 1%;
  padding: 2rem 7rem 2rem 2rem;
  bottom: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  color: #2BB576;
  background-color: #fff;
  -webkit-box-shadow: 0px 0.7rem #1FA939;
  box-shadow: 0px 0.7rem #1FA939;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 2rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 700px) {
  .btn-cable-smartphone {
    padding: 0.7rem 4rem 0.7rem 0rem;
    justify-content: center;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0.5rem #1FA939;
    box-shadow: 0px 0.5rem #1FA939;
    color: #2BB576;
    background-color: #fff;
  }
}
.btn-cable-smartphone::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/top/.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: 4%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .btn-cable-smartphone::before {
    width: 1.5rem;
    height: 1.5rem;
    right: 2%;
  }
}
.btn-cable-smartphone:hover {
  -webkit-transform: translateY(0.7rem);
  transform: translateY(0.7rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #FF85A0;
  color: #FFED00;
}
@media screen and (max-width: 700px) {
  .btn-cable-smartphone:hover {
    -webkit-transform: none;
    transform: none;
    color: #2BB576;
    background-color: #fff;
    -webkit-box-shadow: 0px 0.5rem #1E7F54;
    box-shadow: 0px 0.5rem #1E7F54;
  }
}
.btn-cable-smartphone:hover:before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/top/viewing-program-icon-hov.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: 4%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .btn-cable-smartphone:hover:before {
    background: url(../images/top/viewing-program-icon.svg) no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    right: 2%;
  }
}
.btn-cable-smartphone span {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
@media screen and (max-width: 700px) {
  .btn-cable-smartphone span {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}

.sec04__tv-btn-link {
  display: inline-block;
  position: absolute;
  bottom: 1%;
  padding: 2rem 2rem 2rem 2rem;
  bottom: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  background-color: #9E9E9F;
  -webkit-box-shadow: 0px 0.4rem #b4b4b4;
  box-shadow: 0px 0.4rem #b4b4b4;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 2rem;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 23rem;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 700px) {
  .sec04__tv-btn-link {
    padding: 1.1rem 1rem 1.1rem 1rem;
    width: 14.8rem;
    border-radius: 1rem;
  }
}
.sec04__tv-btn-link:hover {
  -webkit-transform: translateY(0.4rem);
  transform: translateY(0.4rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #FFF500;
  color: #FFED00;
}
@media screen and (max-width: 700px) {
  .sec04__tv-btn-link:hover {
    -webkit-transform: none;
    transform: none;
    background-color: #9E9E9F;
    -webkit-box-shadow: 0px 0.4rem #b4b4b4;
    box-shadow: 0px 0.4rem #b4b4b4;
  }
}

/*------------------------------
	ナビゲーション
------------------------------*/
/*------------------------------
	ページネーション
------------------------------*/
.wp-pagenavi {
  text-align: center;
  clear: both;
  margin: 6rem 0;
}
@media screen and (max-width: 700px) {
  .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: 700px) {
  .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+ */
}
.modal_box {
  display: none;
}

.modaal-container {
  border: 1rem solid #FFF500;
  border-radius: 2rem !important;
  width: 95rem;
}

@media screen and (max-width: 700px) {
  .modaal-container {
    width: 95%;
    border: 0.6rem solid #FFF500;
    border-radius: 1rem !important;
  }
}
.modaal-container .text_1 {
  font-size: 2rem;
  color: #064B9E;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.45;
  line-height: 1.3333333333;
}

@media screen and (max-width: 700px) {
  .modaal-container .text_1 {
    font-size: 3.4285714286vw;
    margin-bottom: 2.8vw;
  }
}
.modaal-container .text_2 {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 1.6rem;
}

.modaal-container .text_2.text_2-01 {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 1.6rem;
  overflow-y: scroll;
  height: 50rem;
}

.modaal-container .text_2 span {
  margin-left: -1.6rem;
}

@media screen and (max-width: 700px) {
  .modaal-container .text_2 {
    font-size: 1.1rem;
    line-height: 1.4;
    padding-left: 1.2rem;
  }
  .modaal-container .text_2.text_2-01 {
    font-size: 1.1rem;
    line-height: 1.4;
    padding-left: 1.2rem;
    overflow-y: auto;
    height: auto;
  }
  .modaal-container .text_2 span {
    margin-left: -1.2rem;
  }
}
.modaal-container .text_2_pl0 {
  padding-left: 0;
}

@media screen and (max-width: 700px) {
  .modaal-container .text_2_pl0 {
    padding-left: 0;
  }
}
.modaal-container .hr_1 {
  border: unset;
  border-top: 0.2rem solid #064B9E;
}

@media screen and (max-width: 700px) {
  .modaal-container .hr_1 {
    border-top: 0.2rem solid #064B9E;
  }
}
.modaal-content-container {
  height: 100%;
  padding: 3rem;
}

@media screen and (max-width: 700px) {
  .modaal-content-container {
    padding: 7vw 7vw !important;
  }
}
.modal_box_1 {
  height: 100%;
  overflow-y: auto;
}

@media screen and (max-width: 700px) {
  .modal_box_1 {
    max-height: 40rem;
  }
}
#modaal-close.modaal-close {
  position: absolute;
  width: 4rem;
  height: 4rem;
  background: url("../images/top/modal_parts_1.svg") no-repeat center/contain;
  top: 2rem;
  right: 2rem;
}

@media screen and (max-width: 700px) {
  #modaal-close.modaal-close {
    width: 11vw;
    height: 11vw;
    right: -1rem;
    top: -4vw;
  }
}
#modaal-close.modaal-close::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: unset;
  background: unset;
}

#modaal-close.modaal-close::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: unset;
  background: unset;
}

.modaal-overlay {
  opacity: 0.6 !important;
}

.modal_5_box {
  position: relative;
}

.modal_5_box::before {
  content: "";
  position: absolute;
  width: 109%;
  height: 55%;
  /* left: -68rem; */
  /* bottom: -66rem; */
  background-color: #FFF100;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  bottom: -37.9%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal_5_box .modal_5_img_01 {
  position: relative;
  z-index: 10;
  margin-top: -0.6rem;
  margin-bottom: -2rem;
  width: 92%;
}

.modal_5_box .modal_5_img_02 {
  width: 50%;
  position: absolute;
  top: -9rem;
  left: -9rem;
}

.modal_5_btn {
  position: absolute;
  right: -13rem;
  bottom: -16rem;
  width: 27rem;
  height: 27rem;
  border-radius: 50%;
  background-color: #8CB808;
  z-index: 10;
}

.modal_5_btn::after {
  content: "";
  position: absolute;
  top: -66px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 240px;
  height: 99px;
  background-image: url(../images/top/modal_5_img06.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.modal_5_btn .modaal-close {
  position: static;
}

.modal_5_btn .modaal-close:hover {
  background: #FC13E2;
}

.modal_5_btn .modaal-close::before {
  background-color: unset;
}

.modal_5_btn a {
  display: block;
  position: relative !important;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}

.modal_5_btn a .modal_5_btn_circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 247px;
  height: 247px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.modal_5_btn a .img_text {
  position: absolute;
  top: 68px;
  left: 67px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal_5_btn a .img_text img {
  width: 144px;
  text-align: center;
}

.modal_5_btn a .img_text .img_hov {
  display: none;
}

.modal_5_btn a .img_icon {
  position: absolute;
  bottom: -22px;
  left: 53px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 176px;
  height: 202px;
}

.modal_5_btn a:hover .modal_5_btn_circle {
  border-color: #FFF100;
}

.modal_5_btn a:hover .img_text {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal_5_btn a:hover .img_text .img {
  display: none;
}

.modal_5_btn a:hover .img_text .img_hov {
  display: block;
}

.modal_5_btn a:hover .img_icon {
  -webkit-transform: scale(1.1) translateY(10px);
  transform: scale(1.1) translateY(10px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #FC13E2 !important;
}

.modaal-close:after, .modaal-close:before {
  content: none !important;
}

.webshoudan_box {
  display: none;
}

@media screen and (max-width: 700px) {
  .modaal-wrapper.webshoudan_modal .modaal-content-container {
    padding: unset !important;
  }
}
.modaal-wrapper.webshoudan_modal .modaal-container {
  border: unset;
  background: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

@media screen and (max-width: 700px) {
  .modaal-wrapper.webshoudan_modal .modaal-container #modaal-close {
    width: 12vw;
    height: 12vw;
    background: url(../images/top/webshoudan_8_pc.svg) no-repeat center/contain;
    border-radius: unset;
    right: -4vw;
    top: -5vw;
  }
}
.modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 {
  position: relative;
}

.modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 .webshoudan_1 img {
  width: 1028rem;
  height: auto;
  position: relative;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  left: calc(50% + 0rem);
}

@media screen and (max-width: 700px) {
  .modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 .webshoudan_1 img {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 .link_1 {
    width: 211rem;
    height: 301rem;
    display: block;
    background: url("../images/top/webshoudan_5_pc.svg") no-repeat center/contain;
    position: absolute;
    right: -111rem;
    bottom: -38rem;
  }
  .modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 .link_1::before {
    content: "";
    position: absolute;
    width: 292rem;
    height: 376rem;
    background: url("../images/top/webshoudan_7_pc.svg") no-repeat center/contain;
    right: -73rem;
    bottom: 2rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 .link_1:hover::before {
    background: url("../images/top/webshoudan_7_hover_pc.svg") no-repeat center/contain;
    right: -70rem;
    bottom: 5rem;
  }
}
@media screen and (max-width: 700px) {
  .modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 .link_1 {
    width: 252rem;
    height: 58rem;
    position: absolute;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    left: calc(50% + 0rem);
    top: 280rem;
    display: block;
  }
}
.modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 .link_2 {
  width: 500rem;
  height: 141rem;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  left: calc(50% + 0rem);
  top: 538rem;
  display: block;
}
@media screen and (max-width: 700px) {
  .modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_1 .link_2 {
    width: 83%;
    height: 21%;
    position: absolute;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    left: calc(50% + 0rem);
    top: 72%;
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_2 img {
    width: 100%;
    height: auto;
    position: relative;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    left: calc(50% + 0rem);
  }
}
.modaal-wrapper.webshoudan_modal .modaal-container .webshoudan_box_2 .link_2 {
  width: 83%;
  height: 15%;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  left: calc(50% + 0rem);
  top: 80%;
  display: block;
}

.js-time_limited {
  display: none;
}

.js-time_limited_fire {
  display: block;
}

.js-time_limited_02 {
  display: none;
}

.js-time_limited_fire_02 {
  display: block;
}

.modal_tel_box {
  display: none;
}

.modaal-wrapper.tel_modal .modaal-container {
  border: unset;
  background: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.modaal-wrapper.tel_modal .modaal-content-container {
  padding: unset !important;
}

.modaal-wrapper.tel_modal img {
  width: 100%;
}

.modaal-wrapper.tel_modal .modal_tel_box_1 {
  position: relative;
}

.modaal-wrapper.tel_modal .modal_tel_box_1 .modal_tel_2 {
  position: absolute;
  bottom: 2.2rem;
  left: 2rem;
  width: 26rem;
  height: 9rem;
}

.modaal-wrapper.tel_modal .modal_tel_box_1 .modal_tel_3 {
  width: 75vw;
  height: 16vw;
  position: absolute;
  top: -8vw;
  left: 0rem;
}
@media screen and (max-width: 700px) {
  .modaal-wrapper.tel_modal .modal_tel_box_1 .modal_tel_3 {
    width: 60vw;
    height: 16vw;
    position: absolute;
    top: -4vw;
    left: 0rem;
  }
}

.modaal-wrapper.tel_modal .modal_tel_box_1 .link_1 {
  width: 27.4rem;
  height: 10.6rem;
  position: absolute;
  left: 1.4rem;
  bottom: 1rem;
  display: block;
}
@media screen and (max-width: 700px) {
  .modaal-wrapper.tel_modal .modal_tel_box_1 .link_1 {
    width: 87%;
    height: 16.3%;
    position: absolute;
    left: 5.4%;
    bottom: 5.3%;
    display: block;
  }
}

.modal_5_box {
  position: relative;
}

.modal_5_box::before {
  content: "";
  position: absolute;
  width: 95rem;
  height: 21.6rem;
  /* left: -68rem; */
  bottom: -14.8rem;
  /* bottom: -66rem; */
  background-color: #FFF100;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}

.modal_5_box .modal_5_img_01 {
  position: relative;
  z-index: 10;
  margin-top: -0.6rem;
  margin-bottom: -3rem;
  width: 90%;
}

.modal_5_box .modal_5_img_02 {
  width: 47rem;
  position: absolute;
  top: -9.6rem;
  left: -15rem;
}

.modal_5_btn {
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 21rem;
  height: 21rem;
  border-radius: 50%;
  background-color: #8CB808;
  z-index: 10;
}

.modal_5_btn::after {
  content: "";
  position: absolute;
  top: -27%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 89%;
  /* height: 99px; */
  background-image: url(../images/top/modal_5_img06.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.modal_5_btn .modaal-close {
  position: static;
}

.modal_5_btn .modaal-close:hover {
  background: #FC13E2;
}

.modal_5_btn .modaal-close::before {
  background-color: unset;
}

.modal_5_btn a {
  display: block;
  position: relative !important;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}

.modal_5_btn a .modal_5_btn_circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 19rem;
  height: 19rem;
  border: 0.3rem solid #ffffff;
  border-radius: 50%;
}

.modal_5_btn a .img_text {
  position: absolute;
  top: 5rem;
  left: 4.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal_5_btn a .img_text img {
  width: 12rem;
  text-align: center;
}

.modal_5_btn a .img_text .img_hov {
  display: none;
}

.modal_5_btn a .img_icon {
  position: absolute;
  bottom: -3rem;
  left: 4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 13rem;
  height: 16rem;
}

.modal_5_btn a:hover .modal_5_btn_circle {
  border-color: #FFF100;
}

.modal_5_btn a:hover .img_text {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal_5_btn a:hover .img_text .img {
  display: none;
}

.modal_5_btn a:hover .img_text .img_hov {
  display: block;
}

.modal_5_btn a:hover .img_icon {
  -webkit-transform: scale(1.1) translateY(10px);
  transform: scale(1.1) translateY(10px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #FC13E2 !important;
}

.modaal-close:after, .modaal-close:before {
  content: none !important;
}

.modal_tamago.modal-color {
  color: #04A0E9;
  cursor: pointer;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_tamago.modal-color {
    padding-bottom: 0.4rem;
  }
}

.link_hoshino-link {
  color: #0090D4;
}

.modal_present.modal-color {
  color: #0090D4;
  cursor: pointer;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_present.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_more.modal-color {
  color: #04A0E9;
  cursor: pointer;
  border-bottom: 1px solid #04A0E9;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 700px) {
  .modal_more.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_online.modal-color {
  color: #FFEF01;
  cursor: pointer;
  border-bottom: 1px solid #FFEF01;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_online.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_uni_01.modal-color {
  color: #D00505;
  cursor: pointer;
  border-bottom: 1px solid #D00505;
}
@media screen and (max-width: 700px) {
  .modal_uni_01.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_uni_02.modal-color {
  color: #D00505;
  cursor: pointer;
  border-bottom: 1px solid #D00505;
}
@media screen and (max-width: 700px) {
  .modal_uni_02.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_kai.modal_color {
  color: #04A0E9;
  cursor: pointer;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_kai.modal_color {
    padding-bottom: 0.4rem;
    color: #04A0E9;
  }
}

.modal_tv.modal-color {
  color: #FFF000;
  cursor: pointer;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_tv.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_cashback_03.modal-color {
  color: #FFFF00;
  cursor: pointer;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_cashback_03.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_cashback_02.modal-color {
  color: #FFFF00;
  cursor: pointer;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_cashback_02.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_cashback_01.modal-color {
  color: #EDF525;
  cursor: pointer;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_cashback_01.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal_waribiki.modal-color {
  color: #FFFF00;
  cursor: pointer;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_waribiki.modal-color {
    padding-bottom: 0.4rem;
  }
}

.modal-color.link-color {
  color: #FFEC00;
  cursor: pointer;
  border-bottom: 1px solid #FFEC00;
}

.modal_simulation.modal-color {
  color: #F05C7C;
  cursor: pointer;
  border-bottom: 1px solid #F05C7C;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 700px) {
  .modal_simulation.modal-color {
    padding-bottom: 0.4rem;
  }
}

.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  transition: 1s;
  transform: translateY(0);
  opacity: 1;
}

/* トリガー発火でis-activeを付与 */
.is-active .u-fade-type-up {
  transition: 1s;
  transform: translateY(0);
  opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2) {
  transition-delay: 0.3s;
}

.is-active .u-fade-type-up:nth-child(3) {
  transition-delay: 0.6s;
}

.is-active .u-fade-type-up:nth-child(4) {
  transition-delay: 0.9s;
}

.is-active .u-fade-type-up:nth-child(5) {
  transition-delay: 2.4s;
}

.is-active .u-fade-type-up:nth-child(6) {
  transition-delay: 3s;
}

/* フェードイン付与 */
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.js-fade02 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px); /* 上に位置を変更 */
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll02 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px); /* 元の位置に戻す */
}

.scroll_fadein {
  opacity: 0;
}

.fadein_animation_start {
  animation-name: fadein_animation;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadein_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(50px);
}

.slidedown {
  transform: translateY(-50px);
}

.slideright {
  transform: translateX(50px);
}

.slideleft {
  transform: translateX(-50px);
}

/*--------------------------
	page
--------------------------*/
.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
}
.animate-on-scroll.animate__animated {
  opacity: 1;
  visibility: visible;
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.gradation {
  position: relative;
  background: #FFE100;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 25rem 0 12rem;
}
.gradation::before {
  content: "";
  position: absolute;
  background: url(../images/top/mv-bg-resize.png);
  background-position: top;
  background-repeat: repeat;
  background-size: cover;
  margin-top: -31rem;
  width: 100%;
  height: 102%;
  transition: 0.4s;
}
@media (max-width: 1500px) {
  .gradation::before {
    background-image: url(../images/top/mv-bg.png);
    background-position: top;
    background-repeat: repeat;
    background-size: cover;
    margin-top: -31rem;
    width: 100%;
    height: 102%;
  }
}
@media screen and (max-width: 700px) {
  .gradation::before {
    background: url(../images/top/mv-bg-sp.png);
    background-position: top;
    background-repeat: repeat;
    background-size: cover;
    margin-top: -7rem;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 700px) {
  .gradation {
    padding: 7rem 0 3.2rem;
    width: 100%;
    height: 100%;
  }
}

.mv {
  position: relative; /* 画像の配置基準を作る */
  width: 100%; /* 横いっぱい */
  height: auto; /* 高さは内容に合わせる */
  z-index: 0;
}
.mv__heading01 {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  z-index: 20;
}
@media screen and (max-width: 700px) {
  .mv__heading01 {
    width: 110%;
    margin: 0 auto;
    display: block;
    position: relative;
    left: -4%;
  }
}
.mv__heading02 {
  width: 17%;
  display: block;
  position: absolute;
  left: 4%;
  top: 5%;
}
@media screen and (max-width: 700px) {
  .mv__heading02 {
    width: 29%;
    display: block;
    position: absolute;
    left: 38%;
    top: 1rem;
  }
}
.mv__heading03 {
  width: 22%;
  display: block;
  position: absolute;
  right: 3%;
  top: 0%;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .mv__heading03 {
    width: 36%;
    display: block;
    position: absolute;
    left: 64%;
    top: 4.8rem;
  }
}
.mv__heading04 {
  width: 90%;
  display: block;
  position: absolute;
  right: 4%;
  bottom: -36%;
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .mv__heading04 {
    margin: 0 calc(46% - 50vw);
    width: 106vw;
    display: block;
    position: relative;
    left: 0%;
    top: 1.5rem;
  }
}
.mv__img {
  position: absolute;
  width: 48%;
  bottom: -58%;
  right: -50%;
}
@media screen and (max-width: 700px) {
  .mv {
    background: none;
    width: 100%;
    padding: 0;
    margin-top: 5rem;
  }
}
.mv__bottom {
  width: 100%;
  bottom: -56%;
  display: block;
  margin-top: -21rem;
  position: relative;
  z-index: -1;
}
.mv__bottom img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mv__position-bg01 {
  width: 100%;
  position: relative;
  z-index: -1;
}
.mv__position-bg01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__bg {
  display: inline-block;
  width: 100%;
  margin-top: 16rem;
}
@media screen and (max-width: 700px) {
  .mv__bg {
    margin-top: -12rem;
    height: auto;
  }
}

.container {
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 10rem;
  padding: 4rem 0;
  position: relative;
}
.container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 11rem;
  top: 30%;
  background-color: #036EB7;
}
@media screen and (max-width: 700px) {
  .container::before {
    height: 4rem;
    top: 32%;
    background-color: #036EB7;
  }
}
@media screen and (max-width: 700px) {
  .container {
    padding: 2rem 0;
    margin-top: -3.5rem;
    margin-bottom: 3.5rem;
  }
}

.splide__list {
  height: auto;
}

.splide__slide {
  width: 100%;
  height: auto;
}

.splide__slide img {
  width: 100%;
  height: 17rem;
}
@media screen and (max-width: 700px) {
  .splide__slide img {
    height: auto;
  }
}

.sec__center {
  margin: 0 auto;
  margin-bottom: 5rem;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .sec__center {
    width: 100%;
    margin: 0;
    margin-bottom: 3.5rem;
  }
}
.sec__txt01 {
  width: 77%;
  margin: 0 auto 10rem;
}
@media screen and (max-width: 700px) {
  .sec__txt01 {
    width: 100%;
    margin: 0;
  }
}
.sec__txt02 {
  width: 57%;
  margin: 0 auto;
  margin-top: 17%;
}
@media screen and (max-width: 700px) {
  .sec__txt02 {
    width: 80%;
    margin: 0 auto;
    margin-top: 30%;
  }
}

.sec-anchor {
  position: relative;
}
.sec-anchor__img01 {
  position: relative;
  margin-bottom: 25rem;
  width: 107%;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img01 {
    width: 113%;
    left: -4%;
    margin-bottom: 6rem;
  }
}
.sec-anchor__img02 {
  position: relative;
  margin-bottom: 24rem;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img02 {
    width: 110%;
    left: -3%;
    margin-bottom: 6rem;
  }
}
.sec-anchor__img03 {
  position: relative;
  margin-bottom: 20rem;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img03 {
    width: 114%;
    left: -9%;
    margin-bottom: 9rem;
  }
}
.sec-anchor__img01-balloon {
  position: absolute;
  bottom: -33%;
  left: 14%;
  width: 69%;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img01-balloon {
    bottom: -18%;
    left: 3%;
    width: 90%;
  }
}
.sec-anchor__img01-balloon--02 {
  width: 75%;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img01-balloon--02 {
    bottom: -16%;
    left: 2%;
    width: 90%;
  }
}
.sec-anchor__img01-balloon--03 {
  bottom: -8%;
  width: 75%;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img01-balloon--03 {
    bottom: -17%;
    left: 7%;
    width: 90%;
  }
}
.sec-anchor__img01-balloon-btn {
  display: inline-block;
  position: absolute;
  display: block;
  width: 58rem;
  height: 7rem;
  background: #8DC21F;
  border-radius: 1.6rem;
  left: 14%;
  bottom: 13%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0.5rem #1FA939;
  box-shadow: 0px 0.5rem #1FA939;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img01-balloon-btn {
    width: 73%;
    height: 3.8rem;
    border-radius: 0.6rem;
    left: 14%;
    bottom: 13%;
  }
}
.sec-anchor__img01-balloon-btn span {
  width: 36rem;
  display: inline-block;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img01-balloon-btn span {
    width: 19rem;
  }
}
.sec-anchor__img01-balloon-btn--03 span {
  width: 31rem;
  display: inline-block;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img01-balloon-btn--03 span {
    width: 19rem;
  }
}
.sec-anchor__img01-balloon-btn:hover {
  -webkit-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #1FA939;
}
@media screen and (max-width: 700px) {
  .sec-anchor__img01-balloon-btn:hover {
    background: #8DC21F;
    transform: translateY(0rem);
    -webkit-box-shadow: 0px 0.5rem #1FA939;
    box-shadow: 0px 0.5rem #1FA939;
  }
}
.sec-anchor__link-img-wrap {
  position: absolute;
  top: 47%;
  left: 84%;
  transform: translate(-50%, -50%);
  width: 7rem;
  height: 2rem;
}
@media screen and (max-width: 700px) {
  .sec-anchor__link-img-wrap {
    position: absolute;
    top: 47%;
    left: 81.4%;
    transform: translate(-50%, -50%);
    width: 4.3rem;
    height: 2rem;
  }
}
.sec-anchor__link-txt {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.sec-anchor__link-txt.hover {
  opacity: 0;
}
.sec-anchor__link:hover .hover {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec-anchor__link:hover .hover {
    opacity: 0;
  }
}
.sec-anchor__link:hover .default {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .sec-anchor__link:hover .default {
    opacity: 1;
  }
}
.sec-anchor__circle {
  background-color: #fff;
  border: solid 2rem #8DC21F;
  border-radius: 50%;
  padding: 3.3%;
}
@media screen and (max-width: 700px) {
  .sec-anchor__circle {
    border: solid 1.2rem #8DC21F;
    border-radius: 50%;
    padding: 11% 0 10.5%;
    margin: 0px calc(7% - 50vw);
    width: 175vw;
  }
}
.sec-anchor__circle-heading {
  width: 65%;
  margin: 0 auto 5rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec-anchor__circle-heading {
    width: 56%;
    margin: 0 auto 2.2rem;
  }
}
.sec-anchor__present-number {
  position: absolute;
  right: -38%;
  top: 45%;
  width: 28rem;
}
@media screen and (max-width: 700px) {
  .sec-anchor__present-number {
    right: -5%;
    top: -5rem;
    width: 9rem;
  }
}
@media screen and (max-width: 700px) {
  .sec-anchor__present-date {
    position: absolute;
    left: -8%;
    top: -5rem;
    width: 9rem;
  }
}
.sec-anchor__circle-txt {
  width: 25%;
  margin: 4rem auto 0;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec-anchor__circle-txt {
    width: 21.4%;
    margin: 2rem auto 0;
  }
}
.sec-anchor__circle-img {
  position: absolute;
  width: 387%;
  bottom: -72.5%;
  left: 49.7%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .sec-anchor__circle-img {
    position: absolute;
    width: 37.4rem;
    bottom: -135.7%;
    left: 46.7%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
}
.sec-anchor .swiper-container {
  position: relative; /* 親要素に relative 必須 */
  width: 100%; /* 必要に応じて調整 */
  margin: 0 auto;
}
.sec-anchor .swiper {
  width: 50%;
}
@media screen and (max-width: 700px) {
  .sec-anchor .swiper {
    width: 41%;
  }
}
.sec-anchor .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sec-anchor .custom-swiper-button-prev,
.sec-anchor .custom-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 6rem; /* 矢印のサイズ調整 */
  height: 6rem;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 700px) {
  .sec-anchor .custom-swiper-button-prev,
  .sec-anchor .custom-swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
}
.sec-anchor .custom-swiper-button-prev {
  left: 10rem;
}
@media screen and (max-width: 700px) {
  .sec-anchor .custom-swiper-button-prev {
    left: 13.3rem;
  }
}
.sec-anchor .custom-swiper-button-next {
  right: 10rem;
}
@media screen and (max-width: 700px) {
  .sec-anchor .custom-swiper-button-next {
    right: 13.3rem;
  }
}
.sec-anchor .custom-swiper-button-prev img,
.sec-anchor .custom-swiper-button-next img {
  width: 100%;
  height: auto;
  display: block;
}

.sec02__main-heading01 {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 3vw;
  transform: translate(-50%, -50%);
  width: 6vw;
}
@media screen and (max-width: 700px) {
  .sec02__main-heading01 {
    position: static;
    transform: none;
    width: 22%;
    margin-bottom: 4rem;
  }
}
.sec02__main-heading02 {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 14vw;
  transform: translate(-50%, -50%);
  width: 20vw;
}
@media screen and (max-width: 700px) {
  .sec02__main-heading02 {
    position: static;
    transform: none;
    width: 65%;
    margin-bottom: 1rem;
  }
}
.sec02 .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 2rem;
}
@media (max-width: 700px) {
  .sec02 .content {
    flex-direction: column;
    height: auto;
  }
}
.sec02 .left-image-wrap,
.sec02 .right-image-wrap {
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.sec02 .left-image-wrap {
  transform: translateX(-100%);
  width: 70%;
}
.sec02 .right-image-wrap {
  transform: translateX(100%);
  width: 70%;
}
.sec02 .center-block {
  width: 37vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  top: 10vw;
}
@media screen and (max-width: 700px) {
  .sec02 .center-block {
    width: 80%;
    position: static;
    margin-bottom: 4rem;
  }
}
.sec02 .center-text-wrap {
  transform: translateY(10%);
  width: 60%;
}
.sec02__add-txt {
  text-align: center;
  margin: 5rem 0 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 700px) {
  .sec02__add-txt {
    text-align: left;
    margin: 2.5rem 0 0;
  }
}

.sec-course {
  background: url(../../assets/images/top/sec-course-bg.png);
  padding-bottom: 8rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 700px) {
  .sec-course {
    background: url(../../assets/images/top/sec-course-bg-sp.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    padding-bottom: 3rem;
    background-color: #036EB7;
  }
}
.sec-course__headings {
  position: relative;
}
.sec-course__heading {
  text-align: center;
  margin: 0 auto;
  padding: 10rem 0 0rem;
  width: 50rem;
  position: relative;
  bottom: -2.7rem;
}
@media screen and (max-width: 700px) {
  .sec-course__heading {
    padding: 5rem 0 0rem;
    width: 80%;
    position: static;
  }
}
.sec-course__heading-02 {
  margin: 0 auto;
  width: 18%;
  position: absolute;
  bottom: 51.3rem;
  z-index: 7;
  left: 26.8%;
}
@media screen and (max-width: 700px) {
  .sec-course__heading-02 {
    padding: 0;
    width: 31%;
    bottom: 18.3rem;
    z-index: 7;
    left: 10%;
    position: absolute;
  }
}
.sec-course__heading02 {
  text-align: center;
  margin: 0 auto;
  padding: 0 0 3rem;
  width: 100%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 700px) {
  .sec-course__heading02 {
    padding: 0;
    width: 100%;
    margin-top: -1rem;
  }
}
.sec-course__left {
  position: absolute;
  bottom: -11%;
  left: -11%;
  z-index: 5;
  width: 46%;
}
.sec-course__right {
  position: absolute;
  bottom: -16%;
  right: -7%;
  z-index: 5;
  width: 24%;
}

.sec03 {
  background-color: #036EB7;
  z-index: 30;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec03 {
    margin-top: 0;
    padding-top: 0;
  }
}
.sec03 section.select {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 700px) {
  .sec03 section.select {
    margin-top: 0;
  }
}
.sec03 section.select .select_box {
  position: relative;
  width: 100%;
}
.sec03 section.select .select_box .select_box_1 {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.sec03 section.select .select_box .select_box_2 .tab-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    gap: 1rem;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li {
  width: calc(50% - 2rem);
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  position: relative;
  height: 16rem;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li {
    width: calc(51% - 8px);
    height: 12rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 2rem 0 !important;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li:first-child {
  background: #F29600;
  border-radius: 0 2rem 0 0;
  padding: 3rem 0;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li:first-child {
    border-radius: 0 2rem 0 0;
    padding: 3rem 0;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li:last-child {
  background: #1FA939;
  border-radius: 2rem 0 0 0;
  padding: 3rem 0;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li:last-child {
    border-radius: 2rem 0 0 0;
    padding: 3rem 0;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li.active:hover .image_1_1 {
  display: none;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li.active:hover .image_1_1 {
    display: none;
  }
  .sec03 section.select .select_box .select_box_2 .tab-nav li.active:hover .image_1_1-sp {
    display: block;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li.active:hover .image_1_2 {
  display: block;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li.active:hover .image_1_2 {
    display: none;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav .image_1_2 {
  width: 18rem;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li.active .image_1_2 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li.active:hover .image_2_2 {
    display: none;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav .image_2_2 {
  width: 24rem;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li.active .image_2_2 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li.active:hover .image_2_1 {
    display: none;
  }
  .sec03 section.select .select_box .select_box_2 .tab-nav li.active:hover .image_2_1-sp {
    display: block;
    width: 33vw;
    margin: 0 auto;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li:hover:first-child {
  background: #FFEB03;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li:hover:first-child {
    background: #F29600;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li:hover:last-child {
  background: #FFEB03;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li:hover:last-child {
    background: #1FA939;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li.active:first-child {
  background: #F29600;
  padding: 3rem 0;
}
.sec03 section.select .select_box .select_box_2 .tab-nav li.tab-nav-b.active {
  background: #1FA939;
  padding: 3rem 0;
}
.sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_1_1 {
  display: none;
}
.sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_1_1-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_1_1 {
    display: none;
  }
  .sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_1_1-sp {
    display: block;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_1_2 {
  display: block;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_1_2 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_2_2 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_2_2 {
    display: none;
  }
  .sec03 section.select .select_box .select_box_2 .tab-nav li:hover .image_2_2-sp {
    display: block;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.sec03 section.select .select_box .select_box_2 .tab-nav li a .image_1_1 {
  height: auto;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li a .image_1_1 {
    width: 33vw;
  }
  .sec03 section.select .select_box .select_box_2 .tab-nav li a .image_1_1-sp {
    width: 15.6vw;
    position: relative;
    left: 6%;
  }
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li a .image_1_2 {
    width: 33vw;
  }
}
.sec03 section.select .select_box .select_box_2 .tab-nav li a .image_2_1 {
  height: auto;
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li a .image_2_1 {
    width: 36vw;
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .sec03 section.select .select_box .select_box_2 .tab-nav li a .image_2_2-sp {
    width: 28vw;
    position: relative;
    left: 7%;
  }
}
.sec03 .tab-content {
  position: relative;
  z-index: 3;
}
.sec03 .tab-nav-a,
.sec03 .tab-nav-b {
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec03 .tab-nav-a,
  .sec03 .tab-nav-b {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
}
.sec03 .tab-nav-a img,
.sec03 .tab-nav-b img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease;
  display: block;
}
.sec03 .tab-nav-a .img-yellow,
.sec03 .tab-nav-a .img-orange,
.sec03 .tab-nav-a .img-white,
.sec03 .tab-nav-b .img-yellow,
.sec03 .tab-nav-b .img-orange,
.sec03 .tab-nav-b .img-white {
  opacity: 0;
  z-index: 1;
}
.sec03 .tab-nav-a .img-white,
.sec03 .tab-nav-b .img-white {
  opacity: 1;
}
.sec03 .tab-nav-a:hover .img-white,
.sec03 .tab-nav-b:hover .img-white {
  opacity: 0;
}
.sec03 .tab-nav-a:hover .img-orange,
.sec03 .tab-nav-b:hover .img-orange {
  opacity: 1;
}
.sec03 .tab-nav-a.active .img-yellow,
.sec03 .tab-nav-b.active .img-yellow {
  opacity: 1;
}
.sec03 .tab-nav-a.active .img-orange,
.sec03 .tab-nav-a.active .img-white,
.sec03 .tab-nav-b.active .img-orange,
.sec03 .tab-nav-b.active .img-white {
  opacity: 0;
}
@media (max-width: 700px) {
  .sec03 .tab-nav-a:hover .img-white,
  .sec03 .tab-nav-b:hover .img-white {
    opacity: 1 !important;
  }
  .sec03 .tab-nav-a:hover .img-orange,
  .sec03 .tab-nav-b:hover .img-orange {
    opacity: 0 !important;
  }
}
.sec03 .waribiki-color {
  background-color: #F29600;
}
.sec03 .waribiki_body {
  padding: 15rem 0 0;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki_body {
    padding: 2rem 0 0;
    margin-bottom: -2.4rem;
  }
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki_body--02 {
    padding: 2rem 0 0;
    margin-bottom: -6.4rem;
  }
}
.sec03 .waribiki_body__line {
  padding-bottom: 2rem;
  width: 65%;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki_body__line {
    padding-bottom: 2.5rem;
    width: 75%;
  }
}
.sec03 .waribiki_body__line--02 {
  width: 72%;
}
.sec03 .waribiki_body__text {
  color: #000;
  text-align: center;
  letter-spacing: 0rem;
  padding: 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki_body__text {
    font-size: 1.1rem;
    padding: 0rem 0 0rem;
    text-align: left;
  }
}
.sec03 .waribiki_body__text02 {
  padding-top: 2.7rem;
  font-size: 1.2rem;
}
.sec03 .waribiki__img-flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki__img-flex {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0rem;
    flex-direction: column;
  }
}
.sec03 .waribiki__img01 {
  width: 120%;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki__img01 {
    width: 84%;
    position: relative;
  }
}
.sec03 .waribiki__img01--02 {
  width: 145%;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki__img01--02 {
    width: 85%;
  }
}
.sec03 .waribiki__img-balloon {
  position: absolute;
  top: 7%;
  width: 10rem;
  right: -23%;
}
.sec03 .waribiki__img02 {
  width: 58%;
  position: relative;
  left: 3rem;
  top: -5rem;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki__img02 {
    width: 28%;
    position: relative;
    left: 22rem;
    top: -19rem;
  }
}
.sec03 .waribiki__img02--02 {
  left: 6rem;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki__img02--02 {
    width: 58%;
    left: 17.6rem;
    top: -27rem;
  }
}
.sec03 .waribiki__text_01 {
  position: absolute;
  bottom: 17%;
  left: 1%;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki__text_01 {
    bottom: 20%;
    left: 0%;
  }
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki__text_01--02 {
    bottom: 32%;
    left: 5%;
  }
}
.sec03 .waribiki_form .form_result .waribiki_text_04 {
  position: static;
  font-size: 3.4rem;
  color: #EF5C7C;
  line-height: 0.6;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki_form .form_result .waribiki_text_04 {
    position: relative;
    /* width: 28rem; */
    font-size: 1.6rem;
    bottom: -0.6rem;
  }
}
.sec03.waribiki_form .waribiki_img_04 {
  width: 52vw;
  top: 22vw;
  left: 21vw;
  height: 20vw;
}
@media screen and (max-width: 700px) {
  .sec03 .waribiki_form .waribiki_img_04 {
    width: 172vw;
    top: 22vw;
    left: -11vw;
    height: 50vw;
  }
}

.waribiki__number {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  margin-bottom: 9rem;
}
@media screen and (max-width: 700px) {
  .waribiki__number {
    width: 80%;
    border-right: none;
    flex-direction: column;
    margin-bottom: 4.5rem;
  }
}

.waribiki__switching-wrap {
  padding-left: 0;
  background: #F0E1A5;
  padding-bottom: 1rem;
}
@media screen and (max-width: 700px) {
  .waribiki__switching-wrap {
    padding-left: 0;
  }
}

.waribiki__input-ann {
  font-size: 1.2rem;
}
@media screen and (max-width: 700px) {
  .waribiki__input-ann {
    text-align: center;
    padding: 0.7rem 0 2rem;
  }
}

.waribiki__calculator-wrap {
  padding: 4rem 8rem 0 8rem;
  position: relative;
  bottom: -1rem;
}
@media screen and (max-width: 700px) {
  .waribiki__calculator-wrap {
    padding: 1rem 3rem 0 2rem;
    position: relative;
    bottom: -0.3rem;
  }
}

.waribiki__calculator-list {
  display: flex;
  justify-content: center;
  gap: 0 3rem;
}
@media screen and (max-width: 700px) {
  .waribiki__calculator-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
}

.waribiki__calculator-item {
  width: 16%;
}
@media screen and (max-width: 700px) {
  .waribiki__calculator-item {
    width: 17%;
  }
}

.waribiki_calculator-cat {
  position: absolute;
  bottom: 0;
  right: -9%;
  z-index: 1;
  width: 24%;
}
@media screen and (max-width: 700px) {
  .waribiki_calculator-cat {
    position: absolute;
    bottom: 0;
    right: -14%;
    z-index: 1;
    width: 35%;
  }
}

.waribiki__switching-link {
  padding-left: 11rem;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #693200;
}
@media screen and (max-width: 700px) {
  .waribiki__switching-link {
    padding-left: 2rem;
    margin-top: 0.4rem;
    font-size: 1.1rem;
    color: #693200;
  }
}

.cashback {
  background-color: #1FA939;
  position: relative;
}
@media screen and (max-width: 700px) {
  .cashback {
    padding: 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .cashback .cashback_body__line {
    padding: 5rem 0 0;
  }
}
.cashback__heading {
  padding-top: 6.6rem;
}
@media screen and (max-width: 700px) {
  .cashback__heading {
    padding-top: 3rem;
  }
}
.cashback__or {
  padding: 4rem 0 3rem;
  text-align: center;
  margin: 0 auto;
  width: 10rem;
}
@media screen and (max-width: 700px) {
  .cashback__or {
    width: 5rem;
    padding: 2.5rem 0 3rem;
  }
}
.cashback__img01 {
  width: 75%;
  position: relative;
  top: 2rem;
  z-index: 0;
  top: 0vw;
  right: -11%;
  animation: bounceInRight;
  animation-duration: 1s;
}
@media screen and (max-width: 700px) {
  .cashback__img01 {
    width: 110%;
    position: relative;
    top: 2rem;
    z-index: 0;
    top: 7vw;
    right: 1%;
  }
}
.cashback__img02 {
  position: absolute;
  top: -6%;
  left: 106%;
  width: 27vw;
  z-index: 20;
}
@media screen and (max-width: 700px) {
  .cashback__img02 {
    position: absolute;
    top: 17%;
    left: 105%;
    width: 45vw;
    z-index: 20;
  }
}
.cashback__img03 {
  position: absolute;
  top: -28%;
  left: 197%;
  width: 24vw;
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .cashback__img03 {
    position: absolute;
    top: -5%;
    left: 94%;
    width: 54vw;
    z-index: 0;
  }
}
.cashback__img04 {
  position: relative;
  z-index: 40;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .cashback__img04 {
    width: 100%;
    /* left: 50%; */
    z-index: 20;
  }
}
.cashback__img05 {
  position: relative;
  z-index: 40;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .cashback__img05 {
    width: 100%;
    /* left: 50%; */
    /* -webkit-transform: translateX(-50%); */
    /* transform: translateX(-50%); */
    z-index: 20;
  }
}
.cashback__img06 {
  position: relative;
  z-index: 40;
  width: 60%;
  padding-top: 3rem;
  margin: 0 auto;
  padding: 5vw 0;
}
@media screen and (max-width: 700px) {
  .cashback__img06 {
    width: 85%;
    top: 5.5rem;
    z-index: 20;
  }
}
.cashback__img07 {
  position: relative;
  z-index: 40;
  width: 75%;
  margin: 0 auto;
  padding-top: 7rem;
}
@media screen and (max-width: 700px) {
  .cashback__img07 {
    width: 88%;
    top: 3rem;
    z-index: 20;
    left: 1.7%;
    padding-top: 4rem;
  }
}
.cashback__img08 {
  position: absolute;
  bottom: 2vw;
  right: -8%;
  width: 22%;
}
@media screen and (max-width: 700px) {
  .cashback__img08 {
    width: 30%;
    bottom: -2rem;
    left: 82%;
    z-index: 20;
  }
}
.cashback__img09 {
  position: absolute;
  top: 21vw;
  left: -7%;
  width: 17%;
}
@media screen and (max-width: 700px) {
  .cashback__img09 {
    width: 60%;
    top: 28rem;
    left: -8%;
    z-index: 20;
  }
}
.cashback__img10 {
  position: absolute;
  bottom: 21vw;
  right: -9%;
  width: 18%;
}
@media screen and (max-width: 700px) {
  .cashback__img10 {
    width: 29%;
    bottom: -2rem;
    left: 75%;
    z-index: 20;
    height: 52vw;
  }
}
.cashback__icon {
  position: absolute;
  top: 2.5vw;
  left: 50%;
  width: 12%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .cashback__icon {
    position: absolute;
    top: 7vw;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 17%;
  }
}
.cashback__text01 {
  z-index: 10;
  font-size: 1.2rem;
  color: #fff;
}
@media screen and (max-width: 700px) {
  .cashback__text01 {
    width: 100%;
    z-index: 60;
    text-align: center;
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
.cashback__text02 {
  padding-top: 3rem;
  z-index: 10;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .cashback__text02 {
    padding-top: 1.5rem;
    width: auto;
    text-align: center;
  }
}
.cashback__text03 {
  padding-top: 4rem;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 700px) {
  .cashback__text03 {
    padding-top: 2.5rem;
    width: 100%;
    text-align: center;
  }
}
.cashback__plus-icon {
  text-align: center;
  margin: 0 auto;
  padding: 6rem 0;
  width: 8rem;
}
@media screen and (max-width: 700px) {
  .cashback__plus-icon {
    width: 4rem;
    padding: 2.5rem 0;
  }
}

@media screen and (max-width: 700px) {
  .cashback-tokuten {
    margin-top: -17rem;
  }
}
.cashback-tokuten__heading {
  padding-bottom: 8rem;
}
@media screen and (max-width: 700px) {
  .cashback-tokuten__heading {
    padding-bottom: 2.5rem;
  }
}
.cashback-tokuten__list {
  display: flex;
  align-items: center;
  gap: 13rem;
  position: relative;
  margin-bottom: 15rem;
}
@media screen and (max-width: 700px) {
  .cashback-tokuten__list {
    flex-direction: column;
    gap: 3.5rem;
    margin-bottom: 7.5rem;
  }
}
.cashback-tokuten__list::before {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100%;
  top: 0;
  right: 49%;
  transform: translate(0%, 0%);
  background: #fff;
}
@media screen and (max-width: 700px) {
  .cashback-tokuten__list::before {
    content: none;
  }
}
@media screen and (max-width: 700px) {
  .cashback-tokuten__item {
    border: solid 0.2rem #FFFF00;
    background: #12962E;
    border-radius: 1rem;
    padding: 2.5rem 1rem 2.5rem;
  }
}
.cashback-tokuten__item-img {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.cashback_text_03 {
  position: absolute;
  width: 58vw;
  top: 58vw;
  z-index: 10;
  left: 21vw;
  height: 38vw;
}
@media screen and (max-width: 700px) {
  .cashback_text_03 {
    width: 90%;
    top: 167vw;
    left: 5%;
    height: auto;
  }
}

.cashback_text_04 {
  position: absolute;
  width: 58vw;
  top: 94vw;
  z-index: 10;
  left: 21vw;
}
@media screen and (max-width: 700px) {
  .cashback_text_04 {
    width: 90%;
    top: 260vw;
    left: 5%;
    height: auto;
  }
}

.cashback_icon {
  position: absolute;
  width: 22vw;
  /* height: 147px; */
  top: 15vw;
  left: 15vw;
}

@media screen and (max-width: 700px) {
  .cashback_icon {
    width: 151rem;
    left: 7rem;
    top: 1112rem;
  }
}
.cashback_icon02 {
  position: absolute;
  width: 22vw;
  /* height: 147px; */
  top: 45vw;
  right: 13vw;
}

@media screen and (max-width: 700px) {
  .cashback_icon02 {
    width: 151rem;
    left: 7rem;
    top: 1112rem;
  }
}
.cashback_icon03 {
  position: absolute;
  width: 22vw;
  /* height: 147px; */
  top: 82vw;
  right: 62vw;
}

@media screen and (max-width: 700px) {
  .cashback_icon03 {
    width: 30rem;
    left: -8rem;
    top: 13rem;
    transform: rotate(-166deg);
  }
}
.cashback_icon04 {
  position: absolute;
  width: 22vw;
  /* height: 147px; */
  top: 122vw;
  right: 15vw;
}

@media screen and (max-width: 700px) {
  .cashback_icon04 {
    width: 15rem;
    left: 25rem;
    top: 443vw;
    transform: rotate(-20deg);
  }
}
.sec-otoku {
  position: relative;
  padding: 25rem 0 6rem;
  margin-top: -15rem;
  background: #FFE100 url(../images/top/sec-otoku-bg.png) top center/100% repeat-y;
}
@media screen and (max-width: 700px) {
  .sec-otoku {
    background: #FFE100 url(../images/top/sec-otoku-bg-sp.png) top center/100% repeat-y;
    padding: 5rem 0 5rem;
    margin-top: 0rem;
  }
}
.sec-otoku__heading01 {
  text-align: center;
  width: 17%;
  margin: 0 auto;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec-otoku__heading01 {
    text-align: center;
    width: 35%;
    margin: 0 auto;
    margin-bottom: 2.5rem;
    position: relative;
  }
}
.sec-otoku__heading02 {
  text-align: center;
  width: 74%;
  margin: 0 auto;
  margin-bottom: 24rem;
}
@media screen and (max-width: 700px) {
  .sec-otoku__heading02 {
    margin: 0 calc(56% - 50vw);
    padding-top: 5rem;
    margin-top: -5rem;
    width: 90vw;
    margin-bottom: 5rem;
  }
}
.sec-otoku__list {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sec-otoku__list-balloon {
  position: absolute;
  top: -13%;
  right: -4%;
  width: 22%;
}
.sec-otoku__list-inner {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec-otoku__list-inner {
    gap: 0rem;
  }
}
@media screen and (max-width: 700px) {
  .sec-otoku__list-item-sp {
    width: 100%;
    margin-bottom: 3rem;
  }
  .sec-otoku__list-item-sp:last-child {
    margin-bottom: 5rem;
  }
}
.sec-otoku__img {
  position: absolute;
  top: 17%;
  right: -7%;
  width: 24%;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .sec-otoku__img {
    position: absolute;
    top: -4.3%;
    right: 0%;
    width: 90%;
    z-index: -1;
  }
}
.sec-otoku__img02 {
  position: absolute;
  top: -224%;
  left: -295%;
  width: 31rem;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .sec-otoku__img02 {
    position: absolute;
    top: -188%;
    left: -100%;
    width: 10rem;
    z-index: 1;
  }
}
.sec-otoku__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row {
    flex-direction: column;
    gap: 5rem;
  }
}
.sec-otoku__row--02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row--02 {
    gap: 5rem;
    margin-top: 6rem;
    margin-bottom: 2rem;
  }
}
.sec-otoku__row:first-child .sec-otoku__item {
  width: 32%;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row:first-child .sec-otoku__item {
    width: 100%;
  }
}
.sec-otoku__row:last-child .sec-otoku__item {
  width: 31.4%;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row:last-child .sec-otoku__item {
    width: 100%;
    position: relative;
    overflow: visible;
  }
}
@media screen and (max-width: 700px) {
  .sec-otoku__row:last-child .sec-otoku__item--04 {
    margin-top: 4rem;
  }
}
.sec-otoku__row-common-img {
  position: absolute;
  top: -3%;
  left: 33%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.4s ease;
  width: 13%;
}
.sec-otoku__row-common-img--03 {
  position: absolute;
  top: -6%;
  left: 16.6%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.4s ease;
  width: 16%;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row-common-img--03 {
    width: 28%;
    top: -1%;
    left: 51%;
  }
}
.sec-otoku__row-common-img--03__03 {
  position: absolute;
  top: 0%;
  left: 16.1%;
  width: 16%;
  z-index: 30;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row-common-img--03__03 {
    width: 28%;
    top: 0%;
    left: 51%;
  }
}
.sec-otoku__row-common-img--04 {
  top: -11%;
  left: 50.2%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.4s ease;
  width: 9%;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row-common-img--04 {
    width: 16%;
    top: 38.3rem;
    left: 51.2%;
  }
}
.sec-otoku__row-common-img--04__04 {
  position: absolute;
  top: 0%;
  left: 50.1%;
  width: 13%;
  z-index: 30;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row-common-img--04__04 {
    width: 21%;
    top: 40.6rem;
    left: 51.3%;
  }
}
.sec-otoku__row-common-img--05 {
  position: absolute;
  top: -6%;
  left: 84%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.4s ease;
  width: 13%;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row-common-img--05 {
    top: 72.3%;
    left: 50%;
    width: 23%;
  }
}
.sec-otoku__row-common-img--05__05 {
  position: absolute;
  top: 0%;
  left: 84.1%;
  width: 16%;
  z-index: 30;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
@media screen and (max-width: 700px) {
  .sec-otoku__row-common-img--05__05 {
    top: 73.2%;
    left: 50%;
    width: 27%;
  }
}
.sec-otoku__item {
  background: #fff;
  border: solid 0.6rem #D3D3D4;
  border-radius: 3rem;
  width: 40.1%;
  position: relative;
  padding-bottom: 3rem;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .sec-otoku__item {
    border-radius: 1rem;
    overflow: visible;
    position: relative;
  }
}
.sec-otoku__item:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 700px) {
  .sec-otoku__item:hover {
    transform: none;
  }
}
.sec-otoku .sec-otoku__common-img__01,
.sec-otoku .sec-otoku__common-img--02__02 {
  position: absolute;
  top: 0;
  transition: top 0.3s ease;
}
.sec-otoku .sec-otoku__item:hover ~ .sec-otoku__common-img__01.is-Pc_Tab {
  top: -1rem;
}
@media screen and (max-width: 700px) {
  .sec-otoku .sec-otoku__item:hover ~ .sec-otoku__common-img__01.is-Pc_Tab {
    top: 0;
  }
}
.sec-otoku .sec-otoku__item.sec-otoku__item--02:hover ~ .sec-otoku__common-img--02__02.is-Pc_Tab {
  top: -1rem;
}
@media screen and (max-width: 700px) {
  .sec-otoku .sec-otoku__item.sec-otoku__item--02:hover ~ .sec-otoku__common-img--02__02.is-Pc_Tab {
    top: 0;
  }
}
.sec-otoku .sec-otoku__item.sec-otoku__item--03:hover ~ .sec-otoku__row-common-img--03__03 {
  top: -1rem;
}
@media screen and (max-width: 700px) {
  .sec-otoku .sec-otoku__item.sec-otoku__item--03:hover ~ .sec-otoku__row-common-img--03__03 {
    top: 0;
  }
}
.sec-otoku .sec-otoku__item.sec-otoku__item--04:hover ~ .sec-otoku__row-common-img--04__04.is-Pc_Tab {
  top: -1rem;
}
@media screen and (max-width: 700px) {
  .sec-otoku .sec-otoku__item.sec-otoku__item--04:hover ~ .sec-otoku__row-common-img--04__04.is-Pc_Tab {
    top: 36.8%;
  }
}
.sec-otoku .sec-otoku__item.sec-otoku__item--05:hover ~ .sec-otoku__row-common-img--05__05.is-Pc_Tab {
  top: -1rem;
}
@media screen and (max-width: 700px) {
  .sec-otoku .sec-otoku__item.sec-otoku__item--05:hover ~ .sec-otoku__row-common-img--05__05.is-Pc_Tab {
    top: 73.8%;
  }
}
.sec-otoku__common-img {
  position: absolute;
  top: -3%;
  left: 33%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.4s ease;
  width: 13%;
}
@media screen and (max-width: 700px) {
  .sec-otoku__common-img {
    top: -0.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    transition: 0.4s ease;
    width: 22%;
  }
}
.sec-otoku__common-img__01 {
  left: 32.8%;
  width: 14%;
  top: 0;
  z-index: 30;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
.sec-otoku__common-img--02 {
  position: absolute;
  top: 0%;
  left: 66%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.4s ease;
  width: 16%;
}
@media screen and (max-width: 700px) {
  .sec-otoku__common-img--02 {
    position: absolute;
    top: 20.6%;
    left: 49%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    transition: 0.4s ease;
    width: 28%;
  }
}
.sec-otoku__common-img--02__02 {
  position: absolute;
  top: 0%;
  left: 67.1%;
  width: 16%;
  z-index: 30;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
@media screen and (max-width: 700px) {
  .sec-otoku__common-img--02__02 {
    top: 20.9% !important;
    left: 51.1%;
    width: 29%;
  }
}
.sec-otoku__common-img--03 {
  position: absolute;
  top: 0%;
  left: 66%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  transition: transform 0.4s ease;
  width: 16%;
}
.sec-otoku__common-img--03__03 {
  position: absolute;
  top: 0%;
  left: 67.1%;
  width: 16%;
  z-index: 30;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease;
}
.sec-otoku__common-img-sp {
  position: absolute;
  top: -0.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.4s ease;
  width: 22%;
}
.sec-otoku__common-img-sp--02 {
  top: 21.6%;
  left: 49%;
  width: 29%;
}
.sec-otoku__common-img-sp--04 {
  top: 32.3%;
  left: 50.8%;
  width: 17%;
}
.sec-otoku__common-img-sp--05 {
  top: 68.3%;
  left: 50.8%;
  width: 21%;
}
.sec-otoku__common-img-sp-01 {
  position: absolute;
  top: -0.6%;
  left: 37.8%;
  width: 25%;
}
.sec-otoku__common-img-sp-01--02 {
  top: 20.8%;
  left: 37.8%;
  width: 27%;
}
.sec-otoku__common-img-sp-01--04 {
  top: 33.3%;
  left: 38.8%;
  width: 24%;
}
.sec-otoku__common-img-sp-01--05 {
  top: 68.2%;
  left: 39.8%;
  width: 23%;
}
.sec-otoku__item-inner {
  padding: 1.5rem 3rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem 0;
}
@media screen and (max-width: 700px) {
  .sec-otoku__item-inner {
    gap: 2rem 0;
    padding: 1rem 2.4rem 0 2.4rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .sec-otoku__item-inner--01 {
    gap: 3rem 0;
  }
}
@media screen and (max-width: 700px) {
  .sec-otoku__item-inner--02 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .sec-otoku__item-inner--03 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .sec-otoku__item-inner--04 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .sec-otoku__item-inner--05 {
    margin-bottom: 0;
  }
}
.sec-otoku__hd {
  width: 7.6rem;
  height: 1.1rem;
  background: #D3D3D4;
  border-radius: 20rem;
}
@media screen and (max-width: 700px) {
  .sec-otoku__hd {
    width: 6.5rem;
    height: 1rem;
  }
}
.sec-otoku__brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-otoku__brand--02 {
  width: 19rem;
}
.sec-otoku__brand--03 {
  width: 21rem;
}
.sec-otoku__txt {
  font-size: 1.2rem;
}
.sec-otoku__link {
  display: block;
  text-align: center;
  padding: 2rem 0;
  position: relative;
  transition: 0.4s;
  text-align: center;
  box-shadow: 0px 0.5rem #B3455E;
  line-height: 1;
  border-radius: 9px;
  cursor: pointer;
  transition: 0.3s;
  background-color: #EB6EA5;
  width: 85%;
  margin: 3rem auto 0;
}
@media screen and (max-width: 700px) {
  .sec-otoku__link {
    padding: 1.3rem 0;
    margin: 1rem auto 0;
    margin-bottom: -0.5vw;
    position: static;
    bottom: 0.1rem;
    width: 85%;
  }
}
.sec-otoku__btn-img {
  width: 68%;
  position: relative;
  left: 12%;
}

.smartphone-set {
  background: #FFFFFF url(../images/top/smartphone-set-bg.png) center/100% no-repeat;
  padding: 6rem 0;
  position: relative;
}
@media screen and (max-width: 700px) {
  .smartphone-set {
    padding: 5rem 0;
    background: #FFFFFF url(../images/top/smartphone-set-bg-sp.png) center/100% no-repeat;
  }
}
.smartphone-set::before {
  content: "";
  position: absolute;
  top: 2%;
  width: 100%;
  height: 0.7rem;
  background-color: #FFE100;
}
@media screen and (max-width: 700px) {
  .smartphone-set::before {
    top: 1%;
    width: 100%;
    height: 0.4rem;
  }
}
.smartphone-set::after {
  content: "";
  position: absolute;
  bottom: 2%;
  width: 100%;
  height: 0.7rem;
  background-color: #FFE100;
}
@media screen and (max-width: 700px) {
  .smartphone-set::after {
    bottom: 1%;
    width: 100%;
    height: 0.4rem;
  }
}
.smartphone-set__flex {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 700px) {
  .smartphone-set__flex {
    flex-direction: column;
    gap: 11.5rem;
  }
}
.smartphone-set__arrow {
  position: absolute;
  top: 25%;
  right: 48.5rem;
  width: 15%;
}
@media screen and (max-width: 700px) {
  .smartphone-set__arrow {
    top: 46%;
    right: 6rem;
    width: 60%;
  }
}
.smartphone-set__left {
  width: 39rem;
}
@media screen and (max-width: 700px) {
  .smartphone-set__left {
    width: 80%;
    margin: 0 auto;
  }
}
.smartphone-set__right {
  text-align: center;
}
.smartphone-set__month {
  width: 44rem;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 700px) {
  .smartphone-set__month {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 2.5rem;
  }
}
.smartphone-set__margin {
  background-color: #FFE100;
  padding: 12rem 0 0 0;
}

.smartphone-start {
  margin: 0;
}
@media screen and (max-width: 700px) {
  .smartphone-start {
    margin: 5rem 0 0;
  }
}
.smartphone-start__balloon {
  text-align: center;
  margin: 0 0 3rem;
}
@media screen and (max-width: 700px) {
  .smartphone-start__balloon {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 2.5rem;
  }
}
.smartphone-start__inner {
  padding: 4rem 8rem;
  border-radius: 3rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .smartphone-start__inner {
    padding: 0.1rem 2.5rem 3rem;
    border-radius: 1rem;
  }
}
.smartphone-start__heading {
  width: 86%;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 700px) {
  .smartphone-start__heading {
    width: 100%;
    margin: 0 auto 3rem;
  }
}
.smartphone-start__img {
  position: absolute;
  top: -17%;
  right: 2%;
  width: 18%;
}
.smartphone-start__detail {
  margin: 4rem 0 2.5rem;
}
@media screen and (max-width: 700px) {
  .smartphone-start__detail {
    margin: 2rem 0 3rem;
  }
}

.wi-fi {
  background: #1EAA39 url(../images/top/wi-fi-bg.png) top center/100% no-repeat;
  padding: 10rem 0 10rem;
  margin-top: -17rem;
  padding-top: 24rem;
}
@media screen and (max-width: 700px) {
  .wi-fi {
    margin-top: -7rem;
    padding: 12rem 0 5rem;
    background: #1EAA39 url(../images/top/wi-fi-bg-sp.png) top center/100% no-repeat;
  }
}
.wi-fi .pop-image02 {
  opacity: 0;
  transform: scale(0.3) translateY(100px);
  will-change: transform, opacity;
}
.wi-fi__heading01 {
  width: 7%;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .wi-fi__heading01 {
    width: 15%;
    position: relative;
    top: 1.3rem;
  }
}
.wi-fi__heading02 {
  width: 68%;
  margin: 0 auto;
  margin-bottom: 7.6rem;
}
@media screen and (max-width: 700px) {
  .wi-fi__heading02 {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.wi-fi__main-heading {
  width: 92%;
  margin: 0 auto;
  margin-bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .wi-fi__main-heading {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
  }
}
.wi-fi__house {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .wi-fi__house {
    width: 100%;
    margin-bottom: 1.8rem;
  }
}
.wi-fi__house-balloon {
  position: absolute;
  width: 22%;
  right: -12%;
  top: -14rem;
}
@media screen and (max-width: 700px) {
  .wi-fi__house-balloon {
    width: 33%;
    right: 66%;
    top: 20.9rem;
  }
}
.wi-fi .pop-bounce {
  opacity: 0;
  transform: scale(0.3) translateY(100px);
  will-change: transform, opacity;
}
.wi-fi__home-sensor01, .wi-fi__home-sensor02 {
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.wi-fi__home-sensor01 {
  position: absolute;
  top: 9%;
  left: 68%;
  width: 23%;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-sensor01 {
    top: 72%;
    left: 20%;
    width: 31%;
  }
}
.wi-fi__home-sensor02 {
  position: absolute;
  top: 44.8%;
  left: 61.2%;
  width: 15%;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-sensor02 {
    top: 50%;
    left: 34.8%;
    width: 50%;
  }
}
.wi-fi__home-btns {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-btns {
    flex-direction: column;
    gap: 5rem;
  }
}
.wi-fi__home-btn01 {
  width: 18%;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-btn01 {
    width: 100%;
  }
}
.wi-fi__home-btn02 {
  width: 18%;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-btn02 {
    width: 100%;
  }
}
.wi-fi__home-common-btn {
  display: inline-block;
  background: #EE87B4;
  padding: 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #fff;
  box-shadow: 0px 0.5rem rgb(200, 201, 202); /* 0.5 は50%の不透明度 */
  font-weight: bold;
  line-height: 1.5;
  border-radius: 20px;
  border: solid 0.5rem #fff;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-common-btn {
    width: 100%;
    padding: 1rem;
    box-shadow: 0px 0.4rem rgb(200, 201, 202);
    border: solid 0.3rem #fff;
    border-radius: 13px;
  }
}
.wi-fi__home-common-btn::before {
  content: "";
  position: absolute;
  width: 23rem;
  height: 5rem;
  background: url(../images/top/wifi-left-btn-top-txt.svg) no-repeat;
  background-size: contain;
  top: -23%;
  right: -14.6rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .wi-fi__home-common-btn::before {
    background: url(../images/top/wifi-left-btn-top-txt-sp.svg) no-repeat;
    background-size: contain;
    width: 26.3rem;
    height: 2.8rem;
    top: -36%;
    right: -12.1rem;
  }
}
.wi-fi__home-common-btn:hover {
  -webkit-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
  -webkit-box-shadow: 0 0 rgb(200, 201, 202);
  box-shadow: 0 0 rgb(200, 201, 202);
  background-color: #F04B93;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-common-btn:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: 0px 0.5rem rgb(200, 201, 202);
    background: #EE87B4;
  }
}
.wi-fi__home-common-btn--02 {
  background: #00AFEC;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-common-btn--02 {
    width: 100%;
  }
}
.wi-fi__home-common-btn--02:hover {
  background: #5168C9;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-common-btn--02:hover {
    background: #00AFEC;
  }
}
.wi-fi__home-common-btn--02::before {
  content: "";
  position: absolute;
  width: 23rem;
  height: 5rem;
  background: url(../images/top/wifi-left-btn-top-txt02.svg) no-repeat;
  background-size: contain;
  top: -23%;
  right: -14.6rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .wi-fi__home-common-btn--02::before {
    background: url(../images/top/wifi-left-btn-top-txt02-sp.svg) no-repeat;
    background-size: contain;
    width: 26.3rem;
    height: 2.8rem;
    top: -36%;
    right: -12.1rem;
  }
}
@media screen and (max-width: 700px) {
  .wi-fi .wifi-btn-img {
    width: 70%;
    position: relative;
    right: -2.5rem;
    top: -0.9vw;
  }
}
.wi-fi__home-center {
  width: 46.7%;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-center {
    width: 100%;
  }
}
.wi-fi__home-style-inner {
  border: solid 0.2rem #fff;
  border-radius: 5rem;
  padding: 7.5rem 0 5rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-inner {
    border-radius: 2rem;
    padding: 3.6rem 0 2.5rem;
  }
}
.wi-fi__home-style-heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-heading {
    width: 75%;
  }
}
.wi-fi__home-style-txt {
  width: 63%;
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-txt {
    width: 67%;
    margin-bottom: 3.3rem;
  }
}
.wi-fi__home-style-btn-left {
  text-align: center;
}
.wi-fi__home-style-btn-left-img {
  margin-bottom: 2rem;
  width: 33rem;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn-left-img {
    margin-bottom: 1rem;
    width: 21rem;
  }
}
.wi-fi__home-style-btn-right {
  text-align: center;
}
.wi-fi__home-style-btn-right-img {
  margin-bottom: 2rem;
  width: 32rem;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style-btn-right-img {
    margin-bottom: 1rem;
    width: 21rem;
  }
}
.wi-fi__home-style__add-img {
  width: 80%;
  margin: 0 auto;
  margin-top: 6.6rem;
}
@media screen and (max-width: 700px) {
  .wi-fi__home-style__add-img {
    margin-top: 5rem;
    width: 95%;
  }
}

.stripe {
  background-size: auto auto;
  background-color: rgb(250, 237, 0);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 50px, rgb(255, 225, 0) 50px, rgb(255, 225, 0) 100px);
  padding: 10rem 0 42rem;
  border-bottom: solid 4.5rem #FFF796;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 700px) {
  .stripe {
    padding: 5rem 0 21.6rem;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 25px, rgb(255, 225, 0) 25px, rgb(255, 225, 0) 50px);
    border-bottom: solid 1.8rem #FFF796;
  }
}
.stripe__heading {
  margin: 0 auto;
  width: 61rem;
}
@media screen and (max-width: 700px) {
  .stripe__heading {
    width: 100%;
  }
}

.sec04 {
  background-color: #F4EC25;
  padding: 0;
}
@media screen and (max-width: 700px) {
  .sec04 {
    padding: 7.5rem 0 0rem;
  }
}
.sec04 .pop-image04 {
  opacity: 0;
  transform: scale(0.3) translateY(200px); /* 初期位置を下に移動 */
  will-change: transform, opacity;
}
.sec04__group {
  margin-top: -47rem;
  position: relative;
  z-index: 60;
}
@media screen and (max-width: 700px) {
  .sec04__group {
    margin-top: -28rem;
  }
}
.sec04__main-img {
  width: 110%;
  margin: 0 auto;
  position: relative;
  left: -5%;
}
.sec04__img {
  width: 88%;
  margin: 0 auto;
  margin-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec04__img {
    margin-bottom: 2.5rem;
  }
}
.sec04__tv-img {
  position: relative;
  width: 61%;
  margin: -30rem auto 0;
}
@media screen and (max-width: 700px) {
  .sec04__tv-img {
    width: 90%;
    margin: -11.4rem auto 0;
  }
}
.sec04__tv-btn {
  position: absolute;
  bottom: 22%;
  left: 33%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .sec04__tv-btn {
    bottom: 23%;
    left: 22%;
  }
}
@media screen and (max-width: 700px) {
  .sec04 .tv-btn-img {
    width: 12rem;
  }
}
.sec04__tv-cinema {
  position: absolute;
  bottom: 12%;
  left: -22%;
  width: 26%;
}
@media screen and (max-width: 700px) {
  .sec04__tv-cinema {
    bottom: 26.4rem;
    left: -4%;
    width: 6.5rem;
  }
}
.sec04__tv-drama {
  position: absolute;
  top: -6%;
  left: -17%;
  width: 26%;
}
@media screen and (max-width: 700px) {
  .sec04__tv-drama {
    top: -17rem;
    left: 24%;
    width: 7rem;
  }
}
.sec04__tv-music {
  position: absolute;
  bottom: 13%;
  right: -20%;
  width: 26%;
}
@media screen and (max-width: 700px) {
  .sec04__tv-music {
    bottom: 28rem;
    right: -4%;
    width: 6.2rem;
  }
}
.sec04__tv-sports {
  position: absolute;
  top: -6%;
  right: -14%;
  width: 26%;
}
@media screen and (max-width: 700px) {
  .sec04__tv-sports {
    top: -13.8rem;
    right: 20.6%;
    width: 6.5rem;
  }
}
.sec04__viewing-bg {
  background-color: #6A3906;
  border: solid 2rem #804F21;
  border-radius: 5rem 5rem 0 0;
  border-bottom: none;
  padding: 9rem 8rem 6rem 8rem;
  position: relative;
  width: 90%;
  margin: -1rem auto 0;
}
@media screen and (max-width: 700px) {
  .sec04__viewing-bg {
    border: none;
    width: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 2.3rem 2.5rem 5rem 2.5rem;
  }
}
.sec04__viewing-balloon {
  position: absolute;
  z-index: 80;
  right: -9%;
  top: -8%;
  width: 19%;
}
@media screen and (max-width: 700px) {
  .sec04__viewing-balloon {
    z-index: 80;
    right: -7%;
    top: -7%;
    width: 32%;
  }
}
.sec04__heading01 {
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15%;
}
@media screen and (max-width: 700px) {
  .sec04__heading01 {
    top: 9%;
    width: 28%;
  }
}
.sec04__heading02 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 59%;
}
@media screen and (max-width: 700px) {
  .sec04__heading02 {
    top: 23%;
    width: 80%;
  }
}
.sec04__heading03 {
  position: absolute;
  top: 43%;
  left: 32%;
  width: 43%;
}
@media screen and (max-width: 700px) {
  .sec04__heading03 {
    top: 32%;
    left: 12%;
    width: 80%;
  }
}
.sec04__img01 {
  position: absolute;
  top: 10%;
  left: -9%;
  width: 22%;
}
.sec04__img02 {
  position: absolute;
  top: 3%;
  right: -18%;
  width: 33%;
}
.sec04__img03 {
  position: absolute;
  bottom: 26%;
  right: -5%;
  width: 32%;
}
.sec04__img04 {
  position: absolute;
  bottom: 16%;
  left: 2%;
  width: 25%;
}
@media screen and (max-width: 700px) {
  .sec04__img-sp {
    position: absolute;
    width: 97%;
    top: 49%;
    left: 3%;
  }
}
.sec04__btn {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .sec04__btn {
    top: 78%;
  }
}
.sec04__btn-link {
  display: flex;
  padding: 1.4rem 3rem 1.4rem 3rem;
  border: solid 0.1rem #000;
  border-radius: 4rem;
  cursor: pointer;
  width: 28rem;
  line-height: 1;
  margin: 0 auto;
  background-color: transparent;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .sec04__btn-link {
    width: 22rem;
    padding: 0.9rem 3rem 0.9rem 3rem;
  }
}
.sec04__btn-link:hover {
  background-color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .sec04__btn-link:hover {
    -webkit-transform: none;
    transform: none;
  }
}
.sec04__viewing {
  width: 100%;
  margin-bottom: 8rem;
}
@media screen and (max-width: 700px) {
  .sec04__viewing {
    margin-bottom: 2.5rem;
  }
}
.sec04__viewing-add {
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}
@media screen and (max-width: 700px) {
  .sec04__viewing-add {
    width: 111%;
    position: relative;
    left: -4%;
  }
}

.free-trial {
  padding: 15rem 0 8rem;
  background: url(../images/top/free-trial-bg.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .free-trial {
    padding: 5rem 0 4.5rem;
  }
}
.free-trial .pop-image05 {
  opacity: 0;
  transform: scale(0.3) translateY(100px);
  will-change: transform, opacity;
}
.free-trial__inner {
  border: solid 10px #EB6EA5;
  padding: 1rem;
  background-color: #fff;
  border-radius: 3rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 700px) {
  .free-trial__inner {
    margin: 0 auto 3rem;
    border: solid 5px #EB6EA5;
    border-radius: 1rem;
  }
}
.free-trial__declaration {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37%;
}
@media screen and (max-width: 700px) {
  .free-trial__declaration {
    width: 70%;
  }
}
.free-trial__inner-outline {
  border: solid 3px #EB6EA5;
  border-radius: 1.5rem;
  padding: 8.7rem 12rem 8rem 9rem;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .free-trial__inner-outline {
    border: none;
    padding: 5.2rem 1rem 10rem 1rem;
  }
}
.free-trial__heading {
  width: 98%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 5.3rem;
}
@media screen and (max-width: 700px) {
  .free-trial__heading {
    width: 100%;
    padding-bottom: 1.9rem;
  }
}
.free-trial__txt {
  width: 69%;
  padding-bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .free-trial__txt {
    width: 100%;
    padding-bottom: 1.9rem;
  }
}
.free-trial__img {
  position: absolute;
  right: -17rem;
  bottom: -16rem;
  width: 60rem;
}
@media screen and (max-width: 700px) {
  .free-trial__img {
    width: 100%;
    right: -4.7rem;
    bottom: -2.4rem;
  }
}
.free-trial__box-txt-add {
  font-size: 1.2rem;
}
@media screen and (max-width: 700px) {
  .free-trial__box-txt-add {
    padding-left: 0;
    color: #000;
    text-align: center;
    padding-bottom: 0rem;
  }
}

.sec05 {
  background: url(../images/top/sec05-bg.png) no-repeat center center, #FFE100;
  background-size: cover;
  padding-bottom: 10rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 700px) {
  .sec05 {
    background: url(../images/top/sec05-bg-sp.png) repeat-y top center, #FFE100;
    background-size: contain;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
  }
}
.sec05 .outline_box {
  width: 100%;
  margin: 0 auto;
  padding-top: 13rem;
  margin-bottom: 9rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec05 .outline_box {
    padding-top: 8rem;
    padding-bottom: 5rem;
    width: 100%;
    margin: 0 auto;
  }
}
.sec05 .outline_box-out {
  background-color: #fff;
  padding: 3vw 2vw 2vw;
  border-radius: 35px;
  height: 45vw;
  border: solid 0.7rem #036EB7;
}
@media screen and (max-width: 700px) {
  .sec05 .outline_box-out {
    background-color: #fff;
    padding: 3rem 2rem 2rem;
    border-radius: 25px;
    height: 50rem;
    border: solid 0.5rem #036EB7;
  }
}
.sec05 .outline_box_1 {
  height: 38vw;
  overflow-y: scroll;
  padding-right: 5%;
  margin: 2% 0.5% 2% 0.5%;
  scrollbar-width: thin;
  background-color: #fff;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.75;
}
@media screen and (max-width: 700px) {
  .sec05 .outline_box_1 {
    height: 42rem;
    margin: 2% 1.5% 2% 0%;
  }
}
.sec05 .text-box_1 {
  width: 100%;
  height: 100%;
  padding-right: 20rem;
}
.sec05 .outline_img {
  width: 34rem;
  position: absolute;
  left: 50%;
  top: 11rem;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 700px) {
  .sec05 .outline_img {
    width: 57%;
    position: absolute;
    top: 19vw;
    left: 43vw;
    z-index: 10;
  }
}
.sec05 hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #036EB7;
}
@media screen and (max-width: 700px) {
  .sec05 hr {
    margin: 0.5rem 0 1rem;
  }
}
.sec05 .outline_box_1 .text_1 {
  font-size: 2.4rem;
  color: #036EB7;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.45;
  margin-top: 2rem;
}
@media screen and (max-width: 700px) {
  .sec05 .outline_box_1 .text_1 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.3333333333;
    margin-top: 1rem;
  }
}
.sec05 .text_box .text_2 {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1rem;
  padding-left: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .sec05 .text_box .text_2 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-left: 0;
    text-indent: 0;
    padding-left: 1rem;
  }
}
.sec05 .outline_box_1 .text_2_pl0 {
  padding-left: 0;
}
@media screen and (max-width: 700px) {
  .sec05 .outline_box_1 .text_2_pl0 {
    padding-left: 0;
  }
}
.sec05 .text_box .text_2 span {
  margin-left: -1.5rem;
}
@media screen and (max-width: 700px) {
  .sec05 .text_box .text_2 span {
    margin-left: -1.2rem;
  }
}
.sec05__banner {
  padding: 10rem 0;
}
@media screen and (max-width: 700px) {
  .sec05__banner {
    padding: 0;
  }
}
.sec05__banner-txt {
  text-align: center;
  font-size: 1.2rem;
  padding: 1.5rem 0 4rem;
  letter-spacing: -0.06rem;
  color: #fff;
}
.sec05__map-flex {
  display: flex;
  margin-bottom: 10rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec05__map-flex {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.sec05__map-balloon {
  position: absolute;
  right: -5%;
  width: 17%;
  top: 0%;
}
.sec05__map-heading {
  width: 53%;
  margin: 0 auto 4.6rem;
}
@media screen and (max-width: 700px) {
  .sec05__map-heading {
    width: 100%;
    margin: 0 auto 1.5rem;
  }
}
.sec05__map-img {
  width: 61%;
}
@media screen and (max-width: 700px) {
  .sec05__map-img {
    width: 100%;
    padding-bottom: 0rem;
  }
}
.sec05__map-cat {
  width: 41%;
  position: relative;
  left: -10rem;
  bottom: -9rem;
}
@media screen and (max-width: 700px) {
  .sec05__map-cat {
    width: 43%;
    left: 17.7rem;
    bottom: 6.9rem;
    z-index: 1;
    margin-bottom: 0rem;
  }
}
.sec05 .cta-d {
  position: absolute;
  bottom: -0.4%;
  right: -26%;
  width: 60%;
}
@media screen and (max-width: 700px) {
  .sec05 .cta-d {
    bottom: 0.3rem;
    right: 0;
    width: 100%;
  }
}
.sec05 .cta-d__img {
  width: 64.5rem;
}

.project {
  margin: 19rem 0 0;
  background: #2CA6E0;
  border-radius: 20rem 0 0 20rem;
  width: 100%;
  margin-left: calc(50% - 520px);
  padding: 2rem 0 2rem 5rem;
  position: relative;
  transition: 0.4s;
}
@media (max-width: 1240px) {
  .project {
    transition: 0.4s;
    width: calc(85% + 10vw);
    margin-left: auto;
  }
}
.project__stamp {
  width: 32rem;
  position: relative;
  left: -1.5%;
}
.project__star {
  position: absolute;
  top: -24%;
  left: -4rem;
}
@media (max-width: 1240px) {
  .project__star {
    transition: 0.4s;
    width: 78rem;
  }
}
.project__star--02 {
  position: absolute;
  top: 85%;
  left: -6rem;
}
@media (max-width: 1240px) {
  .project__star--02 {
    transition: 0.4s;
    width: 6rem;
    left: -4rem;
  }
}
.project__line {
  position: absolute;
  top: 15%;
  left: 112%;
  width: 100vw;
  padding: 3rem;
  background-color: #FFF000;
  transition: 0.4s;
}
@media (max-width: 1240px) {
  .project__line {
    transition: 0.4s;
  }
}
.project__line-img {
  position: absolute;
  top: -1.8rem;
  left: 0;
  padding: 0rem;
  z-index: 3;
}
@media (max-width: 1240px) {
  .project__line-img {
    transition: 0.4s;
    width: 40rem;
  }
}
.project__txt {
  position: absolute;
  top: 15rem;
  left: 113%;
  padding: 0rem;
  z-index: 3;
  width: 42rem;
}
@media (max-width: 1240px) {
  .project__txt {
    transition: 0.4s;
    width: 42rem;
  }
}
.project__cat {
  position: absolute;
  top: -13.7rem;
  left: 100%;
  padding: 0rem;
  z-index: 3;
  width: 28rem;
}
@media (max-width: 1240px) {
  .project__cat {
    transition: 0.4s;
    margin-left: calc(24% - 9vw);
    left: 101%;
    width: 25rem;
    top: -10.3rem;
  }
}
.project__sp {
  margin-top: 5rem;
  padding: 3rem 0 5rem;
  background: #2CA6E0 url("../images/top/project-bg-sp.png") no-repeat center/cover;
}
.project__sp-stamp {
  width: 50%;
  margin: 0 auto;
}
.project__sp-heading {
  margin-top: -4rem;
  padding-bottom: 2rem;
}
.project__sp-txt {
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}

.cta {
  background-color: #EB6EA5;
  padding: 7rem 0rem 8rem;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.cta--blue {
  background-color: #00CCDD;
}
.cta__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.cta__img {
  width: 55rem;
}
.cta__btn {
  width: 35%;
  position: relative;
  z-index: 10;
}
.cta__btn .btn-A {
  display: inline-block;
  position: relative;
  width: 100%;
  cursor: pointer;
}
.cta__btn .btn-A span {
  display: block;
  width: 100%;
  height: auto;
}
.cta__btn .btn-A span .cta-txt-default,
.cta__btn .btn-A span .cta-txt-hover {
  display: block;
  width: 80%;
  height: auto;
  position: absolute;
  top: 2.2rem;
  left: 4.5rem;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.cta__btn .btn-A span .cta-txt-hover {
  opacity: 0;
}
.cta__btn .btn-A:hover span .cta-txt-default {
  opacity: 0;
}
.cta__btn .btn-A:hover span .cta-txt-hover {
  opacity: 1;
}
.cta__btn .btn-A:hover ~ .character .character-img {
  transform: translateX(-1.5rem);
}
.cta__btn .btn-A:hover ~ .character .bubble-default {
  opacity: 1;
}
.cta__btn .btn-A:hover ~ .character .bubble-hover {
  opacity: 0;
}
.cta__btn .character {
  position: absolute;
  width: 40rem;
  top: -150%;
  left: 3%;
  z-index: -1;
}
.cta__btn .character .character-img {
  position: relative;
  z-index: 0;
  transition: transform 0.3s ease;
}
.cta__btn .character .bubble-img {
  position: absolute;
  top: -4.5rem;
  left: 24%;
  transform: translateX(-50%);
  width: 70%;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.cta__btn .character .bubble-hover {
  opacity: 0;
}
.cta__btn .character .bubble-default {
  opacity: 0;
}
.cta__circle {
  position: absolute;
  top: -8rem;
  right: -21rem;
  width: 35rem;
  opacity: 0.4;
}
@media (max-width: 1240px) {
  .cta__circle {
    right: -10rem;
    top: -13rem;
  }
}

/*--------------------------
	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: 1024px) {
  .is-Pc {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .is-Tab {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .is-Tab {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .is-Sp {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .is-Pc_Tab {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .is-Tab_Sp {
    display: none;
  }
}

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