@charset "utf-8";

/*ローディング*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #213167;
	z-index: 9999999;
	text-align:center;
	color: #fff;
}

#splash-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    font-family: 'Roboto', sans-serif;
    font-size: 180%;
    font-weight: 900;
}

/*画面遷移アニメーション*/
.splashbg{
	display: none;
}

body.appear .splashbg{
    display: block;
    content: '';
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
    background-color: #213167;
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:top;
		transform:scaleY(0);
	}
	50% {
		transform-origin:top;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:bottom;
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}
/*画面遷移の後現れるコンテンツ設定*/
#wrapper{
	opacity: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper{
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
    }
}

@media screen and (max-width: 550px) {
    #splash-text{
        font-size: 150%;
    }
}

@media screen and (max-width: 320px) {
     #splash-text{
        font-size: 130%;
    }
}

/* ナビゲーション */
#g-nav{
    position:fixed;
    z-index: 999;
	top: -120%;
    left: 0;
	width: 100%;
    height: 100vh;
	background: #213167;
	transition: all 0.6s;
}

#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block;
}

/*ナビゲーション*/
#g-nav ul.g-nav-main{
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul.g-nav-main {
    opacity: 1;
}

#g-nav.panelactive ul li{
	animation-name: gnaviAnime;
	animation-duration: 1s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*リストのレイアウト*/
#g-nav li{
  text-align: center; 
  list-style: none;
}

.g-nav-main li a{
    color: #fff;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    font-weight: 700;
}

.g-nav-main li{
    margin-bottom: 10px;
}

.g-nav-main li:first-of-type{
    margin-bottom: 30px;
}

.g-nav-main li:first-of-type a{
    font-family: 'Noto Serif JP', serif;
    font-size: 200%;
}

.sns-list{
    display: flex;
    justify-content: center;
    margin: 30px 0 0 0;
    gap: 15px;
}

.sns-list img{
    width: 30px;
    height: 30px;
}

/* ボタンの変化*/
.openbtn{
	position: fixed;
    top: 1rem;
    right: 2rem;
	cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

@media screen and (max-width: 550px) {
    .sns-list{
        margin: 30px 0 10px;
    }
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    border-radius: 1px;
	background-color: #213167;
  }

.openbtn span:nth-of-type(1) {
	top:15px;
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    transform: translateY(6px) rotate(-135deg);
    background-color: #fff;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    transform: translateY(-6px) rotate(135deg);
    background-color: #fff;
}

/* ヘッダー */
#header{
	position: fixed;
	height: 80px;
	width: 100%;
    z-index: 9;
    background: #fff;
}

h1{
    position: absolute;
    top: 25%;
    left: 30px;
}

h1 a{
    color: #213167;
    font-weight: 700;
}

#pc-nav ul{
    position: absolute;
    top: 25%;
    right: 10%;
	list-style: none;
	display: flex;
	justify-content: center;
    align-items: center;
    gap: 25px;
}

#pc-nav li a{
	display: flex;
	flex-direction: column;
	color: #213167;
    text-transform: capitalize;
	transition: all 0.3s;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.en-title{
    letter-spacing: 0.03em;
}

.jp-title{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 80%;
    color: #4AADAD;
    margin-top: -3px;
}

#pc-nav li.current a,
#pc-nav li a:hover{
    opacity: 0.8;
}

#pc-nav li.current a::after,
#pc-nav li a:hover::after{
    content: '';
    position: absolute;
    bottom: -20px;
    width: 100%;
    background-color: #4AADAD;
    height: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1100px) {
    #pc-nav{
        display: none;
    }
}

@media screen and (max-width: 550px) {
    #header{
        height: 80px;
    }
}

/* スクロール */
#scroll{
	position: absolute;
	left: 1.5%;
	bottom: 4.5rem;
	writing-mode: vertical-lr;
}

#scroll a{
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
	text-transform: capitalize;
    color: #213167;
}

#scroll a::after{
  content: "";
  position: absolute;
  top: 3.5rem;
  left: 0.7rem;
  width: 1px;
  height: 50px;
  background: #213167;
}

@media screen and (max-width: 550px) {
    #scroll{
        display: none;
    }
}

/* スライダー */
#top-main{
    position: relative;
    padding: 0 5%;
}

.top-copy{
    width: 100%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 150%;
    text-shadow: 5px 5px 20px #fff;
    display: flex;
    flex-direction: column;
}

.slider {
    position:relative;
	z-index: 1;
	height: 100vh;
}

.slider-item01 {
    background: url(../assets/mv_img02.jpg);
}

.slider-item02 {
    background: url(../assets/mv_img03.jpg);
}

/*.slider-item03 {
    background: url(../assets/mv_img01.jpg);
}*/

.slider-item {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position-y: 80px;
    background-position-x: center;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    .slider{
        height: 50vh;
    }
    
    .slider-item{
        height: 50vh;
    }
}

/*@media screen and (max-width: 450px) {
    .slider-item02 {
         background-position-x: -145px;
    }
}*/

/* ページトップ */
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	text-align: center;
    transform: rotate(90deg);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 90%;
    color: #4AADAD;
	text-decoration: none;
	transition:all 0.3s;
    position: relative;
}

#page-top a::before{
    content: '';
    position: absolute;
    width: 50px;
    top: 50%;
    left: -40px;
    transform: translate(-50%,-50%);
    border-bottom: 1px solid #4AADAD;
}

#page-top {
	position: fixed;
	right: 5px;
	bottom: 50px;
	z-index: 9;
	opacity: 0;
	transform: translateY(200px);
}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(200px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(200px);
  }
}

/*---スクロールアニメーション---*/
/* ズームイン */
.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  opacity: 0;
  }

  to {
    transform: scale(1);
  opacity: 1;
  }
}

/* ふわっと */
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* じわっと */
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}

/* 文字が光る */
.glowAnime span{
    opacity: 0;
}

.glowAnime.glow span{
    animation: glow_anime_on 3s ease-out forwards;
    animation-delay: 2s;
}

@keyframes glow_anime_on{
	0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
	50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
	100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}

/* 文字が左から右へ */
.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;
}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;
}

.slideAnimeLeftRight {
	animation-name: slideTextX100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%);
        opacity: 0;
  }

  to {
	transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name: slideTextX-100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);
    opacity: 0;
  }

  to {
	transform: translateX(0);
    opacity: 1;
  }
}

/* animate.cssより*/
.fadeInUpTrigger{
    opacity:0;
}

.delay-time01{
  animation-delay: 0.1s;
}

.delay-time02{
  animation-delay: 0.3s;
}

.delay-time03{
  animation-delay: 0.5s;
}

@media screen and (max-width: 767px) {
    .delay-time01,
    .delay-time02,
    .delay-time03{
        animation-delay: 0.05s;
    }
}

/* br */
.br-sp{
    display: none;
}

@media screen and (max-width: 450px) {
    .br-sp{
        display: block;
    }   
}
