@charset "utf-8";

.u-sp-show {
    display: none !important;
}

@media screen and (max-width:767px) {
    .u-sp-show {
        display: block !important;
    }
}

.flex {
    display: flex;
}

.fixed_link dd a {
    background: #E66C8D;
    height: 40px;
    line-height: 33px;
    text-decoration: underline;
}

.fixed_link dd a:hover {
    text-decoration: underline;
}

/*
.parallax {
    position: relative;
}

.parallax:before {
    background: url(../images/bg_mainvisual.jpg) no-repeat center;
    background-size: cover;
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}
*/

#miryoku{
    position: relative;
}
#miryoku::after{
    background: url(../images/bg_01.jpg) no-repeat center;
    background-size: cover;
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}
.top {
    width: 100%;
    /*background: url(../images/bg_01.jpg) repeat;
    background-size: cover;*/
    padding-top: 80px;
    padding-bottom: 60px;
}

.top-mv__inner {
    width: 100%;
    /*max-width: 1087px;*/
    max-width: 1127px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.top-mv__image {
    width: 100%;
}

.top-mv__image img {
    width: 100%;
}

@media screen and (max-width:767px) {
    .top {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .top-mv__inner {
        max-width: 100%;
        padding: 0 2.5vw 20px;
    }
}

.top-overview__inner {
    width: 100%;
    max-width: 1010px;
    margin: 0 auto 56px;
    background: #fff;
    border-radius: 30px;
    padding: 30px 63px;
}

.top-overview__list {
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.top-overview__list.flex-start {
    align-items: flex-start;
}

.top-overview__list::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 5px;
    background: url(../images/line_dot.png) no-repeat;
    background-size: 100% auto;
}

.top-overview__list.last::after {
    content: none;
}

.top-overview__list dt {
    flex-shrink: 0;
    min-width: 118px;
    height: 44px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 44px;
    text-align: center;
    background-color: #f56d8e;
}

.top-overview__list dd {
    padding-left: 30px;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
}

.top-overview__list dd .theme {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.top-overview__list dd .theme span {
    font-size: 3.8rem;
}

.top-overview__list dd .detail li {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.53;
    padding-left: 1.5em;
    position: relative;
}

.top-overview__list dd .detail li::before {
    position: absolute;
    top: 0.3em;
    left: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: #fabccb;
}

.top-overview__list dd .add {
    margin-top: 10px;
    padding-left: 1.5em;
    font-size: 1.6rem;
    line-height: 1.375;
}

@media screen and (max-width:767px) {
    .top-overview__inner {
        max-width: calc(100% - 5vw);
        padding: 0 2.5vw;
        margin: 0 2.5vw 30px;
        border-radius: 30px;
        padding: 20px 2.5vw;
    }

    .top-overview__list {
        flex-direction: column;
        padding: 10px 0 20px;
        position: relative;
    }

    .top-overview__list::after {
        content: none;
    }

    .top-overview__list.flex-start {
        align-items: center;
    }

    .top-overview__list dt {
        width: 100%;
        min-width: 100%;
        height: 30px;
        font-size: 1.8rem;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .top-overview__list dd {
        padding: 0 1.5vw;
        font-size: 2rem;
    }

    .top-overview__list dd .theme {
        font-size: 2rem;
    }

    .top-overview__list dd .theme span {
        font-size: 2.4rem;
    }

    .top-overview__list dd .detail li {
        font-size: 2rem;
        padding-left: 1em;
    }

    .top-overview__list dd .detail li::before {
        top: 0.4em;
        width: 14px;
        height: 14px;
    }

    .top-overview__list dd .add {
        margin-top: 10px;
        padding-left: 0;
        font-size: 1.4rem;
    }

}

.top__link {
    text-align: center;
}

.top__link a {
    display: block;
    width: 600px;
    height: 66px;
    margin: 0 auto;
    color: #fff;
    text-decoration: none;
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 66px;
    text-align: center;
    background: #f56d8e;
    border-radius: 50px;
    transition: 0.3s;
    position: relative;
}

.top__link a::after {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 0;
    height: 0;
    border-width: 18px 9px 0 9px;
    border-color: #fff transparent transparent transparent;
    border-style: solid;
}

.top__link a:hover {
    background: #ff5d9b;
}

@media screen and (max-width:767px) {
    .top__link {
        width: 100%;
        padding: 0 2.5vw;
    }

    .top__link a {
        width: 100%;
        height: 50px;
        font-size: 2.4rem;
        line-height: 50px;
    }

    .top__link a::after {
        right: 20px;
    }
}

.bnr {
    background: #f56d8e;
}

.bnr__inner {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.bnr__inner::after {
    position: absolute;
    bottom: -5px;
    right: 0;
    content: '';
    width: 414px;
    height: 334px;
    background: url(../images/bnr_img.png) no-repeat;
    background-size: contain;
}

.bnr__text {
    color: #fff;
    font-size: 6rem;
    font-weight: bold;
    line-height: 1.46;
}

@media screen and (max-width:767px) {
    .bnr__inner {
        max-width: 100%;
        padding: 40px 2.5vw 260px;
    }

    .bnr__inner::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: auto;
        aspect-ratio: 414 / 334;
    }

    .bnr__text {
        font-size: 3.4rem;
        text-align: center;
    }
}

.sec-overview {
    background: #fff;
    padding: 80px 0;
}

.sec-overview__inner {
    width: 100%;
    /*max-width: 870px;*/
    max-width: 910px;
    padding: 0 20px;
    margin: 0 auto;
}

.sec-overview__heading {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.56;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: #333333 solid 1px;
    margin-bottom: 20px;
}

.sec-overview__list {
    display: flex;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.sec-overview__list.flex-start {
    align-items: flex-start;
}

.sec-overview__list.flex-start dt {
    margin-top: 10px;
}

.sec-overview__list dt {
    flex-shrink: 0;
    min-width: 118px;
    height: 30px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    background-color: #f69d3b;
}

.sec-overview__list dd {
    padding-left: 30px;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.81;
}

.sec-overview__list dd .font-large {
    font-size: 3rem;
}

.sec-overview__list dd .add {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.57;
}

.sec-overview__list dd .detail li {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.53;
    padding-left: 1em;
    position: relative;
}

.sec-overview__list dd .detail li::before {
    position: absolute;
    top: 0.3em;
    left: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
}

@media screen and (max-width:767px) {
    .sec-overview {
        padding: 40px 0;
    }

    .sec-overview__inner {
        max-width: 100%;
        padding: 0 5vw;
    }

    .sec-overview__heading {
        font-size: 5.5vw;
    }

    .sec-overview__list {
        flex-direction: column;
    }

    .sec-overview__list.flex-start {
        align-items: center;
    }

    .sec-overview__list.flex-start dt {
        margin-top: 0;
    }

    .sec-overview__list dt {
        flex-shrink: 0;
        width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
        font-size: 1.8rem;
    }

    .sec-overview__list dd {
        padding: 0 1.5vw;
        font-size: 2rem;
        line-height: 1.6;
    }

    .sec-overview__list dd .font-large {
        font-size: 2.4rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .sec-overview__list dd .add {
        line-height: 1.4;
    }

    .sec-overview__list dd .detail li {
        font-size: 2rem;
        line-height: 1.4;
    }

    .sec-overview__list dd .detail li::before {
        width: 16px;
        height: 16px;
    }
}

#inquiry_form {
    /*background: url(../images/bg_01.jpg) repeat;
    background-size: 100% auto;*/
    padding: 80px 0;
}

#inquiry_form h2 {
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
}

#inquiry_form .text {
    margin-bottom: 80px;
    text-align: center;
}

@media screen and (max-width:767px) {
    #inquiry_form {
        padding: 40px 0;
    }
}

/* #inquiry_form .form_list:first-of-type {
    flex-direction: column;
    align-items: flex-start;
} */

/* #inquiry_form .form_list:first-of-type label:first-of-type {
    margin-bottom: 1rem;
} */

/* #inquiry_form .form_list:first-of-type .radio_btn {
    width: auto;
} */

#inquiry_form input[name="field_4775085_sei"] {
    margin-right: 1rem;
}

#inquiry_form .radio_btn {
    text-align: left;
    width: auto;
}

#inquiry_form .mb-1 {
    margin-bottom: 1rem;
}

#inquiry_form .attention {
    display: block;
    margin-bottom: 3rem;
    margin-left: 1.6rem;
    font-size: 1.6rem;
    text-indent: -1.6rem;
    text-align: left;
    color: #CD3E55;
}

aside {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #fff;
}


@media screen and (max-width:767px) {
    main .basewidth {
        width: 100%;
    }

    .flex {
        flex-direction: column;
    }

    .fixed_link dd a {
        background: #E66C8D;
        height: 33px;
    }

    .sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sec .text {
        font-size: 1.6rem;
    }

    .sec_title {
        font-size: 5.5vw;
        line-height: 1.333;
        text-align: center;
    }



    #inquiry_form {
        padding: 20vw 0 10vw;
        background: transparent;
    }

    #inquiry_form h2 {
        line-height: 1.5;
    }

    #inquiry_form h2 span {
        font-size: 4.5vw;
    }

    #inquiry_form .text {
        margin-bottom: 10vw;
        text-align: left;
    }

    #inquiry_form input[name="field_4775085_sei"],
    #inquiry_form input[name="field_4775087_y"],
    #inquiry_form select[name="field_4775087_m"] {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    #inquiry_form .radio_btn {
        text-align: left;
        align-items: center;
    }

    #inquiry_form .radio_btn .radio-flex {
        display: flex;
        flex-direction: column;
    }

    #inquiry_form .radio_btn .fs-s {
        font-size: 80%;
        display: block;
    }


    #inquiry_form .form_tel input {
        width: 100%;
    }

    #inquiry_form .radio_btn:first-of-type {
        margin-bottom: 1rem;
    }

    #inquiry_form .attention {
        margin-left: 0;
        text-indent: 0;
    }

    aside {
        padding-top: 40px;
        padding-left: 2.5vw;
        padding-right: 2.5vw;
    }
}