@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p');

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
    color: #4D4C49;
    line-height: 3.5rem;
    letter-spacing: 0.1rem;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    padding-left: 0;
}

.txt_littlebig {
    font-size: 2rem;
}

.black_bold {
    font-weight: bold;
}

.blue_large {
    font-size: clamp(2.8rem, 2.1rem + 1vw, 4.2rem);
    font-weight: bold;
    color: #2B7FE0;
}

.blue_small {
    font-size: clamp(2.3rem, 1.6rem + 1.1vw, 3.8rem);
    font-weight: bold;
    color: #2B7FE0;
}

.blue_glow {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2B7FE0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 7px 0 #fff;
    -moz-box-shadow: 0 0 7px 0 #fff;
    box-shadow: 0 0 7px 0 #fff;
    padding: 0 1rem;
}

.orange_frame {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    background-color: #FF7D13;
    margin: 0 0.3rem;
    padding: 0 0.8rem;
}

.orange_small {
    font-weight: bold;
    color: #FF7D13;
}

.white_frame_orangetxt {
    font-weight: bold;
    color: #FF7D13;
    background-color: #fff;
}

.pc_none {
    display: none;
}

.pc_none-ad {
    display: none;
}

.sp_none {
    display: inline;
}

@media (max-width: 768px) {
    body {
        line-height: 2.8rem;
    }

    .blue_glow {
        font-size: 2.5rem;
    }

    .pc_none {
        display: inline;
    }

    .sp_none {
        display: none;
    }
}

@media (max-width: 517px) {
    .txt_littlebig {
        font-size: 1.9rem;
        line-height: 5.1rem;
    }

    .blue_glow {
        font-size: 2.2rem;
    }

    .orange_frame {
        font-size: 2.5rem;
    }

    .pc_none-ad {
        display: inline;
    }
}

@media (max-width: 340px) {
    .blue_glow {
        font-size: 2rem;
    }
}

/*=================
width制御
===================*/
.container {
    width: 70%;
    margin: 0 auto;
}

@media (min-width: 1440px) {
    .container {
        width: 60%;
    }
}

@media (min-width: 1600px) {
    .lp_top__inner {
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}

/*=================
ボタン
===================*/
.cta {
    position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.cta>* {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    line-height: 2;
    text-decoration: none;
    flex: 1 1 0;
    box-sizing: border-box;
}

.btn-primary,
.btn-outline {
    white-space: nowrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    color: #fff;
    font-size: clamp(1.9rem,
            calc(1.9rem + (2.4 - 1.7) * ((100vw - 320px) / (1280 - 320))),
            2.8rem);
    font-weight: bold;
    padding: 1.5rem 6rem;
    border-radius: 5rem;
    background-image: linear-gradient(90deg, #ff943c, #ff7403);
    box-shadow: 0 7px 0 #FF5100;
    transition: .2s;
}

.btn-primary:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    color: #FF5100;
    font-size: clamp(1.8rem,
            calc(1.8rem + (2.2 - 1.6) * ((100vw - 320px) / (1280 - 320))),
            2.6rem);
    font-weight: bold;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    background-image: linear-gradient(90deg, #ffdcbf, #ffe4ce);
    box-shadow: 0 7px 0 #FF5100;
    border: #FF5100 1.5px solid;
    transition: .2s;
}

.btn-outline:hover {
    box-shadow: none;
    transform: translateY(5px);
}

@media (max-width: 768px) {
    .cta {
        width: 85%;
    }
}

@media (max-width: 684px) {
    .cta {
        gap: 15px;
        bottom: 13%;
    }

    .cta>* {
        line-height: 3;
    }

    .btn-primary {
        font-size: clamp(1.4rem,
                calc(1.4rem + (2.2 - 1.6) * ((100vw - 320px) / (1280 - 320))),
                2.6rem);
    }

    .btn-outline {
        font-size: clamp(1.4rem,
                calc(1.4rem + (2.2 - 1.6) * ((100vw - 320px) / (1280 - 320))),
                2.6rem);
    }
}

@media (max-width: 610px) {
    .cta {
        flex-direction: column;
        gap: 25px;
        bottom: 10%;
        width: 100%;
    }

    .btn-primary {
        font-size: clamp(2rem,
                calc(2rem + (2.2 - 1.6) * ((100vw - 320px) / (1280 - 320))),
                2.6rem);
        padding: 1.5rem 9rem;
    }

    .btn-outline {
        font-size: clamp(2rem,
                calc(2rem + (2.2 - 1.6) * ((100vw - 320px) / (1280 - 320))),
                2.6rem);
        padding: 1.5rem 5rem;
    }
}

@media (max-width: 450px) {
    .cta {
        flex-direction: column;
        gap: 25px;
        bottom: 10%;
        width: 100%;
    }

    .cta>* {
        line-height: 3;
    }

    .btn-primary {
        width: 85%;
        box-sizing: border-box;
        padding: 1.5rem 4.8rem;
        gap: 10px;
    }

    .btn-outline {
        width: 85%;
        box-sizing: border-box;
        padding: 1.5rem 2rem;
        gap: 4px;
    }
}

@media (max-width: 340px) {
    .cta {
        bottom: 8%;
    }

    .btn-outline {
        font-size: 1.8rem;
        padding: 1.8rem 2rem;
    }
}

/*=================
jsアニメーション
===================*/
.js-slide-from-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.js-slide-from-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.js-slide-from-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.js-slide-from-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/*=================
header
===================*/
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}


/*=================
メインビジュアル
===================*/
.hero picture,
.hero img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 1400px) {
    .hero {
        background: linear-gradient(155deg, #41bbeb 35%, #3dade2 46%, #1373c6 52%);
    }
}

/*=================
section01
===================*/
.section01 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    background-image: url("../img/section01_bg_pc.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: clamp(500px, 48vw, 650px);
    display: flex;
    position: relative;
    padding: 10rem 0 calc(5rem - (100vw - 768px) * 0.0035) 0;
}

.section01 .lead {
    position: absolute;
    text-align: center;
    line-height: 5rem;
    letter-spacing: 0.2rem;
    width: 100%;
    max-width: 1600px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section01_phone {
    position: absolute;
    width: clamp(280px, 18vw + 40px, 330px);
    top: calc(160px + 6vw);
    left: 50%;
    z-index: 1;
}

.section01_phone.js-fade {
    opacity: 0;
    transform: translateX(calc(-50% - (26rem + 8vw))) translateY(10px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.section01_phone.js-fade.is-visible {
    opacity: 1;
    transform: translateX(calc(-50% - (26rem + 8vw))) translateY(0);
}

.section01 .copy {
    position: absolute;
    width: 70%;
    text-align: center;
    top: clamp(240px,
            calc(210px + 5vw + ((100vw - 768px) * 0.00134)),
            320px);
    left: 50%;
    transform: translateX(-50%);
    line-height: 5.2rem;
    z-index: 1;
}

.section01 .copy img {
    width: clamp(260px, 14vw + 90px, 290px);
}

.section01 .bg_illustration {
    position: absolute;
    right: 0;
    bottom: -19px;
    z-index: 0;
}

.section01 .bg_illustration img {
    width: clamp(30rem, 34rem + 0.5vw, 34rem);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .section01 {
        padding: 10rem 0 calc(13rem - (100vw - 768px) * 0.0035) 0;
    }
}

@media (min-width: 1120px) {
    .section01 {
        padding: 10rem 0 calc(8rem - (100vw - 768px) * 0.0035) 0;
    }
}

@media (min-width: 1200px) {
    .section01 {
        padding: 10rem 0 calc(4rem - (100vw - 768px) * 0.0035) 0;
    }
}

@media (min-width: 1500px) {
    .section01 .copy {
        top: 285px;
    }
}

@media (min-width: 1650px) {
    .section01_phone {
        position: absolute;
        width: clamp(280px, 18vw + 40px, 300px);
        top: 250px;
        left: 50%;
        z-index: 1;
    }

    .section01_phone.js-fade {
        opacity: 0;
        transform: translateX(calc(-50% - 410px)) translateY(20px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .section01_phone.js-fade.is-visible {
        opacity: 1;
        transform: translateX(calc(-50% - 410px)) translateY(0);
    }

    .section01 .bg_illustration {
        position: absolute;
        bottom: -19px;
        right: 50%;
        transform: translateX(calc(-50% + 850px));
        z-index: 0;
    }
}

@media (max-width: 768px) {
    .section01 {
        padding: 10rem 0 calc(18rem - (100vw - 768px) * 0.0035) 0;
    }

    .section01 .lead {
        line-height: 4rem;
    }

    .section01_phone {
        position: absolute;
        width: clamp(250px, 18vw + 40px, 330px);
        top: calc(195px + 10vw);
        left: 50%;
        z-index: 1;
    }

    .section01_phone.js-fade {
        opacity: 0;
        transform: translateX(calc(-50% - (19rem + 6vw))) translateY(12px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .section01_phone.js-fade.is-visible {
        opacity: 1;
        transform: translateX(calc(-50% - (19rem + 6vw))) translateY(0);
    }

    .section01 .copy {
        width: 100%;
        top: calc(260px + 5vw + ((100vw - 768px) * 0.00134));
    }

    .section01 .copy p:not(:nth-child(2)) {
        line-height: 4.6rem;
    }

    .section01_sp-ad {
        text-align: left;
        padding-left: calc(13rem + (16rem * ((100vw - 450px) / (768px - 450px))));
    }

    .section01 .bg_illustration img {
        display: none;
    }
}

@media (min-width: 450px) and (max-width: 768px) {
    .section01 .copy p:not(:nth-child(2)) {
        text-align: left;
    }
}

@media (max-width: 684px) {
    .section01 {
        padding: 9rem 0 calc(17rem - (100vw - 768px) * 0.0035) 0;
    }
}

@media (max-width: 610px) {
    .section01 {
        padding: 9rem 0 calc(23rem - (100vw - 768px) * 0.0035) 0;
    }

    .section01 .copy {
        top: calc(235px + 5vw + ((100vw - 768px) * 0.00134));
    }

    .section01_phone {
        position: absolute;
        width: clamp(250px, 18vw + 40px, 330px);
        top: calc(160px + 10vw);
        left: 50%;
        z-index: 1;
    }

    .section01_phone.js-fade {
        opacity: 0;
        transform: translateX(calc(-50% - (18rem + 6vw))) translateY(12px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .section01_phone.js-fade.is-visible {
        opacity: 1;
        transform: translateX(calc(-50% - (18rem + 6vw))) translateY(0);
    }
}

@media (max-width: 517px) {
    .section01 .lead {
        top: 70px;
    }

    .section01 .copy {
        top: calc(215px + 5vw + ((100vw - 768px) * 0.00134));
        line-height: 3.6rem;
        z-index: 1;
    }

    .section01 .copy p:not(:nth-child(2)) {
        line-height: 3.4rem;
    }

    .section01_phone {
        position: absolute;
        width: clamp(220px, 18vw + 40px, 290px);
        top: calc(215px + 10vw);
        left: 50%;
        z-index: 1;
    }

    .section01_phone.js-fade {
        opacity: 0;
        transform: translateX(calc(-50% - (17rem + 6vw))) translateY(12px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .section01_phone.js-fade.is-visible {
        opacity: 1;
        transform: translateX(calc(-50% - (17rem + 6vw))) translateY(0);
    }
}

@media (max-width: 450px) {
    .section01 {
        font-size: clamp(1.6rem, 1.6rem + 0.4vw, 2rem);
        padding: 8rem 0 28rem 0;
    }

    .section01 .lead {
        line-height: 3.8rem;
    }

    .section01_phone {
        position: absolute;
        width: clamp(160px, 30vw + 50px, 210px);
        top: calc(310px + 16vw);
        left: 50%;
        z-index: 1;
    }

    .section01_phone.js-fade {
        opacity: 0;
        transform: translateX(calc(-50% - (11rem + 10vw))) translateY(12px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .section01_phone.js-fade.is-visible {
        opacity: 1;
        transform: translateX(calc(-50% - (11rem + 10vw))) translateY(0);
    }

    .section01_sp-ad {
        padding-left: 0;
    }

    .section01_mobile-ad {
        text-align: center;
    }

    .section01_mobile-adtxt {
        position: absolute;
        left: 50%;
        transform: translateX(calc(-50% - 3rem + 20vw));
        width: 240px;
    }
}

@media (max-width: 340px) {
    .section01 {
        padding: 8rem 0 23rem 0;
    }

    .section01_phone {
        display: none;
    }

    .section01 .copy {
        top: calc(225px + 5vw + ((100vw - 768px) * 0.00134));
    }

    .section01_mobile-adtxt {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 240px;
    }
}

/*=================
section02
===================*/
.section02 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    position: relative;
    background-color: #DCE3EA;
    padding: 8rem 0 17rem 0;
}

.section02_title h2 {
    font-size: clamp(1.9rem, 2rem + 0.5vw, 2.2rem);
    color: #23221F;
    text-align: center;
}

.section02_title_large {
    font-size: clamp(2.9rem, 3rem + 0.5vw, 3.4rem);
    background: linear-gradient(180deg, #382141, #9055a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 0.3rem;
}

.dot-line-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #163a5f;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.dot-line-title::before,
.dot-line-title::after {
    content: "";
    flex: 1;
    height: 3px;
    background-color: #163a5f;
    opacity: 0.8;
}

.dot-line-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dot-line-inner::before,
.dot-line-inner::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #163a5f;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-over-text {
    position: relative;
}

.dot-over-text::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: radial-gradient(circle, #382141 3.5px, transparent 3.5px);
    background-size: 35px 9px;
    background-repeat: repeat-x;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 4rem 0;
}

.problem-item {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 11px;
    background-color: #f4f7fb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.problem-icon {
    position: absolute;
}

.problem-icon img {
    width: clamp(6.5rem, 7rem + 0.5vw, 8.5rem);
    height: clamp(6.5rem, 7rem + 0.5vw, 8.5rem);
    flex-shrink: 0;
}

.problem-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: clamp(40px, 5vw, 50px);
}

.problem-text p {
    font-size: clamp(1.5rem, 1.5rem + 0.5vw, 1.6rem);
    text-align: left;
    line-height: 1.6;
    margin: 0;
    padding: 3.5rem 0;
}

.problem-text span {
    color: #9055A7;
    font-weight: bold;
}

.problem-message {
    font-weight: bold;
    text-align: center;
}

.problem-message_lead {
    margin-bottom: 1.2rem;
}

.problem-message_lead span {
    color: #9055A7;
}

.problem-message_tagline {
    position: relative;
    color: #fff;
}

.problem-message_tagline-txt {
    position: absolute;
    width: 100%;
    top: clamp(35px, 3.5vw, 50px);
    left: 50%;
    transform: translateX(-50%);
    font-weight: normal;
    z-index: 1;
}

.problem-message_tagline-txt span {
    font-size: clamp(2.3rem, 2.5rem + 0.5vw, 2.7rem);
    font-weight: bold;
}

.problem-message_tagline-bg {
    position: absolute;
    width: clamp(510px, 55vw, 610px);
    height: clamp(13rem, 13rem + 0.5vw, 14rem);
    top: clamp(0px, 0.1vw, 5px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.problem-message_tagline-bgsp {
    display: none;
}

.section02_problem_img {
    position: absolute;
    width: clamp(20rem, 25rem + 0.5vw, 35rem);
    bottom: -5px;
    left: 50%;
    transform: translateX(180px);
    z-index: 1;
}

.section02__spnone {
    display: initial;
}

@media (min-width: 1440px) {
    .problem-list {
        width: 60%;
    }
}

@media (max-width: 1030px) {
    .problem-list {
        width: 80%;
    }
}

@media (max-width: 960px) {
    .problem-text {
        padding-left: clamp(55px, 10vw, 65px);
    }

    .problem-message_tagline-txt {
        top: clamp(50px, 3vw, 60px);
        left: 47%;
        transform: translateX(-47%);
    }

    .problem-message_tagline-bg {
        position: absolute;
        width: clamp(510px, 55vw, 610px);
        top: clamp(0px, 0.8vw, 8px);
        z-index: 0;
    }

    .problem-message_tagline-bgsp {
        display: none;
    }

    .section02_problem_img {
        position: absolute;
        left: 50%;
        transform: translateX(calc(-50% - 2rem + 35vw));
        width: clamp(18rem, 20rem + 0.5vw, 22rem);
    }
}

@media (max-width: 870px) {
    .problem-list {
        width: 85%;
    }

    .problem-icon img {
        width: clamp(4rem, 5rem + 0.5vw, 6rem);
        height: clamp(4rem, 5rem + 0.5vw, 6rem);
        flex-shrink: 0;
    }

    .problem-text {
        padding-left: clamp(40px, 7vw, 50px);
    }
}

@media (max-width: 768px) {
    .section02 {
        padding: 4rem 0 20rem 0;
    }

    .section02_title h2 {
        line-height: 6rem;
    }

    .dot-line-inner {
        display: block;
    }

    .dot-over-text::before {
        top: -8px;
    }

    .problem-icon img {
        width: clamp(6.5rem, 7rem + 0.5vw, 8.5rem);
        height: clamp(6.5rem, 7rem + 0.5vw, 8.5rem);
        flex-shrink: 0;
    }

    .problem-list {
        width: 75%;
        grid-template-columns: 1fr;
        padding: 2rem 0 3rem 0;
    }

    .problem-message_lead {
        line-height: 3.2rem;
        font-size: 2rem;
        padding-bottom: 1rem;
    }

    .problem-message_tagline-txt {
        top: clamp(40px, 2vw, 45px);
        left: 50%;
        line-height: 3.5rem;
        transform: translateX(-50%);
    }

    .problem-message_tagline-bg {
        display: none;
    }

    .problem-message_tagline-bgsp {
        position: absolute;
        display: inline;
        width: clamp(450px, 45vw, 550px);
        height: clamp(150px, 20vw, 165px);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .section02_problem_img {
        width: clamp(17rem, 18rem + 0.5vw, 19rem);
        right: 5%;
        bottom: -5px;
        transform: translateX(calc(-50% - 2rem + 33vw));
    }
}

@media (max-width: 610px) {
    .problem-list {
        width: 80%;
        grid-template-columns: 1fr;
        padding: 2rem 0 3rem 0;
    }
}

@media (max-width: 460px) {

    .dot-line-title::before,
    .dot-line-title::after {
        display: none;
    }

    .dot-line-inner::before,
    .dot-line-inner::after {
        display: none;
    }

    .problem-list {
        width: 90%;
    }

    .problem-text {
        padding-left: clamp(75px, 5vw, 80px);
    }

    .problem-text p {
        font-size: clamp(1.5rem, 1.5rem + 0.5vw, 1.6rem);
    }

    .problem-message_lead {
        line-height: 3.2rem;
        font-size: 2rem;
    }

    .problem-message_tagline-txt {
        line-height: 3rem;
    }

    .problem-message_tagline-bgsp {
        position: absolute;
        width: min(100%, 450px);
        height: clamp(120px, calc(120px + (500px - 100vw) * 0.2), 180px);
        top: calc((100vw - 375px) * (7 / (460 - 375)));
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .section02_problem_img {
        width: clamp(14rem, 15rem + 0.5vw, 16rem);
    }
}

@media (max-width: 340px) {
    .section02__spnone {
        display: none;
    }

    .problem-item {
        padding-right: 1rem;
    }

    .problem-icon img {
        width: clamp(5.5rem, 6rem + 0.5vw, 7.5rem);
        height: clamp(5.5rem, 6rem + 0.5vw, 7.5rem);
    }

    .section02_problem_img {
        width: clamp(12rem, 13rem + 0.5vw, 15rem);
        transform: translateX(calc(-50% - 3rem + 30vw));
    }
}

/*=================
section03
===================*/
.section03 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
}

.section03_title {
    background-image: url(../img/section03_title_bg.webp);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    width: 100%;
    height: 230px;
}

.solution_container {
    text-align: center;
    color: #fff;
    line-height: 5.3rem;
    padding: 2.2rem 0 4rem 0;
}

.solution-list {
    background-image: url("../img/section03_solution_bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    margin-top: -230px;
    padding-top: 230px;
    padding-bottom: 7rem;
    overflow-x: hidden;
}

.solution-item {
    position: relative;
    display: flex;
    width: 80%;
    background-color: #EEF8FF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    line-height: 2rem;
    padding: 5.5em 0;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-left: auto;
    border-radius: 8px 0 0 8px;
}

.solution-item h3 {
    font-size: clamp(1.5rem, 1.5rem + 0.5vw, 2rem);
    text-align: center;
    line-height: 3.5rem;
    margin: 0 auto;
    margin-left: clamp(200px, 25vw, 300px);
}

.solution-item-large {
    font-size: 2.5rem;
}

.solution-item-strong {
    font-size: clamp(2.7rem, 2.7rem + 0.5vw, 3rem);
    color: #FF7D13;
}

.solution-illust-left {
    position: absolute;
    width: clamp(140px, 12vw, 240px);
    bottom: 0;
    left: 2rem;
}

.solution-leftalign {
    font-size: clamp(1.5rem, 1.5rem + 0.5vw, 1.7rem);
}

.solution-txt {
    position: relative;
    display: flex;
    width: 80%;
    background-color: #EEF8FF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    line-height: 2rem;
    padding: 3rem 0;
    margin-bottom: 3rem;
    margin-right: auto;
    border-radius: 0 8px 8px 0;
}

.solution-inner {
    font-size: clamp(1.5rem, 1.5rem + 0.5vw, 1.7rem);
    line-height: 3rem;
    width: 50%;
    margin: 0 auto;
}

.solution-txt p {
    text-align: left;
}

.solution-inner-large {
    font-weight: bold;
}

.solution-inner-pcnone {
    display: none;
}

.solution-inner-strong {
    font-size: clamp(2.7rem, 2.7rem + 0.5vw, 3rem);
    color: #FF7D13;
    margin-top: 0.7rem;
    display: block;
    line-height: 4rem;
}

.solution-illust-right {
    position: absolute;
    width: clamp(200px, 23rem, 300px);
    right: 2rem;
    bottom: 0;
}

.section03__spnone {
    display: inline;
}

@media (max-width: 1180px) {
    .solution-inner-pcnone {
        display: initial;
    }
}

@media (max-width: 768px) {
    .section03_title {
        background-image: url("../img/section03_title_bg_sp.webp");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
        width: 100%;
        height: 220px;
    }

    .solution_container {
        line-height: 4.4rem;
        padding: 2rem 0 2rem 0;
    }

    .solution-list {
        background-image: url("../img/section03_solution_bg_sp.webp");
        background-repeat: no-repeat;
        background-position: left top;
        background-size: cover;
        margin-top: -230px;
        padding-top: 230px;
        padding-bottom: 7rem;
    }

    .solution-item {
        width: 95%;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .solution-item h3 {
        text-align: left;
        line-height: 3rem;
        margin-left: clamp(150px, 30vw, 250px);
    }

    .solution-item-strong {
        font-size: 2.2rem;
        color: #FF7D13;
    }

    .solution-illust-left {
        width: 20vw;
        left: 0;
    }

    .solution-txt {
        width: 95%;
    }

    .solution-inner {
        width: 82%;
        line-height: 1.6rem;
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .solution-inner-large {
        margin-top: 1rem;
    }

    .solution-inner-strong {
        color: #FF7D13;
        font-size: 2.2rem;
        line-height: 3rem;
    }

    .solution-illust-right {
        width: 30vw;
        right: 1rem;
    }
}

@media (max-width: 517px) {
    .solution_container {
        line-height: 4rem;
        padding: 3.2rem 0 2rem 0;
    }
}

@media (max-width: 420px) {
    .solution-item {
        padding: 4em 0;
    }

    .solution-item h3 {
        line-height: 3rem;
        margin-left: clamp(125px, 35vw, 175px);
    }

    .solution-item-strong {
        font-size: 2.2rem;
    }

    .solution-item-large {
        font-size: 2rem;
    }

    .solution-inner {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }

    .solution-illust-left {
        width: 30vw;
        left: -5px;
    }

    .solution-inner-strong {
        color: #FF7D13;
        font-size: 2.2rem;
        line-height: 3rem;
    }

    .solution-illust-right {
        width: 34vw;
        right: 1rem;
    }
}

@media (max-width: 340px) {
    .solution-item {
        padding: 3em 0;
    }

    .solution-illust-left {
        width: 25vw;
    }

    .solution-illust-right {
        width: 32vw;
        right: -0.7rem;
    }

    .solution-item h3 {
        margin-left: clamp(85px, 27vw, 100px);
    }

    .section03__spnone {
        display: none;
    }
}

/*=================
section04
===================*/
.section04 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    position: relative;
    padding-top: 32rem;
}

.section04-title {
    position: absolute;
    width: 100%;
    top: -5rem;
    border-radius: 6rem 6rem 0 0;
    padding-bottom: 7rem;
    background: linear-gradient(130deg, #6AABD5 0%, #3EA2D6 50%, #2F83C9 100%);
}

.section04-title h2 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
    font-size: 1.9rem;
    color: #fff;
    margin: 0;
    padding: 5rem 0 2rem 0;
}

.section04-title h2 img {
    width: 30rem;
}

.section04-list {
    width: 60%;
    margin: 0 auto;
}

.section04-list ul {
    color: #4D4C49;
    font-weight: bold;
    font-size: 1.7rem;
}

.section04-list li {
    position: relative;
    background: #fff;
    border-radius: 9px;
    margin-bottom: 0.8rem;
    padding: 0.8rem 0;
}

.section04-list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: #ff7a00;
    border-radius: 8px 0 8px 0;
}

.section04-list li::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 10px;
    width: 9px;
    height: 17px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
}

.section04-list span {
    font-size: 2rem;
    color: #FF7D13;
    padding-left: 5rem;
}

.section04-pcnone {
    display: none;
}

@media (max-width: 1125px) {
    .section04-list {
        width: 70%;
    }
}

@media (max-width: 1000px) {
    .section04-list {
        width: 80%;
    }
}

@media (max-width: 840px) {
    .section04-list {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .section04 {
        padding-top: 29rem;
    }

    .section04-list {
        width: 90%;
    }

    .section04-list ul {
        font-size: 1.6rem;
    }

    .section04-list li {
        line-height: 2rem;
        text-indent: -4.5rem;
        padding-left: 4.5rem !important;
        padding: 1rem 0;
        padding-right: 0.8rem;
    }

    .section04-list span {
        font-size: 1.8rem;
        padding-left: 4.5rem;
    }
}

@media (max-width: 600px) {
    .section04 {
        padding-top: 35rem;
    }

    .section04-title h2 {
        display: block;
        font-size: 1.5rem;
    }
}

@media (max-width: 420px) {
    .section04-title {
        border-radius: 5rem 5rem 0 0;
    }

    .section04-title h2 img {
        width: 24rem;
    }

    .section04-list ul {
        font-size: 1.4rem;
    }

    .section04-list li {
        line-height: 2rem;
        text-indent: -4.5rem;
        padding-left: 4.5rem !important;
        padding: 1rem 0;
    }

    .section04-list span {
        font-size: 1.5rem;
        padding-left: 4.5rem;
    }

    .section04-pcnone {
        display: initial;
    }
}

@media (max-width: 340px) {
    .section04-title h2 img {
        width: 23rem;
    }

    .section04-title {
        border-radius: 4rem 4rem 0 0;
    }

    .section04-list li {
        text-indent: -4.5rem;
        padding-left: 3.5rem !important;
    }

    .section04-list li::before {
        width: 27px;
        height: 27px;
    }

    .section04-list li::after {
        top: 2px;
        left: 10px;
        width: 7px;
        height: 15px;
    }
}

/*=================
section05
===================*/
.section05 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    position: relative;
    background-color: #D5EBF6;
    padding: 7rem 0 0 0;
    overflow: hidden;
}

.section05::before {
    content: "";
    position: absolute;
    top: -25%;
    left: 50%;
    width: 200vw;
    height: 1180px;
    background: #EEF9FF;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.section05>* {
    position: relative;
    z-index: 1;
}

.section05-heading {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.highlight-bg {
    position: relative;
    background: #2B7FE0;
    padding: 0.5em 1.5em;
    border-radius: 2em;
    font-weight: bold;
    color: #fff;
}

.highlight-bg::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-top: 20px solid #2B7FE0;
}

.section05-heading__main {
    color: #4D4C49;
    font-size: 2.3rem;
    font-weight: bold;
    padding-top: 2.5rem;
}

.highlight-text {
    color: #2B7FE0;
    font-size: 3rem;
}

.section05-subtext {
    font-size: 1.7rem;
    text-align: center;
    line-height: 3.5rem;
}

.section05-logo-small {
    width: 22rem;
}

.section05-logo {
    width: 30rem;
}

.section05-points {
    width: fit-content;
    text-align: left;
    margin: 0 auto;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.section05-point {
    font-size: 1.7rem;
    margin: 0.7rem 0;
    line-height: 5rem;
}

.section05-point:last-child {
    text-align: center;
}

.highlight-list {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    background: #2B7FE0;
    border-radius: 8px;
    padding: 0.8rem 1rem 0.8rem 0.7rem;
    margin-right: 1rem;
}

.check-icon {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    border-radius: 6px;
}

.check-icon::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 6px;
    inset: 0px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.check-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    top: 2px;
    left: 8px;
}

.section05_illustration {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 60%;
    margin: 0 auto;
}

.section05_illustration01 {
    position: absolute;
    width: 13vw;
    max-width: 197px;
    left: 0px;
}

.section05_illustration02 {
    position: absolute;
    width: 11vw;
    max-width: 174px;
    right: 0;
}

.section05_feature {
    position: relative;
    width: 70%;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10rem 0;
}

.section05_feature::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 18px;
    border: 3px solid #2C425F;
    pointer-events: none;
}

.section05_feature_title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3rem;
    letter-spacing: 0.6rem;
}

.section05_feature_title p {
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}

.section05_feature_title p:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    display: inline-block;
    width: 40px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #2C425F;
    border-radius: 2px;
}

.section05_feature_item {
    display: flex;
    width: 70%;
    margin: 0 auto;
    padding: 6rem 0 0 0;
    justify-content: space-between;
    align-items: center;
}

.section05_feature_item:nth-child(odd) {
    flex-direction: row-reverse;
}

.section05_feature_item h3 {
    color: #2C425F;
    font-size: 2.1rem;
    line-height: 2.7rem;
    letter-spacing: 0.3rem;
    margin: 0;
    margin-bottom: 1.5rem;
}

.section05_feature_item .number {
    color: #C8E2EF;
    font-size: 4rem;
    line-height: 0;
    font-family: "Public Sans", sans-serif;
    font-weight: normal;
}

.section05_feature_item .under {
    border-bottom: 3px solid #C8E2EF;
    padding-bottom: 0.4rem;
}

.section05_feature_txt {
    width: 48%;
    font-size: 1.5rem;
    line-height: 2.5rem;
}

.section05_feature_image {
    width: 45%;
}

.section05_catchcopy {
    text-align: center;
    font-weight: bold;
    color: #2C425F;
    padding: 6rem 0;
    line-height: 5rem;
}

.section05_catch_large {
    font-size: 2.5rem;
}

.section05_catch_strong {
    font-size: 3.5rem;
    background: linear-gradient(#FF9239, #FF7506);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section05_catch_border {
    border-bottom: double 6px #FE9239;
}

.section05_bar {
    background: linear-gradient(130deg, #6AABD5 0%, #3EA2D6 50%, #2F83C9 100%);
    width: 100%;
    height: 30px;
}

.section05-pcnone {
    display: none;
}

.section05-pcnone_sp {
    display: none;
}

.section05-spnone {
    display: initial;
}

.section05-spnone-exsmall {
    display: initial;
}

@media (min-width: 1440px) {
    .section05_feature {
        width: 60%;
    }
}

@media (max-width: 1125px) {
    .section05_feature_item {
        width: 83%;
    }
}

@media (max-width: 1000px) {
    .section05::before {
        width: 230vw;
        height: 1270px;
    }

    .section05_feature {
        width: 90%;
    }

    .section05_illustration {
        width: 80%;
    }

    .section05-pcnone {
        display: initial;
    }
}

@media (max-width: 750px) {
    .section05::before {
        width: 260vw;
        height: 1470px;
    }

    .section05_feature {
        padding: 10rem 0 7rem 0;
    }

    .section05_feature_txt {
        width: 90%;
        margin: 0 auto;
    }

    .section05_feature_item h3 {
        text-align: left;
        font-size: 2rem;
    }

    .section05_feature_item {
        width: 79%;
        flex-direction: column;
        align-items: flex-start;
    }

    .section05_feature_item:nth-child(odd) {
        flex-direction: column;
    }

    .section05_feature_item p {
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }

    .section05_feature_image {
        width: 60%;
        margin: 0 auto;
    }

    .section05_feature_imagead {
        width: 75%;
        margin: 0 auto;
    }
}

@media (max-width: 670px) {
    .section05-point {
        margin: 2.7rem 0;
        line-height: 3rem;
    }

    .section05-txtbox {
        display: block;
        text-align: center;
        margin-top: 2rem;
    }

    .section05_illustration01 {
        width: 20vw;
    }

    .section05_illustration02 {
        width: 18vw;
    }

    .section05_catchcopy {
        line-height: 4rem;
    }

    .section05_catch_strong {
        font-size: 3.2rem;
    }

    .section05-pcnone_sp {
        display: initial;
    }

    .section05-spnone {
        display: none;
    }
}

@media (max-width: 460px) {
    .section05::before {
        width: 320vw;
        height: 1290px;
    }

    .section05-logo {
        width: 24rem;
    }

    .section05-logo-small {
        width: 18rem;
    }

    .section05-subtext {
        width: 90%;
        font-size: 1.5rem;
        text-align: left;
        line-height: 2.4rem;
        margin: 0 auto;
    }

    .section05-points {
        width: 90%;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .section05-point {
        font-size: 1.5rem;
    }

    .section05-point:last-child {
        text-align: left;
        line-height: 3rem;
    }

    .highlight-list {
        font-size: 1.6rem;
    }

    .section05-txtbox {
        display: block;
        text-align: center;
        margin-top: 2rem;
    }

    .section05_illustration01 {
        width: 15vw;
    }

    .section05_illustration02 {
        width: 13vw;
    }

    .section05_feature {
        padding: 7rem 0 5rem 0;
    }

    .section05_feature_txt {
        width: 100%;
    }

    .section05_feature_item h3 {
        text-align: center;
        font-size: 2rem;
    }

    .section05_feature_item {
        width: 79%;
        flex-direction: column;
        align-items: flex-start;
    }

    .section05_feature_item:nth-child(odd) {
        flex-direction: column;
    }

    .section05_feature_item p {
        margin-bottom: 1.5rem;
    }

    .section05_feature_image {
        width: 80%;
        margin: 0 auto;
    }

    .section05_feature_imagead {
        width: 100%;
        margin: 0 auto;
    }

    .section05_catchcopy {
        line-height: 3.8rem;
    }

    .section05_catch_strong {
        font-size: 3rem;
    }
}

@media (max-width: 365px) {
    .section05::before {
        width: 345vw;
        height: 1380px;
    }

    .section05-spnone-exsmall {
        display: none;
    }

    .section05-point {
        margin: 1.8rem 0;
    }

    .highlight-list {
        padding: 0.5em 0.8em 0.5em 0.5em;
    }

    .check-icon {
        width: 37px;
        height: 21px;
    }

    .check-icon::before {
        width: 24px;
        height: 24px;
    }

    .check-icon::after {
        width: 18px;
        height: 9px;
        top: 3px;
        left: 7px;
    }
}

@media (max-width: 340px) {
    .section05-point {
        line-height: 2.4rem;
    }

    .highlight-list {
        font-size: 1.48rem;
    }

    .check-icon {
        width: 32px;
        height: 19px;
    }

    .check-icon::before {
        width: 21px;
        height: 21px;
    }

    .check-icon::after {
        width: 16px;
        height: 7px;
        top: 3px;
        left: 5px;
    }

    .section05-txtbox {
        margin-top: 1.4rem;
    }

    .section05_feature_item h3 {
        font-size: 1.6rem;
    }

    .section05_feature_item p {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 2.5rem;
    }

    .section05_catchcopy {
        line-height: 3.2rem;
        padding: 5rem 0
    }

    .section05_catch_large {
        font-size: 2rem;
    }

    .section05_catch_strong {
        font-size: 2.7rem;
    }
}

@media (max-width: 365px) {
    .highlight-bg {
        font-size: min(13px, 10vw);
    }

    .highlight-list {
        font-size: min(12.5px, 10vw);
    }

    .section05-logo {
        width: min(500px, 57vw);
    }
}

/*=================
section06
===================*/
.section06_container {
    width: 70%;
    margin: 0 auto;
}

.section06 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    background-color: #F4F4EE;
    padding-bottom: 6rem;
}

.section06_title {
    padding: 4rem 0;
    margin: 0;
}

.section06_title img {
    width: 75%;
    margin: 0 auto;
}

.img_pc_none {
    display: none;
}

.img_sp_none {
    display: block;
}

.section06__lead {
    text-align: center;
    line-height: 2.8rem;
    font-size: 1.8rem;
    color: #fff;
    background: linear-gradient(to right, #FFF2E7 0%, #FF5100 25%, #FF5100 75%, #FFF2E7 100%);
    padding: 1.5rem 0;
}

.voice-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
}

.voice-item {
    position: relative;
    background: #fff;
    padding: 5rem 2rem 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-top: 7rem;
}

.voice-item img {
    position: absolute;
    width: clamp(70px, 6vw, 80px);
    top: clamp(-40px, -40px + 2 * ((100vw - 320px) / (1920 - 320)), -38px);
    left: 50%;
    transform: translateX(-50%);
}

.voice-item__title {
    color: #2C425F;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 2.3rem;
    margin: 0;
}

.voice-item__meta {
    text-align: right;
    font-size: 1.4rem;
    color: #2C425F;
}

.voice-item__text {
    position: relative;
    padding: 1.6rem 2.4rem;
    margin-top: 1.5rem;
    z-index: 0;
    background: transparent;
}

.voice-item__text::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #F5F6F6;
    z-index: -1;
    clip-path: polygon(0 20px,
            20px 0,
            100% 0,
            100% calc(100% - 20px),
            calc(100% - 20px) 100%,
            0 100%);
}

.voice-item__text p {
    font-size: 1.6rem;
    line-height: 2.5rem;
}

.voice-item__text span {
    color: #FF5100;
}

.section06_spnone {
    display: none;
}

@media (min-width: 1440px) {
    .section06_container {
        width: 60%;
    }
}

@media (max-width: 1000px) {
    .section06_container {
        width: 80%;
    }
}

@media (max-width: 870px) {
    .section06_container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .img_pc_none {
        display: block;
    }

    .img_sp_none {
        display: none;
    }

    .section06_title img {
        width: 65%;
        margin: 0 auto;
    }

    .voice-item {
        padding: 4rem 1.5rem 2rem 1.5rem;
    }

    .voice-item__title {
        font-size: 1.5rem;
        line-height: 2.1rem;

    }

    .voice-item__meta {
        font-size: 1.2rem;
    }

    .voice-item__text {
        padding: 1rem;
    }

    .voice-item__text p {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .voice-card {
        gap: 0 2rem;
    }
}

@media (max-width: 625px) {
    .section06__lead {
        line-height: 2.6rem;
        font-size: 1.7rem;
    }

    .section06_title img {
        width: 80%;
        margin: 0 auto;
    }

    .voice-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .voice-item {
        margin-top: 5rem;
    }
}

@media (max-width: 420px) {
    .section06_title img {
        width: 100%;
        margin: 0 auto;
    }

    .section06__lead {
        line-height: 2.2rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 340px) {
    .section06_spnone {
        display: initial;
    }
}

/*=================
section07
===================*/
.section07 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
}

.section07__header-bg {
    background: linear-gradient(130deg, #6AABD5 0%, #3EA2D6 50%, #2F83C9 100%);
}

.section07__header {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 1rem 0;
    letter-spacing: 0.2rem;
}

.section07__header span {
    color: #F9FFB3;
}

.section07-bg {
    position: relative;
    background: #F4F4EE;
}

.section07-bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100px;
    width: 100%;
    height: 100px;
    background: #F4F4EE;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    z-index: -1;
}

.section07__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto;
    top: 5rem;
}

.section07__content-img {
    max-width: 70%;
    height: auto;
}

.section07__text {
    position: absolute;
    top: clamp(0px, calc((100vw - 768px) * (60 / (1440 - 768))), 60px);
    right: clamp(-90px,
            calc(-90px + (100vw - 768px) * 0.1245),
            -30px);
    color: #2C425F;
    font-weight: bold;
    line-height: 4rem;
}

.section07-logo {
    width: 30rem;
}

.section07__text-strong {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #6BACD6, #428CC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section07-info__img {
    width: 70%;
    margin: 0 auto;
    padding: 13rem 0 0 0;
}

.section07-info__logo {
    display: block;
    width: 30rem;
    margin: 0 auto;
}

.section07-info__mockup {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 2rem 0 1.5rem 0;
}

.section07-info__text {
    color: #2C425F;
    text-align: center;
    font-weight: bold;
    line-height: 3.5rem;
}

.section07-info__text span {
    color: #2B7FE0;
}

.section07-container {
    width: 70%;
    margin: 0 auto;
}

.section07-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.section07-stats__item {
    width: 32%;
    text-align: center;
    background: #F2F6FB;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 2rem 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section07-stats__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section07-stats__icon {
    width: 70%;
    margin: 0 auto 1rem;
    display: block;
}

.section07-stats__text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #6D6D6D;
}

.section07-spnone {
    display: initial;
}

@media (min-width: 1440px) {
    .section07-container {
        width: 60%;
    }
}

@media (max-width: 1100px) {
    .section07-container {
        width: 85%;
        margin: 0 auto;
        padding-top: 3rem;
    }

    .section07-stats__item {
        text-align: left;
        padding: 2rem 1rem;
    }

    .section07-spnone {
        display: none;
    }
}

@media (max-width: 768px) {
    .section07__header {
        padding: 1.7rem 0;
        line-height: 3.5rem;
    }

    .section07__content {
        position: relative;
        display: flex;
        gap: 4rem;
        flex-direction: column-reverse;
    }

    .section07__content-img {
        max-width: 90%;
        height: auto;
    }

    .section07__text {
        position: initial;
        text-align: center;
        font-size: 2rem;
        line-height: 3.5rem;
    }

    .section07-info__text {
        line-height: 3rem;
    }

    .section07-info__imgsp {
        width: 70%;
        margin: 0 auto;
        padding: 13rem 0 0 0;
    }

    .section07-info__mockup {
        width: 90%;
    }

    .section07-stats {
        flex-direction: column;
    }

    .section07-stats__item {
        width: 70%;
        margin: 0 auto;
        padding: 2rem;
    }

    .section07-stats__icon {
        width: 60%;
    }
}

@media (max-width: 420px) {
    .section07-logo {
        width: 24rem;
    }

    .section07__text-strong {
        font-size: 3rem;
    }

    .section07-info__imgsp {
        width: 90%;
        margin: 0 auto;
        padding: 12rem 0 0 0;
    }

    .section07-info__logo {
        width: 22rem;
    }

    .section07-info__text {
        line-height: 2.6rem;
    }

    .section07-stats__item {
        width: 90%;
        padding: 2rem;
    }

    .section07-stats__icon {
        width: 80%;
    }
}

@media (max-width: 340px) {
    .section07__content {
        gap: 3rem;
    }

    .section07__text {
        font-size: 1.6rem;
        line-height: 3.6rem;
    }

    .section07__text-strong {
        font-size: 2.7rem;
    }

    .section07-info__text {
        line-height: 2.9rem;
    }
}

/*=================
section08
===================*/
.section08 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    padding-top: 6rem;
}

.section08__container {
    width: 70%;
    margin: 0 auto;
}

.section08__header {
    text-align: center;
    margin-bottom: 32px;
}

.section08__title {
    position: relative;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: #2C425F;
}

.section08__title:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    display: inline-block;
    width: 40px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #2C425F;
    border-radius: 2px;
}

.contents__top {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.contents-view {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contents-view__title {
    position: relative;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #2B7FE0;
    padding-left: 3.5rem;
}

.contents-view__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #62a8f7;
    border-radius: 50%;
}

.contents-view__title::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    border-left: 3.5px solid #fff;
    border-bottom: 3.5px solid #fff;
    transform: rotate(-45deg);
    top: 6px;
    left: 5px;
}

.contents-view__item {
    display: flex;
    width: 50%;
    align-items: flex-start;
    gap: 16px;
    padding: 2.5rem 2rem;
    background: #F2F6FB;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contents-view__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contents-view__heading {
    margin: 0 0 4px;
    font-size: 1.6rem;
    color: #245b9d;
}

.contents-view__text {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.contents-mock {
    position: relative;
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    overflow: visible;
    overflow-x: clip;
}

.contents-mock img {
    position: absolute;
    width: 55vw;
    transform: translateX(30%);
    bottom: 5vw;
}

.contents-bottom {
    margin-top: 40px;
    display: flex;
    gap: 24px;
}

.contents-card {
    flex: 1;
    background: #F2F6FB;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 1rem 1.6rem 0 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contents-card__title {
    position: relative;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #2B7FE0;
    padding-left: 3.5rem;
}

.contents-card__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #62a8f7;
    border-radius: 50%;
}

.contents-card__title::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    border-left: 3.5px solid #fff;
    border-bottom: 3.5px solid #fff;
    transform: rotate(-45deg);
    top: 6px;
    left: 5px;
}

.contents-card__text {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.contents-card__img {
    margin-top: 8px;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    margin-top: auto;
}

@media (min-width: 1440px) {
    .section08__container {
        width: 60%;
    }
}

@media (min-width: 1600px) {
    .contents-mock {
        width: 80%;
        position: relative;
        flex: 0 0 50%;
        display: flex;
        justify-content: flex-end;
        overflow: visible;
        overflow-x: clip;
    }

    .contents-mock img {
        position: absolute;
        width: 680px;
        bottom: 70px;
        transform: translateX(40%);
    }
}

@media (max-width: 1599px) {
    .contents-mock img {
        position: absolute;
        bottom: clamp(50px, calc(-0.125 * 100vw + 250px), 110px);
        right: min(-240px, -205px);
        width: clamp(600px, 55vw, 900px);
        z-index: -1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .section08__container {
        width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section08__container {
        width: 90%;
    }

    .contents__top {
        flex-direction: column;
    }

    .contents-view {
        padding-bottom: min(47%);
    }

    .contents-view__title::after {
        top: 1px;
        left: 5px;
    }

    .contents-view__item {
        width: 90%;
    }

    .contents-mock {
        order: -1;
    }

    .contents-mock img {
        width: 70%;
        bottom: -8vw;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

    .contents-bottom {
        gap: 10px;
    }

    .contents-card__title::after {
        top: 1px;
        left: 5px;
    }
}

@media (max-width: 645px) {
    .contents-view {
        padding-bottom: min(43%);
    }

    .contents-mock img {
        bottom: -12vw;
    }

    .contents-card__img {
        width: 70%;
        margin: 0 auto;
    }

    .contents-bottom {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .section08 {
        padding-top: 6rem;
    }

    .contents__top {
        flex-direction: column;
    }

    .contents-view {
        padding-bottom: min(24rem, 60%);
    }

    .contents-view__title::after {
        top: 1px;
        left: 5px;
    }

    .contents-view__item {
        width: 90%;
    }

    .contents-mock {
        order: -1;
    }

    .contents-mock img {
        width: 100%;
        bottom: calc(-19vw + ((100vw - 320px) * 0.03));
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

    .contents-bottom {
        flex-direction: column;
    }

    .contents-card__title::after {
        top: 1px;
        left: 5px;
    }
}

@media (max-width: 340px) {
    .contents-view {
        gap: 15px;
    }

    .contents-bottom {
        gap: 15px;
    }
}

/*=================
section09
===================*/
.section09 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section09__container {
    width: 70%;
    margin: 0 auto;
}

.section09__header {
    text-align: center;
    margin-bottom: 32px;
}

.section09__title {
    position: relative;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: #2C425F;
}

.section09__title:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    display: inline-block;
    width: 40px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #2C425F;
    border-radius: 2px;
}

.section09__img--pc {
    width: 100%;
    padding: 3rem 0;
}

.section09__notes {
    border: 2px solid #375987;
    padding: 1.5rem 3rem;
}

.section09__notes-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2C425F;
    margin: 0;
}

.section09__list {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.9rem;
    list-style: disc;
    padding-left: 1.3rem;
}

.section09__list-item {
    margin: 0.25rem 0;
}

@media (min-width: 1440px) {
    .section09__container {
        width: 60%;
    }
}

@media (max-width: 1100px) {
    .section09__container {
        width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section09 {
        padding-top: 4rem;
    }

    .section09__container {
        width: 90%;
    }

    .section09__img--sp {
        width: 100%;
        margin: 0 auto;
        padding: 2rem 0 0.5rem 0;
    }

    .section09__img--sp img {
        width: 100%;
    }

    .section09__notes {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 420px) {
    .section09 {
        padding-top: 6rem;
    }
}

/*=================
section10
===================*/
.section10 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
}

.section10__block {
    text-align: center;
}

.section10__block--lead {
    padding: 9rem 0 8.5rem 0;
    color: #fff;
    font-size: 1rem;
    background: linear-gradient(130deg, #6AABD5 0%, #3EA2D6 50%, #2F83C9 100%);
}

.section10__lead {
    font-weight: bold;
    font-size: 3rem;
    line-height: 5.2rem;
}

.section10__lead-strong {
    background-color: #fff;
    color: #4C94C9;
    font-size: 3rem;
    border-radius: 3px;
    padding: 0 1rem;
    margin-right: 0.5rem;
}

.section10__lead-bold {
    font-size: 2.3rem;
}

.section10__point {
    position: relative;
    z-index: 0;
}

.section10__point-img {
    position: absolute;
    width: clamp(460px, 44vw, 500px);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 3rem;
    z-index: 1;
}

.section10__point-title {
    position: relative;
    color: #4D3E7D;
    font-size: 2rem;
    font-weight: bold;
    top: 69px;
    z-index: 2;
}

.section10__point-text {
    position: relative;
    font-size: 1.6rem;
    line-height: 3.5rem;
    padding-top: 17rem;
    padding-bottom: 4rem;
    z-index: 2;
}

.section10__message {
    font-size: 1.6rem;
    line-height: 3.5rem;
}

.section10__divider {
    position: relative;
}

.section10__divider-img {
    position: absolute;
    width: clamp(170px, 16vw, 190px);
    top: -30px;
    z-index: 1;
}

.arrow-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: arrowBounce 1.5s infinite ease-in-out;
}

@keyframes arrowBounce {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

.section10__block--reason {
    position: relative;
    padding: 10rem 0 20rem 0;
    color: #2C425F;
    background-color: #D5EBF6;
}

.section10__reason-title {
    font-size: 2.3rem;
    font-weight: bold;
    padding-bottom: 2rem;
}

.section10__reason-text {
    font-size: 1.6rem;
    line-height: 3.5rem;
}

.section10__reason-point {
    padding: 2rem 0;
}

.section10__reason-img {
    width: clamp(90px, 10vw, 100px);
    margin-bottom: 1.5rem;
}

.section10__reason-catch {
    font-size: 2.6rem;
    font-weight: bold;
}

.section10__reason-catch span {
    color: #fff;
    font-size: 3rem;
    padding: 0.25rem 1.5rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    background: linear-gradient(#FF9239, #FF7506);
}

.section10__reason-divider {
    position: absolute;
    width: clamp(560px, 49vw, 600px);
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    z-index: 2;
}

.section10__cta-wrap {
    position: relative;
    background: linear-gradient(130deg, #6AABD5 0%, #3EA2D6 50%, #2F83C9 100%);
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.section10__cta {
    padding-bottom: 1rem;
}

.section10__pcnone {
    display: none;
}

.section10__spnone {
    display: initial;
}

@media (max-width: 768px) {
    .section10__reason-img {
        margin-top: 1.7rem;
        margin-bottom: 0;
    }

    .section10__reason-point {
        padding: 0 0 1.5rem 0;
    }

    .section10__reason-catch {
        line-height: 5.2rem;
    }

    .section10__block--reason {
        padding: 10rem 0 13rem 0;
    }

    .section10__reason-divider {
        width: clamp(370px, 55vw, 440px);
        bottom: -3px;
    }
}

@media (max-width: 610px) {
    .section10__cta-wrap {
        min-height: 280px;
    }
}

@media (max-width: 530px) {
    .section10__point-img {
        width: clamp(320px, 70vw, 400px);
    }

    .section10__point-title {
        top: clamp(70px, calc(90px - (530px - 100vw) * 0.15), 90px);
    }

    .section10__point-text {
        padding-top: 23rem;
        padding-bottom: 2rem;
    }

    .section10__reason-text {
        text-align: left;
    }

    .section10__spnone {
        display: none;
    }

    .section10__pcnone {
        display: initial;
    }
}

@media (max-width: 420px) {
    .section10__block--reason {
        padding: 10rem 0 10rem 0;
    }

    .section10__reason-title {
        line-height: 3.2rem;
    }

    .section10__reason-divider {
        width: clamp(280px, 70vw, 380px);
    }
}

@media (max-width: 340px) {
    .section10__lead-strong {
        font-size: 2.8rem;
        margin-right: 0.7rem;
    }

    .section10__lead-bold {
        font-size: 2.1rem;
    }

    .section10__lead {
        font-size: 2.5rem;
        line-height: 4.7rem;
    }

    .section10__point-title {
        font-size: 1.8rem;
    }

    .section10__point-img {
        width: 275px;
    }

    .section10__point-text {
        padding-top: 20rem;
        padding-bottom: 2.5rem;
    }

    .section10__message {
        font-size: 1.5rem;
        line-height: 3rem;
    }

    .section10__reason-text {
        font-size: 1.5rem;
        line-height: 3rem;
    }

    .section10__reason-catch {
        font-size: 2.3rem;
        line-height: 5rem;
    }
}

/*=================
section11
===================*/
.section11 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    background: #F2FAFD;
    margin: 0;
    padding: 6rem 0;
}

.section11__header {
    text-align: center;
    margin-bottom: 32px;
}

.section11__title {
    position: relative;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: #2C425F;
}

.section11__title:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    display: inline-block;
    width: 40px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #2C425F;
    border-radius: 2px;
}

.section11__list {
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding-top: 3rem;
}

.section11__item {
    padding-bottom: 3rem;
}

.section11__question {
    background-color: #6AABD5;
    color: #fff;
    padding: 0.9rem 1rem;
}

.section11__answer {
    text-indent: -2em;
    padding-left: 2em;
    padding-top: 2rem;
    margin: 0 1rem;
}

.section11__answer--label {
    color: #448EC5;
    margin-right: 1.2rem;
}

@media (max-width: 768px) {
    .section11__question {
        text-indent: -2.2em;
        padding-left: 3.2em;
    }

    .section11__answer {
        text-indent: -2.4em;
        padding-left: 2.4em;
        padding-top: 2rem;
    }

    .section11__answer--label {
        margin-right: 0.6rem;
        margin-left: 1.2rem;
    }
}

/*=================
section12
===================*/
.section12 {
    font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2.2rem);
    background-color: #F4F4EE;
}

.section12__header {
    color: #fff;
    background: linear-gradient(to right, #FFF2E7 0%, #FF5100 25%, #FF5100 75%, #FFF2E7 100%);
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    padding: 2.2rem 0;
    line-height: 1.5rem;
    letter-spacing: 0.3rem;
}

.section12__intro {
    font-weight: bold;
    color: #2C425F;
    text-align: center;
    line-height: 4rem;
    padding: 4rem 0;
}

.section11-info__logo {
    width: 30rem;
}

.section12__intro-text span {
    font-size: 3rem;
    background: linear-gradient(#FF9239, #FF7506);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section12__cta-wrap {
    position: relative;
    padding: 0 0 12rem 0;
}

.section12__cta {
    padding: 3rem 0;
}

.section12__pcnone {
    display: none;
}

.section12__padnone {
    display: none;
}

@media (max-width: 800px) {
    .section12__pcnone {
        display: initial;
    }
}

@media (max-width: 610px) {
    .section12__padnone {
        display: initial;
    }

    .section12__header {
        font-size: 2.1rem;
        padding: 1.7rem 0;
        line-height: 3.5rem;
    }

    .section12__inner {
        width: 100%;
    }

    .section12__intro {
        padding: 6rem 0 18rem;
    }
}

@media (max-width: 340px) {
    .section12__intro {
        padding: 5rem 0 17rem;
        line-height: 3.6rem;
    }

    .section12-info__logo {
        width: 25rem;
    }

    .section12__intro-text span {
        font-size: 2.7rem;
    }
}

/*=================
footer
===================*/
.footer {
    background: #397296;
    font-size: clamp(1.2rem, 1.3rem + 0.5vw, 1.5rem);
}

.footer__inner {
    text-align: center;
    padding-top: 3rem;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 650px;
    margin: 0 auto 20px;
}

.footer__nav_item {
    display: inline-block;
    padding: 0 1em;
    margin: 5px 0;
}

.footer__nav_item a {
    display: block;
    color: #fff;
    line-height: 1;
}

.footer__nav_item:nth-child(odd) {
    border-right: 2px solid #fff;
}

.footer__copy {
    display: block;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer__inner {
        padding-top: 2rem;
    }

    .footer__nav {
        width: 100%;
    }

    .footer__nav_item:nth-child(odd) {
        border-right: 0;
    }

    .footer__nav_item {
        width: 100%;
        margin: 10px 0;
        padding-bottom: 1rem;
    }

    .footer__nav_item:not(:last-child) {
        border-bottom: 2px solid #fff;
    }

    .footer__copy {
        line-height: 1.2rem;
        padding-bottom: 1.5rem;
    }
}