@charset "UTF-8";

.patient_txt {
    margin-bottom: 60px;
}

.patient_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.patient_link a {
    display: block;
    width: 100%;
    max-width: 260px;
}

.patient_link a:hover {
    opacity: 0.8;
}

.patient_link .tel {
    background: #fff;
    padding: 5px 30px;
    border-radius: 100px;
    text-align: center;
}

.patient_link .tel span {
    font-size: 25px;
    margin-left: 10px;
}

.patient_link .reserve {
    color: #fff;
    background: #B9442F;
    padding: 12px 30px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.patient_link .reserve::before {
    content: '';
    width: 22px;
    height: 25px;
    background: url(/img/cmn/icon-reserve.svg);
    background-size: cover;
    background-repeat: no-repeat;
}


.need {
    display: flex;
    height: 180px;
}

.need_ttl {
    color: #fff;
    background: #6C9D0F;
    border-radius: 30px 0 0 30px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.need_list {
    background: #fff;
    border-radius: 0 30px 30px 0;
    padding: 50px 40px;
    width: 100%;
    flex: 1;
}

.need_list li {
    padding-left: 25px;
    position: relative;
}

.need_list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(/img/home/icon-consul_list.svg);
    position: absolute;
    left: 0;
    top: 5px;
}

/* privacy */

.privacy {
    display: block;
}


@media screen and (max-width:767px) {
    /* patient */

    .patient_link {
        flex-flow: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .patient_txt {
        margin-bottom: 30px;
    }

    .need {
        flex-flow: column;
        height: 100%;
    }

    .need_ttl {
        width: 100%;
        padding: 20px 30px;
        border-radius: 30px 30px 0 0 ;
    }

    .need_list {
        padding: 20px;
        border-radius: 0 0 30px 30px;
    }


}