@charset "UTF-8";

.title-en {

    &::first-letter {
        color: var(--theme-yellow);
    }
}

.intro {
    margin-top: 1.8rem;

    @media screen and (max-width: 767px) {
        margin-top: 0;
    }

    .intro-title {
        font-weight: 700;
        font-size: 3.6rem;
        line-height: 1.5;
        letter-spacing: 0.08em;

        @media screen and (max-width: 767px) {
            font-size: 20px;
        }
    }

    .intro-text {
        margin-top: 3.2rem;
        font-size: 1.6rem;
        line-height: 1.88;

        @media screen and (max-width: 767px) {
            margin-top: 20px;
            font-size: 14px;
        }
    }
}

.consult {
    margin-top: 14rem;

    @media screen and (max-width: 767px) {
        margin-top: 60px;
    }

    .title {
        font-weight: 700;
        font-size: 3rem;
        letter-spacing: 0.08em;
        text-align: center;

        @media screen and (max-width: 767px) {
            font-size: 20px;
        }
    }

    .yellow-area {
        margin-top: 4.5rem;
        border-radius: 14rem 14rem 0 0;
        background-color: var(--theme-yellow);
        padding: 8rem 0 10rem;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
            border-radius: 60px 60px 0 0;
            padding: 35px 0 50px;
        }

        .filters {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;

            @media screen and (max-width: 767px) {
                gap: 20px;
            }

            .filter {
                position: relative;

                &::after {
                    content: "";
                    background-image: url(../../img/page/hrtech/pulldown.png);
                    background-size: contain;
                    background-repeat: no-repeat;
                    width: 2.6rem;
                    height: 2.6rem;
                    position: absolute;
                    right: 1.8rem;
                    bottom: 1.9rem;
                    pointer-events: none;
                }

                @media screen and (max-width: 767px) {
                    &::after {
                        width: 16px;
                        height: 16px;
                        right: 8px;
                        bottom: 8px;
                    }
                }

                .txt {
                    padding-bottom: 1rem;
                    font-weight: 700;
                    font-size: 2.2rem;
                    text-align: center;
                    letter-spacing: 0.08em;

                    @media screen and (max-width: 767px) {
                        padding-bottom: 5px;
                        font-size: 18px;
                    }
                }

                .select-group {
                    width: 100%;
                    height: 6.4rem;
                    padding: 0 3rem;
                    font-weight: 700;
                    font-size: 2rem;
                    cursor: pointer;
                    border: none;
                    background-color: #fff;
                    color: #000;
                }

                @media screen and (max-width: 767px) {
                    .select-group {
                        height: 32px;
                        padding: 0 10px;
                        font-size: 14px;
                    }
                }
            }
        }

        .white-box {
            display: none;
            position: relative;
            margin-top: 5.4rem;
            padding: 3.6rem 3.6rem 0.8rem;
            background-color: #fff;

            &::after {
                content: "";
                height: 2px;
                width: calc(100% - 7.2rem);
                background-color: var(--theme-yellow);
                position: absolute;
                top: 5rem;
                left: 50%;
                transform: translate(-50%, 0);
            }

            @media screen and (max-width: 767px) {
                margin-top: 30px;
                padding: 20px 15px 5px;

                &::after {
                    height: 1px;
                    width: calc(100% - 30px);
                    top: 31px;
                }
            }

            .box-title {
                margin: auto;
                padding: 0 1em;
                background-color: #fff;
                width: fit-content;
                font-weight: 700;
                font-size: 1.8rem;
                line-height: 1.5;
                letter-spacing: 0.08em;
                position: relative;
                z-index: 1;

                @media screen and (max-width: 767px) {
                    padding: 0 8px;
                    font-size: 14px;
                }
            }

            .pair {
                margin-top: 1.1rem;
                margin-bottom: 2.6rem;

                @media screen and (max-width: 767px) {
                    margin-top: 6px;
                    margin-bottom: 15px;
                }

                .key {
                    position: relative;
                    font-weight: 700;
                    font-size: 1.6rem;
                    letter-spacing: 0.08em;
                    padding-left: 1em;

                    &::before {
                        content: "";
                        width: 1.3rem;
                        height: 1.3rem;
                        background-color: var(--theme-yellow);
                        position: absolute;
                        left: 0;
                        top: 50%;
                        transform: translate(0, -50%);
                    }

                    @media screen and (max-width: 767px) {
                        font-size: 14px;
                        padding-left: 5px;

                        &::before {
                            width: 7px;
                            height: 7px;
                        }
                    }
                }

                .value {
                    margin-top: 0.7rem;

                    @media screen and (max-width: 767px) {
                        margin-top: 4px;

                    }

                    & li {
                        font-size: 1.4rem;
                        line-height: 2.4rem;
                        padding-left: 1em;
                        text-indent: -1em;

                        @media screen and (max-width: 767px) {
                            font-size: 12px;
                            line-height: 1.8;
                        }
                    }
                }
            }
        }

        .white-box.active {
            display: block;
        }

    }
}

.we {
    margin-top: 11rem;

    @media screen and (max-width: 767px) {
        margin-top: 60px;
    }

    .title {
        font-weight: 700;
        font-size: 3rem;
        letter-spacing: 0.08em;
        text-align: center;

        @media screen and (max-width: 767px) {
            font-size: 20px;
            line-height: 1.5;
        }
    }

    .subjects {
        margin-top: 4.6rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.6rem;

        @media screen and (max-width: 767px) {
            margin-top: 25px;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .subject {
            height: 10rem;
            border: 0.3rem solid var(--theme-yellow);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            padding: 0 3rem;
            position: relative;

            @media screen and (max-width: 767px) {
                height: 60px;
                border: 2px solid var(--theme-yellow);
                border-radius: 5px;
                padding: 0 15px;
            }

            .file {
                width: 5.3rem;

                @media screen and (max-width: 767px) {
                    width: 25px;
                }
            }

            .texts {
                margin-left: 2.8rem;

                @media screen and (max-width: 767px) {
                    margin-left: 15px;
                }

                .txt1 {
                    font-weight: 500;
                    font-size: 1.4rem;
                    line-height: 1.5;
                    letter-spacing: 0.08em;

                    @media screen and (max-width: 767px) {
                        font-size: 12px;
                    }
                }

                .txt2 {
                    font-weight: 700;
                    font-size: 2rem;
                    line-height: 1.5;
                    letter-spacing: 0.08em;

                    @media screen and (max-width: 767px) {
                        font-size: 15px;
                    }
                }
            }

            .arrow {
                width: 2.4rem;
                position: absolute;
                bottom: 1rem;
                right: 0.9rem;

                @media screen and (max-width: 767px) {
                    width: 18px;
                    bottom: 6px;
                    right: 5px;
                }
            }
        }
    }
}

.section-title {
    margin: 8.3rem auto 5.5rem;
    width: fit-content;
    font-family: 'Urbanist';
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: 0.1em;
    position: relative;
    text-transform: uppercase;

    &::after {
        content: "...";
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 3.7rem;
        letter-spacing: 0.2em;
        color: var(--theme-yellow);
        position: absolute;
        bottom: -1.8rem;
        left: 50%;
        transform: translateX(-50%);
    }

    @media screen and (max-width: 767px) {
        margin: 50px auto 30px;
        font-size: 26px;

        &::after {
            font-size: 20px;
            bottom: -12px;
        }
    }
}

.strengths {
    background-color: #F5F5F5;
    padding: 1rem 0 1rem;
    margin-top: 10rem;

    @media screen and (max-width: 767px) {
        padding: 5px 0 5px;
        margin-top: 50px;
    }

    .pattern {
        display: flex;
        justify-content: center;
        gap: 6rem;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 20px;
        }

        .left-txt {
            width: 58.6rem;

            @media screen and (max-width: 767px) {
                width: 100%;
            }

            .big {
                font-weight: 700;
                font-size: 2rem;
                line-height: 1;
                letter-spacing: 0.08em;

                @media screen and (max-width: 767px) {
                    font-size: 16px;
                }
            }

            .small {
                margin-top: 3rem;
                font-size: 1.4rem;
                line-height: 1.71;

                @media screen and (max-width: 767px) {
                    margin-top: 15px;
                    font-size: 12px;
                }
            }
        }

        .right-img {
            width: 38.2rem;

            @media screen and (max-width: 767px) {
                width: 100%;
            }
        }
    }

    .two-btns {
        margin-top: 6.3rem;
        margin-bottom: 8.8rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            margin-bottom: 60px;
            flex-direction: column;
            gap: 20px;
        }

        .two-btn:last-child {
            border: 2px solid var(--theme-yellow);

            @media screen and (max-width: 767px) {
                border: 1px solid var(--theme-yellow);
            }

            &::before {
                background-color: var(--theme-yellow);
            }

            &::after {
                background-color: var(--theme-yellow);
            }

            .btn-txt {
                color: var(--theme-yellow);
            }
        }
    }

}

.products {
    border-bottom: 2px solid #000;
    padding-bottom: 7rem;
    padding-top: 4.4rem;

    @media screen and (max-width: 767px) {
        border-bottom: 1px solid #000;
        padding-bottom: 35px;
        padding-top: 22px;
    }

    .type {
        margin-top: 6.8rem;
        font-weight: 700;
        font-size: 2.8rem;
        letter-spacing: 0.08em;
        width: 100%;
        text-align: center;

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            font-size: 18px;
        }
    }

    .sub {
        margin-top: 2rem;
        font-size: 1.6rem;
        text-align: center;

        @media screen and (max-width: 767px) {
            margin-top: 12px;
            font-size: 14px;
        }
    }

    .items {
        margin: 4.2rem 0 4.1rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 5.3rem;
        row-gap: 5rem;

        @media screen and (max-width: 767px) {
            margin: 35px 0 30px;
            grid-template-columns: 1fr;
            row-gap: 35px;
        }

        .item {
            .image-box {
                width: 100%;
                aspect-ratio: 398 / 218;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 2rem;
                background-image: linear-gradient(to right, #f5f5f5, #e0e0e0);

                @media screen and (max-width: 767px) {
                    padding: 10px;
                }

                & img {
                    max-height: 100%;
                }
            }

            .title {
                margin-top: 3.8rem;
                font-weight: 700;
                font-size: 2rem;
                text-align: center;
                line-height: 1.3;
                letter-spacing: 0.08em;

                @media screen and (max-width: 767px) {
                    margin-top: 10px;
                    font-size: 16px;
                }
            }

            .desc {
                margin-top: 1.4rem;
                font-size: 1.4rem;
                line-height: 2.4rem;

                @media screen and (max-width: 767px) {
                    margin-top: 8px;
                    font-size: 14px;
                }
            }

            .add-link {
                margin: 1rem 0 0 auto;
                font-size: 1.6rem;
                font-weight: bold;
                width: fit-content;
                position: relative;
                display: block;
                text-decoration: underline;
                text-underline-offset: 0.2em;

                &::before {
                    content: "";
                    position: absolute;
                    left: -3rem;
                    top: 50%;
                    width: 2rem;
                    height: 0.2rem;
                    background: black;
                    transform: translate(0, -50%);
                }

                &::after {
                    content: "";
                    position: absolute;
                    left: -2rem;
                    top: 50%;
                    width: 1rem;
                    height: 1rem;
                    border-top: 0.2rem solid black;
                    border-right: 0.2rem solid black;
                    transform: translate(0, -50%) rotate(45deg);
                }

                @media screen and (max-width: 767px) {
                    margin-top: 5px 0 0 auto;
                    font-size: 14px;

                    &::before {
                        left: -27px;
                        top: 50%;
                        width: 18px;
                        height: 1px;
                    }

                    &::after {
                        left: -18px;
                        width: 8px;
                        height: 8px;
                        border-top: 1px solid black;
                        border-right: 1px solid black;
                    }
                }
            }
        }

    }

    .ex-button {
        margin: 4rem auto 0;
        width: 26.2rem;
        height: 5rem;
        border-radius: 2.5rem;
        background-color: var(--theme-yellow);
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Urbanist';
        font-weight: 900;
        font-size: 1.4rem;
        color: #FFFFFF;

        @media screen and (max-width: 767px) {
            margin: 20px auto 0;
            width: 160px;
            height: 40px;
            border-radius: 20px;
            font-size: 12px;
        }
    }

    .thing {
        margin-top: 7rem;
        border-top: 2px solid #000;
        padding-top: 7rem;
        display: flex;
        justify-content: space-between;

        @media screen and (max-width: 767px) {
            margin-top: 35px;
            border-top: 1px solid #000;
            padding-top: 35px;
            flex-direction: column-reverse;
        }

        .l-text {
            width: 71.2rem;
            padding-top: 3rem;

            @media screen and (max-width: 767px) {
                width: 100%;
                padding-top: 10px;
            }

            .text1 {
                font-weight: 700;
                font-size: 3rem;
                letter-spacing: 0.08em;

                @media screen and (max-width: 767px) {
                    font-size: 20px;
                }
            }

            .text2 {
                margin-top: 1.4rem;
                font-size: 1.6rem;
                line-height: 1.88;

                @media screen and (max-width: 767px) {
                    margin-top: 5px;
                    font-size: 14px;
                }
            }

            .button {
                margin-top: 5rem;
                width: 26.2rem;
                height: 5rem;
                border-radius: 2.5rem;
                background-color: var(--theme-yellow);
                display: flex;
                justify-content: center;
                align-items: center;
                font-family: 'Urbanist';
                font-weight: 900;
                font-size: 1.4rem;
                color: #FFFFFF;

                @media screen and (max-width: 767px) {
                    margin-top: 20px;
                    width: 160px;
                    height: 40px;
                    border-radius: 20px;
                    font-size: 12px;
                }
            }

            .button.external {
                position: relative;

                &::after {
                    content: "";
                    width: 1.2rem;
                    height: 1.2rem;
                    background: url(../../img/page/creative/external.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                    position: absolute;
                    right: 2rem;
                    top: 50%;
                    transform: translateY(-50%);
                }

                @media screen and (max-width: 767px) {
                    &::after {
                        width: 10px;
                        height: 10px;
                        right: 15px;
                    }
                }
            }
        }
    }

    .r-image {
        width: 53.2rem;

        @media screen and (max-width: 767px) {
            width: 100%;
        }

        & img {
            width: 100%;
        }
    }
}


.others {
    margin-top: 8rem;
    margin-bottom: 14rem;

    @media screen and (max-width: 767px) {
        margin-top: 60px;
        margin-bottom: 70px;
    }

    .button {
        display: block;
        margin: auto;
        width: 26.2rem;
        height: 5rem;
        border-radius: 2.5rem;
        background-color: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;

        &::after {
            content: "";
            width: 1.1rem;
            height: 1.1rem;
            background-image: url(../../img/page/creative/external.svg);
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            right: 1.4rem;
            top: 50%;
            transform: translateY(-59%);
        }

        @media screen and (max-width: 767px) {
            width: 200px;
            height: 40px;
            border-radius: 20px;

            &::after {
                width: 9px;
                height: 9px;
                right: 10px;
            }
        }

        .button-txt {
            font-weight: 900;
            font-size: 1.4rem;
            text-align: center;
            color: #FFFFFF;

            @media screen and (max-width: 767px) {
                font-size: 12px;
            }
        }
    }

    .genres {

        .genre:nth-child(3) {
            display: none;
        }
    }
}