@charset "UTF-8";
/*==============================================================================
1.ページタイトル・共通タイトル
2.イントロ
3.POINT
4.WANTED
5.SERVICE
6.YEAR
7.STAFF
8.Q&A
9.MESSAGE
10.REQUIREMENTS
11.ENTRY
==============================================================================*/

/*============================================================================================================================================================
==============================================================================================================================================================

	1.ページタイトル・共通タイトル

==============================================================================================================================================================
============================================================================================================================================================*/
#bodywrap {
    background: var(--bg-gray);
}

#title {
    background-image: url(../1_img/recruit/title.jpg);
}



/*============================================================================================================================================================
==============================================================================================================================================================

	2.イントロ

==============================================================================================================================================================
============================================================================================================================================================*/
#recruit-intro {

    & .fukidashi-wrap {
        font-size: 1.8rem;

        & span {
            padding: 0 50px;
        }
    }

    & p {
        margin-top: 30px;
    }

    & .carousel-wrap {
        margin-top: 45px;

        & img {
            width: auto;
            height: 120px;
        }
    }

}

/*==============================================================================

	イントロ PC

==============================================================================*/
@media all and (min-width: 769px) {
    #recruit-intro {

        & .fukidashi-wrap {
            font-size: 2rem;
        }

        & p {
            text-align: center;
        }

        & .carousel-wrap {
            margin-top: 45px;

            & img {
                height: 160px;
            }
        }

    }
}

/*============================================================================================================================================================
==============================================================================================================================================================

	3.POINT

==============================================================================================================================================================
============================================================================================================================================================*/
#point {
    margin-top: 0;
    padding: 50px 0 0;

    /* =============== pointの説明 =============== */
    & .point-list {

        & .list {
            padding-top: calc(43px / 2);

            &+.list {
                margin-top: 30px;
            }
        }


        & .list-inner {
            padding: 30px 20px 20px;
            height: 100%;
            background-color: #fff;
            position: relative;
        }

        & span.point-num {
            width: 42px;
            aspect-ratio: 1 / 1;
            display: flex;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            align-items: center;
            justify-content: center;
            background: url(../1_img/base/icon-button.svg) no-repeat center / cover;
            color: #fff;
            font-size: 1.5rem;
            font-weight: var(--weight-bold);
        }

        & h3 {
            text-align: center;
            font-size: 1.5rem;
            font-weight: var(--weight-bold);
        }

        & p {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed var(--color-font);
        }
    }

    /* =============== 吹き出し =============== */
    & .fukidashi-wrap {
        margin-top: 40px;

        & span {
            font-size: 1.8rem;
        }
    }

    /* =============== 画像 =============== */
    & .point-img {
        margin-top: 40px;
        aspect-ratio: 16 / 9;

        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            pointer-events: none;
        }
    }
}


/*==============================================================================

	POINT PC

==============================================================================*/
@media all and (min-width: 769px) {
    #point {
        margin-top: 0;
        padding: 120px 0 0;

        /* =============== pointの説明 =============== */
        & .point-list {
            display: flex;
            gap: 0 40px;

            & .list {
                width: calc((100% - 80px) / 3);

                &+.list {
                    margin-top: 0px;
                }
            }

            & .list-inner {
                padding: 40px 20px 20px;
            }

            & h3 {
                text-align: center;
                font-size: 1.5rem;
                font-weight: var(--weight-bold);
            }
        }

        /* =============== 吹き出し =============== */
        & .fukidashi-wrap {
            margin-top: 60px;

            & span {
                font-size: 2rem;
                padding: 0 50px;
            }
        }

        /* =============== 画像 =============== */
        & .point-img {
            margin-top: 40px;
            aspect-ratio: 16 / 5;

            & img {
                object-position: top center;
            }
        }
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	4.WANTED

==============================================================================================================================================================
============================================================================================================================================================*/
#wanted {
    margin-top: 0;
    padding: 50px 0;
    background-color: #fff;

    & .wanted-list {
        display: flex;
        gap: 10px;

        & .list {
            width: calc((100% - 20px) / 3);
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        &  p {
            padding: 16px 5px;
            width: 100%;
            flex: 1;
            display: flex;
            position: relative;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: clamp(1rem, 3vw, 1.4rem);
            border: 1px dashed var(--color-font);

            &::after {
                content: "";
                width: 18px;
                height: 18px;
                position: absolute;
                left: 50%;
                bottom: -9px;
                transform: translateX(-50%) rotate(135deg);
                border-top: 1px dashed var(--color-font);
                border-right: 1px dashed var(--color-font);
                background-color: #fff;
            }
        }
        &  img {
            margin-top: 25px;
        }
    }

    & .wanted-text{
        margin-top: 30px;
    }
}


/*==============================================================================

	WANTED PC

==============================================================================*/
@media all and (min-width: 769px) {
    #wanted {
        margin-top: 0;
        padding: 120px 0;

        & .inner{
            width: 680px;
        }

        & .wanted-list {
            display: flex;
            gap: 10px;

            & .list {
                width: calc((100% - 20px) / 3);
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            &  p {
                padding: 30px 5px;
                font-size: 1.4rem;
            }
            &  img {
                margin-top: 25px;
            }
        }
    }
}

/*============================================================================================================================================================
==============================================================================================================================================================

	5.SERVICE

==============================================================================================================================================================
============================================================================================================================================================*/
#service{
    margin-top: 0;
    padding-top: 50px;

    & section + section{
        margin-top: 40px;
    }

    & h3{
        margin-bottom: 25px;
        font-size: 1.5rem;
        text-align: center;
        font-weight: var(--weight-bold);

        & span{
            padding-bottom: 15px;
            display: block;
            position: relative;

            &::after{
                content:"";
                width: 100%;
                position: absolute;
                left: 0;
                bottom: 0;
                border: 1px dashed var(--color-font);
            }
        }
    }

    /* =============== 仕事内容 =============== */
    & .service-works{
        & .service-slider{
            padding: 0 20px;
            position: relative;

            & .slick-arrow {
                width: 10px;
                height: 15px;

                &.prev{
                    left: 10px;
                }
                &.next{
                    right: 10px;
                }
            }
            & .slick-dots{
                bottom: -20px;
            }

            & .slick-track {
                display: flex;

                & .slick-slide {
                    height: auto !important;
                }
            }

            & .service-slider_content{
                padding: 20px 13px 0;
                position: relative;

                & .img-text{/* 背景画像とテキスト */
                    display: flex;
                    aspect-ratio: 278 / 180;
                    align-items: center;
                    justify-content: center;
                    position: relative;

                    & h3{
                        position: relative;
                        z-index: 2;
                        font-size: 1.5rem;
                        font-weight: var(--weight-bold);
                        text-align: center;
                    }

                    & img{
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: center;
                        pointer-events: none;
                    }
                }
                & dl{
                    margin-top: 30px;

                    & dt{
                        text-align: center;
                        font-size: 1.6rem;
                    }

                    & dd{
                        margin-top: 30px;
                        border-top: 1px dashed var(--color-font);
                        padding-top: 15px;
                    }
                }
                & .num {/* 数字 */
                    width: 43px;
                    aspect-ratio: 1 / 1;
                    display: flex;
                    position: absolute;
                    top: 0;
                    left: 0;
                    align-items: center;
                    justify-content: center;
                    background: url(../1_img/base/icon-button.svg) no-repeat center / cover;
                    color: #fff;
                    font-size: 1.5rem;
                    font-weight: var(--weight-bold);
                }
            }
        }
    }

    /* =============== 短時間正社員制度 =============== */
    & .service-other{
        margin-top: 80px;
        padding: 40px 20px;
        position: relative;
        background-color: #fff;

        /* 矢印 */
        &::after{
            content:"";
            width: 18px;
            height: 10px;
            position: absolute;
            left: 50%;
            top: -35px;
            transform: translateX(-50%);
            background-color: var(--color-font);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
        }


        & h4{
            font-weight: var(--weight-bold);
            text-align: center;
        }
        & p{
            margin-top: 15px;
            font-size: 1.4rem;
        }
        & strong{
            margin-top: 30px;
            display: block;
            font-size: 1.5rem;
            text-align: center;

            & .line {
                padding: 0 5px;
                background-image: linear-gradient(transparent 60%, rgba(242, 95, 18, 0.5) 60%);
            }
        }

    }
}


/*==============================================================================

	SERVICE PC

==============================================================================*/
@media all and (min-width: 769px) {
    #service{
        padding-top: 100px;

        & section + section{
            margin-top: 80px;
        }
        & h3{
            margin-bottom: 25px;
            font-size: 1.7rem;

            & span{

                &::after{
                    width: 100px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }

        /* =============== 仕事内容 =============== */
        & .service-works{

            & .service-slider{
                padding: 0;
                visibility: visible;
                opacity: 1;
                display: flex;
                flex-direction: column;
                gap: 40px 0;

                & .service-slider_content{
                    padding: 0;
                    width: 100%;
                    display: flex;
                    align-items: center;
                    gap: 0 40px;

                    & .img-text{/* 背景画像とテキスト */
                        width: 400px;
                        aspect-ratio: 16 / 8;
                        flex-shrink: 0;

                        & h3{
                            font-size: 1.8rem;
                        }
                    }
                    & dl{
                        width: 100%;
                        margin-top: 0px;

                        & dt{
                            font-size: 1.6rem;
                            text-align: left;
                        }
                    }
                    & .num {/* 数字 */
                        top: -10px;
                        left: -10px;
                    }
                }
            }
        }

        /* =============== 短時間正社員制度 =============== */
        & .service-other{
            padding: 40px;
            border-bottom: none;

            & h4{
                font-size: 1.8rem;
            }
            & strong{
                font-size: 1.6rem;
            }
        }
    }
}

/*============================================================================================================================================================
==============================================================================================================================================================

	6.YEAR

==============================================================================================================================================================
============================================================================================================================================================*/
#year{

    & .year-list_bg{
        padding: 30px 0;
        background-color: #fff;

        & h3{
            & span{
                padding: 0 40px;
            }
        }

        & .year-list_wrap{
            margin-top: 10px;
            padding: 20px 30px 50px;
            background-image: url(../1_img/base/bg-measure-left.svg);
            background-repeat: repeat-y;
            background-size: 26px auto;
            background-position: left -5px top 10px;

            & .year-content{
                display: flex;
                flex-direction: column;
                align-items: center;

                & .year-text{
                    width: 100%;
                    
                    & > dl{
                        & > dt{
                            text-align: center;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            gap: 10px 0;
                            font-size: 1.8rem;

                            & .month{ /* 月の表示 */
                                width: 60px;
                                aspect-ratio: 1 / 1;
                                display: flex;
                                line-height: 1.2;
                                flex-direction: column;
                                align-items: center;
                                justify-content: center;
                                background: url(../1_img/base/icon-button.svg) no-repeat center / cover;
                                color: #fff;
                                font-size: 2rem;
                                font-weight: var(--weight-bold);

                                &.orange{
                                    background: url(../1_img/base/icon-button-orange.svg) no-repeat center / cover;
                                }

                                & span{
                                    display: block;
                                    font-size: 1rem;
                                    font-weight: normal;
                                }
                            }
                            & .title{ /* タイトル */
                                font-size: 1.4rem;

                                &.size-l{
                                    font-size: 1.8rem;
                                }
                            }
                        }

                        & > dd{
                            margin-top: 10px;
                            font-size: 1.4rem;
                        }

                        & + dl{
                            margin-top: 20px;
                        }
                    }
                }


                & .year-img{
                    margin-top: 20px;
                    & img{
                        width: 175px;
                        height: auto;
                    }
                }

                & + .year-content{
                    margin-top: 50px;
                }
            }

            
            & .year-content.special{/* 特殊なやつ */
                & .year-text > dl > dd.year-img{
                    margin-top: 20px;
                    text-align: center;
                }
                & .year-text > dl > dd > dl{
                    margin-top: 40px;
                    padding: 40px 20px;
                    position: relative;
                    background-color: var(--color-sub);

                    & dt{
                        margin-bottom: 15px;
                        padding-bottom: 15px;
                        position: relative;
                        text-align: center;
                        font-size: 1.5rem;

                        &::after{
                            content:"";
                            width: 70px;
                            height: 1px;
                            position: absolute;
                            left: 50%;
                            bottom: 0;
                            transform: translateX(-50%);
                            border-bottom: 1px dashed var(--color-font);
                        }
                    }

                    & dd{
                        font-size: 1.4rem;
                    }

                    & .point{
                        width: 76px;
                        aspect-ratio: 1 / 1;
                        display: flex;
                        position: absolute;
                        top: -25px;
                        left: -20px;
                        line-height: 1.4;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        background: url(../1_img/base/icon-button.svg) no-repeat center / cover;
                        color: #fff;
                        text-align: center;
                        font-size: 1.3rem;
                        font-weight: var(--weight-bold);
                    }

                    &::before{
                        content:"";
                        width: 35px;
                        height: 20px;
                        background-color: var(--color-sub);
                        position: absolute;
                        left: 50%;
                        bottom: calc(100% - 1px);
                        transform: translateX(-50%);
                        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
                    }
                }
            }
        }
    }

}



/*==============================================================================

	year PC

==============================================================================*/
@media all and (min-width: 769px) {
    #year{

        & .inner{
            width: 1090px;
        }

        & .year-list_bg{
            padding: 80px 0;

            & h3{
                font-size: 2rem;
            }

            & .year-list_wrap{
                margin-top: 10px;
                padding: 20px 90px 90px 150px;
                background-position: left top;

                & .year-content{
                    flex-direction: row;
                    align-items: center;
                    gap: 0 100px;

                    & .year-text{
                        order: 2;
                        
                        & > dl{
                            & > dt{
                                text-align: left;
                                flex-direction: row;
                                justify-content: left;
                                gap: 0 25px;

                                & .title{ /* タイトル */
                                    font-size: 1.8rem;

                                    &.size-l{
                                        font-size: 2.2rem;
                                    }
                                }
                            }

                            & > dd{
                                margin-top: 20px;
                                font-size: 1.4rem;
                            }

                            & + dl{
                                margin-top: 25px;
                            }
                        }
                    }


                    & .year-img{
                        margin-top: 0;
                        order: 1;
                        flex-shrink: 0;

                        & img{
                            width: 300px;
                        }
                    }

                    & + .year-content{
                        margin-top: 17px;
                    }
                }

                & .year-content:nth-child(even){/* 偶数目のyear-content */

                    & .year-text{
                        order: 1;
                    }
                    & .year-img{
                        order: 2;
                        
                        & img{
                            width: 400px;
                        }
                    }
                }


                & .year-content.special{/* 特殊なやつ */
                    gap: 0 50px;

                    & .year-text > dl > dd > dl{
                        margin-left: 40px;
                        padding: 25px 30px 40px;

                        & .point{
                            top: -25px;
                            left: -40px;
                        }

                        &::before{
                            content:"";
                            width: 35px;
                            height: 20px;
                            background-color: var(--color-sub);
                            position: absolute;
                            left: 50%;
                            bottom: calc(100% - 1px);
                            transform: translateX(-50%);
                            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
                        }
                    }
                }
            }
        }

    }
}

/*============================================================================================================================================================
==============================================================================================================================================================

	7.STAFF

==============================================================================================================================================================
============================================================================================================================================================*/
#staff{
    margin-top: 0;
    padding-top: 50px;

    /* =============== スライダー =============== */
    & .staff-slider{
        margin-top: 40px;
        padding: 0 20px;
        & .slick-track {
            display: flex;
        }
        & .slick-slide {
            height: auto !important;
        }
        & .slick-dots {
            bottom: -20px;
        }
        & .slick-arrow {
            top: calc(50% + 60px);
            width: 15px;
            height: 20px;
        }
    }
    
    & .staff-slider_content{
        padding-top: 110px;
        position: relative;

        & > img{
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        & .staff-slider_text{
            height: 100%;
            padding: 60px 20px 35px;
            background-color: rgb(230 230 230 / 0.8);

            & h3{
                padding-bottom: 5px;
                text-align: center;
                font-weight: var(--weight-bold);
                border-bottom: 1px dashed var(--color-font);
            }

            & > section{
                margin-top: 20px;

                & h4{
                    text-align: center;
                    margin-bottom: 15px;

                    & span{
                        width: 180px;
                        padding: 5px 10px;
                        position: relative;
                        color: #fff;
                        background-color: var(--color-font);
                        display: inline-block;
                        border-radius: 5px;

                        &::after{
                            content:"";
                            width: calc(100% - 4px);
                            height: calc(100% - 4px);
                            position: absolute;
                            top: 2px;
                            left: 2px;
                            border-radius: 5px;
                            border: 1px dashed #fff;
                            pointer-events: none;
                        }

                    }
                }

                & p,
                & ul li{
                    font-weight: var(--weight-bold);
                }
            }
        }
    }
    /* =============== スライダー end =============== */
}
/*==============================================================================

	STAFF PC

==============================================================================*/
@media all and (min-width: 769px) {
    #staff{
        padding-top: 100px;

        & .staff-intro{
            text-align: center;
        }

        /* =============== スライダー =============== */
        & .staff-slider{
            margin-top: 70px;
            padding: 0;
            visibility: visible;
            opacity: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 40px 20px;
        }
        
        & .staff-slider_content{
            width: calc((100% - 20px) / 2);

            & .staff-slider_text{

                & > section{
                    margin-top: 30px;
                }
            }
        }
        /* =============== スライダー end =============== */
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	8.Q&A

==============================================================================================================================================================
============================================================================================================================================================*/
#qa{
    padding: 50px 0;
    background-color: #fff;

    /* =============== イントロ =============== */
    & .qa-intro{
        text-align: center;

        & span{
            display: block;
            padding-bottom: 15px;
            position: relative;
            
            &::before,
            &::after{
                content:"";
                position: absolute;
            }
            &::before{
                width: 18px;
                height: 18px;
                left: 50%;
                bottom: -9px;
                transform: translateX(-50%) rotate(135deg);
                border-top: 1px dashed var(--color-font);
                border-right: 1px dashed var(--color-font);
                background-color: #fff;
                z-index: 2;
            }
            &::after{
                width: 100%;
                height: 1px;
                left: 0;
                bottom: 0;
                border-bottom: 1px dashed var(--color-font);
                z-index: 1;
            }
        }
    }

    /* =============== カルーセル =============== */
    & .carousel-wrap{
        margin-top: 40px;
    }
    /* =============== 質問 =============== */
    & .qa-list{
        margin-top: 45px;

        & dt,
        & dd{
            padding-left: 30px;
            position: relative;

            &:before{
                position: absolute;
                top: 0.15em;
                left: 0;
                line-height: 1;
                font-family: var(--font-en);
                font-size: 1.8rem;
                font-weight: var(--weight-bold);
            }
        }

        & dt{
            padding-right: 20px;
            cursor: pointer;
            transition: 500ms;

            &::before{
                content: "Q";
            }
            &::after{
                content:"";
                width: 10px;
                height: 6px;
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                transition: 500ms;
                background-color: var(--color-font);
                clip-path: polygon(0 0, 50% 100%, 100% 0);
            }
        }

        & dd{
            margin-top: 15px;
            
            &::before{
                top: calc(0.15em);
                content: "A";
            }

            & .answer{
                margin-top: 15px;
            }
        }

        & dl + dl{
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed var(--color-font);
        }

        /* open時 */
        & dl.open{
            
            & dt{
                color: var(--color-accent);

                &::after{
                    transform: translateY(-50%) scale(1,-1);
                    background-color: var(--color-accent);
                }
            }
        }
    }

}
/*==============================================================================

	Q&A PC

==============================================================================*/
@media all and (min-width: 769px) {
    #qa{
        padding: 100px 0;
        background-color: #fff;

        /* =============== イントロ =============== */
        & .qa-intro{

            & span{
                padding: 0 40px 15px;
                display: inline-block;
            }
        }
        /* =============== 質問 =============== */
        & .qa-list{
            margin-left: auto;
            margin-right: auto;
            width: 600px;
        }
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	9.MESSAGE

==============================================================================================================================================================
============================================================================================================================================================*/
#message{
    margin-top: 0;
    padding-top: 50px;

    & .inner{
        padding: 0;
    }

    & .fukidashi-wrap{
        & span{
            padding: 0 40px;
        }
    }

    & .message-wrap{
        margin-top: 40px;
        background-color: #fff;
    }

    /* =============== メッセージ 代表プロフィール =============== */
    & .message-img{
        position: relative;
        aspect-ratio: 2 / 1;

        & img{
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center;
            pointer-events: none;
        }
        & figcaption{
            width: 40%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: absolute;
            top: 0;
            right: 0;
            font-weight: var(--weight-bold);
            z-index: 2;
            text-shadow: 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 10px rgba(255, 255, 255, 1);

            & .message-img_post{
                font-size: 1.4rem;
            }

            & .message-img_name{
                font-size: 1.8rem;
            }
        }
    }
    /* =============== メッセージ 内容 =============== */
    & .message-content{
        padding: 40px 20px;

        & p + p{
            margin-top: 15px;
        }
    }

    /* =============== 飾り =============== */
    & .message-bg{
        aspect-ratio: 16 / 5;

        & img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            pointer-events: none;
        }
    }

}
/*==============================================================================

	MESSAGE PC

==============================================================================*/
@media all and (min-width: 769px) {

    #message{
        padding-top: 100px;

        & .inner{
            width: 1090px;
        }

        & .fukidashi-wrap{
            & span{
                font-size: 2.4rem;
                padding: 0 60px;
            }
        }

        & .message-wrap{
            margin-top: 70px;
            display: flex;
            align-items: center;
            gap: 0 45px;
            background-color: transparent;
        }

        /* =============== メッセージ 代表プロフィール =============== */
        & .message-img{
            width: 470px;
            position: relative;
            aspect-ratio: 5 / 3;
            flex-shrink: 0;

            & figcaption{
                width: 45%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                position: absolute;
                top: 0;
                right: 0;
                font-weight: var(--weight-bold);

                & .message-img_post{
                    font-size: 1.6rem;
                }

                & .message-img_name{
                    font-size: 2rem;
                }
            }
        }
        /* =============== メッセージ 内容 =============== */
        & .message-content{
            padding: 0;

            & p + p{
                margin-top: 25px;
            }
        }

        /* =============== 飾り =============== */
        & .message-bg{
            margin-top: 75px;
            aspect-ratio: 16 / 4;
        }
    }

}

/*============================================================================================================================================================
==============================================================================================================================================================

	10.REQUIREMENTS

==============================================================================================================================================================
============================================================================================================================================================*/

/* ========== タブのボタン ========== */
#requirements .requirements-tab-btn{
    display: flex;
    gap: 0 10px;
    
    & li{
        padding: 13px 10px 10px;
        width: calc((100% - 20px) / 3);
        background-color: var(--color-sub);
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 5px 5px 0 0 ;
        font-weight: var(--weight-bold);
        line-height: 1.2;
        cursor: pointer;
        transition: 500ms;

        &::before {
            content: "";
            width: calc(100% - 6px);
            height: calc(100% - 3px);
            position: absolute;
            top: 3px;
            left: 3px;
            border: 1px dashed var(--color-font);
            border-bottom: none;
            border-radius: 5px 5px 0 0 ;
        }

        &.active {
            color: #fff;
            background-color: var(--color-font);

            &::before {
                border-color: #fff;
            }
        }
    }
}

/* ========== タブの中身 ========== */
#requirements .requirements-tab-content{
    padding: 30px 20px;
    background-color: #fff;

    & > li{
        display: none;

        &.active {
            display: block;
        }

        & table,
        & table *{
            border: none;

            & th,
            & td{
                display: block;
                line-height: 1.8;
            }
            & td{
                padding-top: 10px;
            }
            & tr:not(:last-child) td{
                padding-bottom: 20px;
            }
            & tr + tr th{
                padding-top: 20px;
                border-top: 1px dashed var(--color-font);
            }

            & td > * + *{
                margin-top: 10px;
            }

            & ul{
                & li + li{
                    margin-top: 3px;
                }
            }
        }
    }

    /* 採用フロー */
    & .flow-list{
        & li{
            padding: 20px;
            background-color: #eeeeee;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: var(--weight-bold);
            font-size: 1.2rem;

            &:not(:last-child)::after{
                content: "";
                width: 24px;
                height: 6px;
                position: absolute;
                left: 50%;
                bottom: -15px;
                transform: translateX(-50%);
                background-color: var(--color-font);
                clip-path: polygon(0 0, 50% 100%, 100% 0);
            }

            & + li{
                margin-top: 25px;
            }
        }
    }
}

/* タブの表示・非表示 */
#support .support-tab-content > li{
    display: none;

    &.active {
        display: block;
    }
}
/*==============================================================================

	REQUIREMENTS PC

==============================================================================*/
@media all and (min-width: 769px) {

    /* ========== タブのボタン ========== */
    #requirements .requirements-tab-btn{
        
        & li{
            height: 50px;
        }
    }

    /* ========== タブの中身 ========== */
    #requirements .requirements-tab-content{
        padding: 45px 75px;

        & .flow-list{
            display: flex;
            gap: 0 30px;

            & li{
                width: calc((100% - 150px) / 6);
                padding: 30px 20px;
                display: flex;
                font-weight: var(--weight-bold);
                text-align: center;
                writing-mode: vertical-rl;

                &:not(:last-child)::after{
                    width: 6px;
                    height: 24px;
                    top: 50%;
                    left: unset;
                    right: -18px;
                    transform: translateY(-50%);
                    clip-path: polygon(0 0, 0 100%, 100% 50%);
                }

                & + li{
                    margin-top: 0;
                }
            }
        }
    }

}



/*============================================================================================================================================================
==============================================================================================================================================================

	11.ENTRY

==============================================================================================================================================================
============================================================================================================================================================*/
#entry{
    margin-top: 0;
    padding-top: 50px;

    & .fukidashi-wrap{

        & span{
            font-size: 1.8rem;
        }
    }

    & .entry-btn{
        margin-top: 30px;
        display: flex;
        height: 120px;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #fff;
        text-align: center;

        & span{
            position: relative;
            font-weight: var(--weight-bold);
            z-index: 2;
        }

        & img{
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center;
            z-index: 1;
            pointer-events: none;
        }
    }
}
/*==============================================================================

	ENTRY PC

==============================================================================*/
@media all and (min-width: 769px) {
    #entry{
        padding-top: 70px;

        & .fukidashi-wrap{

            & span{
                font-size: 2rem;
                padding: 0 60px;
            }
        }

        & .entry-btn{
            margin-top: 30px;
            display: flex;
            height: 180px;
            align-items: center;
            justify-content: center;
            position: relative;
            color: #fff;
            text-align: center;

            & span{
                font-size: 2rem;
                position: relative;
                font-weight: var(--weight-bold);
                z-index: 2;
            }

            & img{
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                object-fit: cover;
                object-position: center;
                z-index: 1;
            }
        }
    }
}