@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Noto+Sans+JP:wght@100..900&display=swap');

html {
    font-size: 10px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Noto Sans JP', 'UDShinGoPro',sans-serif;
    letter-spacing: .1rem;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.6;
    background: #e8f9f6;
}

@media screen and (min-width: 1025px) {
    html.open,
    body.open {
        overflow: hidden;
    }
}

img {
    display: block;
    width: 100%;
    height: 100%;
}

#fukuri-00_wrap {
    background: #fff;
}

@media screen and (max-width: 700px) {
    html {
        font-size: 1.6vw;
    }
}

@media screen and (min-width: 1025px) {
    #fukuri-00_wrap {
        position: relative;
        max-width: min(38.1944444444vw, 65.375rem);
        margin: 0 auto;
        box-shadow: 0px 0px 2.5rem rgba(0, 0, 0, 0.15);
        overflow: hidden;
        z-index: 1;
    }
}

/* ========================== */
/* ========= ヘッダー =========*/
/* ========================== */
header {
    position: relative;
    display: flex;
    flex-flow: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    max-width: 1025px;
    min-width: 375px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-sizing: border-box;
}

.header-logo {
    max-width: 23rem;
    width: 100%;
    height: 5rem;
}

.fukuri-00_header_copy {
    display: none;
}

.fukuri-00_header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ========================== */
/* ========== ナビ ==========*/
/* ========================== */
.fukuri-00_g-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: #e8f9f6;
    visibility: hidden;
    opacity: 0;
    transition: visibility var(--transition-speed) ease-in-out, 
                opacity var(--transition-speed) ease-in-out;
    z-index: 9998;
}

.fukuri-00_g-nav.open {
    visibility: visible;
    opacity: 1;
}

.fukuri-00_g-nav_list {
    display: flex;
    justify-content: center;
    align-items: baseline;
    row-gap: 1rem;
    flex-direction: column;
    max-width: 60rem;
    min-width: 37.5rem;
    width: 80%;
    height: 100dvh;
    margin: 0 auto;
}

.fukuri-00_g-nav_item a {
    position: relative;
    display: block;
    padding: .5rem .5rem .5rem 5rem;
    font-family: 'Noto Sans JP';
    font-size: 2.25rem;
    font-weight: 700;
    text-align: left;
    color: #3c3a39;
    box-sizing: border-box;
    cursor: pointer;
}

.fukuri-00_g-nav_item a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 3rem;
    background: url(../images/fukuri-00_g-nav_off.png) top left / 100% no-repeat;
    transform: translateY(-50%);
}

.fukuri-00_header_hum {
    display: flex;
    align-items: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.fukuri-00_header_hum .hum_line {
    display: block;
    width: 100%;
    height: 2px;
    background: #212121;
}

.fukuri-00_header_hum .hum_line::before,
.fukuri-00_header_hum .hum_line::after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: #212121;
    transition: all .5s;
}

.fukuri-00_header_hum .hum_line::before {
    transform: translateY(-8px);
}

.fukuri-00_header_hum .hum_line::after {
    transform: translateY(6px);
}

.fukuri-00_header_hum.open {
    position: absolute;
    right: 20px;
    z-index: 9999;
}

.fukuri-00_header_hum.open .hum_line::before {
    transform: rotate(90deg);
}

.fukuri-00_header_hum.open .hum_line {
    transform: rotate(-45deg);
}

.fukuri-00_header_hum.open .hum_line::after {
    opacity: 0;
}

@media screen and (min-width: 1025px) {
    header {
        max-width: inherit;
        min-width: inherit;
        padding: inherit;
        background: transparent;
    }

    #fukuri-00_header {
        position: fixed;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .fukuri-00_header-inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        max-width: 100vw;
        width: 100%;
        margin: 0 auto;
        height: 100%;
    }

    .header-logo {
        display: block;
        left: 2.5rem;
        position: fixed;
        top: 2rem;
        width: 100%;
    }

    .fukuri-00_header_copy {
        position: absolute;
        top: 50%;
        left: 4vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 25vw;
        padding: 1rem;
        transform: translateY(-50%);
        box-sizing: border-box;
    }

    .fukuri-00_header_btn {
        margin-top: 4rem;
    }

    .fukuri-00_g-nav {
        position: static;
        visibility: inherit;
        opacity: 1;
    }

    .fukuri-00_g-nav_list {
        row-gap: .5rem;
        width: 100%;
        max-width: inherit;
        min-width: inherit;
        padding: 1rem;
        box-sizing: border-box;
    }

    .fukuri-00_header-left-area {
        position: relative;
        display: block;
    }

    .fukuri-00_header-right-area {
        display: block;
        margin-left: auto;
        position: relative;
        width: 29.902778vw;
        padding: 1rem;
        box-sizing: border-box;
    }

    .fukuri-00_g-nav_item a {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 1.2vw;
    }

    .fukuri-00_g-nav_item a::before {
        width: 2.25rem;
        height: 2.5rem;
    }

    .fukuri-00_g-nav_item a.is-active {
        color: #00a29a !important; 
        font-weight: bold;
    }

        .fukuri-00_g-nav_item a.is-active::before {
        background: url(../images/fukuri-00_g-nav_on.png) top left / 100% no-repeat;
    }

    .fukuri-00_header_hum {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .fukuri-00_g-nav_item a::after {
        top: 44%;
        left: 1rem;
        width: 1.5vw;
        height: 1.5vw;
        border-width: .4vw;
    }
}

@media screen and (max-width: 550px) {
    .fukuri-00_header_hum {
        top: 43%;
        width: 5rem;
        height: 5rem;
    }
}

/* ========================== */
/* ========== 01_FV ==========*/
/* ========================== */
#fukuri-01_fv {
    position: relative;
}

.fukuri-01_fv_btn {
    position: absolute;
    max-width: 84vw;
    display: block;
    width: 85%;
    left: 0;
    right: 0;
    bottom: 10vw;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 1000;
}

@media screen and (min-width: 1025px) {
    .fukuri-01_fv_btn {
        max-width: 660px;
        bottom: 4vw;
    }
}
/* ========================== */
/* ========== 02_trouble ==========*/
/* ========================== */
#fukuri-02_trouble {
    background: #f5f5f5;
}

/* ========================== */
/* ========== 03_about ==========*/
/* ========================== */
#fukuri-03_about {
    background: #fff;
}

.fukuri-03_about_txt {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2.625rem 1.25rem 4.5rem;
}

.fukuri-03_about_cap {
    max-width: 690px;
    margin: 0 auto;
    padding: 0 4rem 5rem;
    box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
    .fukuri-03_about_txt {
        max-width: 30.5vw;
        padding: 3vw 1.02vw 3vw;
    }

    .fukuri-03_about_cap {
        padding: 0 3.4vw 1.2vw;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    .fukuri-03_about_txt {
        max-width: 79vw;
        padding: 6vw 1.25rem 8vw;
    }

    .fukuri-03_about_cap {
        max-width: 86.5vw;
        padding: 0 0 6vw;
    }
}

/* ========================== */
/* ========== 04_reason ==========*/
/* ========================== */
#fukuri-04_reason {
    position: relative;
    background: #e4f4f1;
    padding-bottom: 12.8rem;
}

#fukuri-04_reason::before {
    content: "";
    position: absolute;
    left: 3rem;
    top: -12rem;
    max-width: 8rem;
    width: 100%;
    height: 26rem;
    background: url(../images/00_fukuri_about_human.png) top left / 100% no-repeat;
    z-index: 1000;
}

.fukuri-04_reason_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4rem;
    margin: 5.4rem auto 0;
    padding: 0 5rem;
    box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
    #fukuri-04_reason {
        padding-bottom: 6vw;
    }

    #fukuri-04_reason::before {
        left: 2vw;
        top: -6vw;
        max-width: 5vw;
        height: 17vw;
    }

    .fukuri-04_reason_list {
        row-gap: 3rem;
        margin: 4vw auto 0;
        padding: 0 2.8vw;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    #fukuri-04_reason {
        padding-bottom: 8vw;
    }

    .fukuri-04_reason_list {
        row-gap: 3rem;
        margin: 6vw auto 0;
        padding: 0 15vw;
    }

    #fukuri-04_reason::before {
        left: 4vw;
        top: -17vw;
        max-width: 14vw;
        height: 46vw;
    }
}

/* ========================== */
/* ========== 05_benefits ==========*/
/* ========================== */
#fukuri-05-benefits {
    position: relative;
    background: #fff;
    padding-bottom: 12.8rem;
}

#fukuri-05-benefits::before {
    content: "";
    position: absolute;
    right: 1rem;
    top: -15rem;
    max-width: 16rem;
    width: 100%;
    height: 33rem;
    background: url(../images/00_fukuri_benefit_human.png) top left / 100% no-repeat;
    z-index: 1000;
}

.fukuri-05_benefits_list {
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    margin: 7rem auto 0;
    padding: 0 6rem;
    box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
    #fukuri-05-benefits {
        padding-bottom: 6vw;
    }

    #fukuri-05-benefits::before {
        right: .5vw;
        top: -7vw;
        max-width: 9vw;
        height: 17vw;
    }

    .fukuri-05_benefits_list {
        row-gap: 3vw;
        margin: 3vw auto 0;
        padding: 0 3vw;
    }
}
@media screen and (min-width: 701px) and (max-width: 1024px) {
    #fukuri-05-benefits {
        padding-bottom: 8vw;
    }

    #fukuri-05-benefits::before {
        right: 2vw;
        top: -9vw;
        max-width: 18vw;
        height: 45vw;
    }

    .fukuri-05_benefits_list {
        margin: 6vw auto 0;
        padding: 0 16vw;
    }
}

/* ========================== */
/* ========== 06_support ==========*/
/* ========================== */
#fukuri-06_support {
    background: #ffaf57;
    padding-bottom: 10rem;
}

.fukuri-06_support_disc {
    margin-top: 5rem;
    padding: 0 5.3rem;
    box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
    #fukuri-06_support {
        padding-bottom: 6vw;
    }

    .fukuri-06_support_disc {
        margin-top: 3vw;
        padding: 0 3.2vw;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    #fukuri-06_support {
        padding-bottom: 8vw;
    }

    .fukuri-06_support_disc {
        margin-top: 6vw;
        padding: 0 16vw;
    }
}

/* ========================== */
/* ========== 07_case ==========*/
/* ========================== */
#fukuri-07_case {
    background: #fff;
    padding-bottom: 8rem;
}

.fukuri-07_case_list {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    margin: 5.4rem auto 0;
    padding: 0 5rem;
    box-sizing: border-box;
}

.fukuri-07_case_copy {
    margin-top: 4rem;
    padding: 0 5.3rem;
    box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
    #fukuri-07_case {
        padding-bottom: 3vw;
    }

    .fukuri-07_case_list {
        row-gap: 2vw;
        margin: 3vw auto 0;
        padding: 0 3vw;
    }

    .fukuri-07_case_copy {
        margin-top: 2vw;
        padding: 0 3vw;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    #fukuri-07_case {
        padding-bottom: 8vw;
    }

    .fukuri-07_case_list {
        row-gap: 2vw;
        margin: 6vw auto 0;
        padding: 0 16vw;
    }

    .fukuri-07_case_copy {
        padding: 0 16vw;
    }
}

/* ========================== */
/* ========== 08_voice ==========*/
/* ========================== */
#fukuri-08_voice {
    background: #e8f9f6;
    padding-bottom: 3.3vw;
}

.fukuri-08_voice_list {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    margin: 7rem auto 0;
    padding: 0 9.5rem;
    box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
    #fukuri-08_voice {
        padding-bottom: 3.3vw;
    }

    .fukuri-08_voice_list {
        row-gap: 2vw;
        margin: 3vw auto 0;
        padding: 0 5.75vw;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    #fukuri-08_voice {
        padding-bottom: 8vw;
    }

    .fukuri-08_voice_list {
        margin: 8vw auto 0;
        padding: 0 18vw;
    }

    .fukuri-07_case_copy {
        padding: 0 16vw;
    }
}

/* ========================== */
/* ========== 09_step==========*/
/* ========================== */
#fukuri-09_step {
    position: relative;
    background: #fff;
    padding-bottom: 10rem;
}

#fukuri-09_step::before {
    content: "";
    position: absolute;
    left: .5rem;
    top: -5rem;
    max-width: 17.5rem;
    width: 100%;
    height: 20rem;
    background: url(../images/00_fukuri_step_human.png) top left / 100% no-repeat;
    z-index: 1000;
}

.fukuri-09_step_list {
    margin: 7rem auto 0;
    padding: 0 5rem;
    box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
    #fukuri-09_step {
        padding-bottom: 6vw;
    }

    #fukuri-09_step::before {
        left: .3vw;
        top: -3.5vw;
        max-width: 11.25vw;
        height: 11vw;
    }

    .fukuri-09_step_list {
        margin: 3vw auto 0;
        padding: 0 3vw;
    }
}


@media screen and (min-width: 701px) and (max-width: 1024px) {
    #fukuri-09_step {
        padding-bottom: 8vw;
    }

    #fukuri-09_step::before {
        left: 1.3vw;
        top: -8.5vw;
        max-width: 23.25vw;
        height: 23vw;
    }

    .fukuri-09_step_list {
        margin: 8vw auto 0;
        padding: 0 16vw;
    }

    .fukuri-SNS {
        padding: 0 16vw;
    }

    .fukuri-09_SNS_bnr {
        max-width: 69.2vw;
    }
}

/* ========================== */
/* ========== 10_faq ==========*/
/* ========================== */
#fukuri-10_faq {
    padding-bottom: 10rem;
    background: #e8f9f6;
}

.fukuri-10_faq_list {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    margin: 7rem auto 0;
    padding: 0 4.4rem;
    box-sizing: border-box;
}

.fukuri-10_faq_q {
    position: relative;
    cursor: pointer;
}

.fukuri-10_faq_q img {
    border-radius: 1rem;
}

.fukuri-10_faq_q.open img {
    border-radius: 0;
}

.fukuri-10_faq_q::before {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1001;
}

.fukuri-10_faq_a {
    display: none;
    margin-top: -2px;
}

.fukuri-10_faq_q::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    border-style: solid;
    border-right: 1.25rem solid transparent;
    border-left: 1.25rem solid transparent;
    border-top: 1.5rem solid #fff;
    border-bottom: 0;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.fukuri-10_faq_q.open::before {
    transform: translateY(-50%) rotate(180deg);
}

@media screen and (min-width: 1025px) {
    #fukuri-10_faq {
        padding-bottom: 6rem;
    }

    .fukuri-10_faq_list {
        row-gap: 2vw;
        margin: 3vw auto 0;
        padding: 0 3vw;
    }

    .fukuri-10_faq_q img {
        border-radius: .5vw;
    }

    .fukuri-10_faq_q::before {
        right: 1vw;
        border-right: .75vw solid transparent;
        border-left: .75vw solid transparent;
        border-top: 1vw solid #fff;
    }
}

@media only screen and (max-width: 470px) {
    .fukuri-10_faq_q::before {
        right: 2.5rem;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    #fukuri-10_faq {
        padding-bottom: 8vw;
    }

    .fukuri-10_faq_list {
        margin: 8vw auto 0;
        padding: 0 16vw;
    }
}

/* ========================== */
/* ========== 11_contact ==========*/
/* ========================== */
#fukuri-11_contact {
    padding-bottom: 10rem;
    background: #edf2f1;
}

.fukuri-11_contact_btn {
    width: 100%;
    padding: 0 15rem;
    margin: 4rem auto 0;
    box-sizing: border-box;
    cursor: pointer;
}

@media screen and (min-width: 1025px) {
    #fukuri-11_contact {
        padding-bottom: 6vw;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    #fukuri-11_contact {
        padding-bottom: 10vw;
    }

    .fukuri-11_contact_btn {
        padding: 0 32vw;
        margin: 3vw auto 0;
    }
}


/* ========================== */
/* ========== 00_fllow ==========*/
/* ========================== */
#fukuri-00_fllow {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    max-width: 1025px;
    min-width: 375px;
    margin: 0 auto;
    padding: 2rem 4rem;
    box-sizing: border-box;
    z-index: 1002;
}

#fukuri-00_fllow::after {
    content: "";
    position: absolute;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: 0 auto;
    background: #e8f9f6;
    opacity: .9;
    z-index: -1;
}

.fukuri-00_fllow_btn {
    max-width: 660px;
    display: block;
    margin: 0 auto;
}

@media only screen and (min-width: 1024px) {
    #fukuri-00_fllow {
        display: none;
    }
}