@charset "UTF-8";

body{
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

main {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    color: #231815;
    text-align: center;
    line-height: 1.2;
}

/* common set
================================*/
.color-main { color: #231815; }
.color-orange { color: #FF5900; }
.color-blue { color: #16508A; }

em {
    font-weight: bold;
    font-style: normal;
}

/* fonts */
.roboto {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

/* marker */
.marker {
    display: inline;
    &.darkorange {
        padding: 2px 4px;
        background: linear-gradient(transparent 0%, #FF5900 0%);
        line-height: 1.3;
        color: #fff;
    }
    &.orange {
        background: linear-gradient(transparent 10%, #FFD7C1 10%);
    }
    &.lightorange {
        background: linear-gradient(transparent 60%, #FFEFE6 60%);
    }
    &.black {
        padding: 2px 4px;
        background: linear-gradient(transparent 0%, #000 0%);
        line-height: 1.3;
        color: #fff;
    }
    &.blue {
        background: linear-gradient(transparent 60%, #E8EEF4 60%);
    }
}

/* dot */
.dot {
    background-image: radial-gradient(circle at center, orange 20%, transparent 20%); /* 点の色とサイズ調整 */
    background-position: top right; /* 点の位置 */
    background-repeat: repeat-x; /* 横方向に繰り返し */
    background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
    padding-top: .25em; /* 縦方向の位置調整 */
}

/* link set */
a,a:link {
    text-decoration: underline .5px;
    text-underline-offset: 1.5px;
    text-underline-position: under;
}
a:hover {
    text-decoration: none;
}

/* container */
.container {
    max-width: 1100px;
    padding: 120px 0 0;
    margin: 0 auto;
}
.container-w {
    width: 100%;
    padding: 120px 0 0;
    margin: 0 auto;
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .container {
        max-width: 980px;
    }
    .container-w {
        width: 100%;
    }
}
@media screen and (min-width: 881px) and (max-width: 1024px) {
    .container {
        max-width: 880px;
    }
    .container-w {
        padding: 0 24px;
    }
}
@media screen and (min-width: 768px) and (max-width: 880px) {
    .container,
    .container-w {
        padding: 0 24px;
    }
}
@media screen and (max-width: 767px) {
    .container,
    .container-w {
        padding: 0 16px;
    }
}


/* hidden */
.visually-hidden {
    /* position: fixed !important;
    top: 0px !important;
    left: 0px !important;
    width: 4px !important;
    height: 4px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important; */
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
}

.for-pc { display: block; }
.for-sp { display: none; }
.for-sp.small { display: none; }
@media screen and (min-width: 377px) and (max-width: 767px) {
    .for-pc { display: none; }
    .for-sp { display: block; }
    .for-sp.small { display: none; }
}
@media screen and (min-width: 321px) and (max-width: 376px) {
    .for-pc { display: none; }
    .for-sp { display: block; }
    .for-sp.small { display: block; }
}
@media screen and (max-width: 320px) {
    .for-pc { display: none; }
    .for-sp { display: block; }
    .for-sp.small { display: block; }
}


/* index */
.index {
    display: grid;
    grid-template-rows: auto auto;
    gap: 8px;
    justify-content: start;
    justify-items: flex-start;
    margin: 0 auto 4%;
    font-weight: bold;
    .index-main { 
        font-size: clamp(1.5rem, 1.277rem + 0.92vw, 2.375rem);
        &::after {
            content: "";
            display: block;
            width: auto;
            height: 2px;
            margin-top: 6px;
            background: #FF5900;
        }
    }
    .index-sub { 
        font-size: clamp(1.125rem, 1.029rem + 0.39vw, 1.5rem);
        color: #FF5900;
    }
}
@media screen and (max-width: 320px) {
    .index {
        display: grid;
        grid-template-rows: auto auto;
        gap: 8px;
        justify-content: start;
        justify-items: flex-start;
        margin: 0 auto 7%;
        font-weight: bold;
        .index-main { 
            font-size: 1.5rem;
            &::after {
                content: "";
                display: block;
                width: auto;
                height: 2px;
                margin-top: 6px;
                background: #FF5900;
            }
        }
        .index-sub { 
            font-size: clamp(1.25rem, 1.154rem + 0.39vw, 1.625rem);
            color: #FF5900;
        }
    }
}


/* header set
================================*/
body.is-fixed {
    overflow: hidden;
}
header {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 32px;
    position: relative;
    z-index: 1000;
    .h-main-container {
        display: grid;
        grid-template-columns: 120px auto;
        gap: 8px;
        justify-content: center;
        align-items: center;
        .logo {
            
            img {
                width: 100%;
                /* max-width: 140px; */
                aspect-ratio: 5 / 1;
            }
        }
        .catch {
            display: inline-block;
            padding: 4px 8px;
            background: #16508A;
            color: #fff;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            font-weight: bold;
            line-height: 1;
        }
    }
    .hamburger {
        display: none;
    }
    nav {
        display: grid;
        grid-template-columns: auto auto;
        gap: 0;
        justify-content: end;
        align-items: center;
        width: 100%;
        font-size: 1rem;
        font-weight: bold;
        .nav-list {
            display: flex;
            flex-direction: row;
            gap: 0;
            justify-content: center;
            align-items: center;
            li {
                display: flex;
                flex-direction: row;
                gap: 0;
                justify-content: center;
                align-items: center;
                background: #fff;
                &::after {
                    content: "";
                    display: block;
                    width: 2px;
                    height: 40px;
                    border-right: 1px solid #E1DFDE;
                }
                &:last-child::after {
                    display: none !important;
                }
                a, a:link {
                    display: block;
                    height: 80px;
                    line-height: 80px;
                    text-decoration: none;
                }
                a:hover {
                    .nav-list_link {
                        border-bottom: 4px solid #16508A;
                    }
                }
                .nav-list_link {
                    padding: 0 12px;
                }
            }
        }
        .button {
            background: #FF5900
            url(../../asset/images/nav-button_bg.webp) left -20px bottom -45px /contain no-repeat;
            font-size: 1.25rem;
            color: #fff;
            a,
            a:link {
                display: grid;
                grid-template-columns:  auto auto;
                gap: 8px;
                justify-content: center;
                align-items: center;
                width: 240px;
                aspect-ratio: 3 / 1;
                line-height: 80px;
                text-decoration: none;
            }
            a:hover {
                opacity: .5;
            }
            .icon {
                display: block;
                width: 38px;
                height: 26px;
                background: url(../../asset/images/nav-button_mailicon.svg) 0 0 /contain no-repeat;
            }
        }
    }
}
@media screen and (min-width: 1251px) and (max-width: 1280px) {
    header {
        .h-main-container {
            grid-template-columns: 130px auto;
            .logo {
                
                img {
                    max-width: 130px;
                }
            }
            .catch {
                padding: 4px 8px;
                font-size: 0.813rem;
            }
        }
        .hamburger {
            display: none;
        }
        nav {
            font-size: .8rem;
            .nav-list {
                li {
                    &::after {
                        height: 33px;
                    }
                    a, a:link {
                        display: block;
                        height: 63px;
                        line-height: 63px;
                        text-decoration: none;
                    }
                    a:hover {
                        .nav-list_link {
                            border-bottom: 3px solid #16508A;
                        }
                    }
                    .nav-list_link {
                        padding: 0 16px;
                    }
                }
            }
            .button {
                aspect-ratio: 3 / 1;
                height: 63px;
                background: #FF5900
                url(../../asset/images/nav-button_bg.webp) left -20px bottom -45px /contain no-repeat;
                font-size: 1.125rem;
                color: #fff;
                a,
                a:link {
                    gap: 8px;
                    width: 200px;
                    line-height: 63px;
                }
                a:hover {
                    opacity: .5;
                }
                .icon {
                    display: block;
                    width: 38px;
                    height: 26px;
                    background: url(../../asset/images/nav-button_mailicon.svg) 0 0 /contain no-repeat;
                }
            }
        }
    }
}
@media screen and (min-width: 1187px) and (max-width: 1250px) {
    header {
        .h-main-container {
            grid-template-columns: 100px auto;
            .logo {
                img {
                    max-width: 100px;
                }
            }
            .catch {
                font-size: 0.938rem;
            }
        }
        nav {
            font-size: .813rem;
            .nav-list {
                li {
                    &::after {
                        height: 33px;
                    }
                    a, a:link {
                        height: 60px;
                        line-height: 60px;
                    }
                    a:hover {
                        .nav-list_link {
                            border-bottom: 4px solid #16508A;
                        }
                    }
                    .nav-list_link {
                        padding: 0 12px;
                    }
                }
            }
            .button {
                aspect-ratio: 3 / 1;
                height: 60px;
                background:
                    #FF5900
                    url(../../asset/images/nav-button_bg.webp) left -10px bottom -35px /contain no-repeat;
                font-size: 1.125rem;
                a,
                a:link {
                    display: grid;
                    grid-template-columns:  auto auto;
                    gap: 8px;
                    justify-content: center;
                    align-items: center;
                    width: 220px;
                    height: 60px;
                    line-height: 60px;
                    text-decoration: none;
                }
                a:hover {
                    opacity: .5;
                }
                .icon {
                    display: block;
                    width: 36px;
                    height: 24px;
                    background: url(../../asset/images/nav-button_mailicon.svg) 0 0 /contain no-repeat;
                }
            }
        }
    }
}
@media screen and (min-width: 1025px) and (max-width: 1186px) {
    header {
        .h-main-container {
            grid-template-columns: 80px auto;
            gap: 8px;
            justify-content: center;
            align-items: center;
            .catch {
                font-size: 0.813rem;
            }
        }
        nav {
            font-size: 0.813rem;
            .nav-list {
                li {
                    &::after {
                        height: 33px;
                    }
                    a, a:link {
                        height: 54px;
                        line-height: 54px;
                    }
                    a:hover {
                        .nav-list_link {
                            border-bottom: 4px solid #16508A;
                        }
                    }
                    .nav-list_link {
                        padding: 0 10px;
                    }
                }
            }
            .button {
                height: 54px;
                background:
                    #FF5900
                    url(../../asset/images/nav-button_bg.webp) left -10px bottom -35px /contain no-repeat;
                font-size: .938rem;
                a,
                a:link {
                    display: grid;
                    grid-template-columns:  auto auto;
                    gap: 8px;
                    justify-content: center;
                    align-items: center;
                    width: 180px;
                    line-height: 54px;
                    text-decoration: none;
                }
                a:hover {
                    opacity: .5;
                }
                .icon {
                    display: block;
                    width: 36px;
                    height: 24px;
                    background: url(../../asset/images/nav-button_mailicon.svg) 0 0 /contain no-repeat;
                }
            }
        }
    }
    header nav {
        font-size: 0.813rem;
    }
}
@media screen and (min-width: 321px) and (max-width: 1024px) {
    header {
        .h-main-container {
            grid-template-columns: 120px auto;
            gap: 16px;
            justify-content: center;
            align-items: center;
            .logo {
                img {
                    max-width: 120px;
                }
            }
            .catch {
                font-size: 0.813rem;
            }
        }
        nav {
            font-size: 0.813rem !important;
            .nav-list {
                li {
                    &::after {
                        height: 33px;
                    }
                    a, a:link {
                        height: 54px;
                        line-height: 54px;
                    }
                    a:hover {
                        .nav-list_link {
                            border-bottom: 4px solid #16508A;
                        }
                    }
                    .nav-list_link {
                        padding: 0 10px;
                    }
                }
            }
            .button {
                background:
                    #FF5900
                    url(../../asset/images/nav-button_bg.webp) left -10px bottom -35px /contain no-repeat;
                font-size: 1.375rem;
                a,
                a:link {
                    display: grid;
                    grid-template-columns:  auto auto;
                    gap: 8px;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    text-decoration: none;
                }
                a:hover {
                    opacity: .5;
                }
                .icon {
                    display: block;
                    width: 36px;
                    height: 24px;
                    background: url(../../asset/images/nav-button_mailicon.svg) 0 0 /contain no-repeat;
                }
            }
        }
    }
    header nav {
        font-size: 0.813rem;
    }
}
@media screen and (max-width: 320px) {
    header {
        .h-main-container {
            grid-template-columns: 90px auto;
            gap: 8px;
            justify-content: center;
            align-items: center;
            .logo {
                img {
                    max-width: 90px;
                }
            }
            .catch {
                font-size: 0.813rem;
            }
        }
        nav {
            font-size: 0.813rem;
            .nav-list {
                li {
                    &::after {
                        height: 33px;
                    }
                    a, a:link {
                        height: 54px;
                        line-height: 54px;
                    }
                    a:hover {
                        .nav-list_link {
                            border-bottom: 4px solid #16508A;
                        }
                    }
                    .nav-list_link {
                        padding: 0 10px;
                    }
                }
            }
            .button {
                background:
                    #FF5900
                    url(../../asset/images/nav-button_bg.webp) left -10px bottom -35px /contain no-repeat;
                font-size: 1.25rem;
                a,
                a:link {
                    display: grid;
                    grid-template-columns:  auto auto;
                    gap: 8px;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    text-decoration: none;
                }
                a:hover {
                    opacity: .5;
                }
                .icon {
                    display: block;
                    width: 36px;
                    height: 24px;
                    background: url(../../asset/images/nav-button_mailicon.svg) 0 0 /contain no-repeat;
                }
            }
        }
    }
}

#hamburgerBtn {
    display: none;
}
@media screen and (max-width: 1024px) {
    header {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 24px;
    }
    #hamburgerBtn {
        display: flex;
        position: relative;
        z-index: 1100;
        width: 48px;
        height: 48px;
        border: none;
        background: transparent;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        padding: 0;
        .menu--icon,
        .menu--icon::before,
        .menu--icon::after {
            display: block;
            content: "";
            width: 36px;
            height: 4px;
            background: #231815;
            border-radius: 10px;
            transition: 0.5s;
        }
        .menu--icon {
            position: relative;
            bottom: 0;
            &::before {
                position: absolute;
                top: 10px;
            }
            &::after {
                position: absolute;
                bottom: 10px;
            }
        }

        &.active .menu--icon {
            background: transparent;
            &::before {
                top: 0;
                transform: rotate(45deg);
            }
            &::after {
                top: 0;
                transform: rotate(-45deg);
            }
        }
    }

    nav#navArea {
        display: block;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        padding: 60px 24px;
        background: #fff;
        transform: translateX(100%);
        font-size: 0.875rem;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1001;
        text-align: left;
        &.active {
            transform: translateX(0);
            transition: transform 0.5s ease;
            overflow-y: scroll;
        }
    }
    
    nav#navArea .nav-list {
        display: block;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 24px;
        li {
            display: block;
            width: 100%;
            border-bottom: none;
            &::after {
                display: none;
            }
            a,
            a:link {
                display: block;
                width: 100%;
                height: 50px;
                line-height: 50px;
            }
            a:hover .nav-list_link {
                border: none;
            }
            .nav-list_link {
                padding: 0;
                font-size: 1rem;
            }
        }
    }
    #navArea .button {
        aspect-ratio: auto;
        width: 100%;
        aspect-ratio: unset;
        a,
        a:link {
            display: grid;
            grid-template-columns: auto auto;
            gap: 8px;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 60px;
            line-height: 60px;
            text-decoration: none;
        }
    }

    #navOverlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        &.show {
            opacity: 1;
            visibility: visible;
            transition: 0.5s;
        }
    }
}


/* footer set
================================*/
footer {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 32px 1rem;
    background: #231815;
    color: #fff;
    .nav-list {
        display: grid;
        grid-template-columns: auto auto;
        gap: 24px;
        justify-content: center;
        align-items: center;
    }
    .copyright {
        font-size: clamp(0.75rem, 0.718rem + 0.13vw, 0.875rem);
        text-align: center;
    }
}
@media screen and (max-width: 1024px) {
    footer {
        margin: 0 auto 100px;
    }
    footer.contact {
        margin: 0 auto;
    }
}

/* First view
================================*/
#fv {
    position: relative;
    .fv-image {
        width: 80%;
        margin: 0 auto;
    }
    .fv-list-container {
        display: block;
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: 13%;
        left: 16%;
    }
    #fv-checklist {
        li {
            &.first {
                img {
                    width: 34%;
                }
            }
            &.second {
                img {
                    width: 48%;
                }
            }
        }
    }
    #fv-pointlist {
        display: none;
    }
}
#fv .lp02 {
    .fv-list-container {
        bottom: 10%;
        left: 16%;
    }
    #fv-checklist {
        li {
            &.first {
                margin: 0 auto 8px;
                img {
                    width: 34%;
                }
            }
            &.second {
                img {
                    width: 55%;
                }
            }
        }
    }
}
@media screen and (min-width: 561px) and (max-width: 768px) {
    #fv {
        margin: 0 auto 1rem;
        .fv-image {
            width: 100%;
            margin: 0 auto;
        }
        .fv-list-container {
            display: grid;
            grid-template-rows: auto auto;
            gap: 16px;
            padding: 0 1rem;
            position: absolute;
            top: 56%;
            right: inherit;
            bottom: inherit;
            left: 6%;
        }
        #fv-checklist {
            li {
                &.first {
                    img {
                        width: 44%;
                    }
                }
                &.second {
                    img {
                        width: 58%;
                    }
                }
            }
        }
        #fv-pointlist {
            display: none;
        }
    }
    #fv .lp02 {
        .fv-list-container {
            top: inherit;
            right: inherit;
            bottom: 10%;
            left: 6%;
        }
    }
}
@media screen and (max-width: 560px) {
    #fv {
        margin: 0 auto 1rem;
        .fv-image {
            width: 100%;
            margin: 0 auto;
        }
        .fv-list-container {
            display: grid;
            grid-template-rows: auto auto;
            gap: 16px;
            padding: 0 1rem;
            position: absolute;
            top: 37%;
            right: inherit;
            bottom: inherit;
            left: inherit;
        }
        #fv-checklist {
            position: initial;
            li {
                &.first {
                    img {
                        width: 76%;
                    }
                }
                &.second {
                    img {
                        width: 96%;
                    }
                }
            }
        }
        #fv-pointlist {
            display: grid;
            grid-template-columns: auto auto auto;
            gap: 16px;
            justify-content: center;
            align-items: flex-end;
        }
    }
    #fv .lp02 {
        .fv-list-container {
            display: grid;
            grid-template-rows: auto auto;
            gap: 16px;
            padding: 0 1rem;
            position: absolute;
            top: 24%;
            right: inherit;
            bottom: inherit;
            left: inherit;
        }
        #fv-checklist {
            li {
                &.first {
                    img {
                        width: 76%;
                    }
                }
                &.second {
                    img {
                        width: 96%;
                    }
                }
            }
        }
    }
}


/* section:はじめに
================================*/
#introduction {
    padding: 0 0 60px;
    #fv-pointlist {
        display: flex;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
        align-items: center;
        width: 40%;
        margin: 0 auto 40px;
    }
    .merit-container {
        hgroup {
            margin: 0 auto 70px;
            font-weight: bold;
            .catch {
                margin: 0 auto;
                font-size: clamp(1.25rem, 0.963rem + 1.18vw, 2.375rem);
                color: #FF5900;
            }
            .merit-index {
                font-size: clamp(1.625rem, 1.402rem + 0.92vw, 2.5rem);
                line-height: 1.5;
            }
        }
    }
    .merit-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
        justify-content: center;
        align-items: stretch;
        padding-top: 0;
        margin-bottom: 5%;
        li {
            border: 4px solid #FF5900;
            border-radius: 13px;
            position: relative;
            &.first::after {
                background: url(../../asset/images/list-bg-image_no01.svg) bottom right / contain no-repeat;
            }
            &.second::after {
                background: url(../../asset/images/list-bg-image_no02.svg) bottom right / contain no-repeat;
            }
            &.third::after {
                background: url(../../asset/images/list-bg-image_no03.svg) bottom right / contain no-repeat;
            }
            &::after {
                content: "";
                display: block;
                width: 100%;
                height: 200px;
                position: absolute;
                right: 0;
                bottom: 0;
                z-index: -10;
            }
            .merit-list-content {
                display: grid;
                grid-template-rows: auto auto auto;
                gap: 16px;
                justify-content: center;
                align-items: stretch;
                justify-items: center;
                width: 100%;
                z-index: 10;
                .merit-catch {
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 130px;
                    padding: 2rem 0;
                    margin: 0 auto;
                    background: #FF5900;
                    border-radius: 8px 8px 0 0;
                    font-size: clamp(1.625rem, 1.593rem + 0.13vw, 1.75rem);
                    font-weight: bold;
                    color: #fff;
                    small {
                        font-size: clamp(1.125rem, 1.061rem + 0.26vw, 1.375rem);
                        &.small {
                            display: block;
                            font-size: clamp(1.125rem, 1.061rem + 0.26vw, 1.375rem);
                        }
                    }
                }
                .merit-cmnt {
                    padding: 0 1.5rem 2rem;
                    font-size: clamp(1rem, 0.936rem + 0.26vw, 1.25rem);
                    line-height: 1.8;
                    text-align: left;
                }
            }
        }
    }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    #introduction {
        #fv-pointlist {
            width: 50%;
            margin: 0 auto 5%;
        }
        .merit-container {
            hgroup {
                .catch {
                    font-size: clamp(1.375rem, 1.148rem + 1.14vw, 2rem);
                }
                .merit-index {
                    font-size: clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem);
                }
            }
        }
        .merit-list {
            display: grid;
            grid-template-columns: repeat(3,auto);
            gap: 40px;
            justify-content: center;
            align-items: stretch;
            max-width: 1000px;
            padding: 0 1rem;
            margin: 0 auto 10%;
            li {
                .merit-list-content {
                    .merit-catch {
                        font-size: 1.5rem;
                        small {
                            font-size: 1rem;
                            &.small {
                                font-size: 1rem;
                            }
                        }
                    }
                    .merit-image {
                        width: auto;
                        max-height: 80px;
                    }
                    .merit-cmnt {
                        padding: 0 1rem 2rem;
                        font-size: 1rem;
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 881px) and (max-width: 1024px) {
    #introduction {
        #fv-pointlist {
            gap: 16px;
            width: 50%;
            margin: 0 auto 5%;
        }
        .merit-container {
            hgroup {
                .index {
                    line-height: 1.5;
                }
            }
        }
        .merit-list {
            display: grid;
            grid-template-columns: repeat(3,auto);
            gap: 24px;
            justify-content: center;
            align-items: stretch;
            max-width: 800px;
            padding: 0 1rem;
            margin: 0 auto 10%;
            li {
                &.first::after,
                &.second::after,
                &.third::after {
                    width: 100%;
                    height: 160px;
                }
                .merit-list-content {
                    .merit-catch {
                        font-size: 1.25rem;
                        small {
                            display: block;
                            font-size: 1rem;
                            &.small {
                                font-size: .875rem;
                            }
                        }
                        br {
                            display: none;
                        }
                    }
                    .merit-image {
                        width: auto;
                        max-height: 70px;
                    }
                    .merit-cmnt {
                        padding: 0 .5rem 1rem;
                        font-size: 1rem;
                        .for-sp {
                            display: block;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 768px) and (max-width: 880px) {
    #introduction {
        #fv-pointlist {
            width: 60%;
            margin: 0 auto 5%;
        }
        .merit-container {
            hgroup {
                margin: 0 auto 5%;
                .index {
                    line-height: 1.5;
                }
            }
        }
        .merit-list {
            display: grid;
            grid-template-columns: none;
            grid-template-rows: repeat(3,auto);
            gap: 40px;
            justify-content: stretch;
            align-items: stretch;
            max-width: 70%;
            padding: 0;
            margin: 0 auto 10%;
            li {
                .merit-list-content {
                    gap: 16px;
                    z-index: 10;
                    .merit-catch {
                        height: auto;
                        font-size: 1.5rem;
                        small {
                            font-size: 1.25rem;
                            &.small {
                                font-size: 1rem;
                            }
                        }
                        br {
                            display: none;
                        }
                    }
                    .merit-image {
                        width: auto;
                        max-height: 100px;
                    }
                    .merit-cmnt {
                        padding: 0 1rem 2rem;
                        font-size: 1rem;
                        .for-sp {
                            display: block;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 561px) and (max-width: 767px) {
    #introduction {
        #fv-pointlist {
            width: 70%;
            margin: 0 auto 10%;
        }
        .merit-container {
            hgroup {
                margin: 0 auto 10%;
                .index {
                    line-height: 1.5;
                }
            }
        }
        .merit-list {
            display: grid;
            grid-template-columns: none;
            grid-template-rows: repeat(3,auto);
            gap: 40px;
            justify-content: center;
            align-items: stretch;
            max-width: 700px;
            padding: 0 1rem;
            margin: 0 auto 20%;
            li {
                height: auto;
                border: 4px solid #FF5900;
                border-radius: 13px;
                position: relative;
                &.first::after,
                &.second::after,
                &.third::after {
                    width: 100%;
                    height: 160px;
                }
                .merit-list-content {
                    .merit-catch {
                        height: auto;
                        font-size: 1.5rem;
                        small {
                            font-size: 1.25rem;
                            &.small {
                                font-size: 1rem;
                            }
                        }
                        br {
                            display: block;
                        }
                    }
                    .merit-image {
                        width: auto;
                        max-height: 100px;
                    }
                    .merit-cmnt {
                        padding: 0 1rem 2rem;
                        font-size: 1rem;
                        .for-sp {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 431px) and (max-width: 560px) {
    #introduction {
        #fv-pointlist {
            display: none;
        }
        .merit-container {
            hgroup {
                margin: 0 auto 10%;
                .index {
                    line-height: 1.5;
                }
            }
        }
        .merit-list {
            display: grid;
            grid-template-columns: none;
            grid-template-rows: repeat(3,auto);
            gap: 40px;
            justify-content: center;
            align-items: stretch;
            max-width: 700px;
            padding: 0 1rem;
            margin: 0 auto 20%;
            li {
                &.first::after,
                &.second::after,
                &.third::after {
                    width: 100%;
                    height: 160px;
                }
                .merit-list-content {
                    .merit-catch {
                        height: auto;
                        font-size: 1.5rem;
                        small {
                            font-size: 1.25rem;
                            &.small {
                                font-size: 1rem;
                            }
                        }
                        br {
                            display: block;
                        }
                    }
                    .merit-image {
                        width: auto;
                        max-height: 100px;
                    }
                    .merit-cmnt {
                        padding: 0 1rem 2rem;
                        font-size: 1rem;
                        .for-sp {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 321px) and (max-width: 430px) {
    #introduction {
        #fv-pointlist {
            display: none;
        }
        .merit-container {
            hgroup {
                margin: 0 auto 1.5rem;
                .index {
                    line-height: 1.5;
                }
            }
        }
        .merit-list {
            display: grid;
            grid-template-columns: none;
            grid-template-rows: repeat(3,auto);
            gap: 40px;
            justify-content: center;
            align-items: stretch;
            max-width: 700px;
            padding: 0 1rem;
            margin: 0 auto 20%;
            li {
                &.first::after,
                &.second::after,
                &.third::after {
                    width: 100%;
                    height: 200px;
                }
                .merit-list-content {
                    .merit-catch {
                        font-size: 1.75rem;
                        small {
                            font-size: 1.25rem;
                            &.small {
                                font-size: 1.25rem;
                            }
                        }
                        br {
                            display: block;
                        }
                    }
                    .merit-image {
                        width: auto;
                        max-height: 100px;
                    }
                    .merit-cmnt {
                        padding: 0 1rem 2rem;
                        font-size: 1rem;
                        .for-sp {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 320px) {
    #introduction {
        #fv-pointlist {
            display: none;
        }
        .merit-container {
            hgroup {
                margin: 0 auto 1.5rem;
                .index {
                    line-height: 1.5;
                }
            }
        }
        .merit-list {
            display: grid;
            grid-template-columns: none;
            grid-template-rows: repeat(3,auto);
            gap: 40px;
            justify-content: center;
            align-items: stretch;
            max-width: 700px;
            padding: 0 1rem;
            margin: 0 auto 20%;
            li {
                &.first::after,
                &.second::after,
                &.third::after {
                    width: 100%;
                    height: 200px;
                }
                .merit-list-content {
                    .merit-catch {
                        font-size: 1.5rem;
                        small {
                            font-size: 1rem;
                            &.small {
                                font-size: 1rem;
                            }
                        }
                        br {
                            display: block;
                        }
                    }
                    .merit-image {
                        width: auto;
                        max-height: 80px;
                    }
                    .merit-cmnt {
                        padding: 0 1rem 2rem;
                        font-size: 1rem;
                        .for-sp {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}


/* section:実績
================================*/
#incentiveEx {
    padding: 80px 0 40px;
    background: #FFEFE6
    url(../../asset/images/FFFFFF.svg) center top /contain no-repeat;
    .ex-list {
        li {
            display: grid;
            grid-template-rows: auto auto;
            gap: 24px;
            justify-content: center;
            align-items: center;
            justify-items: center;
            padding: 4rem 2rem;
            margin: 0 auto 40px;
            background: #fff;
            border-radius: 10px;
            .model-content {
                display: flex;
                flex-direction: row;
                gap: 16px;
                justify-content: center;
                align-items: center;
                .model-image {
                    width: 170px;
                }
                .model-cmnt {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    font-size: clamp(1.375rem, 1.311rem + 0.26vw, 1.625rem);
                    font-weight: bold;
                    line-height: 1.5;
                    text-align: left;
                    p {
                        font-size: clamp(1.125rem, 1.061rem + 0.26vw, 1.375rem);
                        &.catch {
                            font-size: clamp(1.375rem, 1.33rem + 0.23vw, 1.5rem);
                            .big {
                                font-size: clamp(2.375rem, 2.311rem + 0.26vw, 2.625rem);
                            }
                            .marker {
                                display: inline-block;
                                padding: 0 6px;
                            }
                        }
                    }
                }
                .model-icon {
                    width: 130px;
                }
            }
            .ex-step {
                display: grid;
                grid-template-columns: repeat(3, 260px);
                gap: 60px;
                align-items: stretch;
                li {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    justify-content: flex-start;
                    width: 260px;
                    padding: 1rem 10px;
                    margin: 0 auto;
                    border: 2px solid #231815;
                    border-radius: 10px;
                    position: relative;
                    &:nth-child(3) {
                        margin: 0 auto;
                        background: #FFF6BD;
                        border-color: #FF5900;
                    }
                    &::after {
                        content: "";
                        width: 46px;
                        height: 10px;
                        background: url(../../asset/images/incentive-ex_3teamsmodel-list-bar.svg) 0 0 /contain no-repeat;
                        position: absolute;
                        top: calc(50% - 5px);
                        right: -54px;
                    }
                    &:last-child&::after {
                        display: none;
                    }
                    .month {
                        padding: 0 1.5rem;
                        background: #FF5900;
                        border-radius: 100px;
                        font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
                        font-weight: bold;
                        line-height: 40px;
                        color: #fff;
                    }
                    .content {
                        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
                        font-weight: bold;
                        em {
                            font-size: clamp(2rem, 1.864rem + 0.68vw, 2.375rem);
                            color: #FF5900;
                        }
                        small {
                            font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
                        }
                        .caution {
                            margin-top: 16px;
                            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                            font-weight: normal;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 921px) and (max-width: 1024px) {
    #incentiveEx {
        .ex-list {
            li {
                display: grid;
                grid-template-rows: auto auto;
                gap: 24px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                padding: 4rem 3rem;
                margin: 0 auto 40px;
                background: #fff;
                border-radius: 10px;
                .model-content {
                    display: grid;
                    grid-template-columns: auto auto;
                    grid-template-rows: auto auto;
                    grid-template-areas: "areaA areaB" "areaC areaC";
                    gap: 16px;
                    justify-content: center;
                    align-items: center;
                    .model-image {
                        grid-area: areaA;
                    }
                    .model-icon {
                        grid-area: areaB;
                    }
                    .model-cmnt {
                        grid-area: areaC;
                        display: flex;
                        flex-direction: column;
                        gap: 16px;
                        font-size: clamp(1.5rem, 1.436rem + 0.26vw, 1.75rem);
                        text-align: center;
                        p {
                            font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
                            &.catch {
                                font-size: clamp(1.375rem, 1.279rem + 0.39vw, 1.75rem);
                                .big {
                                    font-size: clamp(2.375rem, 2.311rem + 0.26vw, 2.625rem);
                                }
                                .marker {
                                    display: inline-block;
                                    padding: 0 6px;
                                }
                            }
                        }
                    }
                }
                .ex-step {
                    display: grid;
                    grid-template-columns: none;
                    grid-template-rows: repeat(3, auto);
                    gap: 50px;
                    align-items: stretch;
                    li {
                        display: flex;
                        flex-direction: row;
                        gap: 16px;
                        width: 500px;
                        height: auto;
                        padding: 1rem 10px;
                        border: 2px solid #231815;
                        border-radius: 10px;
                        position: relative;
                        &::after {
                            content: "";
                            width: 46px;
                            height: 10px;
                            transform: rotate(90deg);
                            position: absolute;
                            top: inherit;
                            right: inherit;
                            bottom: -45px;
                            left: calc(50% - 23px);
                        }
                        &:last-child&::after {
                            display: none;
                        }
                        .month {
                            font-size: 1rem;
                        }
                        .content {
                            font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                            font-weight: bold;
                            em {
                                font-size: clamp(2rem, 1.681rem + 1.31vw, 3.25rem);
                                color: #FF5900;
                            }
                            small {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                            }
                            .caution {
                                margin-top: 4px;
                                font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                                font-weight: normal;
                            }
                            .for-pc {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 821px) and (max-width: 920px) {
    #incentiveEx {
        .ex-list {
            li {
                display: grid;
                grid-template-rows: auto auto;
                gap: 24px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                padding: 4rem 3rem;
                margin: 0 auto 40px;
                background: #fff;
                border-radius: 10px;
                .model-content {
                    display: grid;
                    grid-template-columns: auto auto;
                    grid-template-rows: auto auto;
                    grid-template-areas: "areaA areaB" "areaC areaC";
                    gap: 16px;
                    justify-content: center;
                    align-items: center;
                    .model-image {
                        grid-area: areaA;
                    }
                    .model-icon {
                        grid-area: areaB;
                    }
                    .model-cmnt {
                        grid-area: areaC;
                        display: flex;
                        flex-direction: column;
                        gap: 16px;
                        font-size: clamp(1.5rem, 1.436rem + 0.26vw, 1.75rem);
                        text-align: center;
                        p {
                            font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
                            &.catch {
                                font-size: clamp(1.375rem, 1.279rem + 0.39vw, 1.75rem);
                                .big {
                                    font-size: clamp(2.375rem, 2.311rem + 0.26vw, 2.625rem);
                                }
                                .marker {
                                    display: inline-block;
                                    padding: 0 6px;
                                }
                            }
                        }
                    }
                }
                .ex-step {
                    display: grid;
                    grid-template-columns: none;
                    grid-template-rows: repeat(3, auto);
                    gap: 50px;
                    align-items: stretch;
                    li {
                        display: flex;
                        flex-direction: row;
                        gap: 16px;
                        width: 500px;
                        height: auto;
                        padding: 1rem 10px;
                        border: 2px solid #231815;
                        border-radius: 10px;
                        position: relative;
                        &::after {
                            content: "";
                            width: 46px;
                            height: 10px;
                            transform: rotate(90deg);
                            position: absolute;
                            top: inherit;
                            right: inherit;
                            bottom: -45px;
                            left: calc(50% - 23px);
                        }
                        &:last-child&::after {
                            display: none;
                        }
                        .month {
                            width: 110px;
                            font-size: 1rem;
                        }
                        .content {
                            font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                            font-weight: bold;
                            em {
                                font-size: clamp(2rem, 1.681rem + 1.31vw, 3.25rem);
                                color: #FF5900;
                            }
                            small {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                            }
                            .caution {
                                margin-top: 4px;
                                font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                                font-weight: normal;
                            }
                            .for-pc {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 768px) and (max-width: 820px) {
    #incentiveEx {
        .ex-list {
            max-width: 75%;
            margin: 0 auto;
            padding: 0;
            li {
                display: grid;
                grid-template-rows: auto auto;
                gap: 24px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                padding: 4rem 3rem;
                margin: 0 auto 40px;
                background: #fff;
                border-radius: 10px;
                .model-content {
                    display: grid;
                    grid-template-columns: auto auto;
                    grid-template-rows: auto auto;
                    grid-template-areas: "areaA areaB" "areaC areaC";
                    gap: 16px;
                    justify-content: center;
                    align-items: center;
                    justify-items: center;
                    .model-image {
                        grid-area: areaA;
                        width: 150px;
                    }
                    .model-icon {
                        grid-area: areaB;
                    }
                    .model-cmnt {
                        grid-area: areaC;
                        display: flex;
                        flex-direction: column;
                        gap: 16px;
                        font-size: clamp(1.5rem, 1.436rem + 0.26vw, 1.75rem);
                        text-align: center;
                        p {
                            font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
                            &.catch {
                                font-size: clamp(1.375rem, 1.279rem + 0.39vw, 1.75rem);
                                .big {
                                    font-size: clamp(2.375rem, 2.311rem + 0.26vw, 2.625rem);
                                }
                                .marker {
                                    display: inline-block;
                                    padding: 0 6px;
                                }
                            }
                            .for-sp {
                                display: block;
                            }
                        }
                    }
                }
                .ex-step {
                    display: grid;
                    grid-template-columns: none;
                    grid-template-rows: repeat(3, auto);
                    gap: 50px;
                    align-items: stretch;
                    li {
                        display: flex;
                        flex-direction: row;
                        gap: 16px;
                        width: 420px;
                        height: auto;
                        padding: 1rem 10px;
                        border: 2px solid #231815;
                        border-radius: 10px;
                        position: relative;
                        &::after {
                            content: "";
                            width: 46px;
                            height: 10px;
                            transform: rotate(90deg);
                            position: absolute;
                            top: inherit;
                            right: inherit;
                            bottom: -45px;
                            left: calc(50% - 23px);
                        }
                        &:last-child&::after {
                            display: none;
                        }
                        .month {
                            font-size: 1rem;
                        }
                        .content {
                            font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                            font-weight: bold;
                            em {
                                font-size: clamp(2rem, 1.681rem + 1.31vw, 3.25rem);
                            }
                            small {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                            }
                            .caution {
                                margin-top: 4px;
                                font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                            }
                            .for-pc {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
    #incentiveEx {
        .ex-list {
            li {
                display: grid;
                grid-template-rows: auto auto;
                gap: 24px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                padding: 2rem 1rem;
                margin: 0 auto 40px;
                background: #fff;
                border-radius: 10px;
                .model-content {
                    display: grid;
                    grid-template-columns: auto auto;
                    grid-template-rows: auto auto;
                    grid-template-areas: "areaA areaB" "areaC areaC";
                    gap: 16px;
                    justify-content: center;
                    align-items: center;
                    .model-image {
                        grid-area: areaA;
                        width: 150px;
                    }
                    .model-icon {
                        grid-area: areaB;
                    }
                    .model-cmnt {
                        grid-area: areaC;
                        display: flex;
                        flex-direction: column;
                        gap: 16px;
                        font-size: clamp(1.5rem, 1.436rem + 0.26vw, 1.75rem);
                        text-align: center;
                        p {
                            font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
                            &.catch {
                                font-size: clamp(1.375rem, 1.279rem + 0.39vw, 1.75rem);
                                .big {
                                    font-size: clamp(2.375rem, 2.311rem + 0.26vw, 2.625rem);
                                }
                                .marker {
                                    display: inline-block;
                                    padding: 0 6px;
                                }
                            }
                        }
                    }
                }
                .ex-step {
                    display: grid;
                    grid-template-columns: none;
                    grid-template-rows: repeat(3, auto);
                    gap: 40px;
                    align-items: stretch;
                    li {
                        display: flex;
                        flex-direction: row;
                        gap: 16px;
                        width: 100%;
                        height: auto;
                        padding: 1rem 10px;
                        border: 2px solid #231815;
                        border-radius: 10px;
                        position: relative;
                        &::after {
                            content: "";
                            width: 36px;
                            height: 6px;
                            transform: rotate(90deg);
                            position: absolute;
                            top: inherit;
                            right: inherit;
                            bottom: -30px;
                            left: calc(50% - 13px);
                        }
                        &:last-child&::after {
                            display: none;
                        }
                        .month {
                            padding: 0 16px;
                            font-size: 1rem;
                            line-height: 1.5;
                        }
                        .content {
                            font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                            font-weight: bold;
                            em {
                                font-size: clamp(2rem, 1.681rem + 1.31vw, 3.25rem);
                            }
                            small {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                            }
                            .caution {
                                margin-top: 4px;
                                font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                                font-weight: normal;
                            }
                            .for-pc {
                                display: none;
                            }
                        }
                    }
                }
                &.ten-model .content {
                    .for-pc {
                        display: block;
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 391px) and (max-width: 414px) {
    #incentiveEx {
        .ex-list {
            li {
                display: grid;
                grid-template-rows: auto auto;
                gap: 24px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                padding: 2rem 1rem;
                margin: 0 auto 40px;
                background: #fff;
                border-radius: 10px;
                .model-content {
                    display: grid;
                    grid-template-columns: auto auto;
                    grid-template-rows: auto auto;
                    grid-template-areas: "areaA areaB" "areaC areaC";
                    gap: 16px;
                    justify-content: center;
                    align-items: center;
                    .model-image {
                        grid-area: areaA;
                        width: 150px;
                    }
                    .model-icon {
                        grid-area: areaB;
                    }
                    .model-cmnt {
                        grid-area: areaC;
                        display: flex;
                        flex-direction: column;
                        gap: 16px;
                        font-size: clamp(1.5rem, 1.436rem + 0.26vw, 1.75rem);
                        text-align: center;
                        p {
                            font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
                            &.catch {
                                font-size: clamp(1.375rem, 1.279rem + 0.39vw, 1.75rem);
                                .big {
                                    font-size: clamp(2.375rem, 2.311rem + 0.26vw, 2.625rem);
                                }
                                .marker {
                                    display: inline-block;
                                    padding: 0 6px;
                                }
                            }
                        }
                    }
                }
                .ex-step {
                    display: grid;
                    grid-template-columns: none;
                    grid-template-rows: repeat(3, auto);
                    gap: 40px;
                    align-items: stretch;
                    li {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                        width: 340px;
                        height: auto;
                        padding: 1rem 10px;
                        border: 2px solid #231815;
                        border-radius: 10px;
                        position: relative;
                        &::after {
                            content: "";
                            width: 36px;
                            height: 6px;
                            transform: rotate(90deg);
                            position: absolute;
                            top: inherit;
                            right: inherit;
                            bottom: -30px;
                            left: calc(50% - 13px);
                        }
                        &:last-child&::after {
                            display: none;
                        }
                        .month {
                            padding: 0 16px;
                            font-size: 1rem;
                            line-height: 1.5;
                        }
                        .content {
                            font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                            font-weight: bold;
                            em {
                                font-size: clamp(2rem, 1.681rem + 1.31vw, 3.25rem);
                            }
                            small {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                            }
                            .caution {
                                margin-top: 4px;
                                font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                                font-weight: normal;
                            }
                            .for-pc {
                                display: none;
                            }
                        }
                    }
                }
                &.ten-model .content {
                    .for-pc {
                        display: block;
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 321px) and (max-width: 390px) {
    #incentiveEx {
        .ex-list {
            li {
                display: grid;
                grid-template-rows: auto auto;
                gap: 24px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                padding: 2rem 1rem;
                margin: 0 auto 40px;
                background: #fff;
                border-radius: 10px;
                .model-content {
                    display: grid;
                    grid-template-columns: auto auto;
                    grid-template-rows: auto auto;
                    grid-template-areas: "areaA areaB" "areaC areaC";
                    gap: 8px;
                    justify-content: center;
                    align-items: center;
                    .model-image {
                        grid-area: areaA;
                        width: 150px;
                    }
                    .model-icon {
                        grid-area: areaB;
                    }
                    .model-cmnt {
                        grid-area: areaC;
                        display: flex;
                        flex-direction: column;
                        gap: 16px;
                        font-size: clamp(1.5rem, 1.436rem + 0.26vw, 1.75rem);
                        text-align: center;
                        p {
                            font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
                            &.catch {
                                font-size: clamp(1.375rem, 1.279rem + 0.39vw, 1.75rem);
                                .big {
                                    font-size: clamp(2.375rem, 2.311rem + 0.26vw, 2.625rem);
                                }
                                .marker {
                                    display: inline-block;
                                    padding: 0 6px;
                                }
                            }
                        }
                    }
                }
                .ex-step {
                    display: grid;
                    grid-template-columns: none;
                    grid-template-rows: repeat(3, auto);
                    gap: 40px;
                    align-items: stretch;
                    li {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                        width: 300px;
                        height: auto;
                        padding: 1rem 10px;
                        border: 2px solid #231815;
                        border-radius: 10px;
                        position: relative;
                        &::after {
                            content: "";
                            width: 36px;
                            height: 5px;
                            transform: rotate(90deg);
                            position: absolute;
                            top: inherit;
                            right: inherit;
                            bottom: -32px;
                            left: calc(50% - 13px);
                        }
                        &:last-child&::after {
                            display: none;
                        }
                        .month {
                            width: 110px;
                            font-size: 1rem;
                            line-height: 1.5;
                        }
                        .content {
                            font-size: 1rem;
                            em {
                                font-size: 1.75rem;
                            }
                            small {
                                font-size: .875rem;
                            }
                            .caution {
                                margin-top: 4px;
                                font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                                font-weight: normal;
                            }
                            .for-pc {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 320px) {
    #incentiveEx {
        .ex-list {
            li {
                display: grid;
                grid-template-rows: auto auto;
                gap: 24px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                padding: 2rem 1rem;
                margin: 0 auto 40px;
                background: #fff;
                border-radius: 10px;
                .model-content {
                    display: grid;
                    grid-template-columns: auto auto;
                    grid-template-rows: auto auto;
                    grid-template-areas: "areaA areaB" "areaC areaC";
                    gap: 8px;
                    justify-content: center;
                    align-items: center;
                    .model-image {
                        grid-area: areaA;
                        width: 120px;
                    }
                    .model-icon {
                        grid-area: areaB;
                        width: 100px;
                    }
                    .model-cmnt {
                        grid-area: areaC;
                        display: flex;
                        flex-direction: column;
                        gap: 16px;
                        font-size: clamp(1.5rem, 1.436rem + 0.26vw, 1.75rem);
                        text-align: center;
                        p {
                            font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
                            &.catch {
                                font-size: clamp(1.375rem, 1.279rem + 0.39vw, 1.75rem);
                                .big {
                                    font-size: clamp(2.375rem, 2.311rem + 0.26vw, 2.625rem);
                                }
                                .marker {
                                    display: inline-block;
                                    padding: 0 6px;
                                }
                            }
                        }
                    }
                }
                .ex-step {
                    display: grid;
                    grid-template-columns: none;
                    grid-template-rows: repeat(3, auto);
                    gap: 40px;
                    align-items: stretch;
                    li {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                        width: 260px;
                        height: auto;
                        padding: 1rem 10px;
                        border: 2px solid #231815;
                        border-radius: 10px;
                        position: relative;
                        &::after {
                            content: "";
                            width: 36px;
                            height: 5px;
                            transform: rotate(90deg);
                            position: absolute;
                            top: inherit;
                            right: inherit;
                            bottom: -32px;
                            left: calc(50% - 13px);
                        }
                        &:last-child&::after {
                            display: none;
                        }
                        .month {
                            padding: 0 16px;
                            font-size: 1rem;
                            line-height: 1.5;
                        }
                        .content {
                            font-size: 1.125rem;
                            font-weight: bold;
                            em {
                                font-size: 1.625rem;
                                color: #FF5900;
                            }
                            small {
                                font-size: .813rem;
                            }
                            .caution {
                                font-size: .813rem;
                                font-weight: normal;
                            }
                            .for-pc {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}


/* section:お悩み
================================*/
#solution {
    padding: 120px 0 0;
    background: #fff
    url(../../asset/images/FFEFE6.svg) center top /contain no-repeat;
    .index-worries {
        display: flex;
        flex-direction: row;
        gap: 24px;
        justify-content: center;
        align-items: center;
        font-size: clamp(1.125rem, 0.806rem + 1.31vw, 2.375rem);
        font-weight: bold;
        color: #16508A;
        em {
            font-size: clamp(1.75rem, 1.431rem + 1.31vw, 3rem);
            color: #231815;
        }
        &::before {
            content: "((";
            display: block;
            width: clamp(1.75rem, 1.431rem + 1.31vw, 3rem);
        }
        &::after {
            content: "))";
            display: block;
            width: clamp(1.75rem, 1.431rem + 1.31vw, 3rem);
        }
    }
    .worries-content {
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        align-items: center;
        padding-bottom: 40px;
        margin: 0 auto 80px;
        position: relative;
        .worries-list {
            li {
                display: flex;
                flex-direction: row;
                gap: 0;
                justify-content: start;
                align-items: center;
                justify-items: flex-start;
                margin-bottom: 16px;
                font-size: clamp(1.125rem, 0.902rem + 0.92vw, 2rem);
                font-weight: bold;
                text-align: left;
                &:last-child {
                    margin-bottom: 0;
                }
                .icon-check {
                    width: 56px;
                    height: 41px;
                    background: url(../../asset/images/worries_check.svg) 0 0/contain no-repeat;
                }
                em {
                    font-size: clamp(1.75rem, 1.686rem + 0.26vw, 2rem);
                    color: #16508A;
                }
            }
        }
        &::after {
            content: "";
            display: block;
            width: 200px;
            height: 78px;
            aspect-ratio: 200 / 78;
            background: url(../../asset/images/worries_arrow.svg) 0 0/contain no-repeat;
            position: absolute;
            bottom: -2rem;
            left: calc(50% - 100px);
        }
    }
    .index-solution {
        display: flex;
        flex-direction: row;
        gap: 24px;
        justify-content: center;
        align-items: center;
        margin: 0 auto 24px;
        font-weight: bold;
        text-align: left;
        h3 {
            font-size: clamp(1.75rem, 1.686rem + 0.26vw, 2rem);
            line-height: 1.5;
        }
        img {
            width: 120px;
        }
    }
    .solution-container {
        margin: 0 auto 100px;
        .solution-list {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: stretch;
            li {
                padding: 2rem 1rem;
                border: 3px solid #231815;
                border-radius: 10px;
                position: relative;
                &.first,
                &.second {
                    max-width: 480px;
                }
                &.third,
                &.fourth,
                &.fifth {
                    max-width: 300px;
                }
                &::before {
                    content: "";
                    width: 100%;
                    height: 150px;
                    background: #FF5900;
                    border-radius: 6px 6px 0 0;
                    clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
                    position: absolute;
                    top: 0;
                    right: 0;
                    z-index: 0;
                }
                &::after {
                    content: "";
                    height: 200px;
                    right: 1rem;
                    bottom: 0;
                }
                &.first::after {
                    width: 100%;
                    background: url(../../asset/images/1.svg) bottom right 1rem /contain no-repeat;
                    position: absolute;
                }
                &.second::after {
                    width: 100%;
                    background: url(../../asset/images/2.svg) bottom right 1rem /contain no-repeat;
                    position: absolute;
                }
                &.third::after {
                    width: 100%;
                    background: url(../../asset/images/3.svg) bottom right 1rem /contain no-repeat;
                    position: absolute;
                }
                &.fourth::after {
                    width: 100%;
                    background: url(../../asset/images/4.svg) bottom right 1rem /contain no-repeat;
                    position: absolute;
                }
                &.fifth::after {
                    width: 100%;
                    background: url(../../asset/images/5.svg) bottom right 1rem /contain no-repeat;
                    position: absolute;
                }
                dl {
                    display: grid;
                    grid-template-rows: auto auto;
                    gap: 32px;
                    position: inherit;
                    z-index: 10;
                    dt {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        height: 53px;
                        font-size: 1rem;
                        font-weight: bold;
                        text-align: center;
                        color: #fff;
                        em {
                            font-size: 1.75rem;
                        }
                        .big {
                            padding: 0 2px;
                            font-size: 2.5rem;
                        }
                    }
                    dd {
                        .solution-image {
                            width: auto;
                            height: 110px;
                            margin: 0 auto 32px;
                        }
                        .solution-cmnt {
                            padding: 0 1rem;
                            font-size: 1rem;
                            line-height: 1.5;
                            text-align: left;
                            em {
                                font-size: 1.125rem;
                            }
                        }
                    }
                }
                
                &.third dl dd .solution-cmnt,
                &.fourth dl dd .solution-cmnt,
                &.fifth dl dd .solution-cmnt {
                    padding: 0 .5rem;
                }
            }
        }
    }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    #solution {
        padding: 120px 0;
        .index-worries {
            display: flex;
            flex-direction: row;
            gap: 24px;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            color: #16508A;
        }
        .worries-content {
            display: flex;
            flex-direction: row;
            gap: 16px;
            justify-content: center;
            align-items: center;
            padding: 0 0 60px;
            margin: 0 auto 80px;
            position: relative;
            .worries-list {
                li {
                    .icon-check {
                        width: 39px;       
                        height: 31px;
                        aspect-ratio: 67 / 52;
                    }
                }
            }
            &::after {
                width: 160px;
                height: 48px;
                aspect-ratio: 200 / 78;
                position: absolute;
                bottom: -2rem;
                left: calc(50% - 100px);
            }
        }
        .solution-container {
        margin: 0 auto 80px;
            .solution-list {
                li {
                    &.first,
                    &.second {
                        max-width: 460px;
                    }
                    &.third,
                    &.fourth,
                    &.fifth {
                        max-width: 290px;
                    }
                    &::before {
                        content: "";
                        width: 100%;
                        height: 130px;
                    }
                    &::after {
                        content: "";
                        height: 200px;
                        right: 1rem;
                        bottom: 0;
                    }
                    &.first::after,
                    &.second::after,
                    &.third::after,
                    &.fourth::after,
                    &.fifth::after {
                        width: 100%;
                    }
                    dl {
                        dd {
                            .solution-image {
                                height: 100px;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    #solution {
        padding: 120px 0 60px;
        .index {
            font-size: clamp(1.125rem, 0.647rem + 1.96vw, 3rem);
            em {
                font-size: clamp(1.75rem, 1.272rem + 1.96vw, 3.625rem);
            }
            .marker {
                display: inline-block;
            }
        }
        .worries-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            img {
                max-width: 280px;
            }
            .worries-list {
                li {
                    display: flex;
                    flex-direction: row;
                    gap: 0;
                    justify-content: start;
                    align-items: center;
                    justify-items: flex-start;
                    margin-bottom: 16px;
                    font-size: clamp(1.25rem, 0.9rem + 1.44vw, 2.625rem);
                    &:last-child {
                        margin-bottom: 0;
                    }
                    .icon-check {
                        width: 46px;
                        height: 31px;
                        background: url(../../asset/images/worries_check.svg) 0 0/contain no-repeat;
                    }
                    em {
                        font-size: clamp(1.375rem, 0.897rem + 1.96vw, 3.25rem);
                        color: #16508A;
                    }
                }
            }
            &::after {
                width: 100px;
                height: auto;
                aspect-ratio: 200 / 78;
                position: absolute;
                bottom: -3.5rem;
                left: calc(50% - 50px);
            }
        }
        .index-solution {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-align: center;
            img {
                max-width: 100px;
            }
            h3 {
                font-size: clamp(1.75rem, 1.431rem + 1.31vw, 3rem);
                line-height: 1.5;
            }
        }
        .solution-container {
            max-width: 75%;
            margin: 0 auto 80px;
            .solution-list {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                gap: 40px;
                justify-content: center;
                align-items: center;
                align-items: stretch;
                max-width: 100%;
                padding: 0;
                margin: 0 auto;
                li {
                    padding: 2rem 1rem;
                    &.first,
                    &.second {
                        max-width: inherit;
                    }
                    &.third,
                    &.fourth,
                    &.fifth {
                        max-width: inherit;
                    }
                    &::before {
                        height: 130px;
                    }
                    &::after {
                        height: 180px;
                        right: 1rem;
                        bottom: 0;
                    }
                    &.first::after {
                        width: 100px;
                    }
                    &.second::after {
                        width: 160px;
                    }
                    &.third::after {
                        width: 156px;
                    }
                    &.fourth::after {
                        width: 166px;
                    }
                    &.fifth::after {
                        width: 158px;
                    }
                    dl {
                        position: inherit;
                        z-index: 10;
                        dt {
                            font-size: clamp(1.375rem, 1.216rem + 0.65vw, 2rem);
                            font-weight: bold;
                            
                            em {
                                font-size: clamp(1.75rem, 1.527rem + 0.92vw, 2.625rem);
                            }
                        }
                        dd {
                            .solution-cmnt {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                                line-height: 1.5;
                                text-align: left;
                                em {
                                    font-size: clamp(1.25rem, 1.154rem + 0.39vw, 1.625rem);
                                }
                            }
                        }
                    }
                }
            }
        }
    }    
}
@media screen and (min-width: 414px) and (max-width: 767px) {
    #solution {
        padding: 120px 0 60px;
        .index {
            font-size: clamp(1.125rem, 0.647rem + 1.96vw, 3rem);
            em {
                font-size: clamp(1.75rem, 1.272rem + 1.96vw, 3.625rem);
            }
            .marker {
                display: inline-block;
            }
        }
        .worries-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            img {
                max-width: 280px;
            }
            .worries-list {
                li {
                    display: flex;
                    flex-direction: row;
                    gap: 0;
                    justify-content: start;
                    align-items: center;
                    justify-items: flex-start;
                    margin-bottom: 16px;
                    font-size: clamp(1.25rem, 0.9rem + 1.44vw, 2.625rem);
                    &:last-child {
                        margin-bottom: 0;
                    }
                    .icon-check {
                        width: 46px;
                        height: 31px;
                        background: url(../../asset/images/worries_check.svg) 0 0/contain no-repeat;
                    }
                    em {
                        font-size: clamp(1.375rem, 0.897rem + 1.96vw, 3.25rem);
                        color: #16508A;
                    }
                }
            }
            &::after {
                width: 100px;
                height: auto;
                aspect-ratio: 200 / 78;
                position: absolute;
                bottom: -3.5rem;
                left: calc(50% - 50px);
            }
        }
        .index-solution {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-align: center;
            img {
                max-width: 100px;
            }
            h3 {
                font-size: clamp(1.75rem, 1.431rem + 1.31vw, 3rem);
                line-height: 1.5;
            }
        }
        .solution-container {
            margin: 0 auto 60px;
            .solution-list {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                gap: 40px;
                max-width: 500px;
                padding: 0 1rem;
                margin: 0 auto;
                li {
                    padding: 2rem 1rem;
                    &.first,
                    &.second {
                        max-width: inherit;
                    }
                    &.third,
                    &.fourth,
                    &.fifth {
                        max-width: inherit;
                    }
                    &::before {
                        height: 130px;
                    }
                    &::after {
                        height: 180px;
                        right: 1rem;
                        bottom: 0;
                    }
                    &.first::after {
                        width: 100px;
                    }
                    &.second::after {
                        width: 160px;
                    }
                    &.third::after {
                        width: 156px;
                    }
                    &.fourth::after {
                        width: 166px;
                    }
                    &.fifth::after {
                        width: 158px;
                    }
                    dl {
                        position: inherit;
                        z-index: 10;
                        dt {
                            font-size: 1.25rem;
                            font-weight: bold;                            
                            em {
                                font-size: 1.75rem;
                            }
                        }
                        dd {
                            .solution-cmnt {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                                line-height: 1.5;
                                text-align: left;
                                em {
                                    font-size: clamp(1.25rem, 1.154rem + 0.39vw, 1.625rem);
                                }
                            }
                            .solution-image {
                                height: 100px;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 391px) and (max-width: 413px) {
    #solution {
        padding: 120px 0 60px;
        .index {
            font-size: clamp(1.125rem, 0.647rem + 1.96vw, 3rem);
            em {
                font-size: clamp(1.75rem, 1.272rem + 1.96vw, 3.625rem);
            }
            .marker {
                display: inline-block;
            }
        }
        .worries-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            img {
                max-width: 280px;
            }
            .worries-list {
                li {
                    display: flex;
                    flex-direction: row;
                    gap: 0;
                    justify-content: start;
                    align-items: center;
                    justify-items: flex-start;
                    margin-bottom: 16px;
                    font-size: clamp(1.25rem, 0.9rem + 1.44vw, 2.625rem);
                    &:last-child {
                        margin-bottom: 0;
                    }
                    .icon-check {
                        width: 46px;
                        height: 31px;
                        background: url(../../asset/images/worries_check.svg) 0 0/contain no-repeat;
                    }
                    em {
                        font-size: clamp(1.375rem, 0.897rem + 1.96vw, 3.25rem);
                        color: #16508A;
                    }
                }
            }
            &::after {
                width: 100px;
                height: auto;
                aspect-ratio: 200 / 78;
                position: absolute;
                bottom: -3.5rem;
                left: calc(50% - 50px);
            }
        }
        .index-solution {
            gap: 24px;
            img {
                max-width: 100px;
            }
            h3 {
                font-size: clamp(1.75rem, 1.431rem + 1.31vw, 3rem);
                line-height: 1.5;
            }
        }
        .solution-container {
            margin: 0 auto 60px;
            .solution-list {
                gap: 40px;
                max-width: 500px;
                padding: 0 1rem;
                margin: 0 auto;
                li {
                    padding: 2rem 1rem;
                    dl {
                        position: inherit;
                        z-index: 10;
                        dt {
                            font-size: clamp(1.375rem, 1.216rem + 0.65vw, 2rem);
                            em {
                                font-size: clamp(1.75rem, 1.527rem + 0.92vw, 2.625rem);
                            }
                        }
                        dd {
                            .solution-cmnt {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                                em {
                                    font-size: clamp(1.25rem, 1.154rem + 0.39vw, 1.625rem);
                                }
                            }
                            .solution-image {
                                height: 100px;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 321px) and (max-width: 390px) {
    #solution {
        padding: 120px 0 60px;
        .index {
            font-size: clamp(1.125rem, 0.647rem + 1.96vw, 3rem);
            em {
                font-size: clamp(1.75rem, 1.272rem + 1.96vw, 3.625rem);
            }
            .marker {
                display: inline-block;
            }
        }
        .worries-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            img {
                max-width: 280px;
            }
            .worries-list {
                li {
                    display: flex;
                    flex-direction: row;
                    gap: 0;
                    justify-content: start;
                    align-items: center;
                    justify-items: flex-start;
                    margin-bottom: 16px;
                    font-size: clamp(1.25rem, 0.9rem + 1.44vw, 2.625rem);
                    &:last-child {
                        margin-bottom: 0;
                    }
                    .icon-check {
                        width: 46px;
                        height: 31px;
                        background: url(../../asset/images/worries_check.svg) 0 0/contain no-repeat;
                    }
                    em {
                        font-size: clamp(1.375rem, 0.897rem + 1.96vw, 3.25rem);
                        color: #16508A;
                    }
                }
            }
            &::after {
                width: 100px;
                height: auto;
                aspect-ratio: 200 / 78;
                position: absolute;
                bottom: -3.5rem;
                left: calc(50% - 50px);
            }
        }
        .index-solution {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-align: center;
            img {
                max-width: 100px;
            }
            h3 {
                font-size: 1.625rem;
                line-height: 1.5;
            }
        }
        .solution-container {
            margin: 0 auto 60px;
            .solution-list {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                gap: 40px;
                max-width: 500px;
                padding: 0 1rem;
                margin: 0 auto;
                li {
                    padding: 2rem 1rem 1rem;
                    &.first,
                    &.second {
                        max-width: inherit;
                    }
                    &.third,
                    &.fourth,
                    &.fifth {
                        max-width: inherit;
                    }
                    &::before {
                        height: 130px;
                    }
                    &::after {
                        height: 180px;
                        right: 1rem;
                        bottom: 0;
                    }
                    &.first::after {
                        width: 100px;
                    }
                    &.second::after {
                        width: 160px;
                    }
                    &.third::after {
                        width: 156px;
                    }
                    &.fourth::after {
                        width: 166px;
                    }
                    &.fifth::after {
                        width: 158px;
                    }
                    dl {
                        position: inherit;
                        z-index: 10;
                        dt {
                            font-size: 1.25rem;
                            line-height: 1.5;
                            font-weight: bold;                            
                            em {
                                font-size: clamp(1.75rem, 1.527rem + 0.92vw, 2.625rem);
                            }
                        }
                        dd {
                            .solution-cmnt {
                                font-size: 1rem;
                                line-height: 1.5;
                                text-align: left;
                                em {
                                    font-size: 1.125rem;
                                }
                            }
                            .solution-image {
                                height: 100px;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 320px) {
    #solution {
        padding: 120px 0 60px;
        .index {
            font-size: clamp(1.125rem, 0.647rem + 1.96vw, 3rem);
            em {
                font-size: clamp(1.75rem, 1.272rem + 1.96vw, 3.625rem);
            }
            .marker {
                display: inline-block;
            }
        }
        .worries-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            img {
                max-width: 280px;
            }
            .worries-list {
                li {
                    display: flex;
                    flex-direction: row;
                    gap: 0;
                    justify-content: start;
                    align-items: center;
                    justify-items: flex-start;
                    margin-bottom: 16px;
                    font-size: clamp(1.25rem, 0.9rem + 1.44vw, 2.625rem);
                    &:last-child {
                        margin-bottom: 0;
                    }
                    .icon-check {
                        width: 46px;
                        height: 31px;
                        background: url(../../asset/images/worries_check.svg) 0 0/contain no-repeat;
                    }
                    em {
                        font-size: clamp(1.375rem, 0.897rem + 1.96vw, 3.25rem);
                        color: #16508A;
                    }
                }
            }
            &::after {
                width: 100px;
                height: auto;
                aspect-ratio: 200 / 78;
                position: absolute;
                bottom: -3.5rem;
                left: calc(50% - 50px);
            }
        }
        .index-solution {
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-align: center;
            img {
                max-width: 100px;
            }
            h3 {
                font-size: 1.375rem;
                line-height: 1.5;
            }
        }
        .solution-container {
            margin: 0 auto 60px;
            .solution-list {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                gap: 40px;
                padding: 0 1rem;
                li {
                    padding: 2rem 1rem;
                    &.first,
                    &.second {
                        max-width: inherit;
                    }
                    &.third,
                    &.fourth,
                    &.fifth {
                        max-width: inherit;
                    }
                    &::before {
                        height: 130px;
                    }
                    &::after {
                        height: 180px;
                        right: 1rem;
                        bottom: 0;
                    }
                    &.first::after {
                        width: 100px;
                    }
                    &.second::after {
                        width: 160px;
                    }
                    &.third::after {
                        width: 156px;
                    }
                    &.fourth::after {
                        width: 166px;
                    }
                    &.fifth::after {
                        width: 158px;
                    }
                    dl {
                        position: inherit;
                        z-index: 10;
                        dt {
                            font-size: 1rem;
                            font-weight: bold;                        
                            em {
                                font-size: 1.5rem;
                            }
                        }
                        dd {
                            .solution-cmnt {
                                font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                                line-height: 1.5;
                                text-align: left;
                                em {
                                    font-size: 1.125rem;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


/* section:ビジネスモデル
================================*/
#businessModel {
    padding: 80px 0 0;
    background: #FFEFE6
    url(../../asset/images/FFFFFF.svg) center top /contain no-repeat;
    .point-list-container {
        margin: 0 auto 8%;
        .index {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: end;
            gap: 0;
            margin: 0 auto 2%;
            font-size: clamp(1.5rem, 1.277rem + 0.92vw, 2.375rem);
            font-weight: bold;
            color: #FF5900;
            small {
                display: inline;
                color: #231815;
            }
            .dot {
                background-image: radial-gradient(circle at center, #FF5900 20%, transparent 20%);
            }
        }
        .point-list {
            display: flex;
            flex-direction: row;
            gap: 40px;
            max-width: 680px;
            margin: 0 auto;
        }
    }
    .hikaku-container {
        margin: 0 auto 10%;
        .index {
            display: grid;
            grid-template-columns: auto auto;
            gap: 4px;
            justify-content: center;
            align-items: center;
            margin: 0 auto 4%;
            font-size: clamp(1.5rem, 1.277rem + 0.92vw, 2.375rem);
            span {
                display: flex;
                flex-direction: row;
                gap: 8px;
            }
        }
        .hikaku-image-container {
            margin: 0 auto;
        }
    }
    .merchandise-container {
        .index {
            justify-content: center;
            align-items: center;
            justify-items: center;
            font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
            .second {
                font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
            }
        }
        .merchandise-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            grid-template-areas: "areaA areaA" "areaB areaC";
            gap: 40px;
            li {
                .merchandise-list-content {
                    dt {
                        height: 40px;
                        padding: 0 2rem;
                        margin-bottom: 40px;
                        font-size: clamp(1.375rem, 1.33rem + 0.23vw, 1.5rem);
                        font-weight: bold;
                        line-height: 40px;
                        text-align: left;
                        color: #fff;
                    }
                    dd {
                        ul {
                            display: flex;
                            flex-direction: row;
                            flex-wrap: wrap;
                            gap: 24px;
                            justify-content: center;
                            align-items: center;
                            img {
                                width: auto;
                                height: 70px;
                            }
                        }
                    }
                }                
                &.denki {
                    grid-area: areaA;
                    .merchandise-list-content dt {
                        background: #FF5900
                        url(../../asset/images/business-model_merchandise-list-denki_bg.webp) center top /cover no-repeat;
                    }
                }
                &.water {
                    grid-area: areaB;
                    .merchandise-list-content dt {
                        background: #FF5900
                        url(../../asset/images/business-model_merchandise-list-water_bg.webp) center top /cover no-repeat;
                    }
                    .merchandise-list-content dd {
                        ul {
                            display: flex;
                            flex-direction: row;
                            flex-wrap: nowrap;
                            gap: 24px;
                            justify-content: center;
                            align-items: center;
                            img {
                                width: auto;
                                height: auto;
                            }
                        }
                    }
                }
                &.internet {
                    grid-area: areaC;
                    .merchandise-list-content dt {
                        background: #FF5900
                        url(../../asset/images/business-model_merchandise-list-internet_bg.webp) center top /cover no-repeat;
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 768px) {
    #businessModel {
        padding: 120px 0 60px;
        .point-list-container {
            margin: 0 auto 2rem;
            .index {
                gap: 4px;
                font-size: 1.75rem;
                small {
                    display: inline;
                    font-size: 1.625rem;
                }
            }
            .point-list {
                display: flex;
                flex-direction: row;
                gap: 40px;
                max-width: 60%;
                margin: 0 auto 40px;
            }
        }
        .hikaku-container {
            margin: 0 auto 32px;
            .index {
                display: grid;
                grid-template-columns: auto auto;
                grid-template-rows: none;
                gap: 4px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                font-size: 1.75rem;
                text-align: center;
                small {
                    font-size: 1.625rem;
                }
                span {
                    gap: 8px;
                }
                em {
                    font-size: 1.75rem;
                }
            }
            .hikaku-image-container {
                width: 100%;
                margin: 0 auto;
                img {
                    max-width: 100%;
                    margin: 0 auto;
                }
            }
        }
        .merchandise-container {
            .index {
                font-size: 1.75rem;
                line-height: 1.5;
                .second {
                    font-size: 1.75rem;
                    line-height: 1.5;
                }
            }
            .merchandise-list {
                gap: 24px;
                max-width: 75%;
                margin: 0 auto;
                li {
                    .merchandise-list-content {
                        dt {
                            height: 30px;
                            padding: 0 1rem;
                            margin-bottom: 40px;
                            font-size: 1.25rem;
                            font-weight: bold;
                            line-height: 30px;
                            text-align: left;
                            color: #fff;
                        }
                    }
                    .merchandise-list-content {
                        dd {
                            display: flex;
                            flex-direction: row;
                            flex-wrap: nowrap;
                            gap: 16px;
                            justify-content: center;
                            align-items: center;
                            ul {
                                display: flex;
                                flex-direction: row;
                                flex-wrap: wrap;
                                gap: 16px;
                                justify-content: center;
                                align-items: center;
                                li img {
                                    width: 100%;
                                    height: 60px !important;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 321px) and (max-width: 767px) {
    #businessModel {
        padding: 120px 0 60px;
        .point-list-container {
            margin: 0 auto 2rem;
            .index {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 16px;
                font-size: clamp(1.5rem, 1.118rem + 1.57vw, 3rem);
                font-weight: bold;
                color: #FF5900;
                small {
                    display: inline;
                    color: #231815;
                }
                .dot {
                    background-image: radial-gradient(circle at center, #FF5900 20%, transparent 20%);
                }
            }
            .point-list {
                display: flex;
                flex-direction: row;
                gap: 16px;
                max-width: 90%;
                margin: 0 auto;
            }
        }
        .hikaku-container {
            margin: 0 auto 32px;
            .index {
                display: grid;
                grid-template-columns: none;
                grid-template-rows: auto auto;
                gap: 8px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                font-size: clamp(1.5rem, 1.118rem + 1.57vw, 3rem);
                text-align: center;
                span {
                    display: flex;
                    flex-direction: row;
                    gap: 8px;
                }
            }
            .hikaku-image-container {
                width: 100%;
                margin: 0 auto;
                img {
                    max-width: 700px;
                }
            }
        }
        .merchandise-container {
            .index {
                font-size: 1.25rem;
                line-height: 1.5;
                .second {
                    font-size: 1.375rem;
                    line-height: 1.5;
                }
            }
            .merchandise-list {
                display: grid;
                grid-template-columns: none;
                grid-template-rows: auto auto auto;
                grid-template-areas: "areaA" "areaB" "areaC";
                gap: 40px;
                li {
                    .merchandise-list-content {
                        dt {
                            height: 30px;
                            padding: 0 1rem;
                            margin-bottom: 40px;
                            font-size: 1.25rem;
                            font-weight: bold;
                            line-height: 30px;
                            text-align: left;
                            color: #fff;
                        }
                        dd {
                            ul {
                                display: flex;
                                flex-direction: row;
                                flex-wrap: wrap;
                                gap: 24px;
                                justify-content: center;
                                align-items: center;
                                li {
                                    img {
                                        width: 100%;
                                        height: 60px !important;
                                    }
                                }
                            }
                        }
                    }   
                }
            }
        }
    }
}
@media screen and (max-width: 320px) {
    #businessModel {
        padding: 120px 0 60px;
        .point-list-container {
            margin: 0 auto 2rem;
            .index {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 16px;
                font-size: clamp(1.5rem, 1.118rem + 1.57vw, 3rem);
                font-weight: bold;
                color: #FF5900;
                small {
                    display: inline;
                    color: #231815;
                }
                .dot {
                    background-image: radial-gradient(circle at center, #FF5900 20%, transparent 20%);
                }
            }
            .point-list {
                display: flex;
                flex-direction: row;
                gap: 16px;
                max-width: 980px;
                margin: 0 auto;
            }
        }
        .hikaku-container {
            margin: 0 auto 20%;
            .index {
                display: grid;
                grid-template-columns: none;
                grid-template-rows: auto auto;
                gap: 8px;
                justify-content: center;
                align-items: center;
                justify-items: center;
                font-size: clamp(1.5rem, 1.118rem + 1.57vw, 3rem);
                text-align: center;
                small {
                    font-size: 1.25rem;
                }
                span {
                    display: flex;
                    flex-direction: row;
                    gap: 8px;
                }
            }
            .hikaku-image-container {
                width: 100%;
                margin: 0 auto;
                overflow-x: scroll;
                img {
                    max-width: 700px;
                }
            }
        }
        
        .merchandise-container {
            .index {
                font-size: 1.125rem;
                line-height: 1.5;
                .second {
                    font-size: 1.375rem;
                    line-height: 1.5;
                }
            }
            .merchandise-list {
                display: grid;
                grid-template-columns: none;
                grid-template-rows: auto auto auto;
                grid-template-areas: "areaA" "areaB" "areaC";
                gap: 40px;
                li {
                    .merchandise-list-content {
                        dt {
                            height: 40px;
                            padding: 0 1rem;
                            margin-bottom: 40px;
                            font-size: clamp(1.5rem, 1.373rem + 0.52vw, 2rem);
                            font-weight: bold;
                            line-height: 40px;
                            text-align: left;
                            color: #fff;
                        }
                        dd {
                            ul {
                                display: flex;
                                flex-direction: row;
                                flex-wrap: wrap;
                                gap: 24px;
                                justify-content: center;
                                align-items: center;
                                li img {
                                    width: 100%;
                                    height: 60px;
                                }
                            }
                        }
                    }                
                    &.denki {
                        grid-area: areaA;
                        .merchandise-list-content dt {
                            background: #FF5900
                            url(../../asset/images/business-model_merchandise-list-denki_bg.webp) center top /cover no-repeat;
                        }
                    }
                    &.water {
                        grid-area: areaB;
                        .merchandise-list-content dt {
                            background: #FF5900
                            url(../../asset/images/business-model_merchandise-list-water_bg.webp) center top /cover no-repeat;
                        }
                    }
                    &.internet {
                        grid-area: areaC;
                        .merchandise-list-content dt {
                            background: #FF5900
                            url(../../asset/images/business-model_merchandise-list-internet_bg.webp) center top /cover no-repeat;
                        }
                    }
                }
            }
        }
    }
}


/* section:パートナー様の声
================================*/
#partnersVoice {
    width: 100%;
    padding: 80px 0;
    background: #fff
    url(../../asset/images/FFEFE6.svg) center top /contain no-repeat;
    overflow: hidden;
    .swiper-area {
        max-width: 85%;
        /* max-width: 980px; */
        padding: 0;
        margin: 0 auto;
        .swiper {
            overflow: visible;
            position: relative;
            .swiper-wrapper {
                width: 100%;
            }
            .swiper-slide.partner-ex-container {
                height: 620px;
                margin: 0 auto;
                border-radius: 10px;
                cursor: auto;
                position: relative;
                .partner-ex-index {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 300px;
                    aspect-ratio: 400 / 60;
                    padding: 0 16px;
                    margin: 0;
                    background: #231815;
                    border-radius: 10px 0 0 0;
                    font-size: 1.75rem;
                    font-weight: bold;
                    color: #fff;
                    position: absolute;
                    top: 0;
                    left: 0;
                }
            }
            .partner-ex-contents {                
                display: grid;
                grid-template-columns: 35% 1fr;
                grid-template-rows: auto auto;
                grid-template-areas: "areaA areaB" "areaC areaC";
                gap: 24px 0;
                align-items: end;
                width: 100%;
                height: auto;
                padding: 4rem 1rem 2rem;
                border: 3px solid #231815;
                border-radius: 10px;
                flex: 1;
                min-height: 100%;
                .partner-ex-content {
                    grid-area: areaA;
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    justify-content: center;
                    align-items: center;
                    .partner-ex-title {
                        font-size: clamp(1.25rem, 1.154rem + 0.39vw, 1.625rem);
                        font-weight: bold;
                    }
                    .partner-ex-title em {
                        display: block;
                        font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
                        color: #FF5900;
                    }
                    .partner-ex-data {
                        font-size: clamp(1.125rem, 1.093rem + 0.13vw, 1.25rem);
                        font-weight: 600;
                    }
                    .partner-ex-image {
                        max-width: 180px;
                    }
                }
                .partner-ex-content-beforeafter {
                    grid-area: areaB;
                    display: flex;
                    flex-direction: row;
                    gap: 2%;
                    .arrow {
                        width: 30px;
                    }
                }
                .partner-ex-content-cmnt-container {
                    grid-area: areaC;
                    .partner-ex-content-cmnt {
                        padding: 2rem 0 0 0;
                        position: relative;
                        p {
                            max-width: 80%;
                            margin: 0 auto;
                            line-height: 1.5;
                            text-align: left;
                        }
                        &::before {
                            content: "";
                            display: block;
                            width: 38px;
                            height: 38px;
                            margin: 0 auto;
                            background: url(../../asset/images/partnersvoice_cmnt-icon-l.svg) left top / contain no-repeat;
                            position: absolute;
                            left: 4%;
                        }
                        &::after {
                            content: "";
                            display: block;
                            width: 38px;
                            height: 38px;
                            margin: 0 auto;
                            background: url(../../asset/images/partnersvoice_cmnt-icon-r.svg) right top / contain no-repeat;
                            position: absolute;
                            right: 4%;
                            bottom: 1rem;
                        }
                    }
                    &::before {
                        content: "";
                        display: block;
                        width: 100%;
                        height: 2px;
                        background: url(../../asset/images/partnersvoice_line.svg) 0 0 /contain repeat-x;
                    }
                }
            }
        }
        .swiper-button-prev,
        .swiper-button-next {
            width: 65px;
            height: 65px;
            cursor: pointer;
        }
        .swiper-button-prev {
            background: url(../../asset/images/arrow_prev.svg) 0 0 /contain no-repeat;
            top: 50%;
            left: 0%;
            transform: translate(-50%, 0);
        }
        .swiper-button-next {
            background: url(../../asset/images/arrow_next.svg) 0 0 /contain no-repeat;
            top: 50%;
            right: -7%;
            transform: translate(-50%, 7%);
        }
    }
}
@media screen and (min-width: 1280px) {
    #partnersVoice {
        .swiper-area {
            .swiper {
                .partner-ex-contents {
                    .partner-ex-content {
                        .partner-ex-title {
                            font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
                        }
                        .partner-ex-title em {
                            font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
                        }
                        .partner-ex-data {
                            font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
                        }
                        .partner-ex-image {
                            max-width: 180px;
                        }
                    }
                    .partner-ex-content-beforeafter {
                        .content-before,
                        .content-after {
                            img {
                                max-width: 80%;
                            }
                        }
                    }
                    .partner-ex-content-cmnt-container {
                        .partner-ex-content-cmnt {
                            padding: 2rem 0 0 0;
                            p {
                                padding: 24px 1rem;
                                font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
                            }
                            &::before {
                                width: 38px;
                                height: 38px;
                                left: 5%;
                            }
                            &::after {
                                width: 38px;
                                height: 38px;
                                right: 5%;
                            }
                        }
                        &::before {
                            content: "";
                            display: block;
                            width: 100%;
                            height: 2px;
                            background: url(../../asset/images/partnersvoice_line.svg) 0 0 /contain repeat-x;
                        }
                    }
                }
            }
            
            .swiper-button-prev,
            .swiper-button-next {
                width: 60px;
                height: 60px;
            }
            .swiper-button-next {
                top: 50%;
                right: -5%;
                transform: translate(-50%, 5%);
            }
        }
    }
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
    #partnersVoice {
        .swiper-area {
            .swiper {
                .partner-ex-contents {
                    grid-template-columns: 30% auto;
                    .partner-ex-content {
                        gap: 16px;
                    }
                    .partner-ex-content-beforeafter {
                        gap: 16px;
                    }
                }
            }            
            .swiper-button-prev,
            .swiper-button-next {
                width: 60px;
                height: 60px;
            }
        }
    }
}
@media screen and (min-width: 921px) and (max-width: 1024px) {
    #partnersVoice {
        padding: 120px 0 60px;
        .swiper-area {
            .swiper {
                .swiper-slide.partner-ex-container {
                    height: 565px;
                }
                .partner-ex-contents {
                    grid-template-columns: 35% 60%;
                    .partner-ex-content {
                        gap: 16px;
                    }
                    .partner-ex-content-beforeafter {
                        gap: 16px;
                    }
                }
            }            
            .swiper-button-prev,
            .swiper-button-next {
                width: 60px;
                height: 60px;
            }
        }
    }
}
@media screen and (min-width: 821px) and (max-width: 920px) {
    #partnersVoice {
        .swiper-area {
            .swiper {
                .partner-ex-contents {
                    grid-template-columns: 35% 60%;
                    .partner-ex-content {
                        gap: 16px;
                    }
                    .partner-ex-content-beforeafter {
                        gap: 16px;
                        .arrow {
                            width: 20px;
                        }
                    }
                }
            }
            .swiper-button-prev,
            .swiper-button-next {
                width: 50px;
                height: 50px;
            }
        }
    }
}
@media screen and (min-width: 768px) and (max-width: 820px) {
    #partnersVoice {
        padding: 120px 0 60px;
        .swiper-area {
            .swiper {
                .swiper-slide.partner-ex-container {
                    height: 555px;
                }
                .partner-ex-contents {
                    .partner-ex-content {
                        gap: 16px;
                        .partner-ex-title {
                            font-size: 1.25rem;
                        }
                        .partner-ex-title em {
                            font-size: 1.75rem;
                        }
                        .partner-ex-data {
                            font-size: 1.125rem;
                        }
                        .partner-ex-image {
                            max-width: 140px;
                        }
                    }
                    .partner-ex-content-beforeafter {
                        gap: 16px;
                        .arrow {
                            width: 20px;
                        }
                    }
                    .partner-ex-content-cmnt-container {
                        .partner-ex-content-cmnt {
                            padding: 3rem 0 0 0;
                            &::before {
                                width: 38px;
                                height: 38px;
                                top: 1rem;
                                left: 3%;
                            }
                            &::after {
                                width: 38px;
                                height: 38px;
                                right: 3%;
                                bottom: 0;
                            }
                        }
                    }
                }
            }
            
            .swiper-button-prev,
            .swiper-button-next {
                width: 55px;
                height: 55px;
            }
            .swiper-button-next {
                top: 50%;
                right: -10%;
                transform: translate(-50%, 10%);
            }
        }
    }
}
@media screen and (max-width: 767px) {
    #partnersVoice {
        padding: 120px 0;
        .index {
            padding: 0 1rem;
        }
        .swiper-area {
            max-width: 100%;
            padding: 0 1rem;
            position: relative;
            .swiper {
                .swiper-wrapper {
                    flex-direction: column;
                    gap: 80px;
                    position: relative;
                }
                .swiper-slide.partner-ex-container {
                    padding: 0;
                    margin: 0 auto;
                    border-radius: 12px;
                    cursor: auto;
                    position: relative;
                    border: 0;
                    height: auto;
                    .partner-ex-index {
                        width: 100%;
                        aspect-ratio: 10 / 1;
                        padding: 1rem;
                        margin: 0;
                        background: #231815;
                        border-radius: 10px;
                        color: #fff;
                        font-size: 1.375rem;
                    }
                    .partner-ex-index::after {
                        width: 10px;
                        height: 10px;
                        border-right: 2px solid currentColor;
                        border-bottom: 2px solid currentColor;
                        transform: translateY(-60%) rotate(45deg);
                        transition: transform 0.3s ease;
                        content: "";
                        position: absolute;
                        top: 50%;
                        right: 20px;
                    }
                    .partner-ex-index.is-open {
                        border-radius: 10px 10px 0 0;
                    }
                    .partner-ex-index.is-open::after {
                        transform: translateY(-40%) rotate(-135deg);
                    }
                }

                .partner-ex-contents {
                    display: none;
                    &.is-open {
                        display: grid;
                        grid-template-columns: auto auto auto;
                        grid-template-rows: auto auto auto;
                        grid-template-areas: "areaA areaA areaA" "areaB areaB areaB" "areaC areaC areaC";
                        padding: 80px 16px 40px;
                        border: 3px solid #231815;
                        border-radius: 10px;
                        .partner-ex-content {
                            grid-area: areaA;
                            display: flex;
                            flex-direction: column;
                            gap: 16px;
                            justify-content: center;
                            align-items: center;
                        }
                        .partner-ex-content-beforeafter {
                            grid-area: areaB;
                            display: flex;
                            flex-direction: column;
                            gap: 16px;
                            justify-content: center;
                            align-items: center;
                            .arrow {
                                transform: rotate(90deg);
                            }
                        }
                        .partner-ex-content-cmnt-container {
                            .partner-ex-content-cmnt {
                                padding: 3rem 0 0 0;
                                grid-area: areaC;
                                &::before {
                                    width: 28px;
                                    height: 28px;
                                    top: 1rem;
                                    left: 3%;
                                }
                                &::after {
                                    width: 28px;
                                    height: 28px;
                                    right: 3%;
                                    bottom: 0;
                                }
                            }
                        }
                    }
                }
            }
            .swiper-button-prev,
            .swiper-button-next {
                display: none !important;
            }
        }
    }
}


/* section:ご利用開始までの流れ
================================*/
#step {
    padding: 80px 0;
    background: #FFEFE6
    url(../../asset/images/FFFFFF.svg) center top /contain no-repeat;
    .step-container {
        max-width: 980px;
        margin: 0 auto;
        .step-list {
            padding: 0 1rem;
            li {
                display: grid;
                grid-template-columns: auto 450px;
                grid-template-rows: auto auto;
                grid-template-areas: 
                "areaA areaB"
                "areaA areaC";
                align-content: center;
                justify-content: center;
                align-items: normal;
                justify-items: start;
                gap: 8px 24px;
                padding: 1.5rem;
                margin: 0 auto 60px;
                background: #fff;
                border-radius: 10px;
                position: relative;
                &:last-of-type {
                    margin: 0 auto;
                    &::after {
                        display: none;
                    }
                }
                &::after {
                    content: "";
                    display: block;
                    width: 140px;
                    height: 47px;
                    background: url(../../asset/images/worries_arrow.svg) 0 0 /contain no-repeat;
                    position: absolute;
                    bottom: -20%;
                    left: calc(50% - 70px);
                }
                .step-image {
                    grid-area: areaA;
                }
                .step-headline-container {
                    grid-area: areaB;
                    display: grid;
                    grid-template-columns: auto auto;
                    gap: 24px;
                    justify-content: center;
                    align-items: center;
                    font-weight: bold;
                    .step-num {
                        display: inline-block;
                        padding: 0px 32px;
                        background: #FF5900;
                        font-size: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
                        color: #fff;
                    }
                    .step-headline {
                        font-size: clamp(1.375rem, 1.148rem + 1.14vw, 2rem);
                    }
                }
                .step-cmnt {
                    grid-area: areaC;
                    font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
                    line-height: 1.5;
                        br {
                            display: none;
                        }
                }
            }
        }
    }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
    #step {
        padding: 120px 0 60px;
        .step-container {
            .step-list {
                li {
                    padding: 1.5rem;
                    margin: 0 auto 80px;
                    &:last-of-type {
                        margin: 0 auto;
                        &::after {
                            display: none;
                        }
                    }
                    &::after {
                        width: 160px;
                        height: 47px;
                        bottom: -20%;
                        left: calc(50% - 80px);
                    }
                    .step-image {
                        grid-area: areaA;
                    }
                    .step-headline-container {
                        grid-area: areaB;
                        gap: 24px;
                        .step-num {
                            padding: 0px 32px;
                            font-size: clamp(1.375rem, 1.279rem + 0.39vw, 1.75rem);
                        }
                        .step-headline {
                            font-size: clamp(1.375rem, 1.216rem + 0.65vw, 2rem);
                        }
                    }
                    .step-cmnt {
                        grid-area: areaC;
                        font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 431px) and (max-width: 767px) {
    #step {
        padding: 120px 0 60px;
        .step-container {
            .step-list {
                li {
                    display: grid;
                    grid-template-columns: auto;
                    grid-template-rows: auto auto auto;
                    grid-template-areas: 
                    "areaA"
                    "areaB"
                    "areaC";
                    align-content: center;
                    justify-content: center;
                    align-items: center;
                    justify-items: center;
                    gap: 16px;
                    padding: 1.5rem;
                    margin: 0 auto 80px;
                    background: #fff;
                    border-radius: 10px;
                    position: relative;
                    &:last-of-type {
                        margin: 0 auto;
                        &::after {
                            display: none;
                        }
                    }
                    &::after {
                        content: "";
                        display: block;
                        width: 160px;
                        height: 47px;
                        background: url(../../asset/images/worries_arrow.svg) 0 0 /contain no-repeat;
                        position: absolute;
                        bottom: -20%;
                        left: calc(50% - 80px);
                    }
                    .step-image {
                        grid-area: areaA;
                    }
                    .step-headline-container {
                        grid-area: areaB;
                        display: grid;
                        grid-template-columns: none;
                        grid-template-rows: auto auto;
                        gap: 8px;
                        justify-content: center;
                        align-items: center;
                        font-weight: bold;
                        .step-num {
                            display: inline-block;
                            width: 300px;
                            padding: 0px 32px;
                            background: #FF5900;
                            font-size: clamp(1.375rem, 1.216rem + 0.65vw, 2rem);
                            color: #fff;
                        }
                        .step-headline {
                            font-size: clamp(1.375rem, 1.12rem + 1.05vw, 2.375rem);
                        }
                    }
                    .step-cmnt {
                        grid-area: areaC;
                        font-size: clamp(1rem, 0.841rem + 0.65vw, 1.625rem);
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 321px) and (max-width: 430px) {
    #step {
        padding: 120px 0 60px;
        .step-container {
            .step-list {
                li {
                    display: grid;
                    grid-template-columns: auto;
                    grid-template-rows: auto auto auto;
                    grid-template-areas: 
                    "areaA"
                    "areaB"
                    "areaC";
                    align-content: center;
                    justify-content: center;
                    align-items: center;
                    justify-items: center;
                    gap: 16px;
                    padding: 1rem 1.5rem 1.5rem;
                    margin: 0 auto 80px;
                    background: #fff;
                    border-radius: 10px;
                    position: relative;
                    &:last-of-type {
                        margin: 0 auto;
                        &::after {
                            display: none;
                        }
                    }
                    &::after {
                        width: 100px;
                        height: 30px;
                        position: absolute;
                        bottom: -22%;
                        left: calc(50% - 50px);
                    }
                    .step-image {
                        grid-area: areaA;
                        width: 130px;
                    }
                    .step-headline-container {
                        grid-area: areaB;
                        display: grid;
                        grid-template-columns: none;
                        grid-template-rows: auto auto;
                        gap: 8px;
                        justify-content: center;
                        align-items: center;
                        font-weight: bold;
                        .step-num {
                            display: inline-block;
                            width: 260px;
                            padding: 0px 32px;
                            background: #FF5900;
                            font-size: clamp(1.375rem, 1.216rem + 0.65vw, 2rem);
                            color: #fff;
                        }
                        .step-headline {
                            font-size: clamp(1.375rem, 1.12rem + 1.05vw, 2.375rem);
                        }
                    }
                    .step-cmnt {
                        grid-area: areaC;
                        font-size: clamp(1rem, 0.841rem + 0.65vw, 1.625rem);
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 320px) {
    #step {
        padding: 120px 0 60px;
        .step-container {
            .step-list {
                li {
                    display: grid;
                    grid-template-columns: auto;
                    grid-template-rows: auto auto auto;
                    grid-template-areas: 
                    "areaA"
                    "areaB"
                    "areaC";
                    align-content: center;
                    justify-content: center;
                    align-items: center;
                    justify-items: center;
                    gap: 16px;
                    padding: 1rem 1.5rem 1.5rem;
                    margin: 0 auto 80px;
                    background: #fff;
                    border-radius: 10px;
                    position: relative;
                    &:last-of-type {
                        margin: 0 auto;
                        &::after {
                            display: none;
                        }
                    }
                    &::after {
                        width: 100px;
                        height: 30px;
                        position: absolute;
                        bottom: -22%;
                        left: calc(50% - 50px);
                    }
                    .step-image {
                        grid-area: areaA;
                        width: 150px;
                    }
                    .step-headline-container {
                        grid-area: areaB;
                        display: grid;
                        grid-template-columns: none;
                        grid-template-rows: auto auto;
                        gap: 8px;
                        justify-content: center;
                        align-items: center;
                        font-weight: bold;
                        .step-num {
                            display: inline-block;
                            width: 220px;
                            padding: 0px 32px;
                            background: #FF5900;
                            font-size: clamp(1.375rem, 1.216rem + 0.65vw, 2rem);
                            color: #fff;
                        }
                        .step-headline {
                            font-size: clamp(1.375rem, 1.12rem + 1.05vw, 2.375rem);
                        }
                    }
                    .step-cmnt {
                        grid-area: areaC;
                        font-size: clamp(1rem, 0.841rem + 0.65vw, 1.625rem);
                        br {
                            display: block;
                        }
                    }
                }
            }
        }
    }
}


/* section:よくある質問
================================*/
#faq {
    padding: 120px 0 10%;
    background: #fff
    url(../../asset/images/FFEFE6.svg) center top /contain no-repeat;
    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
        margin: 0 auto;
        text-align: left;
        details {
            width: 100%;
            background: #fff;
            summary {
                display: grid;
                grid-template-columns: auto 1fr 30px;
                gap: 16px;
                justify-content: flex-start;
                align-items: center;
                padding: 1rem 2.5rem;
                border: 2px solid #231815;
                border-radius: 10px;
                font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
                font-weight: bold;
                &::marker {
                    content: "";
                    display: none;
                }
                .big-q {
                    display: inline-block;
                    width: 50px;
                    font-size: clamp(2.625rem, 2.466rem + 0.65vw, 3.25rem);
                    line-height: 1;
                    font-weight: bold;
                    color: #FF5900;
                }
                .icon {
                    content: "";
                    display: block;
                    width: 26px;
                    aspect-ratio: 15 / 26;
                    background: url(../../asset/images/faq_arrow.svg) top 40% center /contain no-repeat;
                    transition: transform 0.4s !important;
                }
            }
            &[open] .icon {
                transform: rotate(180deg);
            }
            .answer {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                gap: 16px;
                padding: 1rem 2.5rem;
                font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
                .big-a {
                    display: inline-block;
                    width: 50px;
                    font-size: clamp(2.625rem, 2.466rem + 0.65vw, 3.25rem);
                    font-weight: bold;
                    color: #FF7A33;
                }
            }
        }
    }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    #faq {
        .faq-container {
            gap: 32px;
            details {
                width: 100%;
                summary {
                    grid-template-columns: auto 1fr 30px;
                    gap: 16px;
                    padding: 1rem 2.5rem;
                    font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                    .big-q {
                        width: 50px;
                        font-size: clamp(2.625rem, 2.466rem + 0.65vw, 3.25rem);
                    }
                    .icon {
                        width: 26px;
                        aspect-ratio: 15 / 26;
                    }
                }
                .answer {
                    gap: 16px;
                    padding: 1rem 2.5rem;
                    font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);
                    .big-a {
                        width: 50px;
                        font-size: clamp(2.625rem, 2.466rem + 0.65vw, 3.25rem);
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    #faq {
        .faq-container {
            gap: 32px;
            details {
                width: 100%;
                summary {
                    grid-template-columns: auto 1fr 30px;
                    gap: 16px;
                    padding: 1rem 2.5rem;
                    font-size: clamp(1rem, 0.904rem + 0.39vw, 1.375rem);
                    .big-q {
                        width: 50px;
                        font-size: clamp(2.625rem, 2.466rem + 0.65vw, 3.25rem);
                    }
                    .icon {
                        width: 26px;
                        aspect-ratio: 15 / 26;
                    }
                }
                .answer {
                    gap: 16px;
                    padding: 1rem 2.5rem;
                    font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);
                    .big-a {
                        width: 50px;
                        font-size: clamp(2.625rem, 2.466rem + 0.65vw, 3.25rem);
                    }
                }
            }
        }
    }    
}
@media screen and (max-width: 767px) {
    #faq {
        padding: 120px 0 60px;
        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 32px;
            align-items: flex-start;
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
            details {
                summary {
                    display: grid;
                    grid-template-columns: auto 1fr 30px;
                    gap: 8px;
                    justify-content: flex-start;
                    align-items: center; 
                    padding: 1rem;
                    font-size: 1rem;
                    font-weight: bold;
                    &::marker {
                        content: "";
                        display: none;
                    }
                    .big-q {
                        width: 2.375rem;
                        font-size: clamp(2.375rem, 2.025rem + 1.44vw, 3.75rem);
                    }
                    .icon {
                        width: 26px;
                        aspect-ratio: 15 / 26;
                    }
                }
                &[open] .icon {
                    transform: rotate(180deg);
                }
                .answer {
                    gap: 16px;
                    padding: 1rem;
                    .big-a {
                        font-size: clamp(2.375rem, 2.025rem + 1.44vw, 3.75rem);
                    }
                }
            }
        }
    }
}


/* CTA button
================================*/
.cta-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background: #00A6FF;
    border-radius: 10px;
    position: relative;
    transform: scale(.8);
    .cta-container-wrap { 
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 16px;
        justify-content: center;
        align-items: end;
        position: relative;
        bottom: 4rem;
    }
    .cta-link {
        display: block;
        cursor: pointer;
        .cta-content {
            display: grid;
            grid-template-columns: auto auto auto;
            gap: 16px;
            justify-content: center;
            align-items: center;
            width: 640px;
            aspect-ratio: 640 / 120;
            background:
                #FF5900
                url(../../asset/images/button_bg.svg) bottom center / cover no-repeat;
            border: 1px solid #fff;
            box-shadow: 0 4px 0 0 #0089d2;
            &::before,
            &::after {
                content: "";
                display: block;
            }
            &::before {
                width: 81px;
                height: 80px;
                background: url(../../asset/images/button_icon.svg) 0 0 /contain no-repeat;
                filter: drop-shadow(2px 2px 0px #FF5900);
            }
            &::after {
                width: 20px;
                height: 36px;
                background: url(../../asset/images/button_arrow.svg) 0 0 /contain no-repeat;
                filter: drop-shadow(2px 2px 0px #FF5900);
            }
            .cta-tit {
                font-size: clamp(1.75rem, 1.368rem + 1.57vw, 3.25rem);
                font-weight: bold;
                color: #ffff00;
                text-shadow: 2px 2px 0px #FF5900;
                small {
                    font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                    color: #fff;
                }
            }
        }
        &:hover .cta-content {
            box-shadow: none;
            transform: translateY(4px);
        }
    }
    a,
    a:link,
    a:hover {
        text-decoration: none;
    }
}
@media screen and (min-width: 1181px) and (max-width: 1280px) {
    .cta-container {
        max-width: 940px;
        transform: scale(1);
        .cta-container-wrap { 
            gap: 16px;
            bottom: 2.5rem;
            .cta-mark {
                max-width: 126px;
            }
            .cta-image {
                max-width: 180px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 16px;
                width: 520px;
                aspect-ratio: 640 / 120;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 71px;
                    height: 70px;
                }
                &::after {
                    width: 20px;
                    height: 28px;
                }
                .cta-tit {
                    font-size: clamp(1.75rem, 1.368rem + 1.57vw, 3.25rem);
                    small {
                        font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                    }
                }
            }
        }
    }
}
@media screen and (min-width: 981px) and (max-width: 1180px) {
    .cta-container {
        max-width: 960px;
        .cta-container-wrap { 
            gap: 16px;
            bottom: 1.5rem;
        }
        .cta-mark {
            img {
                max-width: 100px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 16px;
                width: 540px;
                aspect-ratio: 640 / 120;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 61px;
                    height: 60px;
                }
                &::after {
                    width: 20px;
                    height: 28px;
                }
                .cta-tit {
                    font-size: clamp(1.75rem, 1.368rem + 1.57vw, 3.25rem);
                    small {
                        font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                    }
                }
            }
        }
        .cta-image {
            max-width: 140px;
        }
    }
}
@media screen and (min-width: 820px) and (max-width: 980px) {
    .cta-container {
        max-width: 980px;
        padding: 2rem 1rem;
        border-radius: 0;
        .cta-container-wrap { 
            display: block;
            position: relative;
            bottom: inherit;
        }
        .cta-mark {
            position: absolute;
            top: -40%;
            left: 5%;
            transform: translate(40%, -5%);
            z-index: 10;
            img {
                max-width: 120px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 16px;
                width: 100%;
                aspect-ratio: 640 / 120;
                padding: 0 1rem;
                max-width: 640px;
                margin: 0 auto;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 81px;
                    height: 80px;
                    background: url(../../asset/images/button_icon.svg) 0 0 /contain no-repeat;
                    filter: drop-shadow(2px 2px 0px #FF5900);
                }
                &::after {
                    width: 20px;
                    height: 36px;
                    background: url(../../asset/images/button_arrow.svg) 0 0 /contain no-repeat;
                    filter: drop-shadow(2px 2px 0px #FF5900);
                }
                .cta-tit {
                    font-size: clamp(1.75rem, 1.368rem + 1.57vw, 3.25rem);
                    small {
                        font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                    }
                }
            }
            &:hover .cta-content {
                box-shadow: 0 4px 0 0 #0089d2;
                transform: translateY(0);
            }
        }
        .cta-image {
            max-width: 140px;
            position: absolute;
            top: -33%;
            right: 13%;
            transform: translate(33%, -13%);
        }
    }
}
@media screen and (min-width: 768px) and (max-width: 819px) {
    .cta-container {
        max-width: 820px;
        padding: 2rem 1rem;
        border-radius: 0;
        .cta-container-wrap { 
            display: block;
            position: relative;
            bottom: inherit;
        }
        .cta-mark {
            position: absolute;
            top: -35%;
            left: 8%;
            transform: translate(35%, -8%);
            z-index: 10;
            img {
                max-width: 100px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 16px;
                width: 450px;
                padding: 0 1rem;
                margin: 0 auto;
                aspect-ratio: 640 / 120;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 51px;
                    height: 50px;
                }
                &::after {
                    width: 14px;
                    height: 26px;
                }
                .cta-tit {
                    font-size: clamp(1.75rem, 1.368rem + 1.57vw, 3.25rem);
                    small {
                        font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                    }
                }
            }
            &:hover .cta-content {
                box-shadow: 0 4px 0 0 #0089d2;
                transform: translateY(0);
            }
        }
        .cta-image {
            max-width: 130px;
            position: absolute;
            top: -35%;
            right: 15%;
            transform: translate(35%, -15%);
        }
    }
}
@media screen and (min-width: 666px) and (max-width: 766px) {
    .cta-container {
        width: 100%;
        padding: 2rem 1rem;
        border-radius: 0;
        .cta-container-wrap { 
            display: block;
            position: relative;
            bottom: inherit;
        }
        .cta-mark {
            position: absolute;
            top: -30%;
            left: 0%;
            transform: translate(30%, 0%);
            z-index: 10;
            img {
                max-width: 105px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 16px;
                width: 100%;
                aspect-ratio: 640 / 120;
                padding: 0 1rem;
                max-width: 640px;
                margin: 0 auto;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 81px;
                    height: 80px;
                    background: url(../../asset/images/button_icon.svg) 0 0 /contain no-repeat;
                    filter: drop-shadow(2px 2px 0px #FF5900);
                }
                &::after {
                    width: 20px;
                    height: 36px;
                    background: url(../../asset/images/button_arrow.svg) 0 0 /contain no-repeat;
                    filter: drop-shadow(2px 2px 0px #FF5900);
                }
                .cta-tit {
                    font-size: clamp(1.75rem, 1.368rem + 1.57vw, 3.25rem);
                    small {
                        font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                    }
                }
            }
            &:hover .cta-content {
                box-shadow: 0 4px 0 0 #0089d2;
                transform: translateY(0);
            }
        }
        .cta-image {
            max-width: 130px;
            position: absolute;
            top: -30%;
            right: 5%;
            transform: translate(30%, -5%);
        }
    }
}
@media screen and (min-width: 430px) and (max-width: 665px) {
    .cta-container {
        width: 100%;
        padding: 2rem 1rem;
        border-radius: 0;
        .cta-container-wrap { 
            display: block;
            position: relative;
            bottom: inherit;
        }
        .cta-mark {
            position: absolute;
            top: -70%;
            left: -2%;
            transform: translate(70%, 2%);
            z-index: 10;
            img {
                max-width: 85px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 16px;
                width: 100%;
                padding: 0 1rem;
                max-width: 640px;
                margin: 0 auto;
                aspect-ratio: 360 / 80;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 51px;
                    height: 50px;
                }
                &::after {
                    width: 14px;
                    height: 22px;
                }
                .cta-tit {
                    font-size: clamp(1.75rem, 1.368rem + 1.57vw, 3.25rem);
                    small {
                        font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
                    }
                }
            }
            &:hover .cta-content {
                box-shadow: 0 4px 0 0 #0089d2;
                transform: translateY(0);
            }
        }
        .cta-image {
            max-width: 105px;
            position: absolute;
            top: -65%;
            right: 18%;
            transform: translate(65%, -18%);
        }
    }
}
@media screen and (min-width: 377px) and (max-width: 429px) {
    .cta-container {
        width: 100%;
        padding: 2rem 1rem;
        border-radius: 0;
        .cta-container-wrap { 
            display: block;
            position: relative;
            bottom: inherit;
        }
        .cta-mark {
            position: absolute;
            top: -70%;
            left: 2%;
            transform: translate(70%, -2%);
            z-index: 10;
            img {
                max-width: 75px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 8px;
                width: 100%;
                max-width: 360px;
                padding: 0 1rem;
                margin: 0 auto;
                aspect-ratio: 360 / 80;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 51px;
                    height: 50px;
                    background: url(../../asset/images/button_icon.svg) 0 0 /contain no-repeat;
                    filter: drop-shadow(2px 2px 0px #FF5900);
                }
                &::after {
                    width: 14px;
                    height: 24px;
                    background: url(../../asset/images/button_arrow.svg) 0 0 /contain no-repeat;
                    filter: drop-shadow(2px 2px 0px #FF5900);
                }
                .cta-tit {
                    font-size: 1.5rem;
                    small {
                        font-size: 1.25rem;
                    }
                }
            }
            &:hover .cta-content {
                box-shadow: 0 4px 0 0 #0089d2;
                transform: translateY(0);
            }
        }
        .cta-image {
            max-width: 95px;
            position: absolute;
            top: -65%;
            right: 25%;
            transform: translate(65%, -25%);
        }
    }
}
@media screen and (min-width: 321px) and (max-width: 376px) {
    .cta-container {
        width: 100%;
        padding: 2rem 1rem;
        border-radius: 0;
        .cta-container-wrap { 
            display: block;
            position: relative;
            bottom: inherit;
        }
        .cta-mark {
            position: absolute;
            top: -75%;
            left: -6%;
            transform: translate(75%, 6%);
            z-index: 10;
            img {
                max-width: 70px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 8px;
                width: 100%;
                max-width: 320px;
                padding: 0 1rem;
                margin: 0 auto;
                aspect-ratio: 360 / 80;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 41px;
                    height: 40px;
                }
                &::after {
                    width: 12px;
                    height: 22px;
                }
                .cta-tit {
                    font-size: 1.5rem;
                    small {
                        font-size: 1.25rem;
                    }
                }
            }
            &:hover .cta-content {
                box-shadow: 0 4px 0 0 #0089d2;
                transform: translateY(0);
            }
        }
        .cta-image {
            max-width: 80px;
            position: absolute;
            top: -55%;
            right: 25%;
            transform: translate(55%, -25%);
        }
    }
}
@media screen and (max-width: 320px) {
    .cta-container {
        width: 100%;
        padding: 2rem 1rem;
        border-radius: 0;
        .cta-container-wrap { 
            display: block;
            position: relative;
            bottom: inherit;
        }
        .cta-mark {
            position: absolute;
            top: -110%;
            left: -22%;
            transform: translate(110%, 22%);
            z-index: 10;
            img {
                max-width: 70px;
            }
        }
        .cta-link {
            .cta-content {
                gap: 8px;
                width: 100%;
                max-width: 300px;
                padding: 0 1rem;
                margin: 0 auto;
                aspect-ratio: 360 / 80;
                &::before,
                &::after {
                    content: "";
                    display: block;
                }
                &::before {
                    width: 41px;
                    height: 40px;
                }
                &::after {
                    width: 12px;
                    height: 22px;
                }
                .cta-tit {
                    font-size: 1.5rem;
                    small {
                        font-size: 1.25rem;
                    }
                }
            }
            &:hover .cta-content {
                box-shadow: 0 4px 0 0 #0089d2;
                transform: translateY(0);
            }
        }
        .cta-image {
            max-width: 75px;
            position: absolute;
            top: -70%;
            right: 22%;
            transform: translate(70%, -22%);
        }
    }
}


/* page top
================================*/
.page_to_top {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    &.is-visible{
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: #231815;
        text-align: center;
        line-height: 50px;
        font-size: 24px;
        border-radius: 50%;
        opacity: 1;
        transition: opacity 0.3s;
        pointer-events: auto;
        z-index: 800;
        @media screen and (min-width:768px) and (max-width:1023px){
            bottom: 240px;
        }
        @media screen and (max-width: 767px) {
            bottom: 120px;      
        }
        .arrow {
            position: relative;
            display: inline-block;
            width: 40px;
            height: 40px;
            top: 25%;
        &::before,
        &::after {
            content: "";
            position: absolute;
            top: 0;
            left: calc(50% - 2px);
            width: 4px;
            height: 24px;
            border-radius: 9999px;
            background-color: #fff;
            transform-origin: 50% 2px;
        }
        &::before {
            transform: rotate(45deg);
        }
        &::after {
            transform: rotate(-45deg);
        }
        }
        &:hover{
            opacity: 1;
        }
    }
}


/* fixedarea cta */
@media screen and (min-width: 1025px) {
    .fixedarea_container_pc {
        display: none;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }
    .fixedarea_container_pc.is-visible {
        display: block;
        max-width: 300px;
        opacity: 1;
        transition: opacity 0.3s;
        pointer-events: auto;
        position: fixed;
        top: 24px;
        right: 0;
        z-index: 100;
    }
    .fixedarea_container_pc .cta-image {
        filter:drop-shadow(0px 3px 0px #D3D3D350);
    }
    .fixedarea_container_sp {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .fixedarea_container_sp {
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }    
    .fixedarea_container_sp.is-visible {
        display: flex;
        flex-direction: row;
        gap: 4px;
        justify-content: center;
        align-content: center;
        width: 100%;
        padding: 1rem .5rem;
        background: #00A6FF;
        backdrop-filter: blur(0px);
        border-radius: 10px 10px 0 0;
        opacity: 1;
        transition: opacity 0.3s;
        pointer-events: auto;
        position: fixed;
        bottom: calc(env(safe-area-inset-bottom) + 0px);
        z-index: 100;
    }
    .fixedarea_container_pc {
        display: none;
    }
}

/* modal */
.js-modal-open {
  cursor: pointer;
}

.layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.layer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.layer.is-open .modal {
    opacity: 1;
    transform: scale(1);
}

.modal {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;

    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.modal__inner {
    position: relative;
}
.modal__image-wrap {
    position: relative;
}
.modal__image-wrap img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.close-button {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #231815;
    cursor: pointer;
}

/* .close-button span {
    position: absolute;
    top: 15px;
    left: 0;
    width: 50px;
    height: 4px;
    background: #231815;
} */

/* .close-button span:first-child {
    transform: rotate(45deg);
}

.close-button span:last-child {
    transform: rotate(-45deg);
} */