/*===============================================
変数の定義
===============================================*/
:root {
    --main-color: #0abab5;
}

/*===============================================
表示の設定
===============================================*/
body {
    background-color: var(--main-color);
    color: white;
    opacity: 0;
    transition: opacity 0.95s;
    font-family: "Noto Sans JP",
        /* Google FontsなどWebフォント */
        "ヒラギノ角ゴ ProN W3",
        /* macOS/iOS */
        "Hiragino Kaku Gothic ProN",
        /* macOS/iOS */
        "ヒラギノ角ゴシック",
        /* macOS/iOS */
        "Hiragino Sans",
        /* macOS/iOS */
        "Meiryo",
        /* Windows */
        "メイリオ",
        /* Windows */
        "MS PGothic",
        /* Windows */
        "MS ゴシック",
        /* Windows */
        sans-serif;
}

body.fadein {
    opacity: 1;
}

.bg {
    background-color: #f8f8f8;
}

/*===============================================
解像度x992px~ CSS (PC)
===============================================*/
@media screen and (min-width: 992px) {

    /*===============================================
デバイス表示切り替え： PC
===============================================*/
    .pc_only {
        display: block;
    }

    .mobile_only {
        display: none;
    }

    /*===============================================
    改行 点滅：PC
    ===============================================*/
    .br_pc::before {
        content: "\a";
        white-space: pre;
    }

    /*===============================================
  header:PC
  ===============================================*/

    header {
        position: fixed;
        width: 100%;
        z-index: 9999;
        height: 67px;
        background-color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .logo {
            height: 45px;
            width: auto;
            margin-right: 5px;
        }

        .bars-solid {
            margin-left: 12px;
            width: 50px;
            height: 50px;
        }

        .offcanvas.offcanvas-start {
            width: 377px;
            background-color: var(--main-color);
        }

        .offcanvas-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 12px 17px 0px 24px;

            .logo {
                height: 35px;
                width: auto;
            }
        }

        .offcanvas {
            .xmark-solid {
                height: 45px;
            }
        }

        .offcanvas-body {
            padding: 0px 0px 110px;
            overflow-x: hidden;

            ul {
                list-style-type: none;
                width: 250px;
                padding: 0;
                margin: 87px 40px 10px 85px;

                a {
                    display: block;
                    font-size: 21px;
                    font-weight: bold;
                    text-decoration: none;
                    color: white;
                    -webkit-transition: all 0.6s ease 0s;
                    -o-transition: all 0.6s ease 0s;
                    transition: all 0.6s ease 0s;

                    &:hover {
                        color: white;
                        text-decoration: none;
                        opacity: 0.7;
                    }

                    li {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: auto;
                        margin-bottom: 30px;
                        border-bottom: solid 1px #ffffff;
                        padding-bottom: 5px;
                    }

                    li.nav-item {
                        font-size: 19px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: auto;
                        height: 50px;
                        color: var(--main-color);
                        background-color: white;
                        border-radius: 8px;
                        margin-top: -5px;
                    }

                    .icon {
                        width: auto;
                        height: 12px;
                        width: auto;
                    }
                }
            }

            nav {
                a {
                    color: white;
                    text-decoration: underline;
                    margin-bottom: 16px;
                    -webkit-transition: all 0.6s ease 0s;
                    -o-transition: all 0.6s ease 0s;
                    transition: all 0.6s ease 0s;

                    &:hover {
                        opacity: 0.7;
                        text-decoration: none;
                    }
                }
            }
        }
    }

    /*===============================================
  footer:PC
  ===============================================*/
    footer {
        background-color: var(--main-color);
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0px;

        h4 {
            color: white;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            line-height: 185%;
        }

        /*** logo **/
        .logo {
            height: 192;
            width: auto;
            margin: 54px 0px 52px 0px;
        }

        p {
            color: white;
            font-size: 14px;
            text-align: center;
            line-height: 180%;
            margin: 0px;
        }

        .powered_by_logo {
            width: 200px;
            height: 20px;
            margin: 20px auto 80px;
            display: block;
        }
    }

    /*===============================================
 パンくずリスト:PC
  ===============================================*/
    .breadcrumb {
        margin-top: 47px;
        margin-bottom: 26px;
        font-size: 14px;

        .breadcrumb-item a {
            color: white;
            text-decoration: none;
            -webkit-transition: all 0.4s ease 0s;
            -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
        }

        .breadcrumb-item a:hover {
            color: white;
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            float: left;
            padding-right: var(--bs-breadcrumb-item-padding-x);
            color: white;
            content: ">";
        }
    }

    /*===============================================
サイトバーボタン；PC（共通）
===============================================*/
    .side_buttom {
        width: 42px;
        height: 216px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 32%;
        right: 0;
        background-color: white;
        color: var(--main-color);
        writing-mode: vertical-rl;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 8px 0px 0px 8px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        z-index: 1001;
    }

    .side_buttom:hover {
        box-shadow: -2px 3px 1px rgba(0, 0, 0, 0.5);
    }

    /*===============================================
スームーズスクロール；SP（共通）
===============================================*/
    .top_scroll_buttom {
        width: 42px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 3%;
        right: 0;
        background-color: white;
        color: var(--main-color);
        writing-mode: vertical-rl;
        /* 右から左へ縦書き */
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 8px 0px 0px 8px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        z-index: 1000;
    }

    .top_scroll_buttom:hover {
        box-shadow: -2px 3px 1px rgba(0, 0, 0, 0.5);
    }

    /*===============================================
home :PC
  ===============================================*/
    #home_header {
        display: none;
    }

    #home {
        h1 {
            margin: 0;
            padding: 0;
        }

        .logo_mark {
            z-index: 100;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 344px;
            height: 344px;
        }

        .logo_mark_white {
            z-index: 90;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 344px;
            height: 344px;
            z-index: 10;
        }

        .logo_mark_green {
            z-index: 90;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 344px;
            height: 344px;
            z-index: 9;
        }

        a .bg-green:hover hr {
            width: 100%;
            margin: 0% 0% 5px 0%;
            border-top: solid 5px #fff;
        }

        .bg-green {
            background-color: var(--main-color);
            width: 50%;
            height: 100vh;
            float: left;
            display: flex;
            justify-content: center;
            align-items: end;

            .serecter_name {
                display: flex;
                justify-content: center;
                flex-direction: column;
                margin-bottom: 45px;

                hr {
                    width: 35%;
                    margin: 0% 32.5% 5px 32.5%;
                    border-top: solid 5px #fff;
                    opacity: 1;
                    -webkit-transition: all 0.25s ease 0s;
                    -o-transition: all 0.25 ease 0s;
                    transition: all 0.25s ease 0s;
                }

                h2 {
                    color: white;
                    font-size: 34px;
                    font-family: "arial", sans-serif;
                    font-weight: 700;
                }
            }
        }

        a .bg-white:hover hr {
            width: 100%;
            margin: 0% 0% 5px 0%;
            border-top: solid 5px var(--main-color);
        }

        /* 拡大アニメーション */
        .bg-green.expand {
            position: fixed;
            top: 0;
            left: 0%;
            width: 100vw !important;
            height: 100vh !important;
            overflow: hidden;
            transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .bg-white {
            background-color: white;
            width: 50%;
            height: 100vh;
            float: left;
            display: flex;
            justify-content: center;
            align-items: end;

            .serecter_txt {
                display: flex;
                justify-content: center;
                flex-direction: column;
                margin-bottom: 45px;

                hr {
                    width: 35%;
                    margin: 0% 32.5% 5px 32.5%;
                    border-top: solid 5px var(--main-color);
                    opacity: 1;
                    -webkit-transition: all 0.25s ease 0s;
                    -o-transition: all 0.25s ease 0s;
                    transition: all 0.25s ease 0s;
                }

                h2 {
                    color: var(--main-color);
                    font-size: 34px;
                    font-family: "arial", sans-serif;
                    font-weight: 700;
                }
            }
        }

        /* 拡大アニメーション */
        .bg-white.expand {
            position: fixed;
            top: 0;
            right: 0;
            width: 100vw !important;
            height: 100vh !important;
            transition: width 0.5s ease, height 0.5s ease;
        }
    }

    /*===============================================
エントリー :PC
  ===============================================*/
    #entry {
        width: 100%;
        max-width: 822px;
        margin: 0 auto 93px;
        text-align: center;
        padding-top: 67px;

        .title_box {
            width: 100%;
            display: flex;
            flex-direction: column;
            height: auto;
            overflow: hidden;
            margin: 70px auto 80px;

            .sub_title {
                font-size: 44px;
                font-family: "arial", sans-serif;
                font-weight: bold;
                line-height: 0.9;
            }

            .question_txt {
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin-top: 5px;

                p {
                    margin: -5px 5px 0px;
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }

        /***エントリー完了 **/
        .question_txt_thanks {
            display: flex;
            flex-direction: row;
            justify-content: center;
            margin-bottom: 35px;

            p {
                margin: -5px 5px 0px;
                font-size: 20px;
                font-weight: bold;
                width: 188px;
            }
        }

        .bnt_box {
            display: flex;
            justify-content: space-between;
            width: 656px;
            margin: 0 auto 50px;
        }

        /**選択時のCSS**/
        input[type="radio"].btn-check:checked+label.btn-custom {
            background-color: #000;
            color: #fff;
            border: solid 1px #ffffff;
        }

        .btn-custom {
            width: 316px;
            height: 66px;
            background-color: white;
            color: black;
            font-size: 17px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            border: solid 1px #000000;
            box-shadow: 5px 5px 0px #000000;
        }

        .btn-enter {
            position: relative;
            width: 298px;
            height: 67px;
            background-color: #fefe6e;
            color: black;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            border: solid 2px #000000;
            margin: 0 auto;
        }

        .btn_arrow {
            width: 8px;
            height: 16px;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

        /**メールフォーム***/
        .input_box {
            text-align: start;
            width: 100%;
            height: auto;
            background-color: white;
            padding: 38px 60px 34px;
            margin-bottom: 58px;
            border-radius: 8px;

            label {
                color: black;
                font-weight: bold;
            }

            .link_box {
                padding: 18px;
                background-color: #f8f8f8;
                color: black;
                border-radius: 5px;
                margin-top: 22px;
                text-align: center;
            }

            /*===============================================
  解像度x CSS (PC)END
  ===============================================*/
        }

        p.txt {
            line-height: 180%;
            margin-bottom: 66px;
        }

        /***PDFアップロード　メッセージ***/
        .text-bg-secondary {
            background-color: #a8a8a8 !important;
        }

        span.txt {
            color: #989898;
            margin-top: 8px;
            display: block;
        }

        p.message_txt {
            color: black;
            margin-top: 10px;
            margin-bottom: 8px;
            display: block;
        }

        .downlord_icon {
            margin: 0 10px;
        }

        .btn-outline-dark:hover {
            background-color: #ebebeb;
            color: #000000;
            border-color: #d4d4d4;
        }
    }

    /*===============================================
COMPANY :PC
  ===============================================*/
    #company {
        width: 100%;
        max-width: 882px;
        margin: 0 auto 43px;
        text-align: center;
        padding-top: 67px;

        .title_box {
            width: 100%;
            display: flex;
            flex-direction: column;
            height: auto;
            overflow: hidden;

            h1 {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .sub_title {
                font-size: 49px;
                font-weight: bold;
                line-height: 1;
                margin-bottom: 40px;
                font-family: "arial", sans-serif;
            }
        }

        table {
            width: 100%;
            padding-bottom: -53px;

            .noline {
                border-bottom: none;
            }
        }

        tbody th {
            width: 17%;
            border-bottom: solid 1px #fff;
            padding: 25px 0px;
            text-align: left;
            font-size: 16px;
        }

        tbody td {
            width: 83%;
            border-bottom: solid 1px #fff;
            padding: 25px 0px;
            text-align: left;
            font-size: 16px;
        }
    }

    /*===============================================
お仕事探しはこちら :PC
  ===============================================*/
    #looking_for_job {
        width: 100%;
        max-width: 1018px;
        margin: 0 auto 87px;
        text-align: center;
        padding-top: 67px;

        #sec_01 {
            margin: 0;
            padding: 0;
            height: calc(100vh - 67px);
            height: calc(100dvh - 67px);
            position: relative;
            overflow: hidden;

            h1 {
                font-size: 24px;
                font-weight: bold;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 20%;
                width: 100%;
            }

            .txt_logo {
                margin: 0px auto;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 40%;
                width: 100%;
            }

            h2 {
                font-size: 24px;
                font-weight: bold;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 70%;
                width: 90%;
            }

            .scroll {
                width: 60px;
                height: auto;
                margin: 0px auto 70px;
                font-size: 18px;
                line-height: 1.4;
                position: absolute;
                left: 50%;
                bottom: 0;
            }
        }

        #sec_02 {
            .title_box {
                width: 100%;
                display: flex;
                flex-direction: column;
                height: auto;
                overflow: hidden;

                h2 {
                    font-size: 16px;
                    margin-bottom: 20px;
                }

                .sub_title {
                    font-size: 49px;
                    font-family: sans-serif;
                    font-weight: bold;
                    line-height: 1;
                    margin-bottom: 25px;
                }
            }

            .txt {
                font-size: 16px;
                margin-bottom: 50px;
                line-height: 1.6;
                font-size: 16px;
                font-weight: 600;
            }

            li a {
                text-decoration: none;
                height: 100%;
                display: flex;
                flex-direction: column;
            }

            ul {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                /* 必要に応じて幅やgapも指定 */
                gap: 3.7%;
                list-style: none;
                margin: 0;
                padding: 0;

                li {
                    width: 30.8%;
                    height: auto;
                    margin: 0 0 46px;
                    overflow: hidden;

                    .photo {
                        width: 100%;
                        height: auto;
                        border-radius: 8px 8px 0px 0px;
                        transition: transform 0.4s;
                    }

                    .txt_box {
                        width: 100%;
                        padding: 25px 13px 20px;
                        background-color: white;
                        border-radius: 0px 0px 8px 8px;
                        display: flex;
                        flex-direction: column;
                        height: 100%;

                        label {
                            color: var(--main-color);
                            text-decoration: none;
                            margin-right: 20px;

                            img {
                                width: auto;
                                height: 15px;
                                margin-top: -5px;
                                margin-right: 5px;
                            }
                        }

                        h3 {
                            font-size: 18px;
                            font-weight: bold;
                            color: var(--main-color);
                            text-align: start;
                            margin: 16px 0px 18px;
                            display: block;
                            line-height: 145%;
                            flex-grow: 1;

                        }

                        .btn-serecter {
                            position: relative;
                            width: 70%;
                            height: 50px;
                            margin: 0px 15% 0px;
                            background-color: var(--main-color);
                            color: white;
                            font-size: 14px;
                            font-weight: bold;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            border-radius: 50px;
                            -webkit-transition: all 0.4s ease 0s;
                            -o-transition: all 0.4s ease 0s;
                            transition: all 0.4s ease 0s;
                            overflow: hidden;
                        }

                        .btn-serecter::after {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: -75%;
                            width: 50%;
                            height: 100%;
                            background: linear-gradient(120deg,
                                    rgba(255, 255, 255, 0) 0%,
                                    rgba(255, 255, 255, 0.6) 50%,
                                    rgba(255, 255, 255, 0) 100%);
                            transition: left 0.5s;
                            pointer-events: none;
                        }

                        .btn_arrow {
                            width: 8px;
                            height: 15px;
                            position: absolute;
                            right: 10px;
                            top: 50%;
                            transform: translateY(-50%);
                        }
                    }

                    .question_txt {
                        display: flex;
                        flex-direction: row;
                        justify-content: center;

                        p {
                            width: 200px;
                            margin: -15px 5px 16px;
                            font-size: 20px;
                            font-weight: bold;
                        }
                    }
                }



                /* liホバー時に.photoを拡大 */
                li:hover .photo {
                    transform: scale(1.1);
                    transition: transform 0.4s;
                }

                /* liホバー時に.btn-serecterの光るアニメーション */
                li:hover .btn-serecter::after {
                    left: 125%;
                    transition: left 0.5s;
                }
            }
        }
    }

    /*===============================================
お仕事探しはこちら :PC
  ===============================================*/
    #jobtype {
        width: 890px;
        height: auto;
        margin: 0px auto 78px;
        padding-top: 67px;

        h1 {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 45px;
        }

        .sub_title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 26px;
        }

        label {
            text-decoration: none;
            margin-right: 20px;

            img {
                width: auto;
                height: 15px;
                margin-top: -5px;
                margin-right: 5px;
            }
        }

        .photo {
            width: auto;
            height: 229px;
            float: right;
            margin-bottom: 61px;
        }

        .bg_white_box {
            width: 890px;
            height: auto;
            margin: 0px;
            padding: 47px 57px;
            background-color: white;
            color: #000;

            p {
                line-height: 1.75;
                margin-bottom: 0;
            }

            h2 {
                font-size: 24px;
                font-weight: bold;
                margin-bottom: 32px;
                color: var(--main-color);
            }

            ul {
                margin-bottom: 0px;
                margin-left: -2px;
            }

            ol {
                list-style: none;
                counter-reset: number;
                margin-left: -33px;
                margin-bottom: 43px;
            }

            ol li {
                position: relative;
                padding-left: 40px;
            }

            ol li::before {
                counter-increment: number;
                content: "（" counter(number) "）";
                position: absolute;
                left: 0;
            }

            .btn-serecter {
                position: relative;
                width: 298px;
                height: 67px;
                margin: 40px auto 0px;
                background-color: var(--main-color);
                color: white;
                font-size: 14px;
                font-weight: bold;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50px;
                text-decoration: none;
                -webkit-transition: all 0.4s ease 0s;
                -o-transition: all 0.4s ease 0s;
                transition: all 0.4s ease 0s;
            }

            .btn-serecter:hover {
                opacity: 0.7;
            }

            .btn_arrow {
                width: auto;
                height: 18px;
                position: absolute;
                right: 18px;
                top: 50%;
                transform: translateY(-50%);
            }

            table {
                width: 100%;
                padding-bottom: -53px;
            }

            tbody th {
                width: 20%;
                border-bottom: solid 1px #e2e2e2;
                padding: 25px 0px 25px 10px;
                text-align: left;
                font-size: 16px;
                font-weight: bold;
            }

            tbody td {
                width: 83%;
                border-bottom: solid 1px #e2e2e2;
                padding: 25px 0px;
                text-align: left;
                font-size: 16px;
                line-height: 1.75;
            }

            tbody th.noline {
                width: 17%;
                border-bottom: solid 0px #e2e2e2;
                padding: 25px 0px 25px 10px;
                text-align: left;
                font-size: 16px;
            }

            tbody td.noline {
                width: 83%;
                border-bottom: solid 0px #e2e2e2;
                padding: 25px 0px;
                text-align: left;
                font-size: 16px;
            }
        }
    }

    /*===============================================
プライバシーポリシー :PC
  ===============================================*/
    #privacy {
        width: 100%;
        max-width: 882px;
        margin: 0 auto 43px;
        padding-top: 67px;

        .title_box {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: auto;
            overflow: hidden;
            margin-bottom: 60px;

            h1 {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .sub_title {
                font-size: 49px;
                font-family: "arial", sans-serif;
                font-weight: bold;
                line-height: 1;
            }
        }

        article {
            p {
                line-height: 2.2;
            }

            ol {
                list-style-type: decimal;
                line-height: 2.2;
                padding-left: 16px;
            }
        }
    }

    /*===============================================
利用規約 :PC
  ===============================================*/
    #terms_of_service {
        width: 100%;
        max-width: 882px;
        margin: 0 auto 43px;
        padding-top: 67px;

        .title_box {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: auto;
            overflow: hidden;
            margin-bottom: 60px;

            h1 {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .sub_title {
                font-size: 49px;
                font-family: "arial", sans-serif;
                font-weight: bold;
                line-height: 1;
            }
        }

        article {
            h2 {
                font-size: 18px;
                font-weight: bold;
            }

            p {
                line-height: 2.2;
            }

            ol {
                list-style-type: decimal;
                line-height: 2.2;
            }
        }
    }

    /*===============================================
サービスのご案内 :PC
  ===============================================*/
    #service {
        height: auto;
        margin: 0px auto 78px;
        padding-top: 67px;

        #sec_01 {
            margin: 0;
            padding: 0;
            height: calc(100vh - 67px);
            height: calc(100dvh - 67px);
            text-align: center;
            overflow: hidden;
            position: relative;

            h1 {
                font-size: 24px;
                font-weight: bold;
                position: absolute;
                top: 20%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .txt_logo {
                margin: 0px auto;
                position: absolute;
                top: 40%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 100%;
            }

            h2 {
                font-size: 24px;
                font-weight: bold;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 90%;
                top: 70%;
            }

            .scroll {
                width: 56px;
                position: absolute;
                margin: 0px auto 0px;
                left: 50%;
                bottom: 5%;
            }
        }

        #sec_02 {
            background-color: white;
            height: auto;
            text-align: center;
            padding: 75px 0 110px;

            .title_box {
                display: flex;
                justify-content: center;
                flex-direction: column;
                margin: 0px auto 68px;
                color: var(--main-color);

                h2 {
                    font-size: 16px;
                    font-weight: 500;
                }

                .title {
                    font-size: 49px;
                    font-weight: bold;
                    font-family: Arial, Helvetica, sans-serif;
                    margin: 24px auto 37px;
                }

                .sub_title {
                    font-size: 16px;
                    line-height: 1.5;
                }
            }

            .support_image {
                width: 817px;
                height: 723px;
                margin: 0 auto;
            }
        }

        .sec_green_bg {
            height: 429px;
            background-color: var(--main-color);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;

            .inner {
                width: 866px;
                display: flex;
                flex-direction: row;

                .txt_box {
                    width: 430px;

                    .title_box {
                        display: flex;
                        flex-direction: row;
                        justify-content: start;
                        align-items: end;
                        margin-bottom: 46px;

                        .numbers {
                            margin-bottom: -6px;
                            line-height: 1;
                            font-size: 58px;
                            font-weight: bold;
                            font-family: Arial, Helvetica, sans-serif;
                        }

                        .backslash {
                            width: 14px;
                            height: 29px;
                            margin-left: 5px;
                            margin-right: 10px;
                        }

                        h2 {
                            margin-bottom: 0px;
                            font-size: 27px;
                            font-weight: bold;
                        }
                    }
                }

                p {
                    line-height: 1.8;
                    margin-bottom: 0px;
                }

                .icon {
                    width: 388px;
                    height: 238px;
                    margin-left: 48px;
                }
            }
        }

        .sec_white_bg {
            height: 429px;
            background-color: white;
            color: var(--main-color);
            display: flex;
            justify-content: center;
            align-items: center;

            .inner {
                width: 866px;
                display: flex;
                flex-direction: row;

                .txt_box {
                    width: 430px;

                    .title_box {
                        display: flex;
                        flex-direction: row;
                        justify-content: start;
                        align-items: end;
                        margin-bottom: 46px;

                        .numbers {
                            margin-bottom: -6px;
                            line-height: 1;
                            font-size: 58px;
                            font-weight: bold;
                            font-family: Arial, Helvetica, sans-serif;
                        }

                        .backslash {
                            width: 14px;
                            height: 29px;
                            margin-left: 5px;
                            margin-right: 10px;
                        }

                        h2 {
                            font-size: 27px;
                            margin-bottom: 0px;
                            font-weight: bold;
                        }
                    }
                }

                p {
                    line-height: 1.8;
                    margin-bottom: 0px;
                    font-weight: 500;
                }

                .icon {
                    width: 388px;
                    height: 238px;
                    margin-right: 48px;
                }
            }
        }

        #faq {
            background-color: #ececec;

            .is-japanese {
                color: #0abab5;
            }

            .is-english {
                color: #0abab5;
            }

            .accordion {
                max-width: 680px;
                width: 100%;
                margin: 0 auto;
                --bs-accordion-bg: none;

                .accordion-button {
                    font-size: 16px;
                    padding: 30px 15px;
                    margin: 3px 0 0 0;
                    line-height: 1.6;
                    letter-spacing: 0.03em;
                    font-weight: 500;
                    color: #0a0a0a;
                    width: 98%;
                    padding-right: 67px;

                    .is-question {
                        font-size: 35px;
                        font-size: 2.1875rem;
                        margin: 0 20px 0 0;
                        font-weight: 700;
                        font-family: "Josefin Sans", sans-serif;
                        color: #0a0a0a;
                    }
                }

                .accordion-button::after {
                    content: "";
                    position: absolute;
                    right: 30px;
                    top: 0;
                    bottom: 0;
                    margin: auto 0;
                    width: 24px;
                    height: 12px;
                    background: url(../images/service/accordion-ico-arrow-black.svg) no-repeat center / contain;
                }

                .accordion-button:not(.collapsed) {
                    color: #0a0a0a;
                    background-color: white;
                }

                .accordion-button:focus {
                    z-index: 3;
                    border-color: none;
                    outline: 0;
                    box-shadow: none;
                }

                .accordion-body {
                    font-size: 15px;
                    font-size: 0.9375rem;
                    margin: 2px 0 0 0;
                    line-height: 1.4;
                    letter-spacing: 0.03em;
                    font-weight: 500;
                    color: #0a0a0a;

                    p {
                        padding-left: 3px;
                        padding-right: 80px;
                        line-height: 1.6;
                    }
                }

                span {
                    font-size: 2.1875rem;
                    margin: 0 20px 0 0;
                    font-weight: 700;
                    font-family: "Josefin Sans", sans-serif;
                    color: #f52454;
                }
            }
        }

        #target-form {
            padding-top: 100px;
            padding-bottom: 94px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: white;

            .is-japanese {
                color: #0abab5;
            }

            .is-english {
                color: #0abab5;
            }

            p {
                color: #0a0a0a;
                line-height: 1.6;
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 60px;
                text-align: center;
            }

            .input_from {
                font-size: 1.25rem;
                width: 100%;
                padding: 30px;
                background: #f5f5f5;
                border-radius: 36px;
                font-family: "Noto Sans JP", sans-serif;
                font-weight: 400;
                color: #0a0a0a;
                margin-bottom: 13px;
            }

            .input_from_textarea {
                font-size: 1.25rem;
                width: 100%;
                height: 100%;
                min-height: 430px;
                padding: 30px;
                background: #f5f5f5;
                border-radius: 36px;
                font-family: "Noto Sans JP", sans-serif;
                font-weight: 400;
                color: #0a0a0a;
                margin-bottom: 10px;
            }

            .text-danger {
                font-weight: 600;
                margin: 0 0 15px 25px;
            }

            .submit {
                display: flex;
                -ms-flex-pack: center;
                justify-content: center;
                -ms-flex-align: center;
                align-items: center;
                position: relative;
                width: calc(100vw - 50px);
                max-width: 440px;
                height: 90px;
                margin: 30px auto 0px;
                border: 1px solid #0a0a0a;
                border-radius: 40px;
                background: #fff;
                transition: 0.3s;
                color: #0a0a0a;
                font-size: 20px;
                font-weight: bold;
            }

            .submit:hover {
                background: #0a0a0a;
                color: #ffffff;
            }

            a.submit {
                text-decoration: none;
            }
        }

        .spacer {
            height: 80px;
            background-color: #0abab5;
        }
    }

    /*===============================================
404 401 500　エラー：PC
===============================================*/
    #error_message {
        height: 100vh;
    }

    /*===============================================
  解像度x CSS (PC)END
  ===============================================*/
}

@media screen and (max-width: 991px) {

    /*===============================================
デバイス表示切り替え：SP
===============================================*/
    .pc_only {
        display: none;
    }

    .mobile_only {
        display: block;
    }

    /*===============================================
改行：SP
===============================================*/
    .br_sp::before {
        content: "\a";
        white-space: pre;
    }

    /*===============================================
  header:SP
  ===============================================*/

    header {
        width: 100%;
        position: fixed;
        z-index: 9999;
        height: 67px;
        background-color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .bars-solid {
            margin-left: 12px;
            width: 50px;
            height: 50px;
        }

        .logo {
            height: 35px;
            width: auto;
            margin-right: 14px;
        }

        .offcanvas.offcanvas-start {
            background-color: var(--main-color);
        }

        .offcanvas-header {
            max-width: 375px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0;

            .logo {
                margin: 20px 14px 0px 0px;
                height: 35px;
                width: auto;
            }
        }

        .offcanvas {
            .xmark-solid {
                height: 45px;
                margin: 10px 14px 0px 23px;
            }
        }

        .offcanvas-body {
            padding: 0px 0px 110px;

            ul {
                list-style-type: none;
                width: 68%;
                padding: 0;
                margin: 87px 0px 10px 26%;

                a {
                    display: block;
                    font-size: 21px;
                    font-weight: bold;
                    text-decoration: none;
                    color: white;
                    -webkit-transition: all 0.6s ease 0s;
                    -o-transition: all 0.6s ease 0s;
                    transition: all 0.6s ease 0s;

                    &:hover {
                        color: white;
                        text-decoration: none;
                        opacity: 0.7;
                    }

                    li {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: auto;
                        margin-bottom: 30px;
                        border-bottom: solid 1px #ffffff;
                        padding-bottom: 7px;
                    }
                }

                li.nav-item {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: auto;
                    height: 50px;
                    color: var(--main-color);
                    background-color: white;
                    border-radius: 8px;
                    margin-top: -5px;
                    font-size: 19px;
                    padding-bottom: 0px;
                }

                .icon {
                    width: auto;
                    height: 12px;
                    width: auto;
                }
            }
        }

        nav {
            list-style-type: none;
            width: 68%;
            padding: 0;
            margin: 10px 0px 10px 26%;

            a {
                text-align: center;
                color: white;
                text-decoration: underline;
                margin-bottom: 16px;
                -webkit-transition: all 0.6s ease 0s;
                -o-transition: all 0.6s ease 0s;
                transition: all 0.6s ease 0s;

                &:hover {
                    opacity: 0.7;
                    text-decoration: none;
                }
            }
        }
    }

    /*===============================================
  footer:SP
  ===============================================*/
    footer {
        background-color: var(--main-color);
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0px;

        h4 {
            color: white;
            font-size: 1.07rem;
            font-weight: bold;
            text-align: center;
            line-height: 180%;
            width: 90%;
        }

        /*** logo **/
        .logo {
            height: 170px;
            width: auto;
            margin: 35px 0px;
        }

        p {
            color: white;
            font-size: 14px;
            text-align: center;
            line-height: 180%;
            margin: 0px;
        }

        a.mobile_only {
            color: white;
            display: inline-block;
        }

        .powered_by_logo {
            width: 200px;
            height: 20px;
            margin: 20px auto 50px;
            display: block;
        }
    }

    /*===============================================
 パンくずリスト:SP
  ===============================================*/
    .breadcrumb {
        margin-top: 30px;
        margin-bottom: 32px;
        margin-left: 14px;
        font-size: 14px;

        .breadcrumb-item a {
            color: white;
            text-decoration: none;
            -webkit-transition: all 0.4s ease 0s;
            -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
        }

        .breadcrumb-item a:hover {
            color: white;
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            float: left;
            padding-right: var(--bs-breadcrumb-item-padding-x);
            color: white;
            content: ">";
        }
    }

    /*===============================================
サイトバーボタン；SP（共通）
===============================================*/
    .side_buttom {
        width: 42px;
        height: 216px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 32%;
        right: 0;
        background-color: white;
        color: var(--main-color);
        writing-mode: vertical-rl;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 8px 0px 0px 8px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        z-index: 1000;
    }

    .side_buttom:hover {
        box-shadow: -2px 3px 1px rgba(0, 0, 0, 0.5);
    }

    /*===============================================
スームーズスクロール；SP（共通）
===============================================*/
    .top_scroll_buttom {
        width: 42px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 3%;
        right: 0;
        background-color: white;
        color: var(--main-color);
        writing-mode: vertical-rl;
        /* 右から左へ縦書き */
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 8px 0px 0px 8px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        z-index: 1000;
    }

    /*===============================================
home :SP
  ===============================================*/
    #home_header {
        background-color: var(--main-color);
        position: fixed;
        top: 0px;
        left: 0px;
    }

    #home {
        height: 100vh;
        height: 100dvh;

        h1 {
            margin: 0;
            padding: 0;
        }

        .logo_mark {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 176px;
            height: 176px;
            z-index: 100;
        }

        a {
            text-decoration: none;
        }

        .bg-green {
            background-color: var(--main-color);
            width: 100%;
            height: 50vh;
            height: 50dvh;
            display: flex;
            justify-content: end;
            align-items: center;
            flex-direction: column;

            .serecter_name {
                display: flex;
                justify-content: center;
                flex-direction: column;
                position: fixed;
                top: 25%;
                left: 50%;
                transform: translate(-50%, -50%);

                hr {
                    width: 30%;
                    margin: 0% 35% 5px 35%;
                    border-top: solid 4px #fff;
                    opacity: 1;
                    -webkit-transition: all 0.6s ease 0s;
                    -o-transition: all 0.6s ease 0s;
                    transition: all 0.6s ease 0s;
                }

                h2 {
                    color: white;
                    font-size: 26px;
                    font-family: "arial", sans-serif;
                    font-weight: 700;
                }
            }
        }

        .bg-white {
            background-color: white;
            width: 100%;
            height: 50vh;
            height: 50dvh;
            display: flex;
            justify-content: start;
            align-items: center;
            flex-direction: column;


            .serecter_txt {
                display: flex;
                justify-content: center;
                flex-direction: column;
                position: fixed;
                top: 80%;
                left: 50%;
                transform: translate(-50%, -50%);

                hr {
                    width: 35%;
                    margin: 0% 32.5% 5px 32.5%;
                    border-top: solid 4px var(--main-color);
                    opacity: 1;
                    -webkit-transition: all 0.6s ease 0s;
                    -o-transition: all 0.6s ease 0s;
                    transition: all 0.6s ease 0s;
                }

                h2 {
                    color: var(--main-color);
                    font-size: 26px;
                    font-family: "arial", sans-serif;
                    font-weight: 700;
                }
            }
        }

        /* 拡大アニメーション */
        .bg-green.expand {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw !important;
            height: 100vh !important;
            transition: width 0.5s ease, height 0.5s ease;

            .serecter_name {
                display: flex;
                justify-content: center;
                flex-direction: column;
                position: fixed;
                top: 25%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }

        /* 拡大アニメーション */
        .bg-white.expand {
            position: fixed;
            bottom: 0;
            right: 0;
            width: 100vw !important;
            height: 100vh !important;
            transition: width 0.5s ease, height 0.5s ease;

            .serecter_txt {
                display: flex;
                justify-content: center;
                flex-direction: column;
                position: fixed;
                top: 88%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }
    }

    /*===============================================
エントリー :SP
  ===============================================*/
    #entry {
        width: 100%;
        margin: 0 auto 93px;
        text-align: center;
        padding-top: 67px;

        .title_box {
            width: 100%;
            display: flex;
            flex-direction: column;
            height: auto;
            overflow: hidden;
            margin-bottom: 32px;

            .sub_title {
                font-size: 33px;
                font-family: "arial", sans-serif;
                font-weight: bold;
                margin-top: -5px;
            }
        }

        .bnt_box {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            margin: 0 auto 15px;
        }

        /**選択時のCSS**/
        input[type="radio"].btn-check:checked+label.btn-custom {
            background-color: #000;
            color: #fff;
            border: solid 1px #ffffff;
        }

        .btn-custom {
            width: 316px;
            height: 66px;
            background-color: white;
            color: black;
            font-size: 17px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            border: solid 1px #000000;
            box-shadow: 5px 5px 0px #000000;
            margin-bottom: 15px;
        }

        .btn-enter {
            position: relative;
            width: 298px;
            height: 67px;
            background-color: #fefe6e;
            color: black;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            border: solid 2px #000000;
            margin: 0 auto;
        }

        .btn_arrow {
            width: 8px;
            height: 16px;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

        .question_txt {
            display: flex;
            flex-direction: row;
            justify-content: center;
            margin-top: 5px;

            p {
                margin: -5px 5px 0px;
                font-size: 16px;
                font-weight: 600;
            }
        }

        /***エントリー完了 **/
        .question_txt_thanks {
            display: flex;
            flex-direction: row;
            justify-content: center;
            margin-bottom: 35px;

            p {
                margin: -5px 5px 0px;
                font-size: 20px;
                font-weight: bold;
                width: 188px;
            }
        }

        /***エントリー完了　メッセージ***/
        p.txt {
            margin-bottom: 66px;
        }

        /**メールフォーム***/
        .input_box {
            text-align: start;
            width: 92%;
            height: auto;
            background-color: white;
            margin: 0px 4% 26px;
            padding: 26px 6% 36px;
            margin-bottom: 26px;
            border-radius: 8px;

            label {
                color: black;
                font-weight: bold;
            }

            .link_box {
                padding: 10px;
                background-color: #f8f8f8;
                color: black;
                border-radius: 5px;
                margin-top: 22px;
                text-align: center;
            }

            /*===============================================
解像度x CSS (PC)END
===============================================*/
        }

        .d-flex {
            .btn-enter {
                width: 80%;
                height: 67px;
                justify-content: center;
                align-items: center;
            }
        }

        .text-bg-secondary {
            background-color: #a8a8a8 !important;
        }

        /***PDFアップロード　メッセージ***/
        .text-bg-secondary {
            background-color: #a8a8a8 !important;
        }

        span.txt {
            color: #989898;
            margin-top: 8px;
            display: block;
        }

        p.message_txt {
            color: black;
            font-size: 14px;
            margin-top: 0;
        }

        .downlord_icon {
            margin: 0 10px;
        }

        .btn-outline-dark:hover {
            background-color: #ebebeb;
            color: #000000;
            border-color: #d4d4d4;
        }
    }

    /*===============================================
運営会社 :SP
  ===============================================*/
    #company {
        width: 100%;
        margin: 0 auto 93px;
        text-align: center;
        padding-top: 67px;

        .title_box {
            width: 100%;
            display: flex;
            flex-direction: column;
            height: auto;
            overflow: hidden;

            h1 {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .sub_title {
                font-size: 36px;
                font-family: "arial", sans-serif;
                font-weight: bold;
                line-height: 1;
                margin-bottom: 10px;
            }
        }

        table {
            width: 82%;
            margin: 0 9%;

            .noline {
                border-bottom: none;
            }
        }

        tbody th {
            width: 100%;
            padding: 19px 0px 5px;
            text-align: left;
            font-size: 16px;
            float: left;
            font-weight: bold;
        }

        tbody td {
            width: 100%;
            border-bottom: solid 1px #fff;
            padding: 0px 0px 19px;
            text-align: left;
            font-size: 16px;
            float: left;
        }

        a {
            color: white;
        }
    }

    /*===============================================
お仕事探しはこちら :SP
  ===============================================*/
    #jobtype {
        width: 100%;
        height: auto;
        margin: 0px auto 80px;
        padding-top: 67px;

        .row {
            width: 93%;
            margin: 0 auto;
        }

        h1 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 40px;
        }

        .sub_title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        label {
            text-decoration: none;
            margin-right: 20px;

            img {
                width: auto;
                height: 15px;
                margin-top: -5px;
                margin-right: 5px;
            }
        }

        .photo {
            width: 100%;
            height: auto;
            border-radius: 4px;
            margin: 30px auto 55px;
        }

        .bg_white_box {
            width: 93%;
            height: auto;
            margin: -1px 3.5%;
            padding: 35px 5% 0px;
            background-color: white;
            color: #000;
            font-size: 14px;
            overflow: hidden;

            p {
                margin-bottom: 0px;
                line-height: 1.75;
            }

            h2 {
                font-size: 20px;
                font-weight: bold;
                margin-bottom: 21px;
                color: var(--main-color);
                line-height: 1.75;
            }

            ul {
                margin-bottom: 0px;
                margin-left: -2px;
                list-style: inside;
            }

            li {
                list-style: 0;
            }

            ol {
                list-style: none;
                counter-reset: number;
                margin-left: -15px;
                margin-bottom: 24px;
            }

            ol li {
                position: relative;
                padding-left: 40px;
            }

            ol li::before {
                counter-increment: number;
                content: "（" counter(number) "）";
                position: absolute;
                left: 0;
            }

            .btn-serecter {
                position: relative;
                width: 298px;
                height: 67px;
                margin: 25px auto;
                background-color: var(--main-color);
                color: white;
                font-size: 14px;
                font-weight: bold;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50px;
                text-decoration: none;
                -webkit-transition: all 0.4s ease 0s;
                -o-transition: all 0.4s ease 0s;
                transition: all 0.4s ease 0s;
            }

            .btn-serecter:hover {
                opacity: 0.7;
            }

            .btn_arrow {
                width: auto;
                height: 18px;
                position: absolute;
                right: 18px;
                top: 50%;
                transform: translateY(-50%);
            }

            table {
                width: 100%;
                padding-bottom: -53px;
            }

            tbody th {
                width: 100%;
                padding: 19px 0px 5px;
                text-align: left;
                font-size: 16px;
                float: left;
                font-weight: bold;
            }

            tbody td {
                width: 100%;
                border-bottom: solid 1px #e2e2e2;
                padding: 0px 0px 19px;
                text-align: left;
                font-size: 16px;
                float: left;
                line-height: 1.75;
            }

            tbody th.noline {
                width: 100%;
                padding: 19px 0px 0;
                text-align: left;
                font-size: 16px;
                float: left;
            }

            tbody td.noline {
                width: 100%;
                padding: 0px 0px 19px;
                text-align: left;
                font-size: 16px;
                float: left;
            }
        }
    }

    /*===============================================
プライバシーポリシー :SP
  ===============================================*/
    #privacy {
        width: 90%;
        margin: 0 5% 60px;
        padding-top: 67px;

        .title_box {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: auto;
            overflow: hidden;
            margin-bottom: 40px;

            h1 {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .sub_title {
                font-size: 1.9rem;
                font-family: "arial", sans-serif;
                font-weight: bold;
                line-height: 1;
                margin-bottom: 10px;
            }
        }

        article {
            p {
                line-height: 2;
            }

            ol {
                list-style-type: decimal;
                line-height: 2;
                padding-left: 18px;
            }
        }
    }

    /*===============================================
利用規約 :SP
  ===============================================*/
    #terms_of_service {
        width: 90%;
        margin: 0 5% 60px;
        padding-top: 67px;

        .title_box {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: auto;
            overflow: hidden;
            margin-bottom: 40px;

            h1 {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .sub_title {
                font-size: 1.9rem;
                font-family: "arial", sans-serif;
                font-weight: bold;
                line-height: 1;
                margin-bottom: 10px;
            }
        }

        article {
            h2 {
                font-weight: bold;
                font-size: 18px;
            }

            p {
                line-height: 2;
            }

            ol {
                list-style-type: decimal;
                line-height: 2;
            }
        }
    }

    /*===============================================
お仕事探しはこちら :sp
  ===============================================*/
    #looking_for_job {
        width: 100%;
        margin: 0 auto 72px;
        text-align: center;
        padding-top: 67px;

        #sec_01 {
            height: calc(100vh - 67px);
            height: calc(100dvh - 67px);
            position: relative;

            h1 {
                font-size: 18px;
                line-height: 1.4;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 20%;
                width: 100%;
            }

            .txt_logo {
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 40%;
                width: 90%;
            }

            h2 {
                font-size: 18px;
                line-height: 1.4;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 70%;
                width: 90%;
            }

            .scroll {
                width: 60px;
                height: auto;
                margin: 0px auto 70px;
                font-size: 18px;
                line-height: 1.4;
                position: absolute;
                left: 50%;
                bottom: 0;
            }
        }

        #sec_02 {
            .title_box {
                width: 100%;
                display: flex;
                flex-direction: column;
                height: auto;
                overflow: hidden;

                h2 {
                    font-size: 14px;
                    margin-bottom: 17px;
                }

                .sub_title {
                    font-size: 33px;
                    font-family: "arial", sans-serif;
                    font-weight: bold;
                    line-height: 1;
                    margin-bottom: 40px;
                }
            }

            .txt {
                font-size: 14px;
                margin-bottom: 50px;
                line-height: 1.6;
            }

            a {
                text-decoration: none;
            }

            ul {
                width: 100%;
                display: flex;
                flex-direction: column;
                list-style: none;
                margin: 0;
                padding: 0;

                li {
                    width: 83%;
                    height: auto;
                    margin: 0 8.3% 46px;

                    .photo {
                        width: 100%;
                        height: auto;
                        border-radius: 8px 8px 0px 0px;
                    }

                    .txt_box {
                        width: 100%;
                        padding: 20px 20px 20px;
                        background-color: white;
                        border-radius: 0px 0px 8px 8px;

                        label {
                            color: var(--main-color);
                            text-decoration: none;
                            margin-right: 20px;

                            img {
                                width: auto;
                                height: 15px;
                                margin-top: -5px;
                                margin-right: 5px;
                            }
                        }

                        h3 {
                            font-size: 18px;
                            font-weight: bold;
                            color: var(--main-color);
                            text-align: start;
                            margin-top: 15px;
                            line-height: 1.5;
                            margin: 24px 0px 18px;
                            display: block;

                        }

                        .btn-serecter {
                            position: relative;
                            width: 75%;
                            height: 50px;
                            margin: 0px 12.5% 0px;
                            background-color: var(--main-color);
                            color: white;
                            font-size: 14px;
                            font-weight: bold;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            border-radius: 50px;
                            -webkit-transition: all 0.4s ease 0s;
                            -o-transition: all 0.4s ease 0s;
                            transition: all 0.4s ease 0s;
                        }

                        .btn-serecter:hover {
                            opacity: 0.7;
                        }

                        .btn_arrow {
                            width: 8px;
                            height: 15px;
                            position: absolute;
                            right: 10px;
                            top: 50%;
                            transform: translateY(-50%);
                        }
                    }

                    .question_txt {
                        display: flex;
                        flex-direction: row;
                        justify-content: center;

                        p {
                            width: 200px;
                            margin: -15px 5px 16px;
                            font-size: 20px;
                            font-weight: bold;
                        }
                    }
                }
            }
        }
    }

    /*===============================================
サービスのご案内 :SP
  ===============================================*/
    #service {
        width: 100%;
        margin: 0 auto 72px;
        text-align: center;
        padding-top: 67px;

        #sec_01 {
            height: calc(100vh - 67px);
            height: calc(100dvh - 67px);
            position: relative;

            h1 {
                font-size: 18px;
                line-height: 1.4;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 20%;
                width: 100%;
            }

            .txt_logo {
                width: 90%;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 40%;
            }

            h2 {
                font-size: 18px;
                line-height: 1.4;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                top: 70%;
                width: 90%;
            }

            .scroll {
                width: 60px;
                position: absolute;
                left: 50%;
                transform: translate(-50%, -50%);
                bottom: 5%;
            }
        }

        #sec_02 {
            background-color: white;
            height: auto;
            text-align: center;
            padding: 75px 5% 70px;

            .title_box {
                display: flex;
                justify-content: center;
                flex-direction: column;
                margin: 0px auto 30px;
                color: var(--main-color);

                h2 {
                    font-size: 16px;
                    font-weight: 500;
                }

                .title {
                    font-size: 1.9rem;
                    font-weight: bold;
                    font-family: Arial, Helvetica, sans-serif;
                    margin: 24px auto 37px;
                }

                .sub_title {
                    font-size: 16px;
                    line-height: 1.5;
                }
            }

            .support_image {
                width: 100%;
                height: auto;
            }
        }

        .sec_green_bg {
            height: auto;
            background-color: var(--main-color);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;

            .inner {
                width: 100%;
                display: flex;
                flex-direction: column;

                .txt_box {
                    width: 90%;
                    margin: 0 5%;
                    margin-bottom: 24px;

                    .title_box {
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: end;
                        margin: 46px auto 24px;

                        .numbers {
                            line-height: 1;
                            font-size: 40px;
                            font-weight: bold;
                            font-family: Arial, Helvetica, sans-serif;
                        }

                        .backslash {
                            width: 14px;
                            margin-left: 5px;
                            margin-right: 10px;
                            margin-bottom: 4px;
                        }

                        h2 {
                            margin-bottom: 0px;
                            font-size: 1.35rem;
                            font-weight: bold;
                            text-align: start;
                        }
                    }
                }

                p {
                    line-height: 1.8;
                    margin-bottom: 0px;
                    text-align: start;
                }

                .icon {
                    width: 90%;
                    height: auto;
                    margin: 0% 5% 60px;
                }
            }
        }

        .sec_white_bg {
            height: auto;
            background-color: white;
            color: var(--main-color);
            display: flex;
            justify-content: center;
            align-items: center;

            .inner {
                width: 100%;
                display: flex;
                flex-direction: column-reverse;

                .txt_box {
                    width: 90%;
                    margin: 46px auto 24px;

                    .title_box {
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: end;
                        margin-bottom: 24px;

                        .numbers {
                            line-height: 1;
                            font-size: 40px;
                            font-weight: bold;
                            font-family: Arial, Helvetica, sans-serif;
                        }

                        .backslash {
                            width: 14px;
                            margin-left: 5px;
                            margin-right: 10px;
                            margin-bottom: 4px;
                        }

                        h2 {
                            margin-bottom: 0px;
                            font-size: 1.35rem;
                            font-weight: bold;
                            text-align: start;
                        }
                    }
                }

                p {
                    line-height: 1.8;
                    margin-bottom: 0px;
                    text-align: start;
                }

                .icon {
                    width: 90%;
                    height: auto;
                    margin: 0% 5% 60px;
                }
            }
        }

        #faq {
            background-color: #ececec;

            .is-japanese {
                color: #0abab5;
            }

            .is-english {
                color: #0abab5;
                font-size: 2.5rem;
                font-family: "Josefin Sans", sans-serif;
                line-height: 1;
            }

            .accordion {
                max-width: 680px;
                width: 100%;
                margin: 0 auto;
                --bs-accordion-bg: none;

                .accordion-button {
                    font-size: 1rem;
                    padding: 15px 35px 15px 15px;
                    margin: 3px 0 0 0;
                    line-height: 1.6;
                    letter-spacing: 0.03em;
                    font-weight: 500;
                    color: #0a0a0a;
                    width: 100%;

                    .is-question {
                        font-size: 2.1875rem;
                        margin: -30px 20px 0 0;
                        font-weight: 700;
                        font-family: revert-layer;
                        color: #0a0a0a;
                    }
                }

                .accordion-button::after {
                    content: "";
                    position: absolute;
                    right: 22px;
                    top: 0;
                    bottom: 0;
                    margin: auto 0;
                    width: 17px;
                    height: 12px;
                    background: url(../images/service/accordion-ico-arrow-black.svg) no-repeat center / contain;
                }

                .accordion-button:not(.collapsed) {
                    color: #0a0a0a;
                    background-color: white;
                }

                .accordion-button:focus {
                    z-index: 3;
                    border-color: none;
                    outline: 0;
                    box-shadow: none;
                }

                .accordion-body {
                    font-size: 15px;
                    font-size: 0.9375rem;
                    margin: 2px 0 0 0;
                    line-height: 1.4;
                    letter-spacing: 0.03em;
                    font-weight: 500;
                    color: #0a0a0a;
                    text-align: start;

                    p {
                        line-height: 1.6;
                    }
                }

                span {
                    font-size: 2.1875rem;
                    margin: 0 20px 0 0;
                    font-weight: 700;
                    font-family: "Josefin Sans", sans-serif;
                    color: #f52454;
                }
            }
        }

        #target-form {
            width: 100%;
            padding-top: 60px;
            padding-bottom: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: white;

            p {
                width: 90%;
                margin: 0 5%;
                font-size: 14px;
                color: #0a0a0a;
                font-weight: 600;
            }

            .is-japanese {
                color: var(--main-color);
            }

            .is-english {
                color: var(--main-color);
            }

            .c-lp01-form01 {
                width: 85%;
                margin: 20px 7.5%;
            }

            .input_from {
                font-size: 1.25rem;
                width: 100%;
                padding: 30px;
                background: #f5f5f5;
                border-radius: 36px;
                font-family: "Noto Sans JP", sans-serif;
                font-weight: 400;
                color: #0a0a0a;
                margin-bottom: 13px;
            }

            .input_from_textarea {
                font-size: 1.25rem;
                width: 100%;
                height: 100%;
                min-height: 430px;
                padding: 30px;
                background: #f5f5f5;
                border-radius: 36px;
                font-family: "Noto Sans JP", sans-serif;
                font-weight: 400;
                color: #0a0a0a;
                margin-bottom: 10px;
            }

            .text-danger {
                text-align: start;
                margin: 0 auto 10px 15px;
            }

            .submit {
                display: flex;
                -ms-flex-pack: center;
                justify-content: center;
                -ms-flex-align: center;
                align-items: center;
                position: relative;
                width: calc(100vw - 50px);
                max-width: 440px;
                height: 90px;
                margin: 30px auto 0px;
                border: 1px solid #0a0a0a;
                border-radius: 40px;
                background: #fff;
                transition: 0.3s;
                color: #0a0a0a;
                font-size: 20px;
                font-weight: bold;
            }

            a.submit {
                text-decoration: none;
            }
        }

        .spacer {
            height: 80px;
            background-color: #0abab5;
        }
    }

    /*===============================================
404 401 500　エラー：SP
===============================================*/
    #error_message {
        height: 78vh;
    }

    /*===============================================
  解像度x CSS (SP)END
  ===============================================*/
}

/*===============================================
サービスのご案内 （共通　CSS）
  ===============================================*/
.c-lp01-form01 {
    width: 100%;
    max-width: 560px;
}

* textarea {
    width: 100%;
    max-width: 100%;

    border: none;
    border-radius: 0;
    box-shadow: none;
}

textarea:focus {
    outline: 0;
}

input {
    border: none;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

input:focus {
    outline: 0;
}

.l-lp01-body {
    font-family: "Noto Sans JP", sans-serif;
    color: #0a0a0a;
}

.c-lp01-section01 {
    padding: 80px 0 100px;
}

@media (max-width: 810px) {
    .c-lp01-section01 {
        padding: 60px 0px;
    }
}

.c-lp01-inner01 {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 10px;
}

.c-lp01-title01 {
    margin: 0 0 15px;
    text-align: center;
    line-height: 1.6;
}

.c-lp01-title01 .is-japanese {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: white;
}

@media (max-width: 810px) {
    .c-lp01-title01 .is-japanese {
        font-size: 16px;
        font-size: 1rem;
        margin: 0 0 10px 0;
    }
}

.c-lp01-title01 .is-japanese .no-wrap {
    white-space: nowrap;
}

.c-lp01-title01 .is-english {
    font-size: 45px;
    font-size: 2.8125rem;
    font-weight: 800;
    font-family: "Josefin Sans", sans-serif;
    color: white;
}

@media (max-width: 810px) {
    .c-lp01-title01 .is-english {
        font-size: 34px;
        font-size: 1.5rem;
    }
}

.p-lp01-faq {
    background: url(../images/service/p-lp01-faq-bg01-pc.webp) top/100%;
    background-repeat: no-repeat;
}

@media (max-width: 810px) {
    .p-lp01-faq {
        background: url(../images/service/p-lp01-faq-bg01-sp.webp) repeat top/100%;
    }
}

/*===============================================
共通　フェードダウン (scroll)
===============================================*/
.fadedown.is-animated {
    animation: fadedown 2.5s ease-in-out infinite forwards;
}

@keyframes fadedown {
    0% {
        transform: translate(-50%, 0px);
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

/*===============================================
共通　フェードイン
 ===============================================*/
.fadein.is-animated {
    animation: fadeIn 1.9s ease-in-out 1 forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*===============================================
共通　/** スクロールバー デザインカスタマイズ
===============================================*/
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #a2a2a2;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #575757;
    border-radius: 10px;
}

/*===============================================
404 401 500　エラー：PC
===============================================*/
#error_message {
    width: 100%;
    max-width: 1018px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    margin: 0 auto;

    h1 {
        color: #ffffff;
        margin-bottom: 30px;

        font-weight: bold;
    }

    p {
        color: #ffffff;
        font-size: 20px;
    }

    small {
        color: #ffffff;
    }
}

@media (max-width: 768px) {
    .col-lg-6 {
        padding: 0;
    }
}

.btn-serecter {
    position: relative;
    width: 298px;
    height: 67px;
    background-color: #fff;
    color: #0abab5;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    text-decoration: none;
}

.btn2 {
    position: relative;
    width: 298px;
    height: 67px;
    background-color: #0abab5;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    text-decoration: none;

}

.btn_arrow {
    width: auto;
    height: 18px;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.btn_bg {

    height: 200px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner_btn {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;

}