@charset "UTF-8";
/**************************************
	base
***************************************/
/* ---------------------------------------------------------
スタイルリセット
----------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Heebo:300,400,500,700,900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  word-break: break-word;
}

b, strong {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6, td, th, p, ul, li, dt, dd {
  font-size: 1em;
}

ul li {
  list-style: none;
}

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

body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* ---------------------------------------------------------
変数
----------------------------------------------------------*/
/*break point
-----------------------*/
/*color
-----------------------*/
/*font family
-----------------------*/
/*@font-face {
  font-family: Koz_b;
  src: url(./../fonts/KozGoPro-Bold.otf);
}*/
/*-- yugo --*/
/* ---------------------------------------------------------
mixin
----------------------------------------------------------*/
/*メディアクエリ
-----------------------*/
/*-- animation --*/
/*--  transition --*/
/*-- transform --*/
/* render text
----------------------*/
/*=== CUSTOM ===*/
/*-- center with dimension --*/
/*-- center no dimension --*/
/*-- Display flex --*/
/*-- center all --*/
/*-- clearfix --*/
/*-- ANIMATION --*/
/*-- psuedo: before --*/
/*-- psuedo: after --*/
/* ---------------------------------------------------------
初期設定
----------------------------------------------------------*/
html {
  background-color: #fff;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: normal;
  color: #000;
}

body {
  margin: 0;
  padding: 0;
}

html,
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-width: 1200px;
}

a {
  text-decoration: none;
  outline: none;
  color: #000;
}

img {
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/******************************
 	base sp
*******************************/
@media screen and (max-width: 640px) {
  html, body {
    min-width: 100%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/**************************************
common.scss
***************************************/
.inner__container {
  width: 920px;
  margin: 0 auto;
}

/*-- CHILD HEADER --*/
.child__header .child__title {
  margin-top: 40px;
}
.child__header .child__title .ch__image {
  display: block;
  height: 44px;
  width: auto;
  margin: 0 auto 10px;
}
.child__header .child__title .ch__text {
  text-align: center;
  font-size: 17.5px;
  font-weight: 500;
}
.child__header .image__field {
  height: calc(100vh - 317.8px);
  background-position: center -24px !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

/*-- TAB FIELD --*/
.tab__field {
  margin: 50px 0 60px;
}
.tab__field .tf__head {
  margin-bottom: 60px;
}
.tab__field .tf__head .tf__wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.tab__field .tf__head .tf__wrap::after {
  content: "";
  display: block;
  clear: both;
}
.tab__field .tf__head .tf__wrap .tf__list {
  position: relative;
  float: left;
  width: 33.33%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 45px 6px 0px;
  cursor: pointer;
}
.tab__field .tf__head .tf__wrap .tf__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 100%;
  -webkit-transform: skewX(40deg);
  transform: skewX(40deg);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.tab__field .tf__head .tf__wrap .tf__list:nth-child(1) {
  padding-left: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.tab__field .tf__head .tf__wrap .tf__list:nth-child(1)::before {
  /*background-color: #B3D9EE;*/
  background-color: #339BD3;
}
.tab__field .tf__head .tf__wrap .tf__list:nth-child(1):hover::before, .tab__field .tf__head .tf__wrap .tf__list:nth-child(1).active::before {
  background-color: #339BD3;
}
.tab__field .tf__head .tf__wrap .tf__list:nth-child(2)::before {
  /*background-color: #f5d4d4;*/
  background-color: #FF4C79;
}
.tab__field .tf__head .tf__wrap .tf__list:nth-child(2):hover::before, .tab__field .tf__head .tf__wrap .tf__list:nth-child(2).active::before {
  background-color: #FF4C79;
}
.tab__field .tf__head .tf__wrap .tf__list:nth-child(3)::before {
  /*background-color: #d5f6e8;*/
  background-color: #33D490;
}
.tab__field .tf__head .tf__wrap .tf__list:nth-child(3):hover::before, .tab__field .tf__head .tf__wrap .tf__list:nth-child(3).active::before {
  background-color: #33D490;
}
.tab__field .tf__head .tf__wrap .tf__list .tf__maintext, .tab__field .tf__head .tf__wrap .tf__list .tf__subtext {
  position: relative;
  width: 100%;
  text-align: center;
  display: block;
  color: #fff;
  z-index: 100;
}
.tab__field .tf__head .tf__wrap .tf__list .tf__maintext {
  font: bold 20px/1 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 2px;
  -webkit-animation: fadeLeft 1s ease;
  animation: fadeLeft 1s ease;
}
.tab__field .tf__head .tf__wrap .tf__list .tf__subtext {
  font: normal 16px/1 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  -webkit-animation: fadeLeft 1s ease 0.1s;
  animation: fadeLeft 1s ease 0.1s;
}
.tab__field .tf__body {
  min-height: 100px;
}
.tab__field .tf__body .tf__wrap {
  width: 100%;
  display: none;
  -webkit-animation: fadeUp 1s ease;
  animation: fadeUp 1s ease;
}
.tab__field .tf__body .tf__wrap.blue__field .tf__section .tf__title {
  background-color: #B3D9EE;
}
.tab__field .tf__body .tf__wrap.red__field .tf__section .tf__title {
  background-color: #f5d4d4;
}
.tab__field .tf__body .tf__wrap.green__field .tf__section .tf__title {
  background-color: #d5f6e8;
}
.tab__field .tf__body .tf__wrap.active {
  display: block;
}
.tab__field .tf__body .tf__wrap .tf__section .tf__title {
  width: 100%;
  display: block;
  background-color: #666;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 20px;
  font: bold 17.5px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.tab__field .tf__body .tf__wrap .tf__section .tf__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 22px;
}
.tab__field .tf__body .tf__wrap .tf__section .tf__content .tf__text {
  font: normal 17.5px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}

/*-- PANEL --*/
.panel {
  margin-bottom: 100px;
  width: 100%;
  display: block;
  overflow: hidden;
  /*-- spacing --*/
}
.panel .panel__header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 30px;
  padding: 15px;
  width: 100%;
}
.panel .panel__header .ph__title {
  font: normal 18px "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  color: #fff;
}
.panel .panel__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  min-height: 50px;
  width: 100%;
}
.panel.mb__20 {
  margin-bottom: 20px;
}
.panel.mb__50 {
  margin-bottom: 50px;
}

.section__template .into__title {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.section__template .into__title .it__text {
  display: block;
  height: 44px;
  width: auto;
  margin: 0 auto 10px;
}
.section__template .into__title .it__subtext {
  font: normal 17.5px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.section__template .st__btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 262px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9px 15px 11px 0px;
  text-align: center;
  background-color: #D12D2D;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  overflow: hidden;
}
.section__template .st__btn::after {
  content: "";
  position: absolute;
  width: 200%;
  left: -240%;
  top: 0;
  -webkit-transform: skewX(-40deg);
  transform: skewX(-40deg);
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(250, 250, 250, 0.2)), to(transparent));
  background-image: linear-gradient(to right, transparent, rgba(250, 250, 250, 0.2), transparent);
  height: 100%;
}
.section__template .st__btn:hover::after {
  -webkit-animation: shine 1.5s ease 0.2s;
  animation: shine 1.5s ease 0.2s;
}
.section__template .st__btn.set__2 {
  max-width: 290px;
}
.section__template .st__btn.set__2 .stb__text {
  font-size: 16px;
}
.section__template .st__btn:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.section__template .st__btn:hover::before {
  -webkit-animation: arrowLeft 1s ease infinite;
          animation: arrowLeft 1s ease infinite;
}
.section__template .st__btn::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  height: 17px;
  width: 10px;
  margin: auto;
  background: url("./../img/main/btn-arrow-left-min.png") no-repeat;
  background-size: contain;
  -webkit-transform: perspective(1px);
  transform: perspective(1px);
}
.section__template .st__btn .stb__text {
  font: bold 17.5px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 26px;
  color: #fff;
}
.section__template .st__btn.mt_100 {
  margin-top: 100px;
}
.section__template .st__btn.mt_50 {
  margin-top: 50px;
}
.section__template.mb_20 {
  margin-bottom: 20px;
}
.section__template.mb_40 {
  margin-bottom: 40px;
}
.section__template.mb_50 {
  margin-bottom: 50px;
}
.section__template.mb_60 {
  margin-bottom: 60px;
}
.section__template.mb_70 {
  margin-bottom: 70px;
}
.section__template.mb_77 {
  margin-bottom: 77px;
}
.section__template.mb_80 {
  margin-bottom: 80px;
}
.section__template.mb_85 {
  margin-bottom: 85px;
}
.section__template.mb_100 {
  margin-bottom: 100px;
}

/*-- Training page --*/
.sales__content .section__head {
  margin-top: 30px;
  background-color: #999;
  height: 1px;
}
.sales__content .section__head .st__text {
  margin: 0 auto;
  position: relative;
  top: -18px;
  width: 340px;
  text-align: center;
  background: #fff;
  font-size: 24px;
  font-weight: 500;
}
.sales__content .sales__group {
  margin: 30px auto 0;
  max-width: 743.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.sales__content .sales__group.set--2 {
  max-width: 553px;
}
.sales__content .sales__group .text__field.set--2 {
  max-width: 441.88px;
}
.sales__content .sales__group .text__field.set--2 p {
  font-size: 17.5px;
  letter-spacing: 0;
}
.sales__content .sales__group .text__field.set--2 p.lh--1 {
  margin-top: -8px;
  font: 17.5px/2 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.sales__content .sales__group .sales__person {
  margin-top: 4px;
}
.sales__content .sales__group .sales__person .image__field {
  margin: auto;
  max-width: 190px;
}
.sales__content .sales__group .sales__person .image__field img {
  width: 100%;
  height: auto;
}
.sales__content .sales__group .sales__person .text__field .ss__branch {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.sales__content .sales__group .sales__person .text__field .ss__kanji {
  display: inline-block;
  font: 600 23px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
}
.sales__content .sales__group .sales__person .text__field .ss__name {
  display: inline-block;
  margin-left: 10px;
  font: 15px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
}
.sales__content .item__container {
  margin-top: 35px;
}
.sales__content .item__container.set--1 .item {
  margin-bottom: 35px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sales__content .item__container.set--1 .item .image__field {
  max-width: 385.5px;
}
.sales__content .item__container.set--1 .item .image__field .item__thumbnail {
  max-width: 350px;
}
.sales__content .item__container.set--1 .item .text__field {
  width: calc(100% - 385.5px);
}
.sales__content .item__container.set--1 .item .text__field .item__title {
  font: 32.4px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
}
.sales__content .item__container.set--1 .item .text__field .item__desc {
  margin-top: 8px;
  font: normal 17.5px/2.2 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
}
.sales__content .item__container.set--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sales__content .item__container.set--2 .item {
  margin-bottom: 30px;
  max-width: 291px;
}
.sales__content .item__container.set--2 .item .image__field img {
  width: 100%;
  height: auto;
}
.sales__content .item__container.set--2 .item .text__field {
  width: 100%;
}
.sales__content .item__container.set--2 .item .text__field .text__content {
  height: 110px;
  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;
  text-align: center;
  background: #7D1B1B;
  color: #fff;
  font-weight: bold;
}
.sales__content .item__container.set--2 .item .text__field .text__content.set--2 {
  background: #D12D2D;
}
.sales__content .item__container.set--2 .item .text__field .item__title {
  font: 32.4px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
}
.sales__content .item__container.set--2 .item .text__field .item__title.set--2 {
  font: 24.8px "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.sales__content .item__container.set--2 .item .text__field .item__title.set--2 span {
  display: block;
  font: 24.8px/1.2 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
}
.sales__content .item__container.set--2 .item .text__field .item__desc {
  font: 500 17.5px/1.3 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.sales__content .item__container.set--2 .item .text__field .item__desc span {
  display: block;
  margin-top: 10px;
  font: 500 15px/1.3 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}

.car__table {
  position: relative;
  margin: 33px 0 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.car__table .ct__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.car__table .ct__card:nth-child(1) {
  width: 384px;
}
.car__table .ct__card:nth-child(2), .car__table .ct__card:nth-child(3) {
  width: 264px;
}
.car__table .ct__card:nth-child(2) .ct__labels, .car__table .ct__card:nth-child(3) .ct__labels {
  display: none;
}
.car__table .ct__card .ct__labels {
  width: 115px;
}
.car__table .ct__card .ct__labels ul {
  width: 100%;
}
.car__table .ct__card .ct__labels ul li {
  background-color: #E6E6E1;
  position: relative;
  width: 100%;
  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;
}
.car__table .ct__card .ct__labels ul li:nth-child(1) {
  height: 235px;
}
.car__table .ct__card .ct__labels ul li:nth-child(2) {
  height: 200px;
}
.car__table .ct__card .ct__labels ul li:nth-child(3) {
  height: 135px;
}
.car__table .ct__card .ct__labels ul li:nth-child(3) .arrow__before {
  bottom: -11px;
}
.car__table .ct__card .ct__labels ul li:nth-child(3) .arrow__before::before {
  -webkit-transform: perspective(1px) rotate(90deg) skewX(-20deg);
          transform: perspective(1px) rotate(90deg) skewX(-20deg);
}
.car__table .ct__card .ct__labels ul li:nth-child(3) .arrow__before::after {
  -webkit-transform: perspective(1px) rotate(90deg) skewX(20deg);
          transform: perspective(1px) rotate(90deg) skewX(20deg);
}
.car__table .ct__card .ct__labels ul li:nth-child(3) .arrow__after {
  display: none;
}
.car__table .ct__card .ct__labels ul li .ct__text {
  margin-top: 20px;
  text-align: center;
}
.car__table .ct__card .ct__labels ul li .ct__text .ct__label {
  font: 600 15px "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.car__table .ct__card .ct__labels ul li .ct__text .ct__sublabel {
  font: 600 11px "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.car__table .ct__card .ct__labels ul li .arrow__before, .car__table .ct__card .ct__labels ul li .arrow__after {
  position: absolute;
  left: 0;
  height: 58px;
  width: 100%;
}
.car__table .ct__card .ct__labels ul li .arrow__before::before, .car__table .ct__card .ct__labels ul li .arrow__before::after, .car__table .ct__card .ct__labels ul li .arrow__after::before, .car__table .ct__card .ct__labels ul li .arrow__after::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 100%;
}
.car__table .ct__card .ct__labels ul li .arrow__before::before, .car__table .ct__card .ct__labels ul li .arrow__after::before {
  left: 0;
  -webkit-transform: perspective(1px) rotate(90deg) skewX(-12deg);
          transform: perspective(1px) rotate(90deg) skewX(-12deg);
}
.car__table .ct__card .ct__labels ul li .arrow__before::after, .car__table .ct__card .ct__labels ul li .arrow__after::after {
  right: 0;
  -webkit-transform: perspective(1px) rotate(90deg) skewX(12deg);
          transform: perspective(1px) rotate(90deg) skewX(12deg);
}
.car__table .ct__card .ct__labels ul li .arrow__before {
  bottom: -9px;
  z-index: 2;
}
.car__table .ct__card .ct__labels ul li .arrow__before::before, .car__table .ct__card .ct__labels ul li .arrow__before::after {
  background-color: #E6E6E1;
}
.car__table .ct__card .ct__labels ul li .arrow__after {
  bottom: -10px;
  z-index: 1;
}
.car__table .ct__card .ct__labels ul li .arrow__after::before, .car__table .ct__card .ct__labels ul li .arrow__after::after {
  background-color: #fff;
}
.car__table .ct__card .ct__content {
  width: 264px;
}
.car__table .ct__card .ct__content.bg__blue {
  background-color: #339BD3;
}
.car__table .ct__card .ct__content.bg__blue .ct__body ul .arrow__tail::before, .car__table .ct__card .ct__content.bg__blue .ct__body ul .arrow__tail::after {
  background-color: #339BD3;
}
.car__table .ct__card .ct__content.bg__pink {
  background-color: #FF5E87;
}
.car__table .ct__card .ct__content.bg__pink .ct__body ul .arrow__tail::before, .car__table .ct__card .ct__content.bg__pink .ct__body ul .arrow__tail::after {
  background-color: #FF5E87;
}
.car__table .ct__card .ct__content.bg__green {
  background-color: #33D490;
}
.car__table .ct__card .ct__content.bg__green .ct__body ul .arrow__tail::before, .car__table .ct__card .ct__content.bg__green .ct__body ul .arrow__tail::after {
  background-color: #33D490;
}
.car__table .ct__card .ct__content .ct__head {
  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;
  height: 54px;
  width: 100%;
  border-bottom: 1px solid #fff;
}
.car__table .ct__card .ct__content .ct__head .ct__title {
  font: 600 15px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  color: #fff;
}
.car__table .ct__card .ct__content .ct__head .ct__subtitle {
  margin-left: 5px;
  font: 400 12px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  color: #fff;
}
.car__table .ct__card .ct__content .ct__body ul {
  position: relative;
  width: 100%;
}
.car__table .ct__card .ct__content .ct__body ul li {
  position: relative;
  width: 100%;
  z-index: 1;
  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;
}
.car__table .ct__card .ct__content .ct__body ul li:nth-child(1) {
  height: 185px;
}
.car__table .ct__card .ct__content .ct__body ul li:nth-child(2) {
  height: 200px;
}
.car__table .ct__card .ct__content .ct__body ul li:nth-child(3) {
  height: 131px;
}
.car__table .ct__card .ct__content .ct__body ul li:nth-child(3)::after {
  display: none;
}
.car__table .ct__card .ct__content .ct__body ul li::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 70%;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.car__table .ct__card .ct__content .ct__body ul li p {
  display: block;
  text-align: center;
  font: 600 15px "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #fff;
}
.car__table .ct__card .ct__content .ct__body ul .arrow__tail {
  position: absolute;
  left: 0;
  height: 132px;
  width: 100%;
  bottom: 4px;
}
.car__table .ct__card .ct__content .ct__body ul .arrow__tail::before, .car__table .ct__card .ct__content .ct__body ul .arrow__tail::after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 50%;
  height: 100%;
}
.car__table .ct__card .ct__content .ct__body ul .arrow__tail::before {
  left: 0;
  -webkit-transform: perspective(1px) rotate(90deg) skewX(-8deg);
          transform: perspective(1px) rotate(90deg) skewX(-8deg);
}
.car__table .ct__card .ct__content .ct__body ul .arrow__tail::after {
  right: 0;
  -webkit-transform: perspective(1px) rotate(90deg) skewX(8deg);
          transform: perspective(1px) rotate(90deg) skewX(8deg);
}

/*-- Process page --*/
.process__map__container {
  padding-left: 46px;
  margin: 0 0 100px;
}
.process__map__container .process__map {
  margin: 0 auto;
  width: 100%;
  height: 85px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: center/cover no-repeat url("./../img/process/process-img-01-min.png");
  color: white;
}
.process__map__container .process__map .process__step {
  position: relative;
}
.process__map__container .process__map .process__step .circle {
  width: 97px;
  height: 97px;
  position: absolute;
  top: -4px;
  left: -50px;
  background: center/contain no-repeat url("./../img/process/process-img-05-min.png");
}
.process__map__container .process__map .process__step .circle::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 31%;
  font-size: 11.9px;
}
.process__map__container .process__map .process__step .circle .circle__text {
  position: absolute;
  top: 18%;
  left: 9px;
  width: 84.65px;
  text-align: center;
  font: bold 51.56px "Heebo", sans-serif;
  letter-spacing: 0;
}
.process__map__container .process__map .process__content {
  height: 85px;
  position: absolute;
  left: 72.9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.process__map__container .process__map .process__content .pc__image__field {
  padding: 0 15px;
  max-width: 40.39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.process__map__container .process__map .process__content .pc__image__field.set__2 {
  padding: 0 7.89px;
  max-width: 56.17px;
}
.process__map__container .process__map .process__content .pc__image__field img {
  width: 100%;
  height: auto;
}
.process__map__container .process__map .process__content .pc__text__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.process__map__container .process__map .process__content .pc__text__field .process__subject {
  padding: 20px 22px;
  font: normal 36px/1 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.process__map__container .process__map .process__content .pc__text__field .process__subject.set__2 {
  padding: 0 40px;
}
.process__map__container .process__map .process__content .pc__text__field .process__description {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0 0 0 43px;
  height: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  font: bold 14px/1.4 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.process__map__container .process__map .process__content .pc__text__field .process__description::before {
  width: 2px;
  height: 45px;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff;
}
.process__map__container .process__map:nth-child(3) {
  background: center/cover no-repeat url("./../img/process/process-img-02-min.png");
}
.process__map__container .process__map:nth-child(3) .process__step .circle {
  background: center/contain no-repeat url("./../img/process/process-img-06-min.png");
}
.process__map__container .process__map:nth-child(5) {
  background: center/cover no-repeat url("./../img/process/process-img-03-min.png");
}
.process__map__container .process__map:nth-child(5) .process__step .circle {
  background: center/contain no-repeat url("./../img/process/process-img-07-min.png");
}
.process__map__container .process__map:last-child {
  background: center/cover no-repeat url("./../img/process/process-img-04-min.png");
}
.process__map__container .process__map:last-child .process__step .circle {
  background: center/contain no-repeat url("./../img/process/process-img-08-min.png");
}
.process__map__container .process__arrow {
  position: relative;
  left: -23px;
  margin: 22.64px auto;
  width: 43.3px;
  height: 70.17px;
  background: center/contain no-repeat url("./../img/process/process-img-12-min.png");
}

/*-- FLEX FIELD --*/
.flex__field, .inflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*-- columns --*/
  /*-- margins --*/
  /*-- FLEX OPTIONS --*/
}
.flex__field .col__10, .inflex .col__10 {
  width: 10%;
}
.flex__field .col__20, .inflex .col__20 {
  width: 20%;
}
.flex__field .col__30, .inflex .col__30 {
  width: 30%;
}
.flex__field .col__40, .inflex .col__40 {
  width: 40%;
}
.flex__field .col__50, .inflex .col__50 {
  width: 50%;
}
.flex__field .col__60, .inflex .col__60 {
  width: 60%;
}
.flex__field .col__70, .inflex .col__70 {
  width: 70%;
}
.flex__field .col__80, .inflex .col__80 {
  width: 80%;
}
.flex__field .col__90, .inflex .col__90 {
  width: 90%;
}
.flex__field .col__100, .inflex .col__100 {
  width: 100%;
}
.flex__field .col__eql, .inflex .col__eql {
  width: 33.33%;
}
.flex__field.mt__20, .inflex.mt__20 {
  margin-top: 20px;
}
.flex__field.mt__30, .inflex.mt__30 {
  margin-top: 30px;
}
.flex__field.mb__20, .inflex.mb__20 {
  margin-bottom: 20px;
}
.flex__field.mb__50, .inflex.mb__50 {
  margin-bottom: 50px;
}
.flex__field.mb__100, .inflex.mb__100 {
  margin-bottom: 100px;
}
.flex__field.sa, .inflex.sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex__field.c, .inflex.c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*-- THUMBNAIL BOX --*/
.thumbnail__box {
  position: relative;
  width: 285px;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.thumbnail__box:hover .tb__bg {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
.thumbnail__box .tb__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.thumbnail__box .tb__bg__sp {
  display: none;
}
.thumbnail__box .tb__title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 50px;
  text-align: center;
}
.thumbnail__box .tb__title .tbt__text {
  font: 500 23px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  color: #fff;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}
.thumbnail__box .tb__title .tbt__text.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.thumbnail__box .tb__title .tbt__subtext {
  font: 100 15px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}
.thumbnail__box .tb__title .tbt__subtext.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.thumbnail__box .tb__overlay__1 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
}
.thumbnail__box .tb__overlay__1::before, .thumbnail__box .tb__overlay__1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.thumbnail__box .tb__overlay__1::before {
  background-color: #fff;
}
.thumbnail__box .tb__overlay__1::after {
  background-color: rgba(250, 250, 250, 0.8);
}
.thumbnail__box .tb__overlay__1.active::before, .thumbnail__box .tb__overlay__1.active::after {
  width: 0;
  opacity: 0;
}
.thumbnail__box .tb__overlay__1.active::before {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.thumbnail__box .tb__overlay__1.active::after {
  -webkit-transition: 0.6s ease 0.2s;
  transition: 0.6s ease 0.2s;
}

/*-- IMAGE BOX --*/
.img__wrap {
  width: 100%;
  /*-- spacing --*/
}
.img__wrap .img__title {
  font: 500 16px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.img__wrap .img__detail {
  font: 400 14px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.img__wrap .img__title.ctr, .img__wrap .img__detail.ctr {
  text-align: center;
}
.img__wrap img {
  display: block;
  width: 100%;
  height: auto;
  /*-- pages --*/
}
.img__wrap.mb__20 {
  margin-bottom: 20px;
}
.img__wrap.mb__50 {
  margin-bottom: 50px;
}

/*-- TEXT --*/
.text__field {
  width: 100%;
  /*-- LISTS --*/
}
.text__field p {
  font: normal 14px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.text__field p.rt__text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 18px;
  font-size: 17.5px;
}
.text__field ul {
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.text__field ul.pl__20 {
  padding-left: 20px;
}
.text__field ul.bullet__list {
  width: 100%;
}
.text__field ul.bullet__list li {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 23px;
}
.text__field ul.bullet__list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 11px;
  height: 2px;
  width: 2px;
  border-radius: 100%;
  background-color: #000;
}
.text__field ul.bullet__list li p {
  font: normal 11px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.text__field ul.cube__list li {
  position: relative;
  width: 100%;
  min-height: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 16px;
}
.text__field ul.cube__list li .cube__icon {
  position: absolute;
  top: 0;
  left: 0;
  font: normal 11px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.text__field ul.cube__list li p {
  font: normal 11px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.text__field ul.asterisk__list {
  width: 100%;
}
.text__field ul.asterisk__list li {
  position: relative;
  width: 100%;
  min-height: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 23px;
}
.text__field ul.asterisk__list li .al__icon {
  position: absolute;
  top: 0;
  left: 7px;
  font: normal 11px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.text__field ul.asterisk__list li p {
  font: normal 11px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.text__field ul.smalldot__list {
  position: relative;
  width: 100%;
  margin: auto;
}
.text__field ul.smalldot__list li {
  position: relative;
  width: 100%;
}
.text__field ul.smalldot__list li::before {
  content: "·";
  position: absolute;
  top: 0;
  left: 2px;
  font: normal 17.5px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.text__field ul.smalldot__list li p {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 15px;
  font: normal 17.5px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.text__field ul.bigdot__list {
  width: 100%;
}
.text__field ul.bigdot__list li {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 16px;
  min-height: 16px;
}
.text__field ul.bigdot__list li::after {
  content: "";
  display: block;
  clear: both;
}
.text__field ul.bigdot__list li .li__icon {
  position: absolute;
  top: 5px;
  left: 0;
}
.text__field ul.bigdot__list li p {
  font: 300 14px/2 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.text__field .ctr__text {
  width: 100%;
  text-align: center;
}
.text__field .ctr__text.set__2 {
  padding: 50px 0 62px;
}
.text__field .ctr__text p {
  font: 500 15px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.text__field .ctr__text p.set__2 {
  font: normal 17.5px/1.5 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2.3em;
}
.text__field .ctr__text p.set__3 {
  font: normal 17.5px/2.2 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.text__field .ctr__text p.set__4 {
  font: normal 31px/2.2 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.text__field .section__title {
  background-color: #D12D2D;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 3px;
}
.text__field .section__title.set__2 {
  margin-bottom: 23px;
}
.text__field .section__title.set__3 {
  padding: 21px 0;
}
.text__field .section__title .st__text, .text__field .section__title span {
  display: inline-block;
  font: bold 32.5px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  color: #fff;
}
.text__field .section__title .st__text.set__2, .text__field .section__title span.set__2 {
  letter-spacing: 10px;
}
.text__field .section__title .st__text.set__3, .text__field .section__title span.set__3 {
  font: normal 40px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
}
.text__field .section__title span {
  font: normal 30px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.text__field .section__subtitle {
  margin: 0 auto 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px 4px 3px;
  background: #E6E6E6;
  border-radius: 50px;
  text-align: center;
}
.text__field .section__subtitle span, .text__field .section__subtitle .st__text {
  font: 500 24px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
}
.text__field .section__subtitle span {
  display: inline-block;
  vertical-align: middle;
  font-family: "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.text__field .section__subtitle .st__text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 7px;
}
.text__field .section__subtitle.set__3 {
  margin: 0 auto 35px;
}

/*-- PAGE BUTTON --*/
.page__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 75px;
}
.page__buttons .pb__btn {
  position: relative;
  width: 100%;
  min-width: 290px;
  max-width: 457px;
  border: 1px solid #D12D2D;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F0F0F0;
  padding: 5px;
  margin-bottom: 5px;
  overflow: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  overflow: hidden;
}
.page__buttons .pb__btn::after {
  content: "";
  position: absolute;
  width: 200%;
  left: -240%;
  top: 0;
  -webkit-transform: skewX(-40deg);
  transform: skewX(-40deg);
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(250, 250, 250, 0.2)), to(transparent));
  background-image: linear-gradient(to right, transparent, rgba(250, 250, 250, 0.2), transparent);
  height: 100%;
}
.page__buttons .pb__btn:hover::after {
  -webkit-animation: shine 1.5s ease 0.2s;
  animation: shine 1.5s ease 0.2s;
}
.page__buttons .pb__btn:hover {
  border: 1px solid #ed3131;
}
.page__buttons .pb__btn:hover .pb__content .pb__icon {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.page__buttons .pb__btn:hover .pb__content .pb__text {
  border-left: 2px dotted #ed3131;
  color: #ed3131;
}
.page__buttons .pb__btn:hover .pb__content .pb__subtext {
  color: #ed3131;
}
.page__buttons .pb__btn .pb__content {
  width: 100%;
  text-align: center;
  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;
}
.page__buttons .pb__btn .pb__content .pb__icon {
  display: inline-block;
  width: 39px;
  height: auto;
  margin-top: 1px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.page__buttons .pb__btn .pb__content .pb__text {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 15px;
  margin-left: 12px;
  border-left: 2px dotted #D12D2D;
  margin-top: 2px;
  vertical-align: top;
}
.page__buttons .pb__btn .pb__content .pb__text p {
  display: block;
  margin-top: 2px;
  font: bold 19px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: #D12D2D;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.page__buttons .pb__btn .pb__content .pb__subtext {
  display: inline-block;
  font: normal 15px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  color: #D12D2D;
  vertical-align: top;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.page__buttons .pb__btn.set__2 {
  background-color: #D12D2D;
  max-width: 100%;
  padding: 11px 5px 9px;
}
.page__buttons .pb__btn.set__2:hover {
  background-color: #ed3131;
}
.page__buttons .pb__btn.set__2:hover .pb__content .pb__icon {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}
.page__buttons .pb__btn.set__2:hover .pb__content .pb__subtext {
  color: #fff;
}
.page__buttons .pb__btn.set__2 .pb__content {
  width: 100%;
  text-align: center;
}
.page__buttons .pb__btn.set__2 .pb__content .pb__icon {
  width: 30px;
  margin-top: 1px;
  -webkit-transform: perspective(1px);
  transform: perspective(1px);
}
.page__buttons .pb__btn.set__2 .pb__content .pb__text {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 15px;
  margin-left: 22px;
  border-left: 2px dotted #fff;
  margin-top: 2px;
  height: 30px;
  vertical-align: top;
  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;
}
.page__buttons .pb__btn.set__2 .pb__content .pb__text p {
  display: block;
  font: bold 27px/1 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
  color: #fff;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.page__buttons .pb__btn.set__2 .pb__content .pb__subtext {
  display: inline-block;
  font: normal 21px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  color: #fff;
  vertical-align: top;
  margin-top: 0;
}

.trigger__point {
  height: 1px;
  width: 300px;
  background-color: green;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  opacity: 0;
}

.btn__top {
  position: fixed;
  bottom: 100px;
  right: 50px;
  background-color: #fff;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-animation: riffles 0.6s linear infinite;
  animation: riffles 0.6s linear infinite;
}
.btn__top.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: 0.4s ease 0.2s;
  transition: 0.4s ease 0.2s;
}
.btn__top:hover {
  -webkit-animation: riffles_active 0.6s linear infinite;
  animation: riffles_active 0.6s linear infinite;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
.btn__top:hover.show {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.btn__top:hover .btt__line {
  border-color: #D12D2D;
}
.btn__top .btt__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  top: 5px;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb;
}

/*-- MODAL --*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
}
.modal .m__display {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.4), 0 4px 15px 0 rgba(0, 0, 0, 0.8);
          box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.4), 0 4px 15px 0 rgba(0, 0, 0, 0.8);
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 900px;
  height: 377px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}
.modal .m__display.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.modal .m__display .close__btn {
  position: absolute;
  top: -14px;
  right: -13px;
  background-color: #000;
  border: 1px solid #fff;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.modal .m__display .close__btn:hover, .modal .m__display .close__btn:active {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  background-color: #D12D2D;
  border-color: #D12D2D;
}
.modal .m__display .close__btn:hover .cross, .modal .m__display .close__btn:active .cross {
  -webkit-transform: perspective(1px) rotate(227deg);
  transform: perspective(1px) rotate(227deg);
}
.modal .m__display .close__btn .cross {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: perspective(1px) rotate(45deg);
  transform: perspective(1px) rotate(45deg);
}
.modal .m__display .close__btn .cross::before, .modal .m__display .close__btn .cross::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background-color: #fff;
  z-index: 100;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.modal .m__display .close__btn .cross::after {
  -webkit-transform: perspective(1px) rotate(90deg);
  transform: perspective(1px) rotate(90deg);
}
.modal .m__display .left__part {
  width: calc(100% - 370px);
}
.modal .m__display .left__part .m__head {
  background-color: #414141;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 14px 20px 10px;
}
.modal .m__display .left__part .m__head.blue_bg {
  background-color: #339ad6;
}
.modal .m__display .left__part .m__head.green_bg {
  background-color: #19cf83;
}
.modal .m__display .left__part .m__head.pink_bg {
  background-color: #ff5f86;
}
.modal .m__display .left__part .m__head .m__title {
  display: inline-block;
  font: 500 30px/1 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  color: #fff;
}
.modal .m__display .left__part .m__head .m__subtitle {
  display: inline-block;
  border-left: 1px solid #fff;
  padding: 5px 0 5px 15px;
  margin-left: 10px;
  font: normal 16px/1 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  top: -4px;
}
.modal .m__display .left__part .m__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 22px 20px 20px;
}
.modal .m__display .left__part .m__body .details__title {
  font: 600 28px/1.2 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  margin-bottom: 10px;
  display: block;
}
.modal .m__display .left__part .m__body p {
  font: 500 18px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.modal .m__display .right__part {
  background-color: #666;
  width: 370px;
  height: 100%;
  overflow: hidden;
}
.modal .m__display .right__part img {
  width: 100%;
  height: auto;
}

.accordion__field {
  position: relative;
  width: 100%;
  margin-bottom: 55px;
}
.accordion__field.set__2 {
  margin-bottom: 90px;
}
.accordion__field .af__sec__title {
  background-color: #666;
  text-align: center;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0 5px;
}
.accordion__field .af__sec__title.set__blue {
  background-color: #0082C8;
}
.accordion__field .af__sec__title.set__pink {
  background-color: #FF4C79;
}
.accordion__field .af__sec__title.set__green {
  background-color: #00C974;
}
.accordion__field .af__sec__title .ast__text, .accordion__field .af__sec__title .ast__subtext {
  display: inline-block;
  color: #fff;
}
.accordion__field .af__sec__title .ast__text {
  font: bold 40px/1 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 4px;
}
.accordion__field .af__sec__title .ast__subtext {
  font: normal 16px/1 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  margin-left: 15px;
}
.accordion__field .accordion {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 1px;
}
.accordion__field .accordion.open .acc__head .acc__head__details .ahd__button::before {
  top: 18px;
  -webkit-transform: perspective(1px) rotate(225deg);
  transform: perspective(1px) rotate(225deg);
}
.accordion__field .accordion.set__blue .acc__head {
  background-color: #0082C8;
}
.accordion__field .accordion.set__blue .acc__head .acc__head__details .ahd__button {
  color: #0082C8;
}
.accordion__field .accordion.set__blue .acc__head .acc__head__details .ahd__button::before {
  border-color: #0082C8;
}
.accordion__field .accordion.set__pink .acc__head {
  background-color: #FF4C79;
}
.accordion__field .accordion.set__pink .acc__head .acc__head__details .ahd__button {
  color: #FF4C79;
}
.accordion__field .accordion.set__pink .acc__head .acc__head__details .ahd__button::before {
  border-color: #FF4C79;
}
.accordion__field .accordion.set__green .acc__head {
  background-color: #00C974;
}
.accordion__field .accordion.set__green .acc__head .acc__head__details .ahd__button {
  color: #00C974;
}
.accordion__field .accordion.set__green .acc__head .acc__head__details .ahd__button::before {
  border-color: #00C974;
}
.accordion__field .accordion .acc__head {
  background-color: #666;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 5px 15px 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.accordion__field .accordion .acc__head .acc__image {
  width: 100%;
  max-width: 340px;
}
.accordion__field .accordion .acc__head .acc__image img {
  width: 100%;
  height: auto;
}
.accordion__field .accordion .acc__head .acc__head__details {
  width: calc(100% - 340px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.accordion__field .accordion .acc__head .acc__head__details .ahd__text {
  width: 100%;
  min-height: 110px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: normal 22px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}
.accordion__field .accordion .acc__head .acc__head__details .ahd__schedule {
  position: relative;
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.accordion__field .accordion .acc__head .acc__head__details .ahd__schedule .hasgtag, .accordion__field .accordion .acc__head .acc__head__details .ahd__schedule .number {
  display: inline-block;
  vertical-align: top;
  font: normal 40px/1.5 "Frank Ruhl Libre", serif;
  letter-spacing: 0;
  color: rgba(250, 250, 250, 0.4);
}
.accordion__field .accordion .acc__head .acc__head__details .ahd__schedule .number {
  font: normal 108px/1 "Frank Ruhl Libre", serif;
  letter-spacing: 0;
  letter-spacing: -0.07em;
}
.accordion__field .accordion .acc__head .acc__head__details .ahd__schedule .date {
  display: inline-block;
  vertical-align: top;
  margin-top: 37px;
  margin-left: 5px;
  font: 600 14px/2 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  color: #fff;
}
.accordion__field .accordion .acc__head .acc__head__details .ahd__button {
  display: inline-block;
  background-color: #fff;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  max-width: 250px;
  padding: 11px 25px 12px;
  font: 600 14px "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  /*&:hover {
    &::before {
      @include anim(blinking .2s ease infinite);
    }
  }*/
}
.accordion__field .accordion .acc__head .acc__head__details .ahd__button::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 14px;
  height: 8px;
  width: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transform: perspective(1px) rotate(45deg);
  transform: perspective(1px) rotate(45deg);
}
.accordion__field .accordion .acc__body {
  background-color: #E6E6E1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 15px;
  width: 100%;
  display: none;
}
.accordion__field .accordion .acc__body .ab__card {
  width: 100%;
  margin-bottom: 32.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.accordion__field .accordion .acc__body .ab__card:last-child {
  margin-bottom: 0;
}
.accordion__field .accordion .acc__body .ab__card .acc__image {
  width: 100%;
  max-width: 340px;
}
.accordion__field .accordion .acc__body .ab__card .acc__image img {
  width: 100%;
  height: auto;
}
.accordion__field .accordion .acc__body .ab__card .acc__body__details {
  width: calc(100% - 340px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 30px;
}
.accordion__field .accordion .acc__body .ab__card .acc__body__details .abd__title {
  display: block;
  font: normal 22px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  letter-spacing: 0;
  margin-bottom: 3px;
}
.accordion__field .accordion .acc__body .ab__card .acc__body__details .abd__text {
  font: normal 16px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}
.accordion__field .accordion .acc__body .close__button {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  width: 40px;
  height: 39px;
  overflow: hidden;
  /*width: 120px;*/
  margin: 100px auto 0;
  cursor: pointer;
  -webkit-transition: 0.4s ease 0.2s;
  transition: 0.4s ease 0.2s;
}
.accordion__field .accordion .acc__body .close__button:hover {
  width: 120px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.accordion__field .accordion .acc__body .close__button:hover .cross {
  -webkit-box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.45);
          box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.45);
  -webkit-transition: box-shadow 1s ease;
  -webkit-transition: -webkit-box-shadow 1s ease;
  transition: -webkit-box-shadow 1s ease;
  transition: box-shadow 1s ease;
  transition: box-shadow 1s ease, -webkit-box-shadow 1s ease;
  -webkit-transform: perspective(1px) rotate(360deg);
  transform: perspective(1px) rotate(360deg);
}
.accordion__field .accordion .acc__body .close__button:hover .cb__text {
  color: #000;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: 0.4s ease 0.2s;
  transition: 0.4s ease 0.2s;
}
.accordion__field .accordion .acc__body .close__button .cross {
  background-color: #000;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  vertical-align: top;
  display: inline-block;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: perspective(1px);
  transform: perspective(1px);
}
.accordion__field .accordion .acc__body .close__button .cross::before, .accordion__field .accordion .acc__body .close__button .cross::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 3px;
  background-color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.accordion__field .accordion .acc__body .close__button .cross::before {
  -webkit-transform: perspective(1px) rotate(45deg);
  transform: perspective(1px) rotate(45deg);
}
.accordion__field .accordion .acc__body .close__button .cross::after {
  -webkit-transform: perspective(1px) rotate(-45deg);
  transform: perspective(1px) rotate(-45deg);
}
.accordion__field .accordion .acc__body .close__button .cb__text {
  display: inline-block;
  vertical-align: top;
  font: normal 16px/1 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
  margin-top: 2px;
  margin-left: 8px;
  color: #fff;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

/*-- UNIV COLOR --*/
p.red__txt, span.red__txt, a.red__txt, b.red__txt, strong.red__txt, i.red__txt, h1.red__txt, h2.red__txt, h3.red__txt, h4.red__txt, h5.red__txt, h6.red__txt, label.red__txt {
  color: red;
}

/*-- GLOBAL ANIMATION --*/
.fadeUp {
  -webkit-animation: fadeUp 1s ease;
  animation: fadeUp 1s ease;
}

.fadeDown {
  -webkit-animation: fadeDown 1s ease;
  animation: fadeDown 1s ease;
}

.scrolla {
  visibility: hidden;
}
.scrolla.isfadeUp.animated {
  visibility: visible;
  -webkit-animation: fadeUp 1s ease;
  animation: fadeUp 1s ease;
}
.scrolla.isfadeDown.animated {
  visibility: visible;
  -webkit-animation: fadeDown 1s ease;
  animation: fadeDown 1s ease;
}
.scrolla.isfadeLeft.animated {
  visibility: visible;
  -webkit-animation: fadeLeft 1s ease;
  animation: fadeLeft 1s ease;
}
.scrolla.isfadeRight.animated {
  visibility: visible;
  -webkit-animation: fadeRight 1s ease;
  animation: fadeRight 1s ease;
}

/************* ANIMATION ***************/
/*-- FADE in UP*/
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*-- FADE in DOWn --*/
@-webkit-keyframes fadeDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*-- BUTTON Arrow left --*/
@-webkit-keyframes arrowLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes arrowLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
/*-- BUTTON Shine --*/
@-webkit-keyframes shine {
  100% {
    -webkit-transform: translateX(240%);
    transform: translateX(240%);
  }
}
@keyframes shine {
  100% {
    -webkit-transform: translateX(240%);
    transform: translateX(240%);
  }
}
/*-- RIFFLE effect --*/
@-webkit-keyframes riffles {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 0 rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1);
            box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 0 rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1), 0 0 0 20px rgba(102, 102, 102, 0);
            box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1), 0 0 0 20px rgba(102, 102, 102, 0);
  }
}
@keyframes riffles {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 0 rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1);
            box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 0 rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1), 0 0 0 20px rgba(102, 102, 102, 0);
            box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1), 0 0 0 20px rgba(102, 102, 102, 0);
  }
}
@-webkit-keyframes riffles_active {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(209, 45, 45, 0.1), 0 0 0 0 rgba(209, 45, 45, 0.1), 0 0 0 5px rgba(209, 45, 45, 0.1), 0 0 0 10px rgba(209, 45, 45, 0.1);
            box-shadow: 0 4px 10px rgba(209, 45, 45, 0.1), 0 0 0 0 rgba(209, 45, 45, 0.1), 0 0 0 5px rgba(209, 45, 45, 0.1), 0 0 0 10px rgba(209, 45, 45, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(209, 45, 45, 0.1), 0 0 0 5px rgba(209, 45, 45, 0.1), 0 0 0 10px rgba(209, 45, 45, 0.1), 0 0 0 20px rgba(209, 45, 45, 0);
            box-shadow: 0 4px 10px rgba(209, 45, 45, 0.1), 0 0 0 5px rgba(209, 45, 45, 0.1), 0 0 0 10px rgba(209, 45, 45, 0.1), 0 0 0 20px rgba(209, 45, 45, 0);
  }
}
@keyframes riffles_active {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(209, 45, 45, 0.1), 0 0 0 0 rgba(209, 45, 45, 0.1), 0 0 0 5px rgba(209, 45, 45, 0.1), 0 0 0 10px rgba(209, 45, 45, 0.1);
            box-shadow: 0 4px 10px rgba(209, 45, 45, 0.1), 0 0 0 0 rgba(209, 45, 45, 0.1), 0 0 0 5px rgba(209, 45, 45, 0.1), 0 0 0 10px rgba(209, 45, 45, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(209, 45, 45, 0.1), 0 0 0 5px rgba(209, 45, 45, 0.1), 0 0 0 10px rgba(209, 45, 45, 0.1), 0 0 0 20px rgba(209, 45, 45, 0);
            box-shadow: 0 4px 10px rgba(209, 45, 45, 0.1), 0 0 0 5px rgba(209, 45, 45, 0.1), 0 0 0 10px rgba(209, 45, 45, 0.1), 0 0 0 20px rgba(209, 45, 45, 0);
  }
}
@-webkit-keyframes blinking {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
/********* COMMON RESPONSIVE *********/
/*--- MOBILE ---*/
@media screen and (max-width: 640px) {
  .inner__container {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
  }
  /*-- FLEX FIELD --*/
  .flex__field, .inflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /*-- columns --*/
    /*-- margins --*/
  }
  .flex__field .col__10,
.flex__field .col__20,
.flex__field .col__30,
.flex__field .col__40,
.flex__field .col__50,
.flex__field .col__60,
.flex__field .col__70,
.flex__field .col__80,
.flex__field .col__90,
.flex__field .col__100,
.flex__field .col__eql, .inflex .col__10,
.inflex .col__20,
.inflex .col__30,
.inflex .col__40,
.inflex .col__50,
.inflex .col__60,
.inflex .col__70,
.inflex .col__80,
.inflex .col__90,
.inflex .col__100,
.inflex .col__eql {
    width: 100%;
  }
  .flex__field.mb__20, .inflex.mb__20 {
    margin-bottom: 15px;
  }
  .flex__field.mb__50, .inflex.mb__50 {
    margin-bottom: 30px;
  }
  .flex__field.mb__100, .inflex.mb__100 {
    margin-bottom: 50px;
  }
  /*-- PAGE BUTTON --*/
  .page__buttons {
    margin-bottom: 10px;
  }
  .page__buttons .pb__btn {
    min-width: 270px;
    max-width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
  }
  .page__buttons .pb__btn:active {
    border: 1px solid #ed3131;
  }
  .page__buttons .pb__btn:active .pb__content .pb__icon {
    -webkit-filter: brightness(110%);
            filter: brightness(110%);
  }
  .page__buttons .pb__btn:active .pb__content .pb__text {
    border-left: 2px dotted #ed3131;
    color: #ed3131;
  }
  .page__buttons .pb__btn:active .pb__content .pb__subtext {
    color: #ed3131;
  }
  .page__buttons .pb__btn .pb__content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 200px;
    margin: 0 auto;
  }
  .page__buttons .pb__btn .pb__content .pb__icon {
    width: 25px;
    margin-top: 1px;
  }
  .page__buttons .pb__btn .pb__content .pb__text {
    padding: 0px 10px;
  }
  .page__buttons .pb__btn .pb__content .pb__text p {
    font: bold 14px/1 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .page__buttons .pb__btn .pb__content .pb__subtext {
    font: normal 12px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  }
  .page__buttons .pb__btn.set__2 {
    padding: 11px 5px 9px;
  }
  .page__buttons .pb__btn.set__2:active {
    background-color: #ed3131;
  }
  .page__buttons .pb__btn.set__2:active .pb__content .pb__icon {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
  .page__buttons .pb__btn.set__2:active .pb__content .pb__subtext {
    color: #fff;
  }
  .page__buttons .pb__btn.set__2 .pb__content .pb__icon {
    width: 20px;
    margin-top: 1px;
  }
  .page__buttons .pb__btn.set__2 .pb__content .pb__text {
    padding: 0px 10px;
    margin-left: 18px;
    margin-top: 0;
    height: 25px;
  }
  .page__buttons .pb__btn.set__2 .pb__content .pb__text p {
    font: bold 20px/1 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .page__buttons .pb__btn.set__2 .pb__content .pb__subtext {
    font: normal 15px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  }
  .accordion__field {
    margin-bottom: 50px;
  }
  .accordion__field.set__2 {
    margin-bottom: 60px;
  }
  .accordion__field .af__sec__title {
    margin-bottom: 15px;
    padding: 8px 0;
  }
  .accordion__field .af__sec__title .ast__text, .accordion__field .af__sec__title .ast__subtext {
    width: 100%;
    display: block;
    text-align: center;
  }
  .accordion__field .af__sec__title .ast__text {
    font: bold 20px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
    letter-spacing: 2px;
  }
  .accordion__field .af__sec__title .ast__subtext {
    font: normal 14px/1 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
    margin-left: 0;
  }
  .accordion__field .accordion {
    margin-bottom: 5px;
  }
  .accordion__field .accordion.open .acc__head .acc__head__details .ahd__button::before {
    -webkit-transform: perspective(1px) rotate(225deg);
    transform: perspective(1px) rotate(225deg);
  }
  .accordion__field .accordion .acc__head {
    padding: 15px;
    width: 100%;
  }
  .accordion__field .accordion .acc__head .acc__image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 15px;
  }
  .accordion__field .accordion .acc__head .acc__head__details {
    width: 100%;
    padding-left: 0;
  }
  .accordion__field .accordion .acc__head .acc__head__details .ahd__text {
    min-height: 20px;
    font-size: 15px;
    margin-bottom: 5px;
  }
  .accordion__field .accordion .acc__head .acc__head__details .ahd__schedule {
    text-align: center;
  }
  .accordion__field .accordion .acc__head .acc__head__details .ahd__schedule .hasgtag, .accordion__field .accordion .acc__head .acc__head__details .ahd__schedule .number {
    font: normal 30px/1.5 "Frank Ruhl Libre", serif;
  }
  .accordion__field .accordion .acc__head .acc__head__details .ahd__schedule .number {
    font: normal 80px/1 "Frank Ruhl Libre", serif;
  }
  .accordion__field .accordion .acc__head .acc__head__details .ahd__schedule .date {
    margin-top: 45px;
    font-size: 12px;
  }
  .accordion__field .accordion .acc__head .acc__head__details .ahd__button {
    max-width: 270px;
    margin: 0 auto;
    font-size: 12px;
  }
  .accordion__field .accordion .acc__head .acc__head__details .ahd__button:active::before {
    -webkit-animation: blinking 0.2s ease infinite;
    animation: blinking 0.2s ease infinite;
  }
  .accordion__field .accordion .acc__body {
    padding: 30px 15px;
  }
  .accordion__field .accordion .acc__body .ab__card {
    margin-bottom: 30px;
  }
  .accordion__field .accordion .acc__body .ab__card:last-child {
    margin-bottom: 0;
  }
  .accordion__field .accordion .acc__body .ab__card .acc__image {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .accordion__field .accordion .acc__body .ab__card .acc__body__details {
    width: 100%;
    padding-left: 0;
  }
  .accordion__field .accordion .acc__body .ab__card .acc__body__details .abd__title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .accordion__field .accordion .acc__body .ab__card .acc__body__details .abd__text {
    font-size: 12px;
  }
  .accordion__field .accordion .acc__body .close__button {
    margin: 50px auto 0;
    width: 120px;
  }
  .accordion__field .accordion .acc__body .close__button .cb__text {
    margin-top: 1px;
    color: #000;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  /*-- TAB FIELD --*/
  .tab__field {
    margin: 20px 0 50px;
  }
  .tab__field .tf__head {
    margin-bottom: 40px;
  }
  .tab__field .tf__head .tf__wrap .tf__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 5px 30px;
    overflow: hidden;
  }
  .tab__field .tf__head .tf__wrap .tf__list:nth-child(1) {
    padding-left: 5px;
  }
  .tab__field .tf__head .tf__wrap .tf__list::before {
    left: 0;
    -webkit-transform: skewX(0);
    transform: skewX(0);
  }
  .tab__field .tf__head .tf__wrap .tf__list::after {
    content: "";
    position: absolute;
    background-color: transparent;
    height: 8px;
    width: 8px;
    bottom: 13px;
    left: 0;
    right: 0;
    margin: auto;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: perspective(1px) rotate(-45deg);
    transform: perspective(1px) rotate(-45deg);
  }
  .tab__field .tf__head .tf__wrap .tf__list .tf__maintext {
    font: bold 14px/1.4 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
    margin-bottom: 4px;
    letter-spacing: 0;
  }
  .tab__field .tf__head .tf__wrap .tf__list .tf__subtext {
    margin-left: 0;
    font: normal 12px/1 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
    letter-spacing: 1px;
  }
  .tab__field .tf__body {
    min-height: 300px;
  }
  .tab__field .tf__body .tf__wrap .tf__section .tf__title {
    padding: 8px 15px;
    font: bold 14px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .tab__field .tf__body .tf__wrap .tf__section .tf__content {
    padding: 15px;
  }
  .tab__field .tf__body .tf__wrap .tf__section .tf__content .tf__text {
    font: normal 13px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  /*-- TEXT --*/
  .text__field {
    width: 100%;
    /*-- LISTS --*/
  }
  .text__field p {
    font: normal 14px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .text__field ul {
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .text__field ul.smalldot__list {
    position: relative;
    width: 100%;
    margin: auto;
  }
  .text__field ul.smalldot__list li {
    position: relative;
    width: 100%;
  }
  .text__field ul.smalldot__list li::before {
    content: "·";
    position: absolute;
    top: 0;
    left: 2px;
    font: normal 14px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .text__field ul.smalldot__list li p {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 15px;
    font: normal 13px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .text__field .ctr__text {
    text-align: left;
  }
  .text__field .ctr__text.set__2 {
    padding: 0px 0 30px;
    text-align: center;
  }
  .text__field .ctr__text p {
    font: 500 15px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .text__field .ctr__text p.set__2 {
    font: normal 10px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .text__field .ctr__text p.set__3 {
    font: normal 12px/1.7 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .text__field .ctr__text p.set__4 {
    font: normal 10px/1.7 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .text__field .section__title {
    margin-bottom: 15px;
    padding-top: 2px;
  }
  .text__field .section__title.set__2 {
    margin-bottom: 15px;
  }
  .text__field .section__title.set__3 {
    padding: 10px 0;
  }
  .text__field .section__title .st__text, .text__field .section__title span {
    font: bold 14px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
    letter-spacing: 0;
  }
  .text__field .section__title .st__text.set__2, .text__field .section__title span.set__2 {
    letter-spacing: 2px;
  }
  .text__field .section__title .st__text.set__3, .text__field .section__title span.set__3 {
    font: normal 22px/1.5 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  }
  .text__field .section__title span {
    font: normal 14px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .text__field .section__subtitle {
    height: auto;
    padding: 2px;
  }
  .text__field .section__subtitle span {
    font: 500 13px "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    letter-spacing: 0.5px;
  }
  .text__field .section__subtitle .st__text {
    font: 500 13px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
    letter-spacing: 0.5px;
  }
  .text__field .section__subtitle.set__3 {
    margin: 0 auto 15px;
  }
  .section__template .into__title {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  .section__template .into__title .it__text {
    height: auto;
    width: 30vw;
    max-width: 235.61px;
    margin: 0 auto 5px;
  }
  .section__template .into__title .it__subtext {
    font: normal 3.5vw "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .section__template .st__btn {
    max-width: 150px;
    padding: 5px 10px 6px 18px;
  }
  .section__template .st__btn:active {
    -webkit-filter: brightness(110%);
            filter: brightness(110%);
  }
  .section__template .st__btn:active::before {
    -webkit-animation: arrowLeft 1s ease infinite;
            animation: arrowLeft 1s ease infinite;
  }
  .section__template .st__btn.set__2 {
    max-width: 190px;
  }
  .section__template .st__btn.set__2 .stb__text {
    font-size: 10px;
  }
  .section__template .st__btn::before {
    left: 10px;
    height: 10px;
  }
  .section__template .st__btn.mt_100 {
    margin-top: 50px;
  }
  .section__template .st__btn.mt_50 {
    margin-top: 30px;
  }
  .section__template .st__btn .stb__text {
    font-size: 10px;
    padding-left: 0;
  }
  .section__template.mb_20 {
    margin-bottom: 20px;
  }
  .section__template.mb_40 {
    margin-bottom: 20px;
  }
  .section__template.mb_50 {
    margin-bottom: 30px;
  }
  .section__template.mb_60 {
    margin-bottom: 30px;
  }
  .section__template.mb_70 {
    margin-bottom: 30px;
  }
  .section__template.mb_77 {
    margin-bottom: 0;
  }
  .section__template.mb_80 {
    margin-bottom: 40px;
  }
  .section__template.mb_85 {
    margin-bottom: 40px;
  }
  .section__template.mb_100 {
    margin-bottom: 50px;
  }
  /*-- training page --*/
  .car__table {
    margin: 20px 0 0;
  }
  .car__table .ct__card:nth-child(1), .car__table .ct__card:nth-child(2), .car__table .ct__card:nth-child(3) {
    width: 290px;
    margin: 0 auto 40px;
  }
  .car__table .ct__card:nth-child(1) .ct__labels, .car__table .ct__card:nth-child(2) .ct__labels, .car__table .ct__card:nth-child(3) .ct__labels {
    display: block;
  }
  .car__table .ct__card .ct__labels {
    width: 88px;
  }
  .car__table .ct__card .ct__labels ul li:nth-child(1) {
    height: 210px;
  }
  .car__table .ct__card .ct__labels ul li:nth-child(2) {
    height: 140px;
  }
  .car__table .ct__card .ct__labels ul li:nth-child(3) {
    height: 124px;
  }
  .car__table .ct__card .ct__labels ul li .ct__text {
    margin-top: 20px;
  }
  .car__table .ct__card .ct__labels ul li .ct__text .ct__label {
    font-size: 12px;
  }
  .car__table .ct__card .ct__labels ul li .ct__text .ct__sublabel {
    font-size: 8px;
  }
  .car__table .ct__card .ct__labels ul li .arrow__before, .car__table .ct__card .ct__labels ul li .arrow__after {
    height: 44px;
  }
  .car__table .ct__card .ct__content {
    width: 199px;
  }
  .car__table .ct__card .ct__content .ct__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 9px 0;
  }
  .car__table .ct__card .ct__content .ct__head .ct__title, .car__table .ct__card .ct__content .ct__head .ct__subtitle {
    text-align: center;
    width: 100%;
  }
  .car__table .ct__card .ct__content .ct__head .ct__title {
    font-size: 14px;
  }
  .car__table .ct__card .ct__content .ct__head .ct__subtitle {
    margin: 0;
    font-size: 12px;
  }
  .car__table .ct__card .ct__content .ct__body ul li:nth-child(1) {
    height: 160px;
  }
  .car__table .ct__card .ct__content .ct__body ul li:nth-child(2) {
    height: 140px;
  }
  .car__table .ct__card .ct__content .ct__body ul li:nth-child(3) {
    height: 120px;
  }
  .car__table .ct__card .ct__content .ct__body ul li p {
    font-size: 11px;
  }
  .car__table .ct__card .ct__content .ct__body ul .arrow__tail {
    height: 99.55px;
  }
  /*-- Training page --*/
  .sales__content .section__head {
    margin: 30px 0;
    background: #000;
    height: 1px;
    text-align: center;
  }
  .sales__content .section__head .st__text {
    top: -14px;
    display: inline-block;
    padding: 2px 6px;
    width: auto;
    font: 500 16px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .sales__content .sales__group {
    margin: 0 auto;
    max-width: 743.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .sales__content .sales__group.set--2 {
    max-width: 100%;
  }
  .sales__content .sales__group .text__field.set--2 {
    max-width: 100%;
  }
  .sales__content .sales__group .text__field.set--2 p {
    font-size: 10px;
  }
  .sales__content .sales__group .text__field.set--2 p.lh--1 {
    margin: 0 0 15px;
    font: 10px/1.7 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .sales__content .sales__group .sales__person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin: 0 0 15px;
  }
  .sales__content .sales__group .sales__person:last-child {
    margin: 0;
  }
  .sales__content .sales__group .sales__person .image__field {
    margin: 0;
    max-width: 33%;
  }
  .sales__content .sales__group .sales__person .text__field {
    width: 67%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .sales__content .sales__group .sales__person .text__field .ss__branch {
    width: 100%;
    margin-top: 0;
    text-align: left;
    font-size: 14px;
  }
  .sales__content .sales__group .sales__person .text__field .ctr__text {
    width: 100%;
  }
  .sales__content .sales__group .sales__person .text__field .ctr__text .ss__kanji {
    font: 600 14px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  }
  .sales__content .sales__group .sales__person .text__field .ctr__text .ss__name {
    margin-left: 4px;
    font: 400 12px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  }
  .sales__content .item__container {
    margin-top: 15px;
  }
  .sales__content .item__container.set--1 .item {
    margin-bottom: 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sales__content .item__container.set--1 .item .image__field {
    max-width: 48.5%;
  }
  .sales__content .item__container.set--1 .item .image__field .item__thumbnail {
    max-width: 100%;
  }
  .sales__content .item__container.set--1 .item .text__field {
    width: 51.5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 10px;
  }
  .sales__content .item__container.set--1 .item .text__field .item__title {
    font: 500 12px "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    margin-bottom: 4px;
  }
  .sales__content .item__container.set--1 .item .text__field .item__desc {
    margin-top: 0;
    font: 400 8px/1.7 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "Helvetica", "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 1px;
  }
  .sales__content .item__container.set--2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sales__content .item__container.set--2 .item {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sales__content .item__container.set--2 .item .image__field {
    width: 47.5%;
  }
  .sales__content .item__container.set--2 .item .image__field img {
    width: 100%;
    height: auto;
  }
  .sales__content .item__container.set--2 .item .text__field {
    width: 52.5%;
  }
  .sales__content .item__container.set--2 .item .text__field .text__content {
    height: 50%;
    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;
    text-align: center;
    font-weight: bold;
  }
  .sales__content .item__container.set--2 .item .text__field .item__title {
    font: 14px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  }
  .sales__content .item__container.set--2 .item .text__field .item__title.set--2 {
    font: 14px "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .sales__content .item__container.set--2 .item .text__field .item__title.set--2 span {
    font: 14px/1.2 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  }
  .sales__content .item__container.set--2 .item .text__field .item__desc {
    font: 400 10px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .sales__content .item__container.set--2 .item .text__field .item__desc span {
    margin-top: 8px;
    font: 400 10px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  /*-- Process page --*/
  .process__map__container {
    padding: 0;
    margin: 80px 0 50px;
  }
  .process__map__container .process__map {
    height: auto;
  }
  .process__map__container .process__map .process__step {
    top: -32px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .process__map__container .process__map .process__step .circle {
    width: 60px;
    height: 60px;
    position: relative;
    left: -2px;
    top: 0;
    right: 0;
  }
  .process__map__container .process__map .process__step .circle::before {
    font-size: 9px;
  }
  .process__map__container .process__map .process__step .circle .circle__text {
    width: 45px;
    font-size: 33.56px;
  }
  .process__map__container .process__map .process__content {
    height: auto;
    position: relative;
    top: -13px;
    left: 0;
  }
  .process__map__container .process__map .process__content .pc__image__field {
    margin: 0 auto;
  }
  .process__map__container .process__map .process__content .pc__text__field {
    padding-top: 20px;
  }
  .process__map__container .process__map .process__content .pc__text__field .process__subject {
    padding: 0 40px;
    font-size: 18px;
  }
  .process__map__container .process__map .process__content .pc__text__field .process__description {
    padding: 15px 20px 10px;
    font-size: 12px;
    height: auto;
  }
  .process__map__container .process__map .process__content .pc__text__field .process__description::before {
    display: none;
  }
  .process__map__container .process__arrow {
    margin: 30px auto;
    left: 0;
    height: 0;
    width: 0;
    background: none;
    border: 25px solid transparent;
    border-top: 25px solid #ccc;
  }
  /*-- THUMBNAIL BOX --*/
  .thumbnail__box {
    width: 100%;
    height: auto;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 15px;
  }
  .thumbnail__box:active .tb__bg {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  .thumbnail__box .tb__title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 40px;
    text-align: center;
    z-index: 100;
  }
  .thumbnail__box .tb__title .tbt__text {
    font: 500 14px/1.7 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .thumbnail__box .tb__title .tbt__subtext {
    font: 100 12px "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
  }
  .thumbnail__box .tb__bg {
    display: none;
  }
  .thumbnail__box .tb__bg__sp {
    display: block;
  }
  /*-- MODAL --*/
  .modal .m__display {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: calc(100% - 30px);
    height: 450px;
    top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .modal .m__display .close__btn {
    top: -8px;
    right: -8px;
  }
  .modal .m__display .left__part {
    position: absolute;
    top: 180px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    z-index: 100;
  }
  .modal .m__display .left__part .m__head {
    padding: 10px 15px 8px;
  }
  .modal .m__display .left__part .m__head .m__title {
    font: 500 14px/1 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .modal .m__display .left__part .m__head .m__subtitle {
    padding: 2px 0 2px 13px;
    margin-left: 8px;
    font: normal 12px/1 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    top: 0;
  }
  .modal .m__display .left__part .m__body {
    padding: 15px;
  }
  .modal .m__display .left__part .m__body .details__title {
    font: 600 14px/1.2 "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, "Noto Serif JP", serif;
    margin-bottom: 5px;
  }
  .modal .m__display .left__part .m__body p {
    font: 400 12px/1.5 "Noto Sans JP", "Avant Garde", Avantgarde, Helvetica Neue, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .modal .m__display .right__part {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 180px;
    width: 100%;
  }
  .modal .m__display .right__part img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
/*=== MAIN CONTENT ===*/
.main__content {
  width: 100%;
  min-height: calc(100vh - 100px);
}
.main__content .kv {
  position: relative;
  height: 100%;
  width: 100%;
  margin-bottom: 50px;
}
.main__content .kv.set__2 {
  margin-bottom: 104px;
}
.main__content .kv .overlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  /*&::before, &::after {
  	content: '';
  	position: absolute;
  	top: 0;
  	right: 0;
  	height: 100%;
  	width: 100%;
  	@include transition(.2s ease);
  }

  &::before {
  	background-color: #fff;
  }
  &::after {
  	background-color: rgba(250, 250, 250, 0.8);
  }

  &.active {

  	&::before, &::after {
  		width: 0;
  		opacity: 0;
  	}

  	&::before {
  		@include transition(.4s ease);
  	}
  	&::after {
  		@include transition(.6s ease .2s);
  	}
  }*/
}
.main__content .kv .kv__image img {
  width: 100%;
}
.main__content .kv .kv__msg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  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;
}
.main__content .kv .kv__msg .kv__text {
  position: relative;
  font: 500 4.5vw "Roboto", sans-serif;
  font-style: italic;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 1px 2px #888, 1px 1px #888;
  /*opacity: 0;*/
  opacity: 1;
  z-index: 1000;
  /*@include transform(translateX(-15px));*/
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: 1s ease;
  transition: 1s ease;
  /*&.active {
  	opacity: 1;
  	@include transform(translateX(0));
  }*/
}
.main__content .kv .kv__msg .kv__text .emp__red {
  font: 500 4.5vw "Roboto", sans-serif;
  letter-spacing: 3px;
  font-style: italic;
  color: #ff1c2f;
  text-shadow: 1px 1px #d00521;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.main__content .kv .kv__msg .kv__text .emp__red:hover {
  color: #ff0218;
  text-shadow: 1px 1px #d00521, 1px 1px #d00521;
}
.main__content .section__template.top__st.st__1 {
  min-height: 247px;
}
.main__content .section__template.top__st.st__2 {
  min-height: 275px;
}
.main__content .section__template.top__st .text__field .section__title {
  display: none;
}
.main__content .section__template.top__st .text__field .ctr__text {
  display: none;
}
.main__content .section__template.top__st .flex__field .thumbnail__box {
  display: none;
}
.main__content .section__template.interview__section, .main__content .section__template.training__section {
  width: 100%;
  max-width: 920px;
  margin: 50px auto 75px;
}
.main__content .section__template.interview__section .interview__display, .main__content .section__template.interview__section .training__display, .main__content .section__template.training__section .interview__display, .main__content .section__template.training__section .training__display {
  margin-bottom: 33px;
}
.main__content .section__template.interview__section .interview__display .id__img img, .main__content .section__template.interview__section .interview__display .td__img img, .main__content .section__template.interview__section .training__display .id__img img, .main__content .section__template.interview__section .training__display .td__img img, .main__content .section__template.training__section .interview__display .id__img img, .main__content .section__template.training__section .interview__display .td__img img, .main__content .section__template.training__section .training__display .id__img img, .main__content .section__template.training__section .training__display .td__img img {
  width: 100%;
  height: auto;
}
.main__content .section__template.interview__section .interview__display .id__person img, .main__content .section__template.interview__section .training__display .id__person img, .main__content .section__template.training__section .interview__display .id__person img, .main__content .section__template.training__section .training__display .id__person img {
  width: 100%;
  height: auto;
  -webkit-transform: perspective(1px);
  transform: perspective(1px);
}
.main__content .section__template.kv__section {
  width: 100%;
  max-width: 920px;
  margin: 50px auto 75px;
}

/********* MAIN CONTENT RESPONSIVE *********/
/*--- MOBILE ---*/
@media screen and (max-width: 640px) {
  .main__content .kv {
    margin-bottom: 20px;
  }
  .main__content .kv.set__2 {
    margin-bottom: 15px;
  }
  .main__content .kv .kv__msg img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 92%;
    height: auto;
    max-width: 500px;
    left: 0;
  }
  .main__content .kv .kv__msg img.active {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .main__content .kv .kv__msg .kv__text {
    text-shadow: 1px 1px rgba(250, 250, 250, 0.5);
  }
  .main__content .kv .kv__msg .kv__text .emp__red {
    text-shadow: 1px 1px #d00521;
  }
  .main__content .kv .kv__msg .kv__text .emp__red:hover {
    text-shadow: 1px 1px #e41425;
  }
  .main__content .section__template.top__st.st__1 {
    min-height: 150px;
  }
  .main__content .section__template.top__st.st__2 {
    min-height: 275px;
  }
  .main__content .section__template.top__st .text__field .section__title {
    display: none;
  }
  .main__content .section__template.top__st .text__field .ctr__text {
    display: none;
  }
  .main__content .section__template.top__st .flex__field .thumbnail__box {
    display: none;
  }
  .main__content .section__template.interview__section, .main__content .section__template.training__section {
    margin: 30px 0 50px;
  }
  .main__content .section__template.interview__section .interview__display, .main__content .section__template.interview__section .training__display, .main__content .section__template.training__section .interview__display, .main__content .section__template.training__section .training__display {
    margin-bottom: 20px;
  }
  .main__content .section__template.interview__section .interview__display .id__person img, .main__content .section__template.interview__section .training__display .id__person img, .main__content .section__template.training__section .interview__display .id__person img, .main__content .section__template.training__section .training__display .id__person img {
    -webkit-transform: perspective(1px);
    transform: perspective(1px);
  }
  .main__content .section__template.kv__section {
    max-width: 100%;
    margin: 20px auto 0;
  }
}
/*-- smaller screen --*/
/*************************************
    RECRUIT PAGE
**************************************/
.workField {
  margin-top: 50px;
}
.workField__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.workField__item:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .workField__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.workField__itemCol:first-child {
  width: 404px;
}
@media screen and (max-width: 640px) {
  .workField__itemCol:first-child {
    width: 100%;
  }
}
.workField__itemCol:last-child {
  position: relative;
  width: calc(100% - 427px);
  height: 272px;
}
@media screen and (max-width: 640px) {
  .workField__itemCol:last-child {
    width: 100%;
    height: 50vw;
    margin-top: 20px;
  }
}
.workField__itemHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #0082C8;
  color: #fff;
  padding: 7px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.workField__itemHeader.u-bgGreen {
  background: #00C974;
}
.workField__itemHeader.u-bgPink {
  background: #FF4C79;
}
.workField__itemHeaderMain {
  position: relative;
  font-size: 19px;
  letter-spacing: 0.05em;
  padding: 9px 10px 9px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.workField__itemHeaderMain::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
}
@media screen and (max-width: 640px) {
  .workField__itemHeaderMain {
    font-size: 15.5px;
  }
}
.workField__itemHeaderEn {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  padding-left: 10px;
}
@media screen and (max-width: 640px) {
  .workField__itemHeaderEn {
    font-size: 9px;
  }
}
.workField__itemContent {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.workField__itemContentFigure {
  width: 100%;
  max-width: 164px;
}
@media screen and (max-width: 640px) {
  .workField__itemContentFigure {
    max-width: 130px;
  }
}
.workField__itemContentFigure img {
  width: 100%;
  height: auto;
}
.workField__itemContentText {
  width: 100%;
  max-width: 221px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  .workField__itemContentText {
    font-size: 14px;
    max-width: calc(100% - 150px);
  }
}
.workField__itemVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.award {
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .award {
    margin-top: 25px;
  }
}
.award__imgCont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 640px) {
  .award__imgCont {
    gap: 20px;
  }
}
.award__img {
  width: 100%;
}
.award__listCont {
  margin: 80px auto 0;
  max-width: 828px;
}
@media screen and (max-width: 640px) {
  .award__listCont {
    margin-top: 25px;
  }
}
.award__listTitle {
  margin-bottom: 35px;
  padding: 5px 0;
  font-size: 25px;
  background-color: #3E8CCB;
  color: #fff;
  letter-spacing: 10px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .award__listTitle {
    padding: 0 2px;
    font-size: 14px;
  }
}
.award__listArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .award__listArea {
    margin-bottom: 50px;
  }
}
.award__listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 23px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
  .award__listItem {
    font-size: 14px;
  }
}
.award__listItem:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .award__listItem:not(:last-child) {
    margin-bottom: 5px;
  }
}
.award__lisItemDate {
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .award__lisItemDate {
    min-width: 70px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 640px) {
  .service {
    margin-bottom: 25px;
  }
}
.service__list {
  margin: 54px auto 0;
  max-width: 828px;
}
@media screen and (max-width: 640px) {
  .service__list {
    margin-top: 25px;
  }
}
.service__listItem:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .service__listItem:not(:last-child) {
    margin-bottom: 25px;
  }
}
.service__lisItemHeader {
  margin-bottom: 35px;
  padding: 5px 0;
  font-size: 25px;
  background-color: #00C974;
  color: #fff;
  letter-spacing: 0.6em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .service__lisItemHeader {
    margin-bottom: 15px;
    font-size: 14px;
    padding: 2px 0;
    letter-spacing: 0.3em;
  }
}
.service__listItemTextCont {
  padding: 0 30px;
}
@media screen and (max-width: 640px) {
  .service__listItemTextCont {
    padding: 0 10px;
  }
}
.service__lisItemText {
  font-size: 23px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
  .service__lisItemText {
    font-size: 14px;
  }
}
.service__lisItemText:not(:last-child) {
  margin-bottom: 6px;
}
.service__lisItemText .u-bold {
  font-weight: bold;
}
.service__imgCont {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px;
}
@media screen and (max-width: 640px) {
  .service__imgCont {
    margin-top: 25px;
  }
}
.service__imgFig {
  width: calc(50% - 11px);
}
.service__imgFig02 {
  display: flex;
  align-items: flex-end;
}


.service__img {
  width: 100%;
}
.service__img02 {
  max-width: 250px;
  margin-right: 10px;
}

@media screen and (max-width: 640px) {
  .service__imgFig02 {
   flex-direction: column;
  align-items: center;
  }

  .service__img02 {
    margin-right: 0;
  }
}

.recruitPage__txt {
  font-size: 20px;
  letter-spacing: 0.2em;
}
.recruitPage__txt.u-mt10 {
  margin-top: 20px;
}

.service__imgContMovieModal {
  display: none;
  max-width: 812px;
}
