@charset "UTF-8";
html{
    font-size : 62.5%;
    scroll-behavior: smooth;
}
body{
    font-family: "Noto Serif JP",serif;
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    background-color: #333;
}

img{
    width: 100%;
    height: 100%;
}

.btn{
    transition: 0.2s;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #004F0C;
    height: 50px;
    margin: 0 auto;

    background-image: url(../images/btn_finger.png);
    background-repeat: no-repeat;
    background-position: top 50% right 10px;
    background-size: 50px 50px;

}
.btn:hover{
    opacity: 0.6;
    transition: 0.2s;
}

/* fadeIn animation */
.anime{
    opacity: 0;
    transform: translateY(50px);
    transition: 0.4s;
}

.beforeAfter{
    transform: translateX(-40px);
    opacity: 0;
}

.beforeAfter2{
    transform: translateX(40px);
    opacity: 0;
}

.scrollin{
    opacity: 1;
    transform: translateY(0);
    transform: translateX(0);
}

@media screen and (min-width:769px) {
    body{
        font-size: 1.6rem;
    }

    .notPc{
        display: none;
    }

    .btn{
        height: 66px;
        font-size: 2rem;
        background-size: 60px 60px;
    }
}
/* common */

/* =============== header =============== */
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    background-color: #3F3F3F;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header__logo img{
    width: auto;
    height: 60px;
    padding-left: 10px;
}

.nav{
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 15, 15, 0.9);

    display: flex;
    flex-direction: column;

    opacity: 0;
    transform: translateX(-100%);
    animation: nav 0.5s;
}

@media screen and (min-width:380px) {
    .header{
        padding-top: 20px;
        height: 90px;
    }

    .nav{
        margin-top: 20px;
    }
}

@keyframes nav{
    0%{
        opacity: 1;
        transform: translateX(0);
    }
    100%{
        opacity: 0;
        transform: translateX(0);
    }
}

.close{
    width: 70px;
    height: 70px;
    margin: -70px 0 0 auto;
    padding: 10px;

    opacity: 0;
    transition: 0.5s;
}

.nav__menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40%;
}

.nav__item a{
    font-size: 2rem;
    opacity: 0;
    transition: 0.5s;
}

.header__btn{
    width: 55%;
    margin: 50px auto 0;
    opacity: 0;
}

.menu{
    width: 70px;
    height: 70px;
    padding: 10px;
    transition: 0.5s;
    transition-delay: 0.25s;
}

.pay__btn{
    display: inline-block;
    height: 20px;
    width: 80px;
    text-align: center;
    margin: 10px auto 0;
    font-size: 1.4rem;
    border-bottom: white solid 1px;
}

.pay__btn:hover{
    color: #6AA474;
}

/* active class */
.nav.active{
    display: flex;
    transform: translateX(0);
    opacity: 1;
    animation: nav__back 0.5s;
}

@keyframes nav__back{
    0%{
        opacity: 0;
        transform: translateX(0);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

.menu.active{
    opacity: 0;
    transition: 0.5s;
}

.close.active{
    opacity: 1;
    transition: 0.5s;
    transition-delay: 0.25s;
}

.nav__item a.active{
    opacity: 1;
    transition: 0.2s;
    transition-delay: 0.3s;
}

.header__btn.active{
    opacity: 1;
    transition: 0.2s;
    transition-delay: 0.3s;
}
/* active end */

/* header responsive */
@media screen and (min-width:899px) {
    .header{
        padding: 0;
        height: 70px;
    }

    .nav{
        position: static;
        background-color: rgba(15, 15, 15, 0);
        width: auto;
        height: auto;
        display: flex;
        flex-direction: row;
        opacity: 1;
        transform: translateX(0);
        margin-top: 0;
        animation: none;

        margin-right: 10px;
    }

    .nav__menu{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
        margin-top: 0;
        margin-right: 30px;
    }
    
    .nav__item a{
        display: block;
        font-size: 1.6rem;
        opacity: 1;
        transition: 0.2s;
    }

    .nav__item a:hover{
        transform: translateY(-2px);
        transition: 0.2s;
    }

    .nav__item:first-of-type{
        width: 110px;
        text-align: center;
    }

    .header__btn{
        width: 220px;
        margin: 0;
        opacity: 1;
    }
    
    .menu{
        display: none;
    }

    .header__btn{
        height: 50px;
        font-size: 1.6rem;
        width: 240px;
    }

    .pay__btn{
        margin: 25px 0 0;
    }
}
/* ===== header end ===== */

/* =============== mv ============== */
.mv{
    margin-top: 70px;
    overflow: hidden;
    height: 85vh;
    width: 100%;
    position: relative;

    display: flex;
    justify-content: center;
}

.mov{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 1s;
}

.mv__titleBox{
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    text-align: center;
    line-height: 1;
}

.mv__title{
    display: inline-block;
    font-size: 5rem;
    line-height: 0.7;

    filter: blur(10px);
    transition: 1.5s;
}

.blur{
    filter: blur(0px);
}

.mv__subTxt{
    display: inline-block;
    line-height: 1.5;
    font-size: 2rem;
}

.mv__subTitle{
    font-size: 1.6rem;
    display: inline-block;
    transform: translateY(-12px);
}

.mv__school{
    position: absolute;
    width: 90%;
    height: auto;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(51, 51, 51, 0.60);
    border-radius: 50px;
    padding: 10px;
}

.mv__school__txt{
    text-align: center;
}

.mv__school a{
    border-bottom: white 1px solid;
    margin-top: 10px;
}
/* mv responsive */
@media screen and (min-width:769px) {
    .mv__title{
        font-size: 9.6rem;
        line-height: 0.5;
    }
    
    .mv__subTxt{
        font-size: 2.4rem;
    }
    
    .mv__subTitle{
        display: inline-block;
        font-size: 2rem;
        transform: translateY(-25px);
    }
    
    .mv__school{
        width: 45%;
        font-size: 2rem;
        border-radius: 60px;
    }
}
/* ===== mv end ===== */

/* =============== main contact ================= */
.menu__eye{
    border-radius: 10px;
    background-color: #414F43;
    width: 70%;
    padding: 10px;
    margin: 10px auto 0;
}

.eyeMp4{
    display: block;
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
}

.menu__eye__title{
    text-align: center;
    font-size: 1.8rem;
}

.btn__eye{
    width: 70%;
    height: 30px;
    background-image: none;
    margin-top: 5px;
}

.contact{
    border-radius: 100px;
    background-color: #6AA474;
    text-align: center;
    margin: 40px auto 0;
    padding-bottom: 5px;
    width: 80%;
    max-width: 1000px;
}

.contact__title{
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.shop,.tel,.mail{
    font-size: 1.6rem;
}

.tel__a{
    display: inline-block;
    padding: 5px 50px;
    border-radius: 50px;
    background-color: #1a7227;
    
    background-image: url(../images/btn_finger.png);
    background-repeat: no-repeat;
    background-position: top 50% right 10px;
    background-size: 40px 40px;
}


.mail{
    margin-top: 5px;
}

.contact__btn{
    margin-top: 10px;
    width: 60%;
}
/* contact responsive */
@media screen and (min-width:769px) {
    .menu__eye{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10%;
        width: 50%;
        max-width: 1000px;
    }

    .eyeMp4{
        width: 40%;
        margin: 0;
    }

    .menu__eye__title{
        font-size: 2.4rem;
    }

    .btn__eye{
        width: 100%;
    }

    .contact{
        width: 60vw;
        max-width: 1000px;
        padding: 1%;
    }

    .contact__title{
        font-size: 3.2rem;
    }

    .shop{
        font-size: 2.4rem;
    }

    .tel,.mail{
        font-size: 2rem;
    }

    .mail{
        margin-top: 10px;
    }

    .contact__btn{
        width: 320px;
    }
}
/* ===== main contact end ===== */

/* =============== caption =============== */
.mainCaption{
    margin-top: 50px;
    text-align: center;
}
.mainCaption__background{
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 20px;

    background-image: url(../images/caption_border.png),url(../images/caption__bottomBorder.png);
    background-repeat: no-repeat,no-repeat;
    background-position: top 5px left 50%,top 110px left 50%;
    background-size: auto 50px ,auto 50px;
    
}

.mainCaption__title{
    font-size: 2.8rem;
    padding: 40px 0;
}

.mainCaption__txt{
    display: block;
    width: 90%;
    margin: 0 auto;
}

.mainCaption__background::after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/caption_back.jpg);
    background-position: top left 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.effect__box{
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 50px;
    background: #414F43;
}

.effect__title{
    font-size: 2rem;
    padding-top: 10px;
    margin: 40px 0 5px;
}

.effect__list{
    display: block;
    background-color: #364738;
    border-radius: 50px;
    padding: 5px 0 10px;
}

.effect__list__title{
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
}

.effect__list__item{
    width: 90%;
    margin: 0 auto;
}

.easy__txt{
    margin-top: 10px;
    padding: 15px;
}

.B-A__box{
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.BAImg{
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.mainCaption__closeTxt{
    display: block;
    margin:50px auto 0;
    width: 95%;
}

.mainCaption__btn{
    margin-top: 20px;
    width: 60%;
}

/* caption responsive */
@media screen and (min-width:769px) {
    .mainCaption__title{
        font-size: 3.2rem;
    }

    .mainCaption__background{
        background-position: top -10px left 50%,top 60px left 50%;
        background-size: auto 80px ,auto 80px;
    }

    .effect__box{
        width: 80%;
    }

    .effect__title{
        font-size: 2.4rem;
    }

    .effect__list__title{
        font-size: 1.8rem;
        margin-top: 30px;
    }

    .B-A__box{
        width: 80%;
        max-width: 1000px;
        height: auto;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        flex-direction: row;
    }
    
    .BAImg{
        width: 45%;
        height: auto;
        margin-top: 50px;
    }

    .mainCaption__closeTxt{
        line-height: 1.8;
    }

    .mainCaption__btn{
        margin-top: 20px;
        width: 300px;
    }
}

/* ===== capction end ===== */

/* ===================== menu ==================== */
.img__title{
    font-size: 2.4rem;
    padding-top: 150px;
    width: 100%;
    text-align: center;

    background-image: url(../images/title_menu.png);
    background-repeat: no-repeat;
    background-size: 200px auto;
    background-position: bottom 10px left 50%;
}

.menu__box,.school__menu__box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 20px 10px;
    padding: 20px 0;
    background-color: #222;
    border-radius: 30px;
}

.menu__box__img{
    height: 250px;
    width: 250px;
}

.menu__box__contents{
    text-align: center;
}

.menu__box__title{
    font-size: 1.4rem;
    padding:5px 0 20px;
}

.menu__main{
    font-size: 2rem;
}

.menu__box__list__flex{
    display: flex;
    justify-content: center;
    margin-right: 55px;
}

.menu__box__list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.menu__box__item{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 25px;
    width: 40vw;
    background-color: #19331D;
    padding: 0 10px;
    border-radius: 13px;
}

.menu__box__item1{
    margin-bottom: 10px;
    background-color: #6AA474;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.first__box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.first{
    background-color: #6AA474;
    height: 25px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 23px;
    border-bottom-left-radius: 23px;
    margin-right: 5px;
}

.pay__box{
    width: 90%;
    margin: 0 auto;
    background-color: #999;
    border-radius: 10px;
}

.pay__txt{
    font-size: 1.6rem;
    margin-left: 5%;
}

.pay__square{
    height: 30px;
    width: auto;
    margin-left: 5%;
}

.pay__sp{
    width: 95%;
    margin: 0 2.5% 0;
}
.pay__pc{
    display: none;
}

/* menu responsive */
@media screen and (min-width:769px) {
    .menu__box,.school__menu__box{
        justify-content: center;
        flex-direction: row;
        gap: 5%;
        height: auto;
        max-width: 1000px;
        margin: 20px auto 10px;
    }

    .menu__cell{
        flex-direction: row-reverse;
    }
    
    .menu__box__img{
        display: block;
        width: 40%;
        height: 40%;
        margin: 0;
    }

    .menu__box__title{
        font-size: 1.6rem;
    }

    .menu__main{
        font-size: 2.4rem;
    }

    .menu__box__item{
        max-width: 250px;
        min-width: 150px;
        gap: 10%;
    }

    .contact__btn__flex{
        display: flex;
        justify-content: center;
        gap: 10%;
    }

    .contact__btn__flex .contact__btn{
        margin: 10px 0 0;
    }

    .pay__box{
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        background-color: #999;
        border-radius: 10px;
    }

    .square__box{
        display: flex;
    }
    
    .pay__txt{
        font-size: 1.8rem;
        margin-left: 2%;
    }
    
    .pay__square{
        height: 30px;
        width: auto;
        margin-left: 2%;
    }
    
    .pay__sp{
        display: none;
    }
    .pay__pc{
        display: block;
    }
}
/* ===== menu end ====== */

/* ========================= school ============================ */
.school__title{
    background-image: url(../images/title_school.png);
    background-position: bottom 10px left 55%;
}

.menu__school__list__flex{
    margin-right: 0;
}

.school__btn{
    margin-top: 20px;
    width: 80%;
}
/* school responsive */
@media screen and (min-width:769px) {
    .school__title{
        background-position: bottom 10px left 52%;
        background-size: 250px auto;
    }
}
/* ===== school end ===== */

/* =========================== access =========================== */
.access{
    margin-top: 50px;
    border-radius: 50px;
}

.access__title{
    background-image: url(../images/title_access.png);
}

.access__address{
    text-align: center;
    margin: 20px 0;
}

.map__box{
    height: 375px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.entrance{
    height: 375px;
    width: 470px;
}

.map{
    display: block;
    width: 470px;
    height: 375px;
    border-radius: 30px;
}
/* access responsive */
@media screen and (max-width:1000px) {
    .map__box{
        flex-direction: column;
        height: auto;
    }
}
@media screen and (max-width:769px) {
    .map{
        height: 600px;
        width: 90vw;
    }

    .entrance{
        height: 281.25px;
        width: 352.5px;
    }
}
/* ===== access end ===== */

/* ===== footer ===== */
.footer{
    background-color: rgb(30, 30, 30);
}

.footer__box{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding-top: 50px;
}

.footer__menu__top{
    font-size: 2rem;
    margin-top: 30px;
}
.footer__menu{
    position: static;
    background-color: rgba(15, 15, 15, 0);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(0);
    margin-top: 30px;
}

.footer__menu .nav__item a{
    font-size: 2rem;
    opacity: 1;
}

.footer__contact{
    background-color: #333;
    margin-top: 50px;
}

.footer__tel , .footer__mail{
    font-size: 1.4rem;
    line-height: 2;
}

.copy{
    text-align: center;
    line-height: 3;
    margin-top: 20px;
}

.free{
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    color: #dfdfdf;
}

/* footer responsive */
@media screen and (min-width:769px) {
    .footer__logo img{
        padding: 0;
    }

    .footer__menu{
        margin-right: 0;
        flex-direction: row;
    }

    .footer__contact{
        width: 50%;
    }
}