@charset "utf-8";

/*===========================================================*/
/*スライダー下部の切り替え線を消す*/
/*===========================================================*/
.vegas-timer-progress {
	display: none;
}

/*===========================================================*/
/*logo＋画面が開く*/
/*===========================================================*/

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999999;
  text-align:center;
  color:#fff;
}
#splash-logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

body{
    background:#333;/*遷移アニメーションと同じ色を指定*/
}

body.appear{
    background:#fff;/*画面を開いた後の背景色を指定*/
}

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

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2{
  display:block;
}

/*上に消えるエリア*/
body.appear .splashbg1{
    animation-name:PageAnime;
    animation-duration:1.4s;
    animation-timing-function:ease-in-out;
    animation-fill-mode:forwards;
    content: "";
    position:fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    bottom:50%;
    left:0;
    transform: scaleY(1);
    background-color: #333;/*伸びる背景色の設定*/
}

@keyframes PageAnime{
  0% {
    transform-origin:top;
    transform:scaleY(1);
  }

  100% {
    transform-origin:top;
    transform:scaleY(0);
  }
}

/*下に消えるエリア*/
body.appear .splashbg2{
    animation-name:PageAnime2;
    animation-duration:1.4s;
    animation-timing-function:ease-in-out;
    animation-fill-mode:forwards;
    content: "";
    position:fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 50%;
    left:0;
    transform: scaleY(1);
    background-color: #333;/*伸びる背景色の設定*/
}

@keyframes PageAnime2{
  0% {
    transform-origin:bottom;
    transform:scaleY(1);
  }
  100% {
    transform-origin:bottom;
    transform:scaleY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
    opacity: 0;/*はじめは透過0に*/
    }

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

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


/*===========================================================*/
/*hamburger_menu*/
/*===========================================================*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:0;
    right: -100%;
    width:35%;
    height: 100vh;/*ナビの高さ*/
    background-color: rgba(15, 0, 0, 0.7);
    /*動き*/
    transition: all 0.6s;
    line-height: 1;
    font-size: 17px;
    letter-spacing: 0.1rem;
    font-family: 'Marcellus', serif;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 70%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* ナビゲーション */
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    width: 35%;
    top:50%;
    left:25%;
    transform: translate(-50%,-50%);
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
    #g-nav,
    #g-nav.panelactive #g-nav-list{
        width:100%;
    }
    #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    width: 55vw;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
}

/* リストのレイアウト設定 */
#g-nav li{
    list-style: none;
    border-bottom: solid 0.25px #fff;
}
#g-nav li a{
    color: #fff;
    text-decoration: none;
    padding:20px 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    transition: all .5s;
}
#g-nav li a:hover{
    color:#ccc;
}
.ja {
    font-size: 12px;
    font-weight: normal;
}
.ja_02 {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}
/* 3本線が×に */
.openbtn{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: #ba393c;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }
.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
    background: #fff;
    width: 62%;
    left: 8px;
 }
.openbtn span:nth-of-type(1) {
    top:17px;
    opacity: 0;
}
.openbtn span:nth-of-type(2) {
    top:15.5px;
    left:7.5px;
    font-size:0.75rem;
    text-transform: uppercase;
    color: #fff;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.openbtn span:nth-of-type(3) {
    top:40px;
    opacity: 0;
}
/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 17px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    opacity: 1;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 17px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    opacity: 1;
}

/*===========================================================*/
/*global_menu*/
/*===========================================================*/
.g-navi-pc {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    gap: 30px;
}
.nav-pc-logo img {
    width: 240px;
    padding-top: 9px;
    transition: .4s;
}
.nav-pc-logo img:hover {
    opacity: 0.5;
}
.g-navi-pc li {
    text-align: right;
    line-height: 1.25;
}
.g-navi-pc a {
    font-size: 13px;
    transition: .3s;
    color: #000;
    font-family: 'Marcellus', serif;
    letter-spacing: 1px;
}
.g-navi-pc a:hover {
    opacity: 0.5;
}
#globalMenu {
    width: 100%;
    height: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 0 60px;
    transition: .4s;
}
#globalMenu.fixed {
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

@media screen and (min-width:1199px){
    .g-navi-pc {
        gap: 50px;
    }
     #globalMenu {
        padding: 0 30px;
    }
    .g-navi-pc a {
        font-size: 16px;
        letter-spacing: 2px;
    }
}


/*===========================================================*/
/*countdown-timer*/
/*===========================================================*/
.cd-timer{
    line-height: 200%;
    display: flex;
    justify-content: center;
    opacity: 0.95;
    background-color: #b9393c;
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5);
}
.cd-text {
    color: #fff;
    /*position: absolute;
    bottom: 10px;*/
    z-index: 10;
}
.count-down-timer {
    font-size: 28px;
    font-weight:bold;
    text-align: center;
    padding: 1vh 0;
}
.cd-bg {
    display: none;
}
@media (min-width: 768px) {
    .cd-timer{
        line-height: 280%;
    }
    .cd-text {
        color: #fff;
        position: absolute;
        right: 20px;
        bottom: 15px;
        z-index: 10;
    }
    .count-down-timer {
        font-size: 52px;
        font-weight:bold;
        text-align: right;
        padding: 0;
    }
    .cd-bg {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 40vw;
        min-width: 590px;
    }
}
@media (min-width: 1200px) {
    .cd-text {
        right: 30px;
        bottom: 20px;
    }
}
/*===========================================================*/
/*グラデーション線から塗に変化するボタン*/
/*===========================================================*/

.gradient-btn{
    /*ボタンの形状*/
    display: inline-block;
    padding: 2vh 60px;
    border-radius:50px;
    text-decoration: none;   
    color: #fff;
    /*アニメーションの指定*/ 
    transition: all .6s ease-out;
    text-shadow: 3px 3px 5px #000;
    background-color: rgba(0,0,0,0.6);
    /*その他*/
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}
/*hoverした際、グラデーションと影を付ける*/
.gradient-btn:hover{
    /*ボタンの形状*/
    border-color: transparent;
    color: #fff;
    /*背景の色と形状*/    
    background-color:#b399ff;
    background-image:
    radial-gradient(at 91% 9%, hsla(244,78%,77%,1) 0px, transparent 50%),
    radial-gradient(at 62% 11%, hsla(183,74%,67%,1) 0px, transparent 50%),
    radial-gradient(at 10% 19%, hsla(154,75%,74%,1) 0px, transparent 50%),
    radial-gradient(at 24% 64%, hsla(145,84%,78%,1) 0px, transparent 50%),
    radial-gradient(at 2% 78%, hsla(209,67%,73%,1) 0px, transparent 50%),
    radial-gradient(at 11% 94%, hsla(219,74%,75%,1) 0px, transparent 50%);
        background-position: right center;
    /*ボックスの影*/   
    box-shadow: 3px 3px 8px #fff;
    text-shadow: none;
}
.gradient-btn02{
    /*ボタンの形状*/
    display: inline-block;
    padding: 2vh 60px;
    border-radius:70px;
    text-decoration: none;    
    color: #fff;
    /*アニメーションの指定*/ 
    transition: all 0.6s ease-out;
    text-shadow: 3px 3px 5px #000;
    background-color: rgba(0,0,0,0.6);
    /*その他*/ 
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}
/*hoverした際、グラデーションと影を付ける*/
.gradient-btn02:hover{
    /*ボタンの形状*/
    border-color: transparent;
    color: #fff;
    /*背景の色と形状*/
    background-color:#99a8ff;
    background-image:
    radial-gradient(at 13% 81%, hsla(196,78%,70%,1) 0px, transparent 50%),
    radial-gradient(at 20% 15%, hsla(192,63%,75%,1) 0px, transparent 50%),
    radial-gradient(at 98% 26%, hsla(54,80%,63%,1) 0px, transparent 50%),
    radial-gradient(at 80% 86%, hsla(54,80%,63%,1) 0px, transparent 50%),
    radial-gradient(at 53% 15%, hsla(161,89%,66%,1) 0px, transparent 50%);
    background-position: right center;
    /*ボックスの影*/   
    box-shadow: 3px 3px 8px #fff;
    text-shadow: none;
}
.gradient-btn03{
    /*ボタンの形状*/
    display: inline-block;
    padding: 2vh 60px;
    border-radius:70px;
    text-decoration: none;    
    color: #fff;
    /*アニメーションの指定*/ 
    transition: all 0.6s ease-out;
    text-shadow: 3px 3px 5px #000;
    background-color: rgba(0,0,0,0.6);
    /*その他*/ 
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}
/*hoverした際、グラデーションと影を付ける*/
.gradient-btn03:hover{
    /*ボタンの形状*/
    border-color: transparent;
    color: #fff;
    /*背景の色と形状*/
    background-color:#99a3ff;
    background-image:
    radial-gradient(at 1% 0%, hsla(80,69%,76%,1) 0px, transparent 50%),
    radial-gradient(at 0% 98%, hsla(308,40%,66%,1) 0px, transparent 50%),
    radial-gradient(at 5% 58%, hsla(26,63%,78%,1) 0px, transparent 50%),
    radial-gradient(at 40% 21%, hsla(17,75%,79%,1) 0px, transparent 50%),
    radial-gradient(at 4% 26%, hsla(342,77%,69%,1) 0px, transparent 50%);
    /*ボックスの影*/   
    box-shadow: 3px 3px 8px #fff;
    text-shadow: none;
}
.triangle_arrow {
    position: relative;
}
.triangle_arrow::after { /* くの字の表示設定 */
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 35px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}

.normal-btn {
    position: relative;
    display: inline-block; 
    /*ボタンの形状*/
    padding: 2vh 60px;
    border-radius:70px;
    text-decoration: none;    
    color: #fff;
    /*アニメーションの指定*/ 
    transition: all 0.6s ease-out;
    text-shadow: 3px 3px 5px #000;
    background-color: rgba(0,0,0,0.6);
    /*その他*/ 
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}
.normal-btn:before {
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
}
.normal-btn:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #333;
    position: absolute;
    top: 0;
    right: 26px;
    bottom: 0;
    margin: auto;
}
.normal-btn:hover{
    /*ボタンの形状*/
    border-color: transparent;
    color: #fff;
    /*背景の色と形状*/
    background-color:#99a3ff;
    /*ボックスの影*/   
    box-shadow: 3px 3px 8px #fff;
    text-shadow: none;
}


.normal-btn02 {
    position: relative;
    display: inline-block; 
    /*ボタンの形状*/
    padding: 2vh 60px;
    border-radius:70px;
    text-decoration: none;    
    color: #fff;
    /*アニメーションの指定*/ 
    transition: all 0.6s ease-out;
    text-shadow: 3px 3px 5px #000;
    background-color: rgba(0,0,0,0.6);
    /*その他*/ 
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}
.normal-btn02:hover{
    /*ボタンの形状*/
    border-color: transparent;
    color: #fff;
    /*背景の色と形状*/
    background-color:#99a3ff;
    /*ボックスの影*/   
    box-shadow: 3px 3px 8px #fff;
    text-shadow: none;
}

@media (min-width:991px) {
    .gradient-btn, .gradient-btn02, .gradient-btn03, .normal-btn, .normal-btn02 {
        font-size: 17px;
        width: 400px;
    }
}


/*===========================================================*/
/*機能編 6-1-3	ゆっくりズームアウトさせながら全画面で見せる*/
/*===========================================================*/
#slider {
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}



/*===========================================================*/
/*最低限おぼえておきたい動き*/
/*===========================================================*/

/*== 4-6　じわっ（ぼかしから出現） ==*/
.blur{
	animation-name: blurAnime;
	animation-duration:1.8s;
	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;
}

/* fadeIn */
.fadeIn {
  opacity: 0;
}

.fadeIn-up {
  animation: fadeIn-up 1s ease 1s 1 forwards;
  opacity: 0;
  animation-delay: .5s;
}

@keyframes fadeIn-up {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

/*4-8 スーッ（枠線が伸びて出現）*/

.lineTrigger{
  position: relative; /* 枠線が書かれる基点*/
  opacity:0;
}

.lineTrigger.lineanime{
	animation-name:lineAnimeBase;
	animation-duration:.3s;
	animation-fill-mode:forwards;
	max-width: 630px;
	margin: 0 auto;
}

@keyframes lineAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*上下線*/
.lineTrigger::before,
.lineTrigger::after{
  position: absolute;
  content: '';
  width:0;
  height:1px;
  background:#333;/* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after{
  position: absolute;
  content: '';
  width: 1px;
  height:0;
  background:#333;/* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
	top:0;
	left:0;
}

.lineTrigger.lineanime::before {
	animation: lineAnime .5s linear 0s forwards;/*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before{ 
	top:0;
	right:0;
}

.lineTrigger.lineanime .line2::before {
	animation: lineAnime2 .5s linear .5s forwards;/*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after { 
	bottom:0;
	right:0;
}

.lineTrigger.lineanime::after {
	animation: lineAnime .5s linear 1s forwards;/*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after{ 
	bottom:0;
	left:0;
}

.lineTrigger.lineanime .line2::after {
	animation: lineAnime2 .5s linear 1.5s forwards;/*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
	0% {width:0%;}
    100%{width:100%;}
}

@keyframes lineAnime2 {
	0% {height:0%;}
    100%{height:100%;}
}


/* 下から */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(80px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
.fadeUpTrigger{
    opacity: 0;
}


/*===========================================================*/
/* 印象編　8-11　テキストが1文字づつ出現*/
/*===========================================================*/

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 2s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}


/*========= ページネーションCSS ===============*/

.pagination {
	position:fixed;
	right:20px;
	top: 50%;
  	transform: translateY(-50%);
	font-size:1em;
	z-index: 10;
	list-style: none;
}

.pagination a {
	display:block;
	height:20px;
	margin-bottom:5px;
	color:#fff;
	position:relative;
	padding:4px;
}

.pagination a.active:after {
	box-shadow:inset 0 0 0 5px;
}

.pagination a .hover-text {
	position:absolute;
	right:15px;
	top:0;
	opacity:0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
}

.pagination a:hover .hover-text {
	opacity: 1;
}

.pagination a:after {
	-webkit-transition:box-shadow 0.5s ease;
	transition:box-shadow 0.5s ease;
	width:10px;
	height:10px;
	display: block;
	border:1px solid;
	border-radius:50%;
	content:'';
	position: absolute;
	margin:auto;
	top:0;
	right:3px;
	bottom:0;
}

@media screen and (max-width:768px) { 
	.pagination a .hover-text{
		display: none;
	}	
}
