@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 #ccc;
  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 (width <= 1024px) {
  html {
    font-size: 52.5%;
  }
}

body {
  *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;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

---------------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 0.52083333vw;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6667vw; /* 10px / 375px * 100 */
  }
}

body {
  background: #fff;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  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: 767px) {
  .u-txt-xsmall {
    font-size: 1rem !important;
  }
}

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

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

.u-txt-large {
  font-size: 2rem !important;
}
@media screen and (max-width: 767px) {
  .u-txt-large {
    font-size: 1.6rem !important;
  }
}

.u-link {
  color: #000;
  text-decoration: underline;
}
.u-link:hover {
  text-decoration: none;
}

.u-ul-default {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}
.u-ul-default li {
  list-style: inherit;
}

.u-ol-default {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.u-ol-default li {
  list-style: inherit;
}

.u-ul-style > li {
  position: relative;
  padding-left: 1.3em;
}
.u-ul-style > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-ul-style--asterisk > li::before {
  content: "※";
}
.u-ul-style--disc > li::before {
  content: "●";
  color: #ccc;
}
.u-ul-style--disc-red > li::before {
  content: "●";
  color: #000;
}
.u-ul-style--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: 1000px) {
  .u-align-l-tab {
    text-align: left !important;
  }
  .u-align-c-tab {
    text-align: center !important;
  }
  .u-align-r-tab {
    text-align: right !important;
  }
}
@media screen and (max-width: 767px) {
  .u-align-l-sp {
    text-align: left !important;
  }
  .u-align-c-sp {
    text-align: center !important;
  }
  .u-align-r-sp {
    text-align: right !important;
  }
}
.u-iframe-responsive {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 56.25%;
}
.u-iframe-responsive iframe,
.u-iframe-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* --------------------------
	padding margin 調整用
-------------------------- */
.u-mt-s {
  margin-top: 2rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-s {
    margin-top: 1rem !important;
  }
}

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

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

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

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

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

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

.u-mb-xl {
  margin-bottom: 8rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-xl {
    margin-bottom: 4rem !important;
  }
}

.u-mt120 {
  margin-top: 12rem !important;
}

.u-mb120 {
  margin-bottom: 12rem !important;
}

.u-ml120 {
  margin-left: 12rem !important;
}

.u-mr120 {
  margin-right: 12rem !important;
}

.u-pt120 {
  padding-top: 12rem !important;
}

.u-pb120 {
  padding-bottom: 12rem !important;
}

.u-pl120 {
  padding-left: 12rem !important;
}

.u-pr120 {
  padding-right: 12rem !important;
}

.u-mt110 {
  margin-top: 11rem !important;
}

.u-mb110 {
  margin-bottom: 11rem !important;
}

.u-ml110 {
  margin-left: 11rem !important;
}

.u-mr110 {
  margin-right: 11rem !important;
}

.u-pt110 {
  padding-top: 11rem !important;
}

.u-pb110 {
  padding-bottom: 11rem !important;
}

.u-pl110 {
  padding-left: 11rem !important;
}

.u-pr110 {
  padding-right: 11rem !important;
}

.u-mt100 {
  margin-top: 10rem !important;
}

.u-mb100 {
  margin-bottom: 10rem !important;
}

.u-ml100 {
  margin-left: 10rem !important;
}

.u-mr100 {
  margin-right: 10rem !important;
}

.u-pt100 {
  padding-top: 10rem !important;
}

.u-pb100 {
  padding-bottom: 10rem !important;
}

.u-pl100 {
  padding-left: 10rem !important;
}

.u-pr100 {
  padding-right: 10rem !important;
}

.u-mt90 {
  margin-top: 9rem !important;
}

.u-mb90 {
  margin-bottom: 9rem !important;
}

.u-ml90 {
  margin-left: 9rem !important;
}

.u-mr90 {
  margin-right: 9rem !important;
}

.u-pt90 {
  padding-top: 9rem !important;
}

.u-pb90 {
  padding-bottom: 9rem !important;
}

.u-pl90 {
  padding-left: 9rem !important;
}

.u-pr90 {
  padding-right: 9rem !important;
}

.u-mt80 {
  margin-top: 8rem !important;
}

.u-mb80 {
  margin-bottom: 8rem !important;
}

.u-ml80 {
  margin-left: 8rem !important;
}

.u-mr80 {
  margin-right: 8rem !important;
}

.u-pt80 {
  padding-top: 8rem !important;
}

.u-pb80 {
  padding-bottom: 8rem !important;
}

.u-pl80 {
  padding-left: 8rem !important;
}

.u-pr80 {
  padding-right: 8rem !important;
}

.u-mt75 {
  margin-top: 7.5rem !important;
}

.u-mb75 {
  margin-bottom: 7.5rem !important;
}

.u-ml75 {
  margin-left: 7.5rem !important;
}

.u-mr75 {
  margin-right: 7.5rem !important;
}

.u-pt75 {
  padding-top: 7.5rem !important;
}

.u-pb75 {
  padding-bottom: 7.5rem !important;
}

.u-pl75 {
  padding-left: 7.5rem !important;
}

.u-pr75 {
  padding-right: 7.5rem !important;
}

.u-mt70 {
  margin-top: 7rem !important;
}

.u-mb70 {
  margin-bottom: 7rem !important;
}

.u-ml70 {
  margin-left: 7rem !important;
}

.u-mr70 {
  margin-right: 7rem !important;
}

.u-pt70 {
  padding-top: 7rem !important;
}

.u-pb70 {
  padding-bottom: 7rem !important;
}

.u-pl70 {
  padding-left: 7rem !important;
}

.u-pr70 {
  padding-right: 7rem !important;
}

.u-mt65 {
  margin-top: 6.5rem !important;
}

.u-mb65 {
  margin-bottom: 6.5rem !important;
}

.u-ml65 {
  margin-left: 6.5rem !important;
}

.u-mr65 {
  margin-right: 6.5rem !important;
}

.u-pt65 {
  padding-top: 6.5rem !important;
}

.u-pb65 {
  padding-bottom: 6.5rem !important;
}

.u-pl65 {
  padding-left: 6.5rem !important;
}

.u-pr65 {
  padding-right: 6.5rem !important;
}

.u-mt60 {
  margin-top: 6rem !important;
}

.u-mb60 {
  margin-bottom: 6rem !important;
}

.u-ml60 {
  margin-left: 6rem !important;
}

.u-mr60 {
  margin-right: 6rem !important;
}

.u-pt60 {
  padding-top: 6rem !important;
}

.u-pb60 {
  padding-bottom: 6rem !important;
}

.u-pl60 {
  padding-left: 6rem !important;
}

.u-pr60 {
  padding-right: 6rem !important;
}

.u-mt55 {
  margin-top: 5.5rem !important;
}

.u-mb55 {
  margin-bottom: 5.5rem !important;
}

.u-ml55 {
  margin-left: 5.5rem !important;
}

.u-mr55 {
  margin-right: 5.5rem !important;
}

.u-pt55 {
  padding-top: 5.5rem !important;
}

.u-pb55 {
  padding-bottom: 5.5rem !important;
}

.u-pl55 {
  padding-left: 5.5rem !important;
}

.u-pr55 {
  padding-right: 5.5rem !important;
}

.u-mt50 {
  margin-top: 5rem !important;
}

.u-mb50 {
  margin-bottom: 5rem !important;
}

.u-ml50 {
  margin-left: 5rem !important;
}

.u-mr50 {
  margin-right: 5rem !important;
}

.u-pt50 {
  padding-top: 5rem !important;
}

.u-pb50 {
  padding-bottom: 5rem !important;
}

.u-pl50 {
  padding-left: 5rem !important;
}

.u-pr50 {
  padding-right: 5rem !important;
}

.u-mt45 {
  margin-top: 4.5rem !important;
}

.u-mb45 {
  margin-bottom: 4.5rem !important;
}

.u-ml45 {
  margin-left: 4.5rem !important;
}

.u-mr45 {
  margin-right: 4.5rem !important;
}

.u-pt45 {
  padding-top: 4.5rem !important;
}

.u-pb45 {
  padding-bottom: 4.5rem !important;
}

.u-pl45 {
  padding-left: 4.5rem !important;
}

.u-pr45 {
  padding-right: 4.5rem !important;
}

.u-mt40 {
  margin-top: 4rem !important;
}

.u-mb40 {
  margin-bottom: 4rem !important;
}

.u-ml40 {
  margin-left: 4rem !important;
}

.u-mr40 {
  margin-right: 4rem !important;
}

.u-pt40 {
  padding-top: 4rem !important;
}

.u-pb40 {
  padding-bottom: 4rem !important;
}

.u-pl40 {
  padding-left: 4rem !important;
}

.u-pr40 {
  padding-right: 4rem !important;
}

.u-mt35 {
  margin-top: 3.5rem !important;
}

.u-mb35 {
  margin-bottom: 3.5rem !important;
}

.u-ml35 {
  margin-left: 3.5rem !important;
}

.u-mr35 {
  margin-right: 3.5rem !important;
}

.u-pt35 {
  padding-top: 3.5rem !important;
}

.u-pb35 {
  padding-bottom: 3.5rem !important;
}

.u-pl35 {
  padding-left: 3.5rem !important;
}

.u-pr35 {
  padding-right: 3.5rem !important;
}

.u-mt30 {
  margin-top: 3rem !important;
}

.u-mb30 {
  margin-bottom: 3rem !important;
}

.u-ml30 {
  margin-left: 3rem !important;
}

.u-mr30 {
  margin-right: 3rem !important;
}

.u-pt30 {
  padding-top: 3rem !important;
}

.u-pb30 {
  padding-bottom: 3rem !important;
}

.u-pl30 {
  padding-left: 3rem !important;
}

.u-pr30 {
  padding-right: 3rem !important;
}

.u-mt25 {
  margin-top: 2.5rem !important;
}

.u-mb25 {
  margin-bottom: 2.5rem !important;
}

.u-ml25 {
  margin-left: 2.5rem !important;
}

.u-mr25 {
  margin-right: 2.5rem !important;
}

.u-pt25 {
  padding-top: 2.5rem !important;
}

.u-pb25 {
  padding-bottom: 2.5rem !important;
}

.u-pl25 {
  padding-left: 2.5rem !important;
}

.u-pr25 {
  padding-right: 2.5rem !important;
}

.u-mt20 {
  margin-top: 2rem !important;
}

.u-mb20 {
  margin-bottom: 2rem !important;
}

.u-ml20 {
  margin-left: 2rem !important;
}

.u-mr20 {
  margin-right: 2rem !important;
}

.u-pt20 {
  padding-top: 2rem !important;
}

.u-pb20 {
  padding-bottom: 2rem !important;
}

.u-pl20 {
  padding-left: 2rem !important;
}

.u-pr20 {
  padding-right: 2rem !important;
}

.u-mt15 {
  margin-top: 1.5rem !important;
}

.u-mb15 {
  margin-bottom: 1.5rem !important;
}

.u-ml15 {
  margin-left: 1.5rem !important;
}

.u-mr15 {
  margin-right: 1.5rem !important;
}

.u-pt15 {
  padding-top: 1.5rem !important;
}

.u-pb15 {
  padding-bottom: 1.5rem !important;
}

.u-pl15 {
  padding-left: 1.5rem !important;
}

.u-pr15 {
  padding-right: 1.5rem !important;
}

.u-mt10 {
  margin-top: 1rem !important;
}

.u-mb10 {
  margin-bottom: 1rem !important;
}

.u-ml10 {
  margin-left: 1rem !important;
}

.u-mr10 {
  margin-right: 1rem !important;
}

.u-pt10 {
  padding-top: 1rem !important;
}

.u-pb10 {
  padding-bottom: 1rem !important;
}

.u-pl10 {
  padding-left: 1rem !important;
}

.u-pr10 {
  padding-right: 1rem !important;
}

.u-mt5 {
  margin-top: 0.5rem !important;
}

.u-mb5 {
  margin-bottom: 0.5rem !important;
}

.u-ml5 {
  margin-left: 0.5rem !important;
}

.u-mr5 {
  margin-right: 0.5rem !important;
}

.u-pt5 {
  padding-top: 0.5rem !important;
}

.u-pb5 {
  padding-bottom: 0.5rem !important;
}

.u-pl5 {
  padding-left: 0.5rem !important;
}

.u-pr5 {
  padding-right: 0.5rem !important;
}

.u-mt0 {
  margin-top: 0rem !important;
}

.u-mb0 {
  margin-bottom: 0rem !important;
}

.u-ml0 {
  margin-left: 0rem !important;
}

.u-mr0 {
  margin-right: 0rem !important;
}

.u-pt0 {
  padding-top: 0rem !important;
}

.u-pb0 {
  padding-bottom: 0rem !important;
}

.u-pl0 {
  padding-left: 0rem !important;
}

.u-pr0 {
  padding-right: 0rem !important;
}

@media screen and (max-width: 1000px) {
  .u-mt120-tab {
    margin-top: 12rem !important;
  }
  .u-mb120-tab {
    margin-bottom: 12rem !important;
  }
  .u-ml120-tab {
    margin-left: 12rem !important;
  }
  .u-mr120-tab {
    margin-right: 12rem !important;
  }
  .u-pt120-tab {
    padding-top: 12rem !important;
  }
  .u-pb120-tab {
    padding-bottom: 12rem !important;
  }
  .u-pl120-tab {
    padding-left: 12rem !important;
  }
  .u-pr120-tab {
    padding-right: 12rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt110-tab {
    margin-top: 11rem !important;
  }
  .u-mb110-tab {
    margin-bottom: 11rem !important;
  }
  .u-ml110-tab {
    margin-left: 11rem !important;
  }
  .u-mr110-tab {
    margin-right: 11rem !important;
  }
  .u-pt110-tab {
    padding-top: 11rem !important;
  }
  .u-pb110-tab {
    padding-bottom: 11rem !important;
  }
  .u-pl110-tab {
    padding-left: 11rem !important;
  }
  .u-pr110-tab {
    padding-right: 11rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt100-tab {
    margin-top: 10rem !important;
  }
  .u-mb100-tab {
    margin-bottom: 10rem !important;
  }
  .u-ml100-tab {
    margin-left: 10rem !important;
  }
  .u-mr100-tab {
    margin-right: 10rem !important;
  }
  .u-pt100-tab {
    padding-top: 10rem !important;
  }
  .u-pb100-tab {
    padding-bottom: 10rem !important;
  }
  .u-pl100-tab {
    padding-left: 10rem !important;
  }
  .u-pr100-tab {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt90-tab {
    margin-top: 9rem !important;
  }
  .u-mb90-tab {
    margin-bottom: 9rem !important;
  }
  .u-ml90-tab {
    margin-left: 9rem !important;
  }
  .u-mr90-tab {
    margin-right: 9rem !important;
  }
  .u-pt90-tab {
    padding-top: 9rem !important;
  }
  .u-pb90-tab {
    padding-bottom: 9rem !important;
  }
  .u-pl90-tab {
    padding-left: 9rem !important;
  }
  .u-pr90-tab {
    padding-right: 9rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt80-tab {
    margin-top: 8rem !important;
  }
  .u-mb80-tab {
    margin-bottom: 8rem !important;
  }
  .u-ml80-tab {
    margin-left: 8rem !important;
  }
  .u-mr80-tab {
    margin-right: 8rem !important;
  }
  .u-pt80-tab {
    padding-top: 8rem !important;
  }
  .u-pb80-tab {
    padding-bottom: 8rem !important;
  }
  .u-pl80-tab {
    padding-left: 8rem !important;
  }
  .u-pr80-tab {
    padding-right: 8rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt75-tab {
    margin-top: 7.5rem !important;
  }
  .u-mb75-tab {
    margin-bottom: 7.5rem !important;
  }
  .u-ml75-tab {
    margin-left: 7.5rem !important;
  }
  .u-mr75-tab {
    margin-right: 7.5rem !important;
  }
  .u-pt75-tab {
    padding-top: 7.5rem !important;
  }
  .u-pb75-tab {
    padding-bottom: 7.5rem !important;
  }
  .u-pl75-tab {
    padding-left: 7.5rem !important;
  }
  .u-pr75-tab {
    padding-right: 7.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt70-tab {
    margin-top: 7rem !important;
  }
  .u-mb70-tab {
    margin-bottom: 7rem !important;
  }
  .u-ml70-tab {
    margin-left: 7rem !important;
  }
  .u-mr70-tab {
    margin-right: 7rem !important;
  }
  .u-pt70-tab {
    padding-top: 7rem !important;
  }
  .u-pb70-tab {
    padding-bottom: 7rem !important;
  }
  .u-pl70-tab {
    padding-left: 7rem !important;
  }
  .u-pr70-tab {
    padding-right: 7rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt65-tab {
    margin-top: 6.5rem !important;
  }
  .u-mb65-tab {
    margin-bottom: 6.5rem !important;
  }
  .u-ml65-tab {
    margin-left: 6.5rem !important;
  }
  .u-mr65-tab {
    margin-right: 6.5rem !important;
  }
  .u-pt65-tab {
    padding-top: 6.5rem !important;
  }
  .u-pb65-tab {
    padding-bottom: 6.5rem !important;
  }
  .u-pl65-tab {
    padding-left: 6.5rem !important;
  }
  .u-pr65-tab {
    padding-right: 6.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt60-tab {
    margin-top: 6rem !important;
  }
  .u-mb60-tab {
    margin-bottom: 6rem !important;
  }
  .u-ml60-tab {
    margin-left: 6rem !important;
  }
  .u-mr60-tab {
    margin-right: 6rem !important;
  }
  .u-pt60-tab {
    padding-top: 6rem !important;
  }
  .u-pb60-tab {
    padding-bottom: 6rem !important;
  }
  .u-pl60-tab {
    padding-left: 6rem !important;
  }
  .u-pr60-tab {
    padding-right: 6rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt55-tab {
    margin-top: 5.5rem !important;
  }
  .u-mb55-tab {
    margin-bottom: 5.5rem !important;
  }
  .u-ml55-tab {
    margin-left: 5.5rem !important;
  }
  .u-mr55-tab {
    margin-right: 5.5rem !important;
  }
  .u-pt55-tab {
    padding-top: 5.5rem !important;
  }
  .u-pb55-tab {
    padding-bottom: 5.5rem !important;
  }
  .u-pl55-tab {
    padding-left: 5.5rem !important;
  }
  .u-pr55-tab {
    padding-right: 5.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt50-tab {
    margin-top: 5rem !important;
  }
  .u-mb50-tab {
    margin-bottom: 5rem !important;
  }
  .u-ml50-tab {
    margin-left: 5rem !important;
  }
  .u-mr50-tab {
    margin-right: 5rem !important;
  }
  .u-pt50-tab {
    padding-top: 5rem !important;
  }
  .u-pb50-tab {
    padding-bottom: 5rem !important;
  }
  .u-pl50-tab {
    padding-left: 5rem !important;
  }
  .u-pr50-tab {
    padding-right: 5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt45-tab {
    margin-top: 4.5rem !important;
  }
  .u-mb45-tab {
    margin-bottom: 4.5rem !important;
  }
  .u-ml45-tab {
    margin-left: 4.5rem !important;
  }
  .u-mr45-tab {
    margin-right: 4.5rem !important;
  }
  .u-pt45-tab {
    padding-top: 4.5rem !important;
  }
  .u-pb45-tab {
    padding-bottom: 4.5rem !important;
  }
  .u-pl45-tab {
    padding-left: 4.5rem !important;
  }
  .u-pr45-tab {
    padding-right: 4.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt40-tab {
    margin-top: 4rem !important;
  }
  .u-mb40-tab {
    margin-bottom: 4rem !important;
  }
  .u-ml40-tab {
    margin-left: 4rem !important;
  }
  .u-mr40-tab {
    margin-right: 4rem !important;
  }
  .u-pt40-tab {
    padding-top: 4rem !important;
  }
  .u-pb40-tab {
    padding-bottom: 4rem !important;
  }
  .u-pl40-tab {
    padding-left: 4rem !important;
  }
  .u-pr40-tab {
    padding-right: 4rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt35-tab {
    margin-top: 3.5rem !important;
  }
  .u-mb35-tab {
    margin-bottom: 3.5rem !important;
  }
  .u-ml35-tab {
    margin-left: 3.5rem !important;
  }
  .u-mr35-tab {
    margin-right: 3.5rem !important;
  }
  .u-pt35-tab {
    padding-top: 3.5rem !important;
  }
  .u-pb35-tab {
    padding-bottom: 3.5rem !important;
  }
  .u-pl35-tab {
    padding-left: 3.5rem !important;
  }
  .u-pr35-tab {
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt30-tab {
    margin-top: 3rem !important;
  }
  .u-mb30-tab {
    margin-bottom: 3rem !important;
  }
  .u-ml30-tab {
    margin-left: 3rem !important;
  }
  .u-mr30-tab {
    margin-right: 3rem !important;
  }
  .u-pt30-tab {
    padding-top: 3rem !important;
  }
  .u-pb30-tab {
    padding-bottom: 3rem !important;
  }
  .u-pl30-tab {
    padding-left: 3rem !important;
  }
  .u-pr30-tab {
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt25-tab {
    margin-top: 2.5rem !important;
  }
  .u-mb25-tab {
    margin-bottom: 2.5rem !important;
  }
  .u-ml25-tab {
    margin-left: 2.5rem !important;
  }
  .u-mr25-tab {
    margin-right: 2.5rem !important;
  }
  .u-pt25-tab {
    padding-top: 2.5rem !important;
  }
  .u-pb25-tab {
    padding-bottom: 2.5rem !important;
  }
  .u-pl25-tab {
    padding-left: 2.5rem !important;
  }
  .u-pr25-tab {
    padding-right: 2.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt20-tab {
    margin-top: 2rem !important;
  }
  .u-mb20-tab {
    margin-bottom: 2rem !important;
  }
  .u-ml20-tab {
    margin-left: 2rem !important;
  }
  .u-mr20-tab {
    margin-right: 2rem !important;
  }
  .u-pt20-tab {
    padding-top: 2rem !important;
  }
  .u-pb20-tab {
    padding-bottom: 2rem !important;
  }
  .u-pl20-tab {
    padding-left: 2rem !important;
  }
  .u-pr20-tab {
    padding-right: 2rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt15-tab {
    margin-top: 1.5rem !important;
  }
  .u-mb15-tab {
    margin-bottom: 1.5rem !important;
  }
  .u-ml15-tab {
    margin-left: 1.5rem !important;
  }
  .u-mr15-tab {
    margin-right: 1.5rem !important;
  }
  .u-pt15-tab {
    padding-top: 1.5rem !important;
  }
  .u-pb15-tab {
    padding-bottom: 1.5rem !important;
  }
  .u-pl15-tab {
    padding-left: 1.5rem !important;
  }
  .u-pr15-tab {
    padding-right: 1.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt10-tab {
    margin-top: 1rem !important;
  }
  .u-mb10-tab {
    margin-bottom: 1rem !important;
  }
  .u-ml10-tab {
    margin-left: 1rem !important;
  }
  .u-mr10-tab {
    margin-right: 1rem !important;
  }
  .u-pt10-tab {
    padding-top: 1rem !important;
  }
  .u-pb10-tab {
    padding-bottom: 1rem !important;
  }
  .u-pl10-tab {
    padding-left: 1rem !important;
  }
  .u-pr10-tab {
    padding-right: 1rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt5-tab {
    margin-top: 0.5rem !important;
  }
  .u-mb5-tab {
    margin-bottom: 0.5rem !important;
  }
  .u-ml5-tab {
    margin-left: 0.5rem !important;
  }
  .u-mr5-tab {
    margin-right: 0.5rem !important;
  }
  .u-pt5-tab {
    padding-top: 0.5rem !important;
  }
  .u-pb5-tab {
    padding-bottom: 0.5rem !important;
  }
  .u-pl5-tab {
    padding-left: 0.5rem !important;
  }
  .u-pr5-tab {
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt0-tab {
    margin-top: 0rem !important;
  }
  .u-mb0-tab {
    margin-bottom: 0rem !important;
  }
  .u-ml0-tab {
    margin-left: 0rem !important;
  }
  .u-mr0-tab {
    margin-right: 0rem !important;
  }
  .u-pt0-tab {
    padding-top: 0rem !important;
  }
  .u-pb0-tab {
    padding-bottom: 0rem !important;
  }
  .u-pl0-tab {
    padding-left: 0rem !important;
  }
  .u-pr0-tab {
    padding-right: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt120-sp {
    margin-top: 12rem !important;
  }
  .u-mb120-sp {
    margin-bottom: 12rem !important;
  }
  .u-ml120-sp {
    margin-left: 12rem !important;
  }
  .u-mr120-sp {
    margin-right: 12rem !important;
  }
  .u-pt120-sp {
    padding-top: 12rem !important;
  }
  .u-pb120-sp {
    padding-bottom: 12rem !important;
  }
  .u-pl120-sp {
    padding-left: 12rem !important;
  }
  .u-pr120-sp {
    padding-right: 12rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt110-sp {
    margin-top: 11rem !important;
  }
  .u-mb110-sp {
    margin-bottom: 11rem !important;
  }
  .u-ml110-sp {
    margin-left: 11rem !important;
  }
  .u-mr110-sp {
    margin-right: 11rem !important;
  }
  .u-pt110-sp {
    padding-top: 11rem !important;
  }
  .u-pb110-sp {
    padding-bottom: 11rem !important;
  }
  .u-pl110-sp {
    padding-left: 11rem !important;
  }
  .u-pr110-sp {
    padding-right: 11rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt100-sp {
    margin-top: 10rem !important;
  }
  .u-mb100-sp {
    margin-bottom: 10rem !important;
  }
  .u-ml100-sp {
    margin-left: 10rem !important;
  }
  .u-mr100-sp {
    margin-right: 10rem !important;
  }
  .u-pt100-sp {
    padding-top: 10rem !important;
  }
  .u-pb100-sp {
    padding-bottom: 10rem !important;
  }
  .u-pl100-sp {
    padding-left: 10rem !important;
  }
  .u-pr100-sp {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt90-sp {
    margin-top: 9rem !important;
  }
  .u-mb90-sp {
    margin-bottom: 9rem !important;
  }
  .u-ml90-sp {
    margin-left: 9rem !important;
  }
  .u-mr90-sp {
    margin-right: 9rem !important;
  }
  .u-pt90-sp {
    padding-top: 9rem !important;
  }
  .u-pb90-sp {
    padding-bottom: 9rem !important;
  }
  .u-pl90-sp {
    padding-left: 9rem !important;
  }
  .u-pr90-sp {
    padding-right: 9rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt80-sp {
    margin-top: 8rem !important;
  }
  .u-mb80-sp {
    margin-bottom: 8rem !important;
  }
  .u-ml80-sp {
    margin-left: 8rem !important;
  }
  .u-mr80-sp {
    margin-right: 8rem !important;
  }
  .u-pt80-sp {
    padding-top: 8rem !important;
  }
  .u-pb80-sp {
    padding-bottom: 8rem !important;
  }
  .u-pl80-sp {
    padding-left: 8rem !important;
  }
  .u-pr80-sp {
    padding-right: 8rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt75-sp {
    margin-top: 7.5rem !important;
  }
  .u-mb75-sp {
    margin-bottom: 7.5rem !important;
  }
  .u-ml75-sp {
    margin-left: 7.5rem !important;
  }
  .u-mr75-sp {
    margin-right: 7.5rem !important;
  }
  .u-pt75-sp {
    padding-top: 7.5rem !important;
  }
  .u-pb75-sp {
    padding-bottom: 7.5rem !important;
  }
  .u-pl75-sp {
    padding-left: 7.5rem !important;
  }
  .u-pr75-sp {
    padding-right: 7.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt70-sp {
    margin-top: 7rem !important;
  }
  .u-mb70-sp {
    margin-bottom: 7rem !important;
  }
  .u-ml70-sp {
    margin-left: 7rem !important;
  }
  .u-mr70-sp {
    margin-right: 7rem !important;
  }
  .u-pt70-sp {
    padding-top: 7rem !important;
  }
  .u-pb70-sp {
    padding-bottom: 7rem !important;
  }
  .u-pl70-sp {
    padding-left: 7rem !important;
  }
  .u-pr70-sp {
    padding-right: 7rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt65-sp {
    margin-top: 6.5rem !important;
  }
  .u-mb65-sp {
    margin-bottom: 6.5rem !important;
  }
  .u-ml65-sp {
    margin-left: 6.5rem !important;
  }
  .u-mr65-sp {
    margin-right: 6.5rem !important;
  }
  .u-pt65-sp {
    padding-top: 6.5rem !important;
  }
  .u-pb65-sp {
    padding-bottom: 6.5rem !important;
  }
  .u-pl65-sp {
    padding-left: 6.5rem !important;
  }
  .u-pr65-sp {
    padding-right: 6.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt60-sp {
    margin-top: 6rem !important;
  }
  .u-mb60-sp {
    margin-bottom: 6rem !important;
  }
  .u-ml60-sp {
    margin-left: 6rem !important;
  }
  .u-mr60-sp {
    margin-right: 6rem !important;
  }
  .u-pt60-sp {
    padding-top: 6rem !important;
  }
  .u-pb60-sp {
    padding-bottom: 6rem !important;
  }
  .u-pl60-sp {
    padding-left: 6rem !important;
  }
  .u-pr60-sp {
    padding-right: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt55-sp {
    margin-top: 5.5rem !important;
  }
  .u-mb55-sp {
    margin-bottom: 5.5rem !important;
  }
  .u-ml55-sp {
    margin-left: 5.5rem !important;
  }
  .u-mr55-sp {
    margin-right: 5.5rem !important;
  }
  .u-pt55-sp {
    padding-top: 5.5rem !important;
  }
  .u-pb55-sp {
    padding-bottom: 5.5rem !important;
  }
  .u-pl55-sp {
    padding-left: 5.5rem !important;
  }
  .u-pr55-sp {
    padding-right: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt50-sp {
    margin-top: 5rem !important;
  }
  .u-mb50-sp {
    margin-bottom: 5rem !important;
  }
  .u-ml50-sp {
    margin-left: 5rem !important;
  }
  .u-mr50-sp {
    margin-right: 5rem !important;
  }
  .u-pt50-sp {
    padding-top: 5rem !important;
  }
  .u-pb50-sp {
    padding-bottom: 5rem !important;
  }
  .u-pl50-sp {
    padding-left: 5rem !important;
  }
  .u-pr50-sp {
    padding-right: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt45-sp {
    margin-top: 4.5rem !important;
  }
  .u-mb45-sp {
    margin-bottom: 4.5rem !important;
  }
  .u-ml45-sp {
    margin-left: 4.5rem !important;
  }
  .u-mr45-sp {
    margin-right: 4.5rem !important;
  }
  .u-pt45-sp {
    padding-top: 4.5rem !important;
  }
  .u-pb45-sp {
    padding-bottom: 4.5rem !important;
  }
  .u-pl45-sp {
    padding-left: 4.5rem !important;
  }
  .u-pr45-sp {
    padding-right: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt40-sp {
    margin-top: 4rem !important;
  }
  .u-mb40-sp {
    margin-bottom: 4rem !important;
  }
  .u-ml40-sp {
    margin-left: 4rem !important;
  }
  .u-mr40-sp {
    margin-right: 4rem !important;
  }
  .u-pt40-sp {
    padding-top: 4rem !important;
  }
  .u-pb40-sp {
    padding-bottom: 4rem !important;
  }
  .u-pl40-sp {
    padding-left: 4rem !important;
  }
  .u-pr40-sp {
    padding-right: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt35-sp {
    margin-top: 3.5rem !important;
  }
  .u-mb35-sp {
    margin-bottom: 3.5rem !important;
  }
  .u-ml35-sp {
    margin-left: 3.5rem !important;
  }
  .u-mr35-sp {
    margin-right: 3.5rem !important;
  }
  .u-pt35-sp {
    padding-top: 3.5rem !important;
  }
  .u-pb35-sp {
    padding-bottom: 3.5rem !important;
  }
  .u-pl35-sp {
    padding-left: 3.5rem !important;
  }
  .u-pr35-sp {
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt30-sp {
    margin-top: 3rem !important;
  }
  .u-mb30-sp {
    margin-bottom: 3rem !important;
  }
  .u-ml30-sp {
    margin-left: 3rem !important;
  }
  .u-mr30-sp {
    margin-right: 3rem !important;
  }
  .u-pt30-sp {
    padding-top: 3rem !important;
  }
  .u-pb30-sp {
    padding-bottom: 3rem !important;
  }
  .u-pl30-sp {
    padding-left: 3rem !important;
  }
  .u-pr30-sp {
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt25-sp {
    margin-top: 2.5rem !important;
  }
  .u-mb25-sp {
    margin-bottom: 2.5rem !important;
  }
  .u-ml25-sp {
    margin-left: 2.5rem !important;
  }
  .u-mr25-sp {
    margin-right: 2.5rem !important;
  }
  .u-pt25-sp {
    padding-top: 2.5rem !important;
  }
  .u-pb25-sp {
    padding-bottom: 2.5rem !important;
  }
  .u-pl25-sp {
    padding-left: 2.5rem !important;
  }
  .u-pr25-sp {
    padding-right: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt20-sp {
    margin-top: 2rem !important;
  }
  .u-mb20-sp {
    margin-bottom: 2rem !important;
  }
  .u-ml20-sp {
    margin-left: 2rem !important;
  }
  .u-mr20-sp {
    margin-right: 2rem !important;
  }
  .u-pt20-sp {
    padding-top: 2rem !important;
  }
  .u-pb20-sp {
    padding-bottom: 2rem !important;
  }
  .u-pl20-sp {
    padding-left: 2rem !important;
  }
  .u-pr20-sp {
    padding-right: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt15-sp {
    margin-top: 1.5rem !important;
  }
  .u-mb15-sp {
    margin-bottom: 1.5rem !important;
  }
  .u-ml15-sp {
    margin-left: 1.5rem !important;
  }
  .u-mr15-sp {
    margin-right: 1.5rem !important;
  }
  .u-pt15-sp {
    padding-top: 1.5rem !important;
  }
  .u-pb15-sp {
    padding-bottom: 1.5rem !important;
  }
  .u-pl15-sp {
    padding-left: 1.5rem !important;
  }
  .u-pr15-sp {
    padding-right: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt10-sp {
    margin-top: 1rem !important;
  }
  .u-mb10-sp {
    margin-bottom: 1rem !important;
  }
  .u-ml10-sp {
    margin-left: 1rem !important;
  }
  .u-mr10-sp {
    margin-right: 1rem !important;
  }
  .u-pt10-sp {
    padding-top: 1rem !important;
  }
  .u-pb10-sp {
    padding-bottom: 1rem !important;
  }
  .u-pl10-sp {
    padding-left: 1rem !important;
  }
  .u-pr10-sp {
    padding-right: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt5-sp {
    margin-top: 0.5rem !important;
  }
  .u-mb5-sp {
    margin-bottom: 0.5rem !important;
  }
  .u-ml5-sp {
    margin-left: 0.5rem !important;
  }
  .u-mr5-sp {
    margin-right: 0.5rem !important;
  }
  .u-pt5-sp {
    padding-top: 0.5rem !important;
  }
  .u-pb5-sp {
    padding-bottom: 0.5rem !important;
  }
  .u-pl5-sp {
    padding-left: 0.5rem !important;
  }
  .u-pr5-sp {
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt0-sp {
    margin-top: 0rem !important;
  }
  .u-mb0-sp {
    margin-bottom: 0rem !important;
  }
  .u-ml0-sp {
    margin-left: 0rem !important;
  }
  .u-mr0-sp {
    margin-right: 0rem !important;
  }
  .u-pt0-sp {
    padding-top: 0rem !important;
  }
  .u-pb0-sp {
    padding-bottom: 0rem !important;
  }
  .u-pl0-sp {
    padding-left: 0rem !important;
  }
  .u-pr0-sp {
    padding-right: 0rem !important;
  }
}
/* --------------------------
	margin マイナス調整用
-------------------------- */
.u-mt-70-negative {
  margin-top: -7rem !important;
}

@media screen and (max-width: 767px) {
  .u-mt-40-negative-sp {
    margin-top: -4rem !important;
  }
}
/* --------------------------
	Layout
-------------------------- */
/* ----------------------------------------------------

	レイアウト設定のファイルです。
	グリッドレイアウトのスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

---------------------------------------------------- */
/* --------------------------
	グリッドシステム
-------------------------- */
.l-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-grid__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 16.667%;
}
.l-grid__item-1 {
  width: 8.33%;
}
.l-grid__item-2 {
  width: 16.667%;
}
.l-grid__item-3 {
  width: 25%;
}
.l-grid__item-4 {
  width: 33.333%;
}
.l-grid__item-5 {
  width: 41.666%;
}
.l-grid__item-6 {
  width: 50%;
}
.l-grid__item-7 {
  width: 58.333%;
}
.l-grid__item-8 {
  width: 66.666%;
}
.l-grid__item-9 {
  width: 75%;
}
.l-grid__item-10 {
  width: 83.33%;
}
.l-grid__item-11 {
  width: 91.666%;
}
.l-grid__item-12 {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l-grid__item-1-tab {
    width: 8.33%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-2-tab {
    width: 16.667%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-3-tab {
    width: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-4-tab {
    width: 33.333%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-5-tab {
    width: 41.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-6-tab {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-7-tab {
    width: 58.333%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-8-tab {
    width: 66.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-9-tab {
    width: 75%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-10-tab {
    width: 83.33%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-11-tab {
    width: 91.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid__item-12-tab {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-1-sp {
    width: 8.33%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-2-sp {
    width: 16.667%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-3-sp {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-4-sp {
    width: 33.333%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-5-sp {
    width: 41.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-6-sp {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-7-sp {
    width: 58.333%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-8-sp {
    width: 66.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-9-sp {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-10-sp {
    width: 83.33%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-11-sp {
    width: 91.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid__item-12-sp {
    width: 100%;
  }
}
.l-grid--ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-grid.l-gutter-s {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -1rem;
}
.l-grid.l-gutter-s > .l-grid__item {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.l-grid.l-gutter-m {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -2rem;
}
.l-grid.l-gutter-m > .l-grid__item {
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.l-grid.l-gutter-l {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-bottom: -4rem;
}
.l-grid.l-gutter-l > .l-grid__item {
  margin-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.l-grid.l-gutter-xl {
  margin-left: -3rem;
  margin-right: -3rem;
  margin-bottom: -6rem;
}
.l-grid.l-gutter-xl > .l-grid__item {
  margin-bottom: 6rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.l-grid.l-gutter-2l {
  margin-left: -4rem;
  margin-right: -4rem;
  margin-bottom: -8rem;
}
.l-grid.l-gutter-2l > .l-grid__item {
  margin-bottom: 8rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-s-tab {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1rem;
  }
  .l-grid.l-gutter-s-tab > .l-grid__item {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-m-tab {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }
  .l-grid.l-gutter-m-tab > .l-grid__item {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-l-tab {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -4rem;
  }
  .l-grid.l-gutter-l-tab > .l-grid__item {
    margin-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-s-sp {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1rem;
  }
  .l-grid.l-gutter-s-sp > .l-grid__item {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-m-sp {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }
  .l-grid.l-gutter-m-sp > .l-grid__item {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-l-sp {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -4rem;
  }
  .l-grid.l-gutter-l-sp > .l-grid__item {
    margin-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-grid.l-grid-mb0 > .l-grid__item {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1000px) {
  .l-grid.l-grid-mb0-tab > .l-grid__item {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-grid-mb0-sp > .l-grid__item {
    margin-bottom: 0 !important;
  }
}

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

	レイアウト設定のファイルです。
	レイアウトに関する汎用性の高いスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

---------------------------------------------------- */
.l-section {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin: 4rem 0;
  }
}

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

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-flex--aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-pos-relative {
  position: relative;
}

.l-pos-center {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.l-clearfix::after {
  clear: both;
  content: "";
  display: block;
}

.l-left {
  float: left;
}

.l-right {
  float: right;
}

/* --------------------------
	module
-------------------------- */
.header {
  background: #fff;
  height: 10rem;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  position: absolute;
  width: 100%;
  z-index: 996;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    height: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__hmbbtn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #333;
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  .header__wrap {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin-right: 1.5rem;
    height: 4rem;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 4.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__logo {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}
.header__logo-img {
  width: 34rem;
}
@media screen and (max-width: 767px) {
  .header__logo-img {
    width: 17rem;
  }
}
.header__branch {
  font-size: 2.5rem;
  font-weight: bold;
  border-left: 1px solid #707070;
  padding-left: 3.7rem;
  margin-left: 3.7rem;
  line-height: 1.3;
}
.header__branch span {
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .header__branch {
    font-size: 1.4rem;
    padding-left: 1.8rem;
    margin-left: 1.8rem;
  }
  .header__branch span {
    font-size: 0.8rem;
  }
}
.header__entry {
  width: 23rem;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  .header__entry {
    width: 90%;
    margin: 0 auto;
    margin-top: 3.5rem;
    height: 7rem;
  }
}
.header__entry a {
  background: #E50012;
  width: 100%;
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .header__entry a {
    font-size: 3rem;
  }
}
.header__entry a::after {
  content: "";
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.132" height="9.105" viewBox="0 0 22.132 9.105"><path id="arrow-icon" d="M1196.115,2015.136h19.229l-9.359-7.317" transform="translate(-1196.115 -2007.031)" fill="none" stroke="%23fff" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
  width: 3.7rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1rem;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .header__entry a::after {
    right: 6rem;
  }
}
.header__entry a:hover {
  background: #007ac3;
}
.header.hidden {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media screen and (max-width: 767px) {
  .header.hidden {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-top: 3rem;
  }
}
.header-nav__item {
  font-size: 1.8rem;
  margin-right: 4.6rem;
  font-weight: 500;
  cursor: pointer;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header-nav__item {
    display: block;
  }
}
.header-nav__item a {
  padding: 1rem;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.header-nav__item a:hover {
  color: #F5A911;
}
@media screen and (max-width: 767px) {
  .header-nav__item {
    border-bottom: 1px solid #CCC;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    margin-right: 0;
    height: auto;
  }
}
.header-nav .header-nav__trigger {
  position: relative;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .header-nav .header-nav__trigger {
    padding-right: 0;
    border-bottom: 1px solid #CCC;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    margin-right: 0;
    height: auto;
    font-weight: 500;
  }
  .header-nav .header-nav__trigger span {
    padding: 1rem;
  }
}
.header-nav .header-nav__trigger::after {
  content: "";
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-80%) rotate(135deg);
          transform: translateY(-80%) rotate(135deg);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav .header-nav__trigger::after {
    top: 1.5rem;
    right: 2rem;
  }
}
.header-nav .header-nav__trigger.active::after {
  -webkit-transform: translateY(-35%) rotate(-45deg);
          transform: translateY(-35%) rotate(-45deg);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header-nav .header-nav__trigger .header-nav__detail {
  display: none;
  width: 27rem;
  position: absolute;
  top: 10rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgb(255, 255, 255);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .header-nav .header-nav__trigger .header-nav__detail {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin: 0 auto;
    width: 90%;
  }
}
.header-nav .header-nav__trigger .header-nav__detail li {
  padding: 1rem;
  border-bottom: 1px solid #a3a0a0;
  font-size: 1.6rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .header-nav .header-nav__trigger .header-nav__detail li {
    font-size: 1.2rem;
  }
}
.header-nav .header-nav__trigger .header-nav__detail li:last-of-type {
  border-bottom: 0;
}
.header-nav .header-nav__trigger .header-nav__detail li a {
  display: inline-block;
  width: 100%;
}

.header--clone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.footer {
  background: #EEE;
  padding: 3rem 0 20rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1.5rem 0 10rem;
  }
}
.footer__logo {
  width: 21rem;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 10rem;
    margin-bottom: 1rem;
  }
}
.footer .copyright {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 0.8rem;
  }
}

.mv {
  padding-bottom: 8rem;
  position: relative;
  /* Scrollテキストの描写 */
  /* 丸の描写 */
  /* 下からの距離が変化して丸の全体が上から下に動く */
  /* 上から下にかけて丸が透過→不透明→透過する */
  /* 線の描写 */
}
@media screen and (max-width: 767px) {
  .mv {
    padding-bottom: 0;
    padding-top: 6rem;
  }
}
.mv__images {
  width: 100%;
  position: relative;
  height: 100rem;
}
@media screen and (max-width: 767px) {
  .mv__images {
    height: 45rem;
  }
}
.mv__images img {
  position: absolute;
}
.mv__wrap {
  position: absolute;
  left: 6rem;
  top: 75rem;
  z-index: 2;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .mv__wrap {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 36.5rem;
  }
}
.mv__text {
  background: #E50012;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0.7rem;
  padding: 0.3rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }
  .mv__text:first-of-type {
    display: inline-block;
    margin-bottom: 1rem;
  }
  .mv__text:last-of-type {
    margin-bottom: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.mv .points {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .mv .points {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv .point {
    margin-top: 1rem;
  }
}
.mv .scrolldown2 {
  position: absolute;
  bottom: -6rem;
  right: 2.5%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .mv .scrolldown2 {
    bottom: -100px;
    right: 7%;
  }
}
.mv .scrolldown2 span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -35rem;
  color: #1B63A7;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .mv .scrolldown2 span {
    display: none;
  }
}
.mv .scrolldown2::before {
  content: "";
  /* 描画位置 */
  position: absolute;
  bottom: 0;
  left: -4px;
  /* 丸の形状 */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1B63A7;
  /* 丸の動き1.6秒かけて透過し、永遠にループ */
  -webkit-animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
          animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}
@media screen and (max-width: 767px) {
  .mv .scrolldown2::before {
    -webkit-animation: circlemoveSp 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
            animation: circlemoveSp 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
  }
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 30rem;
  }
  100% {
    bottom: 0;
  }
}
@keyframes circlemove {
  0% {
    bottom: 30rem;
  }
  100% {
    bottom: 0;
  }
}
@-webkit-keyframes circlemoveSp {
  0% {
    bottom: 32.5rem;
  }
  100% {
    bottom: 17.5rem;
  }
}
@keyframes circlemoveSp {
  0% {
    bottom: 32.5rem;
  }
  100% {
    bottom: 17.5rem;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.mv .scrolldown2::after {
  content: "";
  /* 描画位置 */
  position: absolute;
  bottom: 0;
  left: 0;
  /* 線の形状 */
  width: 1px;
  height: 30rem;
  background: #1B63A7;
}
@media screen and (max-width: 767px) {
  .mv .scrolldown2::after {
    height: 15rem;
    bottom: 18rem;
  }
}

.menu-sp {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 995;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .menu-sp {
    top: 5.2rem;
  }
}
.menu-sp.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.formTable {
  width: 100%;
  margin-bottom: 5rem;
}
.formTable tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 3rem;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .formTable tr {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .formTable tr {
    display: block;
    background: #fff;
  }
}
.formTable tr:nth-of-type(2n) {
  background: #fff;
}
.formTable tr:nth-of-type(14) {
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .formTable tr:nth-of-type(14) {
    background: #fff;
  }
}
.formTable th {
  width: 35%;
  color: #1B63A7;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .formTable th {
    width: 100%;
    padding: 0.5rem 1rem;
    background: #F5F5F5;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: block;
  }
}
.formTable td {
  width: 70%;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .formTable td {
    width: 100%;
    background: #fff;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    display: block;
  }
}

.error-ttl {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .error-ttl {
    font-size: 1.6rem;
  }
}

.error_messe {
  color: #E50012;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .error_messe {
    font-size: 1.3rem;
  }
}

.heading-A {
  font-size: 14rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
  -webkit-text-stroke: 1px #1B63A7;
  text-stroke: 1px #1B63A7;
}
@media screen and (max-width: 767px) {
  .heading-A {
    font-size: 5rem;
  }
}

.btn-A {
  width: 23rem;
}
.btn-A a {
  color: #fff;
  background: #1B63A7;
  font-size: 1.8rem;
  display: inline-block;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  width: 100%;
  text-align: center;
  position: relative;
  border: 2px solid #1B63A7;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .btn-A a {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.btn-A a::after {
  content: "";
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.132" height="9.105" viewBox="0 0 22.132 9.105"><path id="arrow-icon" d="M1196.115,2015.136h19.229l-9.359-7.317" transform="translate(-1196.115 -2007.031)" fill="none" stroke="%23fff" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
  width: 2rem;
  height: 0.8rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-A a:hover {
  color: #1B63A7;
  background: #fff;
}
.btn-A a:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.132" height="9.105" viewBox="0 0 22.132 9.105"><path id="arrow-icon" d="M1196.115,2015.136h19.229l-9.359-7.317" transform="translate(-1196.115 -2007.031)" fill="none" stroke="%231B63A7" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}

.entry-btn {
  width: 65rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .entry-btn {
    width: 100%;
  }
}
.entry-btn a {
  color: #fff;
  display: block;
  background: #E50012;
  border: 2px solid #E50012;
  font-size: 7.2rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  position: relative;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .entry-btn a {
    font-size: 3.6rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.entry-btn a::after {
  content: "";
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.132" height="9.105" viewBox="0 0 22.132 9.105"><path id="arrow-icon" d="M1196.115,2015.136h19.229l-9.359-7.317" transform="translate(-1196.115 -2007.031)" fill="none" stroke="%23fff" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
  width: 7rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  left: 70%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .entry-btn a::after {
    width: 3.5rem;
    height: 1.5rem;
  }
}
.entry-btn a:hover {
  background: #fff;
  color: #E50012;
}
.entry-btn a:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.132" height="9.105" viewBox="0 0 22.132 9.105"><path id="arrow-icon" d="M1196.115,2015.136h19.229l-9.359-7.317" transform="translate(-1196.115 -2007.031)" fill="none" stroke="%23E50012" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}

.hmb-btn {
  position: relative;
  cursor: pointer;
  height: 6rem;
  width: 6rem;
}
.hmb-btn__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hmb-btn__hmb {
  position: relative;
  height: 2rem;
  width: 2.5rem;
}
.hmb-btn__hmb span {
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s; /* アニメーションの設定 */
  position: absolute;
  left: 0;
  height: 2px;
  background: #333;
  width: 100%;
}
.hmb-btn__hmb span:nth-of-type(1) {
  top: 0;
}
.hmb-btn__hmb span:nth-of-type(2) {
  top: 8px;
}
.hmb-btn__hmb span:nth-of-type(3) {
  top: 16px;
  background: none;
  font-size: 0.8rem;
  text-align: center;
}

.hmb-btn.active .hmb-btn__hmb span:nth-of-type(1) {
  top: 20%;
  left: 10%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 80%;
}
.hmb-btn.active .hmb-btn__hmb span:nth-of-type(2) {
  top: 20%;
  left: 10%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 80%;
}

.pagetop {
  background: url("/assets/images/top/page-top.png") no-repeat center center;
  background-size: contain;
  width: 117px;
  height: 104px;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 70px;
  }
}
.pagetop.active {
  opacity: 1;
  pointer-events: all;
}
.pagetop .bi-chevron-up::before {
  content: "";
}

/* ------------------------------
	ナビゲーション
------------------------------ */
/* ------------------------------
	ページネーション
------------------------------ */
.wp-pagenavi {
  text-align: center;
  clear: both;
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 4rem 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  background-color: #fff;
  border: none !important;
  color: #999;
  font-size: 2rem;
  padding: 0.8rem 1.5rem !important;
  margin: 0 1.5rem !important;
  white-space: nowrap;
  border-radius: 50%;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.4rem;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.5rem !important;
  }
}
.wp-pagenavi a:hover {
  color: #000;
}
.wp-pagenavi span.current {
  color: #000;
  font-weight: bold;
}

.wp-content-header {
  margin-bottom: 2rem;
}

/* ------------------------------
	Content( 記事の本文 )
------------------------------ */
.wp-content {
  line-height: 1.8;
  margin-bottom: 8rem;
  /* img */
}
.wp-content::after {
  content: "";
  clear: both;
  display: block;
}
.wp-content strong {
  font-weight: bold;
}
.wp-content em {
  font-style: italic;
}
.wp-content .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: 0;
  -webkit-margin-end: 0;
  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 {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 4rem;
  -webkit-margin-end: 4rem;
  margin: 0 0 1em;
  padding: 50px 50px 40px;
  background: #f2f2f2;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgb(248, 248, 248)));
  background: linear-gradient(to 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 );
  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: #000;
  white-space: pre-wrap; /* css-3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}

/* --------------------------
	page
-------------------------- */
.balloon {
  width: 56rem;
  background: #1B63A7;
  color: #fff;
  position: absolute;
  padding: 2rem;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -5rem;
  z-index: 1;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .balloon {
    font-size: 1.5rem;
    width: 80%;
    padding: 1rem;
    top: -3rem;
  }
}
.balloon::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 2.6rem solid #1B63A7;
  border-right: 1.8rem solid transparent;
  border-left: 1.8rem solid transparent;
}
@media screen and (max-width: 767px) {
  .balloon::after {
    bottom: -1rem;
    border-top: 1.6rem solid #1B63A7;
    border-right: 1.6rem solid transparent;
    border-left: 1.6rem solid transparent;
  }
}

.points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .points {
    gap: 0;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.point {
  border: 3px solid #1B63A7;
  background: #fff;
  padding: 1.8rem 3.5rem 4rem;
  position: relative;
  margin-bottom: 5rem;
  width: 24rem;
}
.point::after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  right: -8px;
  bottom: -8px;
  background: #1B63A7;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .point {
    padding: 1rem;
    border: 1px solid #1B63A7;
    margin-bottom: 3.5rem;
    width: calc((100% - 5px) * 2 / 3);
    margin-right: 12px;
  }
  .point::after {
    right: -5px;
    bottom: -5px;
  }
  .point:last-of-type {
    margin-right: 0;
  }
}
.point__number {
  font-size: 2.3rem;
  color: #1B63A7;
  font-weight: bold;
  position: relative;
  margin-bottom: 1rem;
  text-align: center;
}
.point__number span {
  font-size: 4.2rem;
  margin-left: 0.5rem;
}
.point__number::after {
  content: "";
  background: #1B63A7;
  height: 2px;
  width: 6rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__number {
    font-size: 1.2rem;
  }
  .point__number span {
    font-size: 2.1rem;
  }
  .point__number::after {
    width: 3rem;
    height: 1px;
  }
}
.point__text {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .point__text {
    font-size: 1.2rem;
  }
}

.text-b {
  font-weight: bold;
}

.text-red {
  color: #E50012;
}

.text-yellow {
  color: #F5A911;
}

.text-blue {
  color: #1B63A7;
}

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

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

---------------------------------------------------- */
@media screen and (max-width: 767px) {
  #about {
    scroll-margin-top: 6rem;
  }
}

.about {
  position: relative;
  margin-bottom: 20rem;
  /* カスタムスタイルの例（任意） */
}
@media screen and (max-width: 767px) {
  .about {
    scroll-margin-top: 6rem;
    margin-bottom: 10rem;
    margin-top: 8rem;
  }
}
.about::after {
  width: 100%;
  height: 130rem;
  display: inline-block;
  content: "";
  background: #F1F5F8;
  position: absolute;
  top: 0;
  top: 13rem;
  left: -14rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about::after {
    top: 4.5rem;
    left: 0;
    height: 100rem;
  }
}
.about .l-inner {
  position: relative;
}
.about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .about__flex {
    display: block;
    margin-bottom: 2.5rem;
  }
}
.about__left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about__left {
    width: 100%;
  }
}
.about__left .heading-A {
  position: absolute;
  top: 0;
  left: -10rem;
}
@media screen and (max-width: 767px) {
  .about__left .heading-A {
    position: static;
    text-align: center;
  }
}
.about__img {
  position: absolute;
  right: -27rem;
  top: 0;
  width: 90rem;
}
@media screen and (max-width: 767px) {
  .about__img {
    position: static;
    width: 100%;
    margin-bottom: 2rem;
  }
}
.about__content {
  margin-top: 24rem;
}
@media screen and (max-width: 767px) {
  .about__content {
    margin-top: 2rem;
  }
}
.about .sec-subttl {
  color: #1B63A7;
  font-size: 4.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .about .sec-subttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.about__heading {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about__heading {
    font-size: 1.7rem;
  }
}
.about__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 1.4rem;
  }
}
.about .map-inner {
  width: 136rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about .map-inner {
    width: 100%;
  }
}
.about .about-map {
  position: relative;
  padding-bottom: 40%;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about .about-map {
    padding-bottom: 56.25%;
    width: 100%;
  }
}
.about iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  #person {
    scroll-margin-top: 10rem;
  }
}

.person {
  position: relative;
}
.person__bg {
  background: url("/assets/images/top/person-bg.jpg") no-repeat center top;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .person__bg {
    margin-top: 5rem;
    background: url("/assets/images/top/person-bg-sp.jpg") no-repeat center top;
    background-size: contain;
  }
}
.person .heading-A {
  position: absolute;
  top: -12.5rem;
}
@media screen and (max-width: 767px) {
  .person .heading-A {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 4.6rem;
    white-space: nowrap;
    top: -4.6rem;
  }
}
.person__sub-ttl {
  color: #fff;
  font-size: 4.8rem;
  padding-top: 7rem;
  font-weight: bold;
}
.person__sub-ttl span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .person__sub-ttl {
    font-size: 2.4rem;
    padding-top: 3rem;
  }
  .person__sub-ttl span {
    font-size: 1.2rem;
  }
}
.person__img {
  width: 70rem;
}
@media screen and (max-width: 767px) {
  .person__img {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  #welfare {
    scroll-margin-top: 6rem;
  }
}

.welfare {
  position: relative;
}
.welfare::after {
  content: "";
  width: 100%;
  height: 200rem;
  position: absolute;
  top: -30rem;
  right: -47rem;
  background: #F1F5F8;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .welfare::after {
    top: -20rem;
    right: 0;
    height: 142rem;
  }
}
.welfare .heading-A {
  text-align: right;
  margin-right: 8.5rem;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  font-size: 18rem;
  margin-bottom: -13rem;
}
@media screen and (max-width: 767px) {
  .welfare .heading-A {
    font-size: 7rem;
    margin-right: 0;
    margin-bottom: -6rem;
  }
}
.welfare__ttl {
  font-size: 4.8rem;
  color: #1B63A7;
  text-align: center;
  margin-bottom: 3rem;
}
.welfare__ttl span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .welfare__ttl {
    font-size: 2.4rem;
  }
  .welfare__ttl span {
    font-size: 1.2rem;
  }
}

.qualification__ttl {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .qualification__ttl {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
}
.qualification__etc {
  font-size: 3rem;
  font-weight: bold;
  text-align: right;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .qualification__etc {
    font-size: 1.6rem;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 1;
  }
}

.qualification-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .qualification-list {
    gap: 1rem;
    margin-bottom: 3.5rem;
    position: relative;
  }
}
.qualification-list li {
  width: 32%;
  background: #1B63A7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem;
}
.qualification-list li:nth-of-type(2n) {
  background: #2676C2;
}
@media screen and (max-width: 767px) {
  .qualification-list li {
    width: 48%;
    padding: 0.7rem;
    gap: 1rem;
  }
  .qualification-list li:nth-of-type(2n) {
    background: #1B63A7;
  }
  .qualification-list li:nth-of-type(2), .qualification-list li:nth-of-type(3), .qualification-list li:nth-of-type(6), .qualification-list li:nth-of-type(7) {
    background: #2676C2;
  }
}
.qualification-list__icon {
  margin-right: 2.5rem;
  width: 33%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon {
    width: 25%;
    margin-right: 0;
  }
}
.qualification-list__icon--01 svg {
  width: 7.8rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--01 svg {
    width: 3.9rem;
  }
}
.qualification-list__icon--02 svg {
  width: 9.7rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--02 svg {
    width: 4.8rem;
  }
}
.qualification-list__icon--03 svg {
  width: 7.7rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--03 svg {
    width: 3.8rem;
  }
}
.qualification-list__icon--04 svg {
  width: 7.4rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--04 svg {
    width: 3.7rem;
  }
}
.qualification-list__icon--05 svg {
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--05 svg {
    width: 3.5rem;
  }
}
.qualification-list__icon--06 svg {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--06 svg {
    width: 3rem;
  }
}
.qualification-list__icon--07 svg {
  width: 8.2rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--07 svg {
    width: 4.1rem;
  }
}
.qualification-list__icon--08 svg {
  width: 8.7rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--08 svg {
    width: 4.3rem;
  }
}
.qualification-list__icon--09 svg {
  width: 6.8rem;
}
@media screen and (max-width: 767px) {
  .qualification-list__icon--09 svg {
    width: 3.4rem;
  }
}
.qualification-list__name {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .qualification-list__name {
    font-size: 1.1rem;
  }
}

.benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 23rem;
}
@media screen and (max-width: 767px) {
  .benefit {
    display: block;
    margin-bottom: 11rem;
  }
}
.benefit__images {
  width: 64rem;
  height: 42rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .benefit__images {
    width: 95%;
    height: 23rem;
    margin-bottom: 3.5rem;
  }
}
.benefit__images .benefit-01, .benefit__images .benefit-02, .benefit__images .benefit-03, .benefit__images .benefit-04, .benefit__images .benefit-05, .benefit__images .benefit-06 {
  position: absolute;
  left: -5rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .benefit__images .benefit-01, .benefit__images .benefit-02, .benefit__images .benefit-03, .benefit__images .benefit-04, .benefit__images .benefit-05, .benefit__images .benefit-06 {
    left: auto;
    right: 0;
    top: 0;
    width: 85%;
  }
}
.benefit__images .benefit-01 {
  z-index: 3;
}
.benefit__images .benefit-02 {
  z-index: 2;
}
.benefit__images .benefit-03 {
  z-index: 1;
}
.benefit__images .benefit-04, .benefit__images .benefit-05, .benefit__images .benefit-06 {
  z-index: 1;
  opacity: 0;
}
.benefit__wrap {
  width: 55%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .benefit__wrap {
    width: 100%;
  }
}
.benefit__ttl {
  font-size: 3.5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .benefit__ttl {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
}
.benefit__text {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .benefit__text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  #voice {
    scroll-margin-top: 10rem;
  }
}

.voice {
  padding-bottom: 20rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice {
    padding-bottom: 0;
    margin-bottom: 10rem;
  }
}
.voice__wrap {
  width: 45%;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice__wrap {
    width: 100%;
  }
}
.voice .heading-A {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -14rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .voice .heading-A {
    top: -5rem;
  }
}
.voice__sub-ttl {
  font-size: 4.8rem;
  color: #1B63A7;
  margin-bottom: 4rem;
}
.voice__sub-ttl span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .voice__sub-ttl {
    font-size: 2.4rem;
    margin-bottom: 0;
    margin-left: 8%;
  }
  .voice__sub-ttl span {
    font-size: 1.2rem;
  }
}
.voice .btn-A {
  margin-left: auto;
  position: absolute;
  right: 0;
  top: 14rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .voice .btn-A {
    width: 70%;
    position: absolute;
    left: 50%;
    right: auto;
    top: 45rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.conditions {
  position: relative;
}
.conditions::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #F1F5F8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.conditions .l-inner {
  position: relative;
}
.conditions .heading-A {
  position: absolute;
  top: -11rem;
}
@media screen and (max-width: 767px) {
  .conditions .heading-A {
    top: -4.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.conditions__sub-ttl {
  font-size: 4.8rem;
  color: #1B63A7;
  text-align: center;
  margin-bottom: 9rem;
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .conditions__sub-ttl {
    font-size: 2.4rem;
    margin-bottom: 4.5rem;
  }
}
.conditions__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .conditions__flex {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .conditions .balloon {
    top: -4rem;
  }
}

.conditions-item {
  position: relative;
  width: 50%;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.conditions-item img {
  width: 100%;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.conditions-item:hover {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.conditions-item:hover .conditions-item__img img {
  scale: 1.05;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.conditions-item:nth-of-type(2) {
  margin-top: 14rem;
}
@media screen and (max-width: 767px) {
  .conditions-item:nth-of-type(2) {
    margin-top: 5rem;
  }
}
.conditions-item__img {
  overflow: hidden;
}
.conditions-item__wrap {
  color: #fff;
  position: absolute;
  left: 8rem;
  top: 28rem;
  line-height: 1.5;
  width: 72rem;
}
@media screen and (max-width: 767px) {
  .conditions-item__wrap {
    background: #1B63A7;
    position: static;
    padding: 1.5rem 1rem;
    width: 100%;
  }
}
.conditions-item__ttl {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .conditions-item__ttl {
    position: absolute;
    font-size: 1.6rem;
    margin-bottom: 0;
    top: 10rem;
    left: 1.5rem;
  }
}
.conditions-item__subttl {
  font-size: 3.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .conditions-item__subttl {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.conditions-item__text {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .conditions-item__text {
    font-size: 1.3rem;
  }
}

.affiliation__ttl {
  position: relative;
}
.affiliation__ttl h3 {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
  background: #2676C2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 7rem;
}
@media screen and (max-width: 767px) {
  .affiliation__ttl h3 {
    font-size: 2rem;
    padding: 0 3.5rem;
    white-space: nowrap;
  }
}
.affiliation__triangle {
  width: 39rem;
  height: 18rem;
  border-style: solid;
  border-right: 20rem solid transparent;
  border-left: 20rem solid transparent;
  border-top: 18rem solid #8AC2F8;
  border-bottom: 0;
  margin: 0 auto 2.8rem;
}
@media screen and (max-width: 767px) {
  .affiliation__triangle {
    width: 19rem;
    height: 9rem;
    border-right: 10rem solid transparent;
    border-left: 9rem solid transparent;
    border-top: 9rem solid #8AC2F8;
  }
}
.affiliation__list {
  padding: 8rem 13rem;
  border: 3px solid #1B63A7;
  position: relative;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 21rem;
}
@media screen and (max-width: 767px) {
  .affiliation__list {
    padding: 2.5rem;
    border: 1.5px solid #1B63A7;
    margin-bottom: 6rem;
  }
}
.affiliation__list::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -8px;
  bottom: -8px;
  background: #1B63A7;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .affiliation__list::after {
    right: -5px;
    bottom: -5px;
  }
}
.affiliation__item {
  color: #F5A911;
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 1px solid #F5A911;
  width: calc(33.3% - 6.6666666667rem);
  margin-right: 10rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.affiliation__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .affiliation__item {
    font-size: 1.3rem;
    width: calc(33.3% - 1rem);
    margin-right: 1.5rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.regular {
  position: relative;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .regular {
    padding-bottom: 6rem;
  }
}
.regular dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .regular dl {
    display: block;
  }
}
.regular dl dt {
  color: #1B63A7;
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 1px solid #1B63A7;
  width: 20%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .regular dl dt {
    width: 100%;
    font-size: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 0;
  }
}
.regular dl dd {
  width: 80%;
  font-size: 2rem;
  border-bottom: 1px solid #CCC;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 4.5rem;
}
@media screen and (max-width: 767px) {
  .regular dl dd {
    width: 100%;
    font-size: 1.4rem;
    padding-top: 1.5rem;
    padding-bottom: 0;
    padding-left: 0;
    border-bottom: none;
  }
}
.regular dl dd span {
  font-weight: bold;
  display: block;
}
.regular dl dd a {
  color: #1B63A7;
  text-decoration: underline;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.regular dl dd a:hover {
  color: #F5A911;
}
.regular dl .regular__ttl {
  color: #1B63A7;
  font-weight: bold;
  font-size: 3.5rem;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .regular dl .regular__ttl {
    font-size: 2.4rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .regular dl:first-of-type dt {
    border-top: none;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .regular dl:first-of-type dd {
    border-top: none;
  }
}
.regular dl .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.regular__wrap {
  background: #fff;
  padding: 10rem 6rem;
}
@media screen and (max-width: 767px) {
  .regular__wrap {
    padding: 4.5rem 2rem;
  }
}
.regular__note {
  font-size: 2rem;
  padding: 1rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .regular__note {
    font-size: 1.4rem;
    padding-bottom: 1.5rem;
  }
}
.regular__flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .regular__flex {
    display: block;
    margin-top: 0rem;
  }
}
@media screen and (max-width: 767px) {
  .regular__rotation, .regular__daytime {
    width: 100%;
  }
}
.regular__rotation p, .regular__daytime p {
  margin-bottom: 4rem;
}
.regular__rotation p:last-of-type, .regular__daytime p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .regular__rotation p, .regular__daytime p {
    margin-bottom: 3rem;
  }
}
.regular__text-wrap {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .regular__text-wrap {
    padding: 0;
    margin-bottom: 1rem;
  }
}
.regular__sample {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .regular__sample {
    margin-top: 2rem;
  }
}
.regular__rotation-ttl {
  width: 100%;
  font-size: 2.5rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #8AC2F8;
  font-weight: bold;
  padding-left: 2.5rem;
  color: #fff;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .regular__rotation-ttl {
    font-size: 1.4rem;
    padding-left: 1.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
}
.regular__daytime-ttl {
  margin-bottom: 0;
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  padding-left: 2.5rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: #fff;
  background: #5097DB;
}
@media screen and (max-width: 767px) {
  .regular__daytime-ttl {
    font-size: 1.4rem;
    padding-left: 1.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
}
.regular__common-ttl {
  margin-bottom: 0;
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  padding-left: 2.5rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: #fff;
  background: #1B63A7;
}
@media screen and (max-width: 767px) {
  .regular__common-ttl {
    font-size: 1.4rem;
    padding-left: 1.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .regular .b-none {
    margin-bottom: 2rem;
  }
}
.regular .b-none dt,
.regular .b-none dd {
  border: none;
}
@media screen and (max-width: 767px) {
  .regular .b-none dt {
    border-bottom: 1px solid #1B63A7;
  }
}

.flow {
  background: #fff;
  position: relative;
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 6rem;
    padding-bottom: 3.5rem;
  }
}
.flow .l-inner {
  position: static;
}

.flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .flow-step {
    margin-bottom: 2rem;
  }
}
.flow-step dt {
  color: #fff;
  font-size: 3.3rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  width: 20%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .flow-step dt {
    font-size: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.5;
  }
}
.flow-step dt::after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 2.6rem solid #1B63A7;
  border-right: 1.8rem solid transparent;
  border-left: 1.8rem solid transparent;
}
@media screen and (max-width: 767px) {
  .flow-step dt::after {
    bottom: -1.5rem;
    border-top: 1.9rem solid #1B63A7;
    border-right: 1.3rem solid transparent;
    border-left: 1.3rem solid transparent;
  }
}
.flow-step dt span {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .flow-step dt span {
    font-size: 3rem;
    display: block;
  }
}
.flow-step dd {
  padding: 5rem 4rem;
  background: #F1F5F8;
  width: 80%;
  min-height: 24rem;
}
@media screen and (max-width: 767px) {
  .flow-step dd {
    padding: 1.6rem 1.2rem;
    min-height: 12rem;
  }
}
.flow-step__ttl {
  color: #1B63A7;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .flow-step__ttl {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.flow-step__text {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .flow-step__text {
    font-size: 1.4rem;
  }
}

.step-01 dt {
  background: #8AC2F8;
}
.step-01 dt::after {
  border-top: 2.6rem solid #8AC2F8;
}
@media screen and (max-width: 767px) {
  .step-01 dt::after {
    border-top: 1.9rem solid #8AC2F8;
  }
}

.step-02 dt {
  background: #5097DB;
}
.step-02 dt::after {
  border-top: 2.6rem solid #5097DB;
}
@media screen and (max-width: 767px) {
  .step-02 dt::after {
    border-top: 1.9rem solid #5097DB;
  }
}

.step-03 dt {
  background: #3581C9;
}
.step-03 dt::after {
  border-top: 2.6rem solid #3581C9;
}
@media screen and (max-width: 767px) {
  .step-03 dt::after {
    border-top: 1.9rem solid #3581C9;
  }
}

.step-04 dt {
  background: #1B63A7;
}
.step-04 dt::after {
  content: none;
}
.step-04 dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.step-04 dd p {
  margin-bottom: 0;
}

.entry {
  padding-top: 3.8rem;
  padding-bottom: 6rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .entry {
    padding-top: 2rem;
    padding-bottom: 2.8rem;
  }
}
.entry__text {
  color: #E50012;
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .entry__text {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #anchor-conditions01,
  #anchor-conditions02,
  #anchor-flow {
    scroll-margin-top: 6rem;
  }
}

.swiper-content {
  overflow: hidden;
  margin-top: -7rem;
}
@media screen and (max-width: 767px) {
  .swiper-content {
    margin-top: -6rem;
  }
}

.swiper {
  padding-top: 17rem !important;
  overflow: visible !important;
}
@media screen and (max-width: 767px) {
  .swiper {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-top: 7rem !important;
    padding-bottom: 5rem !important;
  }
}
.swiper .swiper-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-left: -45rem;
}
@media screen and (max-width: 767px) {
  .swiper .swiper-wrapper {
    margin-left: 0;
  }
}
.swiper .swiper-slide {
  opacity: 0.3; /* 左右のスライドを薄くする */
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important; /* 左右のスライドを小さくする */ /* ゆっくり小さくさせる */
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  cursor: pointer;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .swiper .swiper-slide:nth-of-type(4), .swiper .swiper-slide:nth-of-type(5), .swiper .swiper-slide:nth-of-type(6) {
    display: none !important;
  }
}
.swiper .swiper-slide:hover {
  opacity: 0.7;
}
.swiper .swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper .swiper-slide .swiper-img {
  position: relative;
}
.swiper .swiper-slide .swiper-img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(27, 99, 167)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(27, 99, 167) 100%);
}
.swiper .swiper-slide .swiper-img .swiper-wrap {
  position: absolute;
  color: #fff;
  bottom: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 90%;
  margin: 0 auto;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  opacity: 0;
  line-height: 1.3;
}
.swiper .swiper-slide .swiper-img .swiper-division {
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .swiper .swiper-slide .swiper-img .swiper-division {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
  }
}
.swiper .swiper-slide .swiper-img .swiper-history {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .swiper .swiper-slide .swiper-img .swiper-history {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
  }
}
.swiper .swiper-slide .swiper-img .swiper-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .swiper .swiper-slide .swiper-img .swiper-text {
    font-size: 1.3rem;
  }
}
.swiper .swiper-slide-active {
  opacity: 1; /* 中央のスライドは薄くしない */
  -webkit-transform: scale(1.3) !important;
          transform: scale(1.3) !important; /* 中央のスライドは小さくしない */
  z-index: 1; /* 中央のスライドを一番上にする */
  height: auto;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  margin-right: 10rem !important;
  margin-left: 6rem !important;
}
@media screen and (max-width: 767px) {
  .swiper .swiper-slide-active {
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
    margin-right: 15px !important;
    margin-left: auto !important;
  }
}
.swiper .swiper-slide-active .swiper-wrap {
  opacity: 1 !important;
}

.swiper-button-next {
  width: 7rem !important;
  height: 7rem !important;
  right: 74rem !important;
  top: 17rem !important;
}
.swiper-button-next::after {
  content: "" !important;
  width: 7rem !important;
  height: 7rem !important;
  background: url("/assets/images/top/next-icon.png") no-repeat center center !important;
  background-size: contain !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    width: 5rem !important;
    height: 5rem !important;
    right: 12.5rem !important;
    top: 47rem !important;
  }
}

.swiper-button-next.swiper-button-disabled {
  opacity: 1 !important;
}
.swiper-button-next.swiper-button-disabled::after {
  background: url("/assets/images/top/next-disable.png") no-repeat center center !important;
  background-size: contain !important;
}

.swiper-button-prev {
  width: 7rem !important;
  height: 7rem !important;
  left: 100rem !important;
  top: 17rem !important;
}
.swiper-button-prev::after {
  content: "" !important;
  width: 7rem !important;
  height: 7rem !important;
  background: url("/assets/images/top/prev-icon.png") no-repeat center center !important;
  background-size: contain !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    width: 5rem !important;
    height: 5rem !important;
    left: 12.5rem !important;
    top: 47rem !important;
  }
}

.swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
}
.swiper-button-prev.swiper-button-disabled::after {
  background: url("/assets/images/top/prev-disable.png") no-repeat center center !important;
  background-size: contain !important;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 998;
}

.modal-content {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .modal-content {
    width: 90%;
    padding: 5%;
  }
}

.close {
  color: #fff;
  float: right;
  font-size: 8rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: -9rem;
  top: -12rem;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .close {
    font-size: 4rem;
    top: -6rem;
    right: 0;
  }
}

.close:hover {
  opacity: 0.7;
}

#modalData {
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  #modalData {
    display: block;
    padding: 0;
  }
}
#modalData .modal-img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #modalData .modal-img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#modalData .modal-wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #modalData .modal-wrap {
    width: 100%;
  }
}
#modalData .modal-wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  #modalData .modal-wrap dl {
    display: block;
  }
}
#modalData .modal-wrap dl dt {
  color: #1B63A7;
  font-size: 2.5rem;
  font-weight: bold;
  border-top: 1px solid #1B63A7;
  width: 20%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #modalData .modal-wrap dl dt {
    width: 100%;
    font-size: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
#modalData .modal-wrap dl dd {
  width: 80%;
  font-size: 2rem;
  border-top: 1px solid #CCC;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 4.5rem;
}
@media screen and (max-width: 767px) {
  #modalData .modal-wrap dl dd {
    width: 100%;
    font-size: 1.4rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 0;
  }
}
#modalData .modal-wrap dl dd span {
  font-weight: bold;
  display: block;
}
#modalData .modal-wrap dl dd a {
  color: #1B63A7;
  text-decoration: underline;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#modalData .modal-wrap dl dd a:hover {
  color: #F5A911;
}
#modalData .modal-wrap dl .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#modalData .modal-division {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #1B63A7;
}
@media screen and (max-width: 767px) {
  #modalData .modal-division {
    font-size: 1.8rem;
  }
}
#modalData .modal-history {
  font-size: 2rem;
  margin-bottom: 4.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #modalData .modal-history {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
#modalData .modal-text {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #modalData .modal-text {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .voice-modal {
    max-height: 65vh;
    overflow-y: auto;
    overscroll-behavior-y: contain;
  }
}

.interview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .interview {
    margin-bottom: 2rem;
  }
}
.interview__img {
  margin-right: 4rem;
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .interview__img {
    margin-right: 2rem;
    width: 13rem;
  }
}
.interview__division {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .interview__division {
    font-size: 1.8rem;
  }
}
.interview__name {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview__name {
    font-size: 1.6rem;
  }
}
.interview__wrap {
  width: 70%;
}

.iv-contents {
  height: 35vh;
  overflow-y: auto;
  padding-right: 3rem;
  font-weight: 500;
  overscroll-behavior-y: contain;
}
@media screen and (max-width: 767px) {
  .iv-contents {
    padding-right: 2rem;
    height: 47vh;
  }
}
.iv-contents::-webkit-scrollbar {
  background: #F0EEEC;
  width: 2rem;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .iv-contents::-webkit-scrollbar {
    width: 1rem;
  }
}
.iv-contents::-webkit-scrollbar-thumb {
  background-color: #1B63A7;
  border-radius: 20px;
}

.iv-question {
  font-size: 2rem;
  color: #1B63A7;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .iv-question {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

.iv-answer {
  font-size: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .iv-answer {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .modal-disc {
    padding-left: 1.5rem;
  }
}
.modal-disc li {
  position: relative;
}
.modal-disc li::after {
  content: "●";
  color: #1B63A7;
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  left: -2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .modal-disc li::after {
    font-size: 0.5rem;
    left: -1rem;
    top: 1.3rem;
  }
}

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

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

---------------------------------------------------- */
.entry {
  cursor: default;
  padding-top: 10rem;
  background: #F1F5F8;
}
@media screen and (max-width: 767px) {
  .entry {
    padding-top: 6rem;
  }
}
.entry .ttl_page {
  position: relative;
  z-index: 1;
}
.entry .ttl_page .ttl__bg {
  text-align: right;
  display: block;
}
.entry .ttl_page .entry__inner {
  position: absolute;
  top: 15%;
  left: 0;
  display: block;
  right: 0;
  background: transparent;
  padding: 0;
}
.entry .ttl_page .ttl-en {
  display: block;
  font-size: 4.8rem;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.entry .ttl_page .ttl-en::first-letter {
  color: #0074be;
}
.entry .ttl_page .ttl-ja {
  display: block;
  color: #0074be;
  font-size: 1.6rem;
}
.entry__ttl {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .entry__ttl {
    margin-bottom: 2rem;
  }
}
.entry__ttl span {
  display: block;
  color: #0074be;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .entry__ttl span {
    font-size: 2.4rem;
  }
}
.entry__info {
  text-align: center;
}
.entry .progress-img {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .entry .progress-img {
    margin-bottom: 3rem;
  }
}
.entry .entry-form__text {
  font-size: 2rem;
  color: #333;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .entry .entry-form__text {
    font-size: 1.7rem;
    text-align: left;
    width: 90%;
    margin: 0 auto 2.5rem;
  }
}
.entry__bg {
  position: relative;
  top: -12rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .entry__bg {
    top: -4.5rem;
  }
}
.entry__inner {
  width: 136rem;
  margin: 0 auto;
  padding: 3rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .entry__inner {
    width: 90%;
    padding: 2rem;
  }
}
.entry__border {
  border: 1px solid silver;
}

.form .gray {
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .form .gray {
    background: #fff;
  }
}
.form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 3rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .form dl {
    display: block;
    padding: 0;
  }
}
.form dt {
  width: 35%;
  color: #1B63A7;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .form dt {
    background: #e6e6e6;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
  }
}
.form dd {
  width: 70%;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .form dd {
    background: #fff;
    width: 100%;
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
}
.form dd .w100 {
  width: 100%;
}
.form .require {
  position: relative;
}
.form .require::after {
  content: "※必須";
  font-size: 1.6rem;
  color: #E50012;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: -6rem;
}
@media screen and (max-width: 767px) {
  .form .require::after {
    font-size: 1rem;
    right: -4rem;
  }
}
.form select,
.form input[type=text],
.form input[type=number],
.form input[type=tel],
.form input[type=email] {
  border: 1px solid #CCC;
  font-size: 2rem;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .form select,
  .form input[type=text],
  .form input[type=number],
  .form input[type=tel],
  .form input[type=email] {
    width: 100%;
    font-size: 1.4rem;
    padding: 1.5rem;
  }
}
.form .postal-code {
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .form .postal-code {
    width: 50% !important;
    margin: 0 1rem;
  }
}
.form select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form .gender-1 {
  padding-right: 3rem;
}
.form .select-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .form .select-flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.form .select-arrow {
  margin-right: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form .select-arrow {
    width: calc(33.3333333333% - 1rem);
    margin-right: 0;
  }
}
.form .select-arrow::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #0074be;
  border-right: 1px solid #0074be;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width: 767px) {
  .form .select-arrow::after {
    width: 0.8rem;
    height: 0.8rem;
    right: 1.5rem;
  }
}
.form #age {
  width: 11rem;
}
.form #pref,
.form #city {
  margin-bottom: 1rem;
}
.form #pref input {
  width: 40%;
}
.form #city input {
  width: 60%;
}
.form #area input {
  width: 80%;
}
.form .adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .form .adress {
    display: block;
  }
}
.form .adress span {
  display: block;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .form .adress span {
    width: 100%;
  }
}
.form #year, .form #year2, .form #year3, .form #month, .form #month2, .form #month3, .form #day, .form #day2, .form #day3 {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .form #year, .form #year2, .form #year3, .form #month, .form #month2, .form #month3, .form #day, .form #day2, .form #day3 {
    width: 100%;
  }
}
.form .division,
.form .gender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .form .division,
  .form .gender {
    display: block;
  }
}
.form .division-1,
.form .division-2 {
  margin-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form .division-1,
  .form .division-2 {
    margin-right: 0;
  }
}
.form .radio {
  margin: 0.5rem;
}
.form .radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.form .radio input[type=radio] + .radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form .radio input[type=radio] + .radio-label::before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #bfbfbf;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.form .radio input[type=radio]:checked + .radio-label::before {
  background-color: #3197EE;
  -webkit-box-shadow: inset 0 0 0 4px #fff;
          box-shadow: inset 0 0 0 4px #fff;
}
.form .radio input[type=radio]:focus + .radio-label::before {
  outline: none;
  border-color: #3197EE;
}
.form .radio input[type=radio]:disabled + .radio-label::before {
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.form .radio input[type=radio] + .radio-label:empty::before {
  margin-right: 0;
}
.form textarea {
  font-size: 2rem;
  padding: 0.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form textarea {
    font-size: 1.6rem;
  }
}
.form .privacy-policy {
  padding: 2rem;
  margin: 0 0 6rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .form .privacy-policy {
    background: #e6e6e6;
    padding: 1rem;
    margin: 2.5rem 0 4rem;
    font-size: 1.4rem;
  }
}
.form__checkbox {
  margin-bottom: 1rem;
  display: block;
}
.form__agree {
  cursor: pointer;
}
.form__agree input {
  cursor: pointer;
}

.btn-confirm {
  width: 23rem;
  margin: 0 auto;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn-confirm {
    width: 17rem;
  }
}
.btn-confirm button {
  color: #fff;
  background: #0074be;
  border: 1px solid #0074be;
  display: block;
  padding: 2rem;
  margin: 0 auto 6rem;
  text-align: center;
  font-size: 1.6rem;
  width: 100%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn-confirm button {
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
.btn-confirm::after {
  content: "";
  width: 2rem;
  height: 0.7rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.132" height="9.105" viewBox="0 0 22.132 9.105"><path id="arrow-icon" d="M1196.115,2015.136h19.229l-9.359-7.317" transform="translate(-1196.115 -2007.031)" fill="none" stroke="%23fff" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2rem;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-confirm:hover button {
  background: #fff;
  color: #0074be;
}
.btn-confirm:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.132" height="9.105" viewBox="0 0 22.132 9.105"><path id="arrow-icon" d="M1196.115,2015.136h19.229l-9.359-7.317" transform="translate(-1196.115 -2007.031)" fill="none" stroke="%231B63A7" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}

.btn-post {
  margin-bottom: 3.5rem;
}
.btn-post input[type=submit] {
  font-size: 1.6rem;
  background: #E50012;
  cursor: pointer;
  padding: 2rem;
  font-weight: bold;
  width: 100%;
  color: #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  border: 1px solid #E50012;
}
.btn-post:hover input[type=submit] {
  background: #fff;
  color: #E50012;
}
.btn-post:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.132" height="9.105" viewBox="0 0 22.132 9.105"><path id="arrow-icon" d="M1196.115,2015.136h19.229l-9.359-7.317" transform="translate(-1196.115 -2007.031)" fill="none" stroke="%23E50012" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}

.btn-prev {
  width: 23rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn-prev {
    width: 17rem;
  }
}
.btn-prev input[type=button] {
  cursor: pointer;
  color: #fff;
  background: #CCC;
  border: 1px solid #ccc;
  display: block;
  padding: 2rem;
  margin: 0 auto 6rem;
  text-align: center;
  font-size: 1.6rem;
  width: 100%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .btn-prev input[type=button] {
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
.btn-prev::after {
  content: "";
  width: 2rem;
  height: 0.7rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.131" height="9.105" viewBox="0 0 22.131 9.105"><path d="M1215.343,2015.136h-19.229l9.359-7.317" transform="translate(-1193.212 -2007.031)" fill="none" stroke="%23fff" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
  position: absolute;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2rem;
}
.btn-prev:hover input[type=button] {
  color: #ccc;
  background: #fff;
}
.btn-prev:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.131" height="9.105" viewBox="0 0 22.131 9.105"><path d="M1215.343,2015.136h-19.229l9.359-7.317" transform="translate(-1193.212 -2007.031)" fill="none" stroke="%23ccc" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}

.complete__prev a {
  cursor: pointer;
  color: #fff;
  background: #CCC;
  border: 1px solid #ccc;
  display: block;
  padding: 2rem;
  margin: 0 auto 6rem;
  text-align: center;
  font-size: 1.6rem;
  width: 100%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .complete__prev a {
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
.complete__prev:hover a {
  color: #1B63A7;
  background: #fff;
  border: 1px solid #1B63A7;
}
.complete__prev:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22.131" height="9.105" viewBox="0 0 22.131 9.105"><path d="M1215.343,2015.136h-19.229l9.359-7.317" transform="translate(-1193.212 -2007.031)" fill="none" stroke="%231B63A7" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}

.complete {
  text-align: center;
}
.complete__ttl {
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 9rem;
  color: #0074be;
}
@media screen and (max-width: 767px) {
  .complete__ttl {
    font-size: 2.5rem;
    margin-bottom: 4.5rem;
  }
}
.complete__ttl::after {
  content: "";
  height: 2px;
  width: 15rem;
  background: #0074be;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -3rem;
}
@media screen and (max-width: 767px) {
  .complete__ttl::after {
    width: 7rem;
    bottom: -1.5rem;
  }
}
.complete__text {
  font-size: 2rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .complete__text {
    font-size: 1.4rem;
    margin-bottom: 5rem;
  }
}
.complete__prev a {
  background: #1B63A7;
}

/* --------------------------
	animation
-------------------------- */
/* ----------------------------------------------------
  リサイズ時のtransition停止
---------------------------------------------------- */
body.transition-stop * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* ----------------------------------------------------
  見出し アニメーション
---------------------------------------------------- */
.a-heading-01 {
  opacity: 0;
  -webkit-transition: 0.65s;
  transition: 0.65s;
}
.a-heading-01.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);
          transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
}
.a-anim-txts > span:nth-child(1) {
  -webkit-transition: 0.65s 0.0625s;
  transition: 0.65s 0.0625s;
}
.a-anim-txts > span:nth-child(2) {
  -webkit-transition: 0.65s 0.125s;
  transition: 0.65s 0.125s;
}
.a-anim-txts > span:nth-child(3) {
  -webkit-transition: 0.65s 0.1875s;
  transition: 0.65s 0.1875s;
}
.a-anim-txts > span:nth-child(4) {
  -webkit-transition: 0.65s 0.25s;
  transition: 0.65s 0.25s;
}
.a-anim-txts > span:nth-child(5) {
  -webkit-transition: 0.65s 0.3125s;
  transition: 0.65s 0.3125s;
}
.a-anim-txts > span:nth-child(6) {
  -webkit-transition: 0.65s 0.375s;
  transition: 0.65s 0.375s;
}
.a-anim-txts > span:nth-child(7) {
  -webkit-transition: 0.65s 0.4375s;
  transition: 0.65s 0.4375s;
}
.a-anim-txts > span:nth-child(8) {
  -webkit-transition: 0.65s 0.5s;
  transition: 0.65s 0.5s;
}
.a-anim-txts > span:nth-child(9) {
  -webkit-transition: 0.65s 0.5625s;
  transition: 0.65s 0.5625s;
}
.a-anim-txts > span:nth-child(10) {
  -webkit-transition: 0.65s 0.625s;
  transition: 0.65s 0.625s;
}
.a-anim-txts > span:nth-child(11) {
  -webkit-transition: 0.65s 0.6875s;
  transition: 0.65s 0.6875s;
}
.a-anim-txts > span:nth-child(12) {
  -webkit-transition: 0.65s 0.75s;
  transition: 0.65s 0.75s;
}
.a-anim-txts > span:nth-child(13) {
  -webkit-transition: 0.65s 0.8125s;
  transition: 0.65s 0.8125s;
}
.a-anim-txts > span:nth-child(14) {
  -webkit-transition: 0.65s 0.875s;
  transition: 0.65s 0.875s;
}
.a-anim-txts > span:nth-child(15) {
  -webkit-transition: 0.65s 0.9375s;
  transition: 0.65s 0.9375s;
}
.a-anim-txts > span:nth-child(16) {
  -webkit-transition: 0.65s 1s;
  transition: 0.65s 1s;
}
.a-anim-txts > span:nth-child(17) {
  -webkit-transition: 0.65s 1.0625s;
  transition: 0.65s 1.0625s;
}
.a-anim-txts > span:nth-child(18) {
  -webkit-transition: 0.65s 1.125s;
  transition: 0.65s 1.125s;
}
.a-anim-txts > span:nth-child(19) {
  -webkit-transition: 0.65s 1.1875s;
  transition: 0.65s 1.1875s;
}
.a-anim-txts > span:nth-child(20) {
  -webkit-transition: 0.65s 1.25s;
  transition: 0.65s 1.25s;
}
.a-anim-txts > span:nth-child(21) {
  -webkit-transition: 0.65s 1.3125s;
  transition: 0.65s 1.3125s;
}
.a-anim-txts > span:nth-child(22) {
  -webkit-transition: 0.65s 1.375s;
  transition: 0.65s 1.375s;
}
.a-anim-txts > span:nth-child(23) {
  -webkit-transition: 0.65s 1.4375s;
  transition: 0.65s 1.4375s;
}
.a-anim-txts > span:nth-child(24) {
  -webkit-transition: 0.65s 1.5s;
  transition: 0.65s 1.5s;
}
.a-anim-txts > span:nth-child(25) {
  -webkit-transition: 0.65s 1.5625s;
  transition: 0.65s 1.5625s;
}
.a-anim-txts > span:nth-child(26) {
  -webkit-transition: 0.65s 1.625s;
  transition: 0.65s 1.625s;
}
.a-anim-txts > span:nth-child(27) {
  -webkit-transition: 0.65s 1.6875s;
  transition: 0.65s 1.6875s;
}
.a-anim-txts > span:nth-child(28) {
  -webkit-transition: 0.65s 1.75s;
  transition: 0.65s 1.75s;
}
.a-anim-txts > span:nth-child(29) {
  -webkit-transition: 0.65s 1.8125s;
  transition: 0.65s 1.8125s;
}
.a-anim-txts > span:nth-child(30) {
  -webkit-transition: 0.65s 1.875s;
  transition: 0.65s 1.875s;
}
.a-anim-txts > span:nth-child(31) {
  -webkit-transition: 0.65s 1.9375s;
  transition: 0.65s 1.9375s;
}
.a-anim-txts > span:nth-child(32) {
  -webkit-transition: 0.65s 2s;
  transition: 0.65s 2s;
}
.a-anim-txts > span:nth-child(33) {
  -webkit-transition: 0.65s 2.0625s;
  transition: 0.65s 2.0625s;
}
.a-anim-txts > span:nth-child(34) {
  -webkit-transition: 0.65s 2.125s;
  transition: 0.65s 2.125s;
}
.a-anim-txts > span:nth-child(35) {
  -webkit-transition: 0.65s 2.1875s;
  transition: 0.65s 2.1875s;
}
.a-anim-txts > span:nth-child(36) {
  -webkit-transition: 0.65s 2.25s;
  transition: 0.65s 2.25s;
}
.a-anim-txts > span:nth-child(37) {
  -webkit-transition: 0.65s 2.3125s;
  transition: 0.65s 2.3125s;
}
.a-anim-txts > span:nth-child(38) {
  -webkit-transition: 0.65s 2.375s;
  transition: 0.65s 2.375s;
}
.a-anim-txts > span:nth-child(39) {
  -webkit-transition: 0.65s 2.4375s;
  transition: 0.65s 2.4375s;
}
.a-anim-txts > span:nth-child(40) {
  -webkit-transition: 0.65s 2.5s;
  transition: 0.65s 2.5s;
}
.a-anim-txts > span:nth-child(41) {
  -webkit-transition: 0.65s 2.5625s;
  transition: 0.65s 2.5625s;
}
.a-anim-txts > span:nth-child(42) {
  -webkit-transition: 0.65s 2.625s;
  transition: 0.65s 2.625s;
}
.a-anim-txts > span:nth-child(43) {
  -webkit-transition: 0.65s 2.6875s;
  transition: 0.65s 2.6875s;
}
.a-anim-txts > span:nth-child(44) {
  -webkit-transition: 0.65s 2.75s;
  transition: 0.65s 2.75s;
}
.a-anim-txts > span:nth-child(45) {
  -webkit-transition: 0.65s 2.8125s;
  transition: 0.65s 2.8125s;
}
.a-anim-txts > span:nth-child(46) {
  -webkit-transition: 0.65s 2.875s;
  transition: 0.65s 2.875s;
}
.a-anim-txts > span:nth-child(47) {
  -webkit-transition: 0.65s 2.9375s;
  transition: 0.65s 2.9375s;
}
.a-anim-txts > span:nth-child(48) {
  -webkit-transition: 0.65s 3s;
  transition: 0.65s 3s;
}
.a-anim-txts > span:nth-child(49) {
  -webkit-transition: 0.65s 3.0625s;
  transition: 0.65s 3.0625s;
}
.a-anim-txts > span:nth-child(50) {
  -webkit-transition: 0.65s 3.125s;
  transition: 0.65s 3.125s;
}
.a-anim-txts > span:nth-child(51) {
  -webkit-transition: 0.65s 3.1875s;
  transition: 0.65s 3.1875s;
}
.a-anim-txts > span:nth-child(52) {
  -webkit-transition: 0.65s 3.25s;
  transition: 0.65s 3.25s;
}
.a-anim-txts > span:nth-child(53) {
  -webkit-transition: 0.65s 3.3125s;
  transition: 0.65s 3.3125s;
}
.a-anim-txts > span:nth-child(54) {
  -webkit-transition: 0.65s 3.375s;
  transition: 0.65s 3.375s;
}
.a-anim-txts > span:nth-child(55) {
  -webkit-transition: 0.65s 3.4375s;
  transition: 0.65s 3.4375s;
}
.a-anim-txts > span:nth-child(56) {
  -webkit-transition: 0.65s 3.5s;
  transition: 0.65s 3.5s;
}
.a-anim-txts > span:nth-child(57) {
  -webkit-transition: 0.65s 3.5625s;
  transition: 0.65s 3.5625s;
}
.a-anim-txts > span:nth-child(58) {
  -webkit-transition: 0.65s 3.625s;
  transition: 0.65s 3.625s;
}
.a-anim-txts > span:nth-child(59) {
  -webkit-transition: 0.65s 3.6875s;
  transition: 0.65s 3.6875s;
}
.a-anim-txts > span:nth-child(60) {
  -webkit-transition: 0.65s 3.75s;
  transition: 0.65s 3.75s;
}
.a-anim-txts > span:nth-child(61) {
  -webkit-transition: 0.65s 3.8125s;
  transition: 0.65s 3.8125s;
}
.a-anim-txts > span:nth-child(62) {
  -webkit-transition: 0.65s 3.875s;
  transition: 0.65s 3.875s;
}
.a-anim-txts > span:nth-child(63) {
  -webkit-transition: 0.65s 3.9375s;
  transition: 0.65s 3.9375s;
}
.a-anim-txts > span:nth-child(64) {
  -webkit-transition: 0.65s 4s;
  transition: 0.65s 4s;
}
.a-anim-txts > span:nth-child(65) {
  -webkit-transition: 0.65s 4.0625s;
  transition: 0.65s 4.0625s;
}
.a-anim-txts > span:nth-child(66) {
  -webkit-transition: 0.65s 4.125s;
  transition: 0.65s 4.125s;
}
.a-anim-txts > span:nth-child(67) {
  -webkit-transition: 0.65s 4.1875s;
  transition: 0.65s 4.1875s;
}
.a-anim-txts > span:nth-child(68) {
  -webkit-transition: 0.65s 4.25s;
  transition: 0.65s 4.25s;
}
.a-anim-txts > span:nth-child(69) {
  -webkit-transition: 0.65s 4.3125s;
  transition: 0.65s 4.3125s;
}
.a-anim-txts > span:nth-child(70) {
  -webkit-transition: 0.65s 4.375s;
  transition: 0.65s 4.375s;
}
.a-anim-txts > span:nth-child(71) {
  -webkit-transition: 0.65s 4.4375s;
  transition: 0.65s 4.4375s;
}
.a-anim-txts > span:nth-child(72) {
  -webkit-transition: 0.65s 4.5s;
  transition: 0.65s 4.5s;
}
.a-anim-txts > span:nth-child(73) {
  -webkit-transition: 0.65s 4.5625s;
  transition: 0.65s 4.5625s;
}
.a-anim-txts > span:nth-child(74) {
  -webkit-transition: 0.65s 4.625s;
  transition: 0.65s 4.625s;
}
.a-anim-txts > span:nth-child(75) {
  -webkit-transition: 0.65s 4.6875s;
  transition: 0.65s 4.6875s;
}
.a-anim-txts > span:nth-child(76) {
  -webkit-transition: 0.65s 4.75s;
  transition: 0.65s 4.75s;
}
.a-anim-txts > span:nth-child(77) {
  -webkit-transition: 0.65s 4.8125s;
  transition: 0.65s 4.8125s;
}
.a-anim-txts > span:nth-child(78) {
  -webkit-transition: 0.65s 4.875s;
  transition: 0.65s 4.875s;
}
.a-anim-txts > span:nth-child(79) {
  -webkit-transition: 0.65s 4.9375s;
  transition: 0.65s 4.9375s;
}
.a-anim-txts > span:nth-child(80) {
  -webkit-transition: 0.65s 5s;
  transition: 0.65s 5s;
}
.a-anim-txts > span:nth-child(81) {
  -webkit-transition: 0.65s 5.0625s;
  transition: 0.65s 5.0625s;
}
.a-anim-txts > span:nth-child(82) {
  -webkit-transition: 0.65s 5.125s;
  transition: 0.65s 5.125s;
}
.a-anim-txts > span:nth-child(83) {
  -webkit-transition: 0.65s 5.1875s;
  transition: 0.65s 5.1875s;
}
.a-anim-txts > span:nth-child(84) {
  -webkit-transition: 0.65s 5.25s;
  transition: 0.65s 5.25s;
}
.a-anim-txts > span:nth-child(85) {
  -webkit-transition: 0.65s 5.3125s;
  transition: 0.65s 5.3125s;
}
.a-anim-txts > span:nth-child(86) {
  -webkit-transition: 0.65s 5.375s;
  transition: 0.65s 5.375s;
}
.a-anim-txts > span:nth-child(87) {
  -webkit-transition: 0.65s 5.4375s;
  transition: 0.65s 5.4375s;
}
.a-anim-txts > span:nth-child(88) {
  -webkit-transition: 0.65s 5.5s;
  transition: 0.65s 5.5s;
}
.a-anim-txts > span:nth-child(89) {
  -webkit-transition: 0.65s 5.5625s;
  transition: 0.65s 5.5625s;
}
.a-anim-txts > span:nth-child(90) {
  -webkit-transition: 0.65s 5.625s;
  transition: 0.65s 5.625s;
}
.a-anim-txts > span:nth-child(91) {
  -webkit-transition: 0.65s 5.6875s;
  transition: 0.65s 5.6875s;
}
.a-anim-txts > span:nth-child(92) {
  -webkit-transition: 0.65s 5.75s;
  transition: 0.65s 5.75s;
}
.a-anim-txts > span:nth-child(93) {
  -webkit-transition: 0.65s 5.8125s;
  transition: 0.65s 5.8125s;
}
.a-anim-txts > span:nth-child(94) {
  -webkit-transition: 0.65s 5.875s;
  transition: 0.65s 5.875s;
}
.a-anim-txts > span:nth-child(95) {
  -webkit-transition: 0.65s 5.9375s;
  transition: 0.65s 5.9375s;
}
.a-anim-txts > span:nth-child(96) {
  -webkit-transition: 0.65s 6s;
  transition: 0.65s 6s;
}
.a-anim-txts > span:nth-child(97) {
  -webkit-transition: 0.65s 6.0625s;
  transition: 0.65s 6.0625s;
}
.a-anim-txts > span:nth-child(98) {
  -webkit-transition: 0.65s 6.125s;
  transition: 0.65s 6.125s;
}
.a-anim-txts > span:nth-child(99) {
  -webkit-transition: 0.65s 6.1875s;
  transition: 0.65s 6.1875s;
}
.a-anim-txts > span:nth-child(100) {
  -webkit-transition: 0.65s 6.25s;
  transition: 0.65s 6.25s;
}
.a-anim-txts.active span {
  opacity: 1;
  -webkit-transform: translate(0, 0) skewX(0deg) scale(1, 1);
          transform: translate(0, 0) skewX(0deg) scale(1, 1);
}

/* ----------------------------------------------------
  slide-box-01
*/
/* ----------------------------------------------------
  使用方法：

  <div class="as a-slide-box-01">
    <img src="./img/sample.jpg" alt="" />
  </div>
---------------------------------------------------- */
.a-slide-box-01 {
  overflow: hidden;
  opacity: 1;
  position: relative;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: 0.65s;
  transition: 0.65s;
}
.a-slide-box-01::after {
  background: #bbb; /* Old browsers */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.65s 0.65s;
  transition: 0.65s 0.65s;
}
.a-slide-box-01 img {
  -webkit-transition: 0.65s 0.65s;
  transition: 0.65s 0.65s;
  -webkit-transform: scale(1.5, 1.5);
          transform: scale(1.5, 1.5);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.a-slide-box-01.a-slide-box-01--t {
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.a-slide-box-01.a-slide-box-01--b {
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}
.a-slide-box-01.a-slide-box-01--l {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.a-slide-box-01.a-slide-box-01--r {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.a-slide-box-01.active {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.a-slide-box-01.active::after {
  opacity: 0;
}
.a-slide-box-01.active img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* ----------------------------------------------------
  slide-box-02
*/
/* ----------------------------------------------------
  使用方法：

  <div class="as a-slide-box-02">
    <div class="slide-box-02__bg">
      <img src="" alt="">
    </div>
  </div>
---------------------------------------------------- */
.a-slide-box-02 {
  display: block;
}
.a-slide-box-02 .slide-box-02__bg {
  background: #fff;
  display: inline-block;
  position: relative;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  overflow: hidden;
  vertical-align: middle;
}
.a-slide-box-02 .slide-box-02__bg img {
  opacity: 0;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: all 0.65s;
  transition: all 0.65s;
}
.a-slide-box-02 .slide-box-02__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);
          transform: translate(-100%, 0);
  -webkit-transition: all 0.65s;
  transition: all 0.65s;
}
.a-slide-box-02.a-slide-box-02--t .slide-box-02__bg {
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}
.a-slide-box-02.a-slide-box-02--t .slide-box-02__bg img {
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}
.a-slide-box-02.a-slide-box-02--t .slide-box-02__bg::after {
  margin: 100% 0 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
.a-slide-box-02.a-slide-box-02--b .slide-box-02__bg {
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.a-slide-box-02.a-slide-box-02--b .slide-box-02__bg img {
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.a-slide-box-02.a-slide-box-02--b .slide-box-02__bg::after {
  margin: -100% 0 0;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.a-slide-box-02.a-slide-box-02--l .slide-box-02__bg {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.a-slide-box-02.a-slide-box-02--l .slide-box-02__bg img {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.a-slide-box-02.a-slide-box-02--l .slide-box-02__bg::after {
  margin: 0 0 0 100%;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.a-slide-box-02.a-slide-box-02--r .slide-box-02__bg {
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.a-slide-box-02.a-slide-box-02--r .slide-box-02__bg img {
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.a-slide-box-02.a-slide-box-02--r .slide-box-02__bg::after {
  margin: 0 0 0 -100%;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.a-slide-box-02.active .slide-box-02__bg img {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.a-slide-box-02.active .slide-box-02__bg::after {
  -webkit-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;
          animation: slide 60s linear infinite;
  position: relative;
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-1920px, 0, 0);
            transform: translate3d(-1920px, 0, 0);
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-1920px, 0, 0);
            transform: translate3d(-1920px, 0, 0);
  }
}

/* --------------------------
	state
-------------------------- */
/* ----------------------------------------------------

	JavaScriptなどの制御による状態の変化を表すスタイルの設定ファイルです。
	汎用的なstateのスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	is-* という接頭辞をつけることを推奨します。

---------------------------------------------------- */
/* --------------------------
	レスポンシブ関係
-------------------------- */
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-tab {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  .is-tab {
    display: none;
  }
}

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

@media screen and (max-width: 767px) {
  .is-pc-tab {
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .is-tab-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */