@charset "UTF-8";

/*---------------------------------

    common

---------------------------------*/

body {
    color: #222;
    font-family: "Noto Sans JP", sans-serif;
}
.container {
    max-width: 1280px;
}
.font-zen {
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.font-poppins {
    font-family: "Poppins", sans-serif;
}
.bg-pattern {
    background-image: url(../images/bg-pattern.png);
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% auto;
}
.fadeIn {
    translate: 0 20px;
    opacity: 0;
    transition: opacity 0.8s, translate 0.8s;
}
.fadeIn.is-show {
    translate: 0 0;
    opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/*---------------------------------

    header

---------------------------------*/

.mainmenu-area {
    box-shadow: 0 0 10px rgb(0 0 0 / 0.2);
}
.mainmenu-area .nav-row {
    height: 80px;
}
.mainmenu-area .nav-row .nav-logo {
    flex-grow: unset;
    height: inherit;
}
.mainmenu-area .nav-row .nav-logo .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 230px;
    height: inherit;
    padding: 10px 6px 10px 30px;
    background-color: var(--primary-color);
    color: #fff;
}
.mainmenu-area .nav-row .nav-logo .logo > span:first-child {
    font-size: 13px;
}
.mainmenu-area .nav-row .nav-logo .logo > span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 19px;
    font-weight: 500;
}
.mainmenu-area .nav-row .nav-logo .logo > span:last-child span {
    font-size: 28px;
}
.mainmenu-area .nav-row .menu-items {
    display: flex;
    justify-content: start;
    flex-grow: 1;
    height: inherit;
}
.mainmenu-area .nav-row .menu-items>ul {
    flex-grow: 1;
    justify-content: start;
    height: inherit;
    padding-left: 30px;
}
.mainmenu-area .nav-row .menu-items>ul>li {
    height: inherit;
}
.mainmenu-area .nav-row .menu-items>ul>li>a {
    display: inline-grid;
    place-items: center;
    height: inherit;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}
.mainmenu-area .nav-row .menu-items .nav-contact {
    display: flex;
    height: inherit;
    background-color: var(--primary-color);
    color: #fff;
}
.mainmenu-area .nav-row .menu-items .nav-contact .nav-mail {
    display: inline-grid;
    place-items: center;
    width: 86px;
}
.mainmenu-area .nav-row .menu-items .nav-contact .nav-mail:hover {
    opacity: 0.7;
}
.mainmenu-area .nav-row .menu-items .nav-contact .nav-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    position: relative;
    padding: 7px 20px 10px;
    text-align: center;
}
.mainmenu-area .nav-row .menu-items .nav-contact .nav-tel::before {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 1px;
    height: 38px;
    background-color: #fff;
    content: "";
}
.mainmenu-area .nav-row .menu-items .nav-contact .nav-tel a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.mainmenu-area .nav-row .menu-items .nav-contact .nav-tel a::before {
    display: inline-block;
    width: 14px;
    aspect-ratio: 1 / 1;
    background-image: url(../images/icon_tel.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.mainmenu-area .nav-row .menu-items .nav-contact .nav-tel .nav-tel-text {
    display: inline-grid;
    place-items: center;
    padding: 5px 10px;
    border-radius: 7px;
    background-color: #fff;
    color: #555;
}
.mainmenu-area .nav-row .menu-items .nav-contact .nav-tel .nav-tel-text span {
    display: inline-block;
    font-size: 12px;
}
.menu-button {
    display: none;
}
.drawer {
    display: none;
}

@media (max-width: 1300px) {

    .mainmenu-area .nav-row .nav-logo .logo {
        width: 200px;
        padding: 10px 6px 10px 20px;
    }
    .mainmenu-area .nav-row .nav-logo .logo > span:first-child {
        font-size: 12px;
    }
    .mainmenu-area .nav-row .nav-logo .logo > span:last-child {
        font-size: 18px;
    }
    .mainmenu-area .nav-row .nav-logo .logo > span:last-child span {
        font-size: 26px;
    }
    .mainmenu-area .nav-row .menu-items>ul {
        padding-left: 20px;
    }
    .mainmenu-area .nav-row .menu-items>ul>li {
        padding: 0 15px;
    }

}
@media (max-width: 1200px) {

    .mainmenu-area .nav-row .menu-items {
        position: static;
        width: auto;
    }
    .mainmenu-area .nav-row .menu-items>ul {
        padding-left: 15px;
    }

}
@media (max-width: 1200px) {

    .mainmenu-area,
    .mainmenu-area.sticky {
        background-color: var(--primary-color);
    }
    .mainmenu-area .nav-row .menu-items {
        display: none;
    }
    .menu-button {
        display: block;
        position: relative;
        width: 80px;
        height: 80px;
        border: none;
        background-color: var(--primary-color);
    }
    .menu-button span {
        display: inline-block;
        position: absolute;
        left: 50%;
        translate: -50%;
        width: 20px;
        height: 2px;
        background-color: #fff;
        transition: translate 0.3s, rotate 0.3s;
    }
    .menu-button span:nth-child(1) {
        top: 32px;
        transform-origin: top right;
    }
    .menu-button span:nth-child(2) {
        top: 40px;
    }
    .menu-button span:nth-child(3) {
        top: 48px;
        transform-origin: bottom right;
    }
    .menu-button.is-active span {
        width: 25px;
    }
    .menu-button.is-active span:nth-child(1) {
        rotate: -45deg;
        translate: -65%;
    }
    .menu-button.is-active span:nth-child(2) {
        opacity: 0;
    }
    .menu-button.is-active span:nth-child(3) {
        rotate: 45deg;
        translate: -65% 51%;
    }
    .drawer {
        display: block;
        position: fixed;
        inset: 80px 0 0 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        background-color: #fff;
        transition: opacity 0.3s, visibility 0.3s ease-out;
    }
    .drawer.is-open {
        opacity: 1;
        visibility: visible;
    }
    .drawer-inner {
        height: 100%;
        overflow-y: auto;
        padding: 40px;
    }
    .drawer-inner ul {
        display: grid;
        gap: 44px;
        list-style: none;
    }
    .drawer-inner ul li a {
        display: inline-grid;
        place-items: center;
        height: inherit;
        color: #222;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        transition: color 0.3s;
    }
    .drawer-inner ul li a:hover {
        color: var(--primary-color);
    }
    .drawer-inner .nav-contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: fit-content;
        height: inherit;
        padding: 25px 30px 20px;
        margin: 0 auto;
        background-color: var(--primary-color);
        color: #fff;
        margin-top: 40px;
    }
    .drawer-inner .nav-contact .nav-mail {
        display: inline-grid;
        grid-template-columns: auto 1fr;
        gap: 10px;
        place-items: center;
    }
    .drawer-inner .nav-contact .nav-mail:hover {
        opacity: 0.7;
    }
    .drawer-inner .nav-contact .nav-mail span {
        color: #fff;
        font-size: 16px;
    }
    .drawer-inner .nav-contact .nav-tel {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        position: relative;
        padding: 10px;
        margin-top: 20px;
        text-align: center;
    }
    .drawer-inner .nav-contact .nav-tel::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #fff;
        content: "";
    }
    .drawer-inner .nav-contact .nav-tel a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 21px;
        font-weight: 700;
    }
    .drawer-inner .nav-contact .nav-tel a::before {
        display: inline-block;
        width: 14px;
        aspect-ratio: 1 / 1;
        background-image: url(../images/icon_tel.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
    }
    .drawer-inner .nav-contact .nav-tel .nav-tel-text {
        display: inline-grid;
        place-items: center;
        padding: 5px 10px;
        border-radius: 7px;
        background-color: #fff;
        color: #555;
    }
    .drawer-inner .nav-contact .nav-tel .nav-tel-text span {
        display: inline-block;
        font-size: 12px;
    }

}


/*---------------------------------

    footer

---------------------------------*/

.footer-area {
    background-color: unset;
}
.footer-bottom {
    padding: 100px 0 30px;
    border-top: none;
}
.footer-bottom .copyrights {
    color: #B7B7B7;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {

    .footer-bottom {
        padding: 100px 0 10px;
    }

}


/*---------------------------------

    mv

---------------------------------*/

.mv {
    pointer-events: none;
    margin-top: 80px;
}
.mv img {
    width: 100%;
}

/*---------------------------------

    banner

---------------------------------*/

.banner {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 10;
    background-color: #fff;
}
.banner.hidden {
    display: none;
}
.banner a {
    display: block;
    width: 280px;
    transition: opacity 0.3s;
}
.banner a:hover {
    opacity: 0.7;
}
.banner-close {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    translate: -50% -50%;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 5px rgb(0 0 0 / 0.2);
}
.banner-close span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 16px;
    height: 2px;
    background-color: #222;
}
.banner-close span:first-child {
    rotate: 45deg;
}
.banner-close span:last-child {
    rotate: -45deg;
}

@media (max-width: 767px) {

    .banner a {
        width: 210px;
    }
    .banner-close {
        width: 25px;
        height: 25px;
    }
    .banner-close span {
        width: 12px;
    }

}

/*---------------------------------

    problem

---------------------------------*/

.problem-section .section-title .title {
    position: relative;
}
.problem-section .section-title .title::before {
    position: absolute;
    top: -54px;
    left: 50%;
    translate: -50%;
    z-index: -1;
    width: 620px;
    aspect-ratio: 620 / 88;
    background-image: url(../images/bg-text_problems.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.problem-section .feature-box-2-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.problem-section .feature-box-2 .icon {
    display: grid;
    place-items: center;
}
.problem-section .feature-box-2 {
    margin-bottom: 60px;
}
.problem-section .feature-box-2:last-child {
    margin-bottom: 0;
}
.problem-section .feature-box-2 .icon img {
    width: 23px;
}
.problem-section .desc p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
}
.problem-section .premium-backpack {
    width: 337px;
    margin: 0 auto;
    padding: 24px;
}

@media (max-width: 1100px) {

    .problem-section .premium-backpack {
        width: 95%;
    }

}
@media (max-width: 767px) {

    .problem-section .section-title .title::before {
        top: -20px;
        width: 282px;
    }
    .problem-section .feature-box-2 {
        padding-left: 60px;
        margin-bottom: 40px;
    }
    .problem-section .feature-box-2:last-child {
        margin-bottom: 40px;
    }
    .problem-section .feature-box-2 .icon {
        top: 50%;
        translate: 0 -50%;
        width: 40px;
        height: 40px;
        margin: 0 auto 20px;
    }
    .problem-section .feature-box-2 .icon img {
        width: 14px;
    }
    .problem-section .desc p {
        font-size: 16px;
    }

}

/*---------------------------------

    advantage

---------------------------------*/

.advantage-section {
    color: #fff;
}
.advantage-section .section-title .title {
    color: #fff;
}
.advantage-section .section-title h2.title {
    position: relative;
}
.advantage-section .section-title h2.title::before {
    position: absolute;
    top: -45px;
    left: 50%;
    translate: -50%;
    width: 735px;
    aspect-ratio: 735 / 88;
    background-image: url(../images/bg-text_advantages.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.advantage-section .section-title h3.title {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.5;
}
.advantage-section .desc p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.88;
}

@media (max-width: 767px) {

    .advantage-section .section-title h2.title::before {
        top: -20px;
        width: 335px;
    }
    .advantage-section .section-title h3.title {
        font-size: 20px;
    }
    .advantage-section .desc p {
        font-size: 16px;
        font-weight: 500;
    }

}

/*---------------------------------

    services

---------------------------------*/

.services-section .section-title {
    position: relative;
    text-align: left;
    margin-bottom: 30px;
}
.services-section .section-title .title::before {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: -1;
    width: 547px;
    aspect-ratio: 547 / 88;
    background-image: url(../images/bg-text_services.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.services-section .feature-box .icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 64px;
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 100px;
    -webkit-box-shadow: 0px 15px 35px rgba(255, 112, 49, 0.3);
    box-shadow: 0px 15px 35px rgba(255, 112, 49, 0.3);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.services-section .col-sm-6:nth-child(5) .feature-box .icon img {
    translate: 8% 10%;
}
.services-section .col-sm-6:nth-child(6) .feature-box .icon img {
    translate: 6% 3%;
}
.services-section .feature-box .title {
    font-size: 24px;
    font-weight: 500;
}
.services-section .feature-box .desc p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
}
.services-section .feature-image-area {
    padding-left: 60px;
}

@media (max-width: 991px) {

    .services-section .row > .col-lg-7 {
        margin-bottom: 60px;
    }
    .services-section .feature-image-area {
        padding-left: 0;
        text-align: center;
    }
    .services-section .feature-image-area img {
        width: 500px;
        max-width: 100%;
    }

}
@media (max-width: 767px) {

    .services-section .section-title {
        text-align: center;
    }
    .services-section .section-title .title::before {
        top: -20px;
        left: 50%;
        translate: -50%;
        width: 249px;
    }
    .services-section .feature-box .icon {
        width: 54px;
        height: 54px;
    }
    .services-section .feature-box .icon img {
        scale: 0.8;
    }
    .services-section .feature-box .title {
        font-size: 20px;
    }

}
@media (max-width: 575px) {

    .services-section .feature-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 20px;
    }
    .services-section .feature-box .title {
        text-align: center;
    }
    .services-section .feature-box .title .desc {
        width: 100%;
    }

}

/*---------------------------------

    planning

---------------------------------*/

.planning-section .container {
    max-width: 1180px;
}
.planning-section .section-title .title {
    position: relative;
    color: #fff;
}
.planning-section .section-title .title::before {
    position: absolute;
    top: -50px;
    left: 50%;
    translate: -50%;
    z-index: -1;
    width: 666px;
    aspect-ratio: 666 / 88;
    background-image: url(../images/bg-text_planning.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.plan-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.planning-section .row > .col-lg-6:nth-last-child(2) .plan-box .box,
.planning-section .row > .col-lg-6:last-child .plan-box .box {
    margin-bottom: 0;
}
.plan-box .label {
    display: inline-grid;
    width: fit-content;
    font-size: 32px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 24px 24px 0 0;
    color: #fff;
}
.plan-box-type01 .label {
    background-color: #323AF6;
}
.plan-box-type02 .label {
    background-color: #39B901;
}
.plan-box .box {
    flex: 1;
    margin-bottom: 20px;
    background-color: #fff;
}
.plan-box .box .title {
    display: grid;
    place-items: center;
    min-height: 90px;
    padding: 15px;
    margin-bottom: 0;
    font-size: 32px;
    text-align: center;
}
.plan-box .box .price-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
}
.plan-box .box .price-area::after {
    display: inline-block;
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    translate: -50%;
    width: 37px;
    height: 30px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    content: "";
}
.plan-box-type01 .box .price-area {
    background-color: #323AF6;
}
.plan-box-type01 .box .price-area::after {
    background-color: #323AF6;
}
.plan-box-type02 .box .price-area {
    background-color: #39B901;
}
.plan-box-type02 .box .price-area::after {
    background-color: #39B901;
}
.plan-box .box .label-text {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0;
}
.plan-box .box .label-text span {
    display: inline-grid;
    place-items: center;
    width: 108px;
    height: 38px;
    font-weight: 700;
}
.plan-box .box .label-text span:first-child {
    font-size: 22px;
    color: #fff;
}
.plan-box .box .label-text span:last-child {
    background-color: #fff;
    color: #39B901;
    font-size: 19px;
}
.plan-box-type01 .box .label-text span:first-child {
    border: 1px solid #39B901;
    background-color: #39B901;
}
.plan-box-type02 .box .label-text span:first-child {
    border: 1px solid #fff;
    background-color: #39B901;
}
.plan-box .box .price {
    margin-bottom: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
}
.plan-box .box .price span {
    display: inline-block;
    translate: 0 3px;
    padding-right: 30px;
    font-size: 80px;
}
.plan-box .box .annotation {
    position: absolute;
    bottom: 6px;
    right: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: right;
}
.plan-box .box .media {
    display: grid;
    grid-template-columns: 40% 60%;
    padding: 30px;
    background-color: #fff;
}
.plan-box .box .media .text-area {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}
.plan-box .box .media .sub-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}
.plan-box .box .media p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.plan-box .box .media .button-area {
    margin-top: auto;
}
.plan-box .box .media .button-area .button {
    display: inline-grid;
    place-items: center;
    width: 100%;
    max-width: 300px;
    height: 60px;
    border: 1px solid currentColor;
    background-color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.plan-box .box .media .button-area .button:hover {
    color: #fff;
}
.plan-box-type01 .box .media .button-area .button {
    color: #323AF6;
}
.plan-box-type01 .box .media .button-area .button:hover {
    background-color: #323AF6;
}
.plan-box-type02 .box .media .button-area .button {
    color: #39B901;
}
.plan-box-type02 .box .media .button-area .button:hover {
    background-color: #39B901;
}

@media (max-width: 1100px) {

    .plan-box .label {
        font-size: 28px;
    }
    .plan-box .box .title {
        font-size: 28px;
    }
    .plan-box .box .price-area {
        gap: 60px;
    }
    .plan-box .box .price-area::after {
        width: 35px;
        height: 25px;
    }
    .plan-box .box .label-text span:first-child {
        font-size: 20px;
    }
    .plan-box .box .label-text span:last-child {
        font-size: 18px;
    }
    .plan-box .box .price {
        font-size: 36px;
    }
    .plan-box .box .price span {
        font-size: 75px;
    }
    .plan-box .box .media .button-area .button {
        font-size: 20px;
    }

}
@media (max-width: 991px) {

    .planning-section .row > .col-lg-6:nth-last-child(2) .plan-box .box {
        margin-bottom: 20px;
    }

}
@media (max-width: 767px) {

    .planning-section .section-title h2.title::before {
        top: -20px;
        width: 303px;
    }
    .plan-box .label {
        border-radius: 12px 12px 0 0;
        font-size: 20px;
    }
    .plan-box .box .title {
        min-height: 70px;
        font-size: 24px;
    }
    .plan-box .box .price-area {
        gap: 20px;
        padding: 20px;
    }
    .plan-box .box .price-area::after {
        width: 28px;
        height: 20px;
    }
    .plan-box .box .label-text span:first-child {
        width: 90px;
        height: 30px;
        font-size: 16px;
    }
    .plan-box .box .label-text span:last-child {
        width: 90px;
        height: 30px;
        font-size: 15px;
    }
    .plan-box .box .price {
        font-size: 22px;
    }
    .plan-box .box .price span {
        padding-right: 15px;
        font-size: 64px;
    }
    .plan-box .box .media {
        position: relative;
        padding: 30px 20px 100px;
    }
    .plan-box .box .media p {
        font-size: 14px;
    }
    .plan-box .box .media .button-area {
        position: absolute;
        bottom: 30px;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .plan-box .box .media .button-area .button {
        height: 50px;
        font-size: 18px;
    }

}

/*---------------------------------

    modal

---------------------------------*/

.cm-modal {
	display: none;
	position: fixed;
    inset: 0;
    z-index: 1000;
}
.cm-modal.is-open {
    display: grid;
	place-items: center;
}
.cm-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.6);
}
.cm-modal-container {
	position: relative;
	width: 90%;
    max-width: 640px;
    max-height: 80vh;
    padding: 60px;
    overflow-y: auto;
    background-color: #fff;
}
.cm-modal-button {
	position: absolute;
    top: 30px;
	right: 24px;
	width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
	cursor: pointer;
}
.cm-modal-button::before,
.cm-modal-button::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #fff;
    content: "";
}
.cm-modal-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.cm-modal-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.cm-modal-type01 .cm-modal-button {
    background-color: #323AF6;
}
.cm-modal-type02 .cm-modal-button {
    background-color: #39B901;
}
.cm-modal-type03 .cm-modal-button {
    background-color: #FF6B31;
}
.cm-modal-title {
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
}
.cm-modal-sub-title {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.5;
}
.cm-modal-sub-title02 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.5;
}
.cm-modal-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.cm-modal-list {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.cm-modal-list02 {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}
.cm-modal-list02 dt {
    width: 130px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}
.cm-modal-list02 dd {
    width: calc(100% - 130px);
    font-size: 16px;
    line-height: 1.4;
}
.cm-modal-list02 dd .cm-modal-img {
    margin: 0 0 20px;
}
.cm-modal-list02 dd .cm-modal-img:last-child {
    margin: 0;
}
.cm-modal-color-text {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}
.cm-modal-type01 .cm-modal-color-text {
    color: #323AF6;
}
.cm-modal-type02 .cm-modal-color-text {
    color: #39B901;
}
.cm-modal-img {
    margin: 30px 0;
}
.cm-modal-img img {
    width: 100%;
}
.cm-modal-close {
    margin-top: 50px;
    text-align: center;
}
.cm-modal-close .button {
    display: inline-grid;
    place-items: center;
    min-width: 170px;
    min-height: 40px;
    padding: 5px 10px;
    border: 1px solid #FF6B31;
    background-color: #FF6B31;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.cm-modal-close .button:hover {
    background-color: #fff;
    color: #FF6B31;
}

@media (max-width: 767px) {

    .cm-modal-container {
        padding: 60px 30px;
    }
    .cm-modal-button {
        top: 20px;
        right: 16px;
    }
    .cm-modal-title {
        margin-bottom: 30px;
        font-size: 24px;
    }
    .cm-modal-sub-title {
        font-size: 20px;
    }
    .cm-modal-color-text {
        font-size: 20px;
    }
    .cm-modal-list02 dt {
        width: 100%;
        margin-bottom: 5px;
    }
    .cm-modal-list02 dd {
        width: 100%;
        margin-bottom: 20px;
    }
    .cm-modal-list02 dd:last-child {
        margin-bottom: 0;
    }

}

/*---------------------------------

    works

---------------------------------*/

.works-section {
    padding-top: 160px;
}
.works-section .section-title .title {
    position: relative;
}
.works-section .section-title .title::before {
    position: absolute;
    top: -60px;
    left: 50%;
    z-index: -1;
    translate: -50%;
    width: 438px;
    aspect-ratio: 438 / 88;
    background-image: url(../images/bg-text_works.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.works-section .testimonial-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 30px;
    box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.05);
}
.works-section .testimonial-box .date {
    font-size: 14px;
    font-weight: 500;
}
.works-section .testimonial-box .thumb {
    margin-top: 10px;
    margin-bottom: 10px;
}
.works-section .testimonial-box .thumb img {
    width: 100%;
}
.works-section .testimonial-box .title {
    font-size: 14px;
    line-height: 1.5;
}
.works-section .testimonial-box .text {
    margin-bottom: auto;
    font-size: 14px;
    line-height: 1.5;
}
.works-section .testimonial-box .button-area {
    margin-top: 10px;
    text-align: center;
}
.works-section .testimonial-box .button-area .button {
    display: inline-grid;
    place-items: center;
    min-width: 170px;
    min-height: 40px;
    padding: 5px 10px;
    border: 1px solid #FF6B31;
    background-color: #FF6B31;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.works-section .testimonial-box .button-area .button:hover {
    background-color: #fff;
    color: #FF6B31;
}
.works-slider {
    padding-bottom: 90px;
}
.works-slider .splide__track {
    padding: 30px 0;
}
.works-slider .splide__arrow {
    position: absolute;
    top: unset;
    bottom: 0;
    right: 0;
    transform: unset;
    opacity: 1;
    width: 50px;
    height: 50px;
    line-height: 48px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-color);
    -webkit-box-shadow: 0px 0px 0px rgb(255 112 49 / 30%);
    box-shadow: 0px 0px 0px rgb(255 112 49 / 30%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.works-slider .splide__arrow--prev {
    right: 65px;
    left: unset;
}
.works-slider .splide__arrow:disabled {
    opacity: 0.3;
}
.works-slider .splide__arrow svg path {
    fill: #fff;
}

@media (max-width: 767px) {

    .works-section {
        padding-top: 80px;
    }
    .works-section .section-title .title::before {
        top: -20px;
        width: 200px;
    }
    .works-slider {
        padding-bottom: 50px;
    }
    .works-slider .splide__arrow {
        width: 40px;
        height: 40px;
    }
    .works-slider .splide__arrow--prev {
        right: 54px;
    }
    .works-slider .splide__arrow svg {
        width: 1.1em;
        height: 1.1em;
    }

}

/*---------------------------------

    flow

---------------------------------*/

.flow-section .play-image-box {
    margin-bottom: 60px;
}
.flow-section .play-vr-image {
    position: relative;
}
.flow-section .play-vr-image::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    translate: -49% -51%;
    width: 812px;
    aspect-ratio: 812 / 214;
    background-image: url(../images/bg-text_flow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.flow-section .play-vr-image img {
    position: relative;
    z-index: 1;
    width: 208px;
    border-radius: 50%;
    translate: 4px;
}
.flow-section .feature-box-1 .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}
.flow-section .feature-box-1 .desc p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1300px) {

    .flow-section .play-vr-image::before {
        width: 730px;
    }
    .flow-section .play-vr-image img {
        width: 188px;
        translate: 2px;
    }

}
@media (max-width: 1000px) {

    .flow-section .play-vr-image::before {
        width: 620px;
    }
    .flow-section .play-vr-image img {
        width: 158px;
        translate: 0;
    }

}
@media (max-width: 767px) {

    .flow-section .play-vr-image::before {
        width: 330px;
    }
    .flow-section .play-vr-image img {
        width: 84px;
    }

}
@media (max-width: 575px) {

    .flow-section .play-step-boxes:before {
        content: none;
    }

}

/*---------------------------------

    faq

---------------------------------*/

.faq-section .section-title .title {
    position: relative;
    margin-bottom: 100px;
}
.faq-section .section-title .title::before {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: -1;
    width: 232px;
    aspect-ratio: 232 / 100;
    background-image: url(../images/bg-text_faq.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.faq-section .faq-tabs li button {
    font-size: 14px;
    text-align: left;
}
.faq-section .accordion .item .title {
    font-size: 16px;
}
.faq-section .accordion .item .desc p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1300px) {

    .faq-section .section-title .title::before {
        width: 208px;
    }

}
@media (max-width: 1000px) {

    .faq-section .section-title .title::before {
        top: -35px;
        width: 156px;
    }

}
@media (max-width: 767px) {

    .faq-section .section-title {
        text-align: center !important;
    }
    .faq-section .faq-tabs {
        flex-direction: row;
        gap: 7px 20px;
        max-width: unset;
    }
    .faq-section .faq-tabs li {
        width: 220px;
        max-width: calc(50% - 10px);
    }
    .faq-section .section-title .title {
        margin-bottom: 60px;
    }
    .faq-section .section-title .title::before {
        top: -15px;
        left: 50%;
        translate: -50%;
        width: 60px;
    }

}

/*---------------------------------

    summary

---------------------------------*/

.summary-section .summary-details {
    height: 100%;
    padding: 40px;
    background-color: #FFF5F2;
}
.summary-section .summary-details .title {
    font-weight: 500;
    margin-bottom: 40px;
}
.summary-section .summary-details-table th,
.summary-section .summary-details-table td {
    border-bottom: 1px solid rgb(112 112 112 / 0.27);
    line-height: 1.5;
}
.summary-section .summary-details-table th {
    width: 70px;
    padding: 10px 5px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.summary-section .summary-details-table td {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
}
.summary-section .summary-details-table tr:first-child th,
.summary-section .summary-details-table tr:first-child td {
    padding-top: 0;
}
.summary-section .summary-details-title {
    font-size: 16px;
}
.summary-section .summary-details-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.summary-section .summary-message {
    padding: 40px;
    background-color: #ED7443;
    color: #fff;
}
.summary-section .summary-message .title {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}
.summary-section .summary-message .desc p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}
.summary-section .summary-message .desc p:last-child {
    margin-top: 40px;
    text-align: right;
}

@media (max-width: 767px) {

    .summary-section .summary-details {
        padding: 30px;
    }
    .summary-details-table {
        width: 100%;
        margin-bottom: 30px;
    }
    .summary-section .summary-details .title {
        font-size: 24px;
    }
    .summary-section .summary-message {
        padding: 30px;
    }
    .summary-section .summary-message .title {
        font-size: 24px;
    }

}

/*---------------------------------

    contact

---------------------------------*/

.contact-section {
    padding-top: 40px;
    padding-bottom: 40px;
    color: #fff;
    text-align: center;
}
.contact-section .section-title {
    margin-bottom: 0;
}
.contact-section .section-title .title {
    color: #fff;
    margin-bottom: 30px;
}
.contact-section p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/*---------------------------------

    contact-detail

---------------------------------*/

.contact-detail-section .contact-info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.contact-detail-section .contact-info-box:hover {
    background-color: #FFF5F2;
}
.contact-detail-section .contact-info-box:hover > * {
    color: var(--heading-color);
}
.contact-detail-section .desc {
    display: grid;
    place-items: center;
    min-height: 50px;
    margin-top: 30px;
}
.contact-detail-section .desc p {
    font-size: 22px;
}
.contact-detail-section .button-area {
    width: 100%;
    margin-top: 30px;
}
.contact-detail-section .button {
    display: inline-grid;
    place-items: center;
    min-width: 240px;
    min-height: 50px;
    padding: 5px 10px;
    border: 1px solid #FF6B31;
    background-color: #FF6B31;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.contact-detail-section .button.line {
    border-color: #20B900;
    background-color: #20B900;
}
.contact-detail-section .button:hover {
    background-color: #fff;
    color: #FF6B31;
}
.contact-detail-section .button.line:hover {
    background-color: #fff;
    color: #20B900;
}

@media (max-width: 1200px) {

    .contact-detail-section .title {
        font-size: 22px;
    }

}
@media (max-width: 1000px) {

    .contact-info-box {
        padding: 24px;
    }
    .contact-detail-section .title {
        font-size: 22px;
    }
    .contact-detail-section .desc p {
        font-size: 17px;
    }
    .contact-detail-section .button {
        width: 100%;
        min-width: unset;
        font-size: 17px;
    }

}
@media (max-width: 767px) {

    .contact-detail-section .button {
        width: auto;
        min-width: 200px;
        min-height: 40px;
    }

}
