@CHARSET "UTF-8";
div.top_header {
    background-image: url(../../images/img_mv01.png);
    height: 300px;
    background-repeat: no-repeat;
    background-position-x: center;
    background-color: var(--light_yellow-col);
    box-shadow: 0 5px 5px -5px var(--dgray-col);
}
body#web div.title {
    text-align: center;
    margin: 3.5rem 0 1.5rem;
}
body#web div.button_box {
    /*
    display: flex;
    justify-content: space-around;
    */
    margin-top: 3rem;
    margin-bottom: 3rem;
}
body#web div.button_box button {
    border: 3px solid var(--base-col);
    color: var(--base-col);
    border-radius: 4rem;
    padding: 2rem 0;
    height: auto;
    font-size: 1.75rem;
    width: calc((var(--base-width) - 6rem) / 2);
    margin: 0;
    font-weight: bold;
    letter-spacing: 0.2rem;
    position: relative;
}
body#web div.button_box button[name="btnMadoguchi"] {
    background-color: var(--white-col);
}
body#web div.button_box button[name="btnShisetsu"] {
    background-color: var(--slight_green-col);
}
body#web div.button_box button::after {
    content: url(../../images/icn_arrow-right01.png);
    position: absolute;
    right: 2rem;
    top: calc(50% - 1rem);
}

body#web button.circle{
    border-radius: 50%;
    font-size:1.5rem;
    width:150px;
    height:150px;
    padding 1rem;
    border-style:solid;
}
body#web button.madoguchi{
    border-color:#2222FF;
    background-color:#4F818D;
}
body#web button.shisetsu{
    border-color:#768722;
    background-color:#04ad28;
}
@media screen and (max-width: 1023px) {
    div.top_header {
        background-image: url(../../images/img_mv01_sp.png);
    }
    body#web div.title > img {
        max-width: calc(100% - 2rem);
        height: auto;
    }
    body#web div.button_box {
        justify-content: space-evenly;
    }
    body#web div.button_box button {
        border-radius: 6rem;
        padding: 0;
        height: 42vw;
        width: 42vw;
        max-height: 12rem;
        max-width: 12rem;
        font-size: 1.5rem;
        letter-spacing: 0;
    }
    /*
    body#web div.button_box button::after {
        content: "";
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(../../images/icn_arrow-right01.png);
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: calc(100% - 1rem);
        background-size: 1.75rem;
        line-height: 1.7rem;
    }
    */
    body#web div.button_box button span {
        display: block;
    }
}

/*コンテンツ領域設定*/
body#web div.main {
    min-height: calc(100vh - 370px - 3.5rem - 82px);
}

/* コメント部 */
body#web div.comment_box{
    display: flex;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

body#web div.btn {
    display: flex;
    justify-content: center;
}


@media screen and (max-width:932px) {
    /*コンテンツ領域設定*/
    body#web div.main {
        min-height: calc(100vh - 350px - 1.5rem - 72px);
    }

    body#web div.title {
        margin: 1.5rem 0 0.5rem;
    }
    body#web div.button_box {
        margin: 1rem;
    }
    body#web div.button_box button {
        padding: 15px;
        height: 70px;
        max-height:70px;
        width: 100%;
        max-width: 100%;
        font-size: 22px;
        text-align: center;
    }
    body#web div.button_box button span {
        display: inline;
    }
    body#web div.button_box button::after {
        right: 1rem;
    }

    /* コメント部 */
    body#web div.comment_box{
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
    }
}