@charset "utf-8";

/*===========================================================*/
/*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:1s;
    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:1s;
    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:0.8s;
  animation-delay:0.1s;
  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: rgba(77, 33, 20, 0.9);
    /*動き*/
    transition: all 0.6s;
    line-height: 1.2;
    font-size: 17px;
    letter-spacing: 0.1rem;
    font-family: 'Marcellus', Garamond, "Big Caslon", "Times New Roman", serif;
    backdrop-filter: blur(2px);
}

/*アクティブクラスがついたら位置を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;
}

/*横幅が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: 35%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 55vw;
}

/*リストのレイアウト設定*/

#g-nav li{
    list-style: none;
    border-bottom: solid 0.25px #fff;
    font-size: 14px;
}

#g-nav li a{
    color: #fff;
    text-decoration: none;
    padding:20px 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: bold;
    transition: all .5s;
}

#g-nav li a:hover{
    color:#ccc;
}

.ja {
    font-size: 12px;
    font-weight: normal;
}

/* 3本線が×に*/
.openbtn{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: #00afa1;
}

/*ボタン内側*/
.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:15px;
    left:7px;
    font-size:0.75rem;
    text-transform: uppercase;
    color: #fff;
}

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

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 19px;
    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: 32px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    opacity: 1;
}


/*===========================================================*/
/* global_menu */
/*===========================================================*/
.g-navi-pc {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
}
.nav-pc-logo img {
    width: 260px;
    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: 14px;
    padding: 0 30px;
    transition: .3s;
    color: #000;
    font-family: 'Marcellus', Garamond, "Big Caslon", "Times New Roman", serif;
    letter-spacing: 3px;
}
.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 (max-width:1300px){
    #globalMenu {
        padding: 0 30px;
    }
    .g-navi-pc a {
        padding: 0 15px;
        font-size: 12px;
    }
}


/*===========================================================*/
/* button */
/*===========================================================*/

.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(190,170,40,0.8);
    /*その他*/
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}
/*hoverした際、グラデーションと影を付ける*/
.gradient-btn:hover{
    /*ボタンの形状*/
    border-color: transparent;
    color: #fff;
    /*背景の色と形状*/
    background-color:hsla(174,0%,100%,1);
    background-image:
    radial-gradient(at 93% 0%, hsla(164,70%,53%,1) 0px, transparent 50%),
    radial-gradient(at 40% 20%, hsla(164,69%,57%,1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsla(172,98%,55%,1) 0px, transparent 50%),
    radial-gradient(at 92% 49%, hsla(164,54%,48%,1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsla(167,50%,53%,1) 0px, transparent 50%),
    radial-gradient(at 80% 100%, hsla(164,81%,38%,1) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(167,100%,89%,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(230,100,60,1);
    /*その他*/ 
    text-align: center;
    width: 100%;
    font-size: 14px;
}
/*.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:#cd9c3d;
    /*ボックスの影*/   
    box-shadow: 3px 3px 8px #fff;
    text-shadow: none;
}


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

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

/*== じわっ（ぼかしから出現） ==*/
.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;
}

/* 下から */
.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;
}

/* 右から */

.fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRightTrigger{
    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);
  }
}

/*===========================================================*/
/* Outline-枠線 */
/*===========================================================*/
.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%;}
}

/*===========================================================*/
/*テキストが1文字づつ出現*/
/*===========================================================*/

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

/*===========================================================*/
/*countdown-timer*/
/*===========================================================*/
.cd-timer{
    padding: 10px;
    display: flex;
    justify-content: center;
    opacity: 0.95;
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5);
}
#CDT {
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
}
.cd-bg {
    display: none;
}
@media (min-width: 991px) {
    .cd-timer{
        padding: 0;
    }
    #CDT {
        text-align: right;
    }
    .cd-text {
        color: #fff;
        position: absolute;
        right: 20px;
        bottom: 15px;
        z-index: 10;
    }
    .cd-bg {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        max-width: 500px;
    }
}