@charset "utf-8";

body {
    background: var(--lower-black-back);
}

/* -------------------------
   医院概要
------------------------- */
.basic-info-section {
    padding: 40px 6.5% 100px;
}

.basic-info__table {
    max-width: 1014px;
    margin: 64px auto 0;
}

.basic-info__row {
    display: grid;
    grid-template-columns: 124px 1fr;
    gap: 0;
    margin-bottom: 12px;
}

.basic-info__head,
.basic-info__body {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-style: normal;
    line-height: 1.5;
    box-sizing: border-box;
    border: 1px solid #8A8A8A;
}

.basic-info__head {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: #666362;
    color: #FFF;
    font-weight: 600;
    text-align: center;
}

.basic-info__body {
    padding: 16px 18px;
    background: #ffff;
    color: #312D2C;
    font-weight: 400;
    word-break: break-word;
}

.basic-info__row--large .basic-info__head,
.basic-info__row--large .basic-info__body {
    min-height: 160px;
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1100px) and (min-width: 768px) {
    .basic-info-section {
        padding: 20px 6.5% 60px;
    }

    .basic-info__table {
        max-width: 85%;
        margin-top: 48px;
    }

    .basic-info__row {
        grid-template-columns: 110px 1fr;
        margin-bottom: 12px;
    }

    .basic-info__head,
    .basic-info__body {
        font-size: 20px;
    }

    .basic-info__head {
        padding: 14px 10px;
    }

    .basic-info__body {
        padding: 14px 16px;
    }

    .basic-info__row--large .basic-info__head,
    .basic-info__row--large .basic-info__body {
        min-height: 140px;
    }
}

/* -------------------------
   SP
------------------------- */
@media screen and (max-width: 767px) {
    .basic-info-section {
        padding: 20px 5.3% 40px;
    }

    .basic-info__table {
        margin-top: 36px;
    }

    .basic-info__row {
        display: block;
        margin-bottom: 20px;
    }

    .basic-info__head,
    .basic-info__body {
        font-size: 16px;
    }

    .basic-info__head {
        justify-content: flex-start;
        text-align: left;
        padding: 16px 18px;
        min-height: 0;
    }

    .basic-info__body {
        padding: 16px 18px;
        border-top: none;
    }

    .basic-info__row--large .basic-info__head,
    .basic-info__row--large .basic-info__body {
        min-height: 0;
    }
}