:root {
    --main-color: #DC000C;
}

/* ヘッダー */
.l-header {
    height: 130px;

    @media screen and (max-width: 770px) {
        height: 90px;
    }

    .l-header__inner {
        max-width: 1190px;
        height: 100%;
        margin: 0 auto;
        display: flex;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;

        .l-header__logo {
            max-width: 347px;

            @media screen and (max-width: 770px) {
                max-width: 212px;
            }

            @media screen and (max-width: 380px) {
                max-width: 60%;
                object-fit: cover;
            }

            img {
                width: 100%;
                object-fit: cover;
            }
        }

        .l-header__btn {
            @media screen and (max-width: 770px) {
                a {
                    border-radius: 0;
                    font-size: 1.2rem;
                    width: auto;
                    padding: 10px;
                    line-height: 1.5;
                    font-weight: bold;
                }
            }
        }
    }

    .header__fixed-btn {
        @media screen and (max-width: 770px) {
            display: none;
            position: fixed;
            bottom: 0;
            right: 10px;
            z-index: 9;
        }
    }
}

/* 共通ボタン */
.c-btn__sd-reservation {
    line-height: 1.3;

    a {
        display: block;
        text-decoration: none;
        background-color: var(--main-color);
        color: white;
        font-size: 2.4rem;
        padding: 10px 0;
        border-radius: 8px;
        width: 360px;
        max-width: 100%;

        @media screen and (max-width: 380px) {
            width: 100%;
            padding: 10px 15px;
        }
    }

    span {
        font-size: 1.6rem;
    }
}

/* 共通インナー */
.inner {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 15px;
}

/* fv */
.p-fv {
    background-image: url("../images/lp/fv.png");
    width: 100%;
    height: calc(100vh - 130px);
    /* ヘッダー分引く */
    background-size: cover;
    background-position: center;
    position: relative;

    @media screen and (max-width: 770px) {
        background-image: url("../images/lp/fv--sp.png");
        height: 100vw;
        background-position: center top;
    }

    .p-fv__cp {
        position: absolute;
        top: 8%;
        left: 50%;
        width: 40%;

        img {
            width: 100%;
            object-fit: cover;
        }
    }

    .p-fv__authorization {
        position: absolute;
        left: 7%;
        bottom: 15%;

        @media screen and (max-width: 770px) {
            width: 25%;
            left: auto;
            top: 50%;
            bottom: auto;
            left: 85%;
            transform: translateY(-50%) translateX(-85%);
        }
    }

    .p-fv__list {
        position: absolute;
        left: 55%;
        bottom: 10%;
        width: 40%;
    }
}

/* fv */
.p-fv--sp {
    text-align: center;

    .p-fv--sp__cp {
        display: inline-block;
        width: 80%;
        margin-top: 35px;
    }

    .p-fv--sp__list {
        display: inline-block;
        width: 90%;
        margin-top: 25px;

    }
}

.fv-btn {
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 9;

    a {
        display: block;
        width: 100%;
        margin-left: auto;
        margin-top: -100px;
        z-index: 9;
    }
}

.p-the-content {
    text-align: left;
    margin-top: 30px;
}

/* about us */
.p-aboutus {
    .p-aboutus__head {
        margin-top: 25px;
        text-align: center;

        @media screen and (max-width: 770px) {
            margin-top: 50px;
        }

        h2 {
            font-size: 40px;
            font-weight: bold;
            margin-top: 20px;

            @media screen and (max-width: 770px) {
                font-size: 20px;
            }
        }

        p {
            margin-top: 20px;
            font-size: 24px;
            font-weight: bold;
            color: var(--main-color);
            letter-spacing: 5px;

            @media screen and (max-width: 770px) {
                font-size: 16px;
                margin-top: 10px;
            }
        }
    }

    .p-aboutus__img {
        margin-top: 60px;
        text-align: right;
        width: 60%;
        margin-right: 0;
        margin-left: auto;

        @media screen and (max-width: 770px) {
            width: 90%;
            margin-top: 40px;
        }

        img {
            width: 100%;
            object-fit: cover;
        }
    }

    .p-aboutus__info {
        width: 60%;
        text-align: left;
        padding: 45px 15px 15px 15px;
        background-color: rgba(255, 255, 255, .85);
        position: relative;
        top: -250px;
        margin-bottom: -250px;

        @media screen and (max-width: 990px) {
            top: -150px;
            margin-bottom: -150px;
        }

        @media screen and (max-width: 770px) {
            width: 100%;
            top: -100px;
            background-color: unset;
            padding: 45px 0px 15px 0px;
        }

        p {
            margin-top: 50px;

            @media screen and (max-width: 770px) {
                margin-top: 20px;
            }
        }
    }

    .p-aboutus__box {
        display: grid;
        gap: 40px;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 80px;

        @media screen and (max-width: 1190px) {
            gap: 20px;
            /* アイテム間の隙間 */
        }

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

        .p-aboutus__box__unit {
            @media screen and (max-width: 770px) {
                margin-top: 60px;
            }

            img {
                width: 100%;
                object-fit: cover;
                margin-top: 20px;
            }

            .no {
                font-size: 2.2rem;
                font-weight: bold;
                color: var(--main-color);

                @media screen and (max-width: 1190px) {
                    font-size: 1.8vw;
                }

                @media screen and (max-width: 770px) {
                    font-size: 2rem;
                }

                span {
                    color: #0080D2;
                    padding-right: 5px;
                }
            }

            .info {
                margin-top: 20px;
                font-size: 1.6rem;
                text-align: left;
                line-height: 1.7;
            }
        }
    }
}

.p-aboutus.mt100 {
    margin-top: 100px;
}

/* entry */
.p-entry {
    margin-top: 100px;

    .p-entry__inner {
        @media screen and (max-width: 770px) {
            max-width: 100%;
            padding: 0;
        }
    }

    h3 {
        font-weight: bold;
        font-size: 3.5rem;
        text-align: left;
        color: var(--main-color);
        margin-top: 50px;

        @media screen and (max-width: 770px) {
            font-size: 1.6rem;
            padding: 0 15px;
        }

        span.no {
            color: white;
            background-color: var(--main-color);
            font-size: 5rem;
            padding: 5px 22px;
            border-radius: 50px;
            position: relative;
            top: 5px;
            margin-right: 20px;

            @media screen and (max-width: 770px) {
                font-size: 2.5rem;
                padding: 5px 13px;
            }
        }

        span {
            color: #0080D2;
        }
    }

    .p-entry__head {
        h2 {
            font-size: 4rem;
            color: var(--main-color);
            font-weight: bold;

            @media screen and (max-width: 770px) {
                font-size: 2rem;
            }
        }

        span {
            display: inline-block;
            color: black;
            margin-top: 30px;
        }
    }

    /* ①本社（とくぎんトモニアリーナ前） */
    .p-entry01__box01 {
        display: flex;
        align-items: stretch;
        /* 子要素の高さを親要素に合わせる */
        margin-top: 50px;

        @media screen and (max-width: 770px) {
            display: block;
            margin-top: 20px;
        }

        .p-entry01__box01__img {
            width: 50%;

            @media screen and (max-width: 770px) {
                width: 100%;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .p-entry01__box01__info {
            width: 50%;
            background-color: #F8F8F3;
            padding: 25px 15px 25px 25px;
            text-align: left;
            font-size: 2rem;

            @media screen and (max-width: 770px) {
                width: 100%;
                font-size: 1.4rem;
                padding: 15px;
            }

            address {
                color: var(--main-color);
                margin-top: 30px;
                font-style: normal;

                p {
                    margin-top: -10px;
                    display: block;
                    color: var(--main-color);
                    font-size: 2.4rem;
                    font-weight: bold;
                }

                a {
                    color: var(--main-color);
                    font-size: 3.2rem;
                    text-decoration: none;
                }

                .open {
                    display: block;
                    font-size: 1.2rem;
                    font-weight: normal;
                    margin-top: -20px;
                }
            }

            small {
                margin-top: 25px;
                display: inline-block;
                font-size: 1.4rem;
                line-height: 1.8;
            }
        }
    }

    .p-entry01__box02 {
        display: grid;
        gap: 40px;
        grid-template-columns: repeat(3, 1fr);
        /* 3つのカラムを均等に分ける */
        gap: 40px;
        /* アイテム間の隙間 */
        margin-top: 60px;

        @media screen and (max-width: 1190px) {
            gap: 20px;
            /* アイテム間の隙間 */
        }

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

        .p-entry01__box02__unit {
            @media screen and (max-width: 770px) {
                width: 80%;
                margin-top: 25px;
            }

            img {
                width: 100%;
                object-fit: cover;
            }

            p {
                margin-top: 10px;

                @media screen and (max-width: 770px) {
                    font-size: 1.2rem;
                }
            }
        }

        .p-entry01__box02__unit:nth-child(2) {
            @media screen and (max-width: 770px) {
                margin-right: 0;
                margin-left: auto;
            }
        }

    }

    .p-entry__btn {
        display: inline-block;
        margin-top: 50px;
    }

    .p-entry__btn03 {
        display: inline-block;
        margin-top: 30px;

        @media screen and (max-width: 770px) {
            display: none;
        }
    }

    .sp-none {
        display: none !important;
    }

    /* ②Oshigoto by sdcenter（イオンモール徳島2F） */
    .p-entry02 {
        h3 {
            .ion {
                color: var(--main-color);

                @media screen and (max-width: 770px) {
                    margin-left: 50px;
                    display: inline-block;
                }
            }
        }

        .p-entry02__box01 {
            display: flex;
            margin-top: 50px;
            position: relative;
            margin-bottom: 150px;

            &::before {
                content: '';
                display: inline-block;
                width: 70%;
                height: 120%;
                background-size: cover;
                background-repeat: no-repeat;
                background-color: #F8F8F3;
                position: absolute;
                right: 0;
                top: 100px;
                z-index: -1;
            }

            @media screen and (max-width: 770px) {
                display: block;
                margin-top: 20px;

                &::before {
                    display: none;
                }
            }

            .p-entry02__box01__img {
                width: 50%;

                @media screen and (max-width: 770px) {
                    width: 100%;
                }

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .p-entry02__box01__info {
                width: 50%;
                padding: 25px 15px 25px 25px;
                position: relative;
                top: 100px;
                text-align: left;
                font-size: 2rem;
                position: relative;
                z-index: 3;

                &::after {
                    content: '';
                    display: inline-block;
                    width: 70%;
                    height: 150px;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-image: url("../images/lp/text-work_your_way.png");
                    position: absolute;
                    right: 0;
                    bottom: -30px;
                    z-index: -1;
                }

                @media screen and (max-width: 770px) {
                    width: 100%;
                    font-size: 1.4rem;
                    padding: 15px 15px 100px 15px;

                    &::after {
                        bottom: -80px;
                    }
                }


                .p-entry02__box01__info__ttl {
                    width: 100%;
                    position: relative;
                    bottom: 130px;
                    margin-bottom: -100px;
                    right: 12%;
                    text-align: center;

                    @media screen and (max-width: 770px) {
                        right: 0;
                        bottom: 200px;
                        margin-bottom: -150px;
                    }

                    p {
                        width: 90%;

                        img {
                            width: 100%;
                            object-fit: cover;
                        }
                    }
                }

                p {
                    margin-top: 30px;
                    width: 77%;

                    @media screen and (max-width: 1190px) {
                        width: 90%;
                    }

                    @media screen and (max-width: 770px) {
                        width: 100%;
                    }
                }
            }

        }

        .p-entry02__box02 {
            display: grid;
            gap: 40px;
            grid-template-columns: repeat(3, 1fr);
            /* 3つのカラムを均等に分ける */
            margin-top: 60px;

            @media screen and (max-width: 1190px) {
                gap: 20px;
                /* アイテム間の隙間 */
            }

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

            .p-entry01__box02__unit {
                text-align: left;

                @media screen and (max-width: 770px) {
                    width: 80%;
                    margin-top: 25px;
                }

                img {
                    width: 100%;
                    object-fit: cover;
                }

                p {
                    margin-top: 10px;

                    @media screen and (max-width: 770px) {
                        font-size: 1.2rem;
                    }
                }
            }

            .p-entry01__box02__unit:nth-child(2) {
                @media screen and (max-width: 770px) {
                    margin-right: 0;
                    margin-left: auto;
                }
            }

        }
    }
}

/* 登録方法とお仕事開始までの流れ */
.p-flow {
    margin-top: 150px;
    background-color: #F8F8F3;
    padding-bottom: 60px;

    @media screen and (max-width: 770px) {
        margin-top: 70px;
    }

    .p-flow__head {
        padding-top: 50px;

        h2 {
            font-size: 4rem;
            font-weight: bold;

            @media screen and (max-width: 770px) {
                font-size: 2rem;
            }
        }

        p {
            font-size: 2.4rem;
            font-weight: bold;
            color: var(--main-color);

            @media screen and (max-width: 770px) {
                font-size: 1.6rem;
            }
        }
    }

    .p-flow__box {
        display: flex;
        gap: 40px;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 50px;
        margin-bottom: 45px;

        @media screen and (max-width: 770px) {
            display: block;
            max-width: 480px;
            margin: 0 auto;
        }

        .p-flow__box__unit {
            background-color: #FFDEE0;
            border-radius: 1000px;
            aspect-ratio: 1 / 1;
            padding: 0 40px;
            width: 100%;
            position: relative;

            @media screen and (max-width: 770px) {
                padding: 0;
                margin-top: 60px;
            }

            .p-flow__box__unit__info {
                @media screen and (max-width: 770px) {
                    width: 75%;
                    margin: 0 auto;
                }

                .no {
                    font-size: 4rem;
                    font-weight: bold;
                    color: var(--main-color);
                    letter-spacing: 3px;
                    text-align: center;

                    @media screen and (max-width: 990px) {
                        font-size: 2rem;
                        padding-top: 20px;
                    }
                }

                h3 {
                    font-size: 4rem;
                    font-weight: bold;
                    color: black;
                    display: inline;

                    @media screen and (max-width: 990px) {
                        font-size: 2rem;
                        margin-top: 20px;
                    }
                }

                p {
                    text-align: left;

                    @media screen and (max-width: 990px) {
                        font-size: 1.5vw;
                    }

                    @media screen and (max-width: 770px) {
                        padding-top: 20px;
                        font-size: 1.6rem;
                    }
                }
            }
        }

        .p-flow__box__unit:nth-child(2) {
            position: relative;

            &::before {
                content: '';
                display: inline-block;
                width: 40px;
                height: 35px;
                background-image: url("../images/lp/icon-arrow-right.png");
                background-size: contain;
                background-repeat: no-repeat;
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%) translateX(-85%);
            }

            &::after {
                content: '';
                display: inline-block;
                width: 40px;
                height: 35px;
                background-image: url("../images/lp/icon-arrow-right.png");
                background-size: contain;
                background-repeat: no-repeat;
                position: absolute;
                right: 0px;
                top: 50%;
                transform: translateY(-50%) translateX(115%);
            }

            @media screen and (max-width: 770px) {
                &::before {
                    background-image: url("../images/lp/icon-arrow-under.png");
                    left: 50%;
                    top: 0;
                    transform: translateY(-125%) translateX(-50%);
                }

                &::after {
                    background-image: url("../images/lp/icon-arrow-under.png");
                    left: 50%;
                    top: auto;
                    bottom: 0%;
                    transform: translateY(125%) translateX(-50%);
                }
            }
        }
    }
}

/* 派遣スタッフの対応職種 */
.p-occupation {
    margin: 120px 0;

    @media screen and (max-width: 770px) {
        margin: 60px 0px;
    }


    .p-occupation__head {
        h2 {
            font-size: 4rem;
            font-weight: bold;

            @media screen and (max-width: 770px) {
                font-size: 2rem;
            }
        }

        p {
            font-size: 2.4rem;
            font-weight: bold;
            color: var(--main-color);
            letter-spacing: 2px;

            @media screen and (max-width: 770px) {
                font-size: 1.6rem;
            }
        }
    }

    .p-occupation__box {
        display: grid;
        gap: 40px;
        grid-template-columns: repeat(4, 1fr);
        margin-top: 80px;

        @media screen and (max-width: 770px) {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 40px;
        }

        .p-occupation__box__unit {
            text-align: center;
            position: relative;

            .ttl {
                font-size: 3.2rem;
                color: white;
                font-weight: bold;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translateY(-50%) translateX(-50%);
                padding: 0;

                @media screen and (max-width: 770px) {
                    font-size: 1.8rem;
                }
            }
        }
    }
}


/* お仕事例・ピックアップ求人 */
.p-pickup {
    padding: 70px 0 90px 0;
    background-color: rgba(0, 128, 210, .1);
    overflow-x: hidden;

    .p-pickup__head {
        h2 {
            font-size: 4rem;
            font-weight: bold;

            @media screen and (max-width: 770px) {
                font-size: 2rem;
            }
        }

        p {
            font-size: 2.4rem;
            font-weight: bold;
            color: var(--main-color);
            letter-spacing: 2px;

            @media screen and (max-width: 770px) {
                font-size: 1.6rem;
            }
        }
    }

    .p-pickup__contents {
        max-width: 1190px;
        padding: 0 15px;
        margin: 0 auto;
        margin-top: 50px;

        @media screen and (max-width: 770px) {
            margin-top: 50px;
            position: relative;
            padding: 0;
        }

        .p-pickup__list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;

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

            li {
                text-align: left;
                background-color: rgba(255, 255, 255, .5);
                border-radius: 10px;
                padding: 20px 20px 30px 20px;

                .list-job-name {
                    font-weight: normal;
                    text-align: center;
                    color: white;
                    font-size: 2rem;
                    margin-top: 20px;

                    @media screen and (max-width: 770px) {
                        padding: 15px 0;
                    }
                }

                .job-info {
                    font-size: 1.8rem;
                    margin-top: 30px;

                    @media screen and (max-width: 770px) {
                        font-size: 1.4rem;
                    }
                }

                dl {
                    margin-top: 15px;
                    padding-top: 15px;
                    border-top: 1px solid white;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 0 10px;

                    dt {
                        font-weight: normal;
                        width: 20%;
                        white-space: nowrap;
                        padding-right: 15px;

                        @media screen and (max-width: 480px) {
                            width: 70px;
                        }
                    }

                    dd {
                        width: 70%;

                        @media screen and (max-width: 480px) {
                            width: 55%;
                        }
                    }
                }
            }
        }
    }

    .p-pickup__contents__sp {
        display: none;

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

    .p-pickup__foot {
        margin-top: 70px;

        @media screen and (max-width: 770px) {
            img {
                width: 80%;
            }
        }
    }

    .p-pickup__btn {
        display: inline-block;
        margin-top: 40px;
    }
}

/* Swiperのカスタマイズ */
.swiper1 {
    padding-left: 30px;
}

.swiper1 .swiper-button-prev,
.swiper1 .swiper-button-next {
    height: 35px;
    width: 35px;
    background-repeat: no-repeat;
    background-size: contain;
}

.swiper1 .swiper-button-prev {
    background-image: url("../images/lp/swiper-arrow-left.png") !important;
}

.swiper1 .swiper-button-next {
    background-image: url("../images/lp/swiper-arrow-right.png") !important;
    /* transform:translateX(-50%); */
    right: 15px;
}


/* 派遣で働くメリットは？ */
.p-merit {
    margin-top: 100px;

    .p-merit__head {
        h2 {
            font-size: 4rem;
            font-weight: bold;

            @media screen and (max-width: 770px) {
                font-size: 2rem;
            }
        }

        p {
            font-size: 2.4rem;
            font-weight: bold;
            color: var(--main-color);
            letter-spacing: 2px;

            @media screen and (max-width: 770px) {
                font-size: 1.6rem;
            }
        }
    }

    .p-merit__info {
        margin-top: 30px;
        padding: 0 15px;

        @media screen and (max-width: 770px) {
            font-size: 1.4rem;
        }
    }

    .p-merit__wrapper {
        position: relative;
        padding-bottom: 80px;

        @media screen and (max-width: 770px) {
            top: 0;
            padding-bottom: 120px;
        }

        .p-merit__bg {
            position: absolute;
            width: 80%;
            height: 100%;
            right: 0;
            background-color: #F8F8F3;
            top: 5%;

            @media screen and (max-width: 770px) {
                top: 0;
            }

        }

        .p-merit__sec01,
        .p-merit__sec02,
        .p-merit__sec03,
        .p-merit__sec04 {
            display: flex;
            gap: 40px;
            position: relative;
            margin-top: 120px;

            @media screen and (max-width: 770px) {
                display: block;
                margin-top: 40px;
            }
        }

        .p-merit__sec02,
        .p-merit__sec04 {
            justify-content: flex-end;
        }

        .p-merit__sec01__img,
        .p-merit__sec02__img,
        .p-merit__sec03__img,
        .p-merit__sec04__img {
            width: 41%;

            @media screen and (max-width: 770px) {
                width: 100%;
                padding-right: 15px;
            }

            img {
                width: 100%;
                object-fit: cover;
            }
        }

        .p-merit__sec02__img,
        .p-merit__sec04__img {
            order: 2;
        }

        .p-merit__sec01__box,
        .p-merit__sec02__box,
        .p-merit__sec03__box,
        .p-merit__sec04__box {
            max-width: 650px;
            width: 100%;
            padding-right: 15px;
            text-align: left;

            @media screen and (max-width: 1190px) {
                max-width: 50%;
            }

            @media screen and (max-width: 770px) {
                width: 100%;
                max-width: 100%;
                padding: 0 15px;
                margin-top: 50px;
            }

            img {
                width: 70%;

                @media screen and (max-width: 770px) {
                    width: 100%;
                }
            }

            .p-merit_sec01__info,
            .p-merit_sec02__info,
            .p-merit_sec03__info,
            .p-merit_sec04__info {
                text-align: left;
                font-size: 1.8rem;
                margin-top: 30px;

                @media screen and (max-width: 770px) {
                    font-size: 1.4rem;
                }
            }

            .p-merit_sec03__info {
                position: relative;

                &::after {
                    content: '';
                    display: inline-block;
                    width: 70%;
                    height: 150px;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-image: url("../images/lp/text-work_your_way.png");
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: -150px;
                    z-index: 1;
                }
            }
        }

        .p-merit__sec01__box {
            position: relative;

            &::after {
                content: '';
                display: inline-block;
                width: 70%;
                height: 150px;
                background-size: contain;
                background-repeat: no-repeat;
                background-image: url("../images/lp/text-work_your_way.png");
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: -120px;
                z-index: 1;
            }

            @media screen and (max-width: 770px) {
                &::after {
                    display: none;
                }
            }
        }

        .p-merit__sec04__box {
            position: relative;

            &::after {
                content: '';
                display: inline-block;
                width: 70%;
                height: 150px;
                background-size: contain;
                background-repeat: no-repeat;
                background-image: url("../images/lp/text-work_your_way.png");
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                top: -120px;
                z-index: 1;
            }

            @media screen and (max-width: 770px) {
                &::after {
                    display: none;
                }
            }
        }

        .p-merit__sec02__box {
            img {
                width: 50%;

                @media screen and (max-width: 770px) {
                    width: 80%;
                }
            }
        }

        .p-merit__sec03__box {
            img {
                width: 90%;

                @media screen and (max-width: 770px) {
                    width: 80%;
                }
            }
        }

        .p-merit__sec02__box,
        .p-merit__sec04__box {
            order: 1;
        }
    }

    .p-merit__btn {
        display: inline-block;
        margin-top: 100px;

        @media screen and (max-width: 770px) {
            margin-top: 30px;
        }
    }
}

/* ご利用者様の声 */
.p-voice {
    background-color: #EDB855;
    padding: 70px 0 130px 0;
    margin-top: 70px;

    @media screen and (max-width: 770px) {
        padding: 30px 0 30px 0;
    }

    .p-voice__inner {
        max-width: 1190px;
        margin: 0 auto;
        padding: 0 15px;

        @media screen and (max-width: 770px) {
            padding: 0;
        }

        .p-voice__head {
            margin-top: 25px;
            text-align: center;

            @media screen and (max-width: 770px) {
                margin-top: 0px;
            }

            h2 {
                font-size: 40px;
                font-weight: bold;
                margin-top: 20px;

                @media screen and (max-width: 770px) {
                    font-size: 20px;
                }
            }

            p {
                margin-top: 20px;
                font-size: 24px;
                font-weight: bold;
                color: var(--main-color);
                letter-spacing: 5px;

                @media screen and (max-width: 770px) {
                    font-size: 16px;
                    margin-top: 0px;
                }
            }
        }

        .p-voice__contents,
        .p-voice__contents__sp {
            display: grid;
            gap: 80px;
            grid-template-columns: repeat(3, 1fr);
            margin-top: 70px;

            @media screen and (max-width: 770px) {
                display: none;
                margin-top: 30px;
            }

            .p-voice__item {
                @media screen and (max-width: 770px) {
                    /* padding: 0 5%; */
                    padding-left: 10%;
                }

                .p-voice__item__img {
                    position: relative;

                    &::after {
                        content: '';
                        display: inline-block;
                        width: 75%;
                        height: 100%;
                        background-image: url("../images/lp/bg-voice01.png");
                        background-size: cover;
                        background-repeat: no-repeat;
                        position: absolute;
                        top: 0px;
                        left: 80%;
                        transform: translateX(-80%);
                    }
                }

                img {
                    width: 75%;
                    object-fit: cover;
                    position: relative;
                    z-index: 9;
                }

                .p-voice__item__info {
                    font-size: 1.8rem;
                    border: 5px solid #DC000C;
                    background-color: white;
                    border-radius: 4px;
                    padding: 40px 5px;
                    position: relative;
                    top: -50px;
                    text-align: left;
                }
            }
        }

        .p-voice__contents__sp {
            display: none;

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

/* Swiperのカスタマイズ */
.swiper2 .swiper-button-prev,
.swiper2 .swiper-button-next {
    height: 35px;
    width: 35px;
    background-repeat: no-repeat;
    background-size: contain;
}

.swiper2 .swiper-button-prev {
    background-image: url("../images/lp/swiper-arrow-left.png") !important;
    top: 15%;
}

.swiper2 .swiper-button-next {
    background-image: url("../images/lp/swiper-arrow-right.png") !important;
    top: 15%;
}

/* よくある質問 */
.p-faq {

    .faq__contents {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 80px;

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

        .faq__head {
            text-align: left;

            @media screen and (max-width: 770px) {
                margin-top: 50px;
                text-align: center;
            }

            h2 {
                font-size: 40px;
                font-weight: bold;

                @media screen and (max-width: 770px) {
                    font-size: 20px;
                }
            }

            p {
                margin-top: 20px;
                font-size: 24px;
                font-weight: bold;
                color: var(--main-color);
                letter-spacing: 5px;
                text-align: left;

                @media screen and (max-width: 770px) {
                    font-size: 16px;
                    margin-top: 10px;
                    text-align: center;
                }
            }

            .p-faq__btn {
                text-align: center;
                margin-top: 70px;

                span {
                    font-size: 1.6rem;
                    color: white;
                }
            }
        }

        .faq__main {
            text-align: left;

            @media screen and (max-width: 770px) {
                margin-top: 30px;
            }

            .faq__box {
                margin-bottom: 35px;
                position: relative;

                @media screen and (max-width: 770px) {
                    margin-top: 30px;
                    margin-bottom: 0px;
                }

                .faq__box__q {
                    padding: 16px 70px 24px 120px;
                    position: relative;
                    background-color: #F8F8F3;

                    @media screen and (max-width: 770px) {
                        padding: 16px 20px 24px 80px;
                    }

                    span {
                        color: #DC000C;
                        font-weight: bold;
                    }

                    &::after {
                        content: '';
                        display: inline-block;
                        width: 76px;
                        height: 76px;
                        background-image: url("../images/lp/img-faq01.png");
                        background-size: cover;
                        background-repeat: no-repeat;
                        position: absolute;
                        left: 15px;
                        top: 50%;
                        transform: translateY(-50%);
                    }

                    @media screen and (max-width: 770px) {
                        &::after {
                            width: 50px;
                            height: 50px;
                        }
                    }
                }

                .faq__box__a {
                    padding: 16px 125px 24px 30px;
                    position: relative;
                    background-color: #F2F2DF;

                    @media screen and (max-width: 770px) {
                        font-size: 1.4rem;
                        padding: 16px 90px 24px 20px;
                    }

                    span {
                        color: #DC000C;
                        font-weight: bold;
                    }

                    &::after {
                        content: '';
                        display: inline-block;
                        width: 76px;
                        height: 76px;
                        background-image: url("../images/lp/img-faq02.png");
                        background-size: cover;
                        background-repeat: no-repeat;
                        position: absolute;
                        right: 15px;
                        top: 20%;
                        transform: translateY(-20%);
                    }

                    @media screen and (max-width: 770px) {
                        &::after {
                            width: 50px;
                            height: 50px;
                        }
                    }
                }
            }

            .box-hide {
                @media screen and (max-width: 770px) {
                    height: 0;
                    overflow: hidden;
                    transition: all .4s;
                }
            }

            .box-hide.is_open:before {
                display: none;
            }
        }

        .btn-answer {
            display: none;
            width: 100%;
            background-color: #F2F2DF;
            border: none;
            color: #DC000C;
            font-weight: bold;
            padding: 15px 0;
            position: relative;
            top: -50px;

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

            &:before {
                content: '';
                display: inline-block;
                width: 20px;
                height: 10px;
                background-image: url("../images/lp/icon-under-red.png");
                background-size: contain;
                background-repeat: no-repeat;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translateY(-50%) translateX(-70px);
            }
        }

        .btn-answer.rotate::before {
            transform: translateY(-50%) translateX(-70px) rotate(180deg);
        }
    }
}



/* スタッフ登録・来店予約フォーム */
.p-contact {
    margin-top: 30px;

    .p-contact__head {
        text-align: left;
        position: relative;
        height: 350px;
        margin-bottom: 50px;

        @media screen and (max-width: 770px) {
            height: auto;
        }

        h2 {
            font-size: 4rem;
            font-weight: bold;

            @media screen and (max-width: 770px) {
                font-size: 2rem;
                position: relative;
                top: -30px;
            }
        }

        p {
            font-size: 2.4rem;
            font-weight: bold;
            color: var(--main-color);

            @media screen and (max-width: 770px) {
                font-size: 1.6rem;
                position: relative;
                top: -30px;
            }
        }

        .p-contact__head__img {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 60%;

            img {
                width: 100%;
                height: 100%;
                object-position: right;
                object-fit: cover;
            }

            @media screen and (max-width: 770px) {
                position: static;
                width: 100%;
            }
        }
    }

    .p-contact__info {
        text-align: left;
        max-width: 760px;
        margin: 0 auto;
        padding: 0 15px;

        p {
            font-size: 12px;
            line-height: 1.8;
            margin: 0;
        }

        @media screen and (max-width: 770px) {
            font-size: 1.4rem;
            margin-top: -50px;
        }
    }

    .p-contact__form {
        background-color: rgba(0, 128, 210, .1) !important;
        margin-top: 40px;
        padding: 30px 0 80px 0;

        .wpcf7-list-item {
            margin: 0;
        }

        .about-info {
            text-align: left;
            font-size: 12px;
        }

        @media screen and (max-width: 770px) {
            padding: 1px 0 40px 0;
        }

        .p-contact__group {
            margin-top: 30px;

            .p-contact__box {
                text-align: left;
                position: relative;

                .p-contact__title {
                    font-weight: bold;
                    color: #0062A0;
                }

                #address {
                    height: 50px;
                }

                .hissu {
                    position: absolute;
                    right: 40%;
                    background-color: #DC000C;
                    color: white;
                    padding: 1px 10px;
                    font-size: 1.4rem;
                    font-weight: normal;

                    @media screen and (max-width: 990px) {
                        position: static;
                        background-color: #DC000C;
                        font-weight: normal;
                        display: inline-block;
                        right: 0;
                        margin-left: 20px;
                        padding: 0px 5px;
                    }
                }
            }

            .p-contact__box__birth {
                input {
                    width: 100px;
                    height: 50px;

                    @media screen and (max-width: 770px) {
                        width: 25%;
                    }
                }

                select {
                    width: 100px;
                    height: 50px;

                    @media screen and (max-width: 770px) {
                        width: 25%;
                    }
                }

                .gap {
                    margin: 0 30px 0 5px;

                    @media screen and (max-width: 770px) {
                        margin: 0 10px 0 5px;
                    }
                }

                .kibou {
                    margin-top: 20px;
                    display: block;

                    span {
                        margin-left: 10px;
                    }
                }
            }
        }

        .p-contact__group.poricy {
            border: 1px solid #0080D2;
            padding: 10px;

            label {
                display: flex;
                gap: 20px;

                input {
                    transform: scale(1.8);
                    border-radius: 0;
                }
            }
        }

        .p-contact__submit {
            input {
                background-color: #969696;
                max-width: 100%;
                width: 360px;
                margin-top: 50px;
                padding: 20px 0;
                font-size: 24px;
            }
        }
    }
}

/* フッター */
footer {
    margin-top: 160px;
    margin-bottom: 0;

    .footer__inner {
        background-color: #313131;
        color: #ffffff;
        padding: 60px 0;
        text-align: left;

        @media screen and (max-width: 770px) {
            padding: 30px 0 60px 0;
        }

        .footer__box {
            display: flex;

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

            .footer__left {
                width: 50%;
                text-align: center;

                @media screen and (max-width: 770px) {
                    width: 100%;
                    margin-bottom: -25%;
                }

                .footer__img {
                    width: 90%;
                    position: relative;
                    top: -170px;

                    @media screen and (max-width: 770px) {
                        width: 97%;
                        top: -23vw;
                    }

                    @media screen and (max-width: 480px) {
                        top: -30vw;
                    }

                    p {
                        @media screen and (max-width: 770px) {
                            display: none;
                        }
                    }

                    img {
                        width: 100%;
                        object-fit: cover;
                        margin-bottom: 20px;
                    }
                }
            }

            .footer__right {
                width: 50%;

                @media screen and (max-width: 770px) {
                    width: 100%;
                    padding: 0 15px;
                }

                .footer__company01 {
                    span {}

                    h2 {
                        font-size: 2.4rem;
                        font-weight: bold;
                        color: white;
                        margin-top: -5px;
                    }

                    a {
                        font-size: 3.2rem;
                        color: white;
                        text-decoration: none;
                    }

                    .time {
                        font-size: 1.2rem;
                    }
                }

                .footer__company02 {
                    margin-top: 30px;

                    .en {
                        font-size: 2.4rem;
                        font-weight: bold;
                    }

                    a {
                        font-size: 3.2rem;
                        color: white;
                        text-decoration: none;
                    }
                }
            }
        }
    }
}