@charset "UTF-8";
@import url("common.css");

/* =============================================================================
Clinic Page
========================================================================== */

.lower-hero--clinic .lower-hero__panel {
    background: url("../img/clinic/bg-title-clinic.png") center / cover no-repeat;
}

.lower-points {
    display: grid;
    gap: 18px;
    width: min(980px, calc(100% - 120px));
    margin-top: 72px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lower-point {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 18px 12px;
    border: 1px solid #d8a5bf;
    border-radius: 4px;
    color: #b675a0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.06em;
    text-align: center;
}

@media screen and (max-width: 981px) {
    .lower-hero--clinic .lower-hero__panel {
        background-image: url("../img/clinic/bg-title-clinic-sp.jpg");
    }

    .lower-points {
        width: auto;
        margin-top: 52px;
        margin-right: 5vw;
        margin-left: 5vw;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lower-point {
        min-height: 88px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 390px) {
    .lower-points {
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lower-point {
        min-height: 76px;
        padding: 12px 8px;
        font-size: clamp(1rem, 3vw, 1.15rem);
        line-height: 1.5;
        letter-spacing: 0.03em;
    }
}
