@charset "utf-8";
/* CSS Document */


/* ナビゲーション */
#menu{
    width:260px;
    position: relative;
    top: 80px;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 10;
}
nav{
    position: relative;
}
nav a{
    text-decoration: none;
    text-align: left;
    color: #000;
}
#kire{
    width: 260px;
    background-color: #a2b7bc;
    margin: 0 auto 100px;
    padding: 50px 0;
}
#kami{
    width: 240px;
    background-color: #006882;
    margin: 0 auto;
    padding: 30px 0 50px;
}
.mainmenu{
    width: 210px;
    background-color: #fff;
    margin: 0 auto;
    padding: 10px 0 20px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.menuBtn{
    width: 190px;
    min-height: 44px;
    padding-top: 4px; 
    border-bottom: 1px solid #a2b7bc;
    display: flex;
    justify-content: left;
    align-items: flex-end;
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    line-height: 20px;
    letter-spacing: 1px;
}
.menuBtn.__2gyo{
    margin: 23px auto 0;
}
.menuBtn, .menuBtn:visited{
    transition: all .3s;
}

.menuBtn:hover{
    background-color: #d49687;
    color: #fff;
    cursor: pointer;
}

/* バナー＆ダウンロードボタン */
#flyers{
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#flyers a{
    display: block;
    margin-bottom: 30px;
    height: fit-content;
    width: 230px;
}
#flyers button:hover{
    opacity: .8;
    cursor: pointer;
}
.flyerBtn{
    color: #000;
    height: 90px;
    width: 100%;
    padding: 0 0 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    position: relative;
    font-family: "zen-antique", serif;
    font-size: 17px;
    letter-spacing: 1px;
}
.flyerBtn img{
    position: absolute;
    width: 35%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}


/* 言語切り替えボタン */
.lang.tb_none{
    display: contents;
}
.lang a{
    width: 100%;
}
.langChange{
    top: 0;
    right: 0;
    width: 150px;
    height: 50px;
    font-size: 1.1rem;
    margin-right: 10px;
    font-style: italic;
}
.lang .langChange.btnOff{
    opacity: .7;
}


/* レスポンシブ対応 */

@media screen and (max-width:1160px){

}
@media screen and (max-width:1060px){

    /* ハンバーガーメニュー(ボタン) */
    #spMenuBtn{
        --spBtnSize: 50px;
        height: 100%;
        margin-right: 15px;
    }
    #spMenuBtn .menu_word{
        content: '';
        font-family: "zen-antique", serif;
        color: #fff;
    }
    #spMenuBtn .menu_word::after{
        content: 'MENU';
    }
    #spMenuBtn.navActive .menu_word::after{
        content: 'CLOSE';
    }
    #spMenuBtn button{
        width: var(--spBtnSize);
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        position: relative;
    }
    #spMenuBtn span{
        background-color: #fff;
        width: 100%;
        height: 3px;
        position: relative;
        top: -5px;
        transition: .5s;
    }
    #spMenuBtn.navActive span{
        margin-bottom: 10px;
    }
    #spMenuBtn.navActive span:nth-child(2){
        top: 16%;
        transform: rotate(45deg) translateY(-50%);
    }
    #spMenuBtn.navActive span:nth-child(3){
        top: -16%;
        transform: rotate(-45deg) translateY(50%);
    }
    .openBtn{
        cursor: pointer;
    }

    /* ハンバーガーメニュー(メニュー本体) */
    #menu{
        background-image: url(../img/back-tile.png);
        position: absolute;
        top: -200%;
        width: 100vw;
        height: fit-content;
        transition: .5s;
    }
    #menu.navActive{
        top: 80px;
    }
    #kire{
        width: 80%;
        position: fixed;
        height: 100%;
        overflow: auto;
        background-image: url(../img/menu_bg.png);
        background-repeat: repeat;
        background-color: #a2b7bc;
        margin: 0 auto;
        padding: 50px 0; 
        box-shadow: 5px 0 10px rgba(0, 0, 0, .5);
 
    }
    #kami{
        width: 94%;
        background-color: #006882;
        margin: 60px auto;
        padding: 60px 0 50px;
    }
    .mainmenu{
        width: 89%;
        background-color: #fff;
        margin: 0 auto;
        padding: 10px 0 25px;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .menuBtn{
        width: 73%;
        min-height: 44px;
        padding: 28px 0 4px; 
        border-bottom: 1px solid #a2b7bc;
        justify-content: center;
        align-items: flex-end;
        text-align: center;
    }
    .menuBtn.__2gyo{
        margin: 0;
    }
    .lang.tb_none{
        display: none;
    }
    .lang.tb_on{
        display: block;
        /* position: relative; */
        display: flex;
        justify-content: center;
        width: 90%;
        margin: 0 auto;
    }
    .langChange{
        position: relative;
        width: 100%;
        height: 50px;
        font-size: 1.1rem;
    }
    /* .lang{
        display: block;
        position: absolute;
        width: 45%;
        top: -110%;
        left: 25%;
        transform: translate(-45%, 0);
        transition: .55s;
    }
    .lang.navActive{
        top: 140%;
    }
    .langChange{
        width: 90%;
        position: relative;
        height: 50px;
        font-size: 1.1rem;
        margin-right: 10px;
        opacity: 0;
        transition-delay: .1s;
    }
    .lang.navActive .langChange{
        top: 0;
        opacity: 1;
    } */

    #flyers{
        margin: 50px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    #flyers a{
        margin-bottom: 40px;
        height: auto;
        width: 80%;
        display: flex;
        justify-content: center;
    }
    .flyerBtn{
        padding: 0;
        display: flex;
        justify-content: center;
        top: 0;
    }
    .flyerBtn img{
        width: 15%;
        top: 50%;
        right: 3%;
    }
    main.scrollStop{
        overflow: clip;
    }
}

@media screen and (max-width:780px){
    #menu{
        width: 100vw;
        background-image: none;
    }
    #kire{
        width: 100%;
        background-size: 30%;
        background-repeat: repeat;
        box-shadow: none;
    }
    .lang{
        width: 90%;
        left: 50%;
    }

    #flyers a{
        margin-bottom: 10%;
        height: auto;
        width: 80%;
    }
    .flyerBtn{
        padding: 0;
        display: flex;
        justify-content: center;
        top: 0;
    }
    .flyerBtn img{
        width: 25%;
        top: 50%;
        right: 3%;
    }
}


@media screen and (max-width:430px){
    #spMenuBtn{
        --spBtnSize: 30px;
    }
}