@charset "UTF-8";

body::-webkit-scrollbar {
    display: none;
}

html,
body {
    overflow-x: hidden;
}

#lp-header {
    width: 100%;
    padding: 3.6rem 5.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 9999;

    @media screen and (max-width: 767px) {
        height: 77px;
        padding: 0 20px;
        position: fixed;
        left: 0;
        top: 0;
        background-color: #fff;
        box-shadow: 0px 2px 6px 0px rgba(66, 66, 66, 0.25);
    }

    .lefty {
        @media screen and (max-width: 767px) {
            width: 100%;
        }

        .logo {
            .logo-icon {
                width: 32.2rem;
                margin-left: 1rem;

                @media screen and (max-width: 767px) {
                    width: 168px;
                    margin-left: 0;
                }
            }
        }
    }

    .righty {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1rem;

        @media screen and (max-width: 767px) {
            position: absolute;
            left: 100%;
            top: 77px;
            flex-direction: column;
            justify-content: flex-start;
            width: 100%;
            height: 100vh;
            background-color: #fff;
            padding: 20px;
            gap: 13px;
            transition: left ease 0.3s;
        }

        .navigation {
            margin-right: 3.7rem;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 4.4rem;

            @media screen and (max-width: 767px) {
                margin: 27px 0 48px;
                flex-direction: column;
                justify-content: center;
                gap: 25px;
            }

            .link {
                font-family: "Noto Sans JP";
                font-size: 1.5rem;

                @media screen and (max-width: 767px) {
                    font-size: 16px;
                    font-weight: 500;
                }
            }
        }

        .telephone {
            width: 26rem;
            height: 7rem;
            background-color: #F3F3F3;
            border-radius: 0.4rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            @media screen and (max-width: 767px) {
                width: 100%;
            }

            .above {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 0.3rem;

                .txt1 {
                    font-family: 'Roboto';
                    font-size: 1.6rem;
                    letter-spacing: 0.07em;
                }

                .number {
                    font-family: 'Roboto';
                    font-weight: 600;
                    font-size: 2.6rem;
                    line-height: 1;
                    letter-spacing: 0.02em;
                }
            }

            .below {
                font-family: "Noto Sans JP";
                font-size: 1.2rem;
                line-height: 1.5rem;
            }
        }

        .e-mail {
            width: 27.6rem;
            height: 7rem;
            background-color: #E1EEFF;
            border-radius: 0.4rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.9rem;

            @media screen and (max-width: 767px) {
                width: 100%;
            }

            .mail-icon {
                width: 3.65rem;
            }

            .mail-address {
                font-family: 'Roboto';
                font-weight: 600;
                font-size: 1.6rem;
            }
        }
    }

    .menu-btn {
        display: none;

        @media screen and (max-width: 767px) {
            display: block;
            position: absolute;
            top: 17px;
            right: 20px;
        }


        & a {
            position: relative;
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: ease 0.3s all;

            &::after {
                content: "MENU";
                position: absolute;
                left: 50%;
                bottom: -12px;
                color: #000;
                font-weight: 500;
                transform: translateX(-50%);
                white-space: nowrap;
                font-family: 'Roboto';
                font-weight: 700;
                font-size: 10px;
                line-height: 1;
                letter-spacing: 0.01em;
            }

            & span {
                position: relative;
                display: block;
                width: 100%;
                height: 2px;
                border-radius: 1px;
                background: #000;

                &::before,
                &::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 2px;
                    border-radius: 1px;
                    background: #000;
                    transition: ease 0.3s all;
                }

                &::before {
                    margin-top: -7px;
                }

                &::after {
                    margin-top: 7px;
                }
            }
        }
    }
}

.menu-active {
    #lp-header {

        .righty {
            left: 0;
        }

        .menu-btn {
            & a {
                &::after {
                    content: "CLOSE";
                }

                & span {
                    background-color: transparent;

                    &:before {
                        margin-top: 0;
                        transform: rotate(30deg);
                        -webkit-transform: rotate(30deg);
                    }

                    &:after {
                        margin-top: 0;
                        transform: rotate(-30deg);
                        -webkit-transform: rotate(-30deg);
                    }
                }
            }
        }
    }
}

#fv {
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media screen and (max-width: 767px) {
        flex-direction: column-reverse;
        margin-top: 77px;
    }

    .left-texts {
        width: 72rem;
        padding: 0 8rem 2rem 12rem;

        @media screen and (max-width: 767px) {
            width: 100%;
            padding: 30px 20px 0;
        }

        .big-one {
            font-weight: 700;
            font-size: 5.8rem;
            line-height: 8.3rem;
            letter-spacing: 0.08em;

            @media screen and (max-width: 767px) {
                font-size: 30px;
                line-height: 1.5;
            }

            .blue {
                color: #004299;
            }
        }

        .normal-one {
            margin-top: 4.4rem;
            font-weight: 500;
            font-size: 1.8rem;
            line-height: 3.3rem;
            padding-right: 6rem;

            @media screen and (max-width: 767px) {
                margin-top: 25px;
                font-size: 16px;
                line-height: 1.8;
                padding-right: 0;
            }
        }
    }

    .right-image {
        width: 120rem;

        @media screen and (max-width: 767px) {
            width: 100%;
        }
    }
}

.section-title {
    .ja {
        font-weight: 600;
        font-size: 4rem;
        line-height: 1.8;
        text-align: center;
        letter-spacing: 0.11em;

        @media screen and (max-width: 767px) {
            font-size: 24px;
        }
    }

    .en {
        font-family: 'Roboto';
        font-weight: 600;
        font-size: 1.8rem;
        text-align: center;
        color: #004299;

        @media screen and (max-width: 767px) {
            font-size: 14px;
        }
    }
}

#strength {
    padding: 11.5rem 0 6rem;

    @media screen and (max-width: 767px) {
        padding: 60px 0 0;
    }

    .boxes {
        margin-top: 6.4rem;
        display: flex;
        flex-direction: column;
        gap: 16rem;

        @media screen and (max-width: 767px) {
            margin-top: 32px;
            gap: 40px;
        }

        .box {
            display: flex;
            justify-content: space-between;
            align-items: center;

            @media screen and (max-width: 767px) {
                flex-direction: column;
                gap: 30px;
            }

            .box-img {
                width: 72rem;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    height: 100%;
                    width: 100%;
                    top: 6rem;
                    right: 6rem;
                    background-color: #F8F6EF;
                    border-radius: 0.6rem;
                }

                @media screen and (max-width: 767px) {
                    width: 100%;

                    &::before {
                        top: 15px;
                        right: 15px;
                        border-radius: 3px;
                    }
                }

                & img {
                    z-index: 1;
                    position: relative;
                }
            }

            .box-txt {
                width: 50rem;

                @media screen and (max-width: 767px) {
                    width: 100%;
                }

                .title {
                    font-family: "Noto Sans JP";
                    font-weight: 700;
                    font-size: 3.2rem;
                    line-height: 5.1rem;

                    @media screen and (max-width: 767px) {
                        font-size: 20px;
                        line-height: 1.5;
                    }
                }

                .content {
                    margin-top: 2rem;
                    font-size: 1.8rem;
                    line-height: 3.3rem;

                    @media screen and (max-width: 767px) {
                        margin-top: 10px;
                        font-size: 16px;
                        line-height: 1.8;
                    }
                }
            }
        }

        .box.reverse {
            flex-direction: row-reverse;

            @media screen and (max-width: 767px) {
                flex-direction: column;
            }

            .box-img {
                &::before {
                    right: initial;
                    left: 6rem;
                }

                @media screen and (max-width: 767px) {
                    &::before {
                        left: 15px;
                    }
                }
            }
        }
    }
}

#service {
    padding: 11rem 0 15rem;

    @media screen and (max-width: 767px) {
        padding: 60px 20px;
    }

    .essays {
        margin-top: 5rem;
        display: flex;
        justify-content: center;
        gap: 4rem;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
            flex-direction: column;
            gap: 30px;
        }

        .essay {
            width: 62rem;

            @media screen and (max-width: 767px) {
                width: 100%;
            }

            .pic {}

            .text1 {
                margin-top: 2.7rem;
                font-family: "Noto Sans JP";
                font-weight: 700;
                font-size: 2.5rem;
                line-height: 5.1rem;

                @media screen and (max-width: 767px) {
                    margin-top: 10px;
                    font-size: 18px;
                    line-height: 1.8;
                }
            }

            .text2 {
                font-size: 1.8rem;
                line-height: 3.3rem;

                @media screen and (max-width: 767px) {
                    font-size: 16px;
                    line-height: 1.8;
                }
            }
        }
    }
}

#archive {
    padding: 9.6rem 0 16rem;
    background-color: #f8f6ef;

    @media screen and (max-width: 767px) {
        padding: 60px 0;
    }

    .items {
        margin-top: 8rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 4rem;
        row-gap: 6rem;

        @media screen and (max-width: 767px) {
            margin-top: 40px;

            @media screen and (max-width: 767px) {
                grid-template-columns: 1fr;
                row-gap: 30px;
            }
        }

        .item {
            position: relative;

            .pic {
                border-radius: 0.6rem;

                @media screen and (max-width: 767px) {
                    border-radius: 3px;
                }
            }

            .type {
                position: absolute;
                left: 2rem;
                top: 2rem;
                width: 14rem;
                height: 4rem;
                background-color: #fff;
                border-radius: 0.5rem;
                border: 2px solid #004299;
                display: flex;
                justify-content: center;
                align-items: center;
                font-weight: 500;
                font-size: 1.6rem;
                text-align: center;
                color: #004299;

                @media screen and (max-width: 767px) {
                    left: 10px;
                    top: 10px;
                    width: 120px;
                    height: 30px;
                    border-radius: 3px;
                    border: 1px solid #004299;
                    font-size: 14px;
                }
            }

            .caption {
                margin-top: 2rem;
                font-weight: 600;
                font-size: 2rem;
                line-height: 3.6rem;
                text-align: center;

                @media screen and (max-width: 767px) {
                    margin-top: 10px;
                    font-size: 16px;
                    line-height: 1.8;
                }
            }
        }
    }
}

#recruit {
    padding: 11.5rem 0;
    background-color: #004299;

    @media screen and (max-width: 767px) {
        padding: 60px 0;
    }

    .holder {
        display: grid;
        grid-template-columns: 6fr 5fr;
        gap: 12rem;
        align-items: center;

        @media screen and (max-width: 767px) {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .photo {
            border-radius: 0.6rem;

            @media screen and (max-width: 767px) {
                border-radius: 3px;
                margin-top: 20px;
            }
        }

        .passage {
            .sec-title {
                .ja {
                    font-weight: 600;
                    font-size: 4rem;
                    line-height: 1.8;
                    letter-spacing: 0.11em;
                    color: #fff;

                    @media screen and (max-width: 767px) {
                        font-size: 24px;
                        text-align: center;
                    }
                }

                .en {
                    font-family: 'Roboto';
                    font-weight: 600;
                    font-size: 1.8rem;
                    color: #fff;

                    @media screen and (max-width: 767px) {
                        font-size: 14px;
                        text-align: center;
                    }
                }
            }

            .text {
                margin-top: 3rem;
                font-size: 1.8rem;
                line-height: 3.3rem;
                color: #FFFFFF;

                @media screen and (max-width: 767px) {
                    margin-top: 20px;
                    font-size: 16px;
                    line-height: 1.8;
                }
            }
        }
    }
}

#profile {
    padding-top: 10rem;

    @media screen and (max-width: 767px) {
        padding-top: 60px;
    }

    .table {
        margin-top: 4.5rem;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
        }

        .pair {
            padding: 1.7rem 3rem;
            display: grid;
            grid-template-columns: 1fr 2.7fr;
            border-bottom: 2px solid #D3D3D3;

            @media screen and (max-width: 767px) {
                padding: 1rem 0;
                grid-template-columns: 1fr 1.7fr;
                border-bottom: 1px solid #D3D3D3;
            }

            .key {
                font-weight: 700;
                font-size: 1.8rem;
                line-height: 3.3rem;
                color: #004299;

                @media screen and (max-width: 767px) {
                    font-size: 16px;
                    line-height: 1.8;
                }
            }

            .value {
                font-weight: 400;
                font-size: 1.8rem;
                line-height: 3rem;
                letter-spacing: 0.02em;

                @media screen and (max-width: 767px) {
                    font-size: 16px;
                    line-height: 1.8;
                }
            }
        }
    }
}

#access {
    padding: 9.5rem 0 13.5rem;

    @media screen and (max-width: 767px) {
        padding: 60px 0;
    }

    .iframe {
        margin-top: 6rem;
        width: 100%;
        aspect-ratio: 1080 / 460;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
            aspect-ratio: 1;
        }
    }

    .route {
        margin-top: 2rem;
        font-size: 1.8rem;
        line-height: 3.3rem;

        @media screen and (max-width: 767px) {
            margin-top: 10px;
            font-size: 16px;
            line-height: 1.8;
        }
    }
}

#contact {
    padding: 8.2rem 0 10rem;
    background-color: #004299;

    @media screen and (max-width: 767px) {
        padding: 60px 20px;
    }

    .title {
        font-weight: 600;
        font-size: 3rem;
        text-align: center;
        letter-spacing: 0.11em;
        color: #FFFFFF;

        @media screen and (max-width: 767px) {
            font-size: 20px;
        }
    }

    .inner-box {
        margin-top: 5.3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5rem;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
            flex-direction: column;
            gap: 20px;
        }

        .telephone {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            .above {
                display: flex;
                justify-content: center;
                align-items: flex-end;
                gap: 0.5rem;

                @media screen and (max-width: 767px) {
                    gap: 4px;
                }

                .txt1 {
                    font-family: 'Roboto';
                    font-size: 2.3rem;
                    letter-spacing: 0.07em;
                    color: #fff;

                    @media screen and (max-width: 767px) {
                        font-size: 16px;
                    }
                }

                .number {
                    font-family: 'Roboto';
                    font-weight: 600;
                    font-size: 4.1rem;
                    line-height: 1.2;
                    letter-spacing: 0.02em;
                    color: #fff;

                    @media screen and (max-width: 767px) {
                        font-size: 30px;
                    }
                }
            }

            .below {
                font-family: "Noto Sans JP";
                font-size: 1.4rem;
                line-height: 1.5;
                color: #fff;

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                }
            }
        }

        .stick {
            height: 8.25rem;
            width: 1px;
            background-color: #fff;

            @media screen and (max-width: 767px) {
                height: 1px;
                width: 100%;
            }
        }

        .e-mail {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;

            @media screen and (max-width: 767px) {
                gap: 8px;
            }

            .mail-icon {
                width: 4rem;

                @media screen and (max-width: 767px) {
                    width: 32px;
                }
            }

            .mail-address {
                font-family: 'Roboto';
                font-size: 2.1rem;
                color: #fff;

                @media screen and (max-width: 767px) {
                    font-size: 18px;
                }
            }
        }
    }
}

#lp-footer {
    padding: 4rem 0;

    @media screen and (max-width: 767px) {
        padding: 30px 0 20px;
    }

    .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 20px;
        }

        .logo {
            .logo-icon {
                width: 28.9rem;

                @media screen and (max-width: 767px) {
                    width: 180px;
                }
            }
        }

        .copyright {
            font-size: 1.6rem;

            @media screen and (max-width: 767px) {
                font-size: 12px;
            }
        }
    }
}