@charset "utf-8";

html{
    font-size: 100%;
    scroll-padding-top: 150px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    color: #24292e;
    font-family: "Mochiy Pop One", sans-serif;
}

a{
    text-decoration: none;
    color: #333;
}

p{
    font-size: 1.3rem;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
    font-size: 1.2rem;
}


/* header */
.header{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.9);
}

.header-icon{
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 150;
}

.header-icon a p{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.header-icon:hover{
    opacity: 0.5;
}

.header-navlist{
    display: flex;
    position: absolute;
    bottom: 30px;
    right: 10px;
}

.header-nav-item{
    padding: 0 10px;
}

.header-nav-item:hover{
    opacity: 0.5;
}

.menu-modal-open-button{
    display: none;
    cursor: pointer;
}

.menu-modal-open{
    content: "";
    position: absolute;
    z-index: 999;
    top: 70px;
    right:30px;
    width: 25px;
    display: block; 
}

.menu-modal-open i{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - 5px);
    width: 100%;
    height: 2px;
}

.menu-modal-open::before{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - 10px);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.menu-modal-open::after{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - 0px);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.menu-modal-open.modal-expanded-state i{
    display: none;
}

.menu-modal-open.modal-expanded-state::before{
    background-color: #24292e;
    transform: rotate(45deg);
    transition: .25s;
    top: 0px;
}

.menu-modal-open.modal-expanded-state::after{
    background-color: #24292e;
    transform: rotate(-45deg);
    transition: .25s;
}


.menu-modal-overlay{
    display: none;
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.menu-modal-container{
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 100px 0 20px;
    right: 0;
    width: 100%;
}

.menu-modal-item{
    padding: 20px;
    border-bottom: 1px solid #24292e;
}

.menu-modal-item:hover{
    opacity: 0.5;
}

.menu-modal-item>a{
    display: flex;
    justify-content: space-between;
    color: #333;
    font-size: 1.5rem;
}

.menu-modal-contact{
    margin: 20px 0;
    text-align: center;
}

.menu-modal-contact:hover{
    opacity: 0.5;
}

.menu-modal-contact>a>p{
    margin: 0 auto;
    padding: 5px 0;
    border-radius: 15px;
    width: 80%;
    background-color: #FDE6D4;
}

@media screen and (max-width: 800px) {
    .header-navlist{
        display: none;
    }
    .menu-modal-open-button{
        display: block;
    }
}

@media screen and (max-width: 480px) {    
    .header-logo{
        top: 15px;
        width: 200px;
    }
}


/* base section */
.wrapper{
    max-width: 960px;
    margin: 0 auto 130px auto;
    font-size: 0.9rem;
    padding: 0 4%;
}
.sec-title{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 65px;
}

.page-blank{
    height: 120px;
}

.wrapper.page-title{
    margin: 10px auto 20px;
    padding: 10px;
    background-color: #FDE6D4;
    border-radius: 5px;
    text-align: center;
    font-size: 2.0rem;
}

.wrapper.page-content{
    padding-top: 10px;
    min-height: 500px;
}

.wrapper.pankuzu{
    margin-bottom: 20px;
}

.pankuzu a:hover{
    opacity: 0.5;
}

/* background */
.background{
    position: fixed;
    z-index: -1;
    opacity: 0.2;
}

.background img{
    width: 100vw;
}

.bg-sp{
    display: none;
}

@media screen and (max-width: 800px) {
    .bg-pc{
        display: none;
    }
    .bg-sp{
        display: block;
    }
    .wrapper.page-title{
        margin: 0 auto 20px;
        border-radius: 0;
    }
}

@media screen and (max-width: 480px) {
    .wrapper.pankuzu{
        font-size: 0.6rem;
    }
}

/* about*/
.top-wrapper{
    padding-top: 30px;
    position: relative;
    z-index: 0;
}

#about ul{
    margin-bottom: 30px;
}

#about ul li{
    margin-bottom: 3px;
}

#about ul li:first-child{
    font-size: 0.8rem;
}

@media screen and (max-width: 800px) {
    #about p{
        font-size: 1.0rem;
    }
}

@media screen and (max-width: 480px) {
    #about p{
        font-size: 0.8rem;
    }
}

/* news */
.news-box{
    border-top: 1px solid #24292e;
    margin-bottom: 20px;
}

.news-item{
    display: flex;
    flex-wrap: wrap;
}

.news-item:hover{
    opacity: 0.5;
}

.news-date{
    width: 20%;
    border-bottom: 1px solid #24292e;
    padding: 15px;
}

.news-title{
    width: 80%;
    border-bottom: 1px solid #24292e;
    padding: 15px;
}

.news-noPost{
    font-size: 1.0rem;
}

.news-goList{
    font-size: 1.0rem;
    margin-left: 10px;
}

@media screen and (max-width: 800px) {
    .news-item{
        flex-direction: column;
    }

    .news-date{
        width: 100%;
        border-bottom: none;
        padding: 0;
    }

    .news-title{
        width: 100%;
        padding-top: 0;
    }
}

@media screen and (max-width: 480px) {
    
}

/* facility */
.floor-plan{
    margin: 0 auto;
}

.map-none{
    position: relative;
}

.area1,.area2,.area3,.area4,.area5{
    position: absolute;
    top: 50px;
    left: 200px;
    cursor: pointer;
    display: inline-block;
    color: rgba(0, 0, 0, 0);
}

.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 99;
}

.modal-window-1,.modal-window-2,.modal-window-3,.modal-window-4,.modal-window-5{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 600px;
    background-color: #f8e58c;
    border-radius: 10px;
    z-index: 150;
    padding: 20px;
    overflow-y: scroll;
}

.floor-modal-closed{
    position: absolute;
    width: 40px;
    top: 20px;
    right: 20px;
    border-radius: 50%;
    padding: 5px;
    background-color: #000;
}

#facility h4{
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.facility-box-sp{
    display: none;
    text-align: center;
}

.facility-box-sp-list{
    margin: 0 auto;
    border-spacing: 40px;
}

.facility-box-sp-list>tbody>tr>th{
    font-size: 1.2rem;
    width: 120px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid #333;
    border-radius: 5px;
}

@media screen and (max-width: 866px) {
    .map-none{
        display: none;
    }
    .floor-plan h3{
        display: none;
    }
    .facility-box-sp{
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .facility-box-sp-list>tbody>tr>th{
        font-size: 0.8rem;
    }
    .modal-window-1,.modal-window-2,.modal-window-3,.modal-window-4,.modal-window-5{
        width: 300px;
        height: 450px;
    }
    .floor-images{
        width: 256px;
        height: 192px;
        margin-bottom: 10px;
    }
    .facility-box-sp h3{
        font-size: 1.0rem;
    }
}

/* price */
.price-box{
    margin: 10px auto 40px;
}

.price-box p{
    font-size: 1.0rem;
}

.price table{
    width: 100%;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    border: 2px solid #24292e;
    border-collapse: collapse;
}

.price thead th{
    font-size: 1.2rem;
    border-collapse: collapse;
    border: 2px solid #24292e;
}

.price tbody th,.price tbody th p{
    font-size: 1.1rem
}

.price tbody td,.price tbody td p{
    font-size: 0.9rem;
}

.price tbody th{
    border: 2px solid #24292e;
}

.price tbody td{
    border: 1px solid #24292e;
}

.usage-fee{
    text-align: right;
    padding-right: 1%;
}

@media screen and (max-width: 800px) {
    .price-box p{
        font-size: 0.8rem;
    }
    .price tbody th,.price tbody th p{
        font-size: 0.8rem
    }

    .price tbody td,.price tbody td p{
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .price-box p{
        font-size: 0.5rem;
    }
    .price thead th{
        font-size: 0.8rem;
    }
    .price tbody th,.price tbody th p{
        font-size: 0.6rem
    }
    .price tbody td,.price tbody td p{
        font-size: 0.5rem;
    }
}


/* contact */
/* .form-table tr{} */
.form-table{
    margin: 0 auto;
    border-spacing: 10px;
}

.form-table th{
    padding: 10px;
    text-align: left;
}

.form-table td{
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #24292e;
}

textarea, input {
    width: 100%;
}

.form-button{
    margin-top: 20px;
    text-align: center;
}

@media screen and (max-width: 480px) {

}

/* footer */
.footer{
    padding: 50px 4% 0;
    background-color: #FDE6D4;
    border-top: 1px solid #ffc000;
}

.footer-list{
    display: flex;
    justify-content: center;
    gap: 5%;
}

.footer-list-content{
    width: 40%;
}

.footer .footer-logo p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.0rem;
    font-weight: 600;
}

.footer-mtf{
    display: flex;
    margin: 10px 0;
    align-items: center;
}

.footer-mtf p{
    font-size: 1.0rem;
}

.footer-mtf-img{
    width: 25px;
    margin: 0 10px 0 0;
}

address a{
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.g-map{
    width: 320px;
    height: 180px;
}

.footer-logo:hover,.footer-mtf:hover,address a:hover{
    opacity: 0.5;
}

.footer-nav{
    display: flex;
    justify-content: end;
}

.footer-nav-item{
    padding: 5px;
    font-size: 0.8rem;
}

.footer-nav-item:hover{
    opacity: 0.5;
}

.copyright{
    text-align: center;
    padding: 10px;
}

.copyright p{
    font-size: 0.8rem;
}


@media screen and (max-width: 800px) {
    .footer-list{
        display: block;
    }
    .footer-list-content{
        width: 100%;
    }
    .footer-nav{
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .g-map{
        width: 240px;
        height: 135px;
    }
    .copyright p{
        font-size: 0.5rem;
    }

}

/* 404 */
.page404-home{
    font-weight: 600;
}

.page404-home:hover{
    opacity: 0.5;
}

/* news etc */
.article-item{
    margin: 10px auto;
}

.article-title{
    font-size: 1.5rem;
    font-weight: 600;
}

.article-content{
    font-size: 1.0rem;
}

/* route */
.route-box{
    display: flex;
}

.route-item{
    width: 50%;
    margin-bottom: 50px;
}

.route-item-videos{
    width: 100%;
    text-align: center;
}

.route-videos{
    width: 324px;
    height: 576px;
}

.route-item p{
    text-align: center;
}

@media screen and (max-width: 800px) {
    .route-box{
        display: block;
    }
    .route-item{
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .route-videos{
    width: 243px;
    height: 432px;
}
}

/* privPoli */
.privPoli-header{
    margin: 0 0 20px;
    padding: 10px;
    border: 1px solid #24292e;
}

.privPoli-content-item{
    margin: 10px 0 30px;
}

.privPoli-item-title{
    margin: 10px 0;
    font-size: 1.3rem;
}

.privPoli-item-content{
    font-size: 0.8rem;
}

.privPoli-item-content ul li{
    font-size: 0.8rem;
}

.privPoli-item-content-go{
    margin-left: 10px;
}

.privPoli-item-content-go-go{
    margin-left: 10px;
}

/* sitemap */
.grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.grid-4 > .sitemap-box{
    margin: 10px 0.5%;
    padding: 10px;
    width: 24%;
    background-color: rgba(255, 255, 255, 0.8);
}

.sitemap-title{
    border-left: 3px solid black;
    margin-bottom: 5px;
    padding-left: 5px;
    font-size: 1.0rem;
    font-weight: 600;
}

.sitemap-content-item{
    padding: 3px 2px 0;
    font-size: 0.8rem;
    font-weight: 400;
}

.sitemap-content-item:hover{
    text-decoration:underline;
}

.sitemap-content-item::before{
    content: "> ";
    font-weight: 400;
}

@media screen and (max-width: 800px) {
    .grid-4 > .sitemap-box{
        width: 48%;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 480px) {
    .grid-4 > .sitemap-box{
        width: 100%;
    }
}



