
/* lead */

.lead_section {
    margin-top: 80px;
}

.lead_subtitle {
    font-size: 22px;
    color: #6593DB;
    text-align: center;
    margin-top: 20px;
}

.lead_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.lead_img {
    width: 50%;
}

.lead_text {
    width: 45%;
}


/* voice */

.voice_top {
    display: flex;
    justify-content: space-between;
}

.voice_top_left {
    width: 935px;
}

.voice_section_title {
    order: 1;
}

.voice_question {
    display: flex;
    align-items: center;
}

.question_text {
    margin-left: 30px;
    font-size: 28px;
    line-height: 35px;
}

.question_text span{
    display: block;
    font-size: 16px;
}

.voice_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.voice_balloon {
    width: 550px;
    background: #fff;
    border-radius: 50px;
    margin-top: 30px;
    padding: 30px 50px 40px;
    position: relative;
}

.balloon_last {
    width: 735px;
}

.voice_balloon::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    transform: translate(0,-50%) rotate(45deg);
    background: #fff;
    position: absolute;
    top: 50%;
    right: -5px;
}

.after_left::after {
    left: -5px;
}

.voice_title {
    font-size: 22px;
    font-weight: 600;
    color: #6593DB;
    vertical-align: baseline;
    text-indent: -3em;
    padding-left: 3em;
    line-height: 40px;
}

.voice_title span {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 34px;
    margin-right: 10px;
}

.voice_text {
    text-align: justify;
    margin-top: 15px;
}


/* recruit_list */

.recruit_list {
    width: 750px;
}

.recruit_item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 2px dashed #6593DB;
}

.recruit_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recruit_item dt {
    color: #6593DB;
    font-weight: 600;
}

.recruit_item dd {
    width: 70%;
}

.recruit_item span {
    display: block;
    margin-top: 30px;
}


/* cta */

.cta_text {
    margin: 20px 0 50px;
}

.cta_btn_wrap {
    display: flex;
    justify-content: space-between;
}

.cta_btn {
    width: 450px;
}

.cta_clinic {
    background: #6593DB;
    border-radius: 30px 30px 0 0;
    text-align: center;
    color: #fff;
}

.cta_clinic span {
    font-size: 24px;
    margin-left: 10px;
}

.cta_tel {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 70px;
    color: #6593DB;
    border-radius: 0 0 30px 30px;
    width: 100%;
    text-align: center;
}

.cta_icon {
    transition: all 0.1s ease-in-out;
}

.cta_btn a:hover .cta_icon {
    transform: rotate(25deg);
}



/* スマホ */

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

    /* lead */

    .lead_section {
        margin-top: 50px;
    }

    .lead_subtitle {
        font-size: 18px;
        margin-top: 10px;
    }

    .lead_subtitle span {
        display: block;
        text-align: center;
    }

    .lead_content {
        flex-direction: column;
    }

    .lead_img {
        width: 100%;
    }

    .lead_text {
        width: 100%;
        margin-top: 30px;
        text-align: justify;
    }
    

    /* voice */

    .voice_section_title {
        order: 0;
        margin-top: -30px;
    }

    .voice_question {
        flex-direction: column;
        align-items: start;
    }

    .voice_q {
        width: 30px;
    }
    

    .question_text {
        font-size: 20px;
        margin-left: 0;
    }

    .question_text span {
        font-size: 12px;
    }

    .voice_top {
        flex-direction: column;
    }

    .voice_top_left {
        width: 100%;
        margin-top: -30px;
    }

    .voice_container {
        flex-direction: column;
        margin-top: 30px;
    }

    .voice_balloon_wrap {
        order: 1;
    }

    .voice_img {
        width: 70%;
    }

    .voice_teeth {
        order: 2;
        margin: 20px auto 0 0;
        width: 35%;
    }

    .voice_balloon {
        width: 100%;
        border-radius: 25px;
        padding: 20px 30px;
    }

    .voice_title {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 30px;
    }

    .voice_title span {
        font-size: 28px;
    }

    .balloon_last {
        margin-top: 0;
    }


    /* recruit_list */

    .recruit_list {
        width: 100%;
        margin-top: 30px;
    } 

    .recruit_item {
        flex-direction: column;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .recruit_item dd {
        width: 100%;
        margin-top: 10px;
    }

    .recruit_item span {
        margin-top: 10px;
    }


    /* cta */

    .cta_title {
        transform: scale(0.9);
    }

    .cta_btn_wrap {
        flex-direction: column;
    }

    .cta_text {
        margin-bottom: 10px;
    }

    .cta_btn {
        width: 90%;
        margin: 30px auto 0;
    }

    .cta_clinic {
        padding: 10px 0;
        font-size: 12px;
    }

    .cta_clinic span {
        font-size: 16px;
        margin-left: 5px;
    }

    .cta_tel {
        font-size: 24px;
        line-height: 50px;
    }
}