@charset "utf-8"; 
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}


/* main-visual */
.main-visual{
    background-image: url(../images/bg.png);
}
.title{
    margin: 14px auto;
    text-align: center;
}
.btn_list{
    display: grid;
    width: 90%;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.mv_message{
    width: 90%;
    margin: 16px auto;
}

/* cta */
.cta{
    background-image: url(../images/cta_bg.png);
    padding: 24px 32px;
}

/* menu */
.menu{
    background-repeat: repeat;
    background-size: 400px auto;
    background-image: url(../images/menu_bg.png);
    padding: 32px 0;
}
.menu_title{
    width: 90%;
    margin: 0 auto;
}
.menu_text{
    width: 80%;
    margin: 16px auto;
}





/* モーダルCSS */
.modal {
    display: none;
    position: fixed;
    max-width: 750px;
    margin: 0 auto;
    z-index: 999;
    /*left: 0;*/
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url(../images/bg.png);
}

    /* モーダルコンテンツ */
.modal-content {
    position: relative;
    margin: 15% auto;
    padding: 0;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

    /* 閉じるボタン */
.closeModal{
    position: absolute;
    top: 1.5em;
    right: 1em;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}
.closeModal::before,
.closeModal::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transform-origin: center;
}
.closeModal::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.closeModal::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-content::-webkit-scrollbar {
    display: none;
}
body.openModal,
html.openModal {
    overflow: hidden !important;
    height: 100%;
}
body.openModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}


/* footer */
footer{
    padding: 10px 0;
    background-color: #F0D391;
}
.access h2{
    margin-top: 30px;
}
.access-tel{
    margin: 24px 0;
}
.access iframe{
    width: 100%;
    margin-top: 10px;
    padding: 0 30px;
}

.copyright{
    margin: 30px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}