@charset "UTF-8";
:root {
    --main-font-color: #424242;
    --sub-font-color: #2A402F;
    --accent-color: #F08C1E;
    --bg-white: #fff;
    --green-01: rgb(0, 101, 50);
    --green-02: #5da66e;
    --gray-01: rgba(66, 66, 66, 0.5);
    --gray-02: #e9e9e9;
    --gradient-green: linear-gradient(transparent, #818c844d 44%, #00653280);
    --gradient-green2: rgba(0, 101, 50, 0.2);
    --container-narrow: 970px;
    --container-wide: 1210px;
    --container-padding: 16px;
}
/*--------------------------------
 見出し
---------------------------------*/
@media screen and (max-width: 700px) {
    .top-h2 {
        row-gap: 12px;
        margin-bottom: 30px;
        padding-top: 45px;
    }
    .top-h2>h2 {
        font-size: 30px;
    }
}
@media screen and (max-width: 740px) {
    .l-h3-curtain {
        font-size: 18px;
    }
    .l-h3-curtain .text__bg {
        height: 52px;
    }
}
/*--------------------------------
 btn
---------------------------------*/
@media screen and (max-width: 700px) {
    .btn01 a {
        padding: 12px 21px;
        width: 240px;
    }
}
/*--------------------------------
 流れる文字
---------------------------------*/
@media screen and (max-width: 700px) {
    .double-content {
        font-size: 180px;
    }
}
/*--------------------------------
 header
---------------------------------*/
/* ハンバーガーメニュー */
.header__list .global-nav {
    position: fixed;
    top: 0;
    z-index: 2;
    height: 100vh;
    background-image: repeating-linear-gradient(-60deg, #006532, #06ad59);
    right: -300px;
    width: 300px;
    opacity: 0;
    transition: right 0.4s ease, opacity 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
}
/* 表示時 */
.header__list .global-nav.show {
    right: 0;
    opacity: 1;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.header__list .global-nav .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px 30px;
    font-size: 18px;
    /* align-items: center; */
}
.nav-item.nav-item-tel {
    width: 100%;
}
header .nav-item-tel>a {
    display: flex;
    justify-content: center;
    width: 100%;
}
header .nav-list a.nav-link {
    color: var(--bg-white);
    font-weight: 500;
}
.btn-menu {
    display: flex;
    position: absolute;
    top: 0;
    right: 21px;
    z-index: 100;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 91px;
    text-align: center;
    padding: 21px 16px;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    appearance: none;
    transition: .3s;
}
.btn-menu--active {
    height: 75px;
    transition: .3s;
}
.btn-menu__line {
    display: block;
    position: relative;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.4s;
    border-radius: 4px;
    background-color: var(--sub-font-color);
}
.btn-menu__line::before,
.btn-menu__line::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: inherit;
    border-radius: 4px;
    background-color: var(--sub-font-color);
}
.btn-menu__line::before {
    top: -8px;
}
.btn-menu__line::after {
    top: 8px;
}
.btn-menu.active .btn-menu__line {
    background-color: transparent;
}
.btn-menu.active .btn-menu__line::before,
.btn-menu.active .btn-menu__line::after {
    top: 0;
    background-color: var(--bg-white);
}
.btn-menu.active .btn-menu__line::before {
    transform: rotate(45deg);
}
.btn-menu.active .btn-menu__line::after {
    transform: rotate(-45deg);
}
header .nav-list .contact .contact-link {
    padding: 25px 66px 25px 90px;
}
/* PC表示の時の高さ調整 */
header .btn-menu {
    display: block;
}
/* PC表示の時の高さ調整_end */
/* spのみnavにTEL番号 */
header .gnav-sp-only {
    display: block;
    padding: 0 30px
}
/* spのみnavにTEL番号_end */
header .gnav-sp-only .cta-tel span {
    padding-left: 34px;
}
header {
    padding: 18px 24px;
}
.btn-menu {
    height: 75px;
}
@media screen and (max-width: 700px) {
    header {
        padding: 15px;
    }
    .btn-menu {
        height: 68px;
        right: 10px;
    }
}
header .logo a img {
    width: 170px;
    height: auto;
}
/*--------------------------------
 トップぺージ
---------------------------------*/
/* メインビジュアル */
.top-wrapper .main-visual .main-visual-text {
    font-size: 52px;
}
.top-wrapper .main-visual .main-visual-text .catch-text span {
    padding: 0 1em;
}
@media screen and (max-width: 830px) {
    .top-wrapper .main-visual .main-visual-text {
        font-size: 39px;
    }
}
@media screen and (max-width: 700px) {
    .top-wrapper .main-visual .main-visual-text {
        bottom: 20%;
    }
}
/* メインビジュアル_end */
/* 会社概要 */
.top-about .top-about-desc,
.cta .flex {
    flex-direction: column;
    align-items: flex-start;
}
@media screen and (max-width: 700px) {
    .top-section:first-child {
        padding-top: 90px;
        padding-bottom: 0;
    }
    .top-section {
        padding: 70px 0;
    }
    .top-about .flex .flex-text,
    .top-result .flex .flex-text,
    .top-recruit .flex .flex-text {
        font-size: 16px;
    }
    .about-flex-item figcaption {
        font-size: 14px;
        margin-top: 12px;
    }
    .about-flex-item-width figure figcaption {
        left: 16px;
        bottom: 9px;
    }
    .about-flex-item {
        margin-bottom: 57px;
    }
    .top-about-bg {
        height: 210px;
        bottom: 0;
    }
}
/* 会社概要_end */
/* 実績取組 */
.top-result-flex .text-area>ul li {
    margin-bottom: 30px;
}
.link-btn {
    padding-bottom: 20px;
}
@media screen and (max-width: 700px) {
    .top-result .flex {
        margin-bottom: 49px;
    }
    .top-result-flex {
        gap: 21px;
    }
    .top-result-flex .text-area>ul {
        margin-top: 0px;
    }
    .top-result-flex .text-area>ul li {
        margin-bottom: 21px;
    }
    .top-result-flex .text-area>ul a {
        font-size: 16px;
    }
    .link-btn {
        padding-bottom: 18px;
    }
}
/* 実績取組_end */
/* 求人情報 */
@media screen and (max-width: 700px) {
    .top-recruit-contents {
        top: 50%;
        /* セクションの中央（縦方向） */
        left: 50%;
        /* セクションの中央（横方向） */
        transform: translate(-50%, -50%);
        /* 要素自身の幅・高さ分ずらす */
        aspect-ratio: 1 / 1;
        max-width: 69%;
    }
    .top-recruit .flex .flex-text {
        margin-bottom: 49px;
    }
}
/* 求人情報_end */
/* CTA */
.cta-contents .cta-left {
    width: 100%;
}
.cta-contents .flex-text {
    width: 70%;
}
.cta-btn {
    /* justify-content: space-evenly; */
}
.cta-tel span,
.cta-form span {
    /* padding-left: 0; */
}
@media screen and (max-width: 700px) {
    .cta {
        padding-top: 130px;
    }
    .cta .text-flowing {
        top: -190px;
    }
    .cta-contents .flex-text {
        width: 100%;
    }
    .cta-contents .flex {
        gap: 49px;
    }
    .cta-contents .cta-text {
        font-size: 16px;
    }
}
/* CTA_end */
/* footer */
.footer-contents {
    padding: 230px 0 66px 0;
}
.footer-contents .flex {
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.footer-sitemap ul {
    padding: 0 0 70px 0;
}
@media screen and (max-width: 700px) {
    footer .footer-logo img {
        width: 180px;
        height: auto;
    }
    .footer-contents {
        padding: 220px 0 66px 0;
    }
    .footer-sitemap a {
        font-size: 14px;
    }
    .footer-contents .flex {
        gap: 16px;
    }
    .footer-sitemap ul {
        padding: 0 0 40px 0;
    }
    .footer-contents address {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .footer-sitemap dl {
        font-size: 14px;
        margin-bottom: 28px;
    }
}
/* footer_end */
/* pagetop */
.page-top {
    right: 30px;
    bottom: 30px;
}
@media screen and (max-width: 700px) {
    .page-top__link {
        width: 46px;
        height: 46px;
    }
}
/* pagetop_end */
/*--------------------------------
 下層ぺージ_共通
---------------------------------*/
/* メインビジュアル */
.lower-mv-h1 h1 {
    font-size: 38px;
}
.lower-mv-h1 p {
    font-size: 20px;
}
@media screen and (max-width: 700px) {
    .lower-mv-h1 h1 {
        font-size: 32px;
    }
    .lower-mv-h1 p {
        font-size: 18px;
    }
}
/*--------------------------------
 下層ぺージ
---------------------------------*/
/* 404 */
.heading-error {
    font-size: 32px;
    margin-bottom: 38px;
}
.text-error {
    margin-bottom: 58px;
}
@media screen and (max-width: 700px) {
    .heading-error {
        font-size: 28px;
    }
}
/* お問い合わせ */
.l-contact .desc {
    margin-bottom: 90px;
}
@media screen and (max-width: 738px) {
    .form .form__note {
        padding-left: 0;
    }
}
@media screen and (max-width: 800px) {
    .scroll-area {
        padding: 30px 28px;
    }
}
/* 会社概要 */
@media screen and (max-width: 730px) {
    .anchor-list {
        gap: 9px;
    }
    .anchor-btn a {
        width: auto;
    }
}
@media screen and (max-width: 635px) {
    .anchor-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.timeline-list-item .date {
    width: 20%;
}
.timeline-list-item .content {
    width: 80%;
}
@media screen and (max-width: 700px) {
    .timeline-list-item .date {
        font-size: 26px;
    }
    .timeline-list-item .content .content-title {
        margin-bottom: 12px;
    }
}
@media screen and (max-width: 700px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
.readmore {
    padding: 12px 21px;
}
@media screen and (max-width: 700px) {
    /* スライダー矢印 */
    .swiper-slide-container .swiper-button-prev,
    .swiper-slide-container .swiper-button-next {
        width: 47px;
        height: 47px;
    }
    .swiper-slide-container .swiper-button-prev::after,
    .swiper-slide-container .swiper-button-next::after {
        width: 47px;
        height: 47px;
    }
    /* 前への矢印 */
    .swiper-slide-container .swiper-button-prev {
        left: -18px;
    }
    /* 次への矢印 */
    .swiper-slide-container .swiper-button-next {
        right: -18px;
    }
}
@media screen and (max-width: 794px) {
    .flex-item {
        flex-direction: column;
        margin-top: 21px;
    }
    .flex-item>img {
        margin: 0 auto;
        width: 100%;
        gap: 30px;
    }
    .sdgs-text {
        gap: 30px;
    }
}
@media screen and (max-width: 800px) {
    .vehicle-area {
        background:#fff;
        padding: 0;
        margin-top: 50px;
    }
}
/* 実績取組 */
@media screen and (max-width: 880px) {
    .read .read-text {
        margin-top: 32%;
    }
}
@media screen and (max-width: 800px) {
    .read .flex {
        flex-direction: column;
    }
    .read .read-text {
        margin-top: 0;
    }
    .read figure {
        padding-top: 107px;
    }
    .read figure img {
        max-width: none;
        width: 100%;
        object-fit: cover;
    }
    .read figure figcaption {
        left: 0;
    }
}
.l-result .grid-container {
    margin-top: 48px;
}
@media screen and (max-width: 700px) {
    .l-result .grid-container {
        margin-top: 28px;
    }
    .card__image::after {
        width: 2.4rem;
        height: 2.4rem;
        background-size: 1.4rem;
    }
}
/* recruit_求人情報 */
@media screen and (max-width: 940px) {
    .l-recruit .read figure figcaption {
        left: 300px;
    }
}
@media screen and (max-width: 890px) {
    .l-recruit .read .read-text {
        margin-top: 22%;
    }
}
@media screen and (max-width: 900px) {
    .l-recruit .read figure figcaption {
        left: 250px;
    }
}
@media screen and (max-width: 800px) {
    .l-recruit .read figure figcaption {
        left: 0;
    }
    .l-recruit .read .read-text {
        margin-top: 0%;
    }
}