/* department - 診療案内 */

/* sec-examination ------------------------ */
.sec-examination .flex:has(.area) {
    gap: 4%;
}

.sec-examination .area {
    position: relative;
    flex: 1;
    width: 100%;
    padding: 40px 25px 25px;
    background-color: #ededeb;
    border-radius: 10px;
}

.sec-examination .area::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 4px;
    height: 25px;
    content: "";
    transform: translateX(-50%);
}

.sec-examination .ex1::before {
    background-color: var(--org);
}

.sec-examination .ex2::before {
    background-color: var(--grn);
}

.sec-examination .list {
    display: inline-block;
    text-align: left;
}

.sec-examination .list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.sec-examination .list li::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    content: "";
    background-color: #b3b3b3;
    border-radius: 50%;
    transform: translateY(-50%);
}
.sec-examination .list li.asterisk-has::after {
    content: "※";
    font-weight: bold;
    font-size: var(--f-sz14);
    vertical-align: super;
    color: var(--org);

}
.sec-examination .not {
    padding-left: 1.3em;
    text-indent: -1.3em;
}
.sec-examination .not::before {
    content: "※";
    padding-right: 0.3em;
    color: var(--org);
}

/*.sec-examination .not .asterisk {
    margin-right: 7px;
}*/

@media (max-width : 767px) {
    .sec-examination .flex:has(.area) {
        flex-flow: column;
    }

    .sec-examination .ex1 {
        order: 1;
    }

    .sec-examination .ex2 {
        order: 3;
    }

    .sec-examination .not {
        order: 2;
        margin-bottom: var(--mp40);
    }
}

/* sec-selfpay ------------------------ */
.sec-selfpay .item {
    padding-left: 19px;
    border-left: 2px solid #ccc;
}

.sec-selfpay .list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
}

.sec-selfpay .list li:not(:last-child) {
    margin-bottom: 10px;
}

.sec-selfpay .list li::before {
    position: absolute;
    top: 0.5em;
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    margin-left: 4px;
    content: "";
    background-color: var(--gry);
    border-radius: 50%;
}
