@charset "utf-8";
/*ローディング*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #EEE7BB;
	z-index: 9999999;
	text-align:center;
}
#splash-text {
	position: relative;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.splash-logo{
    position: absolute;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 60%;
    max-width: 250px;
    z-index: 2;
}
#splash-text .name-en{
    position: absolute;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    color: #E4D78E;
    z-index: 1;
}
/*画面遷移アニメーション*/
.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: #CCB329;
	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;
    }
}
/* ナビゲーション */
#g-nav{
    position:fixed;
    z-index: 999;
	top: -120%;
    left: 0;
	width: 100%;
    height: 100vh;
	background: #EEE7BB;
	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: #684F31;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    font-weight: 700;
}
.g-nav-main li{
    margin-bottom: 20px;
}
.g-nav-logo{
    width: 200px;
}
.g-nav-main li:first-of-type{
    margin-bottom: 30px;
}
.insta-icon{
    width: 30px;
}
.g-nav-main .insta-icon{
    margin: 0 auto 20px;
}
.information{
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.info-detail{
    display: flex;
    align-items: center;
    line-height: 1;
}
.info-detail p:first-of-type{
    margin-right: 1.5rem;
}
.hours,
.phone-number{
    font-size: 150%;
}
.day-of-week{
    font-size: 90%;
    font-weight: 400;
}
#g-nav .name-en{
    color: #E4D78E;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 380px) {
    .g-nav-logo{
        width: 180px;
    }
    .g-nav-main li:first-of-type{
        margin-bottom: 20px;
    }
    .g-nav-main li{
        margin-bottom: 15px;
    }
    .g-nav-main .insta-icon{
        margin: 0 auto 15px;
    }
    .information{
        gap: 10px;
    }
}
/* ボタンの変化*/
.openbtn{
	position: fixed;
    top: 0;
    right: 0;
    background-color: #CCB329;
	cursor: pointer;
    width: 100px;
    height: 100px;
    z-index: 9999;
}
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    border-radius: 1px;
	background-color: #fff;
  }
.openbtn span:nth-of-type(1) {
	top: 40%;
}
.openbtn span:nth-of-type(2) {
	top: 50%;
    transform: translateX(-50%);
}
.openbtn span:nth-of-type(3) {
	top: 60%;
}
/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span:nth-of-type(1) {
    top: 45px;
    left: 24px;
    transform: translateY(6px) rotate(-135deg);
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 57px;
    left: 24px;
    transform: translateY(-6px) rotate(135deg);
}
@media screen and (max-width: 550px) {
    .openbtn{
        width: 80px;
        height: 80px;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 35px;
        left: 20px;
    }
    .openbtn.active span:nth-of-type(3){
        top: 47px;
        left: 20px;
    }
}
/* ヘッダー */
#header{
	position: fixed;
	height: 100px;
	width: 100%;
    z-index: 9;
    background: #fff;
}
h1{
    position: absolute;
    top: 1rem;
    left: 30px;
}
h1 img{
    width: 180px;
}
#pc-nav ul{
    position: absolute;
    top: 50%;
    right: 10%;
	list-style: none;
	display: flex;
	justify-content: center;
    align-items: center;
    gap: 30px;
}
#pc-nav li a{
	transition: all 0.3s;
    font-weight: 700;
    text-align: center;
    color: #684F31;
}
#pc-nav li.current a,
#pc-nav li a:hover{
    color: #CCB329;
}
@media screen and (max-width: 1100px) {
    #pc-nav{
        display: none;
    }
}
@media screen and (max-width: 550px) {
    #header{
        height: 80px;
    }
    h1{
        top: .8rem;
        left: 20px
    }
    h1 img{
        width: 150px;
    }
}
/* メインビジュアル */
#top-main{
    width: 90%;
    height: 100vh;
    position: relative;
    background: url(../assets/mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    margin: 0 auto;
    z-index: -1;
}
.top-copy{
    width: 80%;
    max-width: 500px;
    position: absolute;
    top: 70%;
    left: 24%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
#top-main .name-en{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX( -50%);
    z-index: 1;
    text-transform: uppercase;
    color: #C7BFB6;
}
@media screen and (max-width: 1300px) {
    .top-copy{
        left: 30%;
    }
}
@media screen and (max-width: 1024px) {
    .top-copy{
        top: 70%;
        left: 50%;
    }
}
@media screen and (max-width: 450px) {
    .top-copy{
        top: 65%;
    }
}
/* ページトップ */
#page-top {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 9;
	opacity: 0;
	transform: translateY(200px);
    width: 50px;
    height: 50px;
}
#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);
  }
}
@media screen and (max-width: 450px) {
    #page-top {
	    right: 1rem;
        bottom: 1rem;
    }
}
/*---スクロールアニメーション---*/
/* ズームイン */
.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: 1s;
	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: 1s;
	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: 550px) {
    .br-sp{
        display: block;
    }
}
/* 電話リンク */
@media (min-width: 767px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}