@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;
}
/*--------------------------------
 全体
---------------------------------*/
html {
    overflow-x: hidden;
}
body {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    color: var(--main-font-color);
    font-feature-settings: "palt";
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.88;
    overflow: clip;
}
a:link {
    color: var(--main-font-color);
}
a:visited {
    color: var(--main-font-color);
}
/* 選択範囲 */
::selection {
    background-color: var(--accent-color);
    color: #fff;
}
/* スマホのみtel発信可 */
@media (min-width: 600px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
/*--------------------------------
 font
---------------------------------*/
.en {
    font-family: "Outfit", sans-serif;
}
/*--------------------------------
 btn
---------------------------------*/
/* 共通パーツ */
.btn01 a,
.btn01 span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 29px;
    border-radius: 3px;
    padding: 17px 30px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: .3s;
    width: 270px;
}
.btn01 a::after,
.btn01 span::after {
    content: "";
    display: inline-block;
    width: 27px;
    height: 27px;
}
/* 背景白ボタン */
.btn-white a {
    background: var(--bg-white);
    color: var(--sub-font-color);
    border: 2px solid var(--bg-white);
}
.btn-white a::after {
    background: url("../common_image/aroow-green.svg") no-repeat center / contain;
}
/* 背景緑ボタン */
.btn-green a,
.btn-green span {
    background: var(--green-02);
    color: var(--bg-white);
    border: 2px solid var(--green-02);
}
.btn-green a::after,
.btn-green span::after {
    background: url("../common_image/arrow-white.svg") no-repeat center / contain;
}
@media (min-width: 600px) {
    .btn-green a:hover,
    .btn-green span:hover {
        background: var(--bg-white);
        color: var(--green-02);
    }
    .btn-green a:hover::after,
    .btn-green span:hover::after {
        background: url("../common_image/aroow-green.svg") no-repeat center / contain;
    }
}
/* アンカーリンクボタン */
.anchor-area {
    margin: 120px 0;
}
.anchor-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 22px;
}
.anchor-btn a {
    width: auto;
    background: var(--bg-white);
    color: var(--main-font-color);
    border: 2px solid var(--gray-02);
}
.anchor-btn a::after {
    background: url("../common_image/arrow-white.svg") no-repeat center / contain;
    transform: rotate(90deg);
}
@media (min-width: 600px) {
    .anchor-btn a:hover {
        color: var(--green-02);
        border: 2px solid var(--green-02);
    }
}
/*--------------------------------
 レイアウト
---------------------------------*/
.container_narrow {
    max-width: var(--container-narrow);
    margin-inline: auto;
    padding: 0 var(--container-padding);
}
@media screen and (max-width: 1100px) {
    .container_narrow {
        padding: 0 5%;
    }
}
.container_wide {
    max-width: var(--container-wide);
    margin-inline: auto;
    padding: 0 var(--container-padding);
}
@media screen and (max-width: 1450px) {
    .container_wide {
        padding: 0 5%;
    }
}
.flex {
    display: flex;
    align-items: center;
}
.top-section {
    padding: 120px 0;
}
.top-section:first-child {
    padding-top: 140px;
}
.top-section:last-child {
    padding-bottom: 120px;
}
.p-text {
    margin-bottom: 70px;
}
.sp-only {
    display: none;
}
.pc-only {
    display: block;
}
@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }
    .pc-only {
        display: none;
    }
}
/*--------------------------------
 マウスオーバーエフェクト
---------------------------------*/
.opacity-link {
    transition: opacity .3s;
}
@media screen and (min-width : 601px) {
    .opacity-link:hover {
        opacity: 0.6;
    }
}
/*--------------------------------
 見出し共通
---------------------------------*/
.top-h2 {
    display: flex;
    flex-direction: column;
    row-gap: 19px;
    position: relative;
    margin-bottom: 42px;
    padding-top: 60px;
}
.top-h2>h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--sub-font-color);
    line-height: 1;
}
.top-h2>p {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--gray-01);
}
.top-h2::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 30px;
    height: 12px;
    background-image: url(../common_image/common-h2.svg);
    background-size: contain;
    top: 0;
    left: 0;
}
.common-h2 {
    flex-direction: row;
    align-items: flex-end;
    gap: 42px;
    flex-wrap: wrap;
}
.l-h3 {
    color: var(--sub-font-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.4px;
    margin-bottom: 18px;
}
.l-h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.8px;
}
.l-h4-under {
    border-bottom: 3px solid var(--gray-02);
    position: relative;
    padding-bottom: 9px;
}
.l-h4-under:after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: 3px solid #45644C;
    bottom: -3px;
    width: 20%;
}
.l-h3-curtain {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.4px;
    line-height: 3;
    color: var(--sub-font-color);
    margin-bottom: 10px;
}
.l-h3-curtain .text__bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 72px;
    left: 0;
    top: 0;
    inset: 0;
    z-index: 10;
    background: #26aa45;
    transform-origin: left;
    transform: scaleX(0);
}
.l-h3-curtain .text__word {
    opacity: 0;
}
/*--------------------------------
 ローディング背景
---------------------------------*/
/* 単色プレローダー */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-01);
    /* 単色（変更可） */
    z-index: 9999;
    opacity: 1;
    pointer-events: none;
}
/*--------------------------------
 GSAPアニメーション
---------------------------------*/
.js--time1,
.js--time2,
.js--time3 {
    opacity: 0;
}
/*--------------------------------
 テーブル
---------------------------------*/
.table1 {
    width: 100%;
    border-spacing: 0 15px;
    margin-bottom: 40px;
    border-collapse: collapse;
}
.table1 th,
.table1 td {
    padding: 27px 30px;
    border-top: 1px solid #a1a1a1;
    border-bottom: 1px solid #a1a1a1;
}
.table1 th {
    text-align: left;
    width: 27%;
    font-weight: 700;
    background: rgba(93, 166, 110, 0.2);
}
/*--------------------------------
 リスト
---------------------------------*/
.ul-list li {
    position: relative;
    margin-left: 1.5em;
}
.ul-list li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #45644c;
    top: 15px;
    left: -20px;
    transform: translate(-50%, -50%);
}
.ol-list {
    counter-reset: number;
}
.ol-list li {
    position: relative;
    margin-left: 1.5em;
    padding-left: 0.7em;
    margin-bottom: 0.5em;
}
.ol-list li:last-child {
    margin-bottom: 0;
}
.ol-list li::before {
    counter-increment: number;
    content: counter(number);
    position: absolute;
    top: 6px;
    left: -20px;
    width: 19px;
    height: 19px;
    border: 1px solid #45644C;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    color: #45644c;
}
/*--------------------------------
 header
---------------------------------*/
header {
    width: 95%;
    padding: 23px 30px;
    margin: 1% 3%;
    background-color: var(--bg-white);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 999;
    transition: 0.3s;
}
/* active付与後の変化 */
.header--active {
    padding: 15px 30px;
    transition: 0.3s;
    box-shadow: 0px 4px 25px 0px rgba(42, 64, 47, 0.4);
}
header .logo a img {
    transition: 0.3s;
    vertical-align: baseline;
    filter: invert(21%) sepia(4%) saturate(3388%) hue-rotate(81deg) brightness(95%) contrast(91%);
}
header .nav-list {
    display: flex;
    align-items: center;
    gap: 39px;
}
@media screen and (max-width: 1100px) {
    header .nav-list {
        gap: 28px;
    }
}
header .nav-list a {
    color: var(--sub-font-color);
    font-weight: 700;
}
header .nav-list a.nav-link {
    display: inline-block;
    position: relative;
    transition: .3s;
}
header .nav-list a.nav-link:after {
    position: absolute;
    bottom: -22px;
    left: 50%;
    content: "";
    width: 0;
    height: 3px;
    transition: .3s;
    transform: translateX(-50%);
}
@media screen and (min-width : 999px) {
    header .nav-list a.nav-link:hover::after {
        width: 100%;
        background: var(--green-01);
    }
}
header .nav-item-tel>a {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 10px 28px;
    border-radius: 3px;
    color: var(--bg-white);
    transition: .3s;
    ;
}
@media screen and (min-width : 601px) {
    header .nav-item-tel>a:hover {
        background: var(--bg-white);
        color: var(--accent-color);
    }
}
/* PC表示の時の高さ調整 */
header .btn-menu {
    display: none;
}
/* spのみnavにTEL番号 */
header .gnav-sp-only {
    display: none;
}
@media screen and (min-width : 999px) {
    header .nav-list a.nav-current {
        position: relative;
    }
    header .nav-list a.nav-current::after {
        position: absolute;
        bottom: -25px;
        left: 50%;
        content: "";
        width: 0;
        height: 3px;
        transition: .3s;
        transform: translateX(-50%);
        width: 100%;
        background: var(--green-01);
    }
}
/*--------------------------------
 トップぺージ
---------------------------------*/
/* TOP_メインビジュアル */
.top-wrapper .main-visual {
    width: 100vw;
    height: 100vh;
    position: relative
}
.main-visual-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-green);
    z-index: 1;
    pointer-events: none;
    transform: translateX(-100%);
    opacity: 0;
}
.top-wrapper .main-visual .main-visual-img img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translateX(-100%);
    opacity: 0;
}
.top-wrapper .main-visual .main-visual-text,
.top-wrapper .main-visual .main-visual-recruit {
    position: absolute;
    z-index: 3;
    bottom: 10%;
}
.top-wrapper .main-visual .main-visual-recruit {
    right: 3%
}
.top-wrapper .main-visual .main-visual-text {
    font-size: 64px;
    letter-spacing: 5.8px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--sub-font-color);
    left: 0%;
}
@media screen and (max-width: 1100px) {
    .top-wrapper .main-visual .main-visual-text {
        font-size: 58px;
    }
}
.top-wrapper .main-visual .main-visual-text .catch-text span {
    display: inline-block;
    box-decoration-break: clone;
    background: var(--bg-white);
    padding: 0 1.4em;
    opacity: 0;
    transform: translateX(-50px);
}
.top-wrapper .main-visual .main-visual-text .catch-text span.line1 {
    margin-bottom: 0.4em;
}
.main-visual-recruit {
    opacity: 0;
    transform: translateX(50px);
}
.top-wrapper .main-visual .main-visual-recruit .btn-white a {
    transition: all .3s;
    box-shadow: 0px 4px 25px 0px rgba(42, 64, 47, 0.4);
}
@media screen and (min-width : 601px) {
    .top-wrapper .main-visual .main-visual-recruit .btn-white a:hover {
        transform: translate(0px, -5px);
        box-shadow: 0px 4px 25px 0px rgba(42, 64, 47, 1);
    }
}
/* TOP_会社概要 */
.top-about {
    position: relative;
}
.top-about-bg {
    position: absolute;
    bottom: 80px;
    background: linear-gradient(146deg, rgba(71, 111, 80, 1) 0%, rgba(93, 166, 110, 1) 23%, rgba(71, 111, 80, 1) 60%, rgba(93, 166, 110, 1) 100%);
    width: 100%;
    height: 350px;
}
.top-about .common-h2 {
    margin-bottom: 0px;
}
.top-about .flex {
    justify-content: space-between;
    margin-bottom: 24px;
}
.top-about .flex .flex-text,
.top-result .flex .flex-text,
.top-recruit .flex .flex-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--sub-font-color);
}
.top-about .btn01 a {
    margin-left: auto;
}
/* 流れる文字 */
.text-flowing {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    top: -200px;
    z-index: -1;
}
.double-content-wrap {
    display: flex;
    width: max-content;
    animation: loop-text 90s linear infinite;
}
.double-content {
    font-size: 275px;
    font-weight: 700;
    letter-spacing: 0.05em;
    /* color: #ededed; */
    background: linear-gradient(180deg, #a4d5b0 41%, #598563 57%, #719c7b 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    opacity: 0.2;
    letter-spacing: 0;
    white-space: nowrap;
    padding-right: 20px;
}
@keyframes loop-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* 流れる文字_end */
.top-about-list {
    margin-top: -220px;
}
.about-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.about-flex-item {
    flex: 0 0 23%;
    box-sizing: border-box;
    margin-bottom: 60px;
}
.about-flex-item figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-flex-item-width {
    flex: auto;
    width: 100%;
}
.about-flex-item-width figure {
    position: relative;
    display: inline-block;
}
.about-flex-item-width figure figcaption {
    position: absolute;
    left: 30px;
    bottom: 22px;
    width: 20%;
    /* color: var(--bg-white);
    text-shadow: 0px 0px 20px rgba(0, 101, 50, 1); */
    z-index: 2;
}
/* 画像ラッパー（アスペクト比・拡大制御用） */
.img-wrap {
    width: 100%;
    aspect-ratio: 2 / 2;
    overflow: hidden;
    transition: transform 0.5s ease, filter 0.5s ease;
}
/* img 要素自体の見た目 */
.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.about-flex-item-width .img-wrap {
    aspect-ratio: 326 / 109;
    position: relative;
}
.about-flex-item-width .img-wrap::before {
    /* content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: var(--gradient-green);
    z-index: 2;
    pointer-events: none; */
}
@media screen and (min-width: 600px) {
    .about-flex-item a:hover .img-wrap img {
        transform: scale(1.1);
        filter: blur(2px);
        cursor: pointer;
    }
}
/* figcaption の見た目 */
.about-flex-item figcaption {
    margin-top: 24px;
    font-weight: 700;
    text-align: left;
    transition: 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
@media screen and (min-width: 600px) {
    .about-flex-item a:hover figcaption {
        opacity: 0.5;
    }
    .about-flex-item-width a:hover figcaption {
        opacity: 0.5;
    }
}
/* TOP_実績取組 */
.top-result .flex {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 67px;
}
.top-result .flex .flex-text {
    color: var(--main-font-color);
}
.top-result-flex {
    display: flex;
    gap: 58px;
}
.top-result-flex .img-area,
.top-result-flex .text-area {
    width: 50%;
}
.top-result-flex .text-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top-result-flex .text-area .btn01 a {
    margin-left: auto;
}
.top-result-flex .text-area>ul {
    margin-top: 54px;
}
@media screen and (max-width: 1100px) {
    .top-result-flex .text-area>ul {
        margin-top: 0px;
    }
}
.top-result-flex .text-area>ul a {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-result-flex .text-area>ul li {
    margin-bottom: 42px;
    ;
}
.top-result-flex .text-area>ul li:last-child {
    margin-bottom: 0;
}
/* マウスオーバ―リンクボタン */
.link-btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-bottom: 24px;
}
/* グレーのベースライン */
.link-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: var(--gray-02);
    border-radius: 3px;
}
.link-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: var(--green-02);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
    border-radius: 3px;
}
/* ホバー時：左から右へ伸びる */
.link-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}
/* ホバーを外したとき：右から左に戻る */
.link-btn:not(:hover)::after {
    transform-origin: right center;
}
/* TOP_求人情報 */
.top-wrapper .top-recruit {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
}
.top-recruit-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-green2);
    z-index: 1;
    pointer-events: none;
}
.swiper-recruit .swiper-wrapper .swiper-slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
.swiper-recruit .swiper-wrapper {
    transition-timing-function: linear;
}
.top-recruit-contents {
    position: absolute;
    z-index: 1;
    top: 23%;
    right: 16%;
    background: var(--bg-white);
    padding: 41px;
    border-radius: 10px;
    max-width: 457px;
    width: 90%;
    aspect-ratio: 457 / 508;
}
.top-recruit-contents .flex {
    flex-direction: column;
    align-items: flex-start;
}
.top-recruit .flex .flex-text {
    color: var(--main-font-color);
    margin-bottom: 64px;
}
/*--------------------------------
 CTA
---------------------------------*/
.cta .text-flowing {
    top: -150px;
}
.cta-contents {
    background: var(--green-02);
    border-radius: 10px;
    color: var(--bg-white);
    padding: 85px 60px;
    margin-top: -340px;
    position: relative;
    z-index: 2;
}
.cta-contents .flex {
    align-items: flex-end;
    gap: 74px;
}
.cta-contents .cta-left,
.cta-contents .flex-text {
    width: 50%;
}
.cta-contents .top-h2 h2,
.cta-contents .cta-left p {
    color: var(--bg-white);
}
.cta-contents .cta-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
}
.cta .top-h2::before {
    background-image: url(../common_image/common-h2-white.svg);
}
.cta-btn {
    color: var(--bg-white) !important;
    background: transparent;
    border: 2px solid var(--bg-white);
    border-radius: 2px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    transition: .3s;
}
.cta-form {
    display: flex;
    justify-content: space-between;
}
.cta-form::after {
    display: inline-block;
    width: 27px;
    height: 27px;
    content: "";
    top: 0;
    right: 0;
    background: url("../common_image/arrow-white.svg") no-repeat center / contain;
}
.cta-tel,
.cta-form {
    position: relative;
}
.cta-tel span,
.cta-form span {
    padding-left: 3em;
    font-size: 18px;
    font-weight: 600;
}
.cta-tel:before,
.cta-form:before {
    position: absolute;
    content: "";
    width: 27px;
    height: 27px;
    display: inline-block;
    background-size: contain;
    filter: invert(100%) sepia(97%) saturate(12%) hue-rotate(171deg) brightness(102%) contrast(104%);
}
.cta-tel:before {
    background: url(../common_image/icon-tel.svg) no-repeat;
}
.cta-form:before {
    background: url(../common_image/icon-mail.svg) no-repeat;
}
.cta dl dt {
    margin-bottom: 6px;
}
.cta dl dd:first-of-type {
    margin-bottom: 31px;
}
@media screen and (min-width: 600px) {
    .cta-btn:hover {
        color: var(--green-02) !important;
        background: var(--bg-white);
    }
    .cta-tel:hover::before,
    .cta-form:hover::before {
        filter: invert(53%) sepia(5%) saturate(2634%) hue-rotate(82deg) brightness(107%) contrast(107%);
    }
    .cta-form:hover::after {
        background: url("../common_image/aroow-green.svg") no-repeat center / contain;
    }
}
/*--------------------------------
 footer
---------------------------------*/
.footer-contents {
    background: var(--sub-font-color);
    color: var(--bg-white);
    padding: 260px 0 66px 0;
    margin-top: -160px;
}
footer .footer-logo img {
    filter: invert(100%) sepia(0%) saturate(7474%) hue-rotate(177deg) brightness(97%) contrast(108%);
}
.footer-sitemap a {
    color: var(--bg-white);
    font-weight: 700;
}
.footer-sitemap dl dd a {
    font-weight: 400;
}
.footer-sitemap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    padding: 0;
    margin: 0;
    padding: 10px 0 69px 0;
}
.footer-sitemap ul li {
    position: relative;
}
.footer-sitemap ul li::after {
    content: "｜";
    margin: 15px;
    color: rgba(255, 255, 255, 50);
}
.footer-sitemap ul li:last-child::after {
    content: "";
    margin: 0;
}
.footer-sitemap dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 36px;
}
.footer-sitemap dt {
    width: 8%;
}
.footer-sitemap dd {
    width: 92%;
}
.footer-contents .flex {
    align-items: flex-start;
    justify-content: space-between;
}
/* マップアイコン */
.map-icon {
    color: var(--bg-white);
    font-weight: 700;
    text-decoration: underline;
    position: relative;
    padding-left: 24px;
    margin-left: 0.8em;
}
.map-icon::before {
    position: absolute;
    top: 2px;
    left: 0;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../common_image/icon-map.svg);
    background-size: contain;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(201deg) brightness(106%) contrast(106%);
}
.footer-contents address {
    margin-bottom: 23px;
}
footer .copy {
    font-size: 13px;
    font-weight: 300;
    text-align: right;
}
/*--------------------------------
 ページトップ
---------------------------------*/
.page-top {
    display: none;
    position: fixed;
    right: 60px;
    bottom: 60px;
    z-index: 2;
}
.page-top__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    background-color: var(--bg-white);
    box-shadow: 0 0 10px 0 rgba(0, 101, 50, 0.2);
    cursor: pointer;
    transition: all .3s;
}
.page-top__link img {
    transform: rotate(-90deg);
}
@media screen and (min-width: 600px) {
    .page-top__link:hover {
        transform: translate(0px, -5px);
    }
}
/*--------------------------------
 下層ぺージ_共通
---------------------------------*/
/* 下層_メインビジュアル */
.lower-main-visual {
    width: 100vw;
    height: 80vh;
    position: relative;
    color: var(--bg-white);
}
.lower-main-visual-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-green);
    z-index: 1;
    pointer-events: none;
}
.lower-main-visual img {
    width: 100vw;
    height: 80vh;
    object-fit: cover;
}
.lower-mv-h1,
.breadcrumb {
    position: absolute;
    z-index: 2;
    text-shadow: 0px 4px 25px rgba(42, 64, 47, 0.25);
}
.lower-mv-h1 {
    bottom: 24%;
    padding-left: 5%;
}
.lower-mv-h1 h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}
.lower-mv-h1 p {
    font-size: 24px;
    font-weight: 600;
}
/* パンくずリスト */
.breadcrumb {
    right: 0;
    bottom: 10%;
    padding-right: 5%;
}
.breadcrumb__list ol {
    display: flex;
}
.breadcrumb__list li {
    letter-spacing: 0.05em;
}
.breadcrumb__list li:after {
    content: '>';
    padding: 0 1.4em;
}
.breadcrumb__list li:last-child:after {
    content: '';
    padding: 0;
}
.breadcrumb__list li a {
    color: var(--bg-white);
    text-decoration: underline;
}
.lower-section {
    margin: 120px 0;
}
.lower-section .text {
    margin-bottom: 18px;
}
/* 404 */
.heading-error {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 45px;
    color: var(--sub-font-color);
}
.text-error {
    margin-bottom: 73px;
}
/*--------------------------------
 下層ぺージ
---------------------------------*/
/* 下層_contact_お問い合わせ */
.l-contact .desc {
    margin-bottom: 120px;
}
.timeline-003 {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 76px auto;
    width: 85%;
}
.timeline-003 li {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #969da3;
}
.timeline-003 li.prev,
.timeline-003 li.current {
    color: var(--green-02);
}
.timeline-003 li::before {
    display: inline-block;
    width: 27px;
    height: 27px;
    margin-bottom: 16px;
    content: '';
    border: 1px solid #d6dde3;
    /* ◎の外側の線 */
    border-radius: 50%;
    background-color: #fff;
    /* ◎の中は白 */
}
.timeline-003 li.prev::before,
.timeline-003 li.current::before {
    background-color: var(--green-02);
    /* 中の●を緑に */
    box-shadow: 0 0 0 4px #fff inset;
    /* 白の隙間を作成 */
    border: 1px solid var(--green-02);
}
.timeline-003 li:not(:last-child)::after {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 3px;
    background-color: #d6dde3;
    content: '';
}
.timeline-003 li.current::before,
.timeline-003 li.prev::after {
    border-color: var(--green-02);
    /* 線の色を変える */
    background-color: #5da66e;
}
/* form */
/* メールフォーム */
.form .form__item .form__title {
    display: flex;
    font-weight: 700;
    width: 100%;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 9px;
    flex-wrap: wrap;
}
.form .form__item {
    display: flex;
    align-items: center;
    /* padding: 35px 0px; */
    column-gap: 25px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 40px;
}
.form .form__require {
    font-size: 13px;
    font-weight: 500;
    color: var(--bg-white);
    background: var(--accent-color);
    padding: 1px 7px;
    /* margin-right: 15px; */
}
.form .form__note {
    padding-left: 32px;
    font-weight: normal;
}
.agree_btn {
    margin: 0 auto;
    margin-top: 20px;
}
/* チェックボタン */
/* チェックボックスを非表示にして、ラベルでデザイン */
.agree_btn input[type="checkbox"] {
    display: none;
}
/* ラベル全体のベース */
.agree_btn label {
    position: relative;
    padding-left: 37px;
    /* チェックボックス分の余白 */
    cursor: pointer;
    line-height: 1.5;
    color: var(--main-font-color);
    display: flex;
    align-items: center;
}
/* □の部分を作成 */
.agree_btn label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 1px solid #d6dde3;
    border-radius: 1px;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
/* チェックマーク */
.agree_btn label::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 9px;
    height: 16px;
    border-right: 3px solid var(--green-02);
    border-bottom: 3px solid var(--green-02);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}
/* チェックが入ったときにマークを表示 */
.agree_btn input[type="checkbox"]:checked+label::after {
    opacity: 1;
}
/* ホバー時のアクセント（任意） */
.agree_btn label:hover::before {
    background-color: #f3f8f4;
    /* 薄い緑背景 */
}
/* チェックボタン_end */
.form .form__text {
    width: 100%;
    display: inline-block;
    padding: 18px 20px;
    border: 1px solid transparent;
    background: rgba(93, 166, 110, 0.1);
}
.form input {
    font-size: 16px;
    color: var(--main-font-color);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: 2px solid var(--green-02);
}
::placeholder {
    letter-spacing: 0.05em;
    color: rgba(66, 66, 66, 0.5);
}
/* 旧Edge対応 */
::-ms-input-placeholder {
    letter-spacing: 0.05em;
    color: rgba(66, 66, 66, 0.5);
}
/* ラジオボタン */
.form__item .form__radio {
    margin-right: 1em;
}
.form__radio-group {
    display: flex;
    flex-wrap: wrap;
    row-gap: 6px;
}
.form__item .form__radio label {
    cursor: pointer;
}
.form__item input[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #d6dde3;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    margin-right: 9px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    margin-bottom: 0.2em;
}
.form__item input[type="radio"]::before {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--green-02);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid var(--green-02);
}
.form__item input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
/* ラジオボタン_end */
.form__item .text01 {
    margin-bottom: 18px;
}
.form .form__textarea {
    display: inline-block;
    padding: 20px 20px;
    width: 100%;
    height: 230px;
    border: 1px solid transparent;
    background: rgba(93, 166, 110, 0.1);
    line-height: 1.5;
}
.form textarea {
    font-size: 100%;
    color: var(--main-font-color);
}
.form .ninsho_area {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.form .ninsho_area>img {
    max-width: 400px;
    height: auto;
}
.form .ninsho_area .ninsho_gazo {
    display: inline-block;
    padding: 18px 20px;
    border: 1px solid transparent;
    margin-top: 10px;
    background: rgba(93, 166, 110, 0.1);
}
/* 下層_プライバシーポリシー */
.policy-area>.text01 {
    margin-bottom: 50px;
}
.scroll-area {
    width: 100%;
    height: 300px;
    color: var(--sub-color);
    padding: 30px 48px;
    overflow: auto;
    border: 1px solid var(--gray-02);
}
.policy-section {
    margin-bottom: 40px;
}
.policy-section>h3 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 9px;
    margin-bottom: 18px;
    background-image: linear-gradient(90deg, #45644c 0 20%, #e9e9e9 20%);
    background-repeat: no-repeat;
    background-size: 100% 10%;
    background-position: bottom;
}
.policy-section .ul-list {
    margin-top: 10px;
}
.policy-section .ul-list li {
    margin-left: 1.4dem;
}
.policy-section .ul-list li::before {
    background-color: var(--sub-color);
    left: -1.5%;
}
.policy-section a:link {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: underline;
}
/* submit_CSS初期 */
.form__btn {
    text-align: center;
    margin-top: 18px;
}
.form__btn .btn01 span {
    font-size: 16px;
    cursor: pointer;
}
/* submit_CSS初期_end */
/* 下層_about_会社概要 */
.more-lower-section {
    margin: 60px 0;
}
.l-about .lower-section .main-img {
    margin-bottom: 24px;
}
.l-about .lower-section:nth-child(odd),
.l-result .lower-section:nth-child(even) {
    background: rgba(233, 233, 233, 0.3);
    padding: 120px 0;
}
#information .map-icon {
    color: #45644C;
}
#information .map-icon::before {
    filter: invert(36%) sepia(25%) saturate(468%) hue-rotate(81deg) brightness(91%) contrast(92%);
}
/* 下層_about_沿革 */
.timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 16px;
}
.timeline-list-item .date {
    width: 14%;
    /* padding: 0 0 0 20px; */
    font-size: 33px;
    color: var(--green-02);
    font-weight: 700;
    border-right: 3px solid var(--gray-02);
    padding-right: 10px;
}
.timeline-list-item .content {
    position: relative;
    width: 86%;
    margin: 0 20px 30px 39px;
    background: var(--bg-white);
    padding: 27px 30px;
    border-radius: 12px;
}
.timeline-list-item .content .content-title {
    font-weight: 700;
    margin-bottom: 21px;
}
.timeline-list-item .content::before {
    content: "";
    position: absolute;
    top: 19px;
    left: -48px;
    width: 15px;
    height: 15px;
    background-color: var(--green-02);
    border-radius: 10px;
}
/* カードコンテナー */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
}
.ignore {
    display: contents;
}
.card {
    grid-row: span 3;
    display: grid;
    grid-template-rows: subgrid;
    gap: 0.6rem;
}
/* card_end */
#awards .card {
    grid-row: span 2;
}
#awards .open-area {
    margin-bottom: 30px;
}
.card dl {
    font-size: 14px;
}
.card dl dt {
    font-weight: 700;
    line-height: 1.2;
}
.card dl dd {
    margin-bottom: 12px;
}
/* 続きを見る */
.readmore {
    font-weight: 700;
    font-size: 16px;
    margin: 70px auto 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 29px;
    width: 270px;
    background: var(--green-02);
    color: var(--bg-white);
    border: 2px solid var(--green-02);
    border-radius: 3px;
    padding: 17px 30px;
    transition: .3s;
}
.readmore:after {
    content: "";
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url("../common_image/arrow-white.svg") no-repeat center / contain;
    transform: rotate(90deg);
}
@media (min-width: 600px) {
    .readmore:hover {
        opacity: 0.8;
    }
}
.readmore.on-click:after {
    transform: rotate(270deg);
}
.readmore .open {
    display: block;
}
.readmore.on-click .open {
    display: none;
}
.readmore .close {
    display: none;
}
.readmore.on-click .close {
    display: block;
}
.card__image-about {
    position: relative;
    aspect-ratio: 620 / 465;
    overflow: hidden;
}
.card__image-about::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(60, 130, 90, 0.35);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.card__image-about img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    transform-origin: center center;
}
@media screen and (min-width: 600px) {
    .l-about .grid-container .card:hover .card__image-about img{
        transform: scale(1.1);
    }
        .l-about .grid-container .card:hover .card__image-about::after {
        opacity: 1;
    }
}
/* 重機スライダー */
.machine-caption {
    position: relative;
    display: inline-block;
    /* width: auto; */
}
.machine-caption figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0.5em 2em;
    color: var(--bg-white);
    background: var(--accent-color);
}
.slider-thumbnail .swiper-slide {
    opacity: .5;
    transition: opacity .5s;
    width: calc(100% / 4);
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}
/* レイアウトのためのスタイル */
.swiper-slider {
    max-width: 700px;
    width: 100%;
}
.swiper-slide img {
    height: auto;
    width: 100%;
}
.slider-thumbnail {
    max-width: 700px;
    width: 100%;
}
.swiper-slide-container {
    position: relative;
    max-width: 700px;
    margin-inline: auto;
}
/* スライダー矢印 */
.swiper-slide-container .swiper-button-prev,
.swiper-slide-container .swiper-button-next {
    width: 55px;
    height: 55px;
}
.swiper-slide-container .swiper-button-prev::after,
.swiper-slide-container .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    width: 55px;
    height: 55px;
    margin: auto;
}
.swiper-slide-container .swiper-button-prev::after {
    background-image: url(../common_image/about/arrow-slider-prev.svg);
}
.swiper-slide-container .swiper-button-next::after {
    background-image: url(../common_image/about/arrow-slider-next.svg);
}
/* 前への矢印 */
.swiper-slide-container .swiper-button-prev {
    left: -30px;
}
/* 次への矢印 */
.swiper-slide-container .swiper-button-next {
    right: -30px;
}
.vehicle-area {
    background: #eee;
    padding: 4rem 0;
    margin-top: 80px;
    border-radius: 20px;
}
.vehicle-area h3 {
    color: var(--sub-font-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.4px;
    margin-bottom: 18px;
    text-align: center;
}
/* sdgs */
.flex-item>img {
    object-fit: cover;
    width: 50%;
    aspect-ratio: 225 / 139;
}
.flex-item {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    align-items: stretch;
}
.sdgs-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sdgs-icon {
    display: flex;
    gap: 30px;
}
.article {
    margin-bottom: 54px;
}
/* result_実績取組 */
.read {
    margin: 120px 0;
}
.read .flex {
    position: relative;
    align-items: flex-start;
    gap: 27px;
}
.read figure {
    padding-top: 74px;
}
.read figure img {
    max-width: 535px;
    height: auto;
}
.read figure figcaption {
    position: absolute;
    top: 0;
    left: 374px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 4px;
}
.read figure figcaption span {
    background: #26aa45;
    color: #fff;
    padding: .2em .5em;
    display: inline-block;
    margin-bottom: 0.1em;
}
.read .read-text {
    margin-top: 27%;
}
.read .read-text p:first-child {
    margin-bottom: 26px;
}
@media screen and (max-width: 1100px) {
    .read .read-text {
        margin-top: 30%;
    }
}
.l-result .anchor-list {
    grid-template-rows: none;
}
.l-result .grid-container {
    margin-top: 60px;
}
.l-result .grid-container .card {
    justify-items: center;
    grid-row: span 2;
}
.card__image {
    position: relative;
    aspect-ratio: 620 / 384;
    overflow: hidden;
}
.card__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    transform-origin: center center;
}
.card__image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background-color: #26aa45;
    background-image: url(../common_image/result/icon-expansion.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.6em;
    cursor: pointer;
}
@media screen and (min-width: 600px) {
    .l-result .grid-container .card:hover .card__image img{
        transform: scale(1.1);
    }
    .l-result .grid-container .card:hover p {
        color: var(--green-02);
    }
}
.l-result .grid-container .card p {
    font-size: 18px;
    font-weight: 700;
    transition: 0.5s ease;
}
#snowremoval .sub-text,
#initiatives .sub-text {
    margin-top: 30px;
    margin-bottom: 60px;
}
/* 下層_recruit_求人情報 */
.l-recruit .read .read-text {
    margin-top: 21%;
}