@charset "UTF-8";

/* 共通部分
----------------------------------------------------------------------------------*/
html{
    font-size: 100%;
}
body{
    font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
    line-height: 1.7;
    color: #000;
    background-color: #fff;
    animation: body 1s 1 linear;
}
@keyframes body{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}

/* レイアウト
------------------------------------------------------------------------------------ */
.wrapper{
    max-width: 1100px;
    margin: 0 auto; 
    padding: 0 1.5rem;
    
}
.body-wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 見出し
--------------------------------------------------------------------------------------- */


.font-english400{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-english600{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

/* ボタン
----------------------------------------------------------------------------------- */
.img-wrap a {
    display: inline-block;
    color: #333;
    background: transparent;
    padding: .75rem 1.2rem .75rem 1.7rem;
    border: 1px solid #333;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    transition: .3s;
    margin-top: .5rem;
    
}
.img-wrap a::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #333;
    transform-origin: 0% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.img-wrap a:hover {
    color: #fff;
}
.img-wrap a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}


/* メニューボタン */
.menu-btn{
    position: absolute; 
    top: 21px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after{
    content: '';
    display: block;
    height: 1px;
    width: 22px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
}
.menu-btn span::before{
    bottom: 7px;
}
.menu-btn span::after{
    top: 7px;
}
#menu-btn-check:checked ~ .menu-btn span{
    background-color: rgb(255, 255, 255, 0);/* メニューオープン時は真ん中の線を透明にする */
}
#menu-btn-check:checked ~ .menu-btn span::before{
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after{
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check{
    display: none;
}

/* メニューの装飾 */
.hmenu-content{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #8c8a8a;
    transition: all 0.5s;
}
.hmenu-content ul{
    padding: 70px 10px 0;
}
.hmenu-content ul li{
    border-bottom: solid 1px #fff;
    list-style: none;
}
.hmenu-content ul li a{
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.hmenu-content ul li a::before{
    content: '';
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
#menu-btn-check:checked ~ .hmenu-content{
    left: 0;
}


/* ヘッダー
------------------------------------------------------------------------------------- */
.page-header{
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    width: 85px;
}

.page-header nav{
    display: none;
}

/* HOME
------------------------------------------------------------------ */
.top-wrapper{
    margin: 4rem .3rem 10rem;
}
.home-top-p{
    display: none;
}

.home-top{
    margin-bottom: 6rem;
}

.m-label-set .label{
    font-size:1.5rem
}
.m-label-set{
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}
.txts-wrap{
    max-width: 736px;
    padding: 0 1.5rem;
    margin: 3rem 0 3rem;
}
.about-txts-body{
    padding-bottom: 8rem;
}
.txt-ja{
    padding-top: 1.5rem;
}
.home-about,
.home-access{
    background-color: rgb(238, 238, 238);
}

.img-1,
.img-2,
.img-3,
.img-4,
.img-5,
.img-6{
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    
}
.img-wrap{
    font-size: .8rem;
    padding-bottom: 1.5rem;
    text-align: end;
}


.home-access-body,
.home-about-body{
    padding-top: .5rem;
}
.home-access .m-label-set{
    padding-bottom: 1.5rem;
}
.access-label{
    font-size: 1rem;
}
.access-txts-body p{
    padding: .3rem 0 2rem;
}

iframe{
    max-width: 720px;
    width: 100%;
}
.location-map{
    margin:0 1.5rem 0;
    padding-bottom: 8rem;
}

/* ふわっと */
.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;
}


/* EVENT
--------------------------------------------------------------------------------------------------------- */
.event-event{
    padding: 4rem 1rem 7rem;
    margin: 0 auto;
}
.img-label{
    text-align: center;
    padding: .5rem 1rem 1.5rem;
}
.e-img{
    padding: 2rem 2.5rem 2.8rem;
    margin-bottom: 2rem;
    border-width: 1px;
    border-style: solid;
}
.e-img p{
    padding-top: 2rem;
    text-align: start;
}

/* ACCESS
--------------------------------------------------------------------------------------------- */
.acess-wrapper-acess{
    max-width: 450px;
    padding: 2.5rem 1.5rem 2rem;
    border-width: 1px;
    border-style: solid;
    margin: 0 auto;margin-top: 5rem;
}
.access-map{
    padding-top: 3rem;
    margin: 0 auto;
    align-items: center;
}
.access-txts-access{
    padding-bottom: 2rem;
}
/* CONTACT
----------------------------------------------------------------------------------------------- */
.contact-top{
    background-color:  rgb(238, 238, 238);
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}
.contact-txts{
    padding: 4rem 1rem 7rem;
    margin: 0 auto;
}
.contact-h3{
    font-size: 1.1rem;
    padding: 0 .7rem .7rem .5rem;
    text-align: center;
}
.contact-p{
    max-width: 450px;
    padding: 2rem 1.5rem;
    border-width: 1px;
    border-style: solid;
    margin: 0 auto;

}

/* フッター
---------------------------------------------------------------------- */
.copyright{
    background-color: #242424;
    text-align: center;
    padding: 4rem 0;
    color: #fff;
}
footer{
    margin-top: auto;
}


/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#fff;
	text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width:300px;
}

/* デスクトップ版
----------------------------------------------------------------------------------------------- */
@media(min-width: 767px){

    /* ヘッダー ----------------------------------*/
    .page-header{
        padding-top: 3rem;
    }
    .page-header nav{
        display: flex;
    }
    .hamburger-menu{
        display: none;
    }
    .main-nav{
        list-style: none;
        display: flex;
        gap: 1.5rem;
        font-size: 1.4rem;
        
    }
    .main-nav a{
        color: #000;
    }
    .main-nav a:hover{
        border-width: 0 0 1px 0;
        border-style: solid;
    }
    .logo{
        width: 130px;
    }

    /* home------------------------------------ */
    .top-wrapper{
        margin: 5rem 0 12rem;
    }
    .home-top-m{
        display: none;
    }
    .home-top-p{
        display: flex;
    }

    .home-top{
        margin-bottom: 5rem;
    }
    
    .m-label-set .num{
        position: relative;
        display: block;
        font-size: 1.4rem;
    }
    .m-label-set .label{
        font-size:2.5rem
    }
    .home-about .txts-wrap,
    .home-access .txts-wrap{
        display: flex;
    }
    .about-txts-body,
    .access-txts{
        padding: 4.5rem 0 0 12rem;
    }
    .txt-ja{
        font-size: 1.3rem;
    }
    
    .access-txts,
    .access-label{
        font-size: 1.3rem;
    }
    .home-about-body{
        margin-bottom: 1rem;
        padding-bottom: 5rem;
    }
    .txts-wrap{
        max-width: 1100px;
        padding: 1rem 1.5rem;
        margin: 3rem 0 3rem;
    }
    .txt-ja{
        font-size: 1.3rem;
        padding-top: 0;
    }
    .home-event .m-label-set{
        padding-bottom: 1rem;
    }
    .img-wrap{
        display: grid;
        gap: 2rem 1.5rem;
        grid-template-columns: repeat(3,minmax(0,1fr));
        text-align: center;
        font-size: 1.1rem;
        padding-bottom: 5rem;
    }
    .img-1,
    .img-2,
    .img-3,
    .img-4,
    .img-5,
    .img-6{ 
        aspect-ratio: 1/1;
        object-fit: cover;
        padding-top: 1rem;
        padding-bottom: 2rem;
    }
    .location-map{
        margin:0 1.5rem 0 24rem;
        padding-bottom: 10rem;
    }

    /* EVENT----------------------------------------------- */

    .access-map{
        padding-top: 3rem;
        margin: 0 auto;
        align-items: center;
    }

    /* CONTACT-------------------------------------------- */
    .contact-top{
        background-color:  rgb(238, 238, 238);
        padding: 2.5rem 0;
        margin-top: 2.5rem;
        font-size: 2rem;
    }
    .contact-txts{
        padding: 7rem 0 ;
    }
    .contact-h3{
        font-size: 1.5rem;
    }
    .contact-p{
        max-width: 700px;
        font-size: 1.3rem;
        padding: 3rem 5.3rem;
    }

    /* フッター------------------------------------------------ */
    .copyright{
        padding: 6rem 0;
    }

    /* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width:800px;
}
}