@charset "UTF-8";
#main-visual {
    position: relative;
    padding-top: 120px;
    padding-bottom: 5vw;
    background: linear-gradient(
        to right,
        rgba(0, 31, 64, 0.1),
        rgba(71, 83, 164, 0.1)
    );
    isolation: isolate;
    font-feature-settings: "palt";
    overflow-x: clip;
    overflow-y: visible;
    overflow: hidden;
}

.mv_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.mv_img {
    position: absolute;
    top: 0;
    right: 3vw;
    z-index: -2;
    height: 45vw;
}

@media (max-width: 1500px) {
    .mv_img {
        top: 0;
        right: 0;
        height: 52vw;
    }
}

@media (max-width: 1300px) {
    .mv_img {
        top: 0;
        right: 0;
        height: 55vw;
    }
}

@media (max-width: 1100px) {
    .mv_img {
        top: 50px;
        right: -5vw;
        height: 50vw;
    }
}

@media (max-width: 767px) {
    .mv_img {
        top: 0vw;
        right: -30vw;
        height: auto;
        width: 115vw
    }
}

@media (max-width: 550px) {
    .mv_img {
        top: 13vw;
        right: -20vw;
        height: auto;
        width: 100vw
    }
}

@media (max-width: 420px) {
    .mv_img {
        top: 16vw;
        right: -28vw;
        height: auto;
        width: 110vw
    }
}

.mv_wave svg {
    aspect-ratio: 192 / 17;
    object-fit: cover;
    width: 100%;
    fill: white;
}

.mv_wrap {
    width: min(90vw, 1150px);
    margin: 0 auto;
}

h1 {
    font-size: clamp(30px, 3vw, 55px);
    line-height: 1.4;
    letter-spacing: 0.15em;
    color: var(--dark);
    display: inline-block;
    position: relative;
    z-index: 1;
}

h1 img {
    position: absolute;
    z-index: -1;
    top: -0.1em;
    right: -36vw;
    width: 35vw;
    max-width: 700px;
}

h1 .small {
    font-size: 85%;
}

h1 .bg {
    display: inline-block;

    line-height: 1;
    font-size: 90%;
    padding: 0.1em 0.3em 0.2em;
    margin-right: 0.3em;

    color: #fff;
    background: var(--gd2);

    opacity: 0;
    clip-path: inset(0 100% 0 0);

    animation: bgReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0s);
}

/* 表示タイミング */
h1 .bg01 {
    --delay: 0.5s;
}

h1 .bg02 {
    --delay: 0.7s;
}

h1 .bg03 {
    --delay: 0.9s;
}

h1 .bg04 {
    --delay: 1.1s;
}

@keyframes bgReveal {
    0% {
        opacity: 1;
        clip-path: inset(0 100% 0 0);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    h1 .bg {
        animation: none;
        opacity: 1;
        transform: none;
        clip-path: inset(0 0 0 0);
    }
}

.mv_wrap .copy {
    font-size: clamp(15px, 1.2vw, 22px);
    line-height: 1.8;
    letter-spacing: 0.15em;
    margin: 1em 0;
    color: var(--dark);
    transition-delay: 1.6s;
    position: relative;
    z-index: 1;
}

.mv_box {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.mv_box .txt {
    font-size: clamp(13px, 1.0vw, 18px);
    line-height: 1.7;
    letter-spacing: 0.1em;
    border-left: 2px solid var(--sub);
    padding: 0.3em 0 0.3em 1em;
    transition-delay: 2.1s;
}

.btn_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: clamp(15px, 1.0vw, 20px);
    gap: 1em;
    margin-bottom: 0.5em;
    position: relative;
    z-index: 1;
}

.mv_btn {
    background-color: var(--main);
    line-height: 1;
    color: white;
    padding: 0.5em 3em 0.5em 1.5em;
    position: relative;
    letter-spacing: 0.1em;
    border-radius: 0.5em;
    transition: all 0.2s;
}

.mv_btn.dl:hover {
    background-color: var(--dark);
}

.mv_btn.dl:after {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-image: url(../img/dl_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
}

.mv_btn.demo {
    background-color: white;
    color: var(--main);
    border: 2px solid var(--main);
}

.mv_btn.demo:hover {
    background-color: var(--bg);
    color: var(--main);
}

.mv_btn.demo:after {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-image: url(../img/btn_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    #main-visual {
        padding-top: 90px;
        padding-bottom: 7vw;
    }

    h1 {
        font-size: clamp(24px, 6vw, 50px);
        line-height: 1.5;
    }

    h1 img {
        top: 0.6em;
        right: -38vw;
        width: 57vw;
    }

    .mv_wrap .copy {
        font-size: clamp(14px, 2.2vw, 20px);
        text-align: justify;
        margin: 1.5em 0;
    }

    .mv_box {
        flex-wrap: wrap;
        gap: 5vw;
    }

    .mv_box .txt {
        font-size: clamp(12px, 2vw, 18px);
        line-height: 1.5;
        text-align: justify;
    }

    .btn_box {
        font-size: clamp(13px, 2vw, 18px);
        margin: 0 auto;
    }

    .mv_btn.dl:hover {
        background-color: var(--dark);
    }

    .mv_btn.dl:after {
        content: "";
        display: inline-block;
        width: 1.2em;
        height: 1.2em;
        background-image: url(../img/dl_icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
    }

    .mv_btn.demo {
        border: 1px solid var(--main);
    }
}
/*===========================================
       お悩み
===========================================*/
.nayami_list {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw 4%;
    margin-top: 5vw;
}

.nayami_list li {
    width: 48%;
    background-color: var(--bg2);
    font-size: clamp(15px, 1.2vw, 18px);
    padding: 1em;
    display: flex;
    align-items: center;
    box-shadow: 0.3em 0.3em 0.4em rgba(0,0,0,0.1);
}

.nayami_list li .icon {
    width: 5em;
    height: 5em;
    display: flex;
    align-items: center;
}

.nayami_list li .icon img {
    width: 4em;
    height: 4em;
}

.nayami_list li .txt {
    flex: 1;
    height: 100%;
}

.nayami_list li .txt h3 {
    font-size: 110%;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 0.3em;
}

.nayami_list li .txt p {
    line-height: 1.5;
    font-size: 95%;
}

@media (max-width: 767px) {
    .nayami_list {
        gap: 5vw 4%;
        margin-top: 8vw;
    }

    .nayami_list li {
        width: 100%;
        font-size: clamp(13px, 2vw, 16px);
    }

    .nayami_list li .icon {
        width: 4em;
        height: 100%;
        align-items: flex-start;
    }

    .nayami_list li .icon img {
        width: 3em;
        height: 3em;
    }

    .nayami_list li .txt {
        flex: 1;
        height: 100%;
    }

    .nayami_list li .txt h3 {
        font-size: 120%;
    }

    .nayami_list li .txt p {
        line-height: 1.5;
    }
}

/*===========================================
       特徴
===========================================*/
#feature {
    --f1: #4df7ff;
    --f2: #61daff;
    --f3: #4ab6ff;
    --f4: #4a8bff;
    --f5: #9278ff;
    --f6: #bc76ff;
}

.feature_list .feature_wrap {
    font-size: clamp(15px, 1.2vw, 18px);
    border: 3px solid var(--f1);
    box-shadow: 0.5em 0.5em 0.7em rgba(0,0,0,0.1);
    background-color: white;
    padding: 2em;
    font-feature-settings: "palt";
}
.feature_list .feature_wrap:nth-child(2) {
    border: 3px solid var(--f2);
}
.feature_list .feature_wrap:nth-child(3) {
    border: 3px solid var(--f3);
}
.feature_list .feature_wrap:nth-child(4) {
    border: 3px solid var(--f4);
}
.feature_list .feature_wrap:nth-child(5) {
    border: 3px solid var(--f5);
}
.feature_list .feature_wrap:nth-child(6) {
    border: 3px solid var(--f6);
}
.feature_list .feature_wrap:nth-child(7) {
    border: 3px solid var(--f7);
}

.feature_list .feature_wrap:not(:last-child) {
    margin-bottom: 3em;
}

.feature_wrap .ttl_box {
    display: flex;
    gap: 2em;
    align-items: stretch;
}

.feature_wrap .ttl_box .ttl {
    flex: 1;
}

.feature_wrap .ttl_box .num {
    color: var(--f1);
    font-size: 100%;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0.5em;
}
.feature_wrap:nth-child(2) .ttl_box .num {color: var(--f2);}
.feature_wrap:nth-child(3) .ttl_box .num {color: var(--f3);}
.feature_wrap:nth-child(4) .ttl_box .num {color: var(--f4);}
.feature_wrap:nth-child(5) .ttl_box .num {color: var(--f5);}
.feature_wrap:nth-child(6) .ttl_box .num {color: var(--f6);}

.feature_wrap .ttl_box h3 {
    font-size: 130%;
    line-height: 1.5;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--f1);
    padding-bottom: 0.5em;
}
.feature_wrap:nth-child(2) .ttl_box h3 {border-bottom: 1px solid var(--f2);}
.feature_wrap:nth-child(3) .ttl_box h3 {border-bottom: 1px solid var(--f3);}
.feature_wrap:nth-child(4) .ttl_box h3 {border-bottom: 1px solid var(--f4);}
.feature_wrap:nth-child(5) .ttl_box h3 {border-bottom: 1px solid var(--f5);}
.feature_wrap:nth-child(6) .ttl_box h3 {border-bottom: 1px solid var(--f6);}

.feature_wrap .ttl_box .copy {
    font-size: 180%;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin: 0.5em 0 0.5em;
    color: var(--accent);
}

.feature_wrap .ttl_box .txt {
    text-align: justify;
    font-size: 90%;
}

.feature_wrap .ttl_box .f_img {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.feature_wrap .ttl_box .f_img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature_wrap .check_list {
    font-size: 100%;
    margin: 1em 0;
    border: 1px solid var(--f1);
    padding: 1em 1em 0.5em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em 5%;
    box-shadow: 0.3em 0.3em 0.5em rgba(0,0,0,0.05);
}
.feature_wrap:nth-child(2) .check_list {border: 1px solid var(--f2);}
.feature_wrap:nth-child(3) .check_list {border: 1px solid var(--f3);}
.feature_wrap:nth-child(4) .check_list {border: 1px solid var(--f4);}
.feature_wrap:nth-child(5) .check_list {border: 1px solid var(--f5);}
.feature_wrap:nth-child(6) .check_list {border: 1px solid var(--f6);}

.feature_wrap .check_list li {
    display: flex;
    gap: 0.2em;
    line-height: 1.5;
    width: 47.5%;
    min-width: 28em;
}

.feature_wrap .check_list li:before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.feature_wrap .check_list li:not(:last-child) {
    margin-bottom: 0.5em;
}

.feature_wrap .check_list li span {
    flex: 1;
}

.feature_wrap .f_box .box {
    background-color: #f9f9f9;
    padding: 1.5em;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.feature_wrap .f_box.flex .box {
    width: 47.5%;
}

.feature_wrap .f_box .box img {
    width: 100%;
    filter: drop-shadow(0.2em 0.2em 0.3em rgba(0, 0, 0, 0.2));
}

.feature_wrap .f_box.flex {
    display: flex;
    gap: 5%;
}

.feature_wrap .f_box.flex .box .tag_list {
    text-align: center;
}

.feature_wrap .f_box .box .tag_list li {
    display: inline-block;
    margin: 0 0.5em;
    line-height: 1;
    background-color: var(--sub);
    color: white;
    padding: 0.2em 1em;
    text-align: center;
    border-radius: 1.5em;
    font-size: 90%;
}

.feature_wrap .f_box .box .copy {
    font-size: 130%;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--dark);
}

.feature_wrap .f_box.flex .box .copy {
    text-align: center;
}

.feature_wrap .f_box .box .ba_list p {
    display: inline-block;
    line-height: 1;
    background-color: #777;
    color: white;
    padding: 0.2em 1em;
    text-align: center;
    letter-spacing: 0.1em;
}

.feature_wrap .f_box .box .ba_list li {
    font-size: 110%;
    line-height: 1.5;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.feature_wrap .f_box .box .ba_list li:before {
    content: "●";
    color: #777;
    margin-right: 0.2em;
}

.feature_wrap .f_box .box .ba_list:nth-child(2) li:before {
    color: var(--accent);
}

.feature_wrap .f_box .box .ba_list li:not(:last-child) {
    margin-bottom: 0.5em;
}

.feature_wrap .f_box .box .ba_list:nth-child(2) p {
    margin-top: 1em;
    background-color: var(--accent);
}

.feature_wrap .f_box .box .dot_list li {
    display: inline-block;
    font-size: 100%;
    line-height: 1.5;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.feature_wrap .f_box .box .dot_list li:not(:last-child) {
    margin-right: 2em;
}

.feature_wrap .f_box .box .dot_list li:before {
    content: "●";
    color: var(--sub);
    margin-right: 0.2em;
}

@media (max-width: 999px) {
    .feature_list .feature_wrap {
        font-size: clamp(14px, 1.2vw, 18px);
    }
    
    .feature_wrap .ttl_box .copy {
        font-size: 160%;
    }
}

@media (max-width: 767px) {
    .feature_list .feature_wrap {
        font-size: clamp(13px, 2vw, 16px);
        border: 2px solid var(--f1);
        padding: 1em;
    }
    .feature_list .feature_wrap:nth-child(2) {
        border: 2px solid var(--f2);
    }
    .feature_list .feature_wrap:nth-child(3) {
        border: 2px solid var(--f3);
    }
    .feature_list .feature_wrap:nth-child(4) {
        border: 2px solid var(--f4);
    }
    .feature_list .feature_wrap:nth-child(5) {
        border: 2px solid var(--f5);
    }
    .feature_list .feature_wrap:nth-child(6) {
        border: 2px solid var(--f6);
    }
    .feature_list .feature_wrap:nth-child(7) {
        border: 2px solid var(--f7);
    }
    
    .feature_wrap .ttl_box {
        flex-wrap: wrap;
        gap: 1em;
        flex-direction: column;
    }
    
    .feature_wrap .ttl_box .num {
        font-size: 120%;
    }
    
    .feature_wrap .ttl_box h3 {
        font-size: 130%;
    }
    
    .feature_wrap .ttl_box .copy {
        font-size: 150%;
        text-align: justify;
    }
    
    .feature_wrap .ttl_box .f_img {
        width: 100%;
        height: 12em;
    }
    
    .feature_wrap .check_list {
        margin: 1.5em 0;
    }
    
    .feature_wrap .check_list li {
        width: 100%;
        min-width: 100%;
    }
    
    .feature_wrap .f_box .box {
        padding: 1em;
    }
    
    .feature_wrap .f_box.flex .box {
        width: 100%;
    }
    
    .feature_wrap .f_box.flex {
        gap: 1em;
        flex-wrap: wrap;
    }
    
    .feature_wrap .f_box .box .tag_list {
        text-align: center;
        width: 100%;
    }
    
    .feature_wrap .f_box .box .tag_list li {
        padding: 0.3em 0.7em 0.2em;
    }
    
    .feature_wrap .f_box .box .copy {
        font-size: 120%;
    }
    
    .feature_wrap .f_box .box .ba_list li {
        font-size: 100%;
    }
    
    .feature_wrap .f_box .box .dot_list li {
        font-size: 100%;
    }
}

/*===========================================
       目指す
===========================================*/
#result {
    background-image: url(../img/result_back.webp);
    font-size: clamp(15px, 1.2vw, 18px);
    font-feature-settings: "palt";
    background-attachment: fixed;
}

#result h2 {
    text-align: center;
    margin-bottom: 2em;
}

#result h2 span {
    display: inline-block;
    background: var(--gd2);
    line-height: 1;
    color: white;
    padding: 0.3em 0.5em 0.4em;
    font-size: 200%;
    letter-spacing: 0.1em;
}

#result h2 span:nth-child(1) {
    margin-bottom: 0.5em;
}

.result_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw 5%;
}

.result_list li {
    position: relative;
    width: 30%;
    background-color: white;
    padding: 1em;
    box-shadow: 0.3em 0.3em 0.5em rgba(0,0,0,0.1);
}

.result_list li .num {
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    color: var(--sub);
    font-size: 150%;
    line-height: 1;
}

.result_list li .ttl {
    text-align: center;
    line-height: 1.3;
    font-size: 140%;
    letter-spacing: 0.1em;
    padding: 0 1em;
    margin-bottom: 0.5em;
}

.result_list li .txt {
    font-size: 90%;
    text-align: justify;
    line-height: 1.6;
}

@media (max-width: 999px) {
    .result_list li {
        width: 47.5%;
    }
}

@media (max-width: 767px) {
    #result {
        font-size: clamp(13px, 1.8vw, 16px);
    }

    #result h2 span {
        font-size: 160%;
        letter-spacing: 0.1em;
        margin-bottom: 0.5em;
    }

    .result_list li {
        width: 100%;
    }

    .result_list li .ttl {
        font-size: 130%;
    }

    .result_list li .txt {
        font-size: 95%;
        line-height: 2;
    }
}

/*===========================================
       事例
===========================================*/
#case-studies {
    background-image: url(../img/case-studies_bg.webp);
    background-attachment: fixed;
}

.case-studie_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw 5%;
    font-size: clamp(15px, 1.2vw, 18px);
    font-feature-settings: "palt";
}

.case-studie_list article {
    width: 47.5%;
    background-color: white;
    box-shadow: 0.3em 0.3em 0.5em rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.case-studie_list article .ttl_box {
    background-color: var(--main);
    padding: 1em;
    position: relative;
}

.case-studie_list article .ttl_box .tag {
    display: inline-block;
    line-height: 1;
    background-color: white;
    color: var(--main);
    padding: 0.2em 1em;
    text-align: center;
    border-radius: 1.5em;
    letter-spacing: 0.1em;
    font-size: 90%;
    margin-bottom: 0.5em;
    position: relative;
    z-index: 2;
}

.case-studie_list article .ttl_box .ttl {
    font-size: 160%;
    color: white;
    line-height: 1.5;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.case-studie_list article .ttl_box .num {
    position: absolute;
    top: 1em;
    right: 1em;
    color: rgba(255,255,255,0.1);
    z-index: 1;
}

.case-studie_list article .ttl_box .num span {
    display: block;
    text-align: center;
    line-height: 1;
}

.case-studie_list article .ttl_box .num span:nth-child(2) {
    font-size: 500%;
}

.case-studie_list .content {
    padding: 1.5em;
    font-size: 90%;
    line-height: 1.6;
    text-align: justify;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-studie_list .content dl {
    margin-bottom: 1em;
}

.case-studie_list .content dl dt {
    line-height: 1;
    margin-bottom: 0.5em;
    color: var(--main);
    display: flex;
    align-items: center;
    gap: 0.75em;
}

.case-studie_list .content dl dt::after {
    content: "";
    flex: 1;
    border-top: 1px solid var(--main);
}

.case-studie_list .content .osusume {
    background-color: #fff9f0;
    line-height: 1.5;
    margin-top: auto;
}

.case-studie_list .content .osusume p {
    background-color: var(--accent);
    display: inline-block;
    padding: 0.4em 1em 0.3em;
    line-height: 1;
    color: white;
}

.case-studie_list .content .osusume ul {
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1em;
    flex: 1;
}

.case-studie_list .content .osusume ul li {
    min-width: calc(50% - 1em);
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.case-studie_list .content .osusume ul li:before {
    content: "●";
    color: var(--accent);
    margin-right: 0.2em;
}

@media (max-width: 999px) {
    .case-studie_list {
        font-size: clamp(14px, 1.2vw, 16px);
    }

    .case-studie_list article .ttl_box .ttl {
        font-size: 140%;
    }
}

@media (max-width: 767px) {
    .case-studie_list {
        gap: 6vw 5%;
        font-size: clamp(13px, 1.6vw, 16px);
    }

    .case-studie_list article {
        width: 100%;
    }

    .case-studie_list article .ttl_box .ttl {
        font-size: 140%;
    }
}

/*===========================================
       仕組み
===========================================*/
#image {
    font-size: clamp(15px, 1.2vw, 18px);
    font-feature-settings: "palt";
    background-color: var(--bg2);
}

#image h2 {
    text-align: center;
    margin-bottom: 2em;
}

#image h2 span {
    display: inline-block;
    background: var(--gd2);
    line-height: 1;
    color: white;
    padding: 0.3em 0.5em 0.4em;
    font-size: 200%;
    letter-spacing: 0.1em;
}

#image h2 span:nth-child(1) {
    margin-bottom: 0.5em;
}

.image_wrap {
    display: flex;
    gap: 3%;
    margin-bottom: 8em;
}

.image_wrap .image_box {
    width: 45%;
}

.image_wrap .arrow {
    width: 4%;
    fill: var(--accent);
    display: flex;
    align-items: center;
}

.image_wrap .arrow img {
    width: 100%;
}

.image_box .list_wrap {
    background-color: white;
    box-shadow: 0.3em 0.3em 0.4em rgba(0,0,0,0.1);
    padding: 1em;
    position: relative;
    box-sizing: border-box;
}

.image_box:last-child .list_wrap {
    border: 2px solid var(--accent);
}

.image_box .list_wrap p.ttl {
    text-align: center;
    color: #777;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 1em;
}

.image_box:last-child .list_wrap p.ttl {
    color: var(--accent);
}

.image_box .list_wrap ul li {
    display: flex;
    gap: 0.2em;
    line-height: 1.5;
}

.image_box .list_wrap ul li:before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/check2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image_box .list_wrap ul li:not(:last-child) {
    margin-bottom: 0.5em;
}

.image_box .list_wrap ul li span {
    flex: 1;
}

.image_box .fukidashi {
    position: absolute;
    bottom: -7.5em;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main);
    color: white;
    text-align: center;
    padding: 1em 2em;
    width: 23em;
    letter-spacing: 0.1em;
    border-radius: 1.5em;
    line-height: 1.5;
}

.image_box:last-child .fukidashi {
    background-color: var(--accent);
}

.image_box .fukidashi:before {
    content: "";
    display: block;
    background-color: var(--main);
    height: 2em;
    width: 3em;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    top: -1.9em;
    left: 50%;
    transform: translateX(-50%);
}

.image_box:last-child .fukidashi:before {
    background-color: var(--accent);
}

@media (max-width: 999px) {
    #image {
        font-size: clamp(14px, 1.2vw, 16px);
    }

    #image h2 span {
        font-size: 180%;
    }

    .image_wrap .image_box {
        width: 40%;
    }

    .image_wrap .image_box:last-child {
        width: 50%;
    }

    .image_box .fukidashi {
        width: 19em;
    }
}

@media (max-width: 767px) {
    #image {
        font-size: clamp(13px, 1.6vw, 16px);
    }

    #image h2 span {
        font-size: 160%;
        margin-bottom: 0.5em;
    }

    .image_wrap {
        flex-wrap: wrap;
        gap: 5vw 0;
        margin-bottom: 0em;
    }

    .image_wrap .image_box {
        width: 100%;
        padding-bottom: 7.5em;
    }

    .image_wrap .image_box:last-child {
        width: 100%;
    }

    .image_wrap .arrow {
        width: 10%;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .image_box:last-child .list_wrap {
        border: 1px solid var(--accent);
    }

    .image_box .fukidashi {
        padding: 1em;
        width: 20em;
    }
}

/*===========================================
       流れ
===========================================*/
.flow_list {
    font-size: clamp(14px, 1vw, 16px);
    display: flex;
    gap: 2.5em;
}

.flow_list li {
    width: calc((100% - 10em) / 5);
    background-color: var(--bg2);
    font-feature-settings: "palt";
    padding: 1em;
    position: relative;
}

.flow_list li:not(:last-child):after {
    content: "";
    display: block;
    aspect-ratio: 9 / 20;
    width: 1.5em;
    background-image: url(../img/arrow_flow.svg);
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
}

.flow_list li .num {
    position: absolute;
    top: -0.5em;
    left: 0.5em;
    color: var(--sub);
    line-height: 1;
    font-size: 180%;
}

.flow_list li h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 3.5em;
    line-height: 1.3;
    letter-spacing: 0.07em;
    font-size: 130%;
}

.flow_list li .txt {
    text-align: justify;
    line-height: 1.5;
}

@media (max-width: 999px) {
    .flow_list {
        font-size: clamp(13px, 1.6vw, 16px);
        flex-wrap: wrap;
        gap: 2.5em;
    }

    .flow_list li {
        width: calc((100% - 10em) / 3);
    }
}

@media (max-width: 767px) {
    .flow_list {
        font-size: clamp(13px, 1.6vw, 16px);
        gap: 1.5em;
    }

    .flow_list li {
        width: 100%;
    }

    .flow_list li:not(:last-child):after {
        content: "";
        display: block;
        aspect-ratio: 9 / 20;
        width: 1em;
        background-image: url(../img/arrow_flow.svg);
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1.8em;
        left: 50%;
        transform: translateX(-50%);
        transform: rotate(90deg);
    }

    .flow_list li .num {
        top: -0.2em;
        font-size: 200%;
    }

    .flow_list li h3 {
        height: auto;
        font-size: 140%;
        margin-bottom: 0.5em;
    }
}

/*===========================================
       FAQ
===========================================*/
#faq {
    background-color: var(--main);
    font-size: clamp(15px, 1.2vw, 18px);
    font-feature-settings: "palt";
}

#faq .h2_box h2 {
    color: white;
}

.faq__item {
    overflow: hidden;
    border-radius: 1em;
    background-color: var(--bg2);
    box-shadow: 0.2em 0.2em 0.5em rgba(0, 0, 0, 0.08);
}

.faq__item + .faq__item {
    margin-top: 2em;
}

.faq__question {
    width: 100%;
    border: 0;
    background-color: #fff;
    padding: 1em 1.5em 1em 0.8em;
    display: flex;
    align-items: center;
    gap: 1em;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
}

.faq__q {
    flex: 0 0 auto;
    color: var(--sub);
    font-size: 200%;
    line-height: 1;
}

.faq__title {
    flex: 1;
    font-size: 120%;
    line-height: 1;
    letter-spacing: 0.05em;
}

.faq__arrow {
    flex: 0 0 auto;
    width: 1.2em;
    height: 1.2em;
    border-top: 2px solid #269bd8;
    border-right: 2px solid #269bd8;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.faq__item:not(.is-open) .faq__arrow {
    transform: rotate(135deg);
}

.faq__answer {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.3s ease;
}

.faq__item:not(.is-open) .faq__answer {
    grid-template-rows: 0fr;
}

.faq__answer-inner {
    overflow: hidden;
}

.faq__answer p {
    padding: 1em 1em 1em 3.5em;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    #faq {
        font-size: clamp(13px, 1.8vw, 18px);
    }

    .faq__question {
        padding: 1em 1.5em 1em 0.8em;
        align-items: flex-start;
        gap: 1em;
        cursor: pointer;
        text-align: left;
        font: inherit;
        color: inherit;
    }

    .faq__q {
        font-size: 180%;
    }

    .faq__title {
        font-size: 100%;
        line-height: 1.5;
        font-weight: bold;
    }

    .faq__arrow {
        width: 1em;
        height: 1em;
        border-top: 1px solid #269bd8;
        border-right: 1px solid #269bd8;
        align-self: center;
    }

    .faq__answer p {
        padding: 1em 1em 1em 3em;
    }
}
