﻿@charset "UTF-8";

/* 全体 */
:root {
    --yellow: #ffd700;
    --creme: #fff4a3;
    --lightGray: #eaeaea;
    --gray: #b7b8bc;
    --black: #212121;
    --blue: #007aff;
    --red: #ff3b30;
    --marker: linear-gradient(transparent 65%, #ffea7b 65%);
    --transition: 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

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

b,
em,
strong {
    font-weight: 700;
    font-style: normal;
}

a {
    color: var(--black);
    text-decoration: none;
}

    a:active {
        color: var(--black);
    }

#deqwas-screen {
    display: none;
    height: 0;
    overflow: hidden;
}

.inner {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

/* モーダルのマスク背景 */
.mask {
    position: fixed;
    inset: 0;
    background-color: rgba(33, 33, 33, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 101;
}

    .mask.active {
        opacity: 1;
        visibility: visible;
    }

/* フローティングメニュー */
.floatingMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 103px;
    display: grid;
    place-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 100;
    translate: 0 100%;
    transition: var(--transition);
}

    .floatingMenu .floatingMenuInner {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1245px;
        margin: 0 auto;
    }

        .floatingMenu .floatingMenuInner img {
            width: 100%;
        }

        .floatingMenu .floatingMenuInner .promo {
            width: 18.87%;
            margin-right: 1.2%;
        }

        .floatingMenu .floatingMenuInner .install-app {
            width: auto;
            height: 61px;
            margin-right: 1.6%;
        }

@media (hover: hover) {
    .floatingMenu .floatingMenuInner .install-app {
        transition: var(--transition);
    }

        .floatingMenu .floatingMenuInner .install-app:hover {
            opacity: 0.8;
        }
}

.floatingMenu .floatingMenuInner .install-app img {
    height: 100%;
    width: auto;
}

.floatingMenu .floatingMenuInner .floatingMenuOpen {
    width: 6.22%;
    cursor: pointer;
}

@media (hover: hover) {
    .floatingMenu .floatingMenuInner .floatingMenuOpen {
        transition: var(--transition);
    }

        .floatingMenu .floatingMenuInner .floatingMenuOpen:hover {
            opacity: 0.8;
        }
}

.floatingMenu .floatingMenuInner .floatingMenuOpen img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.floatingMenu.active {
    translate: none;
}

@media (hover: hover) {
    .floatingMenu .floatingMenuInner .install-app {
        transition: var(--transition);
    }

        .floatingMenu .floatingMenuInner .install-app:hover {
            opacity: 0.8;
        }

    .floatingMenu .floatingMenuInner .floatingMenuOpen {
        transition: var(--transition);
    }

        .floatingMenu .floatingMenuInner .floatingMenuOpen:hover {
            opacity: 0.8;
        }
}

/* グローバルメニュー */
.globalMenu {
    position: fixed;
    z-index: 102;
    top: 50%;
    translate: 100% -55%;
    right: 0;
    max-width: 424px;
    max-height: 80vh;
    background-color: #fff;
    padding: 40px 35px;
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
    overflow-y: auto;
    overscroll-behavior-y: none;
    transition: var(--transition);
}

    .globalMenu .forBusinesses {
        padding: 0 0 16px;
    }

        .globalMenu .forBusinesses .btn-toB {
            width: 100%;
            font-size: 20px;
            padding: 1.2em 1em;
        }

    .globalMenu ul li {
        border-bottom: 1px solid var(--gray);
        height: 64px;
    }

        .globalMenu ul li:nth-of-type(3) {
            height: 90px;
        }

        .globalMenu ul li a {
            display: flex;
            height: inherit;
            flex-direction: column;
            justify-content: center;
            padding-left: 7px;
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            position: relative;
        }

.new-feature-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

    .new-feature-flex div {
        width: 48px;
        height: 48px;
        background: #212121;
        border-radius: 99px;
        color: #ffd700;
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        line-height: 48px;
    }

    .new-feature-flex a {
        flex: auto;
    }

@media screen and (max-width: 750px) {
    .new-feature-flex div {
        width: 40px;
        height: 40px;
        font-size: 10px;
        line-height: 40px;
    }
}

.globalMenu.active {
    translate: 0% -55%;
}

@media (hover: hover) {
    .globalMenu ul li a {
        transition: var(--transition);
    }

        .globalMenu ul li a:hover {
            opacity: 0.8;
        }
}

.globalMenu ul li a::after {
    content: "";
    display: block;
    width: 32px;
    aspect-ratio: 1;
    background-image: url(../img/floating-menu-arrow-down.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 3px;
    translate: 0 -50%;
}

.globalMenu ul li a span {
    font-size: 14px;
    font-weight: normal;
    margin-top: 8px;
}

.globalMenu .globalMenuBottoms .promo {
    display: block;
    margin: 40px auto 8px;
    width: 82.48%;
}

.globalMenuBottomsInner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.globalMenu .globalMenuBottoms .install-app {
    width: auto;
    margin-right: 1.6%;
}

@media (hover: hover) {
    .globalMenu .globalMenuBottoms .install-app {
        transition: var(--transition);
    }

        .globalMenu .globalMenuBottoms .install-app:hover {
            opacity: 0.8;
        }
}

.globalMenu .globalMenuBottoms .install-app img {
    width: 100%;
}

.globalMenu .globalMenuBottoms .install-app + .install-app {
    margin-top: 10px;
}

.globalMenu .globalMenuBottoms .globalMenuForBusinesses {
    display: block;
    width: 100%;
    margin-bottom: 22px;
    cursor: pointer;
}

@media (hover: hover) {
    .globalMenu .globalMenuBottoms .globalMenuForBusinesses {
        transition: var(--transition);
    }

        .globalMenu .globalMenuBottoms .globalMenuForBusinesses:hover {
            opacity: 0.8;
        }
}

.globalMenu .globalMenuBottoms .globalMenuForBusinesses img {
    width: 100%;
}

/* メニューの閉じるボタン */
.globalMenuClose {
    width: 70px;
    position: fixed;
    right: 18px;
    translate: 0 -25%;
    transition: var(--transition);
    transition-property: opacity, scale;
    z-index: 102;
    scale: 0.95;
    opacity: 0;
    cursor: pointer;
    visibility: hidden;
}

    .globalMenuClose.active {
        scale: 1;
        opacity: 1;
        visibility: visible;
    }

    .globalMenuClose img {
        width: 100%;
    }

/* fv改修 */
.reHeader {
    background: var(--black);
    height: auto;
}

    .reHeader .reHeader-container {
        max-width: 1080px;
        width: 89.33%;
        height: 80px;
        margin: 0 auto;
        padding: 1.6em 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
    }

        .reHeader .reHeader-container img {
            width: 124px;
            height: 33px;
            margin-right: auto;
        }

        .reHeader .reHeader-container .reHeader-link {
            color: #fff;
        }

        .reHeader .reHeader-container .reHeader-btn {
            display: flex;
            padding: 8px 24px 8px 32px;
            gap: 8px;
            background: var(--blue);
            font-size: 14px;
            font-weight: 700;
            line-height: 1.2;
            border-radius: calc(1px / 0);
            transition: var(--transition);
            align-items: center;
        }

@media (hover: hover) {
    .reHeader .reHeader-container .reHeader-btn:hover {
        transition: var(--transition);
        opacity: 0.8;
    }
}

.reHeader .reHeader-container .reHeader-btn svg {
    height: 12px;
}

.reHeader .reHeader-container .reHeader-btn .reHeader-btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .reHeader .reHeader-container .reHeader-btn .reHeader-btn-text p {
        margin-bottom: 2px;
        display: block;
        color: #fff;
    }

        .reHeader .reHeader-container .reHeader-btn .reHeader-btn-text p span {
            display: inline-flex;
            width: fit-content;
            padding: 2px 8px 2px 12px;
            border-radius: calc(1px / 0);
            background: #fff;
            color: var(--blue);
            font-size: 12px;
        }

.reFv {
    padding: 24px 24px 0;
    overflow: hidden;
    position: relative;
    background: var(--yellow);
}

    .reFv .reFv-circle {
        position: absolute;
        z-index: 0;
    }

    .reFv .reFv-circle1 {
        top: -10%;
        left: -10%;
    }

    .reFv .reFv-circle2 {
        bottom: -10%;
        right: -16%;
    }

    .reFv .reFv-circle3 {
        display: none;
    }

    .reFv .reFv-outer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        max-width: calc(1080px + 48px);
        margin: 0 auto;
        z-index: 2;
        position: relative;
    }

        .reFv .reFv-outer .reFv-img {
            width: 52%;
            object-fit: contain;
        }

        .reFv .reFv-outer .reFv-imgSp {
            display: none;
        }

        .reFv .reFv-outer .reFv-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 16px;
            width: 40%;
            color: var(--black);
        }

            .reFv .reFv-outer .reFv-container .reFv-title {
                width: 100%;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .reFv .reFv-outer .reFv-container .reFv-title-h3 {
                width: 58%;
            }

            .reFv .reFv-outer .reFv-container .reFv-title-h2 {
                width: 66%;
            }

            .reFv .reFv-outer .reFv-container .reFv-title-no1 {
                width: 100%;
            }

.LPO-FVreview {
    width: 100%;
}

    .LPO-FVreview h4 {
        display: none;
        margin-bottom: -12px;
        text-align: center;
        font-weight: 700;
        font-size: 4.8dvw;
    }

.btns {
    display: flex;
    justify-content: center;
    width: 84%;
    gap: 8px;
}

    .btns img {
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

.reFv .annotation {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    text-align: justify;
}

.LPO-toBlink {
    display: flex;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid var(--blue);
    justify-content: center;
    opacity: 1;
    margin-top: -8px;
    padding: 0 0 2px;
    font-size: 12px;
    color: var(--blue);
    font-weight: 700;
    transition: ease-in-out .4s;
}

    .LPO-toBlink:hover {
        transition: ease-in-out .4s;
        opacity: 0.8;
    }

@media screen and (max-width: 750px) {
    .LPO-toBlink {
        display: none;
    }
}

/* Swiperのスタイル */
.swiperWrapper {
    position: relative;
}

    .swiperWrapper
    .swiper-pagination-bullets.swiper-pagination-horizontal
    .swiper-pagination-bullet {
        background-color: var(--gray);
        opacity: 1;
        width: 12px;
        height: 12px;
    }

        .swiperWrapper
        .swiper-pagination-bullets.swiper-pagination-horizontal
        .swiper-pagination-bullet + .swiper-pagination-bullet {
            margin-left: 20px;
        }

        .swiperWrapper
        .swiper-pagination-bullets.swiper-pagination-horizontal
        .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: var(--black);
        }

    .swiperWrapper .swiper-button-prev,
    .swiperWrapper .swiper-button-next {
        width: 50px;
        height: 50px;
        outline: none;
    }

        .swiperWrapper .swiper-button-prev::after,
        .swiperWrapper .swiper-button-next::after {
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .swiperWrapper .swiper-button-prev::after {
            background-image: url(../img/slider-prev-icon.png);
        }

        .swiperWrapper .swiper-button-next::after {
            background-image: url(../img/slider-next-icon.png);
        }

    .swiperWrapper .swiper {
        margin: 0 auto;
        overflow: visible;
    }

        .swiperWrapper .swiper .swiper-slide {
            transition: 0.1s;
            transition-property: opacity, scale;
        }

/* 例えばこんなお仕事が */
.exampleWorks {
    padding: 100px 20px 90px;
}

    .exampleWorks h2 {
        text-align: center;
        font-weight: 700;
        font-size: 32px;
        background-image: var(--marker);
        display: block;
        width: max-content;
        margin: 0 auto 32px;
    }

        .exampleWorks h2 b {
            font-size: 46px;
        }

    .exampleWorks .subtitle {
        display: block;
        width: 65.3%;
        margin: 0 auto 23px;
    }

    .exampleWorks .workList {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 26px;
    }

        .exampleWorks .workList li {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

            .exampleWorks .workList li .heads > img {
                width: 100%;
            }

            .exampleWorks .workList li .heads h3 {
                font-size: 16px;
                font-weight: 700;
                margin-top: 8px;
            }

            .exampleWorks .workList li .bottoms {
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
            }

            .exampleWorks .workList li .time {
                font-size: 15px;
            }

            .exampleWorks .workList li .salary {
                font-weight: 700;
                font-size: 22px;
            }

    .exampleWorks .more {
        margin-top: 30px;
        position: relative;
    }

        .exampleWorks .more a {
            display: block;
            width: 58.57%;
            position: absolute;
            bottom: 5%;
            left: 50%;
            translate: -50% 0;
        }

        .exampleWorks .more picture {
            display: block;
            width: 100%;
            height: 100%;
            aspect-ratio: 889 / 158;
        }

        .exampleWorks .more img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

/* CTAボタン */
.btn-more {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
    padding: 1em;
    width: 58.57%;
    background: var(--blue);
    color: #fff;
    text-align: center;
    letter-spacing: 0.08em;
    border-radius: calc(1px / 0);
    box-shadow: #0054af 0px 8px 0px 0px;
    transition: var(--transition);
}

    .btn-more .btn-more-text1 {
        font-size: 24px;
        font-weight: 700;
    }

    .btn-more .btn-more-text2 {
        font-size: 14px;
    }

@media (hover: hover) {
    .btn-more:hover {
        transition: var(--transition);
        box-shadow: none;
        opacity: 0.8;
    }

    .exampleWorks .more a {
        transition: var(--transition);
    }

        .exampleWorks .more a:hover {
            opacity: 0.8;
        }
}

@media screen and (max-width: 750px) {
    .btn-more {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .btn-more .btn-more-text1 {
        font-size: 20px;
    }

    .btn-more .btn-more-text2 {
        font-size: 12px;
    }
}

/* 他にも色々な業種のお仕事が見つかる！ */
.otherWorks {
    background-color: var(--yellow);
    padding: 100px 0;
}

    .otherWorks .titleWrapper {
        text-align: center;
        margin-bottom: 55px;
    }

        .otherWorks .titleWrapper h2 {
            font-weight: bold;
            display: inline;
            font-size: 32px;
            background-image: linear-gradient(transparent 55%, #fff 55%);
        }

            .otherWorks .titleWrapper h2 b {
                font-size: 46px;
            }

    .otherWorks .workList {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 21px 27px;
    }

        .otherWorks .workList li img {
            width: 100%;
        }

        .otherWorks .workList li h3 {
            font-weight: 700;
            margin-top: 8px;
            margin-bottom: 3px;
            font-size: 18px;
        }

        .otherWorks .workList li p {
            font-size: 14px;
        }

        .otherWorks .workList li:nth-of-type(9) {
            grid-row: 3;
            grid-column: 2;
        }

        .otherWorks .workList li:nth-of-type(10) {
            grid-row: 3;
            grid-column: 3;
        }

    .otherWorks .btn-more {
        margin-top: 32px;
    }

/* 幅広い年代のワーカーさんが活躍中！ */
.wideRangeAges {
    padding: 100px 0 130px;
    overflow-x: hidden;
}

    .wideRangeAges .inner h2 {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
    }

        .wideRangeAges .inner h2 span {
            background-image: var(--marker);
        }

        .wideRangeAges .inner h2 b {
            font-size: 46px;
        }

    .wideRangeAges .inner .graph {
        display: block;
        width: 83.63%;
        margin-top: 55px;
        margin-left: auto;
    }

    .wideRangeAges .inner .ages {
        font-weight: 700;
        display: flex;
        gap: 8px;
        max-width: 670px;
        margin: 50px auto 23px;
    }

        .wideRangeAges .inner .ages li {
            flex: 1;
            font-size: 20px;
            height: 42px;
            background-color: var(--lightGray);
            border-radius: 999px;
            text-align: center;
            border: 1px solid var(--black);
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: var(--transition);
        }

            .wideRangeAges .inner .ages li.active {
                background-color: var(--black);
                color: #fff;
            }

            .wideRangeAges .inner .ages li b {
                font-size: 26px;
            }

    .wideRangeAges
    .swiperWrapper
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -43px;
    }

    .wideRangeAges .swiperWrapper .swiper {
        max-width: 690px;
    }

        .wideRangeAges .swiperWrapper .swiper .swiper-slide {
            border: 21px solid var(--yellow);
            border-radius: 28px;
            padding: 20px;
            display: flex;
            gap: 25px;
            height: auto;
        }

            .wideRangeAges .swiperWrapper .swiper .swiper-slide:not(.swiper-slide-active) {
                opacity: 0.3;
                scale: 0.8;
                translate: 1% 10%;
            }

            .wideRangeAges
            .swiperWrapper
            .swiper
            .swiper-slide.swiper-slide-active + .swiper-slide {
                translate: -1% 10%;
            }

            .wideRangeAges .swiperWrapper .swiper .swiper-slide .person {
                flex: 1;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .personHeads {
                    display: flex;
                    align-items: flex-end;
                    gap: 4.13%;
                    margin-bottom: 25px;
                }

                    .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .personHeads img {
                        width: 34.48%;
                    }

                    .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .personHeads h3 {
                        font-size: 17px;
                        font-weight: 700;
                        line-height: 1.3;
                        margin-bottom: 13px;
                    }

                    .wideRangeAges
                    .swiperWrapper
                    .swiper
                    .swiper-slide
                    .person
                    .personHeads
                    .kinds {
                        display: flex;
                        gap: 5px;
                    }

                        .wideRangeAges
                        .swiperWrapper
                        .swiper
                        .swiper-slide
                        .person
                        .personHeads
                        .kinds
                        p {
                            background-color: var(--black);
                            padding: 4px 8px 6px;
                            color: #fff;
                            line-height: 1;
                            font-size: 13px;
                            height: 100%;
                        }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .workingHours {
                    font-size: 15px;
                    font-weight: 700;
                    line-height: 1;
                }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .income {
                    font-size: 16px;
                    font-weight: 700;
                    margin-top: -3px;
                }

                    .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .income em {
                        color: var(--red);
                    }

                        .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .income em span {
                            font-size: 32px;
                        }

                    .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .income b {
                        font-size: 23px;
                    }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .impressions {
                    font-size: 15px;
                    background-color: var(--lightGray);
                    padding: 15px 20px;
                    margin-top: 10px;
                    line-height: 1.33;
                    height: 100%;
                }

    .wideRangeAges .swiperWrapper .swiper-button-prev {
        left: -40px;
    }

    .wideRangeAges .swiperWrapper .swiper-button-next {
        right: -40px;
    }

/* さらに嬉しいタイミーの特長 */
.feature {
    background-color: var(--lightGray);
    padding: 88px 0 100px;
}

    .feature h2 {
        text-align: center;
    }

        .feature h2 img {
            width: 42.34%;
        }

    .feature .featureList {
        margin-top: 50px;
        display: grid;
        gap: 30px;
    }

        .feature .featureList li {
            width: 75.51%;
            background-color: #fff;
            padding-top: 24px;
            border-radius: 25px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            position: relative;
        }

            .feature .featureList li .number {
                position: absolute;
                top: 0;
                width: 21.62%;
                translate: 0 -20.8%;
            }

            .feature .featureList li .texts {
                padding-bottom: 60px;
                max-width: 335px;
            }

                .feature .featureList li .texts h3 {
                    font-size: 24px;
                    line-height: 1.4;
                    font-weight: 700;
                    margin-bottom: 5px;
                }

                    .feature .featureList li .texts h3 span {
                        font-size: 30px;
                    }

                .feature .featureList li .texts p {
                    font-size: 16px;
                    line-height: 1.75;
                }

            .feature .featureList li .featureImage {
                width: 34%;
            }

            .feature .featureList li:nth-of-type(odd) {
                padding-right: 9.8%;
                padding-left: 6%;
            }

                .feature .featureList li:nth-of-type(odd) .number {
                    left: 5.4%;
                }

            .feature .featureList li:nth-of-type(even) {
                margin-left: auto;
                padding-right: 6%;
                padding-left: 9.8%;
            }

                .feature .featureList li:nth-of-type(even) .number {
                    right: 4%;
                }

            .feature .featureList li:nth-of-type(2) .number {
                width: 23.64%;
            }

            .feature .featureList li:nth-of-type(2) .texts {
                padding-bottom: 40px;
            }

            .feature .featureList li:nth-of-type(3) .number {
                width: 23.64%;
            }

            .feature .featureList li:nth-of-type(3) .texts {
                max-width: 305px;
                padding-bottom: 45px;
            }

                .feature .featureList li:nth-of-type(3) .texts h3 {
                    margin-bottom: 10px;
                }

            .feature .featureList li:nth-of-type(4) .number {
                width: 24.4%;
            }

            .feature .featureList li:nth-of-type(4) .texts {
                max-width: 305px;
                padding-bottom: 50px;
            }

                .feature .featureList li:nth-of-type(4) .texts h3 {
                    margin-bottom: 10px;
                }

            .feature .featureList li:nth-of-type(5) .texts {
                max-width: 352px;
            }

                .feature .featureList li:nth-of-type(5) .texts h3 {
                    margin-bottom: 10px;
                }

            .feature .featureList li:nth-of-type(6) .number {
                width: 24.4%;
            }

            .feature .featureList li:nth-of-type(6) .texts {
                max-width: 305px;
                padding-bottom: 50px;
            }

                .feature .featureList li:nth-of-type(6) .texts h3 {
                    position: relative;
                    margin-bottom: 10px;
                    z-index: 10;
                }

            .feature .featureList li:nth-of-type(6) .featureImage {
                width: 70%;
            }

            .feature .featureList li.new-feature {
                position: relative;
                padding-bottom: 24px;
            }

                .feature .featureList li.new-feature .texts {
                    padding-bottom: 30px;
                }

                    .feature .featureList li.new-feature .texts p {
                        margin-bottom: 1em;
                    }

                    .feature .featureList li.new-feature .texts .new-feature-btn {
                        display: flex;
                        width: 200px;
                        padding: 20px;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        border-radius: 99px;
                        border: 2px solid #212121;
                        background: #ffd700;
                        box-shadow: 2px 4px 0px 0px #212121;
                        transition: var(--transition);
                        font-weight: 700;
                    }

                        .feature .featureList li.new-feature .texts .new-feature-btn p {
                            margin-bottom: 2px;
                        }

.new-feature::after {
    position: absolute;
    content: "NEW!!";
    display: block;
    width: 96px;
    height: 96px;
    background: #212121;
    color: #ffd700;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    line-height: 96px;
    border-radius: 99px;
    top: 0;
    left: 0;
    translate: -16% -16%;
}

@media (hover: hover) {
    .new-feature-btn:hover {
        box-shadow: none;
        transition: var(--transition);
    }
}

@media screen and (max-width: 750px) {
    .new-feature::after {
        width: 64px;
        height: 64px;
        font-size: 16px;
        line-height: 64px;
        top: -8px;
    }

    .feature .featureList li.new-feature .texts .new-feature-btn {
        margin: 1em auto;
        width: 60%;
    }

    .feature .featureList li.new-feature .featureImage {
        width: 51.18%;
    }
}

@media screen and (max-width: 1000px) and (min-width: 751px) {
    .feature .featureList li .texts {
        max-width: none;
        width: 60%;
        padding-top: 6vw;
    }
}

/* はたらくまでのステップ */
.flow {
    background-color: var(--yellow);
    padding: 92px 0 67px;
}

    .flow h2 {
        text-align: center;
        margin-bottom: 48px;
    }

        .flow h2 img {
            width: 43.36%;
        }

    .flow .flowList {
        display: grid;
        gap: 25px;
    }

        .flow .flowList li {
            width: 75.51%;
            background-color: #fff;
            padding-top: 20px;
            border-radius: 25px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            position: relative;
        }

            .flow .flowList li .number {
                position: absolute;
                top: 0;
                width: 21.62%;
                translate: 0 -20.8%;
            }

            .flow .flowList li .texts {
                padding-bottom: 60px;
                max-width: 335px;
            }

                .flow .flowList li .texts h3 {
                    font-size: 24px;
                    line-height: 1.4;
                    font-weight: 700;
                    margin-bottom: 5px;
                }

                    .flow .flowList li .texts h3 span {
                        font-size: 30px;
                    }

                .flow .flowList li .texts p {
                    font-size: 16px;
                    line-height: 1.75;
                }

            .flow .flowList li:nth-of-type(odd) {
                padding-left: 6%;
            }

                .flow .flowList li:nth-of-type(odd) .number {
                    left: 5.4%;
                }

            .flow .flowList li:nth-of-type(even) {
                margin-left: auto;
                padding-left: 5.72%;
            }

                .flow .flowList li:nth-of-type(even) .number {
                    right: 4%;
                }

            .flow .flowList li:nth-of-type(1) {
                padding-right: 7.1%;
            }

                .flow .flowList li:nth-of-type(1) .texts {
                    max-width: 280px;
                    padding-bottom: 70px;
                }

                    .flow .flowList li:nth-of-type(1) .texts h3 {
                        margin-bottom: 10px;
                    }

                .flow .flowList li:nth-of-type(1) .featureImage {
                    width: 51.28%;
                }

                .flow .flowList li:nth-of-type(1) .bubble {
                    position: absolute;
                    right: 0;
                    top: 0;
                    width: 17.56%;
                    translate: 15% -7%;
                }

            .flow .flowList li:nth-of-type(2) {
                padding-right: 5.11%;
            }

                .flow .flowList li:nth-of-type(2) .number {
                    width: 23.64%;
                }

                .flow .flowList li:nth-of-type(2) .texts {
                    max-width: 319px;
                    padding-bottom: 80px;
                }

                .flow .flowList li:nth-of-type(2) .featureImage {
                    width: 44.17%;
                }

            .flow .flowList li:nth-of-type(3) {
                padding: 37px 4.7% 35px 6%;
            }

                .flow .flowList li:nth-of-type(3) .number {
                    width: 23.64%;
                }

                .flow .flowList li:nth-of-type(3) .texts {
                    max-width: 295px;
                    padding-bottom: 40px;
                }

                .flow .flowList li:nth-of-type(3) .featureImage {
                    width: 50.4%;
                }

            .flow .flowList li:nth-of-type(4) {
                padding-top: 24px;
                padding-right: 6.2%;
            }

                .flow .flowList li:nth-of-type(4) .number {
                    width: 25.7%;
                }

                .flow .flowList li:nth-of-type(4) .texts {
                    max-width: 315px;
                    padding-bottom: 70px;
                }

                .flow .flowList li:nth-of-type(4) .featureImage {
                    width: 43.65%;
                }

    .flow .attention {
        text-align: right;
        font-size: 12px;
        margin-top: 20px;
    }

@media screen and (max-width: 1000px) and (min-width: 751px) {
    .flow .flowList li .texts {
        padding-top: 7.5vw;
    }

    .flow .flowList li:nth-of-type(odd) .texts {
        padding-right: 5%;
    }

    .flow .flowList li:nth-of-type(even) .texts {
        padding-left: 5%;
    }
}

/* お仕事についてもっと詳しく知りたい！ */
.details {
    padding: 100px 0 145px;
    overflow-x: hidden;
}

    .details h2 {
        font-size: 34px;
        width: max-content;
        font-weight: 700;
        margin: 0 auto 50px;
    }

        .details h2 span {
            display: inline;
            background-image: var(--marker);
        }

    .details .subtitle {
        background-color: var(--black);
        font-size: 16px;
        font-weight: 700;
        height: 37px;
        border-radius: 20px;
        max-width: 310px;
        margin: 0 auto;
        display: grid;
        place-items: center;
        color: #fff;
    }

    .details h3 {
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
        margin: 20px auto 0;
        width: max-content;
    }

    .details
    .swiperWrapper
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -50px;
    }

    .details .swiper {
        max-width: 946px;
    }

        .details .swiper .swiper-button-prev {
            left: -20px;
        }

        .details .swiper .swiper-button-next {
            right: -20px;
        }

        .details .swiper .swiper-slide {
            background-color: var(--yellow);
            border: 4px solid var(--yellow);
            padding-top: 19px;
            border-radius: 28px;
            height: auto;
        }

            .details .swiper .swiper-slide:not(.swiper-slide-active) {
                opacity: 0.3;
            }

            .details .swiper .swiper-slide.swiper-slide-active + .swiper-slide {
                opacity: 1;
            }

                .details
                .swiper
                .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
                    opacity: 1;
                }

            .details .swiper .swiper-slide a {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
            }

                .details .swiper .swiper-slide a .topContents {
                    padding: 0 16px 0;
                }

                    .details .swiper .swiper-slide a .topContents img {
                        width: 100%;
                    }

                    .details .swiper .swiper-slide a .topContents p {
                        font-weight: 700;
                        font-size: 14px;
                        line-height: 1.428;
                        margin-top: 10px;
                        padding: 0 3px;
                    }

                .details .swiper .swiper-slide a .moreDetails {
                    background-color: #fff;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    line-height: 1;
                    font-size: 14px;
                    height: 30px;
                    border-bottom-left-radius: 25px;
                    border-bottom-right-radius: 25px;
                    margin-top: 17px;
                    font-weight: 700;
                }

                    .details .swiper .swiper-slide a .moreDetails::after {
                        content: "";
                        display: block;
                        width: 9px;
                        height: 14px;
                        background-image: url(../img/arrow-right.png);
                        background-repeat: no-repeat;
                        background-size: contain;
                        translate: 0 1px;
                        margin-left: 13px;
                    }

    .details .featureSlider {
        margin: 39px 0 100px;
    }

    .details .reportSlider {
        margin-top: 40px;
    }

/* FAQ */
.faq {
    padding: 100px 0 90px;
    background-color: var(--lightGray);
}

    .faq h2 {
        font-size: 34px;
        width: max-content;
        margin: 0 auto 60px;
        font-weight: 700;
        background-image: var(--marker);
    }

    .faq .faqList {
        max-width: 860px;
        padding: 0 20px;
        margin: 0 auto;
        display: grid;
        gap: 20px;
    }

        .faq .faqList div {
            position: relative;
        }

        .faq .faqList .faqQ::before {
            content: "";
            display: block;
            width: 48px;
            height: 48px;
            background-image: url(../img/q-icon.png);
            background-repeat: no-repeat;
            background-size: contain;
            position: absolute;
            top: 0;
            left: 0;
            translate: -20% -20%;
            z-index: 1;
        }

        .faq .faqList div dt {
            background-color: #fff;
            border-radius: 10px;
            padding-left: 45px;
            height: 60px;
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 700;
            position: relative;
            cursor: pointer;
        }

            .faq .faqList div dt::before,
            .faq .faqList div dt::after {
                content: "";
                display: block;
                background-color: var(--black);
                position: absolute;
                top: 50%;
                translate: 0 -50%;
                transition: 0.2s;
            }

            .faq .faqList div dt::before {
                right: 33px;
                width: 20px;
                height: 2px;
            }

            .faq .faqList div dt::after {
                height: 20px;
                width: 2px;
                right: 42px;
            }

            .faq .faqList div dt.active::before {
                rotate: -180deg;
            }

            .faq .faqList div dt.active::after {
                rotate: -180deg;
                background-color: transparent;
            }

        .faq .faqList div dd {
            margin: 0;
            line-height: 1.75;
            font-size: 16px;
            padding: 15px 0 25px 16px;
            display: none;
        }

            .faq .faqList div dd p + p {
                margin-top: 1em;
            }

            .faq .faqList div dd .nearImage {
                display: block;
                width: 31.09%;
                margin: 26px auto 0;
            }

            .faq .faqList div dd .withMiddleDot {
                position: relative;
                padding-left: 1em;
            }

                .faq .faqList div dd .withMiddleDot::before {
                    content: "・";
                    position: absolute;
                    top: 0;
                    left: 0;
                }

            .faq .faqList div dd .attention {
                font-size: 14px;
                background-color: #dcdcdc;
                padding: 15px 12px;
                margin: 12px 0;
            }

            .faq .faqList div dd a {
                color: var(--blue);
            }

    .faq .btn-more {
        max-width: 560px;
        margin-top: 32px;
    }

@media screen and (max-width: 750px) {
    .faq .btn-more {
        width: 89.33%;
    }
}

/* 企業向けページボタン */
.forBusinesses {
    padding: 60px 0;
}

    .forBusinesses a.btn-toB {
        max-width: 560px;
        border: solid var(--black) 2px;
        font-size: 24px;
        font-weight: 700;
        color: var(--black);
        background: var(--yellow);
        box-shadow: var(--black) 0px 8px 0px 0px;
        transition: var(--transition);
    }

@media (hover: hover) {
    .forBusinesses a.btn-toB:hover {
        opacity: 0.8;
        box-shadow: none;
        transition: var(--transition);
    }

    .forBusinesses a:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .forBusinesses a.btn-toB {
        font-size: 16px;
        padding: calc(1em + 7px) 1em;
    }
}

/* フッター */
footer {
    background-color: var(--lightGray);
}

    footer .footerLinks {
        max-width: 960px;
        margin: 0 auto;
        padding: 48px 0;
        display: flex;
        justify-content: space-between;
    }

        footer .footerLinks .logo img {
            width: 200px;
            margin-top: 6px;
        }

        footer .footerLinks .links {
            display: grid;
            gap: 16px 40px;
            grid-template-columns: repeat(min-content);
            grid-template-rows: repeat(4, 1fr);
            grid-auto-flow: column;
        }

@media screen and (max-width: 1000px) {
    footer .footerLinks {
        flex-direction: column;
        gap: 32px;
        margin: 0 auto;
        width: calc(100% - 80px);
        max-width: 960px;
    }

        footer .footerLinks .logo {
            width: 100% !important;
            max-width: 75%;
        }
}

footer .footerLinks .links li:nth-child(5),
footer .footerLinks .links li:nth-child(6),
footer .footerLinks .links li:nth-child(7),
footer .footerLinks .links li:nth-child(8) {
    margin-right: 8px;
}

footer .footerLinks .links li a {
    font-size: 16px;
}

footer .footerLinks .pMark img {
    width: 96px;
}

footer .footerInfos {
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 40px;
    background-color: var(--black);
    padding: 28px 0;
}

    footer .footerInfos a {
        color: #fff;
    }

    footer .footerInfos small {
        display: inline-block;
    }

        footer .footerInfos small a {
            font-size: 16px;
        }

    footer .footerInfos .infoList {
        display: flex;
        gap: 40px;
    }

.spview {
    display: none;
}


@media screen and (max-width: 750px) {
    .spview {
        display: block;
    }

    .pcview {
        display: none;
    }

    .inner {
        width: 89.33%;
        padding: 0;
    }
    /* フローティングメニューsp */
    .floatingMenu {
        height: 15vw;
        align-items: flex-end;
        padding-bottom: 1.25vw;
    }

        .floatingMenu .floatingMenuInner {
            width: 96%;
        }

            .floatingMenu .floatingMenuInner .promo {
                position: absolute;
                width: 54%;
                top: 1.2vw;
                left: 16.11vw;
            }

            .floatingMenu .floatingMenuInner .install-app {
                height: 12.07vw;
            }

            .floatingMenu .floatingMenuInner .floatingMenuOpen {
                height: 12.07vw;
                width: auto;
            }

                .floatingMenu .floatingMenuInner .floatingMenuOpen img {
                    width: auto;
                    height: 100%;
                }
    /* グローバルメニューsp */
    .globalMenu {
        max-width: 90.66vw;
        max-height: 90vh;
        padding: 10vw 8vw;
        .forBusinesses .btn-toB

{
    font-size: 16px;
}

}

.globalMenu ul li {
    height: 12vw;
}

    .globalMenu ul li:nth-of-type(3) {
        height: 14.66vw;
    }

    .globalMenu ul li a {
        font-size: 4vw;
    }

        .globalMenu ul li a span {
            font-size: 2.93vw;
            margin-top: 1.33vw;
        }

.globalMenu .globalMenuBottoms .promo {
    width: 74.1%;
    margin: 24px auto 0;
}

.globalMenu .globalMenuBottoms .install-app {
    width: auto;
    margin-right: 1.6%;
}

.globalMenuClose {
    width: 14.16vw;
}

/* swiper sp */
.swiperWrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -9vw;
}

    .swiperWrapper
    .swiper-pagination-bullets.swiper-pagination-horizontal
    .swiper-pagination-bullet {
        width: 2.13vw;
        height: 2.13vw;
    }

        .swiperWrapper
        .swiper-pagination-bullets.swiper-pagination-horizontal
        .swiper-pagination-bullet + .swiper-pagination-bullet {
            margin-left: 2.5vw;
        }

/* ヘッダーsp */
.reHeader .reHeader-container {
    width: 100%;
    max-width: none;
    height: 54px;
    padding: 16px 5.85%;
    position: fixed;
    z-index: 10000;
    background: var(--black);
}

    .reHeader .reHeader-container img {
        width: 94px;
        height: 24px;
        margin-right: 0;
    }

    .reHeader .reHeader-container .reHeader-link {
        display: none;
    }

    .reHeader .reHeader-container .reHeader-btn {
        padding: 0.6em 1em 0.6em 1.4em;
        font-size: 11px;
        gap: 2px;
        height: 32px;
    }

        .reHeader .reHeader-container .reHeader-btn .reHeader-btn-text p:first-child {
            display: none;
        }

        .reHeader .reHeader-container .reHeader-btn svg {
            height: 8px;
        }

/* fv改修sp */
.reFv {
    padding: 54px 0 0;
}

    .reFv .reFv-circle1 {
        top: -20%;
        left: -30%;
    }

    .reFv .reFv-circle2 {
        width: 320px !important;
        height: 320px !important;
        top: 20%;
        right: -30%;
    }

    .reFv .reFv-circle3 {
        display: block;
        bottom: -20%;
        left: -30%;
    }

    .reFv .reFv-outer {
        gap: 0;
        padding: 24px;
    }

        .reFv .reFv-outer .reFv-img {
            display: none;
        }

        .reFv .reFv-outer .reFv-container {
            width: 100%;
        }

            .reFv .reFv-outer .reFv-container .reFv-title {
                width: 72%;
                gap: 5dvw;
                align-items: center;
            }

            .reFv .reFv-outer .reFv-container .reFv-title-h3 {
                width: 100%;
            }

            .reFv .reFv-outer .reFv-container .reFv-title-h2 {
                width: 108%;
                margin: -4px 0 0 8%;
            }

            .reFv .reFv-outer .reFv-container .reFv-title-no1 {
                width: 100%;
            }

.LPO-FVreview h4 {
    display: block;
}

.reFv .reFv-outer .reFv-container .reFv-imgSp {
    display: block;
    width: 100dvw;
}

.reFv .reFv-outer .reFv-container .btns {
    width: 100%;
    margin-top: 0;
    justify-content: space-between;
}

    .reFv .reFv-outer .reFv-container .btns img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.reFv.annotation {
    width: 100%;
}

/* Swiperのスタイルsp */
.swiperWrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -9vw;
}

    .swiperWrapper
    .swiper-pagination-bullets.swiper-pagination-horizontal
    .swiper-pagination-bullet {
        width: 2.13vw;
        height: 2.13vw;
    }

        .swiperWrapper
        .swiper-pagination-bullets.swiper-pagination-horizontal
        .swiper-pagination-bullet + .swiper-pagination-bullet {
            margin-left: 2.5vw;
        }
/* 例えばこんなお仕事が  */
.exampleWorks {
    padding-top: 14.66vw;
    margin-bottom: 13.33vw;
}

    .exampleWorks h2 {
        font-size: 5.33vw;
        margin-bottom: 4.4vw;
    }

        .exampleWorks h2 b {
            font-size: 6.93vw;
        }

    .exampleWorks .subtitle {
        width: 98.2%;
        margin-bottom: 4.66vw;
    }

    .exampleWorks .workList {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.93vw 4vw;
    }

        .exampleWorks .workList li .heads h3 {
            font-size: 3.2vw;
            margin-left: 5px;
            margin-right: 5px;
        }

        .exampleWorks .workList li .time {
            font-size: 2.93vw;
        }

        .exampleWorks .workList li .salary {
            font-size: 4vw;
        }

    .exampleWorks .more {
        margin: -22vw calc(50% - 50vw) 0;
    }

        .exampleWorks .more a {
            width: 89.33%;
            bottom: 0;
        }

        .exampleWorks .more picture {
            aspect-ratio: 456 / 225;
        }

/* 他にも色々な業種のお仕事が見つかる！sp */
.otherWorks {
    padding: 13.33vw 0 12.4vw;
}

    .otherWorks .titleWrapper {
        margin-bottom: 8vw;
    }

        .otherWorks .titleWrapper h2 {
            font-size: 5.33vw;
        }

            .otherWorks .titleWrapper h2 b {
                font-size: 6.93vw;
            }

    .otherWorks .workList {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4vw 3.73vw;
    }

        .otherWorks .workList li:nth-of-type(n) {
            grid-row: auto;
            grid-column: auto;
        }

        .otherWorks .workList li h3 {
            font-size: 4vw;
            margin-bottom: 0;
        }

        .otherWorks .workList li p {
            font-size: 2.93vw;
        }
/* 幅広い年代のワーカーさんが活躍中！sp */
.wideRangeAges {
    padding-top: 18vw;
    padding-bottom: 21.33vw;
}

    .wideRangeAges .inner h2 {
        font-size: 5.33vw;
    }

        .wideRangeAges .inner h2 b {
            font-size: 6.93vw;
        }

    .wideRangeAges .inner .graph {
        width: 106%;
        translate: -3% 0;
        margin-top: 10.66vw;
    }

    .wideRangeAges .inner .ages {
        gap: 2.26vw 1.655%;
        flex-wrap: wrap;
        justify-content: center;
        margin: 9.06vw auto 3.46vw;
    }

        .wideRangeAges .inner .ages li {
            width: 32.23%;
            height: 8.26vw;
            flex: 0 1 auto;
            font-size: 4vw;
            line-height: 1.4;
        }

            .wideRangeAges .inner .ages li b {
                font-size: 5.33vw;
            }

    .wideRangeAges .swiperWrapper .swiper-button-prev,
    .wideRangeAges .swiperWrapper .swiper-button-next {
        width: 10vw;
        height: 10vw;
    }

    .wideRangeAges .swiperWrapper .swiper-button-prev {
        left: 0;
        translate: 30% 0;
    }

    .wideRangeAges .swiperWrapper .swiper-button-next {
        right: 0;
        translate: -30% 0;
    }

    .wideRangeAges .swiperWrapper .swiper {
        max-width: none;
    }

        .wideRangeAges .swiperWrapper .swiper .swiper-slide {
            display: block;
            border-width: 2.4vw;
            padding: 2.6vw 4vw;
        }

            .wideRangeAges
            .swiperWrapper
            .swiper
            .swiper-slide:not(.swiper-slide-active) {
                opacity: 1;
                scale: 1;
                translate: none;
            }

            .wideRangeAges
            .swiperWrapper
            .swiper
            .swiper-slide.swiper-slide-active + .swiper-slide {
                translate: none;
            }

            .wideRangeAges .swiperWrapper .swiper .swiper-slide .person {
                height: auto;
            }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .personHeads {
                    align-items: flex-start;
                    margin-bottom: 0.933vw;
                }

                    .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .personHeads img {
                        width: 28.43%;
                    }

                    .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .personHeads h3 {
                        font-size: 4vw;
                        line-height: 1.33;
                    }

                    .wideRangeAges
                    .swiperWrapper
                    .swiper
                    .swiper-slide
                    .person
                    .personHeads
                    .kinds {
                        gap: 1.06vw;
                    }

                        .wideRangeAges
                        .swiperWrapper
                        .swiper
                        .swiper-slide
                        .person
                        .personHeads
                        .kinds
                        p {
                            font-size: 2.66vw;
                            padding: 0.8vw 1.5vw;
                        }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .workingHours {
                    font-size: 3.2vw;
                    text-align: center;
                }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .income {
                    font-size: 3.2vw;
                    text-align: center;
                }

                    .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .income em span {
                        font-size: 6.66vw;
                    }

                    .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .income b {
                        font-size: 4.8vw;
                    }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person .impressions {
                    font-size: 3.2vw;
                    padding: 2.13vw;
                }

                .wideRangeAges .swiperWrapper .swiper .swiper-slide .person + .person {
                    margin-top: 2.66vw;
                }
/* さらに嬉しいタイミーの特長sp */
.feature {
    padding: 11.73vw 0 13.33vw;
}

    .feature .inner {
        width: 100%;
    }

    .feature h2 img {
        width: 70.66%;
    }

    .feature .featureList {
        gap: 7.04vw;
    }

        .feature .featureList li {
            width: 94.66%;
            flex-direction: column;
            align-items: start;
            justify-content: normal;
        }

            .feature .featureList li .texts {
                max-width: none;
                padding-bottom: 2.66vw;
            }

                .feature .featureList li .texts h3 {
                    font-size: 5.06vw;
                }

                    .feature .featureList li .texts h3 span {
                        font-size: 6.13vw;
                    }

                .feature .featureList li .texts p {
                    font-size: 4vw;
                }

            .feature .featureList li .featureImage {
                width: 51.18%;
                display: block;
                margin: 0 auto;
            }

            .feature .featureList li:nth-of-type(odd) {
                padding-left: 5.33vw;
                padding-right: 4.66vw;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .feature .featureList li:nth-of-type(odd) .number {
                    left: 0;
                }

                .feature .featureList li:nth-of-type(odd) .texts h3 {
                    text-align: right;
                }

            .feature .featureList li:nth-of-type(even) {
                padding-left: 6.66vw;
                padding-right: 5.33vw;
                flex-direction: column-reverse;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .feature .featureList li:nth-of-type(even) .number {
                    right: 0;
                }

            .feature .featureList li:nth-of-type(1) {
                padding-top: 12vw;
            }

                .feature .featureList li:nth-of-type(1) .number {
                    width: 29.57%;
                }

            .feature .featureList li:nth-of-type(2) {
                padding-top: 11.06vw;
            }

                .feature .featureList li:nth-of-type(2) .number {
                    width: 33.1%;
                }

                .feature .featureList li:nth-of-type(2) .texts {
                    padding-bottom: 3.33vw;
                }

            .feature .featureList li:nth-of-type(3) {
                padding-top: 12vw;
            }

                .feature .featureList li:nth-of-type(3) .number {
                    width: 32.4%;
                }

                .feature .featureList li:nth-of-type(3) .texts {
                    max-width: none;
                    padding-bottom: 4vw;
                }

            .feature .featureList li:nth-of-type(4) {
                padding-top: 10.66vw;
            }

                .feature .featureList li:nth-of-type(4) .number {
                    width: 34.5%;
                }

                .feature .featureList li:nth-of-type(4) .texts {
                    max-width: none;
                    padding-bottom: 2.66vw;
                }

            .feature .featureList li:nth-of-type(5) {
                padding-top: 11.33vw;
            }

                .feature .featureList li:nth-of-type(5) .number {
                    width: 33.38%;
                }

                .feature .featureList li:nth-of-type(5) .texts {
                    max-width: none;
                }

            .feature .featureList li:nth-of-type(6) {
                padding-top: 10.66vw;
                padding-bottom: 0;
            }

                .feature .featureList li:nth-of-type(6) .number {
                    width: 34.5%;
                }

                .feature .featureList li:nth-of-type(6) .texts {
                    max-width: none;
                    padding-bottom: 2.66vw;
                }


/* はたらくまでのステップsp */
.flow {
    padding-top: 10.66vw;
    padding-bottom: 13.33vw;
}

    .flow .inner {
        width: 100%;
    }

    .flow h2 img {
        width: 81.33%;
    }

    .flow .flowList {
        gap: 6.66vw;
    }

        .flow .flowList li {
            width: 94.66%;
            padding-top: 11.33vw;
            flex-direction: column;
            align-items: start;
            justify-content: normal;
        }

            .flow .flowList li .texts {
                max-width: none;
                padding-bottom: 2.66vw;
            }

                .flow .flowList li .texts h3 {
                    margin-bottom: 1.3vw;
                }

                    .flow .flowList li .texts h3 span {
                        font-size: 6.13vw;
                    }

                .flow .flowList li .texts p {
                    font-size: 4vw;
                    line-height: 1.533;
                }

            .flow .flowList li .featureImage {
                display: block;
                margin: 0 auto;
            }

            .flow .flowList li:nth-of-type(odd) {
                padding-left: 7vw;
                padding-right: 7vw;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .flow .flowList li:nth-of-type(odd) .number {
                    left: 0;
                }

                .flow .flowList li:nth-of-type(odd) .texts h3 {
                    text-align: right;
                }

            .flow .flowList li:nth-of-type(even) {
                padding-left: 7.04vw;
                padding-right: 5.63vw;
                flex-direction: column-reverse;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .flow .flowList li:nth-of-type(even) .number {
                    right: 0;
                }

            .flow .flowList li:nth-of-type(n) .texts {
                max-width: none;
            }

            .flow .flowList li:nth-of-type(1) .number {
                width: 28vw;
            }

            .flow .flowList li:nth-of-type(1) .texts {
                padding-bottom: 6.4vw;
            }

            .flow .flowList li:nth-of-type(1) .featureImage {
                width: 88.33%;
            }

            .flow .flowList li:nth-of-type(1) .bubble {
                top: auto;
                bottom: 46vw;
                width: 26.26vw;
                translate: 7% 2%;
            }

            .flow .flowList li:nth-of-type(2) .number {
                width: 30.66vw;
            }

            .flow .flowList li:nth-of-type(2) .texts {
                padding-bottom: 2.933vw;
            }

            .flow .flowList li:nth-of-type(2) .featureImage {
                width: 87.94%;
            }

            .flow .flowList li:nth-of-type(3) {
                padding: 11.33vw 6vw 6.66vw;
            }

                .flow .flowList li:nth-of-type(3) .number {
                    width: 30.66vw;
                }

                .flow .flowList li:nth-of-type(3) .featureImage {
                    width: 100%;
                }

            .flow .flowList li:nth-of-type(4) {
                padding-top: 12vw;
            }

                .flow .flowList li:nth-of-type(4) .number {
                    width: 32.66vw;
                }

                .flow .flowList li:nth-of-type(4) .texts {
                    padding-bottom: 2.66vw;
                }

                .flow .flowList li:nth-of-type(4) .featureImage {
                    width: 86.88%;
                }

    .flow .attention {
        font-size: 2.66vw;
        margin-top: 4vw;
        margin-right: 5.33vw;
    }

.details {
    padding-top: 13.33vw;
    padding-bottom: 20vw;
}

    .details h2 {
        text-align: center;
        line-height: 1.33;
        margin-bottom: 6.66vw;
    }
        /* お仕事についてもっと詳しく知りたい！sp */
        .details h2 span {
            font-size: 6.13vw;
        }

    .details .subtitle {
        font-size: 3.2vw;
        width: 54.66%;
        height: 7.73vw;
        border-radius: 3.865vw;
        max-width: none;
    }

    .details h3 {
        font-size: 5.6vw;
        margin-top: 4vw;
    }

    .details
    .swiperWrapper
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -9vw;
    }

    .details .swiper .swiper-button-prev,
    .details .swiper .swiper-button-next {
        width: 10.66vw;
        height: 10.66vw;
    }

    .details .swiper .swiper-button-prev {
        left: 6.5%;
    }

    .details .swiper .swiper-button-next {
        right: 6.5%;
    }

    .details .swiper .swiper-slide {
        border-width: 0.533vw;
        padding-top: 4vw;
    }

        .details .swiper .swiper-slide:not(.swiper-slide-active) {
            opacity: 1;
        }

        .details .swiper .swiper-slide a .topContents {
            padding: 0 2.8vw;
        }

            .details .swiper .swiper-slide a .topContents p {
                margin-top: 2.26vw;
                font-size: 3.2vw;
                line-height: 1.416;
            }

        .details .swiper .swiper-slide a .moreDetails {
            font-size: 2.93vw;
            height: 7.06vw;
        }

            .details .swiper .swiper-slide a .moreDetails::after {
                width: 1.6vw;
                height: 2.53vw;
                margin-left: 2.26vw;
            }

    .details .featureSlider {
        margin-top: 5.33vw;
        margin-bottom: 18.66vw;
    }

    .details .reportSlider {
        margin-top: 5.33vw;
    }
/* FAQsp */
.faq {
    padding: 13.33vw 0 10.66vw;
}

    .faq h2 {
        font-size: 6.13vw;
        margin-bottom: 7.6vw;
    }

    .faq .faqList {
        width: 89.33%;
        padding: 0;
        gap: 4vw;
    }

        .faq .faqList > .faqQ::before {
            width: 8.4vw;
            height: 8.4vw;
        }

        .faq .faqList > div dt {
            font-size: 4vw;
            line-height: 1.53;
            padding: 3vw 12.53vw 3vw 8.8vw;
            height: auto;
        }

            .faq .faqList > div dt::before {
                width: 3.466vw;
                height: 0.533vw;
                right: 4.53vw;
            }

            .faq .faqList > div dt::after {
                width: 0.533vw;
                height: 3.466vw;
                right: 6vw;
            }

        .faq .faqList > div dd {
            font-size: 4vw;
            line-height: 1.6;
            padding: 3.46vw 0 2.66vw 1.33vw;
        }

            .faq .faqList > div dd .nearImage {
                width: 75.75%;
                margin-top: 3.46vw;
            }

            .faq .faqList > div dd .attention {
                font-size: 3.46vw;
                padding: 2.93vw 2.66vw;
            }
/* 企業様向けページボタンsp */
.forBusinesses {
    width: 100%;
    padding: 13.33vw 0;
}

    .forBusinesses a {
        width: 89.33%;
    }
/* フッターsp */
footer .footerLinks {
    flex-direction: column;
    width: 89.33%;
    padding: 13.33vw 0 9.73vw;
}

    footer .footerLinks .logo {
        display: block;
        width: max-content;
        margin: 0 auto;
        width: 74.62%;
    }

        footer .footerLinks .logo img {
            width: 100%;
        }

    footer .footerLinks .links {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 1fr);
        gap: 3.3vw 9.3vw;
        margin-top: 10.66vw;
    }

        footer .footerLinks .links li:nth-of-type(7) {
            grid-row: auto;
            grid-column: auto;
        }

        footer .footerLinks .links li a {
            font-size: 4vw;
        }

        footer .footerLinks .links li:last-of-type {
            grid-row: 5/8;
        }

            footer .footerLinks .links li:last-of-type img {
                width: 69.1%;
            }

footer .footerInfos {
    padding: 8.26vw 5.335% 18.66vw;
    flex-direction: column;
    gap: 3.33vw;
    font-size: 4vw;
}

    footer .footerInfos small a {
        font-size: 4vw;
    }

    footer .footerInfos .infoList {
        flex-direction: column;
        gap: 3.33vw;
    }

}

/* HeaderLinkの追加 */
.pcHeaderLink {
    padding: 10px 20px;
    position: relative;
    max-width: 1080px;
    z-index: 3;
}

    .pcHeaderLink a {
        color: white;
        font-size: 16px;
    }

        .pcHeaderLink a:hover {
            opacity: 0.9;
        }

    .pcHeaderLink ul {
        list-style: none;
        margin: 16px 0;
        display: flex;
        justify-content: flex-end;
        gap: 24px;
    }

    .pcHeaderLink .pcHeaderBtn {
        margin-top: -6px;
    }

@media (max-width: 900px) {
    a {
        font-size: 15px;
        &:hover

{
    opacity: 0.9;
}

}

ul {
    margin: 12px 0;
}

.pcHeaderBtn {
    display: none;
}

}

.image-link {
    display: inline-block;
}

    .image-link img {
        display: block;
        width: 100%;
        height: auto;
    }

/* toB導線のフローティングバナー */
.toB-floating {
    display: block;
    opacity: 0;
    position: fixed;
    bottom: 124px;
    right: 20px;
    width: 300px;
    background: transparent;
    transition: ease-in-out .4s;
    filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.2));
    z-index: 103;
}

@media screen and (max-width: 750px) {
    .toB-floating {
        display: none;
    }
}

.toB-floating:hover {
    opacity: .8 !important;
    transition: ease-in-out .4s;
}

.toB-floating .toB-floating_img {
    width: 100%;
}

.toB-floating .toB-floating_close {
    position: relative;
    top: -120px;
    right: -280px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    cursor: pointer;
    transition: rotate .4s ease-in-out;
    background: #66666670;
}

    .toB-floating .toB-floating_close::before,
    .toB-floating .toB-floating_close::after {
        position: absolute;
        top: 7px;
        content: "";
        width: 2px;
        height: 16px;
        border-radius: 1px;
        background: #fff;
    }

    .toB-floating .toB-floating_close::before {
        rotate: 45deg;
        left: 14px;
    }

    .toB-floating .toB-floating_close::after {
        rotate: -45deg;
        right: 14px;
    }

    .toB-floating .toB-floating_close:hover {
        rotate: 180deg;
        transition: rotate .4s ease-in-out;
    }


*, :after, :before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:;
    --tw-pan-y:;
    --tw-pinch-zoom:;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:;
    --tw-gradient-via-position:;
    --tw-gradient-to-position:;
    --tw-ordinal:;
    --tw-slashed-zero:;
    --tw-numeric-figure:;
    --tw-numeric-spacing:;
    --tw-numeric-fraction:;
    --tw-ring-inset:;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59,130,246,.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:;
    --tw-brightness:;
    --tw-contrast:;
    --tw-grayscale:;
    --tw-hue-rotate:;
    --tw-invert:;
    --tw-saturate:;
    --tw-sepia:;
    --tw-drop-shadow:;
    --tw-backdrop-blur:;
    --tw-backdrop-brightness:;
    --tw-backdrop-contrast:;
    --tw-backdrop-grayscale:;
    --tw-backdrop-hue-rotate:;
    --tw-backdrop-invert:;
    --tw-backdrop-opacity:;
    --tw-backdrop-saturate:;
    --tw-backdrop-sepia:;
    --tw-contain-size:;
    --tw-contain-layout:;
    --tw-contain-paint:;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:;
    --tw-pan-y:;
    --tw-pinch-zoom:;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:;
    --tw-gradient-via-position:;
    --tw-gradient-to-position:;
    --tw-ordinal:;
    --tw-slashed-zero:;
    --tw-numeric-figure:;
    --tw-numeric-spacing:;
    --tw-numeric-fraction:;
    --tw-ring-inset:;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59,130,246,.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:;
    --tw-brightness:;
    --tw-contrast:;
    --tw-grayscale:;
    --tw-hue-rotate:;
    --tw-invert:;
    --tw-saturate:;
    --tw-sepia:;
    --tw-drop-shadow:;
    --tw-backdrop-blur:;
    --tw-backdrop-brightness:;
    --tw-backdrop-contrast:;
    --tw-backdrop-grayscale:;
    --tw-backdrop-hue-rotate:;
    --tw-backdrop-invert:;
    --tw-backdrop-opacity:;
    --tw-backdrop-saturate:;
    --tw-backdrop-sepia:;
    --tw-contain-size:;
    --tw-contain-layout:;
    --tw-contain-paint:;
    --tw-contain-style:
}

/*
! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com
*/
*, :after, :before {
    box-sizing: border-box;
    border: 0 solid #e5e7eb
}

:after, :before {
    --tw-content: ""
}

:host, html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

b, strong {
    font-weight: bolder
}

code, kbd, pre, samp {
    font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button, select {
    text-transform: none
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
    margin: 0
}

fieldset {
    margin: 0
}

fieldset, legend {
    padding: 0
}

menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

    input::-moz-placeholder, textarea::-moz-placeholder {
        opacity: 1;
        color: #9ca3af
    }

    input::placeholder, textarea::placeholder {
        opacity: 1;
        color: #9ca3af
    }

[role=button], button {
    cursor: pointer
}

:disabled {
    cursor: default
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle
}

img, video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

html {
    font-family: Noto Sans JP,Helvetica Neue,Helvetica,Segoe UI,ヒラギノ角ゴ Pro,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,Osaka,ＭＳ Ｐゴシック,MS PGothic,sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #212121;
    letter-spacing: .02em
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem
}

@media (min-width: 600px) {
    .container {
        max-width: 600px;
        padding-right: 2rem;
        padding-left: 2rem
    }
}

@media (min-width: 728px) {
    .container {
        max-width: 728px
    }
}

@media (min-width: 980px) {
    .container {
        max-width: 980px;
        padding-right: 2rem;
        padding-left: 2rem
    }
}

.visible {
    visibility: visible
}

.invisible {
    visibility: hidden
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.-left-4 {
    left: -1rem
}

.-right-4 {
    right: -1rem
}

.-top-7 {
    top: -1.75rem
}

.bottom-0 {
    bottom: 0
}

.bottom-1 {
    bottom: .25rem
}

.bottom-2 {
    bottom: .5rem
}

.bottom-24 {
    bottom: 6rem
}

.left-0 {
    left: 0
}

.left-0\.5 {
    left: .125rem
}

.left-1\/2 {
    left: 50%
}

.left-52 {
    left: 13rem
}

.right-2 {
    right: .5rem
}

.right-52 {
    right: 13rem
}

.top-0 {
    top: 0
}

.top-0\.5 {
    top: .125rem
}

.top-1\/2 {
    top: 50%
}

.z-0 {
    z-index: 0
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-50 {
    z-index: 50
}

.m-0 {
    margin: 0
}

.m-auto {
    margin: auto
}

.-mx-2 {
    margin-left: -.5rem;
    margin-right: -.5rem
}

.-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem
}

.mx-16 {
    margin-left: 4rem;
    margin-right: 4rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}

.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}

.-mb-2 {
    margin-bottom: -.5rem
}

.-mb-40 {
    margin-bottom: -10rem
}

.-mb-5 {
    margin-bottom: -1.25rem
}

.-ml-4 {
    margin-left: -1rem
}

.-mt-1 {
    margin-top: -.25rem
}

.-mt-10 {
    margin-top: -2.5rem
}

.-mt-24 {
    margin-top: -6rem
}

.-mt-4 {
    margin-top: -1rem
}

.-mt-7 {
    margin-top: -1.75rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-12 {
    margin-bottom: 3rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-20 {
    margin-bottom: 5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.ml-1 {
    margin-left: .25rem
}

.ml-auto {
    margin-left: auto
}

.mr-1 {
    margin-right: .25rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-16 {
    margin-top: 4rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-8 {
    margin-top: 2rem
}

.box-border {
    box-sizing: border-box
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.table {
    display: table
}

.table-cell {
    display: table-cell
}

.contents {
    display: contents
}

.hidden {
    display: none
}

.h-1\.5 {
    height: .375rem
}

.h-10 {
    height: 2.5rem
}

.h-16 {
    height: 4rem
}

.h-2 {
    height: .5rem
}

.h-32 {
    height: 8rem
}

.h-6 {
    height: 1.5rem
}

.h-7 {
    height: 1.75rem
}

.h-8 {
    height: 2rem
}

.h-\[2000px\] {
    height: 2000px
}

.h-\[400px\] {
    height: 400px
}

.h-\[60px\] {
    height: 60px
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.max-h-0 {
    max-height: 0
}

.max-h-full {
    max-height: 100%
}

.w-1\/2 {
    width: 50%
}

.w-1\/3 {
    width: 33.333333%
}

.w-10 {
    width: 2.5rem
}

.w-28 {
    width: 7rem
}

.w-36 {
    width: 9rem
}

.w-4\/5 {
    width: 80%
}

.w-40 {
    width: 10rem
}

.w-5 {
    width: 1.25rem
}

.w-5\/12 {
    width: 41.666667%
}

.w-5\/6 {
    width: 83.333333%
}

.w-6 {
    width: 1.5rem
}

.w-6\/12 {
    width: 50%
}

.w-60 {
    width: 15rem
}

.w-64 {
    width: 16rem
}

.w-7\/12 {
    width: 58.333333%
}

.w-\[9238px\] {
    width: 9238px
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.max-w-lg {
    max-width: 32rem
}

.max-w-md {
    max-width: 28rem
}

.max-w-screen-2xl {
    max-width: 1536px
}

.max-w-screen-lg {
    max-width: 1024px
}

.max-w-screen-xl {
    max-width: 1280px
}

.flex-1 {
    flex: 1 1 0%
}

.shrink-0 {
    flex-shrink: 0
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%
}

.-translate-x-1\/2, .-translate-y-1\/2 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%
}

.translate-y-0 {
    --tw-translate-y: 0px
}

.translate-y-0, .translate-y-\[2px\] {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-\[2px\] {
    --tw-translate-y: 2px
}

.translate-y-full {
    --tw-translate-y: 100%
}

.-rotate-45, .translate-y-full {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-rotate-45 {
    --tw-rotate: -45deg
}

.rotate-45 {
    --tw-rotate: 45deg
}

.rotate-45, .rotate-90 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-90 {
    --tw-rotate: 90deg
}

.transform {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
    cursor: pointer
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.resize {
    resize: both
}

.list-decimal {
    list-style-type: decimal
}

.list-disc {
    list-style-type: disc
}

.flex-row {
    flex-direction: row
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.flex-col {
    flex-direction: column
}

.flex-col-reverse {
    flex-direction: column-reverse
}

.flex-wrap {
    flex-wrap: wrap
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-0 {
    gap: 0
}

.gap-1 {
    gap: .25rem
}

.gap-10 {
    gap: 2.5rem
}

.gap-12 {
    gap: 3rem
}

.gap-16 {
    gap: 4rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.gap-y-2 {
    row-gap: .5rem
}

.overflow-hidden {
    overflow: hidden
}

.scroll-smooth {
    scroll-behavior: smooth
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.rounded-none {
    border-radius: 0
}

.rounded-xl {
    border-radius: .75rem
}

.rounded-b-2xl {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem
}

.rounded-t-md {
    border-top-left-radius: .375rem;
    border-top-right-radius: .375rem
}

.rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-4 {
    border-width: 4px
}

.border-\[0\.5px\] {
    border-width: .5px
}

.border-t {
    border-top-width: 1px
}

.border-t-0 {
    border-top-width: 0
}

.border-accent {
    --tw-border-opacity: 1;
    border-color: rgb(0 122 255/var(--tw-border-opacity))
}

.border-black {
    --tw-border-opacity: 1;
    border-color: rgb(33 33 33/var(--tw-border-opacity))
}

.border-blue-500 {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246/var(--tw-border-opacity))
}

.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235/var(--tw-border-opacity))
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity))
}

.bg-\[\#FFFCE7\] {
    --tw-bg-opacity: 1;
    background-color: rgb(255 252 231/var(--tw-bg-opacity))
}

.bg-accent {
    --tw-bg-opacity: 1;
    background-color: rgb(0 122 255/var(--tw-bg-opacity))
}

.bg-background {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 244/var(--tw-bg-opacity))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(33 33 33/var(--tw-bg-opacity))
}

.bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235/var(--tw-bg-opacity))
}

.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219/var(--tw-bg-opacity))
}

.bg-main {
    --tw-bg-opacity: 1;
    background-color: rgb(255 215 0/var(--tw-bg-opacity))
}

.bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240/var(--tw-bg-opacity))
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.bg-opacity-0 {
    --tw-bg-opacity: 0
}

.bg-opacity-90 {
    --tw-bg-opacity: 0.9
}

.bg-cover {
    background-size: cover
}

.bg-bottom {
    background-position: bottom
}

.bg-top {
    background-position: top
}

.bg-no-repeat {
    background-repeat: no-repeat
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: .25rem
}

.p-10 {
    padding: 2.5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.p-6 {
    padding: 1.5rem
}

.px-0 {
    padding-left: 0;
    padding-right: 0
}

.px-1 {
    padding-left: .25rem;
    padding-right: .25rem
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.px-16 {
    padding-left: 4rem;
    padding-right: 4rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.py-0\.5 {
    padding-top: .125rem;
    padding-bottom: .125rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.pb-0 {
    padding-bottom: 0
}

.pb-1\.5 {
    padding-bottom: .375rem
}

.pb-10 {
    padding-bottom: 2.5rem
}

.pb-14 {
    padding-bottom: 3.5rem
}

.pb-16 {
    padding-bottom: 4rem
}

.pb-2 {
    padding-bottom: .5rem
}

.pb-20 {
    padding-bottom: 5rem
}

.pb-6 {
    padding-bottom: 1.5rem
}

.pb-8 {
    padding-bottom: 2rem
}

.pl-1 {
    padding-left: .25rem
}

.pl-4 {
    padding-left: 1rem
}

.pl-5 {
    padding-left: 1.25rem
}

.pl-8 {
    padding-left: 2rem
}

.pr-1 {
    padding-right: .25rem
}

.pt-1 {
    padding-top: .25rem
}

.pt-10 {
    padding-top: 2.5rem
}

.pt-12 {
    padding-top: 3rem
}

.pt-14 {
    padding-top: 3.5rem
}

.pt-16 {
    padding-top: 4rem
}

.pt-20 {
    padding-top: 5rem
}

.pt-24 {
    padding-top: 6rem
}

.pt-3 {
    padding-top: .75rem
}

.pt-32 {
    padding-top: 8rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-5 {
    padding-top: 1.25rem
}

.pt-6 {
    padding-top: 1.5rem
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.font-sans {
    font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.font-bold {
    font-weight: 700
}

.font-extrabold {
    font-weight: 800
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.font-semibold {
    font-weight: 600
}

.leading-5 {
    line-height: 1.25rem
}

.leading-7 {
    line-height: 1.75rem
}

.leading-normal {
    line-height: 1.5
}

.leading-relaxed {
    line-height: 1.625
}

.leading-tight {
    line-height: 1.25
}

.tracking-wider {
    letter-spacing: .05em
}

.text-accent {
    --tw-text-opacity: 1;
    color: rgb(0 122 255/var(--tw-text-opacity))
}

.text-black {
    --tw-text-opacity: 1;
    color: rgb(33 33 33/var(--tw-text-opacity))
}

.text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246/var(--tw-text-opacity))
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128/var(--tw-text-opacity))
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99/var(--tw-text-opacity))
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81/var(--tw-text-opacity))
}

.text-main {
    --tw-text-opacity: 1;
    color: rgb(255 215 0/var(--tw-text-opacity))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68/var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.underline {
    text-decoration-line: underline
}

.opacity-0 {
    opacity: 0
}

.opacity-100 {
    opacity: 1
}

.opacity-60 {
    opacity: .6
}

.opacity-75 {
    opacity: .75
}

.shadow-\[0_4px_0px_\#005EDB\] {
    --tw-shadow: 0 4px 0px #005edb;
    --tw-shadow-colored: 0 4px 0px var(--tw-shadow-color)
}

.shadow-\[0_4px_0px_\#005EDB\], .shadow-lg {
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)
}

.transition-\[0\.5s\] {
    transition-property: .5s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.duration-100 {
    transition-duration: .1s
}

.duration-200 {
    transition-duration: .2s
}

.duration-300 {
    transition-duration: .3s
}

.duration-500 {
    transition-duration: .5s
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4,0,.2,1)
}

.ease-linear {
    transition-timing-function: linear
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");

@media (min-width: 768px) {
    .md\:container {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding-right: 1rem;
        padding-left: 1rem
    }

    @media (min-width: 600px) {
        .md\:container {
            max-width: 600px;
            padding-right: 2rem;
            padding-left: 2rem
        }
    }

    @media (min-width: 728px) {
        .md\:container {
            max-width: 728px
        }
    }

    @media (min-width: 980px) {
        .md\:container {
            max-width: 980px;
            padding-right: 2rem;
            padding-left: 2rem
        }
    }
}

.hover\:translate-y-\[4px\]:hover {
    --tw-translate-y: 4px
}

.hover\:scale-105:hover, .hover\:translate-y-\[4px\]:hover {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05
}

.hover\:scale-110:hover {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:bg-main-pale:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 227 79/var(--tw-bg-opacity))
}

.hover\:to-accent:hover {
    --tw-gradient-to: #007aff var(--tw-gradient-to-position)
}

.hover\:text-black:hover {
    --tw-text-opacity: 1;
    color: rgb(33 33 33/var(--tw-text-opacity))
}

.hover\:text-main:hover {
    --tw-text-opacity: 1;
    color: rgb(255 215 0/var(--tw-text-opacity))
}

.hover\:underline:hover {
    text-decoration-line: underline
}

.hover\:opacity-100:hover {
    opacity: 1
}

.hover\:opacity-70:hover {
    opacity: .7
}

.hover\:opacity-75:hover {
    opacity: .75
}

.hover\:shadow-none:hover {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)
}

@media not all and (min-width: 640px) {
    .max-sm\:pr-0 {
        padding-right: 0
    }
}

@media (min-width: 640px) {
    .sm\:-bottom-10 {
        bottom: -2.5rem
    }

    .sm\:-right-10 {
        right: -2.5rem
    }

    .sm\:-mt-16 {
        margin-top: -4rem
    }

    .sm\:mb-0 {
        margin-bottom: 0
    }

    .sm\:mb-10 {
        margin-bottom: 2.5rem
    }

    .sm\:mb-4 {
        margin-bottom: 1rem
    }

    .sm\:mb-5 {
        margin-bottom: 1.25rem
    }

    .sm\:mb-8 {
        margin-bottom: 2rem
    }

    .sm\:mt-8 {
        margin-top: 2rem
    }

    .sm\:block {
        display: block
    }

    .sm\:inline-block {
        display: inline-block
    }

    .sm\:hidden {
        display: none
    }

    .sm\:w-2\/5 {
        width: 40%
    }

    .sm\:w-3\/5 {
        width: 60%
    }

    .sm\:w-64 {
        width: 16rem
    }

    .sm\:w-8\/12 {
        width: 66.666667%
    }

    .sm\:w-auto {
        width: auto
    }

    .sm\:w-full {
        width: 100%
    }

    .sm\:max-w-sm {
        max-width: 24rem
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:justify-center {
        justify-content: center
    }

    .sm\:gap-4 {
        gap: 1rem
    }

    .sm\:gap-6 {
        gap: 1.5rem
    }

    .sm\:gap-x-8 {
        -moz-column-gap: 2rem;
        column-gap: 2rem
    }

    .sm\:p-11 {
        padding: 2.75rem
    }

    .sm\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }

    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .sm\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .sm\:pb-8 {
        padding-bottom: 2rem
    }

    .sm\:pt-10 {
        padding-top: 2.5rem
    }

    .sm\:text-left {
        text-align: left
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .sm\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .sm\:text-xl {
        font-size: 1.25rem
    }

    .sm\:leading-7, .sm\:text-xl {
        line-height: 1.75rem
    }
}

@media (min-width: 768px) {
    .md\:fixed {
        position: fixed
    }

    .md\:absolute {
        position: absolute
    }

    .md\:top-0 {
        top: 0
    }

    .md\:mb-12 {
        margin-bottom: 3rem
    }

    .md\:mb-20 {
        margin-bottom: 5rem
    }

    .md\:mb-6 {
        margin-bottom: 1.5rem
    }

    .md\:mt-12 {
        margin-top: 3rem
    }

    .md\:block {
        display: block
    }

    .md\:inline-block {
        display: inline-block
    }

    .md\:inline {
        display: inline
    }

    .md\:hidden {
        display: none
    }

    .md\:h-56 {
        height: 14rem
    }

    .md\:h-60 {
        height: 15rem
    }

    .md\:h-64 {
        height: 16rem
    }

    .md\:h-8 {
        height: 2rem
    }

    .md\:w-1\/3 {
        width: 33.333333%
    }

    .md\:w-5 {
        width: 1.25rem
    }

    .md\:w-56 {
        width: 14rem
    }

    .md\:w-60 {
        width: 15rem
    }

    .md\:w-64 {
        width: 16rem
    }

    .md\:w-8 {
        width: 2rem
    }

    .md\:w-full {
        width: 100%
    }

    .md\:max-w-xs {
        max-width: 20rem
    }

    .md\:flex-1 {
        flex: 1 1 0%
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:gap-4 {
        gap: 1rem
    }

    .md\:gap-8 {
        gap: 2rem
    }

    .md\:rounded-full {
        border-radius: 9999px
    }

    .md\:p-8 {
        padding: 2rem
    }

    .md\:py-5 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem
    }

    .md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem
    }

    .md\:pb-4 {
        padding-bottom: 1rem
    }

    .md\:pt-10 {
        padding-top: 2.5rem
    }

    .md\:pt-3 {
        padding-top: .75rem
    }
}

@media (min-width: 1024px) {
    .lg\:left-6 {
        left: 1.5rem
    }

    .lg\:right-6 {
        right: 1.5rem
    }

    .lg\:m-0 {
        margin: 0
    }

    .lg\:mx-0 {
        margin-left: 0;
        margin-right: 0
    }

    .lg\:my-10 {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem
    }

    .lg\:-ml-5 {
        margin-left: -1.25rem
    }

    .lg\:mb-10 {
        margin-bottom: 2.5rem
    }

    .lg\:inline-block {
        display: inline-block
    }

    .lg\:inline {
        display: inline
    }

    .lg\:hidden {
        display: none
    }

    .lg\:w-1\/2 {
        width: 50%
    }

    .lg\:w-1\/3 {
        width: 33.333333%
    }

    .lg\:w-12 {
        width: 3rem
    }

    .lg\:w-52 {
        width: 13rem
    }

    .lg\:w-8\/12 {
        width: 66.666667%
    }

    .lg\:w-auto {
        width: auto
    }

    .lg\:w-full {
        width: 100%
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .lg\:flex-col {
        flex-direction: column
    }

    .lg\:justify-between {
        justify-content: space-between
    }

    .lg\:gap-16 {
        gap: 4rem
    }

    .lg\:gap-6 {
        gap: 1.5rem
    }

    .lg\:gap-8 {
        gap: 2rem
    }

    .lg\:p-10 {
        padding: 2.5rem
    }

    .lg\:px-32 {
        padding-left: 8rem;
        padding-right: 8rem
    }

    .lg\:pb-0 {
        padding-bottom: 0
    }

    .lg\:pb-12 {
        padding-bottom: 3rem
    }

    .lg\:text-left {
        text-align: left
    }

    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .lg\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .lg\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .lg\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }
}

@media (min-width: 1280px) {
    .xl\:gap-10 {
        gap: 2.5rem
    }
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

    .swiper-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: transform,height
    }

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

    .swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
        transform-style: preserve-3d
    }

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

    .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none
    }

    .swiper-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start
    }

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none
}

    .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: none
    }

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper: before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper: before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0,0,0,.15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg,rgba(0,0,0,.5),transparent)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border-radius: 50%;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-top: 4px solid transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset,50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

    .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
        opacity: .35;
        cursor: auto;
        pointer-events: none
    }

    .swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
        opacity: 0;
        cursor: auto;
        pointer-events: none
    }

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next svg, .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg)
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: normal;
    line-height: 1
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,10px);
    left: auto
}

    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        content: "next"
    }

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0
    }

    .swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
        display: none !important
    }

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,8px);
    top: var(--swiper-pagination-top,auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transform: scale(.33);
        position: relative
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        transform: scale(.33)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        transform: scale(.33)
    }

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity,.2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity,1);
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    right: var(--swiper-pagination-right,8px);
    left: var(--swiper-pagination-left,auto);
    top: 50%;
    transform: translate3d(0,-50%,0)
}

    .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
        display: block
    }

    .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        transform: translateY(-50%);
        width: 8px
    }

        .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            transition: transform .2s,top .2s
        }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

    .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transition: transform .2s,left .2s
    }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s,right .2s
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color,inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));
    position: absolute
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: var(--swiper-pagination-color,var(--swiper-theme-color));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transform-origin: left top
    }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size,4px);
    left: 0;
    top: 0
}

    .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
        width: var(--swiper-pagination-progressbar-size,4px);
        height: 100%;
        left: 0;
        top: 0
    }

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius,10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))
}

    .swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
        display: none !important
    }

    .swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
        position: absolute;
        left: var(--swiper-scrollbar-sides-offset,1%);
        bottom: var(--swiper-scrollbar-bottom,4px);
        top: var(--swiper-scrollbar-top,auto);
        z-index: 50;
        height: var(--swiper-scrollbar-size,4px);
        width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
    }

    .swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
        position: absolute;
        left: var(--swiper-scrollbar-left,auto);
        right: var(--swiper-scrollbar-right,4px);
        top: var(--swiper-scrollbar-sides-offset,1%);
        z-index: 50;
        width: var(--swiper-scrollbar-size,4px);
        height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
    }

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));
    border-radius: var(--swiper-scrollbar-border-radius,10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

    .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

    .swiper-fade .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

    .swiper-cube .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

    .swiper-cube .swiper-cube-shadow:before {
        content: "";
        background: #000;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        filter: blur(50px)
    }

.swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden
}

.swiper.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1
}

    .swiper-flip .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform,opacity,height
}

.swiper.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden
}

.youtube-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
