@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap);
@charset "UTF-8";
/*===== MIXINS =====*/
/*-- animation --*/
/*--  transition --*/
/*-- transform --*/
/*-- center with dimension --*/
/*-- Display flex --*/
/*-- clearfix --*/
/*-- ANIMATION  button shine --*/
/*-- psuedo: before --*/
/*-- psuedo: after --*/
/************* ANIMATION ***************/
/*-- 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%);
  }
}
@-webkit-keyframes scalling {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scalling {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*====== 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 rippleLoader {
  0% {
    width: 5vw;
    height: 5vw;
    opacity: 1;
  }
  100% {
    width: 30vw;
    height: 30vw;
    opacity: 0;
  }
}
@keyframes rippleLoader {
  0% {
    width: 5vw;
    height: 5vw;
    opacity: 1;
  }
  100% {
    width: 30vw;
    height: 30vw;
    opacity: 0;
  }
}
/*-- Burst out --*/
@-webkit-keyframes burstIn {
  0% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    border: 2px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    border: 2px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
  }
}
@keyframes burstIn {
  0% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    border: 2px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    border: 2px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
  }
}
@-webkit-keyframes burstOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes burstOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes burstOut_2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    border: 2px solid rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    border: 2px solid transparent;
    opacity: 0;
  }
}
@keyframes burstOut_2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    border: 2px solid rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    border: 2px solid transparent;
    opacity: 0;
  }
}
@-webkit-keyframes movingLine_01 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60%);
    transform: translateX(60%);
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-500%);
    transform: translateX(-500%);
  }
}
@keyframes movingLine_01 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60%);
    transform: translateX(60%);
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-500%);
    transform: translateX(-500%);
  }
}
@-webkit-keyframes movingLine_02 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60%);
    transform: translateX(-60%);
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(300%);
    transform: translateX(300%);
  }
}
@keyframes movingLine_02 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60%);
    transform: translateX(-60%);
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(300%);
    transform: translateX(300%);
  }
}
@-webkit-keyframes movingLine_03 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(60%);
    transform: translateX(60%);
  }
}
@keyframes movingLine_03 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(60%);
    transform: translateX(60%);
  }
}
@media screen and (max-width: 768px) {
  @-webkit-keyframes rippleLoader {
    0% {
      width: 5vw;
      height: 5vw;
      opacity: 1;
    }
    100% {
      width: 40vw;
      height: 40vw;
      opacity: 0;
    }
  }
  @keyframes rippleLoader {
    0% {
      width: 5vw;
      height: 5vw;
      opacity: 1;
    }
    100% {
      width: 40vw;
      height: 40vw;
      opacity: 0;
    }
  }
}
/**************************************
	base
***************************************/
/* ---------------------------------------------------------
スタイルリセット
----------------------------------------------------------*/
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;
}

img {
  width: 100%;
  height: auto;
  -webkit-touch-callout: none;
}

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

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

ul li {
  list-style: none;
}

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

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

.pc {
  display: block;
}

.sp {
  display: none;
}

/* ---------------------------------------------------------
変数
----------------------------------------------------------*/
/*break point
-----------------------*/
/*color
-----------------------*/
/*font family
-----------------------*/
html,
body {
  background-color: #fff;
  height: 100%;
  width: 100%;
  min-width: 1024px;
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: normal;
  color: #000;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.wow, .animated {
  visibility: hidden;
}
.wow.duration_08, .animated.duration_08 {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.wow.delay_02, .animated.delay_02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.wow.delay_04, .animated.delay_04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.wow.delay_06, .animated.delay_06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.wow.delay_08, .animated.delay_08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.wow.delay_1, .animated.delay_1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.wow.delay_1-2, .animated.delay_1-2 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.wow.delay_1-4, .animated.delay_1-4 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.wow.delay_1-6, .animated.delay_1-6 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.wow.delay_1-8, .animated.delay_1-8 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.wow.delay_2, .animated.delay_2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.wow.delay_2-2, .animated.delay_2-2 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.wow.delay_2-4, .animated.delay_2-4 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.wow.delay_2-6, .animated.delay_2-6 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.wow.delay_2-8, .animated.delay_2-8 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.wow.delay_3, .animated.delay_3 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.animated {
  visibility: visible;
}

/******************************
 	base sp
*******************************/
@media screen and (max-width: 1024px) {
  html, body {
    min-width: 100%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/**************************************
common.scss
***************************************/
.img--title {
  margin: 15px 0 0;
  text-align: left;
  font-size: 12px;
}
.img--title.sp {
  margin: -8px 0 0;
}

.inner__cont, .outer__cont {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.inner__cont.mb_100, .outer__cont.mb_100 {
  margin-bottom: 100px;
}

.outer__cont {
  max-width: 1280px;
}
.outer__cont.set__2 {
  z-index: -1;
  background-color: #C9EDF5;
  padding: 20px 0 55px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2000;
  background-color: #fff;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.loader__display {
  position: relative;
  display: block;
  width: 340px;
  height: auto;
  z-index: 100;
  top: -3vw;
}
.loader__display img {
  display: block;
}
.loader__display img:nth-child(1) {
  margin: 0 auto 15px;
  width: 220px;
}
.loader__display img:nth-child(2) {
  margin: 0 auto;
  width: 100%;
}
.loader .ripple {
  position: absolute;
  top: -3vw;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30vw;
  height: 30vw;
}
.loader .ripple.completed .pulse__line {
  -webkit-animation: rippleLoader 2s ease;
  animation: rippleLoader 2s cubic-bezier(0, 0.2, 0.8, 1);
}
.loader .ripple .pulse__line {
  position: absolute;
  top: -3vw;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 5px solid rgba(0, 0, 0, 0.025);
  opacity: 0;
  border-radius: 50%;
  -webkit-animation: rippleLoader 1.6s ease infinite;
  animation: rippleLoader 1.6s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader .ripple .pulse__line:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.main__content {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.main__content.top__page {
  padding-top: 87px;
}

.section {
  position: relative;
  width: 100%;
  min-height: 200px;
  margin-bottom: 130px;
}
.section.set__2 {
  margin-bottom: 30px;
}
.section.mb_0 {
  margin-bottom: 0;
}
.section__head {
  width: 100%;
  margin-bottom: 50px;
  padding-top: 70px;
}
.section__head__title {
  position: relative;
  width: 100%;
  text-align: center;
}
.section__head__title.set__2 .title__slash::before {
  background-color: #fff;
}
.section__head__title_eng {
  position: relative;
  font: bold 24px/1.8 "Roboto", Helvetica, sans-serif;
  color: #00698E;
  z-index: 1;
}
.section__head__title_jap {
  position: relative;
  font: 500 48px/1.8 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  margin-bottom: 16px;
  z-index: 1;
}
/*-----20210311変更-----*/
.section__head__title .title__slash {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 230px;
  height: 48px;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
  top: -77px;
}
/*-----20210311変更ここまで-----*/
.section__head__title .title__slash::before {
  content: "";
  background-color: #EDEDED;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: skew(-35deg);
  transform: skew(-35deg);
}
.section__head__detail {
  display: block;
  text-align: center;
  font: 500 20px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
.section__body {
  width: 100%;
}
.section__body .person__profile {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
}
.section__body .person__profile_img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.section__body .person__profile_position {
  display: block;
  text-align: center;
  font: 500 20px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
.section__body .person__profile_name {
  display: block;
  text-align: center;
  font: 500 32px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  margin-bottom: 40px;
}
.section__body .person__profile_detail {
  display: block;
  width: 100%;
  max-width: 660px;
  margin: auto;
  font: 500 20px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
}

.aniBg {
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
  background-color: transparent;
  z-index: -1;
}
.aniBg__line {
  position: absolute;
  left: 0;
  width: 100%;
  -webkit-transform: skewX(-35deg);
  transform: skewX(-35deg);
  z-index: 0;
}
.aniBg__line::before {
  content: "";
  position: absolute;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.aniBg.group__1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 200%;
  height: 100%;
  top: -30%;
  left: -50%;
}
.aniBg.group__1 .aniBg__line::before {
  background-color: #EDEDED;
}
.aniBg.group__1 .aniBg__line.al_01 {
  height: 1%;
  top: 0%;
}
.aniBg.group__1 .aniBg__line.al_01::before {
  left: 0%;
  width: 25%;
  -webkit-animation: movingLine_02 20s ease infinite;
  animation: movingLine_02 20s ease infinite;
}
.aniBg.group__1 .aniBg__line.al_02 {
  height: 60%;
  top: 6%;
}
.aniBg.group__1 .aniBg__line.al_02::before {
  right: 0%;
  width: 100%;
}
.aniBg.group__1 .aniBg__line.al_03 {
  height: 16%;
  top: 70%;
}
.aniBg.group__1 .aniBg__line.al_03::before {
  right: 0%;
  width: 26%;
  -webkit-animation: movingLine_01 30s ease infinite;
  animation: movingLine_01 30s ease infinite;
}
.aniBg.group__1 .aniBg__line.al_04 {
  height: 1%;
  bottom: 7%;
}
.aniBg.group__1 .aniBg__line.al_04::before {
  right: 0%;
  width: 30%;
  -webkit-animation: movingLine_01 25s ease infinite;
  animation: movingLine_01 25s ease infinite;
}
.aniBg.group__2 {
  background-color: #EDEDED;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 200%;
  height: 40%;
  top: -15%;
  left: -50%;
}
.aniBg.group__2 .aniBg__line::before {
  background-color: #fff;
}
.aniBg.group__2 .aniBg__line.al_01 {
  height: 15%;
  top: 20%;
}
.aniBg.group__2 .aniBg__line.al_01::before {
  right: -20%;
  width: 20%;
  -webkit-animation: movingLine_01 20s ease infinite;
  animation: movingLine_01 20s ease infinite;
}
.aniBg.group__2 .aniBg__line.al_02 {
  height: 2%;
  max-height: 9px;
  bottom: 10.5%;
}
.aniBg.group__2 .aniBg__line.al_02::before {
  right: 0%;
  width: 30%;
  -webkit-animation: movingLine_01 18s ease infinite;
  animation: movingLine_01 18s ease infinite;
}
.aniBg.group__2 .aniBg__line.al_03 {
  height: 14%;
  bottom: 30%;
}
.aniBg.group__2 .aniBg__line.al_03::before {
  left: 0%;
  width: 40%;
  -webkit-animation: movingLine_02 25s ease infinite;
  animation: movingLine_02 25s ease infinite;
}
.aniBg.group__2 .aniBg__line.al_04 {
  height: 3%;
  bottom: 20%;
}
.aniBg.group__2 .aniBg__line.al_04::before {
  left: 0%;
  width: 30%;
  -webkit-animation: movingLine_02 20s ease infinite;
  animation: movingLine_02 20s ease infinite;
}

.flex__field {
  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;
}
.flex__field .col {
  width: 100%;
}
.flex__field .col.col_2 {
  width: calc(50% - 32px);
}

.text__field {
  width: 100%;
  margin-bottom: 50px;
}
.text__field.centered {
  text-align: center;
}
.text__field .tf__text {
  font: 500 20px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  margin-bottom: 40px;
}

.video__box {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}
.video__box_display {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 5px;
}
.video__box_display.main {
  margin-bottom: 0;
}
.video__box_display.main .play__button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80px;
  height: 80px;
}
.video__box_display .play__button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  background: url("./../../assets/img/main/play-btn.png") center/contain no-repeat;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.video__box_display .play__button:hover {
  -webkit-animation: scalling 1.5s ease 0s infinite;
  animation: scalling 1.5s ease 0s infinite;
}
.video__box_title {
  font: bold 24px/1.8 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  margin-bottom: 5px;
}
.video__box_detail {
  font: 500 20px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
}

.video__field {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.video__field .play_button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background-color: rgba(194, 176, 164, 0.85);
  border-radius: 100%;
  z-index: 1;
  cursor: pointer;
}
.video__field .play_button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  right: -10px;
  border: 8px solid transparent;
  border-left: solid 14px #fff;
}
.video__field .play_button:hover {
  -webkit-animation: pulse 1s ease infinite;
  animation: pulse 1s ease infinite;
}

.img__wrap {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}
.img__wrap.iw_01 {
  max-width: 328px;
  margin-bottom: 55px;
}

.page__buttons {
  width: 100%;
  margin-bottom: 70px;
  text-align: center;
}
.page__buttons .button {
  position: relative;
  background-color: #272727;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px 75px;
  font: bold 20px/1 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
  display: inline-block;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.page__buttons .button::before {
  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.4)), to(transparent));
  background-image: linear-gradient(to right, transparent, rgba(250, 250, 250, 0.4), transparent);
  height: 100%;
}
.page__buttons .button:hover::before {
  -webkit-animation: shine 0.8s ease 0.2s;
  animation: shine 0.8s ease 0.2s;
}
.page__buttons .button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  z-index: 1;
}
.page__buttons .button.goto {
  padding: 18px 80px;
}
.page__buttons .button.goto::after {
  height: 22px;
  width: 22px;
  background: url("./../../assets/img/main/icon-goto.svg") center/contain no-repeat;
  z-index: 1;
}
.page__buttons .button.link {
  padding: 18px 75px;
}
.page__buttons .button.link::after {
  height: 11px;
  width: 11px;
  background: url("./../../assets/img/main/arrow-goto.png") center/contain no-repeat;
  z-index: 1;
}
.page__buttons .button:hover {
  background-color: #00698E;
}

.sns__field {
  width: 100%;
  text-align: center;
}
.sns__field_btn {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  cursor: pointer;
  margin: 0 10px;
}
.sns__field_btn .sns__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100%;
}
.sns__field_btn .sns__icon.sns_fb {
  background: url("./../../assets/img/main/icon_facebook.png") center/contain no-repeat;
}
.sns__field_btn .sns__icon.sns_yt {
  background: url("./../../assets/img/main/icon_youtube.png") center/contain no-repeat;
}
.sns__field_btn .sns__icon.sns_twt {
  background: url("./../../assets/img/main/icon_twitter.png") center/contain no-repeat;
}
.sns__field_btn .sns__icon:hover {
  -webkit-animation: scalling 1s ease infinite;
  animation: scalling 1s ease infinite;
}

.anchor__target {
  position: absolute;
  height: 0;
  width: 100%;
  top: -160px;
}

.modal__field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  text-align: center;
  opacity: 0;
  z-index: -100;
}
.modal__field.active {
  opacity: 1;
  z-index: 10000;
}
.modal__field.modal--field--video {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__field.lightbox__field {
  background-color: transparent;
}
.modal__field.lightbox__field .modal__field_bg {
  background-color: rgba(0, 105, 142, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
}
.modal__field.lightbox__field .modal {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  max-height: 480px;
  max-width: 480px;
  text-align: center;
}
.modal__field.lightbox__field .modal .modal__close {
  position: absolute;
  height: 40px;
  width: 40px;
  right: -30px;
  top: -20px;
  z-index: 500;
  cursor: pointer;
  background: url("./../../assets/img/main/close-btn.png") center/contain no-repeat;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.modal__field.lightbox__field .modal .modal__close:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.modal__field.lightbox__field .modal .swiper-wrapper {
  height: 100% !important;
}
.modal__field.lightbox__field .modal .swiper-container-autoheight .swiper-slide {
  height: 100%;
}
.modal__field.lightbox__field .modal .lightbox__slider {
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.modal__field.lightbox__field .modal .lightbox__slider.active {
  visibility: visible;
}
.modal__field.lightbox__field .modal .lightbox__slider_img {
  padding: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal__field.lightbox__field .modal .lightbox__slider_img img {
  display: inline-block;
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
}
.modal__field.lightbox__field .modal .lightbox_prev, .modal__field.lightbox__field .modal .lightbox_next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
  height: 46px;
  width: 24px;
  outline: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.modal__field.lightbox__field .modal .lightbox_prev {
  background: url("./../../assets/img/main/arrow-left-wht.png") center/contain no-repeat;
  left: -40px;
}
.modal__field.lightbox__field .modal .lightbox_prev:active {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}
.modal__field.lightbox__field .modal .lightbox_next {
  background: url("./../../assets/img/main/arrow-right-wht.png") center/contain no-repeat;
  right: -40px;
}
.modal__field.lightbox__field .modal .lightbox_next:active {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.modal__field .modal {
  position: relative;
  width: 70%;
  opacity: 0;
  z-index: 3500;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.modal__field .modal.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.modal__field .modal__closebtn {
  position: absolute;
  height: 40px;
  width: 40px;
  right: -30px;
  top: -30px;
  z-index: 500;
  cursor: pointer;
}
.modal__field .modal__closebtn.active .modal__closebtn_line_01::before {
  top: 0;
  opacity: 1;
  -webkit-transition: 0.4s ease 0.2s;
  transition: 0.4s ease 0.2s;
}
.modal__field .modal__closebtn.active .modal__closebtn_line_02::before {
  top: 0;
  opacity: 1;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.modal__field .modal__closebtn_line_01, .modal__field .modal__closebtn_line_02 {
  position: absolute;
  height: 100%;
  width: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.modal__field .modal__closebtn_line_01::before, .modal__field .modal__closebtn_line_02::before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.modal__field .modal__closebtn_line_01 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal__field .modal__closebtn_line_01::before {
  top: -120%;
  -webkit-transition: 0.2s ease 0.1s;
  transition: 0.2s ease 0.1s;
}
.modal__field .modal__closebtn_line_02 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal__field .modal__closebtn_line_02::before {
  top: -100%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.modal__field .modal .lightbox__slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}
.modal__field .modal__video {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  width: 100%;
}
.modal__field .modal__video_wrap {
  background-color: #000;
  width: 100%;
  height: 70vh;
  padding: 20px 0;
}
.modal__field .modal__video_wrap video {
  width: calc(100% - 10vw);
  max-width: 1000px;
  height: auto;
  max-height: 70vh;
  display: block;
  margin: 0 auto;
  outline: none;
  position: absolute;
  opacity: 0;
}
.modal__field .modal__video_wrap video.active {
  position: relative;
  opacity: 1;
}
.modal__field .modal__video iframe {
  width: 100%;
  height: 70vh;
}

.breadcrumbs {
  margin: 0 auto;
  padding: 0 0 10px;
  position: relative;
  width: 100%;
  background: #fff;
  border: none;
  font-size: 0;
}
.breadcrumbs__list {
  margin: 0 auto;
  padding: 0 5px;
  display: block;
  font-size: 0;
  list-style: none;
  max-width: 1120px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.breadcrumbs__list li {
  margin-right: 8px;
  padding-right: 15px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.breadcrumbs__list li p, .breadcrumbs__list li span {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: capitalize;
}
.breadcrumbs__list li a {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
}
.breadcrumbs__list li a:hover {
  opacity: 0.8;
}
.breadcrumbs__list li:after {
  padding: 2px;
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  width: 1px;
  height: 1px;
  border: solid #999999;
  border-width: 0 1px 1px 0;
  display: inline-block;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.breadcrumbs__list li:last-of-type {
  padding-right: 0;
}
.breadcrumbs__list li:last-of-type, .breadcrumbs__list li.active {
  margin-right: 0 !important;
}
.breadcrumbs__list li:last-of-type:after, .breadcrumbs__list li.active:after {
  padding: 0;
  display: none;
}
.breadcrumbs__list li.active p, .breadcrumbs__list li.active a, .breadcrumbs__list li.active span {
  color: #999999;
}
.breadcrumbs__list .separator {
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1;
}

/********* COMMON RESPONSIVE *********/
/*--- MOBILE ---*/
@media screen and (max-width: 1024px) {
  .top--space {
    margin: 10px auto 0;
  }

  .inner__cont, .outer__cont {
    width: 100%;
    padding: 0 15px;
  }

  .loader__display {
    width: 260px;
  }
  .loader__display img:nth-child(1) {
    width: 160px;
  }
  .loader .ripple {
    width: 40vw;
    height: 40vw;
  }

  .modal__field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    z-index: -100;
  }
  .modal__field.active {
    opacity: 1;
    z-index: 10000;
  }
  .modal__field.lightbox__field {
    background-color: transparent;
  }
  .modal__field.lightbox__field .modal__field_bg {
    background-color: rgba(0, 105, 142, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
  }
  .modal__field.lightbox__field .modal .modal__close {
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
  }
  .modal__field.lightbox__field .modal .modal__close:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .modal__field.lightbox__field .modal .lightbox__slider_img {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    height: 480px;
    width: 480px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
  }
  .modal__field.lightbox__field .modal .lightbox__slider_img img {
    display: inline-block;
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
  }
  .modal__field.lightbox__field .modal .lightbox_prev, .modal__field.lightbox__field .modal .lightbox_next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
    height: 46px;
    width: 24px;
    outline: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .modal__field.lightbox__field .modal .lightbox_prev {
    background: url("./../../assets/img/main/arrow-left-wht.png") center/contain no-repeat;
    left: -40px;
  }
  .modal__field.lightbox__field .modal .lightbox_prev:active {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  .modal__field.lightbox__field .modal .lightbox_next {
    background: url("./../../assets/img/main/arrow-right-wht.png") center/contain no-repeat;
    right: -40px;
  }
  .modal__field.lightbox__field .modal .lightbox_next:active {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  .modal__field .modal {
    width: 100%;
  }
  .modal__field .modal__closebtn {
    height: 30px;
    width: 30px;
    right: 15px;
    top: -25px;
  }
  .modal__field .modal .lightbox__slide {
    padding: 15px;
  }
  .modal__field .modal__video {
    padding: 15px;
  }
  .modal__field .modal__video_wrap {
    max-height: 400px;
    padding: 15px 0;
  }
  .modal__field .modal__video_wrap video {
    max-height: 400px;
  }
  .modal__field .modal__video iframe {
    max-height: 400px;
  }

  .anchor__target {
    top: -140px;
  }
}
/*=== HEADER ===*/
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 87px;
  z-index: 1000;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
header.active {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .inner__cont {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  z-index: 100;
}
header .inner__cont .site__link {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  max-width: 257px;
  position: relative;
}
header .inner__cont .site__link a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .inner__cont .site__link a:hover {
  opacity: 0.8;
}
header .inner__cont .site__link .site__name {
  position: absolute;
  color: transparent;
  z-index: -1;
}
header .inner__cont .site__link .site__logo {
  max-width: 125.4px;
}
header .inner__cont .site__link .site__logo_occasion {
  max-width: 131px;
}
header .inner__cont .site__tagline {
  width: calc(100% - 530px);
  text-align: center;
}
header .inner__cont .site__tagline a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .inner__cont .site__tagline a:hover {
  opacity: 0.8;
}
header .inner__cont .site__tagline_text {
  font: bold 20px/1.2 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
header .inner__cont .menu__toggler {
  position: absolute;
  height: 100%;
  width: 87px;
  top: 0;
  bottom: 0;
  right: -70px;
  margin: auto;
  z-index: 2000;
  overflow: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
header .inner__cont .menu__toggler::after {
  content: "";
  position: absolute;
  background-color: #ddd;
  height: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transition: 0.4s ease 0.1s;
  transition: 0.4s ease 0.1s;
}
header .inner__cont .menu__toggler--btn {
  position: absolute;
  width: 55px;
  height: 34px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
header .inner__cont .menu__toggler--btn:hover {
  opacity: 0.8;
}
header .inner__cont .menu__toggler--btn-line {
  position: absolute;
  height: 3px;
  background-color: #00698E;
  border-radius: 4px;
  width: 100%;
  right: 0;
}
header .inner__cont .menu__toggler--btn-line:nth-child(1) {
  top: 0;
  -webkit-transform: perspective(1px);
  transform: perspective(1px);
  -webkit-transition: 0.2s ease 1.2s;
  transition: 0.2s ease 1.2s;
}
header .inner__cont .menu__toggler--btn-line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: background 1s ease 0.2s, transform 1.2s ease 0.2s;
  -webkit-transition: background 1s ease 0.2s, -webkit-transform 2s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s;
  transition: background 1s ease 0.2s, -webkit-transform 2s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s;
  transition: background 1s ease 0.2s, transform 2s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s;
  transition: background 1s ease 0.2s, transform 2s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s, -webkit-transform 2s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s;
}
header .inner__cont .menu__toggler--btn-line:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #00698E;
  border-radius: 4px;
  top: 0;
  left: 0;
  -webkit-transform: perspective(1px);
  transform: perspective(1px);
  -webkit-transition: background 1s ease 0.2s, transform 1.2s ease 0.2s;
  -webkit-transition: background 1s ease 0.2s, -webkit-transform 1s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s;
  transition: background 1s ease 0.2s, -webkit-transform 1s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s;
  transition: background 1s ease 0.2s, transform 1s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s;
  transition: background 1s ease 0.2s, transform 1s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s, -webkit-transform 1s cubic-bezier(0.85, -0.02, 0, 1.01) 0.2s;
}
header .inner__cont .menu__toggler--btn-line:nth-child(3) {
  bottom: 0;
  -webkit-transform: perspective(1px);
  transform: perspective(1px);
  -webkit-transition: 0.3s ease 1.2s;
  transition: 0.3s ease 1.2s;
}
header .inner__cont .menu__toggler.active::after {
  height: 100%;
}
header .inner__cont .menu__toggler.active .menu__toggler--btn-line:nth-child(1) {
  width: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
header .inner__cont .menu__toggler.active .menu__toggler--btn-line:nth-child(3) {
  width: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .inner__cont .menu__toggler.active .menu__toggler--btn-line:nth-child(2) {
  background-color: #fff;
  -webkit-transform: perspective(1px) rotate(45deg);
  transform: perspective(1px) rotate(45deg);
  -webkit-transition: background 0.2s ease, transform 0.8s ease;
  -webkit-transition: background 0.2s ease, -webkit-transform 2s cubic-bezier(0.85, -0.02, 0, 1.01);
  transition: background 0.2s ease, -webkit-transform 2s cubic-bezier(0.85, -0.02, 0, 1.01);
  transition: background 0.2s ease, transform 2s cubic-bezier(0.85, -0.02, 0, 1.01);
  transition: background 0.2s ease, transform 2s cubic-bezier(0.85, -0.02, 0, 1.01), -webkit-transform 2s cubic-bezier(0.85, -0.02, 0, 1.01);
}
header .inner__cont .menu__toggler.active .menu__toggler--btn-line:nth-child(2)::before {
  background-color: #fff;
  -webkit-transition: background 0.2s ease, transform 0.8s ease 0.3s;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.6s cubic-bezier(0.85, -0.02, 0, 1.01) 0.3s;
  transition: background 0.2s ease, -webkit-transform 0.6s cubic-bezier(0.85, -0.02, 0, 1.01) 0.3s;
  transition: background 0.2s ease, transform 0.6s cubic-bezier(0.85, -0.02, 0, 1.01) 0.3s;
  transition: background 0.2s ease, transform 0.6s cubic-bezier(0.85, -0.02, 0, 1.01) 0.3s, -webkit-transform 0.6s cubic-bezier(0.85, -0.02, 0, 1.01) 0.3s;
  -webkit-transform: perspective(1px) rotate(-450deg);
  transform: perspective(1px) rotate(-450deg);
}
header .inner__cont .main__nav {
  position: absolute;
  top: 87px;
  right: -70px;
  width: 400px;
  height: 200px;
  background-color: #fff;
  display: none;
}
header .inner__cont .main__nav__wrap {
  background-color: #fff;
  position: relative;
  width: 100%;
}
header .inner__cont .main__nav__wrap_list {
  position: inherit;
  width: 100%;
  margin-bottom: 1px;
}
header .inner__cont .main__nav__wrap_list:last-child {
  margin-bottom: 0;
}
header .inner__cont .main__nav__wrap_list .nav__link {
  position: relative;
  display: block;
  width: 100%;
  font: 500 24px/1 "Roboto", Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px 29px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  border-bottom: 1px solid #CBC5C5;
}
header .inner__cont .main__nav__wrap_list .nav__link.bg__gray{
  background-color: #F0F0F0;
  color: #000;

}

header .inner__cont .main__nav__wrap_list .nav__link::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  bottom: 0;
  right: 20px;
  margin: auto;
  height: 15px;
  width: 20px;
  background-color: transparent;
  background: url("./../../assets/img/main/arrow-right-white.png") center/contain no-repeat;
}
header .inner__cont .main__nav__wrap_list .nav__link:hover {
  background-color: #00698E;
}

header .inner__cont .main__nav__wrap_list .nav__link.bg__gray::after{
  background: url("./../../assets/img/main/arrow-right-gray.png") center/contain no-repeat;
}

header .inner__cont .main__nav__wrap_list .nav__link.bg__gray:hover {
  color: #fff;
}

/********* HEADER RESPONSIVE *********/
/*--- MOBILE ---*/
@media screen and (max-width: 1260px) {
  header .inner__cont .menu__toggler {
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .inner__cont {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .inner__cont .site__tagline {
    display: none;
  }
  header .inner__cont .site__link {
    max-width: 230px;
  }
  header .inner__cont .site__link .site__logo {
    max-width: 125px;
  }
  header .inner__cont .site__link .site__logo_occasion {
    max-width: 85px;
  }
  header .inner__cont .menu__toggler {
    margin: 0;
    position: relative;
    right: 0;
    height: 40px;
    width: 40px;
  }
  header .inner__cont .menu__toggler--btn {
    height: 30px;
    width: 40px;
  }
  header .inner__cont .main__nav {
    right: 0;
    width: 100%;
  }
}
/*=== FOOTER ===*/
footer {
  background-color: #000;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
footer .copyrights {
  font: 400 14px/1 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
}

/*=== MAIN CONTENT ===*/
.top__page .kv__wrap {
  position: relative;
  width: 100%;
  margin-bottom: 95px;
}
.top__page .history__slider {
  position: relative;
  width: 100%;
  margin-bottom: 70px;
  display: block;
}
.top__page .history__slider__labels {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.top__page .history__slider__labels_title {
  display: inline-block;
  background-color: #444;
  padding: 14px 10px 10px;
  border-radius: 0 0 10px 10px;
  font: bold 20px/1 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  text-align: center;
  min-width: 240px;
  color: #fff;
}
.top__page .history__slider__labels_title:nth-child(2) {
  background-color: #00698E;
}
.top__page .history__slider #history_slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide {
  position: relative;
  width: 100%;
  height: 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;
}
.top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col {
  width: 50%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail {
  display: inline-block;
  width: 100%;
  max-width: 445px;
  height: auto;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
.top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail__title {
  position: relative;
  display: block;
  text-align: center;
  font: bold 24px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
  padding-bottom: 33px;
  margin-bottom: 33px;
}
.top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  max-width: 70px;
  height: 2px;
  background-color: #fff;
}
.top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail__subtitle {
  display: block;
  text-align: center;
  font: bold 20px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  margin-bottom: 15px;
  color: #fff;
}
.top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail__text {
  display: block;
  font: 500 20px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
}
.top__page .history__slider__controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 30%;
  max-width: 300px;
  margin: auto;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__page .history__slider__controls .history__pagi {
  margin: 30px auto;
  width: 100%;
  height: 420px;
  z-index: 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__page .history__slider__controls .history__pagi .swiper-pagination-bullet {
  position: relative;
  width: 100%;
  height: 16px;
  background: none;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 10px 0;
  outline: none;
  opacity: 1;
}
.top__page .history__slider__controls .history__pagi .swiper-pagination-bullet .year__bullet {
  position: relative;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #fff;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.top__page .history__slider__controls .history__pagi .swiper-pagination-bullet .year__bullet_text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 180px;
  height: 60px;
  text-align: center;
  display: none;
  font: bold 60px/1 "Roboto", Helvetica, sans-serif;
  -webkit-animation: fadeInUp 0.8s ease;
  animation: fadeInUp 0.8s ease;
  color: #fff;
}
.top__page .history__slider__controls .history__pagi .swiper-pagination-bullet-active {
  height: auto;
  margin: 20px 0;
}
.top__page .history__slider__controls .history__pagi .swiper-pagination-bullet-active .year__bullet {
  height: 240px;
  width: 240px;
}
.top__page .history__slider__controls .history__pagi .swiper-pagination-bullet-active .year__bullet_text {
  display: block;
}
.top__page .history__slider__controls .history__next, .top__page .history__slider__controls .history__prev {
  display: inline-block;
  height: 24px;
  width: 50px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 200;
  outline: none;
  cursor: pointer;
}
.top__page .history__slider__controls .history__next {
  background: url("./../../assets/img/main/arrow-down.png") center/contain no-repeat;
}
.top__page .history__slider__controls .history__next:active {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.top__page .history__slider__controls .history__prev {
  background: url("./../../assets/img/main/arrow-up.png") center/contain no-repeat;
}
.top__page .history__slider__controls .history__prev:active {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.top__page .ocassion__field {
  width: 100%;
  padding: 100px 0 200px;
  background: url("./../../assets/img/main/top/bg-01.jpg") center/cover no-repeat;
}
.top__page .ocassion__field_img {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 40px;
}
.top__page .ocassion__field_details {
  display: block;
  text-align: center;
  font: bold 36px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  margin-bottom: 60px;
}
.top__page .ocassion__field_details .bolder {
  font-weight: bolder;
}
.top__page .voices__field {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  height: 570px;
  width: 100%;
}
.top__page .voices__field .col {
  position: relative;
  height: 100%;
  width: 25%;
  overflow: hidden;
  cursor: context-menu;
}
.top__page .voices__field .col .voice_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: url("./../../assets/img/main/top/sample.png") center/cover no-repeat;
  z-index: 1;
}
.top__page .voices__field .col .voice_img .lb__button {
  width: 100%;
  height: 100%;
  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;
  position: relative;
  font: bold 20px/1 "Roboto", Helvetica, sans-serif;
  color: #fff;
  z-index: 4;
  opacity: 0;
  cursor: pointer;
  -webkit-transform: perspective(1px) scale(0.9);
  transform: perspective(1px) scale(0.9);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.top__page .voices__field .col .voice_img .lb__button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 100%;
}
.top__page .voices__field .col .voice_img .lb__button:hover::before {
  -webkit-animation: burstOut 2s ease infinite;
  animation: burstOut 2s ease infinite;
}
.top__page .voices__field .col .voice_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 100, 150, 0.6);
  z-index: 3;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.top__page .voices__field .col .voice_img:hover::before {
  opacity: 1;
}
.top__page .voices__field .col .voice_img:hover .lb__button {
  opacity: 1;
  -webkit-transform: perspective(1px) scale(1);
  transform: perspective(1px) scale(1);
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}
.top__page .voices__field .col .voice_img.vi_1_01 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_01.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_02 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_02.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_03 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_03.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_0x {
  background: url("./../../assets/img/main/top/slide_1/vi_1_0x.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_04 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_04.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_05 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_05.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_06 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_06.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_07 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_07.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_08 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_08.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_09 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_09.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_10 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_10.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_11 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_11.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_12 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_12.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_13 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_13.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_1_14 {
  background: url("./../../assets/img/main/top/slide_1/vi_1_14.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_01 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_01.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_02 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_02.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_03 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_03.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_0x {
  background: url("./../../assets/img/main/top/slide_2/vi_2_0x.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_04 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_04.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_05 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_05.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_06 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_06.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_07 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_07.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_08 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_08.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_09 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_09.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_10 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_10.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_11 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_11.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_12 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_12.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_2_13 {
  background: url("./../../assets/img/main/top/slide_2/vi_2_13.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_01 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_01.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_02 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_02.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_03 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_03.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_0x {
  background: url("./../../assets/img/main/top/slide_3/vi_3_0x.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_04 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_04.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_05 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_05.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_06 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_06.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_07 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_07.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_08 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_08.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_09 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_09.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_10 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_10.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_11 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_11.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_12 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_12.jpg") center/cover no-repeat;
}
.top__page .voices__field .col .voice_img.vi_3_13 {
  background: url("./../../assets/img/main/top/slide_3/vi_3_13.jpg") center/cover no-repeat;
}
.top__page .voices__field .col.inner__flex_1 {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  width: 100%;
}
.top__page .voices__field .col.inner__flex_1 .col {
  height: calc(100% - 66.666%);
  width: 100%;
}
.top__page .voices__field .col.inner__flex_1 .col.inner__flex_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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  width: 100%;
}
.top__page .voices__field .col.inner__flex_1 .col.inner__flex_2 .col {
  height: 50%;
  width: 100%;
}
.top__page .voices__field .col.inner__flex_1 .col.inner__flex_2 .col.col_2 {
  width: 50%;
}
.top__page .voices__field .col.inner__flex_1 .col.inner__flex_2 .col.vol_2 {
  height: 50%;
}
.top__page .voices__field .col.inner__flex_1 .col.col_2 {
  width: 50%;
}
.top__page .voices__field .col.inner__flex_1 .col.col_4 {
  width: 25%;
}
.top__page .voices__field .col.inner__flex_1 .col.vol_2 {
  height: 66.666%;
}
.top__page .voices__field .col.col_2 {
  width: 50%;
}
.top__page .voice__navi {
  margin: 25px 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__page .voice__navi.sp {
  display: none;
}
.top__page .voice__navi .voice__pagi {
  display: inline-block;
  text-align: center;
  margin: 0 18px;
}
.top__page .voice__navi .voice__pagi .swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
  margin: 0 8px;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #707070;
  background-color: #fff;
  outline: none;
  opacity: 1;
}
.top__page .voice__navi .voice__pagi .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: #00698E;
  z-index: 1;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.top__page .voice__navi .voice__pagi .swiper-pagination-bullet-active::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.top__page .voice__navi .voice__prev, .top__page .voice__navi .voice__next {
  position: relative;
  height: 15px;
  width: 15px;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.top__page .voice__navi .voice__prev {
  background: url("./../../assets/img/main/arrow-left.png") center/contain no-repeat;
}
.top__page .voice__navi .voice__prev:active {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}
.top__page .voice__navi .voice__next {
  background: url("./../../assets/img/main/arrow-right.png") center/contain no-repeat;
}
.top__page .voice__navi .voice__next:active {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

/********* MAIN CONTENT RESPONSIVE *********/
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail {
    max-width: 30vw;
  }
  .top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail__title {
    font-size: 1.7vw;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
  }
  .top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail__subtitle {
    font-size: 1.4vw;
    margin-bottom: 1vw;
  }
  .top__page .history__slider #history_slider .swiper-wrapper .swiper-slide .history__slide_col .detail__text {
    font-size: 1.4vw;
  }
  .top__page .history__slider__controls {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 30%;
    max-width: 300px;
    margin: auto;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top__page .history__slider__controls .history__pagi {
    margin: 30px auto;
    width: 100%;
    height: 30vw;
    z-index: 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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top__page .history__slider__controls .history__pagi .swiper-pagination-bullet {
    position: relative;
    width: 100%;
    height: 16px;
    background: none;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0.5vw 0;
    outline: none;
    opacity: 1;
  }
  .top__page .history__slider__controls .history__pagi .swiper-pagination-bullet .year__bullet {
    position: relative;
    height: 1vw;
    width: 1vw;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #fff;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .top__page .history__slider__controls .history__pagi .swiper-pagination-bullet .year__bullet_text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 12.6vw;
    height: 4.2vw;
    text-align: center;
    display: none;
    font: bold 4vw/1 "Roboto", Helvetica, sans-serif;
    -webkit-animation: fadeInUp 0.8s ease;
    animation: fadeInUp 0.8s ease;
    color: #fff;
  }
  .top__page .history__slider__controls .history__pagi .swiper-pagination-bullet-active {
    height: auto;
    margin: 20px 0;
  }
  .top__page .history__slider__controls .history__pagi .swiper-pagination-bullet-active .year__bullet {
    height: 16.5vw;
    width: 16.5vw;
  }
  .top__page .history__slider__controls .history__pagi .swiper-pagination-bullet-active .year__bullet_text {
    display: block;
  }
  .top__page .history__slider__controls .history__next, .top__page .history__slider__controls .history__prev {
    display: inline-block;
    height: 24px;
    width: 50px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 200;
    outline: none;
    cursor: pointer;
  }
  .top__page .history__slider__controls .history__next {
    background: url("./../../assets/img/main/arrow-down.png") center/contain no-repeat;
  }
  .top__page .history__slider__controls .history__next:active {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  .top__page .history__slider__controls .history__prev {
    background: url("./../../assets/img/main/arrow-up.png") center/contain no-repeat;
  }
  .top__page .history__slider__controls .history__prev:active {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/*--- MOBILE ---*/
@media screen and (max-width: 1024px) {
  .top__page .kv__wrap {
    z-index: 2;
  }
  .top__page .mb_0 {
    z-index: 1;
  }
  .top__page .mb_0 .img__wrap.iw_01 {
    max-width: 220px;
  }
  .top__page .text__field .tf__text {
    font-size: 15px;
  }
  .top__page .section__head__title_jap {
    font-size: 26px;
    line-height: 1.4;
  }
  .top__page .section__head__title .title__slash {
    top: -25px;
  }
  .top__page .section__head__detail {
    margin: 30px auto 0;
    font-size: 15px;
  }
  .top__page .section__body .person__profile_detail {
    font-size: 15px;
  }
  .top__page .page__buttons .button {
    font-size: 14px;
    line-height: 1.5;
  }
  .top__page .page__buttons .button.goto {
    padding: 18px 40px 18px 5px;
    font-size: 14px;
    line-height: 1.5;
  }
  .top__page .page__buttons .button.goto:after {
    height: 18px;
    width: 18px;
  }
  .top__page .history__slider {
    position: relative;
    overflow: hidden;
  }
  .top__page .history__slider #history_slider {
    display: none;
  }
  .top__page .history__slider__labels {
    display: none;
  }
  .top__page .history__slider__controls {
    display: none;
  }
  .top__page .history__sp__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
  }
  .top__page .history__sp__content p {
    margin: 10px 0 0;
    font: 600 4.8vw/1.6 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
    letter-spacing: 0;
    text-align: center;
  }
  .top__page .voices__field {
    width: calc(100vw - 30px);
    height: calc(101.9vw - 30px);
    min-width: 290px;
    min-height: 295px;
  }
  .top__page .voices__field .col.col_2 {
    width: 100%;
  }
  .top__page .voice__navi.pc {
    display: none;
  }
  .top__page .voice__navi.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top__page .voice__navi .voice__pagi .swiper-pagination-bullet {
    height: 18px;
    width: 18px;
  }
  .top__page .voice__navi .voice__pagi .swiper-pagination-bullet:before {
    width: 10px;
    height: 10px;
  }
  .top__page .ocassion__field {
    padding: 100px 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .top__page .ocassion__field_img {
    max-width: 220px;
  }
  .top__page .ocassion__field_details {
    font-size: 22px;
  }
  .top__page .modal__field.lightbox__field .modal {
    width: 100%;
    max-width: 460px;
    height: auto;
  }
  .top__page .modal__field.lightbox__field .modal .lightbox__slider_img {
    padding: 30px;
    width: 100%;
  }
  .top__page .modal__field.lightbox__field .modal .lightbox_next {
    height: 28px;
    width: 20px;
    right: 5px;
  }
  .top__page .modal__field.lightbox__field .modal .lightbox_prev {
    height: 28px;
    width: 20px;
    left: 5px;
  }
}
@media screen and (max-width: 375px) {
  .top__page .text__field .tf__text {
    font-size: 14px;
  }
}
.history__page .kv__child {
  margin: 111px auto 0;
}

.kv__child {
  position: relative;
  width: 100%;
  height: calc(100vh - 87px);
  background: url("./../../assets/img/main/history/history_kv-pc.jpg") center/cover no-repeat;
}
.kv__child .kv__labels {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 1;
}
.kv__child .kv__labels_text {
  display: inline-block;
  font: bold 27px/1 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  text-align: center;
  background-color: #444;
  color: #fff;
  padding: 14px 10px 10px;
  min-width: 342px;
  width: 50%;
}
.kv__child .kv__labels_text:nth-child(2) {
  background-color: #00698E;
}
.kv__child .kv__introtext {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 70vh;
  height: 70vh;
  max-height: 530px;
  max-width: 530px;
  z-index: 1;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #fff;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  letter-spacing: -1px;
}
.kv__child .kv__introtext_title {
  position: relative;
  display: block;
  font: 500 48px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #fff;
  width: 100%;
}
.kv__child .kv__introtext_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 20%;
  max-width: 70px;
  background-color: #fff;
}
.kv__child .kv__introtext_text, .kv__child .kv__introtext_details {
  display: block;
  font: bold 24px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
}
.kv__child .kv__introtext_text {
  font-family: "Roboto", Helvetica, sans-serif;
}

.page__navi {
  position: relative;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  z-index: 2;
  top: 0;
  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;
}
.page__navi.active {
  position: fixed;
  border-top: 1px solid #efefef;
  top: 111px;
  z-index: 8;
}
.page__navi__sp {
  display: none;
}
.page__navi__content {
  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;
}
.page__navi__list {
  display: inline-block;
  width: calc(100% / 5);
  height: 74px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page__navi__list:last-child a {
  border-right: none;
}
.page__navi__list_anchor {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 100%;
  width: 100%;
  font: bold 30px/1 "Roboto", Helvetica, sans-serif;
  border-right: 1px solid #707070;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.page__navi__list_anchor.active {
  background-color: #ECECEC;
  border-color: #ECECEC;
}
.page__navi__list_anchor.active:hover {
  background-color: #ECECEC;
  border-color: #ECECEC;
}
.page__navi__list_anchor:hover {
  background-color: #C9EDF5;
  border-color: #C9EDF5;
}

.history__timeline {
  position: relative;
  background-color: #F2F2F2;
  width: 100%;
  min-height: 100vh;
  margin: auto;
}
.history__timeline.active {
  padding-top: 74px;
}
.history__timeline::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  right: 0;
  background-color: #D9EFF7;
}
.history__timeline .timestamp {
  position: relative;
  width: 100%;
  min-height: 40vh;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  padding: 268px 0 0;
  z-index: auto;
}
.history__timeline .timestamp:first-child {
  padding-top: 353px;
}
.history__timeline .timestamp:first-child .timestamp__year {
  top: 125px;
}
.history__timeline .timestamp__year {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid #00698E;
  background-color: #fff;
  width: 188px;
  height: 188px;
  font: bold 65px/1 "Roboto", Helvetica, sans-serif;
  -webkit-transform: scale(0.26);
  transform: scale(0.26);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.history__timeline .timestamp__year::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.history__timeline .timestamp__year.active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.history__timeline .timestamp__year.active::before {
  -webkit-animation: burstOut 2s ease 0.1s;
  animation: burstOut 2s ease 0.1s;
}
.history__timeline .timestamp__year_sp {
  display: none;
}
.history__timeline .timestamp__liner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  width: 11px;
}
.history__timeline .timestamp__liner .active__line {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #00698E;
  border-radius: 0 0 10px 10px;
  -webkit-transition: height ease;
  transition: height ease;
  z-index: 1;
}
.history__timeline .timestamp .timestamp__card, .history__timeline .timestamp .blank__card {
  position: relative;
  width: 50%;
  min-height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 20px;
  z-index: 2;
}
.history__timeline .timestamp .timestamp__card.tc__left, .history__timeline .timestamp .blank__card.tc__left {
  padding-right: 170px;
}
.history__timeline .timestamp .timestamp__card.tc__left .timestamp__card_pulse, .history__timeline .timestamp .blank__card.tc__left .timestamp__card_pulse {
  right: -20px;
  border-color: #464646;
  z-index: 4;
}
.history__timeline .timestamp .timestamp__card.tc__left .timestamp__card_pulse::after, .history__timeline .timestamp .blank__card.tc__left .timestamp__card_pulse::after {
  background-color: #464646;
  right: 36px;
}
.history__timeline .timestamp .timestamp__card.tc__left .timestamp__card__content, .history__timeline .timestamp .blank__card.tc__left .timestamp__card__content {
  opacity: 0;
  -webkit-transform: translate(-20px, 20px);
  transform: translate(-20px, 20px);
}
.history__timeline .timestamp .timestamp__card.tc__left .timestamp__card_text, .history__timeline .timestamp .blank__card.tc__left .timestamp__card_text {
  display: block;
  text-align: right;
}
.history__timeline .timestamp .timestamp__card.tc__left .timestamp__card_text img, .history__timeline .timestamp .blank__card.tc__left .timestamp__card_text img {
  float: left;
  margin: 0 10px 0 0;
}
.history__timeline .timestamp .timestamp__card.tc__left.active .timestamp__card__content, .history__timeline .timestamp .blank__card.tc__left.active .timestamp__card__content {
  -webkit-transition: all 0.6s ease 0.4s;
  transition: all 0.6s ease 0.4s;
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
.history__timeline .timestamp .timestamp__card.tc__right, .history__timeline .timestamp .blank__card.tc__right {
  padding-left: 170px;
}
.history__timeline .timestamp .timestamp__card.tc__right .timestamp__card_pulse, .history__timeline .timestamp .blank__card.tc__right .timestamp__card_pulse {
  left: -20px;
}
.history__timeline .timestamp .timestamp__card.tc__right .timestamp__card_pulse::after, .history__timeline .timestamp .blank__card.tc__right .timestamp__card_pulse::after {
  left: 36px;
}
.history__timeline .timestamp .timestamp__card.tc__right .timestamp__card__content, .history__timeline .timestamp .blank__card.tc__right .timestamp__card__content {
  opacity: 0;
  -webkit-transform: translate(20px, 20px);
  transform: translate(20px, 20px);
}
.history__timeline .timestamp .timestamp__card.tc__right.active .timestamp__card__content, .history__timeline .timestamp .blank__card.tc__right.active .timestamp__card__content {
  -webkit-transition: all 0.6s ease 0.4s;
  transition: all 0.6s ease 0.4s;
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
.history__timeline .timestamp .timestamp__card.active .timestamp__card_pulse, .history__timeline .timestamp .blank__card.active .timestamp__card_pulse {
  background-color: #fff;
  border: 4px solid #00698E;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.history__timeline .timestamp .timestamp__card.active .timestamp__card_pulse::before, .history__timeline .timestamp .blank__card.active .timestamp__card_pulse::before {
  -webkit-animation: burstOut_2 2s ease 0.1s;
  animation: burstOut_2 2s ease 0.1s;
}
.history__timeline .timestamp .timestamp__card.active .timestamp__card_pulse::after, .history__timeline .timestamp .blank__card.active .timestamp__card_pulse::after {
  width: 110px;
  -webkit-transition: all 0.4s ease 0.4s;
  transition: all 0.4s ease 0.4s;
}
.history__timeline .timestamp .timestamp__card_pulse, .history__timeline .timestamp .blank__card_pulse {
  position: absolute;
  top: 0;
  height: 40px;
  width: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100%;
  background-color: #e6e6e6;
  z-index: 3;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.history__timeline .timestamp .timestamp__card_pulse::before, .history__timeline .timestamp .blank__card_pulse::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100%;
  -webkit-animation: burstIn 2s ease 0.4s;
  animation: burstIn 2s ease 0.4s;
  z-index: 4;
}
.history__timeline .timestamp .timestamp__card_pulse::after, .history__timeline .timestamp .blank__card_pulse::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #00698E;
  z-index: 3;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.history__timeline .timestamp .timestamp__card__content, .history__timeline .timestamp .blank__card__content {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.history__timeline .timestamp .timestamp__card_text, .history__timeline .timestamp .blank__card_text {
  font: 500 18px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  margin-bottom: 30px;
}
.history__timeline .timestamp .timestamp__card_text::after, .history__timeline .timestamp .blank__card_text::after {
  content: "";
  display: block;
  clear: both;
}
.history__timeline .timestamp .timestamp__card_text:last-child, .history__timeline .timestamp .blank__card_text:last-child {
  margin-bottom: 0;
}
.history__timeline .timestamp .timestamp__card_text.set__2, .history__timeline .timestamp .blank__card_text.set__2 {
  margin-bottom: 15px;
}
.history__timeline .timestamp .timestamp__card_text.mb__30, .history__timeline .timestamp .blank__card_text.mb__30 {
  margin-bottom: 30px;
}
.history__timeline .timestamp .timestamp__card_text img, .history__timeline .timestamp .blank__card_text img {
  display: inline-block;
  width: auto;
  max-width: 50%;
  height: auto;
}
.history__timeline .timestamp .timestamp__card .accordion__field, .history__timeline .timestamp .blank__card .accordion__field {
  position: relative;
  width: 100%;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion, .history__timeline .timestamp .blank__card .accordion__field .accordion {
  position: inherit;
  width: 100%;
  max-width: 350px;
  min-height: 150px;
  background: #fff;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion.open .accordion__head, .history__timeline .timestamp .blank__card .accordion__field .accordion.open .accordion__head {
  opacity: 0;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion.open .accordion__body, .history__timeline .timestamp .blank__card .accordion__field .accordion.open .accordion__body {
  background-color: #00698E;
  opacity: 1;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion.open .accordion__btn, .history__timeline .timestamp .blank__card .accordion__field .accordion.open .accordion__btn {
  background-color: #fff;
  border: 2px solid #00698E;
  color: #00698E;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__head, .history__timeline .timestamp .blank__card .accordion__field .accordion__head {
  background: #fff;
  position: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 10px;
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__head::after, .history__timeline .timestamp .blank__card .accordion__field .accordion__head::after {
  content: "";
  display: block;
  clear: both;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__head .acc__text, .history__timeline .timestamp .blank__card .accordion__field .accordion__head .acc__text {
  font: 500 16px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__head .acc__img, .history__timeline .timestamp .blank__card .accordion__field .accordion__head .acc__img {
  display: inline-block;
  float: right;
  margin: 0 0 10px 10px;
  width: auto;
  height: auto;
  max-width: 55%;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__body, .history__timeline .timestamp .blank__card .accordion__field .accordion__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 10px;
  border-radius: 10px 10px 0 0;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__year, .history__timeline .timestamp .blank__card .accordion__field .accordion__body .acc__year {
  display: block;
  text-align: center;
  font: bold 48px/1.4 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__title, .history__timeline .timestamp .blank__card .accordion__field .accordion__body .acc__title {
  display: block;
  text-align: center;
  font: bold 20px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
  margin-bottom: 8px;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__text, .history__timeline .timestamp .blank__card .accordion__field .accordion__body .acc__text {
  font: 500 18px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__text a, .history__timeline .timestamp .blank__card .accordion__field .accordion__body .acc__text a {
  color: #C9EDF5;
  text-decoration: underline;
  text-underline-position: under;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__text a:hover, .history__timeline .timestamp .blank__card .accordion__field .accordion__body .acc__text a:hover {
  opacity: 0.8;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__img, .history__timeline .timestamp .blank__card .accordion__field .accordion__body .acc__img {
  display: block;
  margin: 0 auto 15px;
  width: auto;
  height: auto;
  max-width: 100%;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__btn, .history__timeline .timestamp .blank__card .accordion__field .accordion__btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 20px 6px;
  border-radius: 0 0 10px 10px;
  border: 2px solid transparent;
  font: 500 20px/1 "Roboto", Helvetica, sans-serif;
  color: #fff;
  background-color: #00698E;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.history__timeline .timestamp .timestamp__card .accordion__field .accordion__btn:hover, .history__timeline .timestamp .blank__card .accordion__field .accordion__btn:hover {
  opacity: 0.9;
}

@media screen and (min-width: 1025px) {
  .history__indicator {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .history__indicator .indicator {
    display: inline-block;
    font: bold 27px/1 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
    text-align: center;
    background-color: #444;
    color: #fff;
    padding: 14px 10px 10px;
    min-width: 342px;
    width: 50%;
  }
  .history__indicator .indicator:nth-child(2) {
    background-color: #00698E;
  }
}
/*--- MOBILE ---*/
@media screen and (max-width: 1024px) {
  .history__page .kv__child {
    margin: 87px auto 0;
  }

  .kv__child {
    background: url("./../../assets/img/main/history/history_kv-sp.jpg") center/cover no-repeat;
    height: 70vw;
  }
  .kv__child .kv__labels {
    display: none;
  }
  .kv__child .kv__introtext {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 70vw;
    height: 70vw;
    border: none;
  }
  .kv__child .kv__introtext_title {
    font-size: 9vw;
    margin-bottom: 6.25vw;
    padding-bottom: 4.25vw;
  }
  .kv__child .kv__introtext_title::before {
    width: 50%;
    max-width: 70px;
  }
  .kv__child .kv__introtext_text, .kv__child .kv__introtext_details {
    font-size: 4.375vw;
  }

  .page__navi {
    position: absolute;
    top: calc(70vw + 87px);
    left: 0;
    -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
    height: auto;
    z-index: 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;
  }
  .page__navi.open .page__navi__sp_btn::before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .page__navi.active {
    top: 87px;
  }
  .page__navi__sp {
    display: block;
    position: relative;
    background-color: #fff;
    width: 100%;
    height: 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
    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;
    -ms-flex-line-pack: center;
        align-content: center;
    border-bottom: 1px solid #b7b7b7;
  }
  .page__navi__sp_text {
    display: inline-block;
    font: bold 20px/1 "Roboto", Helvetica, sans-serif;
  }
  .page__navi__sp_btn {
    position: relative;
    height: 60px;
    width: 60px;
  }
  .page__navi__sp_btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 13px;
    height: 13px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .page__navi__content {
    display: none;
  }
  .page__navi__list {
    display: block;
    width: 100%;
    height: 50px;
  }
  .page__navi__list:last-child a {
    border-right: none;
  }
  .page__navi__list_anchor {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    font: bold 18px/1 "Roboto", Helvetica, sans-serif;
    border-right: none;
    border-top: 1px solid #f4f4f4;
  }
  .page__navi__list_anchor.active {
    background-color: #ECECEC;
  }
  .page__navi__list_anchor.active:hover {
    background-color: #ECECEC;
    border-color: #ECECEC;
  }
  .page__navi__list_anchor:hover {
    background-color: #C9EDF5;
    border-color: #C9EDF5;
  }

  .history__indicator {
    padding: 30px 15px 20px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #b7b7b7;
    -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
    z-index: 4;
  }
  .history__indicator .indicator {
    padding: 0 10px 0 37px;
    position: relative;
    font-size: 17px;
    font-weight: bold;
  }
  .history__indicator .indicator1 {
    color: #00698E;
  }
  .history__indicator .indicator1:before {
    border-color: #00698E;
  }
  .history__indicator .indicator2 {
    color: #464646;
  }
  .history__indicator .indicator2:before {
    border-color: #464646;
  }
  .history__indicator .indicator:before {
    margin: auto;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    border: 5px solid;
    border-radius: 100%;
  }

  .history__timeline {
    padding-top: 131px;
    background-color: #D9EFF7;
  }
  .history__timeline .inner__cont {
    padding: 0;
  }
  .history__timeline.active {
    padding-top: 131px;
  }
  .history__timeline::after {
    background-color: transparent;
  }
  .history__timeline .timestamp {
    min-height: 20vw;
    padding: 0;
  }
  .history__timeline .timestamp .timestamp__card {
    z-index: auto;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__year {
    font-size: 28px;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__title {
    font-size: 16px;
  }
  .history__timeline .timestamp .timestamp__card__content {
    position: relative;
    z-index: 4;
  }
  .history__timeline .timestamp:first-child {
    padding-top: 0;
  }
  .history__timeline .timestamp:first-child .timestamp__year_sp {
    padding-top: 30px;
  }
  .history__timeline .timestamp__year {
    display: none;
  }
  .history__timeline .timestamp__year_sp {
    position: relative;
    display: block;
    width: 100%;
    font: bold 12vw/1 "Roboto", Helvetica, sans-serif;
    margin-bottom: 10px;
    background-color: #fff;
    z-index: 2;
    padding: 20px 0;
  }
  .history__timeline .timestamp__year_sp span {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  .history__timeline .timestamp__year_sp.active span {
    opacity: 1;
    visibility: visible;
  }
  .history__timeline .timestamp__liner {
    top: -84px;
    left: 25px;
    right: initial;
    z-index: 3;
  }
  .history__timeline .timestamp__liner .active__line {
    z-index: auto;
  }
  .history__timeline .timestamp .timestamp__card, .history__timeline .timestamp .blank__card {
    margin: 0 auto;
    position: relative;
    width: 100%;
    min-height: 70px;
    padding-bottom: 30px;
  }
  .history__timeline .timestamp .timestamp__card::before, .history__timeline .timestamp .blank__card::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .history__timeline .timestamp .timestamp__card.top--zero:before, .history__timeline .timestamp .blank__card.top--zero:before {
    top: 0;
  }
  .history__timeline .timestamp .timestamp__card.custom--bg:before, .history__timeline .timestamp .blank__card.custom--bg:before {
    height: 110px;
  }
  .history__timeline .timestamp .timestamp__card.custom--bg2:before, .history__timeline .timestamp .blank__card.custom--bg2:before {
    height: 435px;
  }
  .history__timeline .timestamp .timestamp__card.tc__left, .history__timeline .timestamp .blank__card.tc__left {
    padding-left: 98px;
    padding-right: 0;
  }
  .history__timeline .timestamp .timestamp__card.tc__left::before, .history__timeline .timestamp .blank__card.tc__left::before {
    background-color: #F2F2F2;
  }
  .history__timeline .timestamp .timestamp__card.tc__left .timestamp__card_pulse, .history__timeline .timestamp .blank__card.tc__left .timestamp__card_pulse {
    right: initial;
    left: 15px;
  }
  .history__timeline .timestamp .timestamp__card.tc__left .timestamp__card_pulse::after, .history__timeline .timestamp .blank__card.tc__left .timestamp__card_pulse::after {
    right: initial;
    left: 22px;
  }
  .history__timeline .timestamp .timestamp__card.tc__left .timestamp__card__content, .history__timeline .timestamp .blank__card.tc__left .timestamp__card__content {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
  .history__timeline .timestamp .timestamp__card.tc__left .timestamp__card_text, .history__timeline .timestamp .blank__card.tc__left .timestamp__card_text {
    text-align: left;
  }
  .history__timeline .timestamp .timestamp__card.tc__left .timestamp__card_text img, .history__timeline .timestamp .blank__card.tc__left .timestamp__card_text img {
    display: block;
    float: none;
    margin: 0 0 10px;
  }
  .history__timeline .timestamp .timestamp__card.tc__left.active .timestamp__card_pulse, .history__timeline .timestamp .blank__card.tc__left.active .timestamp__card_pulse {
    border-color: #464646;
  }
  .history__timeline .timestamp .timestamp__card.tc__right, .history__timeline .timestamp .blank__card.tc__right {
    padding-left: 98px;
    padding-right: 15px;
  }
  .history__timeline .timestamp .timestamp__card.tc__right .timestamp__card_pulse, .history__timeline .timestamp .blank__card.tc__right .timestamp__card_pulse {
    left: 15px;
  }
  .history__timeline .timestamp .timestamp__card.tc__right .timestamp__card_pulse::after, .history__timeline .timestamp .blank__card.tc__right .timestamp__card_pulse::after {
    left: 22px;
  }
  .history__timeline .timestamp .timestamp__card.tc__right .timestamp__card__content, .history__timeline .timestamp .blank__card.tc__right .timestamp__card__content {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
  .history__timeline .timestamp .timestamp__card_pulse, .history__timeline .timestamp .blank__card_pulse {
    height: 30px;
    width: 30px;
  }
  .history__timeline .timestamp .timestamp__card_pulse::after, .history__timeline .timestamp .blank__card_pulse::after {
    height: 3px;
    width: 0;
  }
  .history__timeline .timestamp .timestamp__card_pulse.active::after, .history__timeline .timestamp .blank__card_pulse.active::after {
    width: 40px;
  }
  .history__timeline .timestamp .timestamp__card.active .timestamp__card_pulse::after, .history__timeline .timestamp .blank__card.active .timestamp__card_pulse::after {
    width: 40px;
  }
  .history__timeline .timestamp .timestamp__card_text, .history__timeline .timestamp .blank__card_text {
    font: 500 18px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
    margin-bottom: 30px;
  }
  .history__timeline .timestamp .timestamp__card_text::after, .history__timeline .timestamp .blank__card_text::after {
    content: "";
    display: block;
    clear: both;
  }
  .history__timeline .timestamp .timestamp__card_text:last-child, .history__timeline .timestamp .blank__card_text:last-child {
    margin-bottom: 0;
  }
  .history__timeline .timestamp .timestamp__card_text.set__2, .history__timeline .timestamp .blank__card_text.set__2 {
    margin-bottom: 15px;
  }
  .history__timeline .timestamp .timestamp__card_text.mb__30, .history__timeline .timestamp .blank__card_text.mb__30 {
    margin-bottom: 30px;
  }
  .history__timeline .timestamp .timestamp__card_text img, .history__timeline .timestamp .blank__card_text img {
    display: inline-block;
    width: auto;
    max-width: 50%;
    height: auto;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion, .history__timeline .timestamp .blank__card .accordion__field .accordion {
    min-height: 120px;
    background: #fff;
    margin-bottom: 25px;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__head, .history__timeline .timestamp .blank__card .accordion__field .accordion__head {
    padding: 20px 20px 10px;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__head .acc__text, .history__timeline .timestamp .blank__card .accordion__field .accordion__head .acc__text {
    font: 500 16px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__head .acc__img, .history__timeline .timestamp .blank__card .accordion__field .accordion__head .acc__img {
    display: none;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__body, .history__timeline .timestamp .blank__card .accordion__field .accordion__body {
    padding: 20px 20px 10px;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__text, .history__timeline .timestamp .blank__card .accordion__field .accordion__body .acc__text {
    font: 500 16px/1.7 "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__body .acc__img, .history__timeline .timestamp .blank__card .accordion__field .accordion__body .acc__img {
    max-width: 100%;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__btn, .history__timeline .timestamp .blank__card .accordion__field .accordion__btn {
    padding: 8px 20px 6px;
    font: 500 20px/1 "Roboto", Helvetica, sans-serif;
  }
  .history__timeline .timestamp .timestamp__card .accordion__field .accordion__btn:hover, .history__timeline .timestamp .blank__card .accordion__field .accordion__btn:hover {
    opacity: 1;
  }
  .history__timeline .timestamp .blank__card {
    display: none;
  }
  .history__timeline .timestamp .timestamp__year_sp {
    z-index: 4;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_01,
.history__timeline .timestamp .timestamp__card.sp_order_01 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_02,
.history__timeline .timestamp .timestamp__card.sp_order_02 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_03,
.history__timeline .timestamp .timestamp__card.sp_order_03 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_04,
.history__timeline .timestamp .timestamp__card.sp_order_04 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_05,
.history__timeline .timestamp .timestamp__card.sp_order_05 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_06,
.history__timeline .timestamp .timestamp__card.sp_order_06 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_07,
.history__timeline .timestamp .timestamp__card.sp_order_07 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_08,
.history__timeline .timestamp .timestamp__card.sp_order_08 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_09,
.history__timeline .timestamp .timestamp__card.sp_order_09 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_10,
.history__timeline .timestamp .timestamp__card.sp_order_10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_11,
.history__timeline .timestamp .timestamp__card.sp_order_11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_12,
.history__timeline .timestamp .timestamp__card.sp_order_12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_13,
.history__timeline .timestamp .timestamp__card.sp_order_13 {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_14,
.history__timeline .timestamp .timestamp__card.sp_order_14 {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_15,
.history__timeline .timestamp .timestamp__card.sp_order_15 {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_16,
.history__timeline .timestamp .timestamp__card.sp_order_16 {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_17,
.history__timeline .timestamp .timestamp__card.sp_order_17 {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_18,
.history__timeline .timestamp .timestamp__card.sp_order_18 {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_19,
.history__timeline .timestamp .timestamp__card.sp_order_19 {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .history__timeline .timestamp .timestamp__year_sp.sp_order_20,
.history__timeline .timestamp .timestamp__card.sp_order_20 {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}

img {
  height: auto;
}

.p-top__visual {
  background-image: url(../img/main/top/top-bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 56.5%;
  margin-bottom: 180px;
  position: relative;
  z-index: 200;
}
@media only screen and (max-width: 640px) {
  .p-top__visual {
    background-position: bottom;
    padding-top: 0;
    min-height: 450px;
    margin-bottom: 90px;
  }
}

.p-top__visual-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1250px;
  padding: 80px 24px 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .p-top__visual-inner {
    padding: 40px 15px 0;
  }
}

.p-top__visual-title img {
  max-width: 834px;
}

.p-top__visual-description {
  max-width: 456px;
  font-size: 18px;
  line-height: 1.67;
  margin-top: 28px;
}
@media only screen and (max-width: 1024px) {
  .p-top__visual-description {
    font-size: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .p-top__visual-description {
    font-size: 14px;
  }
}

.p-top__visual-buttons {
  text-align: left;
  margin-top: 52px;
  margin-bottom: 0;
}
/*-----20210311追加-----*/
@media only screen and (max-width: 640px) {
  .p-top__visual-buttons {
    text-align: center;
  }
}
/*-----20210311追加ここまで-----*/

.slick__visual-buttons {
  text-align: center;
  margin-top: 52px;
  margin-bottom: 0;
}

.button.link.p-top__visual-link {
  padding: 18px 56px 18px 46px;
}
.button-in-slider{
  max-width: 374px;
  width: 100%;
  /* width: 384px; */
}
/*-----20210311追加-----*/
@media only screen and (max-width: 640px) {
  .button-in-slider{
    width: auto;
  }
}
/*-----20210311追加ここまで-----*/

.p-top__wide {
  max-width: none;
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .p-top__wide .section__head__detail {
    padding: 0 25px;
  }
}

.p-top__slide {
  /* background: -webkit-gradient(linear, left top, right top, from(#C9EDF5), to(#1CB2D3)); */
  /* background: linear-gradient(to right, #C9EDF5, #1CB2D3); */
  background-image: url(../img/main/bg-slider.png);
  padding: 74px 0 132px;
}
.p-top__slide img {
  border-radius: 24px;
  /* -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); */
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0,0.16));
}
@media only screen and (max-width: 640px) {
  .p-top__slide {
    padding: 64px 0;
  }
}

.p-top__future-info {
  background-color: #F0F0F0;
  padding: 60px 0 75px 0;
}
@media only screen and (max-width: 640px) {
  .p-top__future-info {
    padding: 20px;
  }
}
.p-top__future-info .tc {
  text-align: center;
}
.p-top__future-info .is-pc {
  display: block !important;
}
@media only screen and (max-width: 640px) {
  .p-top__future-info .is-pc {
    display: none !important;
  }
}
.p-top__future-info .is-sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .p-top__future-info .is-sp {
    display: block !important;
  }
}
.p-top__future-info img {
  max-width: 100%;
}
.p-top__future-info .p-top__future-info-icon {
  width: 26px;
  height: 26px;
}
.p-top__future-info h2 {
  color: #00698e;
  font-size: 24px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 640px) {
  .p-top__future-info h2 {
    padding-bottom: 0;
  }
}
.p-top__future-info h2 small {
  font-size: 16px;
}
@media only screen and (max-width: 640px) {
  .p-top__future-info h2 small {
    font-size: 12px;
    display: block;
  }
}
.p-top__future-info h2 strong {
  font-weight: bold;
}
.p-top__future-info .wrap {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.p-top__future-info .banner img {
  display: block;
  width: 20%;
  float: left;
}
@media only screen and (max-width: 640px) {
  .p-top__future-info .banner img {
    width: 100%;
    float: none;
  }
}
.p-top__future-info .cf:after {
  content: " ";
  display: block;
  clear: both;
}

.p-top__talk {
  max-width: none;
  padding: 0 100px;
}
@media only screen and (max-width: 1024px) {
  .p-top__talk {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 1024px) {
  .swiper-container {
    margin-left: 15px;
  }
}

.p-interview {
  padding: 192px 0 160px;
}
.p-interview__width{
  max-width: 1440px;
  margin: 0 auto;
}
.p-interview.is-1 {
  background: url(../img/interview/bg_interview1.png) no-repeat top center, -webkit-gradient(linear, left top, left bottom, from(#36a8ce), color-stop(#36a8ce), to(#3b7e97));
  background: url(../img/interview/bg_interview1.png) no-repeat top center, linear-gradient(to bottom, #36a8ce, #36a8ce, #3b7e97);
}
.p-interview.is-2 {
  background: url(../img/interview/bg_interview2.png) no-repeat top center, -webkit-gradient(linear, left top, left bottom, from(#b9e2eb), color-stop(#b9e2eb), to(#68b1cc));
  background: url(../img/interview/bg_interview2.png) no-repeat top center, linear-gradient(to bottom, #b9e2eb, #b9e2eb, #68b1cc);
}
.p-interview.is-3 {
  background: url(../img/interview/bg_interview3.png) no-repeat top center, -webkit-gradient(linear, left top, left bottom, from(#D2E583), color-stop(#D2E583), to(#5DBE7B));
  background: url(../img/interview/bg_interview3.png) no-repeat top center, linear-gradient(to bottom,  #D2E583, #D2E583, #5DBE7B);
}
.p-interview.is-4 {
  /* background: url(../img/interview/bg_interview3.png) no-repeat top center, -webkit-gradient(linear, left top, left bottom, from(#F8F08E), color-stop(#D2E583), to(#5DBE7B)); */
  /* background: url(../img/interview/bg_interview3.png) no-repeat top center, linear-gradient(347deg, #8CC64A 0%, #F7EC6F 100%) 0% 0% no-repeat padding-box; */
  background: url(../img/interview/bg_interview3.png) no-repeat top center, linear-gradient(to bottom, #F7EC6F, #F7EC6F, #8CC64A);
}
.p-interview.is-5 {
  background: url(../img/interview/bg_interview3.png) no-repeat top center, -webkit-gradient(linear, left top, left bottom, from(#FFBF75), color-stop(#FFBF75), to(#FF8C43));
  background: url(../img/interview/bg_interview3.png) no-repeat top center, linear-gradient(to bottom, #FFBF75, #FFBF75, #FF8C43);
}
.p-interview.is-6 {
  background: url(../img/interview/bg_interview6.png) no-repeat top center, -webkit-gradient(linear, left top, left bottom, from(#C5A3D5), color-stop(#C5A3D5), to(#8778C7));
  background: url(../img/interview/bg_interview6.png) no-repeat top center, linear-gradient(to bottom, #C5A3D5, #C5A3D5, #8778C7);
}
@media only screen and (max-width: 768px) {
  .p-interview {
    padding: 87px 0 60px;
  }
}

.p-interview__header {
  position: relative;
  padding-top: 35.5%;
}
@media only screen and (max-width: 640px) {
  .p-interview__header {
    padding-top: 0;
  }
}

.p-interview__header-text {
  position: absolute;
  top: 0;
  left: 46px;
  right: 0;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .p-interview__header-text{
    position: static;
  }

}

@media only screen and (max-width: 640px) {
  .p-interview__header-text{
    margin-top: -100px;
    margin-left: 15px;
  }
}

.p-interview__logo img {
  width: 214px;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .p-interview__logo img {
    width: 120px;
  }
}

.p-interview__headline {
  margin-top: 32px;
  font-size: 34px;
  line-height: 1.75;
  margin-left: -0.6em;
}
@media only screen and (max-width: 1200px) {
  .p-interview__headline {
    font-size: 22px;

  }
}
/* 20210323変更 */
@media only screen and (max-width: 640px) {
  .p-interview__headline {
    margin-top: 16px;
    font-size: 18px;
  }
}
/* 20210323変更 end */
.p-interview__headline span {
  padding: 0.6em;
  font-weight: bold;
}
.p-interview__headline span.spacing {
  padding: 0;
  letter-spacing: -0.7em;
}
.p-interview__headline.is-1 span {
  background: #36a8ce;
}
.p-interview__headline.is-2 span {
  background: #b9e2eb;
}
.p-interview__headline.is-3 span {
  background: #D2E583;
}
.p-interview__headline.is-4 span {
  background: #F7EC6F;
}
.p-interview__headline.is-5 span{
  background: #FFBF75;
}
.p-interview__headline.is-6 span{
  background: #C5A3D5;
}
.p-interview__name.is-3 span {
  background: #D2E583;
  padding: 0.6em;
  padding-left: 0;
  font-weight: bold;
}
.p-interview__name.is-4 span {
  background: #F7EC6F;
  padding: 0.6em;
  padding-left: 0;
  font-weight: bold;
}
.p-interview__name.is-5 span {
  background: #FFBF75;
  padding: 0.6em;
  padding-left: 0;
  font-weight: bold;
}
.p-interview__name.is-6 span {
  background: #C5A3D5;
  padding: 0.6em;
  padding-left: 0;
  font-weight: bold;
}
.p-interview__name.is-1 span{
  background: #36a8ce;
  padding: 0.6em;
  padding-left: 0;
  font-weight: bold;
}
.p-interview__name.is-2 span{
  background: #b9e2eb;
  padding: 0.6em;
  padding-left: 0;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .p-interview__name.is-3 span {
    padding-left: 0.8rem;
  }
  .p-interview__name.is-1 span {
    padding-left: 0.8rem;
    margin-left: -0.6rem;
  }
  .p-interview__name.is-2 span {
    padding-left: 0.8rem;
    margin-left: -0.6rem;
  }
  .p-interview__name.is-4 span {
    padding-left: 0.8rem;
　}
  .p-interview__name.row-2 span {
    padding-left: 0rem;
    margin-left: 0rem;
  }
}

.p-interview__name {
  margin-top: 23px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.64;
}
@media only screen and (max-width: 1200px) {
  .p-interview__name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__name{
    font-size: 14px;
    margin-left: -0.8em;
  }
  .p-interview__name.is-1-2{
    margin-left: 0;
  }
  .p-interview__name.is-1-2 .mgr{
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__name.is-3 br,
  .p-interview__name.is-1-2 br {
    display: none;
  }
  .p-interview__name.is-3 br.spBlock,
  .p-interview__name.is-1-2 br.spBlock {
    display: block;
  }
  .mgr{
    font-weight: bold;
  }

}
.mgr{
  font-weight: bold;
}


.p-interview__header-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 68.4%;
}
@media only screen and (max-width: 640px) {
  .p-interview__header-image{
    position: static;
  }

}



.p-interview__header-image img {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .p-interview__header-image {
    width: 100%;
  }
}

.p-interview__section {
  margin-top: 210px;
  margin-right: 160px;
}
/* 追加 */
.p-interview__section.is-4{
  margin-top: 210px;
  margin-left: 160px;
  margin-right: 0;
}



.p-interview__section.is-3{
  margin-top: 481px;
}
@media only screen and (max-width: 640px) {
  .p-interview__section.is-3{
    margin-top: 15px;
  }

}

@media only screen and (max-width: 1024px) {
  .p-interview__section {
    margin-top: 105px;
    margin-right: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__section {
    margin-top: 20px;
    margin-right: 0;
    margin-right: 15px;
    margin-left: 15px;
  }
  /* 追記 */
  .p-interview__section.is-4{
    margin-top: 20px;
    margin-right: 0;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 414px) {
  .p-interview__section {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.p-interview__section:first-of-type {
  margin-top: 100px;
}
@media only screen and (max-width: 640px) {
  .p-interview__section:first-of-type {
    margin-top: -200px;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__section:first-of-type {
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
  }
}




.p-interview__section:nth-of-type(even) {
  margin-right: 0;
  margin-left: 160px;
}
/* 追記 */
.p-interview__section.is-4:nth-of-type(even) {
  margin-right: 160px;
  margin-left: 0;
}



@media only screen and (max-width: 1024px) {
  .p-interview__section:nth-of-type(even) {
    margin-left: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__section:nth-of-type(even) {
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
  }
  /* 追記 */
  .p-interview__section.is-4:nth-of-type(even) {
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
  }
}
/* 追記3 */
.p-interview__section-text {
  padding: 94px 130px;
  background: #fff;
  /* padding-left: 160px; */

}
.is-1-2 .p-interview__section-text{
  padding: 94px 160px;
  position: relative;
}

/* 20210323変更 */
.p-interview__section.is-1-2 .p-interview__section-text.right{
  padding-right: 400px;
}
.p-interview__section.is-1-2 .p-interview__section-text.left{
  padding-left: 400px;
}
@media only screen and (max-width: 1024px) {
  .p-interview__section.is-1-2 .p-interview__section-text.right{
    padding-right: 80px;
  }
  .p-interview__section.is-1-2 .p-interview__section-text.left{
    padding-left: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__section.is-1-2 .p-interview__section-text.right{
    padding-right: 30px;
  }
  .p-interview__section.is-1-2 .p-interview__section-text.left{
    padding-left: 30px;
  }
}
/* 20210323変更 end */

@media only screen and (min-width: 1021px) {
  .p-interview__section-text.is-1-2{
    padding-right: 160px;
    }
}

.p-interview__section-text.is-3{
  position: relative;
}

@media only screen and (max-width: 1120px) {
  .p-interview__section .p-interview__section-text,
  .p-interview__section:nth-of-type(even) .p-interview__section-text {
    padding: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__section .p-interview__section-text,
  .p-interview__section:nth-of-type(even) .p-interview__section-text {
    padding: 30px;
  }
}


@media only screen and (min-width: 640px) {
  .p-interview .p-interview__section-headline:nth-child(1){
    margin-right: 80px;
  }
}

.p-interview__section-headline {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 48px;
  padding-bottom: 14px;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 640px) {
  .p-interview__section-headline {
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__section:nth-of-type(even) .p-interview__section-headline {
    margin-left: 0;
  }
}

.p-interview__section-text-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* .p-interview__section-text-column.is-1-2{
  position: relative;
} */
@media only screen and (max-width: 1120px) {
.p-interview__section-text-column.is-1-2{
  display: block;
      -ms-flex-pack:initial;

}
}


.p-interview__section-text-column.is-3{
  display: block;
}

/* 偶数 */
.p-interview__section:nth-of-type(even) .p-interview__section-text-column {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-interview__section:nth-of-type(even) .p-interview__section-paragraph.is-3,
.p-interview__section:nth-of-type(even) .p-interview__section-headline.is-3{
  /* margin-left: 142px; */
}

/* 追記3 */
@media only screen and (max-width: 1024px) {
  .p-interview__section:nth-of-type(even) .p-interview__section-headline.is-3,
  .p-interview__section:nth-of-type(even) .p-interview__section-paragraph.is-3{
    /* margin-left: 80px; */
  }
}
@media only screen and (max-width: 768px) {
  .p-interview__section:nth-of-type(even) .p-interview__section-headline.is-3,
  .p-interview__section:nth-of-type(even) .p-interview__section-paragraph.is-3{
    margin-left: 0;
  }
}

.p-interview__section-text-column .p-interview__section-paragraph {
  /* width: calc(100% - 406px + 10px); */
  /* width: ; */
  padding-right: 0;
}

/* 追記３ */
.p-interview__section-paragraph.is-3{
  /* width: calc(100% - 129px); */
  padding-left: 0;
  margin-bottom: 36px;
}

.p-interview__section-paragraph.is-3.space{
  margin-bottom: 72px;
}
.p-interview__section-paragraph.is-3 span{
  font-weight: bold;
}

@media only screen and (max-width:  768px) {
  .p-interview__section-text-column .p-interview__section-paragraph,
  .p-interview__section-paragraph.is-3{
    width: 100%;
  }
}

.p-interview__section-paragraph {
  font-size: 20px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .p-interview__section-paragraph {
    font-size: 15px;
  }
}

.p_interview__section-image {
  width: 406px;
  height: auto;
  position: relative;
}
@media only screen and (max-width: 1120px) {
  .p_interview__section-image {
    position: static;
    width: 40%;
    padding-right: 40px;
    padding-left: 40px;
  }
}


.p_interview__section-image.is-3{
  width: 675px;
  height: auto;
  position:static;
}

@media only screen and (max-width: 640px) {
  .p_interview__section-image {
    max-width: 100%;
  }
}
.p_interview__section-image img {
  position: absolute;
  right: -80px;
  bottom: -184px;
}
/* 追記 */
.p_interview__section-image.is-4 img {
  position: absolute;
  left: -80px;
}

@media only screen and (min-width: 1121px) {
  .sp__interview-image.is-1-2 {
    position: absolute;
    width: 400px;
    bottom: -20%;
    right: -5%;
  }
  .sp__interview-image.is-1-2.sec{
    left: -5%;
  }
}
@media only screen and (max-width: 1120px) {
  .sp__interview-image.is-1-2 {
    float: left;
    width: 200px;
    height: 260px;
    margin-right: 40px;
    margin-left: 40px;
    margin-bottom: 30px;
  }
  .sp__interview-image.is-1-2.fir{
    margin-right: 0;
  }
  .sp__interview-image.is-1-2.sec{
    margin-left: 0;
  }

}
@media only screen and (max-width: 414px) {
  .sp__interview-image.is-1-2 {
    float: left;
    width: 150px;
    height: 195px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
  }
}




.p_interview__section-image img{
  position: absolute;
  width: 675px;
  bottom: -332px;
}
@media screen and (max-width: 1024px) {
  .p_interview__section-image.is-3 img{
    max-width: 400px;
    bottom: -200px;
  }
}
@media screen and (max-width: 640px) {
  .p_interview__section-image.is-3 img{
    max-width: 100%;
    position: static;
    bottom: -200px;
  }
}

.p-interview__section:nth-of-type(even).p_interview__section-image.is-3 img{
  position: absolute;
  width: 675px;
  bottom: 0;

}
@media only screen and (max-width: 1024px) {
  .p_interview__section-image img {
    right: -40px;
    bottom: -80px;
  }
}
@media only screen and (max-width: 640px) {
  .p_interview__section-image img {
    right: 0;
    bottom: -250px;
  }
}
.p-interview__section:nth-of-type(even) .p_interview__section-image img {
  left: -80px;
}
/* 追記 */
.p-interview__section:nth-of-type(even) .p_interview__section-image.is-4 img {
  right: -80px;
}
@media only screen and (max-width: 1024px) {
  .p-interview__section:nth-of-type(even) .p_interview__section-image img {
    left: -40px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__section:nth-of-type(even) .p_interview__section-image img {
    left: 0;
  }
}
/* 追記２ */
.p_interview__image-4 img{
  position: absolute;
  width: 675px;
  right: -80px;
}
@media screen and (max-width: 1024px){
  .p_interview__image-4 img{
    position: absolute;
    max-width: 400px;
    right: -80px;
  }
}
@media screen and (max-width: 640px){
  .p_interview__image-4 img{
    position: static;
    max-width: 100%;
    right: -80px;
  }
}
/* 20210323変更 */

.p_interview__section-image.is-1-2{
  position: absolute;
  width: 400px;
  bottom: -20%;
}
.p_interview__section-image.is-1-2.right{
  right: -5%;
}
.p_interview__section-image.is-1-2.left{
  left: -5%;
}
@media screen and (max-width: 1120px){
  .p_interview__section-image.is-1-2{
    padding: 0px;
  }
}
@media screen and (max-width: 1024px){
  .p_interview__section-image.is-1-2{
    position: static;
    margin: 36px auto 0px;
  }
}
@media screen and (max-width: 640px){
  .p_interview__section-image.is-1-2{
    padding: 0px 40px;
  }
}
.p_interview__section-image.is-1-2 img{
  position: static;
  width: 100%;
}

/* 20210323変更 end*/

.p-interview__footer {
  margin-top: 240px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .p-interview__footer {
    margin-top: 160px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__footer {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 414px) {
  .p-interview__footer {
    margin-top: 50px;
  }
}

.p-interview__footer-headline {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.p-interview__footer-headline::before, .p-interview__footer-headline::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
  margin: 0 8px;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-interview__footer-headline::before {
  -webkit-transform: rotate(45deg) translateY(10px);
          transform: rotate(45deg) translateY(10px);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.p-interview__footer-headline::after {
  -webkit-transform: rotate(-45deg) translateY(10px);
          transform: rotate(-45deg) translateY(10px);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.p-interview__footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1152px;
  margin: 56px auto 0;
  padding: 0 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .p-interview__footer-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 32px;
  }
}
/* 20210324変更 */
.p-interview__footer-link {
  /* -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 16px);
          flex: 0 1 calc(50% - 16px); */
  width: calc(50% - 16px);
  display: block;
  color: #016A8E;
  font-size: 20px;
  font-weight: bold;
  padding: 18px;
  background: url(../img/ico_arrow.svg) no-repeat center right 22px #fff;
}
.p-interview__footer-link:hover {
  background: url(../img/ico_arrow_white.svg) no-repeat center right 22px #fff;
}
@media only screen and (max-width: 1024px) {
  .p-interview__footer-link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .p-interview__footer-link {
    /* -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; */
    width: 100%;
    font-size: 16px;
    margin-bottom: 16px;
  }
}
/* 20210324変更 end */
.p-job {
  padding: 128px 0 100px;
}
@media only screen and (max-width: 640px) {
  .p-job {
    padding-top: 100px;
  }
}

/* 202103325変更 */
.p-job__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1472px;
  /* max-width: calc(1440px + 32px); */
  margin: 0 auto 48px;
  padding: 0 16px;
}
@media only screen and (max-width: 640px) {
  .p-job__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-job__header-back {
  position: absolute;
  left: 18px;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
}
@media only screen and (max-width: 640px) {
  .p-job__header-back {
    position: static;
  }
}

@media only screen and (max-width: 640px) {
  .p-job__header-back img {
    width: auto;
  }
}

.p-job__header-headline {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  /* -webkit-box-flex: 0;
      -ms-flex: 0 1 942px;
          flex: 0 1 942px; */
  width: 100%;
  max-width: 942px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin: 0 180px;
  /* margin: 0 194px 0 146px; */
  padding: 20px;
  border-radius: 36px;
}
@media only screen and (max-width: 1024px) {
  .p-job__header-headline {
    font-size: 24px;
    /* margin: 0 96px 0 48px; */
    padding: 16px;
    border-radius: 28px;
  }
}
@media only screen and (max-width: 640px) {
  .p-job__header-headline {
    margin: 8px 0 0;
    width: 100%;
  }
}
/* 20210325変更 end */

.p-job__header-headline.is-blue {
  background: -webkit-gradient(linear, left top, right top, from(#5680D1), to(#A1B9E5));
  background: linear-gradient(to right, #5680D1, #A1B9E5);
}
.p-job__header-headline.is-green {
  background: -webkit-gradient(linear, left top, right top, from(#60C4B5), to(#99EADE));
  background: linear-gradient(to right, #60C4B5, #99EADE);
}
.p-job__header-headline.is-lightblue {
  background: -webkit-gradient(linear, left top, right top, from(#47BCF0), to(#ABE3FC));
  background: linear-gradient(to right, #47BCF0, #ABE3FC);
}
.p-job__header-headline.is-purple {
  background: -webkit-gradient(linear, left top, right top, from(#7E79BF), to(#B7B4EA));
  background: linear-gradient(to right, #7E79BF, #B7B4EA);
}

.p-job__content {
  max-width: calc(942px + 32px);
  margin: 0 auto;
  padding: 0 16px;
}
.p-job__content p {
  margin-top: 2em;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  .p-job__content p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .p-job__content p {
    font-size: 14px;
  }
}

.p-job__content-image {
  width: auto;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .p-job__content-image {
    max-width: 100%;
  }
}

.p-job__scroll {
  width: 244px;
  display: block;
  margin: 60px auto 80px;
}
@media only screen and (max-width: 640px) {
  .p-job__scroll {
    width: 160px;
    margin: 40px auto 56px;
  }
}

.p-job__content-headline {
  margin: 40px 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .p-job__content-headline {
    margin: 32px 0 24px;
    font-size: 24px;
  }
}

.p-job__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: calc(942px + 32px);
  margin: 130px auto 0;
  padding: 0 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .p-job__footer {
    margin: 80px auto 0;
  }
}
/* 20210324変更 */
.p-job__footer-link {
  /* -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 10px);
          flex: 0 1 calc(50% - 10px); */
  width: calc(50% - 10px);
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 18px;
  background: url(../img/ico_arrow_white.svg) no-repeat center right 16px #272727;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.p-job__footer-link.is-large {
  margin-top: 32px;
  /* -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%; */
  width: 100%;
}
/* 20210324変更 end */
@media only screen and (max-width: 640px) {
  .p-job__footer-link {
    /* -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; */
    width: 100%;
    font-size: 15px;
    padding: 14px 20px;
    margin-bottom: 16px;
  }
  .p-job__footer-link.is-large {
    margin-top: 0;
  }
}
.p-job__footer-link.is-blue {
  background-color: #5680D1;
}
.p-job__footer-link.is-green {
  background-color: #60C4B5;
}
.p-job__footer-link.is-lightblue {
  background-color: #47BCF0;
}
.p-job__footer-link.is-purple {
  background-color: #7E79BF;
}

.text__center {
  text-align: center;
}

.text__left {
  text-align: left;
}

.text__right {
  text-align: right;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.nav-history__list {
  background-color: #fff;
}

.nav-history__item:not(:first-child) {
  border-top: 1px solid #CBC5C5;
}
.nav-history__item a {
  display: block;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 44px;
  color: #505050;
}

.slick {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px;
}

.slick-slide {
  text-align: center;
  padding: 10px;
}

.slick img {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}
@media only screen and (max-width: 1170px) {
  .slick img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
/* 20210323追加 */
@media only screen and (max-width: 768px) {
  .slick img{
    -webkit-transform:none;
            transform:none;
  }
}
/* 20210323追加 end*/

.slick .slick-current img ,
.slick .is-active-next img{
  -webkit-transform: scale(1);
          transform: scale(1);
}
/* 20210323追加 */
@media only screen and (max-width: 768px) {
  .slick .slick-current img ,
  .slick .is-active-next img{
    -webkit-transform:none;
            transform:none;
  }
}
/* 20210323追加 end*/

.slick-arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
  color: transparent;
  font-size: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
  width: 22px;
  height: 39px;
}
/* 20210323変更 */
@media only screen and (max-width: 640px) {
.slick-arrow {
  top: 50%;
}
}
/* 20210323変更 end*/

.slick-arrow.slick-prev {
  left: -50px;
  background: url(../img/main/top/ico-slick-left.svg) no-repeat;
}
@media only screen and (max-width: 1170px) {
  .slick-arrow.slick-prev {
    left: 10px;
  }
}
.slick-arrow.slick-next {
  right: -50px;
  background: url(../img/main/top/ico-slick-right.svg) no-repeat;
}
@media only screen and (max-width: 1170px) {
  .slick-arrow.slick-next {
    right: 10px;
  }
}

.slick-item{
  position: relative;
}
/* 20210323追加 */
@media only screen and (max-width: 768px) {
  .slick-item{
    margin: 0px 40px;
  }
}
/* 20210323追加 end */

.slick-slide{
  padding: 0;
}
.slick-item .active{
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.slick-item:hover .active{
  opacity: 1;
}
.slick-track{
  padding-bottom: 20px;
}
.slick-item:hover img:not(.active){
  opacity: 0;
}
/* 20210323変更 */
/* @media only screen and (max-width: 768px){
  .slick-item .active{
  position: absolute;
  left: 10%;
  top: 0;
  opacity: 0;
}
} */

/*@media only screen and (max-width: 768px) {
  .slick .slick-current img,
  .slick .is-active-next img {
     width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  /* .slick__visual-buttons{
    margin-top: 0;
  }
}
*/
/* 20210323変更 end*/

/* 20210319変更 */
.main-visual {
  background-image: url(../img/dictionary/bg-dictionary.png);
  background-repeat: repeat-x;
  background-size: cover;
  background-position: top 87px center;
}
/* 20210319変更ここまで */

.main-visual h2 {
  padding-top: 149px;
  font-size: 55px;
  line-height: 94px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-visual h2 {
    padding-top: 90px;
  }

}


@media screen and (max-width: 768px) {
  .main-visual h2 {
    font-size: 25px;
  }
}

.main-visual .top-text {
  font-size: 20px;
  text-align: center;
  line-height: 32px;
  margin-top: 114px;
  padding-bottom: 38px;
}

@media screen and (max-width: 1120px) {
  .main-visual .top-text {
    font-size: 18px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .main-visual .top-text {
    margin-top: 30px;
    font-size: 14px;
    margin-right: 30px;
    margin-left: 30px;
    line-height: 1.7;
    padding-bottom: 26px;
  }
}

/* 20210319変更 */
.main-visual .top-dictionary-img {
  max-width: 854px;
  /* position: relative; */
  margin-right: auto;
  margin-left: auto;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  .main-visual .top-dictionary-img {
    max-width: 380px;
  }
}

.main-visual .top-dictionary-img img {
  /* position: absolute;
  top: -90px;
  left: 0; */
  margin-top: -90px;
}
@media screen and (max-width: 768px) {
  .main-visual .top-dictionary-img img {
    margin-top: -50px;
  }
}

.top-text.top-dictionary-text{
  margin-top: 20px;
}

.main-visual .top-dictionary-title{
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .main-visual .top-dictionary-title{
    padding-top: 90px;
  }
}
/* 20210319変更ここまで */

/* 20210324変更 */
.work-dictionary {
  max-width: 1140px;
  padding-top: 60px;
  padding-bottom: 91px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .work-dictionary {
    padding-top: 30px;
    padding-bottom: 30px;
  }

}

.work-dictionary .inner {
  width: 100%;
  padding-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* 20210324変更 */
.work-dictionary .inner .work-card {
  /* width: calc((100% - 16px*5)/6); */
  width: calc((100% / 6) - 16px);
  margin-right: 16px;
  margin-bottom: 30px;
  position: relative;
}
.work-dictionary .inner .work-card img{
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0,0.16));
}


/* .work-dictionary .inner .work-card:nth-of-type(6n){
  margin-right: 0;
} */

@media screen and (max-width: 1120px) {
  .work-dictionary {
    padding-right: 0;
    padding-left: 0;

  }
  .work-dictionary .inner .work-card {
    /* width: calc((100% - 40px)/3); */
    width: calc((100% / 3) - 40px);
    margin-bottom: 0;
    margin-right: 0;
  }
	.work-dictionary .inner {
	  padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
  .work-dictionary .inner .work-card {
    /* width: calc((100% - 40px)/2); */
    width: calc((100% / 2) - 40px);
  }
}
/* 20210324変更 end */

.work-dictionary .inner .work-card .active {
  position: absolute;
  left: 0;
  opacity: 0;
}

.work-dictionary .inner .work-card:hover .active {
  opacity: 1;
}

.work-dictionary .inner .work-card:hover .current-job {
  opacity: 0;
}

.page__buttons .p-job__btn:hover {
  background-color: #00698E;
}

.page__buttons .p-job__btn {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 75px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.page__buttons .p-job__btn::before {
  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.4)), to(transparent));
  background-image: linear-gradient(to right, transparent, rgba(250, 250, 250, 0.4), transparent);
  height: 100%;
}

.page__buttons .p-job__btn:hover::before {
  -webkit-animation: shine 0.8s ease 0.2s;
  animation: shine 0.8s ease 0.2s;
}

.page__buttons .p-job__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  z-index: 1;
}

.page__buttons .p-interview__btn:hover {
  background-color: #00698E;
  color: #fff;
}

.page__buttons .p-interview__btn {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 75px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.page__buttons .p-interview__btn::before {
  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.4)), to(transparent));
  background-image: linear-gradient(to right, transparent, rgba(250, 250, 250, 0.4), transparent);
  height: 100%;
}

.page__buttons .p-interview__btn:hover::before {
  -webkit-animation: shine 0.8s ease 0.2s;
  animation: shine 0.8s ease 0.2s;
}

.page__buttons .p-interview__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  z-index: 1;
}

.p-interview__text.is-3 {
  padding-left: 160px;
  padding-right: 160px;
  margin-top: 100px;
}
@media screen and (max-width: 1120px) {
  .p-interview__text.is-3 {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.p-interview__text.is-3 p{
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .p-interview__text.is-3 p {
      font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .p-interview__text.is-3 {
    padding: 30px 45px;
    margin-top: 0;
  }
  .p-interview__text.is-3 p{
    font-size: 14px;
  }
}

.about-person__section{
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 193px;
}

/* 202111追加 */
.about-person__section.top-space{
  margin-top: 500px;
}
@media screen and (max-width: 768px) {
  .about-person__section.top-space{
    margin-top: 100px;
  }

}
.about-person__section-desc{
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 23px;
}

@media screen and (max-width: 768px) {
  .about-person__section{
    margin-top: 100px;
  }

}

.about-person__section-box{
  background-color: rgba(255, 255, 255, 0.64);
  margin-left: 20px;
  margin-right: 20px;
}
.about-person__section-inner{
  display: flex;
  padding: 48px 80px 67px 80px;
}

.about-person__section-image{
  max-width: 266px;
}

.about-person__section-text{
  margin-left: 54px;
  width: 100%;
}
@media screen and (max-width: 1120px) {
  .about-person__section-inner{
    display: block;
    text-align: center;
  }
  .about-person__section-text{
    margin-left: 0;
  }
  .about-person__section-desc{
    text-align: left;
  }
  .about-person__section-image {
    max-width: 266px;
    margin: 0 auto;
}
}
@media screen and (max-width: 640px) {
  .about-person__section-inner{
    padding: 30px;
  }
  .about-person__section-desc{
    font-size: 15px;
  }
}

.about-person__section-name{
  font-weight: bold;
  font-size: 22px;
  line-height: 1.8;
}
@media screen and (max-width: 1120px) {
  .about-person__section-name{
    padding-top: 20px;
  }

}

.about-person__section-box:first-child{
  margin-bottom: 46px;
}


/* article */
.other-article__section{
  margin-top: 131px;
  text-align: center;
}

@media screen and (max-width: 414px) {
  .other-article__section{
    margin-top: 50px;
  }
}
@media screen and (max-width: 1160px) {
  .other-article__section{
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 414px) {
  .other-article__section{
    padding-right: 15px;
    padding-left: 15px;
  }
}

.other-article__section-box{
  max-width: 1120px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  display: flex;
  text-align: left;
  position: relative;
}

@media screen and (max-width: 640px) {
  .other-article__section-box{
    display: block;
  }
}
.other-article__section-image{
  width: 35%;
  max-width: 100%;
}
@media screen and (max-width: 640px) {
  .other-article__section-image{
    width: 100%;
    max-width: 100%;
  }

}



.other-article__section-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.other-article__section-category{
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  width: 175px;
  padding-top: 7px;
  height: 31px;
  color: #fff;
  background-color: #00698E;
  /* margin-top: 34px; */
}
@media screen and (max-width: 768px) {
  .other-article__section-category{
    font-size: 12px;
    width: 120px;
  }

}


.other-article__section-category.color{
  background-color: #B6D557;
}
.about-person__section.other-article__section-category:nth-child(3){
  background-color: #B6D557;
}
.other-article__section-text{
  width: 60%;
  /* padding: 24px 26px; */
  padding: 2vw;
}
@media screen and (max-width: 640px) {
  .other-article__section-text{
    width: 100%;
  }

}
/* 202111追加 */
.other-article__section-profile{
  font-size: 18px;
  font-weight: bold;
  color: #016A8E;
  margin-top: 10px;
}
@media screen and (min-width: 1120px) {
  .other-article__section-profile{
    font-size: 1.53vw;
  }
}
@media screen and (max-width: 768px) {
  .other-article__section-profile{
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .other-article__section-title + .other-article__section-profile{
    margin-top: -10px;
  }
}
.other-article__section-profile + .other-article__section-desc{
  margin-top: 10px;
}

.other-article__section-title{
  font-size: 2vw;
  font-weight: bold;
  margin-top: 15px;
  line-height: 1.6;
  padding-right: 10px;
}

@media screen and (min-width: 1121px) {
  .other-article__section-title{
    font-size: 30px;
    font-weight: bold;
    margin-top: 2px;/* 202111修正 */
  }
  .other-article__section-desc{
    font-size: 20px;
    line-height: 1.8;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1120px) {
  .other-article__section-title{
    font-size: 2vw;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .other-article__section-desc{
    font-size: 1.5vw;
    line-height: 1.8;
    padding-bottom: 15px;

  }
}
@media screen and (max-width: 640px) {
  .other-article__section-title{
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    line-height: 1.8;
  }
  .other-article__section-desc{
    font-size: 14px;
    line-height: 1.8;
    margin-top: 5px;
  }
}


.other-article__section-box:first-child{
  margin-bottom: 46px;
}
@media screen and (max-width: 1120px) {
  .other-article__section-box:first-child{
    margin-bottom: 20px;
  }


}


.interview__index-main-visual {
  background: linear-gradient(to right,#3795B4,#3B7F98);
  text-align: center;
  /* position: relative; */
}
.interview__index-main-visual-inner{
  background-image: url(../img/interview/bg_interview_index-1.png);
}
.interview__index-img {
  max-width: 485px;
  padding-top: 180px;
  padding-bottom: 33px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .interview__index-img {
    max-width: 200px;
    padding-top: 140px;
    padding-bottom: 33px;
    margin-left: auto;
    margin-right: auto;
  }

}
.interview__index-text{
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.8;
  padding-bottom: 95px;
  margin: 0 120px;
}
@media screen and (max-width: 768px) {
  .interview__index-text{
    font-size: 15px;
    margin: 0 40px;
    padding-bottom: 40px;
  }
}
.other-article__wrapper{
  margin-top: 56px;
}
@media screen and (max-width: 640px) {
  .other-article__wrapper{
    margin-top: 32px;
  }
}



.other-article__section.interview__index__section{
  background-color: #EDEDED;
  margin-top: 0;
  padding-top: 70px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .other-article__section.interview__index__section{
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 414px) {
  .other-article__section.interview__index__section{
    padding-bottom: 20px;
  }
}
.other-article__section-box:hover .other-article__section-image img{
  transform: scale(1.1,1.1);
}
.other-article__section-box:hover .other-article__section-title span{
  border-bottom: 2px solid #000;

}
.other-article__section-title span{
display: inline;
font-weight: bold;
padding-bottom: 5px;
}

.other-article__section-image{
  overflow: hidden;
}
.other-article__section-image img{
  overflow: hidden;
  transition:.5s all;
}

/*-----20210311変更-----*/
.section__body-intervew-image{
  max-width: 1440px;
  margin: 0px auto;
  background-color: rgba(6, 93, 124, .78);
  background: url(../img/main/bg_interview_index-1.png), -moz-linear-gradient(bottom left, rgba(0, 120, 160, .78) 0%, rgba(6, 93, 124, .78) 100%);
  background: url(../img/main/bg_interview_index-1.png), -webkit-linear-gradient(bottom left, rgba(0, 120, 160, .78) 0%, rgba(6, 93, 124, .78) 100%);
  background: url(../img/main/bg_interview_index-1.png), linear-gradient(to top right, rgba(0, 120, 160, .78) 0%, rgba(6, 93, 124, .78) 100%);
  background-size: 1680px;
  background-position: center top 38%;
  background-repeat: no-repeat;
}
/*-----20210311変更ここまで-----*/

.section__body-intervew-image .logo-img{
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  /* padding-top: 30px; */
}
.section__body-intervew-image-inner{
  padding-top: 90px;
  padding-bottom: 70px;
}
.section__body-intervew-image-inner .slick__visual-buttons{
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .section__body-intervew-image-inner{
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .section__body-intervew-image .logo-img {
    width: 70%;
  }
}

.section__body-intervew-list{
  display: flex;
  flex-wrap: wrap;
  margin: 0px auto;
  max-width: 1440px;
}
@media screen and (max-width: 1024px) {
  .section__body-intervew-list{
    margin-top: -60px;
  }
}
@media screen and (max-width: 768px) {
  .section__body-intervew-list{
    margin-top: -40px;
  }
}
.section__body-intervew-listItem{
  position: relative;
  width: calc(100% / 3);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section__body-intervew-listItem{
    width: calc(100% / 2);
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .section__body-intervew-listItem{
    margin-top: 40px;
  }
}

.section__body-intervew-listItem a{
  position: relative;
  display: block;
}
.section__body-intervew-listItem a:hover img{
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .section__body-intervew-listThumb .thumb-pc{
    display: none;
  }
}
.section__body-intervew-listThumb .thumb-sp{
  display: none;
}
@media screen and (max-width: 1024px) {
  .section__body-intervew-listThumb .thumb-sp{
    display: inline;
  }
}
.section__body-intervew-listThumb{
  overflow: hidden;
}
.section__body-intervew-listThumb::after{
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .37;
}
.section__body-intervew-listItem figure img{
  vertical-align: middle;
  transition: transform ease .5s;
}
.section__body-intervew-listTitle{
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  padding: 0px 20px;
  font-size: 2.14vw;
  font-weight: bold;
  color:#ffffff;
  line-height: 1.5;
  pointer-events: none;
}
@media screen and (min-width: 1400px) {
  .section__body-intervew-listTitle{
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .section__body-intervew-listTitle{
    font-size: 40px;
    line-height: 1.4;
    left: 50%;
    top: auto;
    bottom: 30px;
    transform: translate(-50%,0);
  }
}
@media screen and (max-width: 768px) {
  .section__body-intervew-listTitle{
    font-size: 20px;
    padding: 0px 10px;
  }
}
.section__body-intervew-listCaption{
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 100%;
  padding: 0px 20px;
  font-size: 1.14vw;
  color:#ffffff;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  pointer-events: none;
}
@media screen and (min-width: 1400px) {
  .section__body-intervew-listCaption{
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .section__body-intervew-listCaption{
    position: static;
    transform: none;
    color:#000000;
    text-align: left;
    font-size: 30px;
    line-height: 1.5;
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .section__body-intervew-listCaption{
    font-size: 14px;
    margin-top: 16px;
    padding: 0px 10px;
  }
}
@media screen and (max-width: 1024px) {
  br.sp-none{
    display: none;
  }
}
br.pc-none{
  display: none;
}
@media screen and (max-width: 1024px) {
  br.pc-none{
    display: block;
  }
}

/*-----202110-----*/

.about__title {
  font-size: 28px;
  line-height: 1.9;
  text-align: center;
  font-weight: bold;
  color: #00698E;
}

@media only screen and (max-width: 768px){
.about__title {
    font-size: 24px;
}
.about__title br {
    display: none;
}
}

.p-job__header-headline.is-darkblue {
  background: -webkit-gradient(linear, left top, right top, from(#239FCB), to(#54BCE1));
  background: linear-gradient(to right, #239FCB, #54BCE1);
}

.p-job__footer-link.is-darkblue {
  background-color: #5680D1;
}

.backtop__button {
	margin: 0 5% 30px;
}

.backtop__button img {
	width: 161px;
}
@media only screen and (max-width: 768px){
.backtop__button {
	margin: 0 20px 10px;
}
.backtop__button img {
	width: 140px;
}
}

.strengths__container {display: flex; justify-content: space-between; margin: 40px 0;}
.strengths__image {width: 520px; height: 470px;}

.strengths__txt {width: 392px;}

.strengths__sub__title {
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
  color: #00698E;
}

p.strengths__style {
	margin-top: 0.2em;
}

p.strengths__sub__txt {
  font-size: 14px;
  line-height: 1.8;
  font-weight: bold;
  color: #747474;
  text-align: right;
}

@media only screen and (max-width: 1034px) {
	.strengths__container {flex-flow: column;}
	.strengths__txt {width: 100%;}
	.strengths__image {margin: 30px auto;}

	.strengths__sub__title {
	  font-size: 16px;
	}
}


@media only screen and (max-width: 520px) {
      .strengths__image{
	      height: auto;
      }
}
