@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: 10px;
}
@media screen and (width <= 1100px) {
  html {
    font-size: 0.9091vw; /* 10px / 1100px * 100 */
  }
}
@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;
  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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .l-grid__item-1-tab {
    width: 8.33%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-2-tab {
    width: 16.667%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-3-tab {
    width: 25%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-4-tab {
    width: 33.333%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-5-tab {
    width: 41.666%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-6-tab {
    width: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-7-tab {
    width: 58.333%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-8-tab {
    width: 66.666%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-9-tab {
    width: 75%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-10-tab {
    width: 83.33%;
  }
}
@media screen and (max-width: 1100px) {
  .l-grid__item-11-tab {
    width: 91.666%;
  }
}
@media screen and (max-width: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px;
}
@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 {
  position: fixed;
  width: 100%;
  padding: 2rem 6rem 2rem 3rem;
  z-index: 999;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 3.125vw;
    width: 100%;
  }
}
.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;
}
.header__logo img {
  width: 10.4166666667vw;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 37.5vw;
  }
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
.header__list li {
  font-size: 1.0416666667vw;
  font-weight: 500;
}
@media screen and (max-width: 1100px) {
  .header__list li {
    font-size: 1.5104166667vw;
  }
}
.header__list a {
  position: relative;
  display: block;
}
.header__list a::after {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: url(../images/common/header-ico.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: -3rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
}
.header__hmbbtn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.header .header--white {
  background-color: white;
}
.header.hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header.is-top {
  -webkit-transform: translateY(0%) !important;
          transform: translateY(0%) !important;
}

.header--clone {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header--clone.hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header--clone.is-top {
  -webkit-transform: translateY(-100%) !important;
          transform: translateY(-100%) !important;
}

.footer {
  padding: 3rem 0 2rem;
  border-top: 2px solid #D3D3D3;
  background-color: #fff;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 0.8rem;
  }
}
.footer__list > li {
  padding: 0 2rem;
  border-right: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .footer__list > li {
    padding: 0 1rem;
  }
}
.footer__list > li:last-child {
  border: none;
}
.footer__link {
  color: #192C52;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer__link {
    font-size: 1rem;
  }
}
.footer__link > a {
  display: block;
}
.footer__logo {
  margin-top: 7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-top: 5rem;
  }
}
.footer__caption {
  color: #192C52;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer__caption {
    font-size: 1.2rem;
  }
}
.footer__copyright {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}

.mv {
  padding: 13rem 3rem 8rem;
}
@media screen and (min-width: 1700px) {
  .mv {
    padding: 17rem 6rem 8rem;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    margin-bottom: 4rem;
    padding: 8rem 1.5rem 1.5rem;
  }
}
.mv__wrap {
  position: relative;
  margin-top: -4rem;
}
@media screen and (max-width: 767px) {
  .mv__wrap {
    margin-top: 0;
  }
}
.mv__ttl {
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__ttl {
    padding-top: 25rem;
  }
}
.mv__ttl h1 {
  width: 49.5%;
}
@media screen and (max-width: 767px) {
  .mv__ttl h1 {
    width: 100%;
  }
}
.mv__ttl h1 > img {
  width: 100%;
}
.mv__subttl {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .mv__subttl {
    width: 70%;
  }
}
.mv__subttl > img {
  width: 100%;
}
.mv__img {
  position: absolute;
  width: 67.5%;
  top: 55%;
  right: -12%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: -1;
}
@media screen and (min-width: 2560px) {
  .mv__img {
    top: 55%;
  }
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: 120%;
    top: 0rem;
    right: 50%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}
.mv__img > img {
  width: 100%;
}
.mv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-top: 3.125vw;
}
@media screen and (max-width: 767px) {
  .mv__btn__txt {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 1366px) {
  .mv__btn {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .mv__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
}
.mv .btn-a {
  width: 26vw;
}
@media screen and (max-width: 767px) {
  .mv .btn-a {
    position: relative;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-size: 1.8rem;
    width: 100%;
  }
  .mv .btn-a img {
    width: auto;
    height: 3rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .mv .btn-a img {
    position: absolute;
    height: 3.5rem;
    top: 50%;
    left: 4rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.mv-cold {
  padding: 9rem 3rem 4rem 6rem;
}
@media screen and (min-width: 1700px) {
  .mv-cold {
    padding: 10rem 6rem 8rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-cold {
    padding: 7rem 1.5rem 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-cold__wrap {
    margin-top: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-cold__ttl {
    padding-top: 0;
  }
}
.mv-cold__httl {
  position: relative;
  width: 54% !important;
  z-index: -5;
}
@media screen and (max-width: 767px) {
  .mv-cold__httl {
    top: -19rem;
    width: 90% !important;
    z-index: 5;
  }
}
.mv-cold__httl img {
  width: 100%;
}
.mv-cold__subttl {
  position: relative;
  width: 18%;
  top: 5rem;
}
@media screen and (min-width: 1700px) {
  .mv-cold__subttl {
    top: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-cold__subttl {
    width: 40%;
    margin: 0 0 0 auto;
    top: -15rem;
    right: 0;
  }
}
.mv-cold__img {
  width: 50%;
  top: 60%;
  right: -4.5rem;
  z-index: -1;
}
@media screen and (min-width: 1700px) {
  .mv-cold__img {
    top: 62%;
  }
}
@media screen and (max-width: 767px) {
  .mv-cold__img {
    width: 115%;
    top: 20%;
    right: 50%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}
.mv-cold__btn {
  position: relative;
  margin-top: 2.0833333333vw;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .mv-cold__btn {
    top: 5.5rem;
  }
}
.mv-cold__btn .btn-a {
  width: 23vw;
}
@media screen and (max-width: 1600px) {
  .mv-cold__btn .btn-a {
    padding: 1.8rem 0;
  }
}
@media screen and (max-width: 1250px) {
  .mv-cold__btn .btn-a {
    padding: 1.5rem 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-cold__btn .btn-a {
    width: 100%;
    padding: 1.5rem 3rem;
  }
}

.mv-industry .mv__subttl {
  width: 30%;
  position: relative;
  top: 3%;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .mv-industry .mv__subttl {
    width: 70%;
  }
}
@media screen and (min-width: 1440px) {
  .mv-industry .mv__btn {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .mv-industry .mv__copy {
    margin-top: -1rem;
  }
}

.menu-sp {
  background: #55B6C2;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.menu-sp.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-sp .header__list {
  color: #fff;
  display: block;
  width: 85%;
  margin: 0 auto;
  padding-top: 10rem;
}
.menu-sp .header__list li {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.menu-sp .header__list li a {
  position: relative;
}
.menu-sp .header__list li a::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../images/common/header-ico-sp.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.menu-sp__btn {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin: 3rem auto 0;
}
.menu-sp__btn .btn-a {
  width: 100%;
  padding: 1.5rem 3rem;
}
.menu-sp__btn .btn-a svg {
  height: 2.5rem;
  width: auto;
}
.menu-sp__btn .btn-a img {
  height: 3rem;
  width: auto;
}

.is-menu-open .header {
  background-color: #55B6C2;
}
.is-menu-open .header__logo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.heading-a {
  padding: 2.5rem 0;
  line-height: 1.5;
  text-align: center;
  color: #3BA8B5;
  border-top: 4px solid #3BA8B5;
  border-bottom: 4px solid #3BA8B5;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .heading-a {
    padding: 2rem 0;
    font-size: 2.4rem;
  }
}

.btn-a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 0;
  line-height: 1;
  background-color: #e50012;
  border-radius: 5.6rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #e50012;
  border: 2px solid #e50012;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 1150px) {
  .btn-a {
    padding: 2rem 0;
  }
}
.btn-a svg {
  fill: #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  width: auto;
  height: 4rem;
}
.btn-a:hover {
  background: #fff;
  color: #e50012;
}
.btn-a:hover svg {
  fill: #e50012;
}
.btn-a:hover svg rect {
  fill: #e50012;
}
.btn-a:hover svg path {
  fill: #e50012;
}
@media screen and (max-width: 767px) {
  .btn-a {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
  .btn-a svg {
    height: 3rem;
  }
  .btn-a img {
    width: auto;
    height: 3rem;
  }
}
.btn-a--contact {
  background-color: #0085ea;
  border: 2px solid #0085EA;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-a--contact svg {
  fill: #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .btn-a--contact svg {
    width: 3rem !important;
    height: 2rem;
  }
}
.btn-a--contact:hover {
  background: #fff;
  color: #0085EA;
}
.btn-a--contact:hover svg rect {
  fill: none;
  stroke: #0085EA;
}
.btn-a--contact:hover svg path {
  fill: none;
  stroke: #0085EA;
}
.btn-a--seminar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #517ecf;
  border: 2px solid #517ecf;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-a--seminar svg {
  fill: #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-a--seminar:hover {
  background: #fff;
  color: #517ecf;
}
.btn-a--seminar:hover svg {
  fill: #517ecf;
}
.btn-a--seminar:hover path {
  fill: #517ecf !important;
}
.btn-a--download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #55b6c2;
  border: 2px solid #55b6c2;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-a--download svg {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5px;
  translate: 0.15s;
}
.btn-a--download:hover {
  background: #fff;
  color: #55b6c2;
}
.btn-a--download:hover svg {
  stroke: #55b6c2;
  fill: none;
}
.btn-a--download:hover path {
  fill: none !important;
}
.btn-a--download--02 svg {
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.5px;
}
.btn-a--download--02:hover svg {
  fill: #55b6c2 !important;
  stroke: #55B6C2 !important;
}
.btn-a--download--02:hover path {
  fill: #55b6c2 !important;
}
.btn-a--search {
  padding: 2rem;
  background-color: #55b6c2;
  border: 2px solid #55B6C2;
  border: 2px solid #55b6c2;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-a--search svg {
  -webkit-transition: 0.15s;
  transition: 0.15s;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3px;
  height: 3rem;
}
.btn-a--search:hover {
  background: #fff;
  color: #55b6c2;
}
.btn-a--search:hover svg {
  stroke: #55b6c2;
  fill: none;
}
.btn-a--search:hover path {
  fill: none !important;
}
@media screen and (max-width: 767px) {
  .btn-a--search svg {
    padding-left: 1rem;
    height: 2rem;
  }
}
.btn-a--search:hover {
  color: #55B6C2;
}
.btn-a--radius {
  border-radius: 10px;
  width: 27rem;
  font-size: 1.9rem;
  padding: 1rem 3rem;
  gap: 2rem;
}
@media screen and (max-width: 1100px) {
  .btn-a--radius {
    width: 28rem;
  }
}
@media screen and (max-width: 767px) {
  .btn-a--radius {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .btn-a--radius:last-child {
    margin-bottom: 0;
  }
}
.btn-a--mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #55B6C2;
  border: 2px solid #55B6C2;
  width: 100%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-a--mail svg {
  fill: #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-a--mail:hover {
  background: #fff;
  color: #55B6C2;
}
.btn-a--mail:hover svg {
  fill: #55B6C2;
}
.btn-a--mail:hover svg rect {
  fill: none;
  stroke: #55B6C2;
}
.btn-a--mail:hover svg path {
  fill: none;
  stroke: #55B6C2;
}
.btn-a.disable {
  background: #ddd;
  pointer-events: none;
  border: 2px solid #ddd;
}
.btn-a--l svg {
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .btn-a--l svg {
    height: 3rem;
  }
}

.btn-b {
  position: relative;
  display: inline-block;
  gap: 3rem;
  padding: 2.5rem 7rem;
  line-height: 1;
  text-align: center;
  background-color: #55B6C2;
  border-radius: 5.6rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  border: 2px solid #55B6C2;
}
@media screen and (max-width: 767px) {
  .btn-b {
    padding: 1.5rem 6rem;
    font-size: 1.6rem;
  }
}
.btn-b::after {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><path id="Icon_ionic-ios-arrow-dropdown-circle" data-name="Icon ionic-ios-arrow-dropdown-circle" fill="%23fff" d="M3.375,15.875a12.5,12.5,0,1,0,12.5-12.5A12.5,12.5,0,0,0,3.375,15.875Zm17.374-2.608a1.164,1.164,0,0,1,1.641,0,1.146,1.146,0,0,1,.337.817,1.166,1.166,0,0,1-.343.823l-5.667,5.649a1.158,1.158,0,0,1-1.6-.036L9.367,14.787a1.16,1.16,0,1,1,1.641-1.641l4.874,4.922Z" transform="translate(-3.375 28.375) rotate(-90)"/></svg>') center center no-repeat;
  background-size: contain;
  top: 51%;
  right: 0.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .btn-b::after {
    width: 2rem;
    height: 2rem;
  }
}
.btn-b:hover {
  background: #fff;
  color: #55B6C2;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.btn-b:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><path id="Icon_ionic-ios-arrow-dropdown-circle" data-name="Icon ionic-ios-arrow-dropdown-circle" fill="%2355b6c2" d="M3.375,15.875a12.5,12.5,0,1,0,12.5-12.5A12.5,12.5,0,0,0,3.375,15.875Zm17.374-2.608a1.164,1.164,0,0,1,1.641,0,1.146,1.146,0,0,1,.337.817,1.166,1.166,0,0,1-.343.823l-5.667,5.649a1.158,1.158,0,0,1-1.6-.036L9.367,14.787a1.16,1.16,0,1,1,1.641-1.641l4.874,4.922Z" transform="translate(-3.375 28.375) rotate(-90)"/></svg>') center center no-repeat;
  background-size: contain;
}
.btn-b--border {
  color: #55B6C2;
  background-color: #fff;
  border: 3px solid #55B6C2;
}
.btn-b--border::after {
  width: 2.5rem;
  height: 2.5rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><path id="Icon_ionic-ios-arrow-dropdown-circle" data-name="Icon ionic-ios-arrow-dropdown-circle" fill="%2355b6c2" d="M3.375,15.875a12.5,12.5,0,1,0,12.5-12.5A12.5,12.5,0,0,0,3.375,15.875Zm17.374-2.608a1.164,1.164,0,0,1,1.641,0,1.146,1.146,0,0,1,.337.817,1.166,1.166,0,0,1-.343.823l-5.667,5.649a1.158,1.158,0,0,1-1.6-.036L9.367,14.787a1.16,1.16,0,1,1,1.641-1.641l4.874,4.922Z" transform="translate(-3.375 28.375) rotate(-90)"/></svg>') center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .btn-b--border::after {
    width: 2rem;
    height: 2rem;
  }
}
.btn-b--border:hover {
  color: #fff;
  background: #55b6c2;
}
.btn-b--border:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><path id="Icon_ionic-ios-arrow-dropdown-circle" data-name="Icon ionic-ios-arrow-dropdown-circle" fill="%23fff" d="M3.375,15.875a12.5,12.5,0,1,0,12.5-12.5A12.5,12.5,0,0,0,3.375,15.875Zm17.374-2.608a1.164,1.164,0,0,1,1.641,0,1.146,1.146,0,0,1,.337.817,1.166,1.166,0,0,1-.343.823l-5.667,5.649a1.158,1.158,0,0,1-1.6-.036L9.367,14.787a1.16,1.16,0,1,1,1.641-1.641l4.874,4.922Z" transform="translate(-3.375 28.375) rotate(-90)"/></svg>') center center no-repeat;
  background-size: contain;
}
.btn-b--more {
  padding: 2rem 7.5rem 2rem 7rem;
}
.btn-b--more::after {
  width: 2.5rem;
  height: 2.5rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><path id="Icon_ionic-ios-arrow-dropdown-circle" data-name="Icon ionic-ios-arrow-dropdown-circle" fill="%23fff" d="M3.375,15.875a12.5,12.5,0,1,0,12.5-12.5A12.5,12.5,0,0,0,3.375,15.875Zm17.374-2.608a1.164,1.164,0,0,1,1.641,0,1.146,1.146,0,0,1,.337.817,1.166,1.166,0,0,1-.343.823l-5.667,5.649a1.158,1.158,0,0,1-1.6-.036L9.367,14.787a1.16,1.16,0,1,1,1.641-1.641l4.874,4.922Z" transform="translate(-3.375 -3.375)"/></svg>') center center no-repeat;
  background-size: contain;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .btn-b--more::after {
    width: 2rem;
    height: 2rem;
  }
}
.btn-b--more:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><path id="Icon_ionic-ios-arrow-dropdown-circle" data-name="Icon ionic-ios-arrow-dropdown-circle" fill="%2355b6c2" d="M3.375,15.875a12.5,12.5,0,1,0,12.5-12.5A12.5,12.5,0,0,0,3.375,15.875Zm17.374-2.608a1.164,1.164,0,0,1,1.641,0,1.146,1.146,0,0,1,.337.817,1.166,1.166,0,0,1-.343.823l-5.667,5.649a1.158,1.158,0,0,1-1.6-.036L9.367,14.787a1.16,1.16,0,1,1,1.641-1.641l4.874,4.922Z" transform="translate(-3.375 -3.375)"/></svg>') center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .btn-b--download {
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 1rem;
  }
}
.btn-b--download::after {
  right: 1rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="21.327" height="25.897" viewBox="0 0 21.327 25.897"><path id="Icon_material-file-download" data-name="Icon material-file-download" d="M28.827,13.64H22.734V4.5h-9.14v9.14H7.5L18.164,24.3ZM7.5,27.351V30.4H28.827V27.351Z" transform="translate(-7.5 -4.5)" fill="%23fff"/></svg>') center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .btn-b--download::after {
    right: 0;
    width: 1.3rem;
    height: 1.3rem;
  }
}
.btn-b--download:hover::after {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="21.327" height="25.897" viewBox="0 0 21.327 25.897"><path id="Icon_material-file-download" data-name="Icon material-file-download" d="M28.827,13.64H22.734V4.5h-9.14v9.14H7.5L18.164,24.3ZM7.5,27.351V30.4H28.827V27.351Z" transform="translate(-7.5 -4.5)" fill="%2355b6c2"/></svg>') center center no-repeat;
  background-size: contain;
}

.hmb-btn {
  position: relative;
  cursor: pointer;
  margin-right: 1.5rem;
  height: 6rem;
  width: 6rem;
  background-color: #55B6C2;
  border: 1px solid #55B6C2;
  border-radius: 3rem;
}
.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: #fff;
  width: 100%;
}
.hmb-btn__hmb span:nth-of-type(1) {
  top: 0;
}
.hmb-btn__hmb span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(0, -1px);
          transform: translate(0, -1px);
}
.hmb-btn__hmb span:nth-of-type(3) {
  bottom: 0;
}

.hmb-btn.active {
  border: 1px solid #fff;
}
.hmb-btn.active .hmb-btn__hmb span:nth-of-type(1) {
  top: 50%;
  left: 10%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 80%;
}
.hmb-btn.active .hmb-btn__hmb span:nth-of-type(2) {
  width: 50%;
  opacity: 0; /* 真ん中の線は透過 */
}
.hmb-btn.active .hmb-btn__hmb span:nth-of-type(3) {
  top: 50%;
  left: 10%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 80%;
}

.pagetop {
  background: #102F5D;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 1rem;
  padding: 1.5rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  opacity: 0;
  pointer-events: none;
}
.pagetop.active {
  opacity: 1;
  pointer-events: all;
}

.sec-fixed {
  position: fixed;
  right: 6rem;
  top: 15vh;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
  width: 1rem;
  z-index: 999;
}
@media screen and (max-width: 1250px) {
  .sec-fixed {
    right: 4rem;
  }
}
.sec-fixed__btn {
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  border-radius: 10px 0 0 10px;
  padding: 8rem 2rem 3rem 1.5rem;
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 1250px) {
  .sec-fixed__btn {
    padding: 6.5rem 1rem 2rem;
    font-size: 1.6rem;
  }
}
.sec-fixed__btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.sec-fixed__btn--download {
  background: #E50012;
  border: 2px solid #e50012;
  cursor: pointer;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.sec-fixed__btn--download::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="38.425" height="50" viewBox="0 0 38.425 50"><clipPath id="clip-path"><rect width="38.425" height="50"/></clipPath><g transform="translate(0)"><g transform="translate(0)" clip-path="url(%23clip-path)"><path fill="%23fff" d="M25.276,1.339A4.828,4.828,0,0,0,21.89,0H8.5A8.5,8.5,0,0,0,0,8.425V41.5A8.57,8.57,0,0,0,8.5,50H29.921a8.57,8.57,0,0,0,8.5-8.5V15.748a4.874,4.874,0,0,0-1.5-3.543ZM33.7,12.913H26.93a2.153,2.153,0,0,1-2.2-2.2V4.41ZM35.748,41.5a5.814,5.814,0,0,1-5.827,5.827H8.5A5.916,5.916,0,0,1,2.677,41.5V8.425A5.814,5.814,0,0,1,8.5,2.6H21.969V10.63a4.907,4.907,0,0,0,4.882,4.882h8.9V41.5Z"/><rect fill="%23fff" width="16.693" height="2.677" transform="translate(13.228 21.811)"/><rect fill="%23fff" width="21.418" height="2.677" transform="translate(8.504 28.977)"/><rect fill="%23fff" width="21.418" height="2.677" transform="translate(8.504 36.142)"/></g></g></svg>') center center no-repeat;
  background-size: contain;
  height: 3.2rem;
  width: 2.6rem;
}
@media screen and (max-width: 1250px) {
  .sec-fixed__btn--download::before {
    height: 2.9rem;
    width: 2.4rem;
  }
}
.sec-fixed__btn--download:hover {
  background: #fff;
  color: #E50012;
}
.sec-fixed__btn--download:hover::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="38.425" height="50" viewBox="0 0 38.425 50"><clipPath id="clip-path"><rect width="38.425" height="50"/></clipPath><g transform="translate(0)"><g transform="translate(0)" clip-path="url(%23clip-path)"><path fill="%23E50012" d="M25.276,1.339A4.828,4.828,0,0,0,21.89,0H8.5A8.5,8.5,0,0,0,0,8.425V41.5A8.57,8.57,0,0,0,8.5,50H29.921a8.57,8.57,0,0,0,8.5-8.5V15.748a4.874,4.874,0,0,0-1.5-3.543ZM33.7,12.913H26.93a2.153,2.153,0,0,1-2.2-2.2V4.41ZM35.748,41.5a5.814,5.814,0,0,1-5.827,5.827H8.5A5.916,5.916,0,0,1,2.677,41.5V8.425A5.814,5.814,0,0,1,8.5,2.6H21.969V10.63a4.907,4.907,0,0,0,4.882,4.882h8.9V41.5Z"/><rect fill="%23E50012" width="16.693" height="2.677" transform="translate(13.228 21.811)"/><rect fill="%23E50012" width="21.418" height="2.677" transform="translate(8.504 28.977)"/><rect fill="%23E50012" width="21.418" height="2.677" transform="translate(8.504 36.142)"/></g></g></svg>') center center no-repeat;
  background-size: contain;
}
.sec-fixed__btn--contact {
  background: #0085EA;
  border: 2px solid #0085EA;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 1250px) {
  .sec-fixed__btn--contact {
    padding-top: 5.7rem;
  }
}
.sec-fixed__btn--contact::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="54.184" height="43.161" viewBox="0 0 54.184 43.161"><g transform="translate(-3.573 -11.25)"><rect width="50.007" height="39.661" rx="3" transform="translate(6 13)" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.5"/><path d="M6,19,30.617,35.411,55.234,19" transform="translate(0 2.206)" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.5"/></g></svg>') center center no-repeat;
  background-size: contain;
  height: 3.1rem;
  top: 13%;
  width: 3.5rem;
}
@media screen and (max-width: 1250px) {
  .sec-fixed__btn--contact::before {
    height: 2.4rem;
    width: 2.7rem;
  }
}
.sec-fixed__btn--contact:hover {
  background: #fff;
  color: #0085EA;
}
.sec-fixed__btn--contact:hover::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="54.184" height="43.161" viewBox="0 0 54.184 43.161"><g transform="translate(-3.573 -11.25)"><rect width="50.007" height="39.661" rx="3" transform="translate(6 13)" fill="none" stroke="%230085ea" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.5"/><path d="M6,19,30.617,35.411,55.234,19" transform="translate(0 2.206)" fill="none" stroke="%230085ea" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.5"/></g></svg>') center center no-repeat;
  background-size: contain;
}
.sec-fixed__btn:hover {
  opacity: 0.8;
}
.sec-fixed__btn span {
  display: inline-block;
  text-align: center;
}

.sec-fixed.is-active {
  opacity: 1;
  pointer-events: initial;
}
@media screen and (max-width: 767px) {
  .sec-fixed.is-active {
    display: none;
  }
}

/* --------------------------
	page
-------------------------- */
html {
  scrollbar-width: thin;
  border-radius: 5px;
}

body {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(150deg, transparent, transparent 40px, rgba(210, 236, 250, 0.5) 40px, rgba(210, 236, 250, 0.5) 41px), repeating-linear-gradient(30deg, transparent, transparent 40px, rgba(210, 236, 250, 0.5) 40px, rgb(210, 236, 250) 41px);
  color: #101010;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  body {
    background-image: repeating-linear-gradient(150deg, transparent, transparent 30px, rgba(210, 236, 250, 0.5) 30px, rgba(210, 236, 250, 0.5) 31px), repeating-linear-gradient(30deg, transparent, transparent 30px, rgba(210, 236, 250, 0.5) 30px, rgb(210, 236, 250) 31px);
  }
}

.contents--top {
  position: relative;
}

sup {
  line-height: 1;
  font-size: 2.5rem;
  vertical-align: super;
}
@media screen and (max-width: 767px) {
  sup {
    font-size: 1.8rem;
  }
}

sub {
  line-height: 1;
  font-size: 2.5rem;
  vertical-align: sub;
}
@media screen and (max-width: 767px) {
  sub {
    font-size: 1.8rem;
  }
}

.modal {
  display: none;
  position: absolute;
}
.modal-layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
}
.modal-container {
  width: 1100px;
  background: #fff;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px) {
  .modal-container {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .modal-container {
    width: 90%;
  }
}
.modal-header {
  font-size: 3.5rem;
  background: #edf8f9;
  color: #3ba8b5;
  padding: 2.5rem;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .modal-header {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}
.modal-body {
  margin: 1rem 1rem 1rem 0;
  padding: 5% 10%;
  overflow-y: scroll;
  max-height: 75vh;
}
@media screen and (max-width: 767px) {
  .modal-body {
    margin: 1rem 0;
    padding: 5% 6%;
  }
}
.modal-txt {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-txt {
    line-height: 1.4;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.modal-close {
  position: absolute;
  top: 0;
  right: 2rem;
  font-size: 3rem;
  font-size: bold;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal-close {
    right: 1rem;
    font-size: 2rem;
  }
}
.modal .grid_content {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #3ba8b5;
}
@media screen and (max-width: 767px) {
  .modal .grid_content {
    border-radius: 10px;
  }
}
.modal .grid_content img {
  width: 100%;
}
.modal .dl-item__body {
  padding: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal .dl-item__body {
    padding: 0.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .modal .dl-item__body .btn-b {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .modal .dl-item__body .btn-b {
    font-size: 1.15rem;
    line-height: 1.4;
  }
}
.modal .dl-item__ttl {
  line-height: 1.5;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  height: 9rem;
  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) {
  .modal .dl-item__ttl {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    height: 4rem;
  }
}
.modal .dl-item__ttl sub {
  position: relative;
  bottom: -1.2rem;
}
@media screen and (max-width: 767px) {
  .modal .dl-item__ttl sub {
    bottom: -0.8rem;
  }
}
.modal ::-webkit-scrollbar {
  width: 10px;
  padding-right: 5px;
}
@media screen and (max-width: 767px) {
  .modal ::-webkit-scrollbar {
    width: 8px;
  }
}
.modal ::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 5px;
}
.modal ::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .modal .l-grid.l-gutter-l .l-grid__item {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
  }
}

.active {
  display: block;
}

body.active-modal {
  overflow: hidden;
}

.warm-banner {
  margin-bottom: 13rem;
}
@media screen and (max-width: 1100px) {
  .warm-banner {
    margin-bottom: 7rem;
  }
}

.suport-bnr {
  position: relative;
}
.suport-bnr--cold {
  margin-top: 10rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .suport-bnr--cold {
    margin-top: 5rem;
  }
}
.suport-bnr--cold .suport-bnr__content {
  top: 5%;
}
@media screen and (max-width: 1280px) {
  .suport-bnr--cold .suport-bnr__content {
    left: 65%;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr--cold .suport-bnr__content {
    left: 0;
    top: 3%;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr--cold .suport-bnr__img {
    width: 23%;
  }
}
.suport-bnr--cold .suport-bnr__btn {
  padding-left: 11rem;
}
@media screen and (max-width: 1200px) {
  .suport-bnr--cold .suport-bnr__btn {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr--cold .suport-bnr__txt {
    line-height: 1.5;
    font-size: 1.6rem;
  }
}
.suport-bnr__img {
  width: 11%;
}
@media screen and (max-width: 1280px) {
  .suport-bnr__img {
    width: 10%;
  }
}
@media screen and (max-width: 1100px) {
  .suport-bnr__img {
    width: 11%;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr__img {
    width: 65%;
  }
}
.suport-bnr__freecall {
  margin-left: 15.5rem;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .suport-bnr__freecall {
    margin-left: 11.5rem;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr__freecall {
    margin: 1rem auto 0;
    padding-bottom: 1rem;
    width: 90%;
  }
}
.suport-bnr__content {
  position: absolute;
  top: 8%;
  left: 62%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
  width: 78%;
}
@media screen and (max-width: 1100px) {
  .suport-bnr__content {
    left: 65%;
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr__content {
    left: 0;
    -webkit-transform: initial;
            transform: initial;
    top: 5%;
    width: 100%;
  }
}
.suport-bnr__txtimg {
  padding-left: 10rem;
}
@media screen and (max-width: 1200px) {
  .suport-bnr__txtimg {
    padding-left: 0;
    margin: 0 auto;
    width: 65%;
  }
}
@media screen and (max-width: 1100px) {
  .suport-bnr__txtimg {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr__txtimg {
    margin: 0;
    margin-left: auto;
    padding-right: 2rem;
    width: 70%;
  }
}
.suport-bnr__wrap {
  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;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1100px) {
  .suport-bnr__wrap {
    margin: 0 auto 1rem;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr__wrap {
    gap: 1rem;
    padding: 0.5rem 1rem;
  }
}
.suport-bnr__txt {
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .suport-bnr__txt {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr__txt {
    letter-spacing: 1px;
  }
}
.suport-bnr__txt--yellow {
  color: #ffff00;
}
@media screen and (max-width: 1200px) {
  .suport-bnr__txt {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .suport-bnr__txt {
    font-size: 1.7rem;
    text-align: left;
  }
}
.suport-bnr__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .suport-bnr__btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 70%;
  }
  .suport-bnr__btn .btn-a {
    position: relative;
    padding-left: 5rem;
    height: 5.5rem;
  }
  .suport-bnr__btn .btn-a .icon {
    position: absolute;
    left: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.suport-bnr__btn--cold {
  margin: 0 auto 0 6.5rem;
}
@media screen and (max-width: 767px) {
  .suport-bnr__btn--cold {
    margin: 0 auto;
  }
}

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

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

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

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

@media screen and (max-width: 767px) {
  .is-tab {
    display: none;
  }
}
@media screen and (min-width: 1101px) {
  .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: 1101px) {
  .is-tab-sp {
    display: none;
  }
}

/* mv下のバナー
---------------------------------------------------- */
.mv-banner02 {
  padding: 5rem 0;
  background-color: #fff;
  border-top: 0.4rem solid #55b6c2;
  border-bottom: 0.4rem solid #55b6c2;
}
@media screen and (max-width: 767px) {
  .mv-banner02 {
    padding: 2rem 0;
  }
}
.mv-banner02__ttl {
  margin: 0 auto;
  max-width: 73.8rem;
  text-align: center;
}

/* 突然ですが、会社のコスト削減、できていますか？
---------------------------------------------------- */
.cost-trouble {
  margin-top: 8rem;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .cost-trouble {
    margin-top: 0;
    padding-top: 5rem;
  }
}
.cost-trouble__ttl {
  color: #55b6c2;
  text-align: center;
  line-height: 1.8;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .cost-trouble__ttl {
    line-height: 1.4;
    font-size: 2.5rem;
  }
}
.cost-trouble__ttl--red {
  color: #e50012;
}
.cost-trouble__trouble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .cost-trouble__trouble {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 3rem;
  }
}
.cost-trouble__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cost-trouble__item {
    gap: 1rem;
  }
}
.cost-trouble__item > p {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cost-trouble__item > p {
    line-height: 1.5;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .cost-trouble__item:first-child {
    width: 100%;
  }
  .cost-trouble__item:first-child div {
    width: 50%;
  }
  .cost-trouble__item:not(:first-child) {
    width: 49%;
  }
  .cost-trouble__item:last-child {
    margin-left: 0.5rem;
  }
}

/* 関西電力のコスト削減ソリューションが解決します！
---------------------------------------------------- */
.cost-resolution {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .cost-resolution {
    padding-top: 5rem;
    margin-bottom: 5rem;
  }
}
.cost-resolution__ttl {
  position: relative;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .cost-resolution__ttl {
    font-size: 2.4rem;
  }
}
.cost-resolution__ttl img {
  width: 47.4rem;
}
@media screen and (max-width: 767px) {
  .cost-resolution__ttl img {
    width: 23.2rem;
  }
}
.cost-resolution__ttl::before {
  position: absolute;
  width: 8.3rem;
  height: 12.3rem;
  background: url(../images/top/cost-resolution-balloon.png) no-repeat;
  background-size: contain;
  top: 55%;
  left: 10rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .cost-resolution__ttl::before {
    height: 6rem;
    left: 0.5rem;
  }
}
.cost-resolution__ttl::after {
  position: absolute;
  width: 8.3rem;
  height: 12.3rem;
  background: url(../images/top/cost-resolution-balloon.png) no-repeat;
  background-size: contain;
  top: 55%;
  right: 10rem;
  -webkit-transform: translate(0, -50%) scale(-1, 1);
          transform: translate(0, -50%) scale(-1, 1);
  content: "";
}
@media screen and (max-width: 767px) {
  .cost-resolution__ttl::after {
    height: 6rem;
    right: 0.5rem;
  }
}
.cost-resolution__idea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4.5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .cost-resolution__idea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
  }
}
.cost-resolution__item {
  width: calc(33.3333333333% - 4.5rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cost-resolution__item {
    width: 100%;
    margin-top: 4rem;
  }
}
.cost-resolution__img img {
  width: 100%;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .cost-resolution__img img {
    margin-bottom: 1rem;
  }
}
.cost-resolution__arrow {
  margin: 4rem 0 0;
  text-align: center;
}
.cost-resolution__arrow img {
  width: 17rem;
}
.cost-resolution__num1 {
  position: relative;
}
.cost-resolution__num1::after {
  position: absolute;
  width: 8rem;
  height: 8rem;
  background: url(../images/top/cost-resolution-num01.png) no-repeat;
  background-size: contain;
  top: -2rem;
  left: -2rem;
  content: "";
}
@media screen and (max-width: 767px) {
  .cost-resolution__num1::after {
    width: 6rem;
    height: 6rem;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.cost-resolution__num2 {
  position: relative;
}
.cost-resolution__num2::after {
  position: absolute;
  width: 8rem;
  height: 8rem;
  background: url(../images/top/cost-resolution-num02.png) no-repeat;
  background-size: contain;
  top: -2rem;
  left: -2rem;
  content: "";
}
@media screen and (max-width: 767px) {
  .cost-resolution__num2::after {
    width: 6rem;
    height: 6rem;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.cost-resolution__num3 {
  position: relative;
}
.cost-resolution__num3::after {
  position: absolute;
  width: 8rem;
  height: 8rem;
  background: url(../images/top/cost-resolution-num03.png) no-repeat;
  background-size: contain;
  top: -2rem;
  left: -2rem;
  content: "";
}
@media screen and (max-width: 767px) {
  .cost-resolution__num3::after {
    width: 6rem;
    height: 6rem;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.cost-resolution__txt01 {
  margin-top: 3rem;
  line-height: 1.4;
  color: #3ba8b5;
  font-size: 2rem;
}
@media screen and (max-width: 1180px) {
  .cost-resolution__txt01 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .cost-resolution__txt01 {
    margin-top: 0;
    font-size: 1.8rem;
  }
}
.cost-resolution__txt01 > span {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .cost-resolution__txt01 > span {
    font-size: 1.2rem;
  }
}

/* まずはご相談ください。
---------------------------------------------------- */
.counseling-flow {
  margin: 9rem 0 6rem;
  padding-top: 8rem;
  background-color: #edf8f9;
}
@media screen and (max-width: 767px) {
  .counseling-flow {
    margin: 0 0 4rem;
    padding-top: 4rem;
  }
}
.counseling-flow .l-inner {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .counseling-flow .l-inner {
    padding-bottom: 4rem;
  }
}
.counseling-flow__subttl {
  text-align: center;
  color: #55b6c2;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .counseling-flow__subttl {
    font-size: 2.4rem;
  }
}
.counseling-flow__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .counseling-flow__flow {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 3rem;
  }
}
.counseling-flow__flow figure {
  position: relative;
}
@media screen and (max-width: 767px) {
  .counseling-flow__flow figure {
    width: calc(50% - 2.8rem);
  }
}
.counseling-flow__flow figure::after {
  position: absolute;
  width: 2rem;
  height: 3.8rem;
  background: url(../images/top/counseling-flow-arrow.png) no-repeat;
  background-size: contain;
  top: 50%;
  right: -5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .counseling-flow__flow figure::after {
    width: 1.5rem;
    height: 3.3rem;
    top: 45%;
    right: -3.3rem;
  }
}
.counseling-flow__flow figure:last-child::after {
  display: none;
}
.counseling-flow__imgcap {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .counseling-flow__imgcap {
    margin-top: 0.8rem;
    font-size: 1.6rem;
  }
}

/* そもそもコスト削減の取組みって？
---------------------------------------------------- */
.approach {
  position: relative;
  margin: 9rem 0;
}
@media screen and (max-width: 767px) {
  .approach {
    margin: 4rem 0;
  }
}
.approach__ttl {
  position: relative;
  text-align: center;
  color: #fff;
  background-color: #3ba8b5;
  font-size: 4.8rem;
  border-radius: 4.4rem;
}
@media screen and (max-width: 767px) {
  .approach__ttl {
    padding: 0.3rem 0;
    font-size: 2rem;
  }
}
.approach__ttl::before {
  position: absolute;
  width: 6.5rem;
  height: 5.9rem;
  background: url(../images/top/approach_ttl-balloon.png) no-repeat;
  background-size: contain;
  left: 50%;
  bottom: -5.9rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .approach__ttl::before {
    width: 4.5rem;
    height: 3.9rem;
    bottom: -3.9rem;
  }
}
.approach__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .approach__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
    margin-top: 4rem;
  }
}
.approach__txtwrap {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .approach__txtwrap {
    width: 100%;
  }
}
.approach__imgwrap {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .approach__imgwrap {
    width: 100%;
  }
}
.approach__imgwrap img {
  width: 100%;
  border-radius: 1rem;
}
.approach__txt {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .approach__txt {
    font-size: 1.6rem;
  }
}

/* そもそもコスト削減の取組みって？下のバナー
---------------------------------------------------- */
.mv-banner {
  padding: 2.5rem 0;
  background-color: #fff;
  border-top: 0.4rem solid #55b6c2;
  border-bottom: 0.4rem solid #55b6c2;
}
.mv-banner__ttlcold {
  margin-bottom: 2rem;
  text-align: center;
  color: #3ba8b5;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .mv-banner__ttlcold {
    line-height: 1.5;
    font-size: 2rem;
  }
}
.mv-banner__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .mv-banner__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.mv-banner__item {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv-banner__item {
    width: 100%;
  }
}
.mv-banner__balloon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .mv-banner__balloon {
    font-size: 1.8rem;
  }
}
.mv-banner__balloon::before, .mv-banner__balloon::after {
  width: 3.5rem;
  height: 0.2rem;
  background-color: #517ecf;
  border-radius: 0.1rem;
  content: "";
}
@media screen and (max-width: 767px) {
  .mv-banner__balloon::before, .mv-banner__balloon::after {
    width: 2.5rem;
  }
}
.mv-banner__balloon::before {
  margin-right: 10px;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.mv-banner__balloon::after {
  margin-left: 10px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.mv-banner__balloon--download::before, .mv-banner__balloon--download::after {
  background-color: #55b6c2;
}
@media screen and (max-width: 1280px) {
  .mv-banner__ico {
    width: 10%;
  }
}
.mv-banner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .mv-banner .btn-a {
    padding: 1.8rem;
  }
}
.mv-banner__subtxt {
  line-height: 1.2;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .mv-banner__subtxt {
    font-size: 1.6rem;
  }
}
.mv-banner__txt {
  line-height: 1.2;
  font-size: 2.8rem;
}
@media screen and (max-width: 1280px) {
  .mv-banner__txt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1100px) {
  .mv-banner__txt {
    font-size: 1.8rem;
  }
}

/* そもそもコスト削減の取組みって？下のバナー
---------------------------------------------------- */
.original-solution {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .original-solution {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .original-solution .l-inner {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .original-solution .heading-a {
    margin: 0 1.5rem;
  }
}

.swiper-wrap {
  position: relative;
}
.swiper-wrap .swiper-pagination-bullet {
  background: #fff;
  border: solid 1px #55b6c2;
  height: 1.5rem;
  margin: 0 1.5rem !important;
  opacity: 1;
  width: 1.5rem;
}
.swiper-wrap .swiper-pagination-bullet-active {
  background: #55b6c2;
}
.swiper-wrap .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 6rem;
  height: 6rem;
  margin-left: -8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 1440px) {
  .swiper-wrap .swiper-button-prev {
    margin-left: -4rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-wrap .swiper-button-prev {
    margin-left: 0;
  }
}
.swiper-wrap .swiper-button-prev::after {
  content: "";
}
.swiper-wrap .swiper-button-prev:hover:before {
  background: url(../images/common/slider-ico-hover.svg) no-repeat;
  background-size: contain;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.swiper-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 6rem;
  height: 6rem;
  margin-right: -8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 1440px) {
  .swiper-wrap .swiper-button-next {
    margin-right: -4rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-wrap .swiper-button-next {
    margin-right: 0;
  }
}
.swiper-wrap .swiper-button-next::after {
  content: "";
}
.swiper-wrap .swiper-button-next:hover:before {
  background: url(../images/common/slider-ico-hover.svg) no-repeat;
  background-size: contain;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.swiper-wrap .swiper-button-prev:before {
  width: 6rem;
  height: 6rem;
  background: url(../images/common/slider-ico.svg) no-repeat;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 1440px) {
  .swiper-wrap .swiper-button-prev:before {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-wrap .swiper-button-prev:before {
    width: 4rem;
    height: 4rem;
  }
}
.swiper-wrap .swiper-button-next::before {
  position: relative;
  width: 6rem;
  height: 6rem;
  background: url(../images/common/slider-ico.svg) no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  content: "";
}
@media screen and (max-width: 1440px) {
  .swiper-wrap .swiper-button-next::before {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-wrap .swiper-button-next::before {
    width: 4rem;
    height: 4rem;
  }
}

.solution-swiper {
  margin-top: 4.5rem;
}
.solution-swiper .swiper-wrapper {
  padding-bottom: 7rem;
}
.solution-swiper .swiper-slide {
  height: auto;
}
.solution-swiper .swiper-slide__sect {
  background: #fff;
  border: solid 2px #3ba8b5;
  border-radius: 15px;
  height: 100%;
  overflow: hidden;
}
.solution-swiper .swiper-slide__head {
  text-align: center;
}
.solution-swiper .swiper-slide__body {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}
.solution-swiper .swiper-slide__body > p {
  min-height: 11rem;
}
@media screen and (max-width: 1100px) {
  .solution-swiper .swiper-slide__body > p {
    min-height: 13rem;
  }
}
@media screen and (max-width: 767px) {
  .solution-swiper .swiper-slide__body > p {
    min-height: 10rem;
  }
}
.solution-swiper .swiper-slide__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 9rem;
  font-size: 2.5rem;
  line-height: 1.5;
  padding-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .solution-swiper .swiper-slide__ttl {
    min-height: 7rem;
    font-size: 2.1rem;
  }
}
.solution-swiper .swiper-slide__ttl sub {
  position: relative;
  bottom: -1rem;
}
.solution-swiper .swiper-slide__btn {
  margin-top: 1rem;
  text-align: center;
}
.solution-swiper .swiper-slide__btn .btn-b {
  width: 100%;
  padding: 1.8rem 0;
}
@media screen and (max-width: 1240px) {
  .solution-swiper .swiper-slide__btn .btn-b {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1100px) {
  .solution-swiper .swiper-slide__btn .btn-b {
    font-size: 1.6rem;
  }
}

.solution__otherbtn {
  padding-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .solution__otherbtn {
    margin: 0 1.5rem;
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .solution__otherbtn a {
    padding: 2.5rem 4.5rem;
  }
}

/* 初期費用ゼロでこんなことができます
---------------------------------------------------- */
.possible {
  position: relative;
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .possible {
    padding-top: 6rem;
  }
}
.possible__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .possible__content {
    margin-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .possible figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .possible figure img {
    width: 45%;
  }
}
.possible__imgcap {
  margin-top: 2rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .possible__imgcap {
    width: 60%;
    margin-top: 0;
    text-align: left;
    font-size: 1.4rem;
  }
}

/* お客さまの事例
---------------------------------------------------- */
.customer-case {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .customer-case {
    padding: 3rem 0 5rem;
  }
}
.customer-case__subttl {
  margin-top: 4rem;
  text-align: center;
  color: #333;
  background-color: rgba(85, 182, 194, 0.3);
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .customer-case__subttl {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
}
.customer-case__selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .customer-case__selection {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
}
.customer-case__selection input[type=radio] {
  display: none;
}
.customer-case__selection label {
  width: 15%;
  text-align: center;
  color: #55b6c2;
  background-color: #fff;
  border: 2px solid #55b6c2;
  border-radius: 4.7rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .customer-case__selection label {
    width: calc(50% - 1rem);
    font-size: 1.6rem;
  }
}
.customer-case__selection label:hover {
  color: #fff;
  background-color: #55b6c2;
}
.customer-case__selection input[type=radio]:checked + label {
  color: #fff;
  background-color: #55b6c2;
}
.customer-case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 4.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .customer-case__list {
    margin-top: 2rem;
    gap: 3rem;
  }
}
.customer-case__list > li {
  width: calc(33.3333333333% - 3rem);
}
@media screen and (max-width: 767px) {
  .customer-case__list > li {
    width: 100%;
  }
}
.customer-case__item {
  height: 100%;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.07);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.07);
  background-color: #fff;
}
.customer-case__img > img {
  width: 100%;
}
.customer-case__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .customer-case__content {
    height: auto;
  }
}
.customer-case__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  min-height: 7rem;
}
@media screen and (max-width: 767px) {
  .customer-case__tag {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
    min-height: 4rem;
  }
}
.customer-case__category01 {
  padding: 0.2rem 2rem;
  color: #fff;
  background-color: #55b6c2;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .customer-case__category01 {
    padding: 0.4rem 1rem;
    line-height: 1;
    font-size: 1.4rem;
  }
}
.customer-case__category02 {
  padding: 0.2rem 2rem;
  border: 1px solid #55b6c2;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .customer-case__category02 {
    padding: 0.3rem 1rem;
    line-height: 1;
    font-size: 1.4rem;
  }
}
.customer-case__txt {
  margin: 2rem 0 2.5rem;
  min-height: 10rem;
  line-height: 1.8;
  font-size: 1.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .customer-case__txt {
    margin: 1rem 0 1.2rem;
    min-height: auto;
    line-height: 1.5;
    font-size: 1.4rem;
  }
}
.customer-case__company {
  text-align: right;
  color: #999999;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .customer-case__company {
    font-size: 1.4rem;
  }
}
.customer-case__morebtn {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .customer-case__morebtn {
    margin-top: 2.5rem;
  }
}

.customer-case .customer-case__morebtn {
  display: none;
}
.customer-case.hidden .customer-case__list > li:nth-child(n+7) {
  display: none;
}
.customer-case.hidden .customer-case__morebtn {
  display: block;
}

/* よくあるご質問
---------------------------------------------------- */
.question {
  padding: 6rem 0 8rem;
  background-color: #edf8f9;
}
@media screen and (max-width: 767px) {
  .question {
    padding: 5rem 0;
  }
}
.question .l-inner {
  margin-top: -5rem;
  padding-top: 5rem;
}
.question__ttl {
  margin-bottom: 5rem;
  text-align: center;
  color: #3ba8b5;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .question__ttl {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
}
.question__cont {
  margin-bottom: 3rem;
  border-radius: 2rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .question__cont {
    border-radius: 1rem;
  }
}
.question .faq__question {
  cursor: pointer;
  padding: 3.5rem 7.5rem 3.5rem 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .question .faq__question {
    padding: 2rem 3.8rem 2rem 7rem;
  }
}
.question .faq__question > span {
  line-height: 1.5;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .question .faq__question > span {
    line-height: 1.3;
    font-size: 1.6rem;
  }
}
.question .faq__question::before {
  background: url(../images/common/question-ico.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 6.3rem;
  height: 6.3rem;
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .question .faq__question::before {
    background: url(../images/common/question-ico_sp.png) no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .question .faq__question::before {
    width: 4rem;
    height: 4rem;
    left: 1.5rem;
  }
}
.question .faq__question::after {
  content: "＋";
  color: #55b6c2;
  border: 3px solid #55b6c2;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  padding: 0 0.5rem;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .question .faq__question::after {
    padding: 0 0.4rem;
    border: 2px solid #55b6c2;
    font-size: 1.3rem;
  }
}
.question .faq__question.active::after {
  content: "－";
}
.question .faq__answer {
  display: none;
  padding: 2.5rem 2.5rem 3.5rem 10rem;
  position: relative;
  line-height: 1.5;
  font-size: 1.8rem;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, height 0.3s ease;
  transition: opacity 0.3s ease, height 0.3s ease;
}
@media screen and (max-width: 767px) {
  .question .faq__answer {
    padding: 2rem 1.3rem 2rem 7rem;
    font-size: 1.5rem;
  }
}
.question .faq__answer::before {
  background: url(../images/common/answer-ico.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 6.3rem;
  height: 6.3rem;
  position: absolute;
  top: 4rem;
  left: 2.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .question .faq__answer::before {
    background: url(../images/common/answer-ico_sp.png) no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .question .faq__answer::before {
    width: 4rem;
    height: 4rem;
    left: 1.5rem;
  }
}
.question .faq__answer.active {
  display: block;
  opacity: 1;
  height: auto;
}

.solu-faq-list__ttl {
  display: block;
  margin: 5rem 0 2rem;
  padding: 2rem 4rem;
  color: #fff;
  background-color: #55b6c2;
  border-radius: 0.5rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .solu-faq-list__ttl {
    padding: 1rem;
    font-size: 1.8rem;
  }
}

/* よくある質問はこちら下のバナー
---------------------------------------------------- */
.banner-wrap {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .banner-wrap {
    margin-bottom: 6rem;
  }
}
/*# sourceMappingURL=style.css.map */