@charset "UTF-8";

/* CSS Document */
/*-----------------------
入院のご案内
-------------------------*/
.inpatient .gradation {
    width: fit-content;
    padding: 10px 30px;
    color: #fff;
    border-radius: 5px;
    margin-right: 40px;
}

.inpatient .amenities .flex,
.inpatient .facility .flex {
    margin-bottom: 10px;
}

.inpatient .facility>.flex {
    justify-content: space-between;
}

.inpatient .facility .flex .img {
    width: 45%;
}

.inpatient .facility .flex>ul li {
    margin-bottom: 30px;
}

.inpatient .facility .flex>ul li:last-child {
    margin-bottom: 0;
}

.support .about .bg_gray {
    padding: 10px;
}

.support .about .question {
    margin-bottom: 20px;
}

.support .about .question::before {
    content: "";
    width: 36px;
    height: 36px;
    background: url("../img/icon_question.webp");
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .support .about .question::before {
        width: 20px;
        height: 20px;
    }
}

.support .about .answer::before {
    content: "";
    width: 36px;
    height: 36px;
    background: url("../img/icon_answer.webp");
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .support .about .answer::before {
        width: 20px;
        height: 20px;
    }
}

.img_con {
    flex-wrap: wrap;
}

.img_con>img {
    width: calc(50% - 10px);
    margin: 5px;
}

@media screen and (max-width: 1230px) {}

@media screen and (max-width: 768px) {
    .inpatient .facility .flex .img {
        width: 100%;
    }

    .img_con>img {
        width: 100%;
    }
}

@media (orientation: landscape) {}

.application_link {
    display: inline;
    text-decoration: underline;
}

.address {
    border: 1px solid #0076dd;
    width: 45%;
    padding: 10px 20px 20px 5px;
    margin: 20px 0;
}

ol.application_list {
    list-style: none;
    counter-reset: ol_li;
    /* ol_li カウンタをセットする(値もリセット) */
}

ol.application_list li:before {
    margin-right: .25em;
    counter-increment: ol_li;
    /* ol_li カウンタの値に1加える */
    content: counter(ol_li);
    /* before擬似要素のcontentで出力 */
    color: #0076dd;
}
ol.application_list li{
    line-height: 30px;
    margin-bottom: 16px;
}