@charset "UTF-8";
/*===============
コース・料金
===============*/


table {
    border-spacing: var(--gutter_base);
    padding-left: 5%;
    margin-left: auto;
    margin-right: auto;

}

.course {
    padding-top: 10%;
    padding-bottom: 10%;
    background-color: #00407B;
    margin: 0;

}

.question {
    padding-top: 10%;
    padding-bottom: 10%;
    background-color: #004E97;
    margin: 0;
}

.question .text {
    margin-left: 5%;
    margin-right: 5%;
}

@media screen and (min-width:960px) {
    table {
        border-spacing: calc(var(--gutter_base)*4);
        margin-left: auto;
        margin-right: auto;

    }

    .question {
        padding-top: 10%;
        padding-bottom: 10%;

    }

    .question .text {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

}

/*===============
お問い合わせボタン
===============*/
.inquiry {
    display: flex;
    justify-content: center;
    font-weight: lighter;
}

.inquiry_btn {
    display: flex;
    height: 30px;
    width: fit-content;
    color: #002030;
    background-color: #ffffff;
    text-align: center;
    text-decoration: none;
    align-items: center;
    margin: 10%;
    border-radius: 15px;
    padding: 8px;
}

.inquiry_btn:hover {
    box-shadow: 10px 5px 5px #002030;
    transform: scale(1.1, 1.1);
    transition: 0.5s all;
}

.inquiry_btn:active {
    transform: none;
    box-shadow: 5px 2px 2px #002030;
}

.inquiry img {
    width: 30px;
    height: 30px;
}

@media screen and (min-width:960px) {
    .inquiry_btn {
        height: 60px;
        font-size: var(--size_lg);
        border-radius: 30px;
        padding: calc(var(--gutter_base)*2);
    }

    .inquiry img {
        width: 60px;
        height: 60px;
    }
}