@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');

/* ==============================================================
/*     Reset  
/* ============================================================== */
:root {
  --gy800: #29313F;
  --gy400: #828893;
  --gy200: #ECEEF2;
  --bl800: #0A3680;
  --bl500: #2C5498;
  --bl300: #1069FF;
  --bl200: #D0E2FF;
  --wh: #fff;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, em, img, strong, dl, dt, dd, ol, ul, li, footer, header, nav, section, blockquote{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  vertical-align: baseline;
  background: transparent;
  word-break: break-word;
}
html{
  font-size: 62.5%;
  overflow-x: hidden;
}
body{
  padding-top: 80px;
  background: var(--wh);
  color: var(--gy800);
  font-size: 1.6rem;
  line-height: 1;
  overflow-x: hidden;
}
ul{
  list-style: none;  
}
input, select, textarea{
  border: none;
  color: var(--gy800);
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  outline: none;
  letter-spacing: 0.1em;
  -webkit-appearance: none;
  border-radius: 0px;
}
*, *::before, *::after{
  box-sizing: border-box;
}
h2, h3, h4, h5, h6, strong{
  font-weight: 700;
  line-height: 1.5;
}
p, li, th, td, dt, dd{
  font-size: 1.6rem;
  line-height: 1.5;
}
.txtCenter{ text-align: center}
.txtRight{ text-align: right}
.txtSm{ font-size: 1.4rem}
.fPC{ display: none}

a{
  color: var(--gy800);
  text-decoration: none;
}
img{
  vertical-align: middle;
}

.inner{
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}
.inner-ttl{
  padding-bottom: 25px;
}
.inner-btn{
  padding-top: 1px !important;
}
.hidden{
  opacity: 0;
  transition: all 0.7s ease-out;
}
.fadein-done{
  opacity: 1;
  transition: all 0.7s ease-out;
}

@media screen and (min-width:950px){
  .fSP{ display: none}
  .fPC{ display: inline-block}
  .txtCenterPC{ text-align: center}

  a, a:hover{
    transition: 0.3s;
  }
}
@media screen and (max-width:949px){
  body{
    padding-top: 69px;
  }
  p, li, th, td, dt, dd{
    font-size: 1.4rem;
  }
  .inner{
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ==============================================================
/*     Header
/* ============================================================== */
.blockHeader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 28px 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transition: all .5s;
}
.blockHeader .inner{
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}
.blockHeader .logo{
  font-size: 1.4rem;
  line-height: 1.5;
}
.blockHeader .logo img{
  margin-right: 5px;
  vertical-align: -6px;
}
.headerMenu li:last-child a{
  display: block;
  width: 130px;
  padding: 11px 24px 13px;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wh);
  background: var(--bl300);
  border-radius: 30px;
}
.headerMenu li:last-child a::after{
  display: inline-block;
  content: "";
  width: 14px;
  height: 12px;
  margin-left: 16px;
  background: url("../img/ico_arrow-wh.svg") no-repeat;
}
@media screen and (min-width:1100px){
  .blockHeader .inner{
    max-width: 1280px;
  }
  .blcokHeaderMenu{
    position: fixed;
    max-width: 800px;
    height: 80px;
    padding-right: 40px;
    top: 29px;
    left: auto;
    right: 0;
    z-index: 9999;
 }
  .headerMenu{
    display: flex;
    justify-content: flex-end;
  }
  .headerMenu li{
    margin-left: 24px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .headerMenu li:not(:last-child) a{
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
  }
  .headerMenu li a:hover{
    text-decoration: none;
    color: var(--bl300);
    border-bottom-color: var(--bl300);
  }
  .headerMenu li:last-child{
    margin-top: -14px;
  }
  .headerMenu li:last-child a:hover{
    color: var(--wh);
    opacity: 0.7;
  }
  .headerMenuBtnBlock{
    display: none;
  }
}


@media screen and (min-width:1280px){
  .blcokHeaderMenu{
    width: 800px;
    transform: translateX(calc(-50% + 240px));
    left: 50%;
    right: auto;
 }
}
@media screen and (max-width:1099px){
  .open_menu{
    height: 100%;
    overflow: hidden;
  }
  .blockHeader{
    width: 100%;
    height: 69px;
    padding: 26px 0;
    transition: all 0.4s;
  }
  .open_menu .blockHeader{
    background: rgba(255,255,255,0);
    backdrop-filter: blur(0);
    transition: all 1s;
  }
  .blockHeader .inner{
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
  }
  .blockHeader .logo{
    font-size: 1.2rem;
  }
  .blockHeader .logo img{
    width: 160px;
    height: auto;
    vertical-align: -5px;
  }
  .headerMenuBtnBlock {
  position: absolute;
    top: -11px;
    right: 24px;
  }
  .headerMenuBtnBlock{
    display: flex;
  }
  .headerMenuBtn{
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    appearance: none;
    z-index: 9999;
    cursor: pointer;
  }
  .headerMenuBtn_bar span{
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gy800);
    transition: all .3s;
  }
  .headerMenuBtn_bar span:nth-of-type(2){
    top: 24px;
  }
  .headerMenuBtn.open .headerMenuBtn_bar span:nth-of-type(1){
    width: 28px;
    left: 6px;
    transform: translateY(5px) rotate(-45deg);
  }
  .headerMenuBtn.open .headerMenuBtn_bar span:nth-of-type(2) {
    width: 28px;
    left: 6px;
    transform: translateY(-5px) rotate(45deg);
  }
  .blcokHeaderMenu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    z-index: 8888;
  }
  .headerMenu{
    padding: 125px 24px 0;
  }
  .headerMenu li:not(:last-child){
    margin-bottom: 24px;
  }
  .headerMenu li a{
    display: block;
    position: relative;
    font-size: 2.4rem;
    font-weight: 700;
  }
  .headerMenu li:not(:last-child) a::after{
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    display: block;
    width: 17px;
    height: 17px;
    background: url("../img/ico_arrow-bl.svg") no-repeat;
  }
  .headerMenu li:last-child{
    margin-top: 80px;
  }
  .headerMenu li:last-child a{
    width: 100%;
    padding: 13px 24px 15px;
    text-align: center;
  }
}

/* ==============================================================
/*     Modal
/* ============================================================== */
.modaal-close:after, .modaal-close:before{
  top: 6px;
  width: 2px;
  height: 40px;
}
.modaal-close:focus, .modaal-close:hover{
  background: transparent;
  opacity: 0.5;
}
.modaal-close:focus:after, .modaal-close:focus:before,
.modaal-close:hover:after, .modaal-close:hover:before {
  background: #fff;
}
@media screen and (min-width:950px){
  .blockAbout .modalVideo:hover{
    opacity: 0.25;
  }
}
/* ==============================================================
/*     Common
/* ============================================================== */
.bgGy{
  background: var(--gy200);
}
.bgGy_inner{
  background-color: var(--wh);
  border-radius: 80px 0 80px 0;
}
.scroll{
  overflow-x: scroll;
  width: 100%;
  scrollbar-width: none;
  padding-left: calc((100% - 1120px)/2);
  padding-right: calc((100% - 1120px)/2);
}
.scroll::-webkit-scrollbar{
  display: none;
}
.scroll a.move{
  pointer-events: none;
}
@media screen and (min-width:950px) and (max-width:1281px){
  .scroll{
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (max-width:949px){
  .bgGy_inner{
    border-radius: 40px 0 40px 0;
  }
  .scroll{
    padding-left: 24px;
    padding-right: 24px;
  }
}


/* Title
------------------------------*/
.block_ttl{
  margin-top: -45px;
  margin-bottom: 24px;
  font-size: 5.6rem;
  line-height: 1.5;
}
.block_ttl-en{
  color: var(--bl300);
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width:949px){
  .block_ttl{
    margin-top: -28px;
    margin-bottom: 16px;
    font-size: 3.6rem;
  }
  .block_ttl-en{
    display: inline-block;
    font-size: 2rem;
  }
}

/* List
------------------------------*/
.liImgLink{
  display: flex;
  flex-wrap: wrap;
}
.liImgLink > li{
  position: relative;
  margin-bottom: 83px;
  font-size: 1.4rem;
}
.liImgLink a{
  display: block;
}
.liImgLink_img{
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 16px;
  border-radius: 16px;
}
.liImgLink_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.liImgLink_img::after{
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: rgba(208,226,255,0);
  transition: 0.4s;
}
.liImgLink_category{
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 8px;
  color: var(--wh);
  background: var(--bl300);
  font-size: 1.4rem;
  border-radius: 4px;
}
.liImgLink h4{
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.liImgLink-horizontal > li{
  font-size: 1.6rem;
  font-weight: 700;
}
.liImgLink-horizontal .liImgLink_img{
  aspect-ratio: 540/302;
}

@media screen and (min-width:950px){
  .liImgLink > li{
    width: 300px;
  }
  .liImgLink > li:not(:last-child){
    margin-right: 40px;
  }
  .liImgLink a:hover{
    color: var(--bl300);
  }
  .liImgLink a *{
    transition: 0.3s;
  }
  .liImgLink a:hover img{
    transform: scale(1.1,1.1);
  }
  .liImgLink a:hover .liImgLink_img::after{
    background: rgba(208, 226, 255, 0.5);
  }
  .liImgLink-horizontal > li{
    width: calc(50% - 20px);
  }
}
@media screen and (max-width:949px){
  .liImgLink > li{
    width: 189px;
    font-size: 1.2rem;
  }
  .liImgLink:not(.liImgLink-horizontal) > li:not(:last-child){
    margin-right: 24px;
  }
  .liImgLink_img{
    border-radius: 8px;
  }
  .liImgLink h4{
    margin-bottom: 4px;
    font-size: 1.4rem;
  }
  .liImgLink-horizontal > li{
    font-size: 1.4rem;
  }
  .liImgLink-horizontal > li{
    width: 100%;
    margin-right: 0;
  }
  .liImgLink-horizontal > li:not(:last-child){
    margin-bottom: 24px;
  }
  .liImgLink-horizontal .liImgLink_img{
    margin-bottom: 8px;
  }

}

/* Circle
------------------------------*/
.blockCircle{
  position: relative;
  width: 497px;
  height: 497px;
}
.blockCircle img{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.blockCircle img:nth-child(2){
  animation: rotate2 30s infinite linear;
  filter: blur(1px);
  z-index: 3;
}
.blockCircle img:nth-child(3){
  animation: rotate3 30s infinite linear;
  filter: blur(1px);
  z-index: 2;
}
.blockCircle img:nth-child(4){
  animation: rotate4 30s infinite linear;
  filter: blur(1px);
  z-index: 1;
}
@keyframes rotate2{
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@keyframes rotate3{
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(270deg);
  }
}
@keyframes rotate4{
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Button
------------------------------*/
.blockBtn{
  display: flex;
  margin-top: 40px;
}
.blockBtn-center{
  justify-content: center;
}
.btn{
  position: relative;
  display: inline-block;
  height: 52px;
  line-height: 1;
  padding: 16px 40px 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: var(--bl300);
  background: transparent;
  border: 1px solid var(--bl300);
  text-decoration: none !important;
  border-radius: 30px;
  cursor: pointer;
}
button.btn{
  padding-top: 0;
}
.btn:not(:first-child){
  margin-left: 24px;
}
.btn:not(.btn-back)::after{
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url("../img/ico_arrow-bl.svg") no-repeat;
  vertical-align: -1px;
}
.btn-plain::after, .btn-apply::after{
  display: none !important;
}
.btn-back::before{
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url("../img/ico_arrow-bl.svg") no-repeat;
  vertical-align: -2px;
  transform: rotate(180deg);
}
.btn-external::after{
  background-image: url("../img/ico_external.svg") !important;
}
.btn-more::after{
  background-image: url("../img/ico_more.svg") !important;
}
.btn-disable{
  pointer-events: none;
  background: #999;
}
.btn-apply{
  color: var(--wh);
  background: var(--bl300);
}
@media screen and (min-width:950px){
  .btn{
    position: relative;
    transition: 0.2s;
    z-index: 0;
  }
  .btn:hover{
    background: rgba(208,226,255,0.5);
  }
  .btn-apply:hover{
    background: var(--bl300);
    opacity: 0.7;
  }
}
@media screen and (max-width:949px){
  .blockBtn{
    margin-top: 24px;
  }
  .btn{
    height: 48px;
    padding: 14px 24px 0;
    font-size: 1.4rem;
  }
  .btn:not(:first-child){
    margin-left: 0;
  }
  .btn::after{
    vertical-align: -2px;
  }
}

.blockVideo{
  position: relative;
  width: 668px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (min-width:950px){
  .blockVideo_txt{
    position: absolute;
    bottom: 0;
    display: inline-block;
    margin-left: -160px;
    padding: 24px 40px 0;
    font-size: 2rem;
    font-weight: 700;
    background: var(--wh);
    border-top-right-radius: 16px;
  }
  .blockVideo_txt::before, .blockVideo_txt::after{
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    background: url("../img/top/bg_blockVideo.png") no-repeat;
    background-size: cover;
  }
  .blockVideo_txt::before{
    top: -14px;
    left: calc(50% - 7px);
  }
  .blockVideo_txt::after{
    right: -14px;
    bottom: 0;
  }
  .blockVideo_txt span{
    display: none;
  }
}
@media screen and (max-width:949px){
  .blockVideo{
    width: 100%;
  }
  .blockVideo_txt{
    margin: 24px 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .blockVideo_txt span{
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
    font-weight: 700;
  }
}

/* ==============================================================
/*     FOOTER
/* ============================================================== */
footer{
  padding: 80px 0 40px;
  color: var(--wh);
  background: #29313F;
}
footer a, footer a:visited{
  color: var(--wh);
}
.footerBn{
  margin-top: 40px;
}
.footerSns{
  display: flex;
}
.footerSns li{
  margin-left: 40px;
}
.footerCopy{
  margin-top: 120px;
}
.footerCopy li{
  margin-right: 40px;
  font-size: 1.4rem;
}
.footerCopy p{
  margin-bottom: 0;
  font-size: 1.4rem;
}
@media screen and (min-width:950px){
  footer .inner{
    position: relative;
  }
  .footerBn, .footerCopy ul{
    display: flex;
  }
  .footerBn li{
    margin-right: 40px;
  }
  .footerSns{
    position: absolute;
    top: 0;
    right: 80px;
  }
  .footerCopy{
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width:949px){
  footer{
    padding-bottom: 115px;
  }
  .footerLogo > img{
    width: 250px;
    height: auto;
  }
  .footerBn{
    margin-bottom: 80px;
  }
  .footerBn li:not(:last-child){
    margin-bottom: 32px;
  }
  .footerSns li{
    margin-left: 0;
    margin-right: 32px;
  }
  .footerCopy{
    margin-top: 80px;
  }
  .footerCopy ul{
    margin-bottom: 20px;
  }
  .footerCopy li{
    margin-bottom: 16px;
  }
}