@charset "UTF-8";
*{
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #333333;
    line-height: 1.0;
}

a{
    cursor: pointer;
}

/* ヘッダー */
header{
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 100;
}

header div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 94%;
    max-width: 1440px;
    margin: auto;
}

header img{
    width: 137px;
}

.header_cta{
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 2.5vw, 24px);
    color: #FFF;
    font-weight: 500;
    background-color: #E75A7C;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
}

@media screen and (max-width:1000px){
    header{
        height: 65px;
    }

    header img{
        width: 120px;
    }

    .header_cta{
        padding: 10px 20px;
        border-radius: 6px;
    }
}

@media screen and (max-width:600px){
    header{
        height: 50px;
    }

    header img{
        width: 100px;
    }

    .header_cta{
        padding: 8px 16px;
        border-radius: 4px;
    }
}

/* メインビジュアル */
.mv{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.mv_top{
    height: 100vh;
    background-image: url(images/mv_image_pc.webp);
    background-size: cover;
    background-position: center left;
    position: relative;
}

.mv_top h1 .pc{
    width: clamp(754px, 58vw, 843px);
    position: absolute;
    top: 110px;
    right: 8%;
}

.mv_top h1 .sp{
    display: none;
}

.mv_top>img{
    display: none;
}

.mv_top_inner{
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5% 3.5% 0 3.5%;
    border-radius: 20px;
    position: absolute;
    bottom: 8%;
    right: 16%;
}

.mv_top_inner div{
    color: #2C3E50;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 0 6px rgba(255,255,255,1);
    text-align: center;
}

.mv_top_inner div:nth-of-type(1){
    font-size: clamp(16px, 2.25vw, 20px);
    margin-bottom: 4px;
}

.mv_top_inner div:nth-of-type(2){
    font-size: clamp(20px, 2.75vw, 24px);
    margin-bottom: 16px;
}

.mv_top_inner img:nth-of-type(1){
    width: 18vw;
    max-width: 259px;
    margin-bottom: -20px;
}

.mv_top_inner img:nth-of-type(2){
    width: 17vw;
    max-width: 246px;
}

.mv_bottom{
    background: linear-gradient(-70deg, #FCE4EC 50%, #FFDBE7 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 48px 0;
}

.mv_bottom p{
    font-size: clamp(14px, 2.125vw, 20px);
}

.mv_buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mv_cta img{
    width: 30px;
}

.mv_cta{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 390px;
    padding: 20px 30px;
    border-radius: 8px;
}

.mv_cta div{
    font-size: clamp(20px, 2.75vw, 24px);
    color: #FFF;
    font-weight: 500;
}

.mv_cta_download{
    background-color: #4A90E2;
    box-shadow: 0 4px 0 0 #004EA2;
}

.mv_cta_contact{
    background-color: #E75A7C;
    box-shadow: 0 4px 0 0 #EC2A59;
}

.mv_bottom_sp{
    display: none;
}

@media screen and (max-width:1440px){
    .mv_top h1 .pc{
        right: 4%;
    }

    .mv_top_inner{
        bottom: 4%;
        right: 4%;
        padding: 1.5% 3% 0 3%;
    }
}

@media screen and (max-width:1000px){
    .mv{
        height: 100%;
    }
    
    .mv_top{
        height: 100%;
        background-image: url(images/mv_image_sp.webp);
        background-position: center;
    }

    .mv_top h1 .pc{
        display: none;
    }

    .mv_top h1 .sp{
        display: block;
        width: 72vw;
        max-width: 580px;
        margin: 78px auto 60vw auto;
    }

    .mv_top>img{
        display: block;
        width: 100%;
        height: 10vh;
        position: absolute;
        bottom: 0;
    }

    .mv_top_inner{
        display: none;
    }

    .mv_bottom{
        display: none;
    }

    .mv_bottom_sp{
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(-16deg, #FCE4EC 50%, #FFDBE7 50%);
        display: block;
    }

    .mv_bottom_sp_inner{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .mv_bottom_sp_inner1{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mv_bottom_sp_inner2{
        display: flex;
        align-items: center;
    }

    .mv_bottom_sp_inner1 div{
        color: #2C3E50;
        font-weight: 500;
        line-height: 1.5;
        text-shadow: 0 0 6px rgba(255,255,255,1);
        text-align: center;
    }

    .mv_bottom_sp_inner1 div:nth-of-type(1){
        font-size: clamp(16px, 2.25vw, 20px);
        margin-bottom: 4px;
    }

    .mv_bottom_sp_inner1 div:nth-of-type(2){
        font-size: clamp(20px, 2.75vw, 24px);
        margin-bottom: 16px;
    }

    .mv_bottom_sp_inner1 img{
        width: 30vw;
        max-width: 259px;
        margin-bottom: -20px;
    }

    .mv_bottom_sp_inner2 img{
        width: 27vw;
        max-width: 246px;
    }

    .mv_bottom_sp_inner2 p{
        font-size: clamp(14px, 2.125vw, 20px);
        line-height: 1.4;
        text-align: center;
        margin: 0;
    }

    .mv_buttons{
        flex-wrap: wrap;
        gap: 16px;
        margin: 0 2vw 36px 2vw;
    }   
}

@media screen and (max-width:600px){
    .mv_top h1 .sp{
        width: 82vw;
        margin: 66px auto 66vw auto;
    }
    
    .mv_bottom_sp_inner{   
        flex-direction: column;
    }

    .mv_bottom_sp_inner1 div:nth-of-type(2){
        margin-bottom: 4px;
    }

    .mv_bottom_sp_inner1 img{
        width: 54vw;
        max-width: 259px;
        margin-bottom: -20px;
    }
    
    .mv_cta img{
        width: 26px;
    }

    .mv_cta{
        gap: 4px;
        width: 88vw;
        max-width: 390px;
        padding: 18px 0;
        border-radius: 8px;
    }
}

@media screen and (max-width:400px){
    .mv_top h1 .sp{
        width: 86vw;
        margin: 66px auto 72vw auto;
    }
}

/* 2nd 従来型の課題 */
section{
    width: 1000px;
    max-width: 98%;
    margin: 0 auto;
}

.second{
    background-image: url(images/2nd_background.png);
    background-size: cover;
    background-position: bottom center;
    position: relative;
}

.second>img{
    width: 91px;
    position: absolute;
    top: 78px;
    right: 50%;
    margin-right: 300px;
}

h2{
    font-size: clamp(32px, 5vw, 48px);
    color: #E75A7C;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    line-height: 1.4;
    text-align: center;
}

h2::after{
    content: "";
    display: inline-block;
    background-color: #F7A7C0;
    height: 4px;
    width: 100px;
    border-radius: 5px;
}

.second h2{
    font-size: clamp(24px, 3.75vw, 36px);
    font-weight: 600;
    line-height: 1.6;
    color: #2C3E50;
    text-align: center;
}

.second h2::after{
    display: none;
}

.second_inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 60px 0 120px 0;
    position: relative;
}

.second_inner img:nth-of-type(1){
    width: 490px;
}

.second_inner img:nth-of-type(2){
    width: 310px;
    position: absolute;
    top: 178px;
    right: 145px;
}

.second_inner img:nth-of-type(3){
    width: 385px;
    position: absolute;
    top: 285px;
    left: 12px;
}

.second_inner img:nth-of-type(4){
    width: 398px;
    position: absolute;
    top: 400px;
    right: 18px;
}

.second_inner img:nth-of-type(5){
    display: none;
}

.second_inner p{
    font-size: clamp(16px, 2.25vw, 20px);
}

.second_inner p span{
    font-size: clamp(20px, 2.75vw, 24px);
    color: #2C3E50;
    font-weight: 500;
}

.second_inner P br{
    display: none;
}

@media screen and (max-width:1000px){
    section{
        width: 96%;
    }

    h2{
        gap: 24px;
    }

    h2::after{
        width: 80px;
    }

    .second_inner{
        padding: 50px 0 100px 0;
    }

    .second_inner img:nth-of-type(1){
        width: 49vw;
    }

    .second_inner img:nth-of-type(2){
        width: 32vw;
        position: absolute;
        top: 23%;
        right: 11vw;
    }

    .second_inner img:nth-of-type(3){
        width: 38vw;
        position: absolute;
        top: 34%;
        left: 2vw;
    }

    .second_inner img:nth-of-type(4){
        width: 40vw;
        position: absolute;
        top: 50%;
        right: 2vw;
    }

    .second_inner p{
        line-height: 1.5;
        text-align: center;
    }

    .second>img{
        width: 80px;
        top: 78px;
        left: 12vw;
        margin-right: 0;
    }
}

@media screen and (max-width:700px){
    .second{
        background-image: url(images/2nd_background_sp.webp);
    }

    .second_inner{
        padding: 40px 0 80px 0;
        gap: 10px;
    }
    
    .second_inner P br{
        display: block;
    }

    .second_inner P .sp{
        display: none;
    }

    .second>img{
        width: 64px;
        top: 60px;
        left: 10vw;
    }
}

@media screen and (max-width:580px){
    .second_inner{
        padding: 36px 0 72px 0;
    }
    
    .second_inner img:nth-of-type(2),.second_inner img:nth-of-type(3),.second_inner img:nth-of-type(4){
        display: none;
    }

    .second_inner img:nth-of-type(5){
        display: block;
        width: 99vw;
        max-width: 380px;
        order: 2;
        margin-top: -5%;
    }

    .second_inner img:nth-of-type(1){
        width: 68vw;
        max-width: 300px;
        order: 3;
        margin-top: -16%;
    }

    .second_inner h2{
        order: 1;
    }

    .second_inner p{
        order: 4;
    }

    .second>img{
        display: none;
    }
}

@media screen and (max-width:400px){
    .second_inner P .sp{
        display: block;
    }

    .second_inner img:nth-of-type(1){
        width: 74vw;
        margin-top: -20%;
    }
}

/* 3rd Opt.oneの解決策 */
.third{
    background-color: #FFF;
}

.third_inner{
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.third_h2{
    font-size: clamp(18px, 2.625vw, 24px);
    margin-bottom: 16px;
    font-weight: 500;
    color: #E75A7C;
}

.third_inner h3{
    font-size: clamp(20px, 2.75vw, 24px);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.third_points{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.third_point1{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
}

.point1_top{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 100px;
}

.point1_top h3::before{
    content: "";
    display: inline-block;
    background-image: url(images/point1_icon.svg);
    background-size: cover;
    width: 88px;
    height: 88px;
}

.point1_top img:first-of-type{
    width: 96%;
    max-width: 960px;
    background-color: #FEFEEB;
    padding: 48px 20px;
    border-radius: 20px;
}

.point1_top img:last-of-type{
    display: none;
}

.point1_top p{
    font-size: clamp(11px, 1.56vw, 14px);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.point1_top p::before{
    content: "※";
}

.point1_bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.point1_text{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.point1_text p{
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
    text-align: justify;
}

.point1_text1 img{
    width: 94px;
}

.point1_text1 p{
    padding: 20px 118px 20px 144px;
    background-image: url(images/balloon_1_pc.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 86%;
    max-width: 854px;
    box-sizing: border-box;
}

.point1_text2 img{
    width: 100px;
}

.point1_text2_inner{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 30px 20px 57px;
    background-image: url(images/balloon_2_pc.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 86%;
    max-width: 854px;
    box-sizing: border-box;
}

.point1_text2_inner .text1{
    font-weight: 500;
    color: #2C3E50;
    text-decoration: underline;
}

.point1_text2_inner .text2{
    font-weight: 500;
    color: #E75A7C;
    text-decoration: underline;
}

.point1_text2_inner span{
    font-weight: 500;
    color: #E75A7C;
}

.third_points_bottom{
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.third_point2,.third_point3{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.third_point2 h3::before{
    content: "";
    display: inline-block;
    background-image: url(images/point2_icon.svg);
    background-size: cover;
    width: 88px;
    height: 88px;
}

.third_point3 h3::before{
    content: "";
    display: inline-block;
    background-image: url(images/point3_icon.svg);
    background-size: cover;
    width: 88px;
    height: 88px;
}

.third_point2>img:first-of-type{
    width: 488px;
}

.third_point2>img:last-of-type{
    display: none;
}

.third_point3 img{
    width: 422px;
}

.third_point3>div:first-of-type{
    background-color: #E3EEF7;
    padding: 112px 33px;
    border-radius: 20px;
}

.point2_text,.point3_text{
    line-height: 1.5;
    font-size: clamp(14px, 2vw, 18px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.point2_text>div,.point3_text>div{
    font-weight: 500;
    font-size: clamp(16px, 2.25vw, 20px);
}

.point2_text>img,.point3_text>img{
    width: 36px;
}

@media screen and (max-width:1000px){    
    .third_inner{
        padding: 80px 0;
    }

    .third_h2{
        margin-bottom: 12px;
    }

    .third_inner h3{
        gap: 18px;
    }

    .point1_top h3::before,.third_point2 h3::before,.third_point3 h3::before{
        width: 72px;
        height: 72px;
    }

    .point1_top{
        margin-top: 80px;
        gap: 20px;
    }

    .third_point2,.third_point3{
        gap: 20px;
    }
    
    .third_points_bottom{
        flex-direction: column;
        gap: 64px;
    }

    .point1_text1 img{
        width: 9.4vw;
    }

    .point1_text2 img{
        width: 10vw;
    }

    .point1_text1 p,.point1_text2_inner{
        padding: 20px 24px;
        background-image: none;
        background-color: #FFEEF4;
        border: #8A8A8A solid 2px;
        border-radius: 16px;
        width: 82vw;
        box-sizing: border-box;
    }

    .third_points{
        gap: 64px;
    }

    .third_point3 img{
        width: 90vw;
        max-width: 422px;
    }

    .third_point3>div:first-of-type{
        width: 96vw;
        padding: 32px 0;
        display: flex;
        justify-content: center;
        border-radius: 16px;
    }

    .point1_top img:first-of-type{
        width: 90vw;
        padding: 32px 3vw;
        border-radius: 16px;
    }

    .third_point2>img:first-of-type{
        display: none;
    }

    .third_point2>img:last-of-type{
        display: block;
        width: 96vw;
    }

    .point2_text>img,.point3_text>img{
        width: 32px;
    }

    .third_point1{
        gap: 24px;
    }
}

@media screen and (max-width:600px){
    .third_inner{
        padding: 64px 0;
    }

    .third_h2{
        margin-bottom: 8px;
    }

    .third_inner h3{
        gap: 12px;
    }

    .point1_top h3::before,.third_point2 h3::before,.third_point3 h3::before{
        width: 60px;
        height: 60px;
    }

    .point1_top{
        margin-top: 64px;
        gap: 12px;
    }

    .third_point2,.third_point3{
        gap: 12px;
    }

    .point1_top img:first-of-type{
        display: none;
    }

    .point1_top img:last-of-type{
        display: block;
        width: 90vw;
        background-color: #FEFEEB;
        padding: 32px 3vw;
        border-radius: 16px;
    }

    .point1_bottom{
        gap: 12px;
    }

    .point2_text, .point3_text{
        gap: 8px;
    }
}

@media screen and (max-width:520px){
    .point1_text{
        flex-direction: column;
        align-items: center;
        width: 94vw;
        gap: 6px;
    }

    .point1_text1 p,.point1_text2_inner{
        width: fit-content;
    }

    .point1_text1 img{
        width: 18.8vw;
        max-width: 75px;
    }

    .point1_text2 img{
        width: 20vw;
        max-width: 82px;
    }
}

/* 4th サブスクだからこそのメリット */
.forth{
    background: linear-gradient(187deg, #FFE6E8 7%, #FFF5F5 65%);
    padding-top: 120px;
    position: relative;
}

.forth h2{
    margin-bottom: 64px;
}

.forth_merits{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 64px;
}

.merit{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.merit>img{
    width: 320px;
}

.merit>div{
    font-weight: 500;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.merit_1>div::before{
    content: "";
    display: inline-block;
    background-image: url(images/merit1_icon.svg);
    background-size: cover;
    background-position: center;
    width: 36px;
    height: 36px;
}

.merit_2>div::before{
    content: "";
    display: inline-block;
    background-image: url(images/merit2_icon.svg);
    background-size: cover;
    background-position: center;
    width: 36px;
    height: 36px;
}

.merit_3>div::before{
    content: "";
    display: inline-block;
    background-image: url(images/merit3_icon.svg);
    background-size: cover;
    background-position: center;
    width: 36px;
    height: 36px;
}

.merit>p{
    line-height: 1.5;
    font-size: clamp(16px, 2.125vw, 18px);
}

.forth_background{
    width: 100%;
    margin-bottom: -2px;
}

@media screen and (max-width:1000px){
    .forth{
        padding-top: 80px;
    }

    .forth_merits{
        flex-wrap: wrap;
        row-gap: 48px;
    }

    .merit{
        gap: 16px;
    }

    .forth_merits{
        padding-bottom: 52px;
    }
}

@media screen and (max-width:600px){
    .forth{
        padding-top: 64px;
    }

    .forth h2{
        margin-bottom: 52px;
    }

    .merit>div{
        gap: 8px;
    }

    .merit{
        gap: 12px;
    }

    .merit>img{
        width: 86vw;
        max-width: 320px;
    }

    .forth_merits{
        padding-bottom: 48px;
    }
}

/* 5th 私たちのスタンス */
.fifth{
    background-color: #FADADD;
}

.fifth h2{
    padding-top: 88px;
}

.fifth section>img{
    width: 100%;
    margin: 64px 0;
}

.fifth section>div{
    display: none;
}

.fifth p:first-of-type{
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
    text-align: center;
    padding-bottom: 24px;
}

.fifth p:last-of-type{
    font-weight: 500;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.5;
    text-align: center;
    padding-bottom: 112px;
}

.fifth p:last-of-type br{
    display: none;
}

@media screen and (max-width:1000px){
    .fifth h2{
        padding-top: 76px;
    }

    .fifth img{
        margin: 52px 0;
    }

    .fifth p:last-of-type{
        padding-bottom: 88px;
    }
}

@media screen and (max-width:600px){
    .fifth h2{
        padding-top: 64px;
    }

    .fifth section>img{
        display: none;
    }

    .fifth section>div{
        display: flex;
        align-items: center;
        position: relative;
    }

    .fifth section>div img:first-of-type{
        width: 96vw;
        margin: 88px 0 36px 0;
    }

    .fifth section>div img:last-of-type{
        width: 400px;
        position: absolute;
        top: -24px;
        left: 50%;
        margin-left: -200px;
    }

    .fifth p:last-of-type br{
        display: block;
    }

    .fifth p:last-of-type{
        padding-bottom: 72px;
    }
}

@media screen and (max-width:500px){
    .fifth section>div img:last-of-type{
        width: 78vw;
        top: -2vw;
        left: 50%;
        margin-left: -39vw;
    }
}

/* 6th 導入から定着までの流れ */
.sixth{
    background-color: #FFF;
}

.sixth>img{
    width: 100%;
    margin-top: -2px;
}

.sixth section{
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.sixth h2{
    margin-top: 140px;
}

.sixth p:first-of-type{
    font-size: clamp(14px, 2vw, 18px);
    text-align: center;
}

.sixth p:last-of-type{
    font-size: clamp(16px, 2.25vw, 20px);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 140px;
}

.sixth span{
    font-size: clamp(20px, 2.75vw, 24px);
}

.sixth span .span_inner{
    color: #E75A7C;
}

.steps{
    background-image: url(images/6th_arrow_pc.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 97px;
}

.steps_top{
    display: flex;
    gap: 54px;
    align-items: flex-start;
    justify-content: flex-start;
}

.steps_bottom{
    display: flex;
    gap: 54px;
    align-items: flex-end;
    justify-content: flex-end;
}

.step{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.step>img{
    width: 24vw;
    max-width: 240px;
}

.step_inner{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.step_inner div:first-of-type{
    color: #E75A7C;
    font-weight: 500;
    text-align: center;
    font-size: clamp(18px, 2.375vw, 20px);
}

.step_inner div:last-of-type{
    font-weight: 500;
    text-align: center;
    font-size: clamp(14px, 2.3vw, 18px);
    line-height: 1.5;
}

.steps_bottom .step img{
    order: 2;
}

.steps_bottom .step_inner{
    order: 1;
}

.step_inner .sp1{
    display: none;
}

@media screen and (max-width:1000px){
    .sixth h2{
        margin-top: 120px;
    }

    .sixth p:last-of-type{
        margin-bottom: 120px;
    }
}

@media screen and (max-width:800px){
    .sixth h2{
            margin-top: 100px;
        }

    .sixth p:last-of-type{
        margin-bottom: 100px;
    }
    
    .sixth section{
        align-items: center;
    }
    
    .steps_wrap{
        position: relative;
    }

    .steps_wrap::before{
        content: "";
        display: inline-block;
        height: 90%;
        width: 2px;
        background-color: #E75A7C;
        position: absolute;
        top: 5%;
        left: 100px;
        z-index: 0;
    }

    .steps{
        background-image: none;
        gap: 24px;
        position: relative;
        z-index: 1;
    }

    .steps_top,.steps_bottom{
        flex-direction: column;
        gap: 24px;
    }

    .step{
        flex-direction: row;
    }

    .step>img{
        width: 34vw;
        max-width: 200px;
    }

    .step_inner{
        align-items: flex-start;
    }

    .step_inner .sp2{
        display: none;
    }

    .steps_bottom{
        align-items: flex-start;
        justify-content: flex-start;
    }

    .steps_bottom .step img{
        order: 1;
    }

    .steps_bottom .step_inner{
        order: 2;
    }

    .step_inner div:last-of-type{
        text-align: left;
    }

    .step_inner .sp1{
        display: block;
    }

    .sixth section{
        gap: 48px;
    }
}

@media screen and (max-width:588px){
    .sixth section{
        gap: 36px;
    }
    
    .sixth h2{
            margin-top: 88px;
        }

    .sixth p:last-of-type{
        margin-bottom: 88px;
    }
    
    .steps_wrap::before{
        left: 17vw;
    }
}

/* 7th お客様の声 */
.seventh{
    background-color: #FFF1F4;
}

.seventh section{
    padding: 120px 0;
}

.seventh h2{
    margin-bottom: 64px;
}

.seventh_inner{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.voice{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voice>img{
    width: 75px;
}

.voice>div{
    display: flex;
    align-items: center;
}

.voice>div img{
    width: 36px;
    margin-right: -5px;
}

.voice p{
    font-size: clamp(14px, 2vw, 18px);
    text-align: center;
    padding: 20px 0;
    width: 86vw;
    max-width: 870px;
    box-sizing: border-box;
    border-radius: 50px;
}

.voice1 p{
    background-color: #FEB7CD;
}

.voice2 p{
    background-color: #FFCDDD;
}

@media screen and (max-width:1000px){
    .seventh section{
        padding: 100px 0;
    }

    .seventh_inner{
        width: 96vw;
    }
    
    .voice>img{
        width: 8.5vw;
        max-width: 75px;
    }

    .voice p{
        width: 82vw;
        border-radius: 16px;
    }

    .voice>div img{
        width: 32px;
        margin-right: -2px;
    }
}

@media screen and (max-width:700px){
    .seventh section{
        padding: 80px 0;
    }

    .seventh h2{
        margin-bottom: 52px;
    }

    .voice p{
        width: 80vw;
        border-radius: 12px;
        padding: 18px 24px;
        line-height: 1.5;
        text-align: justify;
    }

    .voice>img{
        width: 16vw;
        max-width: 75px;
    }
}

@media screen and (max-width:600px){
    .voice p{
        width: 72vw;
        padding: 12px 18px;
        line-height: 1.5;
        text-align: justify;
    }

    .voice>div img{
        width: 24px;
        margin-right: -2px;
    }
}

/* 8th 他社への流出はほぼゼロ */
.eighth{
    background-color: #FFF;
}

.eighth section{
    padding: 120px 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.eighth_top{
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.eighth_top>p{
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
    text-align: center;
}

.eighth_top>p span{
    font-size: clamp(20px, 2.75vw, 24px);
    color: #E75A7C;
}

.eighth_top>p:last-of-type{
    font-size: clamp(15px, 2.19vw, 20px);
    font-weight: 500;
    line-height: 1.5;
    display: inline-block;
    width: fit-content;
    text-align: center;
    padding: 16px;
    background: transparent;
    border-radius: 142px;
    position: relative;
    z-index: 0;
}

.eighth_top>p:last-of-type br{
    display: none;
}

.eighth_top>p:last-of-type::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #FFF1F4;
    filter: blur(20px);
    z-index: -2;
}

.eighth h2{
    margin-bottom: 64px;
}

.eighth_cases{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case{
    border: #FFF1F4 solid 8px;
    border-radius: 16px;
    position: relative;
}

.case_title{
    font-size: clamp(16px, 2.125vw, 18px);
    font-weight: 500;
    color: #FFF;
    text-align: center;
    background-color: #4A90E2;
    padding: 10px 12px;
    border-radius: 8px;
    position: absolute;
    top: 24px;
    left: 30px;
}

.case_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 80px 100px 48px 100px;
}

.case_inner>img{
    width: 36px;
}

.case_inner>p{
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
    text-align: justify;
}

.eighth_bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.eighth_bottom h3{
    margin-top: 120px;
    font-size: clamp(18px, 2.625vw, 24px);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 24px;
}

.eighth_bottom h3::before,.eighth_bottom h3::after{
    content: "";
    display: inline-block;
    width: 60px;
    height: 1px;
    border-radius: 5px;
    background-color: #333333;
}

.eighth_bottom_picture{
    width: 100%;
    background-image: url(images/8th_background.png);
    background-size: cover;
    background-position: bottom left;
}

.eighth_bottom_picture>img:first-of-type{
    display: block;
    width: 96vw;
    max-width: 1000px;
    padding: 24px 0;
    margin: 0 auto;
}

.eighth_bottom_picture>img:last-of-type{
    display: none;
}

.eighth_bottom p{
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
    text-align: center;
}

.eighth_bottom_text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.eighth_bottom_text>img{
    width: 261px;
}

@media screen and (max-width:1000px){
    .eighth_bottom_picture>img:first-of-type{
        width: 98vw;
    }

    .eighth_top>p:last-of-type br{
        display: block;
    }
}

@media screen and (max-width:800px){
    .eighth section{
        padding: 100px 0;
    }

    .eighth_top{
        width: 96vw;
        gap: 30px;
    }

    .case_inner{
        gap: 16px;
        padding: 80px 8vw 48px 8vw;
    }

    .eighth_bottom h3{
        margin-top: 100px;
    }

    .eighth_bottom p{
        padding: 4vw;
    }
}

@media screen and (max-width:720px){
    .eighth_bottom_picture>img:first-of-type{
        display: none;
    }

    .eighth_bottom_picture>img:last-of-type{
        display: block;
        width: 80vw;
        margin: 0 auto;
    }

    .eighth_bottom{
        gap: 30px;
    }
}

@media screen and (max-width:600px){
    .eighth section{
        padding: 88px 0;
    }

    .eighth h2{
        margin-bottom: 52px;
    }

    .eighth_top{
        gap: 24px;
    }

    .eighth_top>p{
        padding: 0 4vw;
    }

    .eighth_cases{
        gap: 16px;
    }

    .case_title{
        padding: 8px 10px;
        left: 24px;
    }

    .case_inner{
        gap: 12px;
        padding: 80px 8vw 40px 8vw;
    }

    .case_inner>img{
        width: 32px;
    }

    .eighth_top>p:last-of-type{
        padding: 12px;
    }

    .eighth_bottom h3{
        margin-top: 88px;
        gap: 10px;
    }

    .eighth_bottom h3::before,.eighth_bottom h3::after{
        width: 6vw;
    }

    .eighth_bottom_picture>img:last-of-type{
        width: 96vw;
    }

    .eighth_bottom_text>img{
        width: 233px;
    }

    .eighth_bottom{
        gap: 24px;
    }
}

/* 9th cta */
.ninth{
    background-image: url(images/9th_background.png);
    background-size: cover;
    background-position: center;
}

.ninth section{
    padding: 120px 0;
}

.ninth h2{
    margin-bottom: 64px;
}

.ninth_buttons{
    display: flex;
    align-items: center;
    gap: 20px;
}

.ninth_cta{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 320px;
    height: 70px;
    border-radius: 8px;
    text-decoration: none;
}

.ninth_cta>div{
    font-size: 24px;
    font-weight: 500;
    color: #FFF;
}

.ninth_cta>img{
    width: 30px;
}

.ninth_cta_tel>img{
    width: 32px;
}

.ninth_cta_tel_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ninth_cta_tel_inner div:nth-of-type(1){
    font-size: 16px;
    color: #FFF;
}

.ninth_cta_tel_inner div:nth-of-type(2){
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    color: #FFF;
    font-weight: 700;
}

.ninth_cta_contact{
    background-color: #4A90E2;
    box-shadow: 0 4px 0 0 #004EA2;
}

.ninth_cta_line{
    background-color: #06C755;
    box-shadow: 0 4px 0 0 #3B8E5D;
}

.ninth_cta_tel{
    background-color: #E75A7C;
    box-shadow: 0 4px 0 0 #EC2A59;
}

@media screen and (max-width:1000px){
    .ninth section{
        padding: 80px 0;
    }

    .ninth_buttons{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width:600px){
    .ninth h2{
        margin-bottom: 52px;
    }

    .ninth_cta{
        max-width: 96vw;
    }
}

/* フッター */
footer{
    background-color: #FFF;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer_inner{
    width: 94%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 160px auto;
}

.footer_inner>img{
    width: 323px;
}

.footer_officeinfo{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.officeinfo{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
}

.officeinfo img{
    width: 24px;
}

.officeinfo div{
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 2.25vw, 20px);
    line-height: 1.4;
}

.officeinfo1 div{
    font-weight: 500;
}

.officeinfo3 div{
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

footer ul{
    display: flex;
    align-items: center;
    justify-content: center;
}

footer ul li{
    border-right: #333333 solid 1px;
    padding: 0 24px;
}

footer ul li a{
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none;
    font-size: clamp(16px, 2.125vw, 18px);
    line-height: 1.5;
}

footer ul li img{
    width: 30px;
}

footer ul li:last-of-type{
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: none;
}

.footer_copy{
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    font-size: clamp(12px, 1.625vw, 14px);
    margin: 120px auto 60px auto;
}

@media screen and (max-width:1000px){
    .footer_inner{
        width: 96%;
        flex-direction: column;
        margin: 100px auto 64px auto;
        gap: 64px;
    }

    .footer_inner>img{
        width: 84vw;
        max-width: 323px;
    }

    .footer_officeinfo{
        gap: 21px;
    }

    .officeinfo{
        gap: 10px;
    }

    footer ul{
        flex-direction: column;
        gap: 16px;
    }

    footer ul li{
        border-right: none;
    }

    footer ul li img{
        width: 28px;
    }

    .footer_copy{
        margin: 64px auto;
    }
}

@media screen and (max-width:600px){
    .officeinfo img{
        width: 22px;
    }

    .footer_officeinfo{
        gap: 18px;
    }

    .officeinfo{
        gap: 8px;
    }

    footer ul li img{
        width: 26px;
    }
}
