/*-----------------------------------------
 ベース
-------------------------------------------*/
/* 見出し */
.title {
    color: white;
    text-align: center;
}

/* ボディ内テーブル */
.menu_table {
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 20px 0px;
}

.menu_table td {
    width: 25%;
    vertical-align: top;
}

/* カード */
.card {
    width: 320px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgb(97, 97, 97);
    padding: 5px 20px;
    margin-top: 20px;
}

.card_row {
    height: auto;
}

@media screen and (min-width: 481px) {
    .position-center {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    table th, table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    .menu_table {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .menu_table td {
        width: 100%;
    }

    .card {
        width: auto;
    }
}