.plan {
    font-size: 1.8rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .plan {
        font-size: 1.6rem;
    }
}

.plan__headline {
    color: #8a1e41;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.plan__title {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.plan__subtitle {
    font-size: 1.8rem;
    text-decoration: underline;
    margin-bottom: 15px;
}

.plan__table {
    width: 100%;
    font-size: 1.6rem;
}

.plan__table tr th {
    width: 30%;
    font-weight: bold;
    color: #8a1e41;
    padding: 20px;
    text-align: center;
    background: #e6d8dd;
    border: 1px solid #707070;
    vertical-align: middle;
}

.plan__table tr td {
    width: 70%;
    padding: 20px;
    background-color: #fafafa;
    border: 1px solid #707070;
}

@media screen and (max-width: 767px) {
    .plan__table tr th,
    .plan__table tr td {
        display: block;
        width: 100%;
    }
}