@charset "UTF-8";

html {
    font-size: 62.5%;
    height: 100vh;
    overflow-x: hidden;
}

body {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
    color: #111;
    width: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    -webkit-text-size-adjust: 100%;
    background: #F8FBFA;
    overflow-x: hidden;
}

a {
    color: #111;
}

ol {
    list-style-type: none;
}


.label-en {
    font-family: "Baloo Bhaijaan 2";
    font-style: normal;
    font-weight: 700;
}

header {
    background: #F8FCF8;
    background: url(../images/top/mv-bg.png);
    background-size: cover;
    position: relative;
    padding-top: 32px;
}

.only-tab,
.only-sp {
    display: none !important;
}

/* SP-header */
.sp-menu-toggle,
.sp-menu-panel {
    display: none;
}


/* g-nav */
#global-menu__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    border-radius: 64px;
    background: #fff;
    width: calc(100% - 100px);
    margin: 0 auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav ul li {
    font-weight: 600;
    line-height: 1.6;
    font-size: 1.4rem;
}

.nav-dl__btn {
    border-radius: 100px;
    background: #319B7B;
    display: flex;
    padding: 6px 24px 7px 26px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #fff;
    border: 2px solid #319B7B;
}

.nav-contact__btn {
    border-radius: 100px;
    background: #F59E0B;
    display: flex;
    padding: 6px 40px 7px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #fff;
    border: 2px solid #F59E0B;
}

.nav-list .nav-dl__btn {
    margin-left: 10px;
}

.nav-list li a:hover {
    color: #319B7B;
}

.nav-dl__btn:hover {
    background: #fff;
    border: 2px solid #319B7B;
    color: #319B7B;
}

.nav-contact__btn:hover {
    background: #fff;
    border: 2px solid #F59E0B;
    color: #F59E0B !important;
}



#global-menu__box .logo {
    display: block;
    height: 42px;
}

/* fv */
.fv {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 50px 0px 80px 40px;
}

.fv-copy {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 520px;
    padding-right: 0px;
}

.fv-heading h1 {
    font-family: "Mochiy Pop One", sans-serif;
    color: #1F2A27;
    font-size: 7.2rem;
    font-weight: 400;
    line-height: 1.3;
}

.fv-heading h1 span {
    font-size: 4.8rem;
}

.fv-lead {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    background: linear-gradient(transparent 60%, #FFF64D 40%);
    width: fit-content;
    max-width: 100%;
    display: inline-block;
    margin-top: 8px;
}

.fv-media {
    position: static;
}

.fv-media img {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 100%;
    max-width: 520px;
}

.fv-points {
    margin-top: 80px;
}

.fv-points li {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.fv-points li::before {
    content: "";
    background: url(../images/top/check-icon.svg) no-repeat center / contain;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.fv-cta__wrapper {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 60px;
}

.fv-cta__wrapper a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    border-radius: 1000px;
    width: 328px;
}

.fv-cta__wrapper a .cta-icon {
    right: 24px;
}

.fv-deco-right {
    display: none;
}

.cta-text {
    display: inline-flex;
    padding: 15px 104px 18px 60px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    white-space: nowrap;
}

.cta-download {
    background: #319B7B;
}

.cta-contact {
    background: #F59E0B;
}

.cta-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #319B7B;
    border-right: 2px solid #319B7B;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.cta-contact .cta-icon::after {
    border-color: #F59E0B;
}

.fv-cta__wrapper a:hover .cta-icon,
.cta-inner a:hover .cta-icon {
    animation: fuwafuwa 1s linear infinite;
}

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

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

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



/* problem */
#problem {
    position: relative;
}

#problem img {
    max-width: 100%;
    width: 100%;
}

.section-catch {
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    text-align: center;
    margin-top: 80px;
}

.section-catch span {
    background: #FFF64D;
}

.matomerukun-explain {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    width: 848px;
    margin: 80px auto 140px;
    align-items: center;
}

.matomerukun-detail {
    position: relative;
}

.matomerukun-detail::before {
    content: "";
    display: inline-block;
    background: url(../images/top/shape.svg);
    width: 34px;
    height: 41px;
}

.matomerukun-detail dt {
    color: #319B7B;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.8;
    margin: -14px auto 14px;
    padding-left: 32px;
}

.matomerukun-detail dd {
    max-width: 507px;
    padding: 0 24px 0 32px;
}

.matomerukun-detail::after {
    content: "";
    display: inline-block;
    background: url(../images/top/shape.svg);
    width: 34px;
    height: 41px;
    transform: rotate(180deg);
    position: absolute;
    right: 0;
}

.matomerukun-explain::after {
    content: "";
    background: url(../images/top/arrow-01.svg);
    width: 49px;
    height: 135px;
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.section-heading {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.6;
}

.section-heading span.label-en {
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2.4px;
    display: block;
    color: #319B7B;
    margin-bottom: 16px;
}

/* value */

.sp-br {
    display: none;
}

#value {
    background: #E0F0EB;
    padding: 140px 70px 120px;
    margin-bottom: 140px;
}

#value .section-heading {
    margin-bottom: 80px;
}

.value-wrapper {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 100px;
}

.value-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #319B7B;
    translate: 6px 6px;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}

.value-inner {
    display: flex;
    background: #fff;
    padding: 48px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}

.value-inner>.label-en {
    color: #CAE1DA;
    font-size: 8rem;
    line-height: 1;
    font-weight: 500;
    position: absolute;
}

.value-inner__body {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: 80px 110px 0 0;
}

.value-inner__body h3 {
    color: #319B7B;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.value-inner__image img {
    width: 100%;
}

#value .section-catch {
    position: relative;
    margin-top: 60px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}


#value .section-catch::after {
    content: "";
    display: block;
    background: url(../images/top/matomerukun-point.svg) no-repeat;
    background-size: contain;
    width: 150px;
    height: 200px;
    position: absolute;
    left: 100%;
    margin-left: 16px;
    bottom: -5px;
    top: auto;
    right: auto;
}


.guide-arrow img {
    display: block;
    margin: 0 auto;
}

/* feature */
#feature {
    padding: 0 120px;
}

#feature h2 {
    margin-bottom: 60px;
}

.feature-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 80px;
    gap: 45px;
    position: relative;
}

.feature-box {
    width: 45%;
    box-sizing: border-box;
}

.feature-box {
    background: transparent;
    padding: 32px 24px;
    position: relative;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background: #319B7B;
    z-index: -1;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}

.feature-title h3 {
    color: #319B7B;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
}

.section-catch__sab {
    text-align: center;
}

.compare-inner img {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto 80px;
}


/* cta sec */
.cta-wrapper {
    max-width: 1200px;
    width: calc(100% - 64px);
    margin: 0 auto 140px;
    background: linear-gradient(270deg, #29BE91 0%, #6DD6B6 100%);
    z-index: 1;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}

.cta-sub__catch {
    text-align: center;
    margin-bottom: 24px;
}

.cta-sub__catch img {
    width: 500px;
}

.cta-fukidashi__text {
    color: #319B7B;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.8;
}

.cta-inner {
    display: flex;
    justify-content: space-around;
    padding: 40px 70px;
}

.cta-download__img img {
    max-width: 300px;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.18));
}

.cta-download__text {
    color: #fff;
}

.cta-text__main {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-btn__body {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    border-radius: 1000px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    white-space: nowrap;
    gap: 48px;
}

.cta-btn__body {
    background: #F59E0B;
}

.cta-btn__body .cta-icon {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-btn__body .cta-icon::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #F59E0B;
    border-right: 2px solid #F59E0B;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.cta-btn__body {
    border-color: #F59E0B;
}

.cta-wrapper__contact {
    background: linear-gradient(90deg, #29BE91 0%, #6DD6B6 100%);
}

.cta-wrapper__contact .cta-inner {
    align-items: flex-end;
}

.cta-wrapper__contact .cta-btn__body {
    margin-top: 24px;
    margin-left: 30%;
    align-self: center;
}

/* 画像がflexで縮まないように固定 */
.cta-wrapper__contact .cta-download__img {
    flex-shrink: 0;
}

.cta-wrapper__contact .cta-download__img img {
    max-width: 150px;
}

/* はみ出た分はクリップ */
.cta-wrapper__contact .cta-inner {
    overflow: hidden;
}

/* flow */
#flow {
    background: #E0F0EB;
    padding: 80px 30px 100px;
}

#flow .section-heading {
    margin-bottom: 32px;
}

.flow-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
}

.flow-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 48px);
    margin: 20px auto 0;
    padding: 12px 32px 14px;
    border-radius: 5px;
    background: #F59E0B;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.flow-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% - 1px);
    transform: translateX(-50%);
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #F59E0B transparent transparent transparent;
}

.flow-list--step4 .flow-badge {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 3;
    white-space: nowrap;
}

.flow-list {
    position: relative;
    width: 21%;
    padding-top: 50px;
    isolation: isolate;
}

.flow-list::after {
    content: url(../images/top/flow-line.svg);
    width: 30px;
    height: 2px;
    top: 50%;
    position: absolute;
    right: -30px;
}

.flow-list:last-child::after {
    content: none;
}

.flow-list__inner {
    padding: 55px 16px 40px;
    background: transparent;
    position: relative;
}

.flow-list__inner::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background: #319B7B;
    z-index: -2;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}

.flow-list__inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}

.flow-list__step {
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    color: #fff;
    border-radius: 1000px;
    border: 6px solid #E0F0EB;
    background: #319B7B;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px;
    z-index: 2;
}

.flow-list__step strong {
    font-size: 3.2rem;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
}

.flow-list img {
    display: block;
    margin: 10px auto 14px;
}

.flow-list dl dt {
    color: #319B7B;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

/* faq */
#faq {
    margin: 140px auto 140px;
    padding: 80px 0;
    max-width: 1200px;
    width: 100%;
    position: relative;
}


.faq-wrapper::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background: #319B7B;
    z-index: -2;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}

.faq-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    clip-path: polygon(23px 0%,
            100% 0%,
            100% calc(100% - 21px),
            calc(100% - 23px) calc(100% - 21px),
            calc(100% - 23px) 100%,
            0% 100%,
            0% 21px,
            23px 21px);
}


.faq-box {
    max-width: 900px;
    margin: 40px auto 80px;
}

.faq-box dt {
    justify-content: left;
}

.faq-box dt,
.faq-box dd {
    display: flex;
    gap: 40px;
    align-items: center;
}

.faq-box dt p,
.faq-box dd p {
    position: relative;
    display: inline-block;
    margin: 1.5em 0 1.5em 15px;
    padding: 32px;
    width: 100%;
    background: #FFF;
    border: solid 3px #319B7B;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 1.8rem;
}

.faq-box dt p {
    color: #319B7B;
    font-weight: 500;
}

.faq-box dt p::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 12px solid #FFF;
    z-index: 2;
}

.faq-box dt p::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-right: 14px solid #319B7B;
    z-index: 1;
}

.faq-box dd p::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-left: 12px solid #FFF;
    z-index: 2;
}

.faq-box dd p::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-left: 14px solid #319B7B;
    z-index: 1;
}

/* cta */
.cta-break-tab,
.cta-break-sp {
    display: none;
}

.cta-wrapper__contact .cta-text__main {
    white-space: nowrap;
    font-size: clamp(2.8rem, 3vw, 3.6rem);
}

/* footer */
#footer {
    background: #319B7B;
    padding: 56px 0 32px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    width: calc(100% - 240px);
}

.footer-inner a img {
    display: block;
    margin: 0 auto 80px;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.footer-inner ul li {
    padding-left: 30px;
}

.footer-inner ul li+li {
    border-left: 1px solid #fff;
}

.footer-menu ul li a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
}

.footer-menu ul li a:hover {
    opacity: 0.7;
}

#footer small {
    font-size: 1.2rem;
    letter-spacing: 0.24px;
    font-weight: 400;
    display: block;
    text-align: center;
    color: #fff;
}




/* タブレット */
@media screen and (max-width: 1024px) {

    .only-pc,
    .only-sp {
        display: none !important;
    }

    body.is-menu-open {
        overflow: hidden;
    }

    .pc-nav {
        display: none;
    }

    header {
        padding-top: 0;
    }

    #global-menu__box {
        width: auto;
        margin: 0;
        padding: 14px 20px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }


    #global-menu__box .logo {
        height: 32px;
    }

    .sp-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #319B7B;
        cursor: pointer;
    }

    .sp-menu-toggle__line {
        display: block;
        width: 16px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
    }

    .sp-menu-panel {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, calc(100% - 95px));
        padding: 14px 20px 40px 32px;
        background: #fff;
        border-radius: 24px 0 0 24px;
        z-index: 20;
        box-sizing: border-box;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .sp-menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.8);
        z-index: 15;
    }


    .sp-menu-panel.is-open {
        display: flex;
        flex-direction: column;
    }

    .sp-menu-overlay.is-open {
        display: block;
    }

    .sp-menu-head {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 56px;
    }

    .sp-menu-close {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #319B7B;
        cursor: pointer;
    }

    .sp-menu-close__line {
        position: absolute;
        width: 16px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
    }

    .sp-menu-close__line:first-child {
        transform: rotate(45deg);
    }

    .sp-menu-close__line:last-child {
        transform: rotate(-45deg);
    }

    .sp-menu-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 30px;
    }

    .sp-menu-list li,
    .sp-menu-sub li {
        width: 100%;
    }

    .sp-menu-list a {
        display: inline-block;
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 1.6;
    }

    .sp-menu-list li a:hover {
        color: #319B7B;
    }

    .sp-menu-sub a:hover {
        color: #319B7B;
    }

    .sp-menu-cta {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 48px;
    }

    .sp-menu-cta .nav-dl__btn,
    .sp-menu-cta .nav-contact__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        margin-left: 0;
        padding: 12px 20px 14px;
        border-radius: 999px;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.6;
        box-sizing: border-box;
    }

    .sp-menu-sub {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sp-menu-sub a {
        display: inline-block;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1;
    }

    .fv {
        padding: 72px 24px 48px;
    }

    .fv-copy {
        position: relative;
        min-height: 420px;
        padding-right: 0px;
    }

    .fv-heading h1 {
        font-size: 6.4rem;
        line-height: 1.25;
    }

    .fv-heading h1 span {
        font-size: 4rem;
    }

    .fv-lead {
        margin-top: 8px;
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .fv-media img {
        right: 0;
        max-width: 400px;
    }

    .fv-points {
        margin-top: 56px;
    }

    .fv-points li {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .fv-cta__wrapper {
        margin-top: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .only-tab {
        display: block !important;
    }

    #problem {
        padding: 0 24px;
    }

    #problem .only-tab {
        display: block !important;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .section-catch {
        font-size: 3.2rem;
        line-height: 1.6;
        margin-top: 56px;
    }

    .matomerukun-explain {
        width: auto;
        max-width: 760px;
        gap: 10px;
        margin: 56px auto 120px;
    }

    .matomerukun-detail {
        margin: 0 50px;
    }

    .matomerukun-detail dd {
        max-width: none;
        padding: 0 16px 0 24px;
    }

    .matomerukun-explain>div {
        margin-top: 50px;
        width: 200px;
        flex-shrink: 0;
    }

    #value {
        padding: 140px 80px 88px;
        margin-bottom: 96px;
    }

    #value .section-heading {
        margin-bottom: 48px;
    }

    .value-wrapper {
        margin-bottom: 64px;
    }

    .value-inner {
        flex-wrap: wrap;
        padding: 60px 75px;
        gap: 24px;
    }

    .value-inner>.label-en {
        order: 1;
        width: 100%;
        position: static;
        font-size: 5.6rem;
        line-height: 1;
    }

    .value-inner__image {
        order: 2;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .value-inner__body {
        order: 3;
        width: 100%;
        margin: 0;
    }


    .value-inner__image img {
        display: block;
        margin: 0 auto;
    }

    .value-inner__body h3 {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }

    .value-inner__body p {
        font-size: 1.5rem;
        line-height: 1.9;
    }

    .guide-arrow img {
        width: 32px;
    }


    #value .section-catch {
        position: relative;
        margin-top: 40px;
        font-size: 3.2rem;
        line-height: 1.6;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    #value .section-catch::after {
        position: absolute;
        width: 100px;
        height: 150px;
        left: 100%;
        margin-left: 16px;
        bottom: -20px;
        top: auto;
        right: auto;
    }

    #feature {
        padding: 120px 70px 0;
    }

    #feature h2 {
        margin-bottom: 40px;
    }

    .feature-wrapper {
        display: block;
        max-width: none;
        margin: 0 auto 64px;
    }

    .feature-box {
        width: 100%;
        padding: 40px 70px;
        margin-bottom: 24px;
        box-sizing: border-box;
    }

    .feature-box:last-child {
        margin-bottom: 0;
    }

    .feature-title {
        gap: 16px;
        margin-bottom: 12px;
    }

    .feature-title img {
        width: 56px;
        height: auto;
        flex-shrink: 0;
    }

    .feature-title h3 {
        font-size: 1.8rem;
        line-height: 1.6;
    }

    .feature-box p {
        font-size: 1.5rem;
        line-height: 1.9;
    }

    .compare-inner .only-tab {
        display: block !important;
        width: 100%;
        max-width: 100%;
        margin: 32px auto 64px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .section-catch__sab {
        font-size: 1.5rem;
        line-height: 1.8;
        margin-top: 8px;
    }

    .cta-wrapper {
        max-width: none;
        width: auto;
        margin: 0 70px 96px;
    }

    .cta-first {
        margin-bottom: 0;
    }

    .cta-inner {
        display: flex;
        flex-direction: column;
        padding: 32px 70px;
        gap: 0px;
        text-align: center;
    }

    /* 上のCTAだけ並び替え */
    .cta-wrapper:not(.cta-wrapper__contact) .cta-inner {
        text-align: left;
        align-items: flex-start;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__text {
        display: contents;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__text p:first-child {
        order: 1;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__text .cta-text__main {
        order: 2;
        margin-bottom: 0;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__img {
        order: 3;
        align-self: center;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-btn__body {
        order: 4;
        align-self: center;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__img img {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }



    /* FAQ下CTAは専用レイアウト */
    .cta-wrapper__contact .cta-inner {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0;
        padding: 62px 0px 48px 36px;
        margin-top: 80px;
        min-height: 320px;
    }

    .cta-wrapper__contact .cta-break-tab {
        display: block;
    }

    .cta-wrapper__contact .cta-download__text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        color: #fff;
        text-align: left;
    }

    .cta-wrapper__contact .cta-text__main {
        order: 1;
        width: 100%;
        margin-bottom: 16px;
        text-align: left;
    }

    .cta-wrapper__contact .cta-download__text>p:not(.cta-text__main) {
        order: 2;
        width: 100%;
        margin-bottom: 24px;
        text-align: left;
        padding-right: 220px;
        box-sizing: border-box;
    }

    .cta-wrapper__contact .cta-btn__body {
        order: 3;
        width: 100%;
        max-width: 380px;
        margin: 0;
        align-self: flex-start;
    }

    .cta-wrapper__contact .cta-btn__body .cta-text {
        font-size: 2rem;
    }

    .cta-wrapper__contact .cta-download__img {
        position: absolute;
        right: 40px;
        bottom: 55px;
        width: 140px;
        order: unset;
    }

    .cta-wrapper__contact .cta-download__img img {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    #flow {
        padding: 72px 24px 80px;
    }

    .flow-inner {
        display: block;
        max-width: none;
        padding-top: 0px;
        position: relative;
    }

    .flow-inner::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 140px;
        bottom: 110px;
        transform: translateX(-50%);
        width: 2px;
        background: repeating-linear-gradient(to bottom,
                #319B7B 0 6px,
                transparent 6px 12px);
        z-index: 0;
        pointer-events: none;
    }

    .flow-list {
        position: relative;
        z-index: 1;
        width: min(100%, 488px);
        padding-top: 44px;
        margin: 0 auto 40px;
        isolation: isolate;
    }

    .flow-list:last-child {
        margin-bottom: 0;
    }

    .flow-list::after {
        content: none;
    }

    .flow-list__inner {
        position: relative;
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        grid-template-areas:
            "icon title"
            "body body";
        column-gap: 16px;
        row-gap: 12px;
        padding: 48px 50px 32px;
        background: transparent;
    }

    .flow-list__inner::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 100%;
        height: 100%;
        background: #319B7B;
        z-index: -2;
        clip-path: polygon(23px 0%,
                100% 0%,
                100% calc(100% - 21px),
                calc(100% - 23px) calc(100% - 21px),
                calc(100% - 23px) 100%,
                0% 100%,
                0% 21px,
                23px 21px);
    }

    .flow-list__inner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: -1;
        clip-path: polygon(23px 0%,
                100% 0%,
                100% calc(100% - 21px),
                calc(100% - 23px) calc(100% - 21px),
                calc(100% - 23px) 100%,
                0% 100%,
                0% 21px,
                23px 21px);
    }

    .flow-list__step {
        width: 60px;
        height: 60px;
        border-width: 5px;
        padding: 8px;
    }

    .flow-list__step strong {
        font-size: 2.8rem;
    }

    .flow-list img {
        grid-area: icon;
        width: 64px;
        max-width: 64px;
        margin: 0;
        align-self: center;
        justify-self: center;
    }

    .flow-list dl {
        display: contents;
    }

    .flow-list dl dt {
        grid-area: title;
        color: #319B7B;
        font-size: 1.8rem;
        font-weight: 700;
        text-align: left;
        margin: 0;
        align-self: center;
    }

    .flow-list dl dd {
        grid-area: body;
        font-size: 1.4rem;
        line-height: 1.9;
        margin: 0;
    }

    .flow-list--step4 .flow-badge {
        position: absolute;
        top: -48px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        padding: 10px 24px 11px;
        z-index: 3;
        white-space: nowrap;
    }

    .flow-list--step4 .flow-badge::after {
        border-width: 8px 6px 0 6px;
    }

    .flow-list--step4 {
        margin-top: 80px;
    }


    #faq {
        margin: 0;
        padding: 80px 60px;
        max-width: none;
        width: auto;
        background: #fff;
    }

    .faq-wrapper::before,
    .faq-wrapper::after {
        content: none;
        display: none;
    }

    .faq-box {
        max-width: none;
        margin: 32px 0 48px;
    }

    .faq-box:last-child {
        margin-bottom: 0;
    }

    .faq-box dt,
    .faq-box dd {
        gap: 20px;
        align-items: center;
    }

    .qa_icon {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .faq-box dt p,
    .faq-box dd p {
        margin: 16px;
        padding: 24px;
        font-size: 1.6rem;
        line-height: 1.8;
        border: 2px solid #319B7B;
    }

    .faq-box dt p::before {
        left: -16px;
        margin-top: -8px;
        border: 8px solid transparent;
        border-right: 8px solid #FFF;
    }

    .faq-box dt p::after {
        left: -20px;
        margin-top: -10px;
        border: 10px solid transparent;
        border-right: 10px solid #319B7B;
    }

    .faq-box dd p::before {
        right: -16px;
        margin-top: -8px;
        border: 8px solid transparent;
        border-left: 8px solid #FFF;
    }

    .faq-box dd p::after {
        right: -20px;
        margin-top: -10px;
        border: 10px solid transparent;
        border-left: 10px solid #319B7B;
    }

    /* footer */
    #footer {
        padding: 32px 0 24px;
    }

    .footer-inner {
        width: auto;
        margin: 0;
        padding: 0 24px;
    }


}

/* スマホ */
@media screen and (max-width:768px) {

    .fv {
        padding: 42px 24px 48px;
    }

    .fv-copy {
        position: relative;
        padding-right: 0;
        z-index: 1;
    }

    .fv-heading h1 {
        font-size: 3.2rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .fv-heading h1 span {
        font-size: 2.2rem;
    }

    .fv-lead {
        font-size: 1.6rem;
        line-height: 1.8;
        display: inline;
        width: auto;
        max-width: none;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }

    .fv-media {
        position: static;
        height: auto;
        margin-top: 16px;
    }

    .fv-media img {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        display: block;
        width: min(350px, 80vw);
        max-width: 350px;
        margin: 0 auto;
    }

    .fv-points {
        margin-top: 24px;
    }


    .fv-cta__wrapper a {
        width: 100%;
        max-width: 360px;
    }

    .fv-cta__wrapper a .cta-text {
        width: 100%;
        padding: 14px 72px 16px 40px;
        font-size: 1.9rem;
        box-sizing: border-box;
    }

    .fv-cta__wrapper a .cta-icon {
        width: 36px;
        height: 36px;
    }

    .fv-deco-right {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        max-width: 600px;
        z-index: 0;
    }

    #problem {
        padding: 0 20px;
    }


    .section-catch {
        font-size: 3rem;
        line-height: 1.6;
        margin-top: 48px;
    }

    .matomerukun-explain {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: auto;
        max-width: none;
        margin: 40px auto 80px;
        position: relative;
    }

    .matomerukun-detail {
        width: 100%;
    }

    .matomerukun-detail dt {
        font-size: 2rem;
        margin: -10px auto 12px;
        padding-left: 16px;
    }

    .matomerukun-detail dd {
        max-width: none;
        padding: 0 16px;
    }

    .matomerukun-explain>div img {
        display: block;
        width: 160px;
        max-width: 100%;
        margin: 0 auto;
    }

    body {
        width: auto;
    }

    .section-catch {
        font-size: 3rem;
        line-height: 1.6;
        margin-top: 48px;
    }

    .matomerukun-explain {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: auto;
        max-width: none;
        margin: 40px auto 80px;
        position: relative;
    }

    .matomerukun-detail {
        width: 100%;
    }

    .matomerukun-detail dt {
        font-size: 2rem;
        margin: -10px auto 12px;
        padding-left: 16px;
    }

    .matomerukun-detail dd {
        max-width: none;
        padding: 0 16px;
    }

    .matomerukun-explain>div img {
        display: block;
        width: 160px;
        max-width: 100%;
        margin: 0 auto;
    }

    .only-pc {
        display: none !important;
    }

    #problem .only-tab {
        display: none !important;
    }

    .only-sp {
        display: block !important;
    }

    .matomerukun-explain::after {
        width: 32px;
        height: 88px;
        background-size: contain;
        background-repeat: no-repeat;
        bottom: -120px;
    }

    #problem .only-sp {
        display: block !important;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    #value {
        padding: 72px 30px 110px;
        margin-bottom: 72px;
    }

    .sp-br {
        display: block;
    }

    #value .section-heading {
        margin-bottom: 32px;
    }

    .section-heading span.label-en {
        font-size: 1.6rem;
    }

    .value-wrapper {
        margin-bottom: 48px;
    }

    .value-inner {
        display: flex;
        flex-wrap: wrap;
        padding: 32px 20px;
    }

    .value-inner>.label-en {
        order: 1;
        width: 100%;
        position: static;
        font-size: 4.8rem;
        line-height: 1;
    }

    .value-inner__image {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .value-inner__image img {
        display: block;
        width: 100%;
    }

    .value-inner__body {
        order: 3;
        width: 100%;
        margin: 0 0 24px;
    }

    .value-inner__body h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .value-inner__body p {
        font-size: 1.4rem;
        line-height: 1.9;
    }

    .guide-arrow img {
        width: 24px;
        margin: 0 auto;
    }

    #value .section-catch {
        position: relative;
        margin-top: 40px;
        font-size: clamp(2.4rem, 8vw, 3.2rem);
        line-height: 1.6;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    #value .section-catch::after {
        width: min(80px, 20vw);
        height: min(120px, 30vw);
        top: 160%;
        transform: translateY(-100%);
        bottom: auto;
        left: 75%;
        right: auto;
    }

    #feature {
        padding: 80px 20px 0;

    }

    #feature h2 {
        margin-bottom: 32px;
    }

    .feature-wrapper {
        display: block;
        margin: 0 auto 48px;
    }

    .feature-box {
        width: 100%;
        padding: 32px 20px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .feature-title {
        gap: 12px;
        margin-bottom: 10px;
    }

    .feature-title img {
        width: 48px;
        height: auto;
    }

    .feature-title h3 {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .feature-box p {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .compare-inner .only-tab {
        display: none !important;
    }

    .compare-inner .only-sp {
        display: block !important;
        width: 100%;
        max-width: 100%;
        margin: 24px auto 48px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .section-catch__sab {
        font-size: 1.4rem;
        line-height: 1.8;
        padding: 0 12px;
    }

    .cta-sub__catch {
        margin-bottom: 16px;
        padding: 0 20px;
    }

    .cta-sub__catch img {
        width: 320px;
    }

    .cta-wrapper {
        margin: 0 20px 72px;
    }

    .cta-first {
        margin-bottom: 0;
    }

    .cta-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px 24px;
        gap: 0px;
        text-align: center;
    }

    .fv-cta__wrapper a {
        width: 100%;
        max-width: 280px;
    }

    .fv-cta__wrapper a .cta-text {
        width: 100%;
        padding: 12px 52px 14px 20px;
        font-size: 1.8rem;
        box-sizing: border-box;
    }

    .fv-cta__wrapper a .cta-icon {
        width: 32px;
        height: 32px;
    }


    /* 上のCTAだけ並び替え */
    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__text {
        display: contents;
        width: 100%;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__text>p:first-child {
        order: 1;
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-text__main {
        order: 2;
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 0;
        padding-bottom: 16px;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__img {
        order: 3;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-download__img img {
        max-width: 220px;
        width: 100%;
        margin: 0 auto;
    }

    .cta-wrapper:not(.cta-wrapper__contact) .cta-btn__body {
        order: 4;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        align-self: center;
        margin: 0 auto;
    }

    /* FAQ下CTAは専用レイアウト */

    .cta-wrapper__contact .cta-inner {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px;
        min-height: 410px;
        text-align: left;
    }

    .cta-wrapper__contact .cta-download__text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        color: #fff;
        text-align: left;
    }

    .cta-wrapper__contact .cta-break-tab {
        display: block;
    }

    .cta-wrapper__contact .cta-break-sp {
        display: block;
    }


    .cta-wrapper__contact .cta-break-tab {
        display: block;
    }

    .cta-wrapper__contact .cta-text__main {
        width: 100%;
        font-size: clamp(2.2rem, 6vw, 3rem);
        line-height: 1.55;
        margin-bottom: 40px;
        text-align: left;
    }

    .cta-wrapper__contact .cta-download__text>p:not(.cta-text__main) {
        width: 100%;
        font-size: 1.4rem;
        line-height: 1.8;
        margin-bottom: 28px;
        text-align: left;
        padding-right: 110px;
    }

    .cta-wrapper__contact .cta-btn__body {
        order: 3;
        width: 100%;
        max-width: none;
        align-self: center;
        margin: 0 auto;
    }

    .cta-wrapper__contact .cta-download__img {
        position: absolute;
        top: 150px;
        right: 22px;
        width: 110px;
        order: unset;
    }

    .cta-wrapper__contact .cta-download__img img {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
    }


    .cta-wrapper__contact .cta-btn__body {
        order: 4;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        align-self: center;
        margin: 0 auto;
        margin-top: 0;
    }

    .cta-wrapper__contact .cta-btn__body .cta-text {
        font-size: 1.3rem;
    }



    .cta-btn__body .cta-text {
        width: 100%;
        padding: 12px 52px 14px 20px;
        font-size: 1.5rem;
        line-height: 1.6;
        box-sizing: border-box;
    }

    .cta-btn__body .cta-icon {
        right: 16px;
        width: 24px;
        height: 24px;
    }

    .cta-btn__body .cta-icon::after {
        width: 6px;
        height: 6px;
        border-top-width: 1.5px;
        border-right-width: 1.5px;
    }


    .flow-list__inner {
        padding: 48px 22px 32px;
    }



    #faq {
        padding: 80px 20px;
        max-width: none;
        width: auto;
    }

    .faq-box {
        margin: 24px 0 40px;
    }

    .faq-box dt,
    .faq-box dd {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .faq-box dt p,
    .faq-box dd p {
        margin: 10px;
        padding: 16px 14px;
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .footer-inner a img {
        margin: 0 0 60px;
    }

    .footer-menu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 80px;
    }

    .footer-inner ul li {
        width: 100%;
        padding-left: 0;
    }

    .footer-inner ul li+li {
        border-left: none;
    }

    .footer-menu ul li a {
        display: inline-block;
        font-size: 1.3rem;
        line-height: 100%;
        text-align: left;
        font-weight: 400;
    }

}