/*===============================================
変数の定義
===============================================*/
: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: 768px) {
    /*===============================================
デバイス表示切り替え： 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: 24px;
            font-weight: bold;
            text-align: center;
            line-height: 150%;
        }
        /*** logo **/
        .logo {
            height: 170px;
            width: auto;
            margin: 20px 0px 24px 0px;
        }
        p {
            color: white;
            font-size: 14px;
            text-align: center;
            line-height: 180%;
            margin: 0px;
        }

        small {
            color: #fff;
            text-align: end;
            margin: 62px auto;
        }
    }
    /*===============================================
 パンくずリスト: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: sans-serif;
                    font-weight: bold;
                }
            }
        }
        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: sans-serif;
                    font-weight: bold;
                }
            }
        }

        /* 拡大アニメーション */
        .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;
            h1 {
                font-size: 16px;
                margin-bottom: 20px;
            }
            .sub_title {
                font-size: 44px;
                font-family: sans-serif;
                font-weight: bold;
                line-height: 0.9;
            }
        }
        .progress {
            width: 325px;
            height: 16px;
            margin: 38px auto 48px;
        }
        .question_txt {
            display: flex;
            flex-direction: row;
            justify-content: center;
            p {
                margin: -15px 5px 53px;
                font-size: 20px;
                font-weight: bold;
            }
        }
        .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;
        }
    }

    /*===============================================
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-family: sans-serif;
                font-weight: bold;
                line-height: 1;
            }
        }
        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 {
            .title_box {
                width: 100%;
                display: flex;
                flex-direction: column;
                height: auto;
                overflow: hidden;
                h1 {
                    color: white;
                    font-size: 24px;
                    font-weight: bold;
                    text-align: center;
                    line-height: 150%;
                    margin: 89px auto 0px;
                }

                .sub_title {
                    font-size: 49px;
                    font-family: sans-serif;
                    font-weight: bold;
                    line-height: 1;
                }
            }
            .txt_logo {
                width: 927px;
                height: 30px;
                margin: 70px auto;
            }

            .txt {
                line-height: 180%;
            }
            .scroll {
                width: 56px;
                height: auto;
                margin: 66px auto 70px;
            }
        }

        #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;
            }
            a {
                text-decoration: none;
            }
            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%;
                        height: 177px;
                        padding: 25px 20px 26px;
                        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;
                            margin: 16px 0px 18px;
                            display: block;
                        }
                        .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 .inner {
                    overflow: hidden; /* 画像がはみ出さないように */
                }
                /* 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;
                }
            }
        }
        #sec_03 {
            padding-top: 77px;
            .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: 55px;
            }
            a {
                text-decoration: none;
            }
            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;
                    .question_txt {
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        margin-bottom: 17px;
                        p {
                            width: 200px;
                            margin: -15px 5px 16px;
                            font-size: 20px;
                            font-weight: bold;
                            color: white;
                        }
                    }
                    .photo {
                        width: 100%;
                        height: auto;
                        border-radius: 4px;
                        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
                        transition: transform 0.4s;
                    }
                }
                li .inner {
                    overflow: hidden; /* 画像がはみ出さないように */
                }

                li .photo {
                    width: 100%;
                    height: auto;
                    transition: transform 0.4s;
                    display: block;
                }

                li:hover .photo {
                    transform: scale(1.1); /* 画像だけ拡大 */
                }
            }
        }
    }
    /*===============================================
お仕事探しはこちら :PC
  ===============================================*/
    #jobtype {
        width: 890px;
        height: auto;
        margin: 0px auto 78px;
        padding-top: 67px;
        h1 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 45px;
        }
        .sub_title {
            font-size: 26px;
            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: 0px 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: 17%;
                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: sans-serif;
                font-weight: bold;
                line-height: 1;
            }
        }
        article {
            p {
                line-height: 2.2;
            }
            ol {
                list-style-type: decimal;
                line-height: 2.2;
            }
        }
    }
    /*===============================================
利用規約 :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: 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;
            }
        }
    }
    /*===============================================
404 401 500　エラー：PC
===============================================*/
    #error_message {
        height: 100vh;
    }

    /*===============================================
  解像度x CSS (PC)END
  ===============================================*/
}
@media screen and (max-width: 767px) {
    /*===============================================
デバイス表示切り替え：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: 24px;
            font-weight: bold;
            text-align: center;
            line-height: 150%;
        }
        /*** logo **/
        .logo {
            height: 170px;
            width: auto;
            margin: 20px 0px 24px 0px;
        }
        p {
            color: white;
            font-size: 14px;
            text-align: center;
            line-height: 180%;
            margin: 0px;
        }

        small {
            color: #fff;
            text-align: end;
            margin: 68px auto 36px;
        }
    }

    /*===============================================
 パンくずリスト: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: 100hv;
        h1 {
            margin: 0;
            padding: 0;
        }
        .logo_mark {
            position: fixed;
            top: 56.5%;
            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;
            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: sans-serif;
                    font-weight: bold;
                }
            }
        }
        .bg-white {
            background-color: white;
            width: 100%;
            height: 50vh;
            display: flex;
            justify-content: start;
            align-items: center;
            flex-direction: column;
            .serecter_txt {
                display: flex;
                justify-content: center;
                flex-direction: column;
                position: fixed;
                top: 88%;
                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: sans-serif;
                    font-weight: bold;
                }
            }
        }
        /* 拡大アニメーション */
        .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;
            h1 {
                font-size: 14px;
                margin-bottom: 17px;
            }
            .sub_title {
                font-size: 33px;
                font-family: sans-serif;
                font-weight: bold;
                line-height: 1;
                margin-top: -5px;
            }
        }
        .progress {
            width: 86%;
            height: 16px;
            margin: 42px 7%;
        }
        .question_txt {
            display: flex;
            flex-direction: row;
            justify-content: center;
            p {
                margin: -15px 5px 53px;
                font-size: 19px;
                font-weight: bold;
                width: 190px;
            }
        }
        .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%);
        }
        /**メールフォーム***/
        .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;
            }
        }
    }
    /*===============================================
運営会社 :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: 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: 83%;
            margin: 0px 8.5%;
        }
        h1 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 58px;
            text-align: center;
        }
        .sub_title {
            font-size: 23px;
            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.3;
            }
            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: 54px 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: sans-serif;
                font-weight: bold;
                line-height: 1;
                margin-bottom: 10px;
            }
        }
        article {
            p {
                line-height: 2;
            }
            ol {
                list-style-type: decimal;
                line-height: 2;
            }
        }
    }

    /*===============================================
利用規約 :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: 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: auto;
            .title_box {
                width: 100%;
                display: flex;
                flex-direction: column;
                height: auto;
                overflow: hidden;
                h1 {
                    color: white;
                    font-size: 24px;
                    font-weight: bold;
                    text-align: center;
                    line-height: 150%;
                    margin: 57px auto 50px;
                }
            }

            .txt_logo {
                width: 86%;
                height: auto;
                margin: 0px 7% 55px;
            }
            .txt {
                line-height: 1.75;
            }

            .scroll {
                width: 78px;
                height: auto;
                margin: 52px auto 70px;
            }
        }
        #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: 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%;
                        height: 177px;
                        padding: 25px 20px 26px;
                        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;
                            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;
                        }
                    }
                }
            }
        }
        #sec_03 {
            .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: sans-serif;
                    font-weight: bold;
                    line-height: 1;
                    margin-bottom: 40px;
                }
            }
            .txt {
                font-size: 14px;
                margin-bottom: 30px;
                color: white;
                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.5% 30px;
                    .question_txt {
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        margin-top: 25px;
                        margin-bottom: 17px;
                        p {
                            width: 200px;
                            margin: -15px 5px 16px;
                            font-size: 20px;
                            font-weight: bold;
                            color: white;
                        }
                    }
                    .photo {
                        width: 100%;
                        height: auto;
                        border-radius: 4px;
                        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
                    }
                }
            }
        }
    }
    /*===============================================
404 401 500　エラー：PC
===============================================*/
    #error_message {
        height: 78vh;
    }

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

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

@keyframes fadedown {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

/*===============================================
 フェードイン
 ===============================================*/
.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;
    }
}
