@charset "utf-8";
/*ローディング*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #FDFDE3;
	z-index: 9999999;
	text-align:center;
}
#splash-logo{
    width: 100%;
    position: absolute;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    z-index: 2;
}
#splash-logo img{
    width: 35%;
    max-width: 200px;
}
.logo-text{
    margin-top: 20px;
    text-align: center;
    line-height: 1.3;
}
.logo-text span{
    display: inline-block;
    margin-bottom: 10px;
}
.deco{
    position: relative;
    z-index: 3;
}
.deco img{
    display: block;
}
.maru_green{
    position: fixed;
    top: 0;
    left: 0;
}
.maru_blue{
    position: fixed;
    bottom: 0;
    left: 0;
}
.maru_pink{
    position: fixed;
    top: 0;
    right: 0;
}
.maru_orange{
    position: fixed;
    bottom: 0;
    right: 0;
}
/*画面遷移アニメーション*/
.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: #F6AA32;
	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: 1024px) {
    body.appear .deco{
        display: none;
    }
}
@media screen and (max-width: 450px) {
    .maru_green,
    .maru_blue,
    .maru_pink,
    .maru_orange{
        width: 40%;
    }
}
/* ナビゲーションとハンバーガーボタン */
#header{
	position: fixed;
	height: 100px;
	width: 100%;
    z-index: 9999;
    margin-left: auto;
}
#g-nav{
    position:fixed;
    z-index: 999;
	top: -120%;
    left: 0;
	width: 100%;
    height: 110vh;
	background: url("../images/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -50px;
	transition: all 0.6s;
}
#g-nav.panelactive{
    top: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 110vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list{
     display: block;
}
#g-nav.panelactive #footer{
    z-index: -1;
}
/*ナビゲーション*/
#g-nav ul.g-nav-main{
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
#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;
    line-height: 1.5;
}
.g-nav-main li a{
    color: #58380E;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    font-weight: 500;
}
.g-nav-main li{
    margin-bottom: 20px;
}
.g-nav-main li:first-of-type{
    line-height: 1.3;
    margin-bottom: 40px;
}
.g-nav-main li:first-of-type span{
    margin-bottom: -10px;
}
.sns-list{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.sns-list img{
    width: 30px;
}
#g-nav .sns-list{
    margin-top: 50px;
}
.information{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.information a{
    text-decoration: underline;
}
/*@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;
	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: 2px;
    border-radius: 1px;
	background-color: #58380E;
  }
.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: 820px) {
    .openbtn{
        background-color: #FF818C;
        border-radius: 50%;
        top: .5rem;
        right:.5rem;
    }
    .openbtn.active{
        background-color: transparent;
    }
}
@media screen and (max-width: 550px) {
    .openbtn{
        width: 70px;
        height: 70px;
    }
    .openbtn.active{
        background-color: transparent;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 28px;
        left: 17px;
    }
    .openbtn.active span:nth-of-type(3){
        top: 40px;
        left: 17px;
    }
}
/* メインビジュアル */
#top-main{
    position: relative;
    background: url("../images/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 110vh;
    overflow: hidden;
    top: -50px;
    z-index: 9;
}
h1{
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX( -50%);
    z-index: 2;
    font-weight: 500;
    font-size: 150%;
}
h1 a{
    color: #58380E;
    display: block;
    text-align: center;
}
h1 img{
    width: 150px;
}
h1 .logo-text{
    font-size: 70%;
    margin-top: 0;
}
.flag-left,
.flag-right{
    position: absolute;
    top: 50px;
    width: 45%;
    z-index: 2;
}
.flag-left{
    left: 0;
}
.flag-right{
    right: 0;
}
.mv-img-left{
    position: absolute;
    width: 25%;
    top: 15%;
    left: 8%;
    z-index: 1;
}
.mv-img-center{
    position: absolute;
    width: 22%;
    top: 43%;
    left: 45%;
    transform: translateX( -50%);
    z-index: 1;
}
.mv-img-right{
    position: absolute;
    width: 32%;
    top: 16%;
    right: 8%;
    z-index: 1;
}
#pc-nav ul{
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate( -50%, -50%);
	list-style: none;
	display: flex;
	justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    z-index: 2;
    width: 100%;
}
#pc-nav li{
    position: relative;
    padding: 0 5px;
    line-height: 1.5;
}
#pc-nav li:first-of-type::before{
    content:'';
    position: absolute;
    border-right: 1px dashed #58380E;
    width: 1px;
    height: 50px;
    top: 0;
    left: calc(0% - 15px);
}
#pc-nav li::after{
    content:'';
    position: absolute;
    border-right: 1px dashed #58380E;
    width: 1px;
    height: 50px;
    top: 0;
    left: calc(100% + 15px);
}
/*#pc-nav li:last-of-type::after{
    content: none;
}*/
#pc-nav li a{
	transition: all 0.3s;
    color: #58380E;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}
#pc-nav .sns-list{
    position: absolute;
    top: 90%;
    right: 20%;
}
.scroll{
    position: absolute;
    top: 55%;
    left: 60px;
    width: 12%;
    min-width: 150px;
    z-index: 2;
}
#about{
    position: relative;
    padding-top: 22vh;
}
#about::before{
    content: '';
    background: url("../images/mv-bg-bottom.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -55px;
    width: 100%;
    height: 20vh;
    background-position-x: center;
    z-index: 9;
}
@media screen and (max-width: 1024px) {
    #top-main{
        height: 55vh
    }
    #pc-nav ul{
        top: 88%;
    }
    #pc-nav .sns-list{
        top: 94%;
        right: 10%;
    }
    .scroll{
        top: 48%;
        left: 40px;
        width: 10%;
    }
    #about{
        padding-top: 15vh;
    }
    #about::before{
        height: 12vh;
    }
}
@media screen and (max-width: 1023px) {
    #pc-nav ul{
        display: none;
    }
    #pc-nav .sns-list{
        top: 90%;
    }
    #about{
        padding-top: 12vh;
    }
    #about::before{
        height: 10vh;
    }
}
@media screen and (max-width: 820px) {
    .mv-img-left{
        left: 5%;
    }
    .mv-img-center{
        top: 55%;
    }
    .mv-img-right{
        top: 24%;
        right: 5%;
    }
}
@media screen and (max-width: 550px) {
    h1 img{
        width: 100px;
    }
    .mv-img-left{
        top: 22%;
        width: 30%;
    }
    .mv-img-center{
        top: 60%;
        width: 30%;
    }
    .mv-img-right{
        top: 30%;
        width: 35%;
    }
    .scroll{
        top: 55%;
        left: 20px;
        min-width: 100px;
    }
}
@media screen and (max-width: 450px) {
    h1{
        font-size: 120%;
    }
     h1 img{
        width: 80px;
    }
    .mv-img-left{
        top: 22%;
        width: 30%;
    }
    .mv-img-center{
        top: 60%;
        width: 30%;
    }
    .mv-img-right{
        top: 36%;
        width: 35%;
    }
    .scroll{
        min-width: 85px;
    }
    #about{
        padding-top: 5vh;
    }
    #about::before{
        height: 6vh;
    }
}
/*---スクロールアニメーション---*/
/* ズームイン */
.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;
  }
}
/* br */
.br-sp375,
.br-sp,
.br-tab{
    display: none;
}
@media screen and (max-width: 820px) {
    .br-tab{
        display: block;
    }
    .br-pc{
        display: none;
    }
}
@media screen and (max-width: 550px) {
    .br-pc02{
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .br-sp{
        display: block;
    }
}
@media screen and (max-width: 375px) {
    .br-sp375{
        display: block;
    }
}
/* 電話リンク */
@media (min-width: 767px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}