@charset "UTF-8";
body {
    margin: 0;
}

.inner {
    border-top: solid #95C932 1px;
    padding: 80px 5%;
}

.-sp {
    display: none !important;
}
.-pc {}

/* 外来日・診療時間について */

.about {}
.about .inner {
    padding: 0px 5% 80px;
    border-top: none;
}

.about-txt {
    padding-top: 20px;
}
    
/* ご予約 */

.reservation {}
.reservation .inner {
    border-top: none;
}

.rsv {
    position: relative;
    height: auto;
}

.rsv .char {
    /* position: relative; */
}

.rsv .char .img01 {
    position: absolute;
    right: 27%;
    z-index: 20;
    top: 90px;
}

.rsv .char .img02 {
    display: none;
}

.-link.-sp {
    display: none;
}

.-link.-pc {
    color: #fff;
    font-size: 22px;
    padding: 13px 60px;
    background-color: #0B3F97;
    display: inline-block;
    margin-bottom: 50px;
    border-radius: 10px;
    font-family: serif;
}

.-link.-pc:hover {
    opacity: 0.6;
    /* text-decoration: none; */
}




.rsv-txt {}

/* 診療時間 */

.opt-info {
    margin: 0 auto;
    display: flex;
    margin-bottom: 50px;
}

.opt-info-item {
    padding: 20px 0px 0px 0px;
    display: flex;
    margin-bottom: 20px;
}

.opt-info-item h1 {
    width: 180px;
    text-align: left;
    font-size: 23px;
    font-family: serif;
    border-bottom: #95c932 solid 1px;
    padding-right: 35px;
    margin-bottom: 30px;
}

.opt-info-item p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.opt-info-item p span {
    background-color: #95C932;
    color: #ffffff;
    padding: 2px 3px;
}

.opt-info-item a {
    font-size: 35px;
    margin-right: 30px;
}

.container {
    width: 50%;
    max-width: 650px;
    padding: 0 20px 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

th, td {
    border-top: 1px solid #ddd; /* 上の横線のみ表示 */
    border-bottom: 1px solid #ddd; /* 下の横線のみ表示 */
    padding: 10px;
    text-align: center;
}

th {
}

.left-align {
    text-align: left; /* 左寄せ */
    font-size: 20px;
}

.left-align span {
    color: #ffffff;
    background-color: #95c932;
    font-size: 14px;
    padding: 1px;
    margin-right: 10px;
}

.available {
    color: #95c932; /* 緑のマーク */
    font-weight: bold;
}

.available.-black {
    color: #000;
}

.unavailable {
    color: #bbbbbb; /* 休診マーク */
    font-weight: bold;
}

tr:nth-child(even) {
}

tr:hover {
}

.cautionary {
    width: 50%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.cautionary-txt {
    max-width: 430px;
    height: 116px;
    padding: 35px 120px 20px 40px;
    font-size: 15px;
    background-color: #F5F4F0;
}

.cautionary-txt li::before {
    /* content: "※"; */
    font-weight: bold;
}

.cautionary-txt li span {
    color: #95C932;
}

.worries {
    background: #F5F4F0;
    padding: 70px 0;
}

.worries-ttl {
    font-size: 22px;
    font-family: serif;
    margin-bottom: 40px;
    text-align: center;
}

.worries-list {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 70px;
    margin-bottom: 50px;
}

.worries-list_item {
    font-size: 18px;
    padding: 15px 10px;
    border-bottom: solid 1px #CCCCCC;
    width: 100%;
    position: relative;
}

.worries-list_item::before {
    content: url(../img/cmn/check-box-icon.svg);
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 0;
    margin-bottom: 0;
    position: absolute;
    top: 17px;
}

.worries-list_item .worries-list_ttl {
    margin-left: 35px;
}

.worries-list_item .worries-detail {
    font-size: 15px;
    margin-left: 35px;
}

/* 施設紹介 */

.facilities {}
.facilities .facilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 70px 20px;
    /* gap: 70px 0px; */
    justify-content: center;
    /* justify-content: space-between; */
}
.facilities .facilities-list li {
    width: 32%;
}
.facilities .facilities-list li img {
    width: 100%;
}

@media screen and (max-width:1470px) {
    .rsv .char .img01 {
        right: 10%;
    }
}

@media screen and (max-width:1120px) {
    .rsv .char .img01 {
        right: 0;
    }
}

@media screen and (max-width:1024px) {
    .rsv .char .img01 {
        width: 500px;
        top: 100px;
    }
}

@media screen and (max-width:767px) {
    .hero_catch_text {
        top: 7%;
        left: 34%;
    }
    .hero_detail {
        position: relative;
        left: 0%;
        top: 67%;
        background-color: rgba(255, 255, 255, 89%);
        padding: 25px 40px;
        width: 80%;
        height: auto;
        margin: 0 auto;
    }

    .link {
        width: 100%;
        margin: 0 auto;
    }
    .opt-info {
        flex-direction: column;
    }
}

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

    .inner {
        padding: 55px 20px;
    }

    .-sp {
        display: block;
    }
    .-pc {
        display: none;
    }

    /* 外来日・診療時間について */

    .about {}
    .about .inner {
        padding: 0px 20px 55px;
    }

    .about-txt {
        padding-top: 0;
    }

    .rsv {
        height: auto;
    }

    .-link.-sp {
        color: #fff;
        font-size: 22px;
        padding: 13px 30px;
        background-color: #0B3F97;
        display: inline-block !important;
        margin: 80px auto 20px !important;
        border-radius: 10px;
        font-family: serif;
        width: 100%;
        text-align: center;
    }

    .-link.-sp:hover {
        opacity: 0.6;
        /* text-decoration: none; */
    }

    .-link.-pc {
        display: none;
    }

    .rsv .char img {
        right: 0px;
        top: 50px;
        width: 70px;
    }

    /* 診療時間 */

    .opt-info {
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .opt-info-item {
        /* flex-direction: column; */
        flex-wrap: wrap;
    }

    .opt-info-item p {
        display: none;
    }

    .rsv .-sp {
        display: flex !important;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        justify-content: center;
        /* margin-bottom: 100px; */
    }

    .rsv .-sp span {
        background-color: #95C932;
        color: #ffffff;
        padding: 2px 3px;
    }

    .rsv .char .img01 {
        display: none;
    }

    .rsv .char .img02 {
        display: block;
        position: absolute;
        z-index: 20;
        top: 210px;
        width: 100%;
        right: 0px;
    }

    .opt-info-item p span {
        padding: 2px 6px;
    }

    .opt-info-item a {
        margin-bottom: 0px;
    }

    .medical-hours .inner {
        padding: 55px 20px 84px;
    }

    .container {
        width: 100%;
        padding: 0;
    }

    th, td {
        padding: 10px 8px;
    }

    .left-align {
        font-size: 14px;
    }

    .left-align span {
        font-size: 12px;
        margin-right: 5px;
    }

    .cautionary {
        width: 100%;
        display: block;
    }

    .cautionary-txt {
        max-width: none;
        height: 80px;
        padding: 16px 15px;
    }

    .worries {
        padding: 70px 0 1px;
    }

    .worries-list {
        padding: 0 20px;
    }

    .worries-list_item {
        font-size: 15px;
        padding: 15px 0;
    }

    .worries-list_item .worries-list_ttl {
        margin-left: 30px;
        font-weight: 500;
    }

    .worries-list_item .worries-detail {
        font-size: 14px;
        margin-left: 30px;
        margin-right: 10px;
    }

    /* 施設紹介 */

    .facilities {}
    .facilities .facilities-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 0px;
        justify-content: unset;
    }
    .facilities .facilities-list li {
        width: 100%;
    }
    .facilities .facilities-list li img {
    }
}
