
/* lead */

.menu_lead {
    margin-top: 70px;
}

.menu_section_title {
    margin-bottom: 50px;
}


/* menu_nav */

.menu_nav {
    display: flex;
    justify-content: center;
}

.menu_nav_list {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    width: 500px;
}

.menu_nav_right {
    width: 350px;
}

.menu_nav_list li {
    position: relative;
}

.menu_nav_list li::after {
    content: "";
    display: block;
    width: 2px;
    height: 20px;
    background: #707070;
    position: absolute;
    top: 12px;
    right: -45px;
}

.menu_nav_list .after_none::after {
    display: none;
}

.menu_nav_list a {
    display: block;
}

.menu_nav_list a:hover .menu_item {
    transform: scale(1.15);
}

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


/* menu_content */

.section_bg_pink {
    padding-bottom: 100px;
    margin-bottom: -150px;
}

.anchor {
    padding-top: 100px;
    margin-top: -100px;
}

.menu_section {
    background: #fff;
    border-radius: 50px;
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.menu_title_box {
    width: 250px;
}

.menu_title {
    text-align: center;
}

.menu_img {
    margin-top: 30px;
}

.menu_text {
    width: 580px;
}

.menu_text p {
    text-align: justify;
}


/* text_style */

.top_space {
    margin-top: 30px;
}

.subhead_style {
    font-size: 24px;
    font-weight: 600;
    color: #EF9191;
    margin-top: 50px;
}

.list_style {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.list_style::before {
    content: "●";
    color: #EF9191;
    margin-right: 10px;
    font-size: 18px;
}

.refer_title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.refer_title span {
    display: flex;
    font-size: 16px;
    font-weight: normal;
}

.refer_list {
    width: 450px;
}

.refer_item {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.refer_item dd {
    width: 80%;
}




/* スマホ */

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

    .menu_lead {
        margin-top: 50px;
    }

    .menu_section_title {
        margin-bottom: 30px;
    }

    .menu_lead p {
        width: 100%;
        text-align: justify;
    }


    /* menu_nav */

    .menu_nav {
        flex-direction: column;
        margin-top: 20px;
    }

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

    .menu_nav_right {
        justify-content: center;
    }

    .menu_nav_list li::after {
    height: 15px;
    top: 7px;
    right: 0;
    }

    .menu_nav_list li:last-child::after {
    display: none;
    }

    .menu_nav_list li {
        width: 33%;
    }

    .menu_nav_list a {
        text-align: center;
    }

    .menu_item {
        transform: scale(0.8);
    }


    /* menu_content */

    .section_bg_pink {
        padding: 50px 3%;
        margin-bottom: -100px;
    }

    .menu_section {
        flex-direction: column;
        padding: 40px 30px;
        border-radius: 30px;
        margin-bottom: 30px;
    }

    .menu_title_box {
        width: 100%;
    }

    .menu_img {
        margin: 20px auto 0;
        width: 70%;
    }

    .menu_title {
        transform: scale(0.8);
    }

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


    /* text_style */

    .top_space {
        margin-top: 20px;
    }

    .subhead_style {
        font-size: 18px;
        margin: 30px 0 10px;
    }

    .list_style {
        font-size: 16px;
        margin: 20px 0 5px;
    }

    .list_style::before {
        font-size: 14px;
    }

    .refer_title {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .refer_title span {
        font-size: 14px;
        margin-top: 5px;
    }

    .refer_list {
        width: 100%;
    }
}