@charset "utf-8";
/* CSS Document */

/*------------------------
ローディング
------------------------*/
#loading{
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
background-color: #ffffff;
background-image: url(../images/content_bg.png);
background-position: left top;
background-size: 50px auto;
z-index: 99999;
}
.animate #loading{
animation: loadingEnd 500ms linear forwards;
}

@keyframes loadingEnd{
0%{
visibility: visible;
opacity: 1;
}
100%{
visibility: hidden;
opacity: 0;
z-index: -1;
}
}
/*------------------------
／ローディング
------------------------*/





/*------------------------
ヘッダー
------------------------*/
header{
position: fixed;
top: 0;
right: 0;
left: 0;
background-color: #45bdcf;
transition: transform 200ms ease;
z-index: 100;
}
header.hide{
transform: translateY(-100%);
}
#headerWrap{
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
height: 90px;
}
header h1{
max-width: 240px;
flex: 1;
}
header h1 a{
display: block;
transition: opacity 200ms linear;
}
header h1 a:hover{
opacity: 0.7;
}
#menuOpen{
display: flex;
justify-content: center;
align-items: center;
width: 80px;
height: 80px;
padding: 0 12px;
margin-left: 10px;
background-color: #fff33f;
border: 4px solid #45bdcf;
border-radius: 50%;
cursor: pointer;
transition: transform 200ms ease;
}
header.hide #menuOpen{
transform: translateY(90px);
}

@media screen and (max-width: 999px){
#headerWrap{
height: 60px;
padding: 0 10px 0 20px;
}
header h1{
max-width: 180px;
}
#menuOpen{
width: 50px;
height: 50px;
padding: 0 8px;
border: 2px solid #45bdcf;
}
header.hide #menuOpen{
transform: translateY(60px);
}
}/*999*/



#menu{
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
opacity: 0;
visibility: hidden;
transition: all 0ms 500ms linear;
z-index: -1;
}
#menu.show{
opacity: 1;
visibility: visible;
transition-delay: 0ms;
z-index: 101;
}
#menuBg{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
/*backdrop-filter: blur(10px);*/
transition: opacity 200ms linear;
z-index: 1;
}
#menu.show #menuBg{
opacity: 1;
}
nav{
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 50%;
max-width: 740px;
padding: 30px;
background-color: #45bdcf;
transform: translateX(100%);
transition: transform 500ms ease-in-out;
z-index: 2;
/*-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.10);
box-shadow: 0px 0px 5px rgba(0,0,0,0.10);*/
border-left: 1px solid #ffffff;
overflow-y: scroll;
}
#menu.show nav{
transform: none;
}
nav>div{
display: flex;
justify-content: space-between;
align-items: center;
}
#menuLogo{
max-width: 240px;
flex: 1;
}
#menuLogo a{
display: block;
transition: opacity 200ms linear;
}
#menuLogo a:hover{
opacity: 0.7;
}
#menuClose{
max-width: 80px;
cursor: pointer;
margin-left: 10px;
}
nav ul{
margin: 60px 0 0;
}
nav ul li{
border-bottom: 1px solid #ffffff;
}
nav ul li a{
display: block;
text-decoration: none;
color: #ffffff;
font-size: 1.875rem;
line-height: 1.4;
font-weight: 800;
padding: 20px 0;
transition: opacity 200ms ease;
}
nav ul li a:hover{
opacity: 0.7;
}

@media screen and (max-width: 999px){
nav{
width: 100%;
max-width: 740px;
padding: 15px;
}
#menuLogo{
max-width: 180px;
}
#menuClose{
max-width: 45px;
}
nav ul{
margin: 20px 0 0;
}
nav ul li a{
font-size: 0.9375rem;
padding: 15px 0;
}
}/*999*/
/*------------------------
／ヘッダー
------------------------*/



/*------------------------
フッター
------------------------*/
footer{
position: relative;
background-color: #ffffff;
padding: 80px 0;
z-index: 99;
}
footer>div{
display: flex;
flex-direction: column;
align-items: center;
}
#appBtn{
position: fixed;
top: 200px;
right: 0;
overflow: hidden;
}
#appBtn a{
display: flex;
justify-content: center;
align-items: center;
width: 170px;
height: 100px;
color: #ffffff;
background-color: #ff7708;
font-size: 1.125rem;
text-decoration: none;
text-align: center;
font-weight: 600;
line-height: 1.3;
border-top: 4px solid #ffffff;
border-bottom: 4px solid #ffffff;
border-left: 4px solid #ffffff;
border-bottom-left-radius: 20px;
border-top-left-radius: 20px;
transition: width 200ms ease, padding 200ms ease;
}
#appBtn a:hover{
width: 180px;
padding-right: 10px;
}
#appBtn a::before{
content: '';
display: block;
width: 50px;
height: 52px;
background-image: url(../images/app_icon.png);
background-repeat: no-repeat;
background-position: center center;
background-size: 100% auto;
margin-right: 5px;
}
#pagetop{
position: fixed;
right: 20px;
bottom: 20px;
width: 120px;
height: 120px;
opacity: 0;
visibility: hidden;
transform: translateX(20px);
transition: opacity 500ms ease, visibility 500ms ease, transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}
#pagetop.show{
opacity: 1;
visibility: visible;
transform: none;
}
#pagetop a{
display: flex;
justify-content: center;
align-items: center;
background-color: #ff7708;
height: 100%;
border-radius: 50%;
padding: 12.5% 15% 0;
transition: transform 200ms ease;
}
#pagetop a:hover{
transform: scale(1.1);
}
#footerLogo{
max-width: 280px;
}
#footerLogo a{
display: block;
transition: opacity 200ms linear;
}
#footerLogo a:hover{
opacity: 0.7;
}
#footerSns{
margin-top: 30px;
}
#footerSns ul{
display: flex;
justify-content: center;
align-items: center;
}
#footerSns ul li{
width: 35px;
margin: 0 10px;
}
#footerSns ul li a{
display: block;
transition: opacity 200ms linear;
}
#footerSns ul li a:hover{
opacity: 0.7;
}
#copy{
font-size: 11px;
text-align: center;
margin: 3em 0 0;
}

@media screen and (max-width: 999px){
footer{
padding: 40px 0;
}
footer>div{
padding: 0 20px;
}
#appBtn{
top: 80px;
}
#appBtn a{
/*flex-direction: column;*/
width: 30px;
height: 150px;
font-size: 0.75rem;
border-top: 2px solid #ffffff;
border-bottom: 2px solid #ffffff;
border-left: 2px solid #ffffff;
border-bottom-left-radius: 10px;
border-top-left-radius: 10px;
writing-mode: vertical-rl;
}
#appBtn a:hover{
width: 30px;
padding-right: 0;
}
#appBtn a::before{
width: 20px;
height: 22px;
margin-right: 0;
margin-bottom: 3px;
}
#pagetop{
right: 10px;
bottom: 10px;
width: 60px;
height: 60px;
transform: translateX(10px);
}
#footerLogo{
max-width: 260px;
}
#footerSns ul li{
width: calc(20% - 20px);
max-width: 35px;
}
#copy{
font-size: min(3.5vw, 11px);
}
}/*999*/
/*------------------------
／フッター
------------------------*/





#tour{
display: flex;
flex-direction: column;
align-items: center;
padding: 100px 0 130px;
background-color: #45bdcf;
color: #3f3a39;
}
#tour h2{
position: relative;
font-size: 2rem;
line-height: 1.5;
text-align: center;
color: #ffffff;
background-color: #45bdcf;
font-weight: 800;
padding: 15px 70px;
border: 4px solid #ffffff;
border-radius: 100rem;
transform: translateY(50%);
z-index: 2;
}
#tourBox{
position: relative;
width: 1000px;
background-color: #ffffff;
padding: 90px 50px 80px;
border-radius: 30px;
z-index: 1;
}
#tourBox h3{
font-size: 2.75rem;
line-height: 1.5;
text-align: center;
font-weight: 800;
}
#tourDate{
display: flex;
justify-content: center;
align-items: center;
max-width: 745px;
margin: 30px auto 0;
}
#tourDate .date{
width: 40%;
max-width: 310px;
}
#tourDate .time{
width: calc(55% + 20px);
max-width: 410px;
padding-left: 20px;
}
#tour .btn{
max-width: 600px;
margin: 40px auto 0;
}
#tour .btn a{
position: relative;
display: flex;
justify-content: center;
align-items: center;
color: #3f3a39;
font-size: 1.875rem;
line-height: 1.5;
font-weight: 800;
background-color: #fff33f;
text-align: center;
text-decoration: none;
border: 4px solid #45bdcf;
border-radius: 100rem;
height: 100px;
padding: 0 80px;
-webkit-box-shadow: 10px 10px 0 #45BDCF;
box-shadow: 10px 10px 0 #45BDCF;
transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
#tour .btn a:hover{
background-color: #ffffff;
transform: translate(5px, 5px);
-webkit-box-shadow: 5px 5px 0 #45BDCF;
box-shadow: 5px 5px 0 #45BDCF;
}
#tour .btn a::after{
content: '';
display: block;
width: 40px;
height: 30px;
position: absolute;
top: 50%;
right: 30px;
transform: translateY(-50%);
background-image: url(../images/arrow_blue.png);
background-repeat: no-repeat;
background-position: center center;
background-size: 100% auto;
}

@media screen and (max-width: 999px){
#tour{
padding: 3% 20px 12%;
}
#tour h2{
width: calc(100% - 40px);
font-size: min(4.8vw, 1.5rem);
padding: 10px 20px;
border: 2px solid #ffffff;
}
#tourBox{
width: 100%;
padding: 4em 10px 30px;
border-radius: 20px;
}
#tourBox h3{
font-size: min(5.5vw, 1.5rem);
}
#tourDate{
display: block;
margin: 20px auto 0;
padding: 0 10px;
}
#tourDate .date{
width: 70%;
/*max-width: 200px;*/
margin: 0 auto;
}
#tourDate .time{
width: 90%;
/*max-width: 270px;*/
padding-left: 0;
padding-top: 10px;
margin: 0 auto;
}
#tour .btn{
max-width: 300px;
margin: 30px auto 0;
padding: 0 10px;
}
#tour .btn a{
height: auto;
font-size: 1.125rem;
padding: 15px 20px;
border: 2px solid #45bdcf;
-webkit-box-shadow: 5px 5px 0 #45BDCF;
box-shadow: 5px 5px 0 #45BDCF;
}
#tour .btn a:hover{
transform: translate(3px, 3px);
-webkit-box-shadow: 2px 2px 0 #45BDCF;
box-shadow: 2px 2px 0 #45BDCF;
}
#tour .btn a::after{
width: 20px;
height: 15px;
right: 15px;
}
}/*999*/





#pageTitle{
position: relative;
width: calc(100% - 100px);
margin: 0 auto;
padding: 550px 0 0;
border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px;
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
#pageTitle>div{
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 90px;
right: 0;
bottom: 0;
left: 0;
}
#pageTitle h2{
font-size: 3rem;
font-weight: 800;
line-height: 1.5;
color: #45bdcf;
text-align: center;
background-color: #ffffff;
border-radius: 100rem;
padding: 20px 80px;
}

@media screen and (max-width: 999px){
#pageTitle{
width: calc(100% - 40px);
padding: 70% 0 0;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
#pageTitle>div{
top: 60px;
}
#pageTitle h2{
font-size: 1.5rem;
padding: 10px 40px;
}
}/*999*/