@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap");
/*--- import -------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  word-break: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  overflow-x: hidden;
  font-size: 62.5%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture {
  vertical-align: middle;
  max-width: 100%;
}

img {
  height: auto;
}

picture {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

input, textarea, select, button {
  font: inherit;
}

/* safariでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* -----------------------------------------------------
	variables
----------------------------------------------------- */
/*------------------------------------- import ---*/
body {
  -webkit-text-size-adjust: 100%;
  font-family: '游ゴシック', YuGothic, 'メイリオ', Meiryo, Verdana, Roboto, 'Droid Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  color: #333;
}

a {
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
}

.btn_to_top {
  cursor: pointer;
  position: fixed;
  right: 35px;
  bottom: 82px;
  z-index: 10;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  width: 86px;
  height: 86px;
  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;
  background-color: #000000;
  border-radius: 50vw;
  -webkit-box-shadow: 3px 3px 20px 3px rgba(255, 255, 255, 0.12);
  box-shadow: 3px 3px 20px 3px rgba(255, 255, 255, 0.12);
}

@media screen and (max-width: 768px) {
  .btn_to_top {
    right: 3.90625vw;
    bottom: 13.02083vw;
    width: 11.19792vw;
    height: 11.19792vw;
  }
}

.btn_to_top span {
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
}

@media screen and (max-width: 768px) {
  .btn_to_top span {
    border-left: 1.5625vw solid transparent;
    border-right: 1.5625vw solid transparent;
    border-bottom: 1.5625vw solid #ffffff;
  }
}

.btn_to_top.foot {
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  pointer-events: none;
}

.pc {
  display: block;
}

.pc._inline {
  display: inline;
}

.pc._inline-block {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .sp._inline {
    display: inline;
  }
  .sp._inline-block {
    display: inline-block;
  }
}

.sp_show {
  display: none;
}

@media screen and (max-width: 1120px) {
  .sp_show {
    display: block;
  }
}

.inview {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.inview._delay1 {
  -webkit-transition: all 1.2s 0.1s;
  -o-transition: all 1.2s 0.1s;
  transition: all 1.2s 0.1s;
}

.inview._delay2 {
  -webkit-transition: all 1.2s 0.2s;
  -o-transition: all 1.2s 0.2s;
  transition: all 1.2s 0.2s;
}

.inview._delay3 {
  -webkit-transition: all 1.2s 0.3s;
  -o-transition: all 1.2s 0.3s;
  transition: all 1.2s 0.3s;
}

.inview._delay4 {
  -webkit-transition: all 1.2s 0.4s;
  -o-transition: all 1.2s 0.4s;
  transition: all 1.2s 0.4s;
}

.inview._delay5 {
  -webkit-transition: all 1.2s 0.5s;
  -o-transition: all 1.2s 0.5s;
  transition: all 1.2s 0.5s;
}

.inview.on {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

@media screen and (max-width: 768px) {
  .inview._sp_delay0 {
    -webkit-transition: all 1.2s;
    -o-transition: all 1.2s;
    transition: all 1.2s;
  }
}

.coution {
  padding-left: 1em;
  text-indent: -1em;
}

.coution::before {
  content: "※";
}

/* -----------------------------------------------------
	common
----------------------------------------------------- */
section .inner {
  max-width: 1320px;
  width: 90%;
  margin: 0 auto;
  padding: 180px 0;
}

@media screen and (max-width: 768px) {
  section .inner {
    padding: 18.22917vw 0 20.83333vw;
  }
}

section .inner .ttl {
  text-align: left;
}

section .inner .ttl span {
  display: inline-block;
  font-size: 12rem;
  font-weight: 700;
  font-style: oblique;
  line-height: 1;
}

section .inner .ttl span:not(.small) {
  padding-right: 3%;
}

@media screen and (max-width: 768px) {
  section .inner .ttl span {
    font-size: 11.71875vw;
  }
}

section .inner .sub_ttl {
  text-align: left;
  color: #042054;
  font-size: 2.6rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  section .inner .sub_ttl {
    font-size: 4.42708vw;
  }
}

section .inner .white {
  color: #ffffff;
}

section.kv img {
  width: 100%;
}

/* -----------------------------------------------------
  page_anc
----------------------------------------------------- */
.page_anc {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  z-index: 100;
}

.page_anc.fixed {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .page_anc li {
    width: 100%;
  }
  .page_anc li:first-child {
    width: 60%;
  }
}

.page_anc li + li {
  position: relative;
}

.page_anc li + li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #6da7d5;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .page_anc li + li::before {
    width: 0.26042vw;
    height: 4.16667vw;
  }
}

.page_anc li a {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 0 80px;
  height: 80px;
  color: #ffffff;
}

@media screen and (max-width: 1130px) {
  .page_anc li a {
    padding: 0 35px;
  }
}

@media screen and (max-width: 768px) {
  .page_anc li a {
    padding: 0;
    height: 13.02083vw;
    font-size: 3.25521vw;
  }
}

.page_anc li a.t_current {
  background: #042054;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .page_anc li a:hover {
    opacity: 1;
    background: #042054;
  }
}

/* -----------------------------------------------------
    btn common
----------------------------------------------------- */
.btn {
  display: block;
  max-width: 425px;
  width: 100%;
  margin: 2em 0 0;
  padding: 12px 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background: #0091d2;
  border-radius: 50vw;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
  position: relative;
}

@media screen and (max-width: 1190px) {
  .btn {
    font-size: 1.68067vw;
  }
}

@media screen and (max-width: 768px) {
  .btn {
    max-width: 100%;
    font-size: 3.90625vw;
    width: 87.23958vw;
    margin: 7.8125vw auto 0;
  }
}

.btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 6px;
  border-bottom: solid 2px;
  border-right: solid 2px;
  -webkit-transform: skew(45deg);
  -ms-transform: skew(45deg);
  transform: skew(45deg);
  position: absolute;
  top: 48%;
  right: 1.2em;
  -webkit-transform: translate(0, -50%) skew(45deg);
  -ms-transform: translate(0, -50%) skew(45deg);
  transform: translate(0, -50%) skew(45deg);
  -webkit-transition: right .2s;
  -o-transition: right .2s;
  transition: right .2s;
}

@media screen and (max-width: 768px) {
  .btn::after {
    width: 5.20833vw;
    height: 1.5625vw;
    right: 5.20833vw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover::after {
    right: 0.9em;
  }
}

/* -----------------------------------------------------
    header
----------------------------------------------------- */
header {
  background: #f2f2f2;
  background: -webkit-gradient(linear, left top, right top, from(#f2f2f2), to(#dae8f1));
  background: -webkit-linear-gradient(left, #f2f2f2 0%, #dae8f1 100%);
  background: -o-linear-gradient(left, #f2f2f2 0%, #dae8f1 100%);
  background: linear-gradient(90deg, #f2f2f2 0%, #dae8f1 100%);
}

header .inner_h {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  height: 86px;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  header .inner_h {
    height: 16.66667vw;
    padding: 0 3.90625vw;
  }
}

header .inner_h .common_h {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

header .inner_h .common_h.event_logo .underlayer {
  display: none;
}

@media screen and (max-width: 768px) {
  header .inner_h .common_h.event_logo img {
    width: 9.50521vw;
  }
}

header .inner_h .common_h.event_logo h1 {
  text-align: left;
  font-size: 2.4rem;
  color: #042054;
  padding: 0 20px;
}

@media screen and (max-width: 1120px) {
  header .inner_h .common_h.event_logo h1 {
    font-size: 2.14286vw;
  }
}

@media screen and (max-width: 768px) {
  header .inner_h .common_h.event_logo h1 {
    font-size: 3.64583vw;
    padding: 0 2.60417vw;
    line-height: 5.72917vw;
  }
}

header .inner_h .common_h.corporate_logo a:not(.head_sns) {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 10px 20px;
  margin-right: 20px;
  color: #fff;
  background: #0091d2;
  border-radius: 50vw;
}

@media screen and (max-width: 1120px) {
  header .inner_h .common_h.corporate_logo a:not(.head_sns) {
    font-size: 1.60714vw;
  }
}

@media screen and (max-width: 768px) {
  header .inner_h .common_h.corporate_logo a:not(.head_sns) {
    display: none;
  }
}

header .inner_h .common_h.corporate_logo .head_sns {
  width: 49px;
  margin-right: 10px;
}

@media screen and (max-width: 1120px) {
  header .inner_h .common_h.corporate_logo .head_sns {
    width: 4.375vw;
  }
}

@media screen and (max-width: 768px) {
  header .inner_h .common_h.corporate_logo .head_sns {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header .inner_h .common_h.corporate_logo img {
    width: 12.63021vw;
  }
}

.main {
  position: relative;
}

/* -----------------------------------------------------
    menu
----------------------------------------------------- */
.openBtn {
  position: fixed;
  top: 13%;
  right: 1.6%;
  z-index: 100;
  width: 83px;
  height: 83px;
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  border-radius: 50vw;
  cursor: pointer;
  background: rgba(0, 145, 210, 0.8);
  border: 2px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media screen and (-webkit-min-device-pixel-ratio: 1) and (max-height: 680px) and (min-width: 769px) {
  .openBtn {
    top: 19%;
  }
}

.openBtn.current {
  opacity: 1;
  visibility: visible;
}

.openBtn .openbtnLineBox {
  position: relative;
  width: 36%;
  height: 21px;
}

.openBtn span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 50vw;
  background-color: #ffffff;
  width: 100%;
}

.openBtn span:nth-of-type(1) {
  top: 0;
}

.openBtn span:nth-of-type(2) {
  top: 50%;
}

.openBtn span:nth-of-type(3) {
  top: 100%;
}

@media screen and (max-width: 768px) {
  .openBtn {
    top: 21.35417vw;
    right: 3.64583vw;
    width: 12.5vw;
    height: 12.5vw;
  }
  .openBtn .openbtnLineBox {
    height: 2.73438vw;
  }
}

@media screen and (min-width: 769px) {
  .openBtn:not(.active):hover span:nth-of-type(2) {
    width: 70%;
  }
  .openBtn:not(.active):hover span:nth-of-type(3) {
    width: 35%;
  }
}

.openBtn.active {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 99, 99, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 99, 99, 0.2);
}

.openBtn.active span:nth-of-type(1) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}

.openBtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openBtn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-1px) rotate(45deg);
  -ms-transform: translateY(-1px) rotate(45deg);
  transform: translateY(-1px) rotate(45deg);
  top: 50%;
}

.gnavi {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 86px;
  width: 100%;
  height: 100vh;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(18, 81, 164, 0.8);
  background: -webkit-radial-gradient(left, rgba(18, 81, 164, 0.8) 0%, rgba(0, 145, 210, 0.8) 48%, rgba(13, 99, 176, 0.8) 100%);
  background: -o-radial-gradient(left, rgba(18, 81, 164, 0.8) 0%, rgba(0, 145, 210, 0.8) 48%, rgba(13, 99, 176, 0.8) 100%);
  background: radial-gradient(90deg, rgba(18, 81, 164, 0.8) 0%, rgba(0, 145, 210, 0.8) 48%, rgba(13, 99, 176, 0.8) 100%);
}

@media screen and (max-width: 768px) {
  .gnavi {
    top: 16.66667vw;
  }
}

.gnavi.panelactive {
  opacity: 1;
  z-index: 90;
}

.gnavi-inner {
  position: fixed;
  z-index: 91;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 3%;
}

@media screen and (min-width: 769px) {
  .gnavi-inner {
    display: -webkit-box;
    /*Android4.3*/
    display: -ms-flexbox;
    /*IE10*/
    display: -webkit-flex;
    /*PC-Safari,iOS8.4*/
    display: flex;
    -ms-flex-align: center;
    /*IE10*/
    -webkit-box-align: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center;
    /* Safari6.1以降 */
    align-items: center;
  }
}

.gnavi-inner .gnaviList {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .gnavi-inner .gnaviList {
    padding: 20.83333vw 6.51042vw 0;
  }
}

.gnavi-inner .gnaviList__item {
  text-align: left;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .gnavi-inner .gnaviList__item {
    text-align: center;
    margin-bottom: 8.33333vw;
  }
}

.gnavi-inner .gnaviList__item a {
  color: #ffffff;
}

.gnavi-inner .gnaviList__itemNameEn {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .gnavi-inner .gnaviList__itemNameEn {
    font-size: 5.72917vw;
  }
}

.gnavi-inner .snsList {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

@media screen and (max-width: 768px) {
  .gnavi-inner .snsList {
    -ms-flex-pack: center;
    /*IE10*/
    -webkit-box-pack: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-justify-content: center;
    /* Safari6.1以降 */
    justify-content: center;
    margin: 0 auto;
  }
}

.gnavi-inner .snsList li a {
  display: inline-block;
  width: 56px;
}

@media screen and (max-width: 768px) {
  .gnavi-inner .snsList li a {
    width: 13.28125vw;
  }
}

.gnavi-inner .snsList li + li {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .gnavi-inner .snsList li + li {
    margin-left: 6.51042vw;
  }
}

.brn_btm {
  width: 90%;
  padding-top: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .brn_btm {
  width: 90%;
  padding-top: 15vw;
  margin: 0 auto;
  }
}

/* -----------------------------------------------------
	footer
----------------------------------------------------- */
footer .inner .contanct {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct {
    padding: 20.83333vw 0 28.64583vw;
  }
}

footer .inner .contanct .contanct_wrap {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

footer .inner .contanct .contanct_wrap.logo_col {
  gap: 60px;
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.logo_col {
    gap: 8.85417vw;
    margin-bottom: 13.02083vw;
  }
}

footer .inner .contanct .contanct_wrap.logo_col a {
  display: inline-block;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.logo_col a img {
    width: 55.07813vw;
  }
}

footer .inner .contanct .contanct_wrap.contanct_col {
  gap: 70px;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col {
    gap: 7.8125vw;
    -ms-flex-wrap: wrap;
    /*IE10*/
    -webkit-flex-wrap: wrap;
    /*PC-Safari,iOS8.4*/
    flex-wrap: wrap;
    padding: 0 4.6875vw;
  }
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box {
  width: calc(68% / 2);
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box {
    width: 100%;
    border-radius: 3.64583vw;
  }
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box .ttl {
  background: #0091d2;
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box .ttl h3 {
  color: #ffffff;
  padding: 12px 0;
  font-size: 2.6rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box .ttl h3 {
    padding: 3.125vw 0;
    font-size: 5.20833vw;
  }
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box {
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box {
    padding: 5.20833vw 0;
  }
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box .text {
    font-size: 3.38542vw;
  }
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  padding: 0 0 0 15%;
  margin-bottom: 20px;
}

@media screen and (max-width: 1310px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl {
    padding: 0 0 0 3.05344vw;
  }
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl {
    padding: 0 0 0 7.8125vw;
    margin-bottom: 5.20833vw;
  }
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl:first-of-type dd {
  color: #042155;
  font-size: 3rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl:first-of-type dd {
    font-size: 5.98958vw;
  }
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl:last-of-type {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl dt {
  width: 18%;
  padding: 2px 0;
  font-weight: 700;
  color: #ffffff;
  background-image: -webkit-linear-gradient(180deg, #042054 0%, #14336c 50%, #042054 100%);
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl dt {
    width: 13.02083vw;
    font-size: 3.64583vw;
    padding: 0.52083vw 2.60417vw;
    border-radius: 0.78125vw;
  }
}

footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl dd {
  width: calc(100% - 18%);
  text-align: left;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  footer .inner .contanct .contanct_wrap.contanct_col .contact-box .box dl dd {
    width: auto;
    font-size: 3.64583vw;
  }
}

footer .inner .footer_nav {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 24px 0;
}

@media screen and (max-width: 768px) {
  footer .inner .footer_nav {
    -ms-flex-pack: center;
    /*IE10*/
    -webkit-box-pack: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-justify-content: center;
    /* Safari6.1以降 */
    justify-content: center;
    padding: 5.20833vw 0;
  }
}

footer .inner .footer_nav a {
  display: inline-block;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 30px;
  line-height: 2.6;
}

@media screen and (max-width: 768px) {
  footer .inner .footer_nav a {
    font-size: 3.38542vw;
    margin-right: 0;
    padding: 0 2.60417vw;
    line-height: 2.4;
  }
}

footer .inner .footer_nav a:last-of-type {
  margin-right: 0;
}

footer .inner .footer_nav_bt {
  padding: 20px 0;
  border-top: 1px solid #ffffff;
}

@media screen and (max-width: 768px) {
  footer .inner .footer_nav_bt {
    padding: 3.125vw 0;
    border-top: 0.26042vw solid #ffffff;
  }
}

footer .inner .footer_nav_bt a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  footer .inner .footer_nav_bt a {
    font-size: 3.38542vw;
  }
}

footer .inner .footer_nav_bt a:last-of-type {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  footer .inner .footer_nav_bt a:last-of-type {
    margin-left: 4.6875vw;
  }
}

footer .totop_f {
  position: relative;
}

footer .totop_f #page_top {
  position: fixed;
  right: 3%;
  bottom: 4%;
  z-index: 100;
}

footer .totop_f #page_top .pg_icon {
  width: 90px;
  height: 90px;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 20px 40px 0px rgba(68, 68, 68, 0.2);
  border-radius: 50vw;
}

@media screen and (max-width: 768px) {
  footer .totop_f #page_top .pg_icon {
    width: 15.75521vw;
    height: 15.75521vw;
  }
}

footer .copyright p {
  padding: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #838383;
  background: #252525;
}

@media screen and (max-width: 768px) {
  footer .copyright p {
    padding: 2.60417vw;
    font-size: 2.86458vw;
  }
}

.bg {
  background: #f2f2f2;
  background: -webkit-gradient(linear, left top, right top, from(#f2f2f2), to(#dae8f1));
  background: -webkit-linear-gradient(left, #f2f2f2 0%, #dae8f1 100%);
  background: -o-linear-gradient(left, #f2f2f2 0%, #dae8f1 100%);
  background: linear-gradient(90deg, #f2f2f2 0%, #dae8f1 100%);
}

.heading {
  font-family: 'Noto Sans JP', sans-serif;
  background: #0091d2;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #0091d2), to(#15489d));
  background: -webkit-linear-gradient(left, #0091d2 30%, #15489d 100%);
  background: -o-linear-gradient(left, #0091d2 30%, #15489d 100%);
  background: linear-gradient(90deg, #0091d2 30%, #15489d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad {
  background: #0091d2;
  background: -webkit-gradient(linear, left top, right top, from(#0091d2), to(#15489d));
  background: -webkit-linear-gradient(left, #0091d2 0%, #15489d 100%);
  background: -o-linear-gradient(left, #0091d2 0%, #15489d 100%);
  background: linear-gradient(90deg, #0091d2 0%, #15489d 100%);
}

/* -----------------------------------------------------
    slider arrow common
----------------------------------------------------- */
.slick-arrow {
  position: absolute;
  bottom: 0;
  width: 112px;
  z-index: 5;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (max-width: 768px) {
  .slick-arrow {
    width: 26.30208vw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .slick-arrow:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

.slick-arrow.prev-arrow {
  left: 26%;
}

@media screen and (max-width: 768px) {
  .slick-arrow.prev-arrow {
    left: 13.02083vw;
  }
}

.slick-arrow.next-arrow {
  right: 26%;
}

@media screen and (max-width: 768px) {
  .slick-arrow.next-arrow {
    right: 13.02083vw;
  }
}
