@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.font_en {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

:root {
    --COLOR_MAIN: #1A2188;
}

/**HEADER**/

.lib-header__outer {
    height: 120px;
    .lib-header__inner {
        .lib-header__bar {
            max-width: 220px;
            background-color: var(--WHT);
            .lib-header__logo {
                margin: 0 auto;
                img {
                    width: 100px;
                }
            }
        }
        .lib-nav__panel {
            padding-right: 50px;
            .lib-nav__outer {
                display: grid;
                grid-template-columns: repeat(2, auto);
                align-items: center;
                justify-content: end;
                margin: 0;
                padding: 0 0 1em;
                border-bottom: 1px solid var(--WHT);
                position: relative;
                z-index: 2;
                .lib-nav__list {
                    align-items: center;
                    .lib-nav__item {
                        .lib-nav__btn {
                            margin: 0;
                            padding: 0;
                            color: var(--WHT);
                            &::after {
                                content: none;
                            }
                            .txt {
                                &::before {
                                    background-color: var(--WHT);
                                    height: 2px;
                                    left: 50%;
                                    transform: translateX(-50%) !important;
                                    width: 80%;
                                    max-width: 4em;
                                }
                            }
                        }
                    }
                }
                .lib-induce__outer {
                    position: relative;
                    max-width: 210px;
                    height: auto;
                    transition: .3s;
                    .lib-induce__btn {
                        height: 2.6em;
                        border: none;
                        border-radius: 1.3em !important;
                        width: auto;
                        column-gap: 1em;
                        background-color: var(--COLOR_MAIN);
                        .txt {
                            font-size: 16px;
                        }
                        img {
                            width: 1.2em;
                        }
                    }
                }
                &::after {
                    content: '';
                    display: block;
                    background-color: rgba(0, 0, 0, .5);
                    position: absolute;
                    z-index: 1;
                    width: 120%;
                    height: 200%;
                    left: -5%;
                    bottom: -10%;
                    filter: blur(30px);
                }
            }
        }
    }
}

html {
    &.is-scroll {
        .lib-header__outer {
            .lib-header__inner {
                .lib-header__bar {
                    .lib-header__logo {
                        img {
                            width: 60px;
                        }
                    }
                }
                .lib-nav__panel {
                    .lib-nav__outer {
                        .lib-induce__outer {
                            transform: translateY(12px);
                        }
                    }
                }
            }
        }
    }
}


body {
    &:not(:has(#mv)) {
        .lib-header__outer {
            .lib-header__inner {
                .lib-nav__panel {
                    .lib-nav__outer {
                        border-bottom: 1px solid #000000;
                        .lib-nav__list {
                            .lib-nav__item {
                                .lib-nav__btn {
                                    color: #000000;
                                    .txt {
                                        &::before {
                                            background-color: var(--COLOR_MAIN);
                                        }
                                    }
                                }
                            }
                        }
                        &::after {
                            content: none;
                        }
                    }
                }
            }
        }
    }
}

@media (hover:hover) {

    .lib-header__outer {
        .lib-header__inner {
            .lib-nav__panel {
                .lib-nav__outer {
                    .lib-induce__outer {
                        .lib-induce__btn {
                            &:hover {
                                color: var(--WHT);
                                filter: brightness(1.2);
                                img {
                                    opacity: 1;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

}

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

    .lib-header__outer {
        height: 60px;
        .lib-header__inner {
            .lib-header__bar {
                max-width: 100%;
                background-color: transparent;
                box-shadow: none;
                transition-duration: .3s;
                .lib-header__logo {
                    margin: 0;
                    width: 120px;
                    background-color: var(--WHT);
                    img {
                        width: 70px;
                    }
                }
            }
            .lib-nav__panel {
                padding-right: 0;
                .lib-nav__outer {
                    grid-template-columns: 1fr;
                    padding: 0;
                    border-bottom: none;
                    .lib-nav__list {
                        margin: 0;
                        box-shadow: none;
                        .lib-nav__item {
                            .lib-nav__btn {
                                color: #000000;
                                display: grid;
                                height: 2.6em;
                                align-items: center;
                                padding: 0 1em;
                                &::after {
                                    content: none;
                                }
                                .txt {
                                    &::before {
                                        background-color: var(--WHT);
                                        height: 2px;
                                        left: 50%;
                                        transform: translateX(-50%) !important;
                                        width: 80%;
                                        max-width: 4em;
                                    }
                                }
                                &.js-child__btn {
                                    grid-template-columns: repeat(2, auto);
                                    justify-content: space-between;
                                    &::after {
                                        content: '';
                                        width: 1em;
                                        height: 1em;
                                        border-right: 2px solid var(--COLOR_MAIN);
                                        border-bottom: 2px solid var(--COLOR_MAIN);
                                        transform: rotate(45deg);
                                        transition-duration: .3s;
                                    }
                                    &[aria-expanded="true"] {
                                        &::after {
                                            transform: rotate(-135deg);
                                        }
                                    }
                                }
                            }
                            .lib-child__panel {
                                margin: 0;
                                a {
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                    .lib-induce__outer {
                        margin: 1em auto 0;
                    }
                    &::after {
                        content: none;
                    }
                }
            }
        }
    }

    html {
        &.is-open {
            .lib-header__outer {
                .lib-header__inner {
                    .lib-header__bar {
                        background-color: var(--WHT);
                    }
                }
            }

        }
    }

}

/**FOOTER**/
.lib-footer__outer {
    padding: 90px 0 120px;
    border: none;
    .lib-footer__inner {
        padding: 0;
        width: calc(100% - 3em);
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 180px 1fr;
        align-items: center;
        .lib-footer__logo {
            width: 100%;
            grid-area: 1/1/3/2;
        }
        .lib-footer__nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            column-gap: 1em;
            align-self: end;
            .lib-footer__title {
                width: auto;
                margin: 0;
                .txt {
                    font-size: 16px;
                }
            }
        }
        .lib-footer__copyright {
            background: none;
            color: #333333;
            justify-self: end;
        }
    }
}


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

    .lib-footer__outer {
        padding: 60px 0 30px;
        .lib-footer__inner {
            grid-template-columns: 1fr;
            grid-row-gap: 30px;
            .lib-footer__logo {
                grid-area: unset;
                width: 100px;
                margin: 0 auto;
                padding: 0;
            }
            .lib-footer__nav {
                justify-content: center;
                align-self: unset;
                row-gap: .5em;
                flex-wrap: wrap;
                max-width: 300px;
                margin: 0 auto;
                .lib-footer__title {
                    .txt {
                        font-size: 15px;
                    }
                    a {
                        border: none;
                        padding: 0;
                        border: none;
                    }
                }
            }
            .lib-footer__copyright {
                justify-self: center;
                margin: 0;
                padding: 0;
            }
        }
    }

}

/**CONTENTS**/
body {
    &:has(#mv) {
        .lib-header__outer {
            background-color: transparent;
            box-shadow: none;
        }
        #wrapper {
            padding-top: 0;
        }
        #contents {
            max-width: 100%;
            padding: 0;
        }
        .wrap {
            max-width: 100%;
            padding: 120px 0 150px;
            .contents {
                width: calc(100% - 3em);
                max-width: 1100px;
                margin: 0 auto;
            }
            .ttl_h2 {
                font-size: 24px;
                display: grid;
                grid-row-gap: .2em;
                line-height: 1;
                margin-bottom: 2.5em;
                .font_en {
                    font-size: 110px;
                    color: var(--COLOR_MAIN);
                    font-weight: 700;
                }
                .font_jp {
                    display: grid;
                    grid-template-columns: .9em 1fr;
                    grid-column-gap: .33em;
                    align-items: center;
                    grid-row-gap: .2em;
                }
            }
            li {
                margin: 0;
                padding: 0;
                &::before {
                    content: none;
                }
            }
            .btn_more {
                font-size: 22px;
                line-height: 1.5;
                background-color: var(--COLOR_MAIN);
                color: var(--WHT);
                width: 12em;
                height: 2.5em;
                display: grid;
                grid-template-columns: 1fr 1.2em;
                align-items: center;
                border-radius: 1.4em;
                padding-right: 1em;
                text-align: center;
            }
        }
    }
}

/**MV**/
#mv {
    .wrap {
        max-width: 100%;
        padding: 0 !important;
        background: url(/dcms_media/image/top-mv.jpg) no-repeat center center/cover;
        aspect-ratio: 1.6;
        max-height: 100vh;
        .contents {
            height: 100%;
            display: grid;
            align-content: end;
            padding-bottom: 5em;
            h1 {
                color: var(--WHT);
                font-size: min(8.5vw, 100px);
                line-height: 1.5;
                margin-bottom: .2em;
            }
            p {
                color: var(--WHT);
                font-size: clamp(18px, 2.1vw, 25px);
                line-height: 1.5;
                margin: 0;
            }
        }
    }
}

/**REASON**/
#top_reason {
    .wrap {
        background: linear-gradient(0deg, rgba(225, 225, 225, 1) 15%, rgba(234, 234, 234, 0) 100%),
            url(/dcms_media/other/top-reason-bg.svg) no-repeat center bottom/1500px auto;
        .contents {
            .contents_inner {
                display: grid;
                grid-template-columns: 1fr 50%;
                .detail {
                    padding-left: 3em;
                    .reason_copy {
                        font-size: 30px;
                        display: grid;
                        justify-items: start;
                        grid-row-gap: .8em;
                        margin-bottom: 1.5em;
                        li {
                            background-color: #FFFFFF;
                            box-shadow: 0 0 10px rgba(0, 0, 0, .15);
                            font-weight: 600;
                            padding: .2em .8em;
                            span {
                                color: var(--COLOR_MAIN);
                            }
                        }
                    }
                }
                .img {
                    position: relative;
                    img {
                        display: block;
                        position: absolute;
                        width: 100%;
                        left: 0;
                        bottom: 0;
                    }
                }
            }
        }
    }
}

/**BUSINESS**/
#top_business {
    .wrap {
        background: url(/dcms_media/image/top-business-bg.png) no-repeat calc(50vw - 700px) 120px/900px auto;
        .contents {
            max-width: 1300px !important;
            .contents_inner {
                max-width: 740px;
                margin-left: auto;
                margin-bottom: 5em;
                .ttl_h2 {
                    margin-bottom: 1.5em;
                }
                p {
                    font-size: 18px;
                }
            }
            .business_list {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                grid-column-gap: 1.5%;
                li {
                    a {
                        display: grid;
                        grid-template-rows: repeat(2, auto);
                        align-content: space-between;
                        aspect-ratio: 4/3;
                        border-radius: 15px;
                        overflow: hidden;
                        position: relative;
                        padding: 1.5em 2em;
                        .num {
                            font-size: 40px;
                            font-weight: 700;
                            color: var(--COLOR_MAIN);
                        }
                        h3 {
                            font-size: min(1.6vw, 21px);
                            color: var(--WHT);
                            line-height: 1.5;
                            display: grid;
                            grid-template-columns: 1fr 2em;
                            grid-row-gap: .2em;
                            margin: 0;
                            padding: 0;
                            letter-spacing: normal;
                            border: none;
                            .font_en {
                                font-size: min(1vw, 12px);
                            }
                            img {
                                grid-area: 1/2/3/3;
                            }
                        }
                        &>* {
                            position: relative;
                            z-index: 3;
                        }
                        &::before {
                            content: '';
                            display: block;
                            width: 100%;
                            height: 50%;
                            position: absolute;
                            z-index: 2;
                            left: 0;
                            bottom: 0;
                            background: linear-gradient(0deg, rgba(0, 0, 0, .5) 15%, rgba(0, 0, 0, 0) 100%);
                        }
                        .bgimg {
                            position: absolute;
                            display: block;
                            z-index: 1;
                            width: 100%;
                            height: 100%;
                            left: 0;
                            top: 0;
                            object-fit: cover;
                            margin: 0;
                        }
                    }
                }
            }
        }
    }
}

/**CONSTRUCTION**/
#top_construction {
    .wrap {
        background: linear-gradient(180deg, #f4faff 0%, #FFFFFF 100%);
        padding-bottom: 0 !important;
        .contents {
            .results {
                .swiper-wrapper {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    grid-column-gap: 5%;
                    .swiper-slide {
                        .lib-media__thumb {
                            .thumb {
                                height: auto;
                                max-height: auto;
                            }
                            img {
                                width: 100%;
                                height: auto;
                                aspect-ratio: 1.7;
                                object-fit: cover;
                                border-radius: 15px;
                            }
                        }
                        .lib-media__txtarea {
                            padding-top: 1.5em;
                            .lib-badge__category {
                                color: var(--COLOR_MAIN);
                                padding: 0;
                                background: none;
                                font-size: 16px;
                                border: none;
                            }
                            .lib-media__title {
                                line-height: 1.5;
                                a {
                                    font-size: 20px;
                                    &::before {
                                        display: inline-block;
                                        content: '';
                                        width: .4em;
                                        height: .4em;
                                        background-color: var(--COLOR_MAIN);
                                        margin-right: .5em;
                                        transform: translateY(-.15em);
                                    }
                                }
                            }
                            .lib-media__txt {
                                font-size: 15px;
                            }
                            .lib-media__time {
                                display: none;
                            }
                        }
                    }
                }
                .lib-swiper__control {
                    display: none;
                }
            }
        }
    }
}

/**RECRUITMENT**/
#top_recruitment {
    .wrap {
        background: url(/dcms_media/image/top-recruit-bg.png) no-repeat center top/cover;
        padding: 150px 0 200px !important;
        border-radius: 0 0 30px 30px;
        .contents {
            .ttl_h2 {
                margin-bottom: 4em;
            }
            .recruitment_list {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                grid-column-gap: 2%;
                li {
                    a {
                        display: grid;
                        grid-template-rows: 1fr auto;
                        aspect-ratio: 1.1;
                        border: 1px solid var(--COLOR_MAIN);
                        border-radius: 15px;
                        background-color: rgba(255, 255, 255, .33);
                        padding: 0 2em 2em;
                        &>img {
                            width: 36%;
                            aspect-ratio: 1;
                            object-fit: contain;
                            margin: 0 auto;
                            align-self: center;
                        }
                        h3 {
                            margin: 0;
                            padding: 1.5em 0 0 .5em;
                            border-bottom: none;
                            border-top: 1px solid var(--COLOR_MAIN);
                            color: var(--COLOR_MAIN);
                            font-size: min(1.8vw, 20px);
                            display: grid;
                            grid-template-columns: 1fr 1em;
                            align-items: center;
                            text-align: center;
                            img {
                                transform: scale(1.66);
                                transform-origin: left center;
                            }
                        }
                    }
                }
            }
        }
    }
}

/**COMPANY**/
#top_company {
    .wrap {
        background: url(/dcms_media/image/top-company-bg.png) no-repeat 42vw bottom/730px auto;
        overflow: hidden;
        padding: 180px 0 !important;
        .contents {
            .contents_inner {
                display: grid;
                grid-template-columns: 1fr 50%;
                align-items: center;
                grid-column-gap: 8%;
                .img {
                    img {
                        display: block;
                        margin-left: -30%;
                        max-width: 130%;
                    }
                }
                .about {
                    font-size: 16px;
                    max-width: 420px;
                    dt {
                        font-size: 15px;
                        display: grid;
                        grid-template-columns: auto 1fr;
                        align-items: center;
                        grid-column-gap: .66em;
                        line-height: 1;
                        &::before {
                            content: '';
                            width: .5em;
                            aspect-ratio: 1;
                            background-color: var(--COLOR_MAIN);
                        }
                        &:not(:first-child) {
                            padding-top: 1.5em;
                        }
                    }
                    dd {
                        line-height: 1.5;
                        padding-top: 1em;
                        &:not(:last-child) {
                            border-bottom: 1px solid #c4c4c4;
                            padding-bottom: 1.5em;
                        }
                    }
                }
            }
        }
    }
}

/**FOOTER_CONTACT**/
#foot_contact {
    .wrap {
        padding: 0 !important;
        .contents {
            width: calc(100% - 3em);
            margin: 0 auto;
            max-width: 1300px !important;
            background-color: var(--COLOR_MAIN);
            background: linear-gradient(-120deg, #1A2188 0%, #00065D 100%);
            border-radius: 15px;
            .contents_inner {
                aspect-ratio: 2.8;
                display: grid;
                grid-template-columns: 1fr auto;
                align-items: center;
                padding: 0 6em;
                &>img {
                    width: 7em;
                    margin: 0;
                }
                .ttl_h2 {
                    font-size: 24px;
                    display: grid;
                    grid-row-gap: .2em;
                    line-height: 1;
                    color: var(--WHT);
                    margin: 0;
                    .font_en {
                        font-size: 110px;
                        color: inherit;
                        font-weight: 700;
                    }
                    .font_jp {
                        display: grid;
                        grid-template-columns: .9em auto 1fr;
                        grid-column-gap: .33em;
                        align-items: center;
                        grid-row-gap: .2em;
                        span {
                            font-size: 15px;
                            font-weight: 400;
                            padding-left: 1em;
                        }
                    }
                }
            }
        }
    }
}


@media (hover:hover) {

    /**CONTENTS**/
    body {
        &:has(#mv) {
            .wrap {
                a {
                    transition: .3s;
                    img {
                        transition: .3s;
                    }
                }
                .btn_more {
                    img {
                        transition: .3s;
                    }
                    &:hover {
                        filter: brightness(1.2);
                        img {
                            transform: translateX(3px);
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }

    /**BUSINESS**/
    #top_business {
        .wrap {
            .contents {
                .business_list {
                    li {
                        a {
                            &:hover {
                                h3 {
                                    img {
                                        transform: translateX(3px);
                                    }
                                }
                                .bgimg {
                                    transform: scale(1.05);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /**RECRUITMENT**/
    #top_recruitment {
        .wrap {
            .contents {
                .recruitment_list {
                    li {
                        a {
                            &:hover {
                                &>img {
                                    transform: scale(1.05);
                                }
                                h3 {
                                    img {
                                        transform: translateX(3px) scale(1.66);
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /**FOOTER_CONTACT**/
    #foot_contact {
        .wrap {
            .contents {
                .contents_inner {
                    &>img {
                        transition-duration: .3s;
                    }
                    &:hover {
                        &>img {
                            transform: translateX(5px);
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }

}

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

    /**CONTENTS**/
    body {
        &:has(#mv) {
            .wrap {
                padding: 90px 0 120px;
                .ttl_h2 {
                    .font_en {
                        font-size: min(10vw, 110px);
                    }
                }
                .btn_more {
                    font-size: 20px;
                }
            }
        }
    }

    /**MV**/
    #mv {
        .wrap {
            .contents {
                padding-bottom: 3em;
            }
        }
    }

    /**REASON**/
    #top_reason {
        .wrap {
            .contents {
                .contents_inner {
                    .detail {
                        padding-left: 0;
                        .reason_copy {
                            font-size: min(3vw, 30px);
                        }
                    }
                }
            }
        }
    }

    /**BUSINESS**/
    #top_business {
        .wrap {
            background: url(/dcms_media/image/top-business-bg.png) no-repeat calc(50vw - 500px) 120px/600px auto;
            .contents {
                .business_list {
                    li {
                        a {
                            padding: 1em;
                            h3 {
                                font-size: min(1.7vw, 22px);
                                .font_en {
                                    font-size: min(1.1vw, 12px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /**CONSTRUCTION**/
    #top_construction {
        .wrap {
            .contents {
                .results {
                    .swiper-wrapper {
                        grid-column-gap: 3%;
                        .swiper-slide {
                            .lib-media__txtarea {
                                padding-top: 1.5em;
                                .lib-badge__category {
                                    font-size: 14px;
                                }
                                .lib-media__title {
                                    a {
                                        font-size: 18px;
                                    }
                                }
                                .lib-media__txt {
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /**RECRUITMENT**/
    #top_recruitment {
        .wrap {
            padding: 120px 0 150px !important;
            .contents {
                .ttl_h2 {
                    margin-bottom: 3em;
                }
                .recruitment_list {
                    li {
                        a {
                            padding: 0 1em 2em;
                        }
                    }
                }
            }
        }
    }

    /**COMPANY**/
    #top_company {
        .wrap {
            background: url(/dcms_media/image/top-company-bg.png) no-repeat 42vw bottom/600px auto;
            padding: 120px 0 !important;
        }
    }

    /**FOOTER_CONTACT**/
    #foot_contact {
        .wrap {
            .contents {
                .contents_inner {
                    padding: 0 2em;
                    &>img {
                        width: 4em;
                        margin: 0;
                    }
                    .ttl_h2 {
                        color: var(--WHT);
                        margin: 0;
                        .font_en {
                            color: inherit;
                            font-size: min(10vw, 110px);
                        }
                        .font_jp {
                            grid-template-columns: .9em 1fr;
                            span {
                                padding-left: 0;
                                grid-area: 2/1/3/3;
                                padding-top: 1em;
                            }
                        }
                    }
                }
            }
        }
    }

}

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

    /**CONTENTS**/
    body {
        &:has(#mv) {
            .wrap {
                padding: 75px 0 90px;
                .ttl_h2 {
                    font-size: min(5.4vw, 24px);
                    .font_en {
                        font-size: min(9.6vw, 50px);
                    }
                }
                .btn_more {
                    font-size: 16px;
                }
            }
        }
    }

    /**MV**/
    #mv {
        .wrap {
            max-height: 100vh;
            .contents {
                padding-bottom: 1em;
                h1 {
                    font-size: min(8vw, 80px);
                }
                p {
                    font-size: min(4.5vw, 24px);
                    max-width: 18em;
                }
            }
        }
    }

    /**REASON**/
    #top_reason {
        .wrap {
            background: linear-gradient(0deg, rgba(225, 225, 225, 1) 15%, rgba(234, 234, 234, 0) 100%),
                url(/dcms_media/other/top-reason-bg.svg) no-repeat center bottom/150vw auto;
            padding-bottom: 60px;
            .contents {
                .contents_inner {
                    grid-template-columns: 1fr;
                    grid-row-gap: 30px;
                    .detail {
                        .reason_copy {
                            font-size: min(6vw, 30px);
                            grid-row-gap: .5em;
                        }
                    }
                    .img {
                        img {
                            position: relative;
                        }
                    }
                }
            }
        }
    }

    /**BUSINESS**/
    #top_business {
        .wrap {
            background: url(/dcms_media/image/top-business-bg.png) no-repeat 0 120px/90vw auto;
            .contents {
                .contents_inner {
                    margin-bottom: 3em;
                    p {
                        font-size: 16px;
                    }
                }
                .business_list {
                    grid-template-columns: 1fr;
                    grid-row-gap: 10px;
                    max-width: 500px;
                    margin: 0 auto;
                    li {
                        a {
                            aspect-ratio: 2;
                            h3 {
                                font-size: min(5vw, 22px);
                                .font_en {
                                    font-size: min(3.6vw, 12px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /**CONSTRUCTION**/
    #top_construction {
        .wrap {
            .contents {
                .results {
                    .swiper-wrapper {
                        grid-template-columns: 1fr;
                        grid-row-gap: 30px;
                        .swiper-slide {
                            .lib-media__thumb {
                                img {
                                    border-radius: 10px;
                                }
                            }
                            .lib-media__txtarea {
                                padding-top: 1em;
                            }
                        }
                    }
                }
            }
        }
    }

    /**RECRUITMENT**/
    #top_recruitment {
        .wrap {
            padding: 90px 0 60px !important;
            border-radius: 0 0 20px 20px;
            .contents {
                .ttl_h2 {
                    margin-bottom: 2em;
                }
                .recruitment_list {
                    grid-template-columns: 1fr;
                    grid-row-gap: 10px;
                    max-width: 500px;
                    margin: 0 auto;
                    li {
                        a {
                            grid-template-rows: unset;
                            grid-template-columns: 20% 1fr;
                            grid-column-gap: 1em;
                            aspect-ratio: unset;
                            padding: 1.5em;
                            &>img {
                                width: 100%;
                            }
                            h3 {
                                margin: 0;
                                padding: 0;
                                border: none;
                                font-size: min(4.4vw, 20px);
                                display: grid;
                                grid-template-columns: 1fr 1em;
                                text-align: left;
                                img {
                                    transform: scale(1);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /**COMPANY**/
    #top_company {
        .wrap {
            background: url(/dcms_media/image/top-company-bg.png) no-repeat 0 bottom/90vw auto;
            padding: 90px 0 !important;
            .contents {
                .ttl_h2 {
                    margin-bottom: 2em;
                }
                .contents_inner {
                    grid-template-columns: 1fr;
                    grid-row-gap: 30px;
                    .img {
                        img {
                            margin: 0 -1.5em;
                            max-width: calc(100% + 3em);
                        }
                    }
                    .about {
                        font-size: 15px;
                    }
                }
            }
        }
    }

    /**FOOTER_CONTACT**/
    #foot_contact {
        .wrap {
            .contents {
                .contents_inner {
                    padding: 2em;
                    &>img {
                        width: 2em;
                    }
                    .ttl_h2 {
                        font-size: min(5.4vw, 24px);
                        .font_en {
                            font-size: min(9.6vw, 50px);
                        }
                        .font_jp {
                            span {
                                font-size: 14px;
                                line-height: 1.5;
                            }
                        }
                    }
                }
            }
        }
    }

}