h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

.contentArea {
    max-width: 1200px;
    padding: 0 50px;
    margin: 0 auto;
}

.contentArea h2 {
    font-size: 2.6rem;
}

.contentArea h3 {
    font-size: 2.4rem;
}

.contentArea h4 {
    font-size: 2.6rem;
}

.contentArea h5 {
    font-size: 1.8rem;
}

.contentArea p {
    font-size: 2rem;
}

.contentArea li {
    font-size: 2rem;
}

.contentArea th,
.contentArea td {
    font-size: 2rem;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .contentArea {
        padding: 0 22.5px;
    }

        .contentArea h2 {
        font-size: 2.2rem;
    }

        .contentArea h3 {
        font-size: 2rem;
    }

        .contentArea h4 {
        font-size: 1.8rem;
    }

        .contentArea h5 {
        font-size: 1.6rem;
    }

        .contentArea p {
        font-size: 1.4rem
    }

        .contentArea li {
        font-size: 1.4rem
    }

        .contentArea th,
                .contentArea  td {
        font-size: 1.4rem;
    }
}

/* 20250524追記 */

.contentInner {
    margin-top: -30px;
}

.secCard {
    background-color: var(--c-bg01);
    padding: 50px;
    max-width: 900px;
    margin-bottom: 80px;
}

.secCard:last-of-type {
    margin-bottom: 0;
}

.secCard__ttl {
    border-bottom: solid 1px var(--c-accent);
    margin-bottom: 30px;
    padding-bottom: 0.2em;
}

.secCard__ttl::before {
    content: "";
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    border-radius: 100%;
    background-color: var(--c-accent);
    margin-right: 0.3em;
}

.secCard p {
    text-align: center;
}

.reserveBtnCol {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.reserveBtnCol .btn {
    min-width: 300px;
}

.reserveBtnCol .btn__txt {
    margin-right: 20px;
}

@media screen and (min-width: 601px) {
    .btn--tel {
        pointer-events: none;
    }
}

@media screen and (max-width: 600px) {
    .secCard {
        padding: 30px;
        margin-bottom: 50px;
    }

    .secCard__ttl {
        margin-bottom: 20px;
    }

    .reserveBtnCol {
        flex-direction: column;
        width: fit-content;
        margin: 30px auto 0;
    }

    .reserveBtnCol .btn {
        max-width: 350px;
        min-width: 260px;
    }

}