@charset "UTF-8";
/* ===================================================================
CSS information

file name  : homepage.css
author     : Abilive
style info : トップページ
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
/* 冪乗計算(乗数は整数のみ)
 *
 * $base: 冪乗される数
 * $exp : 冪乗する回数
 *
 * @return: $baseの$exp乗
 *
 * 例: $base=2, $exp=3 => @return=8
 */
/* 階乗計算
 *
 * $val: 階数
 *
 * @return: $valの階乗
 *
 * 例: $val=5 => @return=120
 */
/* 正弦(sin)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: sin($angle)
 *
 * 例: $angle=30, $degrees=true => @return=0.5
 */
/* 余弦(cos)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: cos($angle)
 *
 * 例: $angle=60, $degrees=true => @return=0.5
 */
/* 正接(tan)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: tan($angle)
 *
 * 例: $angle=45, $degrees=true => @return=1
 */
.con_top_lnk, .wrp_top_busi .con_busi, .wrp_top_busi .con_busi_int, .wrp_top_fv .con_top_int {
  margin-inline: auto;
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk, .wrp_top_busi .con_busi, .wrp_top_busi .con_busi_int, .wrp_top_fv .con_top_int {
    max-width: calc(1280 / 18 * 1em);
    width: 90%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk, .wrp_top_busi .con_busi, .wrp_top_busi .con_busi_int, .wrp_top_fv .con_top_int {
    width: 90%;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk, .wrp_top_busi .con_busi, .wrp_top_busi .con_busi_int, .wrp_top_fv .con_top_int {
    width: 90%;
  }
}

.header {
  position: fixed;
}
.header .header_inner .header_inner_left .logo img {
  -webkit-transition: height 0.3s ease, -webkit-transform 0.3s ease;
  transition: height 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, height 0.3s ease;
  transition: transform 0.3s ease, height 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 64.0625em) {
  .header .header_inner .header_inner_left .logo.shrink img {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .header .header_inner .header_inner_left .logo.shrink img {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
  }
}
@media screen and (max-width: 47.9375em) {
  .header .header_inner .header_inner_left .logo.shrink img {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}

.wrp_top_fv {
  position: relative;
}
.wrp_top_fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #292e49;
  z-index: -2;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv::after {
    height: 30.1vw;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv::after {
    height: 30vw;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv::after {
    height: 6em;
  }
}
.wrp_top_fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../images/home/bg_circle.png) no-repeat;
  z-index: -2;
  background-size: contain;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide {
    padding-top: 170px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide {
    padding-top: 140px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide {
    padding-top: 5em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide {
    padding-bottom: 300px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide {
    padding-bottom: 220px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide {
    padding-bottom: 10em;
  }
}
.wrp_top_fv .con_top_fv_slide {
  overflow: hidden;
  position: relative;
}
.wrp_top_fv .con_top_fv_slide .box_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-animation: infinite-scroll 30s linear infinite;
          animation: infinite-scroll 30s linear infinite;
}
@-webkit-keyframes infinite-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* 1セット分の幅を左へスライド */
  }
}
@keyframes infinite-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* 1セット分の幅を左へスライド */
  }
}
.wrp_top_fv .con_top_fv_slide .box_slide .img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20%;
}
.wrp_top_fv .con_top_fv_slide .box_slide .img img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(1), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(6) {
    width: 13.4375%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(1), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(6) {
    width: 20%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(1), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(6) {
    width: 40%;
  }
}
.wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(1), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(6) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(1), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(6) {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(1), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(6) {
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(1), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(6) {
    padding-bottom: 1em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(2), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(7) {
    width: 26.6666666667%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(2), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(7) {
    width: 40%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(2), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(7) {
    width: 80%;
  }
}
.wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(2), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(7) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(3), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(8) {
    width: 20%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(3), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(8) {
    width: 28%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(3), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(8) {
    width: 45%;
  }
}
.wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(3), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(8) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(4), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(9) {
    width: 13.4375%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(4), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(9) {
    width: 20%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(4), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(9) {
    width: 40%;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(5), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(10) {
    width: 20%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(5), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(10) {
    width: 28%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(5), .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(10) {
    width: 45%;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(n+2) {
    margin-left: 55px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(n+2) {
    margin-left: 35px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_slide .img:nth-of-type(n+2) {
    margin-left: 2em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt {
    bottom: 50px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt {
    bottom: 40px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt {
    bottom: 2em;
  }
}
.wrp_top_fv .con_top_fv_slide .box_fv_txt {
  -webkit-transform: translate(-50%, 0) translateX(55%);
          transform: translate(-50%, 0) translateX(55%);
  position: absolute;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.wrp_top_fv .con_top_fv_slide .box_fv_txt .move_txt {
  font-family: "sofia-pro", sans-serif;
}
@media screen and (min-width: 120.0625em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt .move_txt {
    font-size: 7.5rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt .move_txt {
    font-size: calc(6.25rem + (1vw - 0.900625rem) * (4.1753653445));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt .move_txt {
    font-size: calc(5rem + (1vw - 0.640625rem) * (4.8192771084));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt .move_txt {
    font-size: calc(3.75rem + (1vw - 0.48rem) * (7.8125));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt .move_txt {
    font-size: calc(3.75rem + (1vw - 0.234375rem) * (0));
  }
}
@media screen and (max-width: 23.375em) {
  .wrp_top_fv .con_top_fv_slide .box_fv_txt .move_txt {
    font-size: calc(3.2rem + (1vw - 0.2rem) * (16.2962962963));
  }
}
.wrp_top_fv .con_top_fv_slide .box_fv_txt .move_txt {
  color: #fff;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_int {
    margin-top: 120px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int {
    margin-top: 80px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int {
    margin-top: 3em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_int {
    max-width: 1440px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int {
    max-width: 90%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int {
    max-width: 90%;
  }
}
.wrp_top_fv .con_top_int {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int {
    display: block;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_int .box_tit {
    width: 43.0555555556%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int .box_tit {
    width: 50%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int .box_tit {
    width: 100%;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_int .box_tit .title_large .jp {
    margin-top: 40px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int .box_tit .title_large .jp {
    margin-top: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int .box_tit .title_large .jp {
    margin-top: 1em;
  }
}
.wrp_top_fv .con_top_int .box_tit .title_large .jp {
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_int .box_txt {
    width: 47.2222222222%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int .box_txt {
    width: 45%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int .box_txt {
    width: 100%;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_int .box_txt {
    margin-left: 4.8611111111%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int .box_txt {
    margin-left: 5%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int .box_txt {
    margin-left: 0;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_int .box_txt {
    margin-top: 5vw;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int .box_txt {
    margin-top: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int .box_txt {
    margin-top: 1.5em;
  }
}
@media screen and (min-width: 120.0625em) {
  .wrp_top_fv .con_top_int .box_txt .txt {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .wrp_top_fv .con_top_int .box_txt .txt {
    font-size: calc(1.25rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .wrp_top_fv .con_top_int .box_txt .txt {
    font-size: calc(1rem + (1vw - 0.640625rem) * (0.9638554217));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int .box_txt .txt {
    font-size: calc(1rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int .box_txt .txt {
    font-size: calc(0.875rem + (1vw - 0.234375rem) * (0.5102040816));
  }
}
@media screen and (max-width: 23.375em) {
  .wrp_top_fv .con_top_int .box_txt .txt {
    font-size: calc(0.7466666667rem + (1vw - 0.2rem) * (3.8024691358));
  }
}
.wrp_top_fv .con_top_int .box_txt .txt {
  color: #fff;
  letter-spacing: 0;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_int .box_txt .btn {
    margin-top: 60px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_int .box_txt .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int .box_txt .btn {
    margin-top: 2em;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_int .box_txt .btn {
    display: inline-block;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_slide {
    padding-top: 120px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_slide {
    padding-top: 90px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_slide {
    padding-top: 4em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_slide {
    height: 39.8em;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_slide {
    height: 26.5em;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_slide {
    height: 11.5em;
  }
}
.wrp_top_fv .con_top_slide {
  position: relative;
  overflow: hidden;
}
@-webkit-keyframes infinite-scroll2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%); /* 1セット分の幅を左へスライド */
  }
}
@keyframes infinite-scroll2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%); /* 1セット分の幅を左へスライド */
  }
}
.wrp_top_fv .con_top_slide .box_move_img {
  -webkit-animation: infinite-scroll2 90s linear infinite;
          animation: infinite-scroll2 90s linear infinite;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_slide .box_move_img {
    top: 120px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_slide .box_move_img {
    top: 90px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_slide .box_move_img {
    top: 4em;
  }
}
.wrp_top_fv .con_top_slide .box_move_img {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_fv .con_top_slide .box_move_img .img {
    width: 772px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_fv .con_top_slide .box_move_img .img {
    width: 500px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_fv .con_top_slide .box_move_img .img {
    width: 180px;
  }
}

@media screen and (min-width: 64.0625em) {
  .wrp_top_busi {
    padding-top: 150px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi {
    padding-top: 120px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi {
    padding-top: 4em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi {
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi {
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi {
    padding-bottom: 4.5em;
  }
}
.wrp_top_busi {
  position: relative;
}
.wrp_top_busi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #292e49;
  z-index: -2;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi_int {
    max-width: 1440px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi_int {
    max-width: 90%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi_int {
    max-width: 90%;
  }
}
.wrp_top_busi .con_busi_int {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi_int {
    display: block;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi_int .title_large {
    width: 20.8333333333%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi_int .title_large {
    width: 25%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi_int .title_large {
    width: 100%;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi_int .title_large .jp {
    margin-top: 40px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi_int .title_large .jp {
    margin-top: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi_int .title_large .jp {
    margin-top: 0.3em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi_int .txt {
    width: 47.2222222222%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi_int .txt {
    width: 70%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi_int .txt {
    width: 100%;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi_int .txt {
    margin-left: 25.6944444444%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi_int .txt {
    margin-left: 5%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi_int .txt {
    margin-left: 0;
  }
}
@media screen and (min-width: 48em) {
  .wrp_top_busi .con_busi_int .txt {
    margin-top: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi_int .txt {
    margin-top: 1em;
  }
}
.wrp_top_busi .con_busi_int .txt {
  color: #fff;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi {
    margin-top: 115px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi {
    margin-top: 85px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi {
    margin-top: 3em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi {
    max-width: 1440px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi {
    max-width: 90%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi {
    max-width: 90%;
  }
}
.wrp_top_busi .con_busi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_img {
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_img {
    width: 40%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_img {
    width: 100%;
  }
}
.wrp_top_busi .con_busi .inner_img {
  position: relative;
}
.wrp_top_busi .con_busi .inner_img .box_img {
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_img .box_img {
    top: 10em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img {
    width: 102.8333333333%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img {
    width: 100%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img {
    width: 100%;
  }
}
.wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img2, .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img3 {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}
@media screen and (min-width: 48em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img2 {
    width: 121.5%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img2 {
    width: 100%;
  }
}
@media screen and (min-width: 48em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img2 {
    height: 109.0058479532%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img2 {
    height: 100%;
  }
}
.wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img2 {
  z-index: -1;
}
@media screen and (min-width: 48em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img3 {
    width: 117%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img3 {
    width: 100%;
  }
}
@media screen and (min-width: 48em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img3 {
    height: 106.9005847953%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img3 {
    height: 100%;
  }
}
.wrp_top_busi .con_busi .inner_img .box_img .inn_st_img .img3 {
  z-index: -2;
}
@media screen and (min-width: 48em) {
  .wrp_top_busi .con_busi .inner_img .box_img img {
    width: 102.8333333333%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_img .box_img img {
    width: 100%;
  }
}
.wrp_top_busi .con_busi .inner_img .box_img img {
  -webkit-transition: ease 0.3s opacity;
  transition: ease 0.3s opacity;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_txt {
    width: 48.6111111111%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_txt {
    width: 53%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt {
    width: 100%;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_txt {
    margin-left: 9.0277777778%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_txt {
    margin-left: 7%;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt {
    margin-left: 0;
  }
}
.wrp_top_busi .con_busi .inner_txt {
  position: relative;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt {
    padding-top: 8vw;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt {
    padding-top: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt {
    padding-top: 0;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt:nth-of-type(n+2) {
    margin-top: 200px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt:nth-of-type(n+2) {
    margin-top: 160px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt:nth-of-type(n+2) {
    margin-top: 2em;
  }
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt:last-of-type {
    padding-bottom: 13vw;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt:last-of-type {
    padding-bottom: 12vw;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt:last-of-type {
    padding-bottom: 11vw;
  }
}
.wrp_top_busi .con_busi .inner_txt .box_st_txt .title_large .en {
  padding-left: 0;
}
.wrp_top_busi .con_busi .inner_txt .box_st_txt .title_large .en::before {
  content: none !important;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .txt_large {
    margin-top: 30px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .txt_large {
    margin-top: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .txt_large {
    margin-top: 1.2em;
  }
}
.wrp_top_busi .con_busi .inner_txt .box_st_txt .txt_large {
  color: #fff;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 48em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .img {
    margin-top: 1.5em;
  }
}
.wrp_top_busi .con_busi .inner_txt .box_st_txt .img img {
  border-radius: 5px;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .txt_basic {
    margin-top: 25px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .txt_basic {
    margin-top: 15px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .txt_basic {
    margin-top: 1em;
  }
}
.wrp_top_busi .con_busi .inner_txt .box_st_txt .txt_basic {
  color: #fff;
}
@media screen and (min-width: 64.0625em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .btn {
    margin-top: 40px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .btn {
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 47.9375em) {
  .wrp_top_busi .con_busi .inner_txt .box_st_txt .btn {
    display: inline-block;
  }
}
.wrp_top_busi .con_busi.active-2 .inner_img .box_img .inn_st_img .img1 {
  opacity: 0;
}
.wrp_top_busi .con_busi.active-3 .inner_img .box_img .inn_st_img .img1, .wrp_top_busi .con_busi.active-3 .inner_img .box_img .inn_st_img .img2 {
  opacity: 0;
}

@media screen and (min-width: 64.0625em) {
  .con_top_lnk {
    margin-top: 140px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk {
    margin-top: 110px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk {
    margin-top: 4.5em;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk {
    margin-bottom: 140px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk {
    margin-bottom: 4.5em;
  }
}
.con_top_lnk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk {
    display: block;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk .inner_lnk {
    width: 49.84375%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk {
    width: 50%;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk {
    width: 100%;
  }
}
.con_top_lnk .inner_lnk {
  overflow: hidden;
}
.con_top_lnk .inner_lnk > a {
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.con_top_lnk .inner_lnk > a::after {
  content: "";
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk .inner_lnk > a::after {
    bottom: 40px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk > a::after {
    bottom: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk > a::after {
    bottom: 1em;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk .inner_lnk > a::after {
    right: 40px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk > a::after {
    right: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk > a::after {
    right: 1em;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk .inner_lnk > a::after {
    width: 40px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk > a::after {
    width: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk > a::after {
    width: 1.5em;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk .inner_lnk > a::after {
    height: 40px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk > a::after {
    height: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk > a::after {
    height: 1.5em;
  }
}
.con_top_lnk .inner_lnk > a::after {
  position: absolute;
  width: 40px;
  background: url(../images/home/arr.svg) no-repeat center/contain;
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    width: 85%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    width: 80%;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    width: 85%;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    bottom: 50px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    bottom: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    bottom: 1em;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    left: 50px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    left: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    left: 1em;
  }
}
.con_top_lnk .inner_lnk > a .box_txt {
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .con_top_lnk .inner_lnk > a .box_txt {
    top: 30px;
    left: 30px;
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .con_top_lnk .inner_lnk > a .box_txt {
    top: 30px;
    left: 30px;
    padding: 0.8em;
  }
}
.con_top_lnk .inner_lnk > a .box_txt .title_medium .en, .con_top_lnk .inner_lnk > a .box_txt .title_medium .jp {
  color: #fff;
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .con_top_lnk .inner_lnk > a .box_txt .title_medium .jp {
    font-size: 2.3em;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_top_lnk .inner_lnk > a .box_txt .title_medium .jp {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 48em) {
  .con_top_lnk .inner_lnk > a .box_txt .txt_small {
    margin-top: 15px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_top_lnk .inner_lnk > a .box_txt .txt_small {
    margin-top: 1em;
  }
}
.con_top_lnk .inner_lnk > a .box_txt .txt_small {
  color: #fff;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .con_top_lnk .inner_lnk > a .box_txt .txt_small {
    font-size: 0.9em;
  }
}
.con_top_lnk .inner_lnk > a .box_img .img img {
  -webkit-transition: ease 0.3s transform;
  transition: ease 0.3s transform;
}
.con_top_lnk .inner_lnk > a:hover .box_img .img {
  overflow: hidden;
}
.con_top_lnk .inner_lnk > a:hover .box_img .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/*===========
inview
===========*/
.fadeIn {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 5%);
          transform: translate(0, 5%);
  -webkit-transition: 1s;
  transition: 1s;
}
.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}