@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin: 0;
    color: #333;
}

.en {
    font-family: "Montserrat", sans-serif;
}

a:hover {
    text-decoration: none;
}

/* =========================================
   Base & Common
   ========================================= */

/* ユーティリティクラス */
.u-pc-only {
    display: block;
}

.u-sp-only {
    display: none;
}

@media (max-width: 768px) {
    .u-pc-only {
        display: none !important;
    }

    .u-sp-only {
        display: block !important;
    }
}

.wrapper {
    padding: 80px 20px 0;
    position: relative;
    overflow: hidden;
}

.wrapper__inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* 外部リンクアイコン（共通） */
.u-icon-external {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* =========================================
   Header Layout
   ========================================= */
.l-header {
    background-color: #fff;
    width: 100%;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    /* SP時の境界線 */
}

.l-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 上段エリア */
.l-header__upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.l-header__logo img {
    height: 36px;
    width: auto;
    vertical-align: bottom;
}

/* =========================================
   PC Styles (min-width: 769px)
   ========================================= */
@media (min-width: 769px) {

    /* PC用ユーティリティ */
    .l-header__pc-utility {
        display: flex;
        gap: 20px;
    }

    .l-header__utility-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-size: 0.75rem;
        transition: opacity 0.3s;
    }

    .l-header__utility-item:hover {
        opacity: 0.7;
        color: rgb(0, 153, 68);
    }

    .l-header__utility-icon {
        font-size: 1.5rem;
        margin-bottom: 2px;
    }

    /* ドロワー（PCでは通常表示） */
    .l-header__drawer {
        display: block;
        position: static;
        background: none;
        width: auto;
        height: auto;
        border-top: none;
    }

    .l-header__nav-list {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 5px;
        gap: 10px;
    }

    .l-header__nav-item {
        position: relative;
        flex-grow: 1;
        text-align: center;
        border-bottom: 5px solid #8FBD67;
    }

    .l-header__nav-link {
        display: block;
        text-decoration: none;
        color: #034D3F;
        font-weight: bold;
        padding: 15px 0;
        border-radius: 10px 10px 0 0;
        transition: background-color 0.3s, color 0.3s;
    }

    /* PCホバー時 */
    .l-header__nav-item:hover .l-header__nav-link {
        background-color: #04943E;
        /* 濃い緑 */
        color: #fff;
    }

    /* サブメニュー（PC: ドロップダウン） */
    .l-header__sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f9f9f9;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1001;
        text-align: left;
    }

    .l-header__nav-item:hover .l-header__sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .l-header__sub-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .l-header__sub-item {
        border-bottom: 1px solid #eee;
    }

    .l-header__sub-item:last-child {
        border-bottom: none;
    }

    .l-header__sub-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        text-decoration: none;
        color: #333;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }

    .l-header__sub-link:hover {
        background-color: #eee;
        color: #009944;
    }

    .l-header__sub-link:last-child:hover {
        border-radius: 0 0 10px 10px;
    }

    .l-header__sub-arrow {
        font-size: 10px;
        color: #ccc;
    }
}

/* =========================================
   SP Styles (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    /* ハンバーガーボタン (緑の丸枠) */
    .l-header__hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background: #fff;
        border: 2px solid #009944;
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
        gap: 6px;
    }

    .l-header__hamburger-lines {
        position: relative;
        display: block;
        width: 20px;
        height: 2px;
        background-color: #009944;
        left: 13px;
    }

    .l-header__hamburger-lines:nth-child(1) {
        width: 20px;
        margin-right: 8px;
        top: -7px;
    }

    .l-header__hamburger-lines:nth-child(3) {
        width: 16px;
        margin-right: 8px;
        top: 7px;
    }

    /* ドロワーメニュー (全画面固定) */
    .l-header__drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 2000;
        overflow-y: auto;

        /* 隠す設定 */
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }

    /* 開いた状態 */
    .l-header.is-open .l-header__drawer {
        transform: translateX(0);
        visibility: visible;
    }

    .l-header__drawer-inner {
        padding: 20px;
    }

    /* ドロワー内ヘッダー */
    .l-header__drawer-head {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .l-header__drawer-logo img {
        height: 40px;
        width: auto;
    }

    /* 閉じるボタン (緑丸) */
    .l-header__close-btn {
        width: 44px;
        height: 44px;
        background-color: #8FBD67;
        border-radius: 50%;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* SPユーティリティ (4アイコン) */
    .l-header__sp-utility {
        display: flex !important;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .l-header__sp-utility-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #034D3F;
        font-size: 12px;
        width: 25%;
        text-align: center;
    }

    .l-header__sp-utility-icon {
        font-size: 24px;
        margin-bottom: 5px;
        color: #034D3F;
    }

    /* ナビゲーション (縦並び) */
    .l-header__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .l-header__nav-item {
        border-bottom: 1px solid #eee;
    }

    .l-header__nav-link-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        cursor: pointer;
    }

    .l-header__nav-link {
        text-decoration: none;
        color: #034D3F;
        font-weight: bold;
        font-size: 16px;
        flex-grow: 1;
    }

    /* アコーディオンボタン (+) */
    .l-header__accordion-btn {
        width: 24px;
        height: 24px;
        position: relative;
        background: none;
        border: none;
        pointer-events: none;
    }

    .l-header__accordion-btn::before,
    .l-header__accordion-btn::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #034D3F;
    }

    .l-header__accordion-btn::before {
        width: 16px;
        height: 1px;
    }

    /* 横 */
    .l-header__accordion-btn::after {
        width: 1px;
        height: 16px;
        transition: transform 0.3s;
    }

    /* 縦 */

    /* 開いている時: 縦線を倒す */
    .l-header__nav-item.is-active .l-header__accordion-btn::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    /* サブメニュー (SP: アコーディオン) */
    .l-header__sub-menu {
        display: none;
        padding: 0 20px 20px;
    }

    .l-header__nav-item.is-active .l-header__sub-menu {
        display: block;
    }

    .l-header__sub-list {
        list-style: none;
        padding: 0;
    }

    .l-header__sub-item {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .l-header__sub-item:last-child {
        border-bottom: none;
    }

    .l-header__sub-link {
        text-decoration: none;
        color: #333;
        font-size: 14px;
        display: block;
    }
}

/* =========================================
   Main Visual Section
   ========================================= */
.p-mv {
    background-color: #7ab55c;
    padding-top: 40px;
    padding-bottom: 100px;
    overflow: hidden;
}

/* --- イラスト・コピーエリア --- */
.p-mv__visual-area {
    position: relative;
    margin: 0 auto 20px;
}

.p-mv__visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.p-mv__visual-flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    height: 100%;
    gap: 30px;
    margin-bottom: 10px;
    padding: 0 20px;
}

/*.p-mv__visual-flex::after {
    content: "";
    position: absolute;
    background-image: url(../img/top/mv-human.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 360px;
    height: 240px;
    top: 0;
    left: calc(50% - 150px);
    z-index: 1;
}*/

/* 共通：イラスト */
.p-mv__img {
    object-fit: contain;
    transition: transform 0.3s;
    width: calc(100% / 3 - 30px);
}

.p-mv__img--humanarea {
    position: relative;
    text-align: center;
}

.p-mv__img--human {
    position: absolute;
    max-width: 450px;
    bottom: 0;
    right: calc(50% - 225px);
}

.p-mv__copy-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* キャッチコピー */
.p-mv__copy {
    position: absolute;
    top: -330px;
    left: -120px;
    z-index: 3;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.4;
    color: #034D3F;
    /* 濃い緑文字 */
}

/* 行ごとに白背景をつける */
.p-mv__copy-line {
    background-color: #fff;
    padding: 5px 45px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline-block;
    margin-bottom: 5px;
    border-radius: 4px;
}

/* リード文 */
.p-mv__lead {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/*人物の大きさ調整*/
@media (max-width: 1400px) {
    .p-mv__copy {
        top: -270px;
        left: 0;
    }

    .p-mv__img--human {
        max-width: 350px;
        right: calc(50% - 175px);
    }
}

@media (max-width: 1180px) {
    .p-mv__copy {
        top: -200px;
        left: 0;
        font-size: 2rem;
    }
}

@media (max-width: 1060px) {
    .p-mv__img--human {
        max-width: 300px;
        right: calc(50% - 150px);
    }
}

@media (max-width: 900px) {
    .p-mv__copy {
        top: -170px;
        left: 0;
        font-size: 1.6rem;
    }

    .p-mv__img--human {
        max-width: 250px;
        right: calc(50% - 125px);
    }
}

/* スマホ対応：左右の画像を消して中央のみにする */
@media (max-width: 768px) {

    .p-mv__lead {
        font-size: 0.9rem;
        position: relative;
        z-index: 1;
    }

    .p-mv__visual-area {
        height: 300px;
    }

    .p-mv__visual-flex {
        flex-wrap: wrap;
        top: -210px;
    }

    .p-mv__visual-flex::after {
        top: auto;
        bottom: -220px;
        width: 310px;
        height: 210px;
    }

    .p-mv__img {
        width: 100%;
    }

    /*.p-mv__img--left,
    .p-mv__img--right {
        display: none;
    }*/

    /*.p-mv__img--center {
        width: 90%;
        max-width: 350px;
    }*/

    .p-mv__copy {
        font-size: 1.6rem;
        left: 0;
        width: 100%;
        top: 0;
    }

    .p-mv__img--human {
        max-width: 80%;
        right: 8%;
    }

    .p-mv__copy-line {
        padding: 3px 25px;
    }
}

/* --- 検索ボックスエリア --- */
.p-mv__search-area {
    padding: 0 20px;
    position: relative;
    top: -100px;
    margin-bottom: -100px;
}

.p-search-box {
    background-color: #f1f8ee;
    /* 薄い緑色の背景 */
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 40px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.p-search-box__heading {
    font-weight: bold;
    color: #034D3F;
    margin: 0 0 15px 0;
}

/* 上段・下段の行レイアウト */
.p-search-box__row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    /* スマホで折り返す */
}

/* 入力・選択項目の共通スタイル */
.p-search-box__item {
    background: #fff;
    border-radius: 50px;
    /* 丸みのある入力欄 */
    padding: 5px 15px;
    display: flex;
    align-items: center;
    height: 50px;
    flex-grow: 1;
    /* 横幅いっぱいに広げる */
    min-width: 200px;
    box-sizing: border-box;
}

.p-search-box__input,
.p-search-box__select {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    color: #666;
    height: 100%;
}

.p-search-box__select {
    cursor: pointer;
}

/* 職種入力欄の特別スタイル */
.p-search-box__item--keyword {
    flex-grow: 1.5;
    padding-right: 5px;
    /* ボタンとの距離 */
}

.p-search-box__icon,
.p-search-box__icon-sub {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #ccc;
}

/* 緑の「選択」ボタン */
.p-search-box__btn-select {
    position: relative;
    background-color: #009944;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 2px 16px;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    right: 15px;
}

/* オレンジの「検索」ボタン */
.p-search-box__btn-submit {
    background-color: #ff8c42;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 40px;
    height: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.p-search-box__btn-submit:hover {
    opacity: 0.9;
}

/* 下段：絞り込みエリア */
.p-search-box__row--sub {
    margin-bottom: 0;
    justify-content: flex-start;
}

.p-search-box__label {
    font-weight: bold;
    color: #034D3F;
    font-size: 0.9rem;
    margin-right: 10px;
}

.p-search-box__item--mini {
    flex-grow: 0;
    min-width: 150px;
    /* 少し狭く */
    height: 40px;
    /* 高さ低め */
    background: #fff;
}

/* ヤギの装飾アイコン */
.p-search-box__decoration {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 120px;
    z-index: 10;
}

@media (max-width: 768px) {
    .p-search-box__decoration {
        width: 80px;
        bottom: -20px;
        right: -10px;
    }
}

.p-search-box__decoration img {
    width: 80px;
    height: auto;
    border-radius: 20px;
}

/* スマホ用レイアウト調整 */
@media (max-width: 768px) {
    .p-search-box {
        padding: 20px;
    }

    .p-search-box__row {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 20px;
    }

    .p-search-box__item,
    .p-search-box__btn-submit {
        width: 100%;
        min-width: auto;
    }

    .p-search-box__row--sub {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .p-search-box__item--mini {
        flex-grow: 1;
    }
}


/* =========================================
   Component: Button (共通)
   ========================================= */
.c-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #04943E;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 1rem 4rem;
    border-radius: 50px;
    transition: opacity 0.3s;
    gap: 10px;
}

.c-btn-primary:hover {
    opacity: 0.8;
    text-decoration: none;
}

.c-btn-primary__icon {
    font-weight: normal;
}

/* =========================================
   Component: Article Card (共通)
   ========================================= */
.c-article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
    position: relative;
}

.c-article-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.c-article-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: #333;
}

.c-article-card__link:hover {
    text-decoration: none;
}

.c-article-card__content {
    padding: 5rem 1.5rem 1.5rem;
    height: 150px;
    flex-grow: 1;
    position: relative;
}

@media (max-width: 768px) {
    .c-article-card__content {
        height: auto;
    }
}

/* 斜めのバッジ */
.c-article-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    transform: rotate(-15deg);
    background: #fff;
    color: #034D3F;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    z-index: 1;
    padding: 5px;
    border-bottom: 1px solid #034D3F;
}

.c-article-card__badge-label {
    font-size: 0.7rem;
    color: #666;
}

.c-article-card__badge-number {
    font-size: 1.5rem;
    color: #034D3F;
}

.c-article-card__title {
    font-size: 1rem;
    color: #034D3F;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.c-article-card__desc {
    font-size: 0.8rem;
    color: #034D3F;
    line-height: 1.5;
}

.c-article-card__desc p {
    margin: 0;
    display: inline;
}

.c-article-card__image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: auto;
    background-color: #eee;
}

@media (max-width: 768px) {
    .c-article-card__image-wrapper {
        aspect-ratio: auto;
        margin-top: 0;
        background-color: none;
    }
}

.c-article-card__image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    vertical-align: bottom;
}

/* =========================================
   Section: Top Articles
   ========================================= */
.p-top-articles {
    padding: 80px 20px 0;
    /*background-color: #f9f9f9;*/
    position: relative;
    overflow: hidden;
}

.p-top-articles__inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.p-top-articles__header {
    margin-bottom: 40px;
    position: relative;
}

.p-top-articles__label {
    position: relative;
    padding-left: 16px;
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #034D3F;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.p-top-articles__label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1000px;
    transform: translateY(-50%);
    height: 1px;
    background-color: #034D3F;
    width: 100vw;
    transform-origin: left center;
}

@media (max-width: 768px) {
    .p-top-articles__label::before {
        right: 330px;
    }
}

.p-top-articles__title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #034D3F;
    letter-spacing: 0.2em;
}

.p-top-articles__title span {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .p-top-articles__title {
        font-size: 2rem;
    }
}

/* 背景の文字装飾 */
.p-top-articles__decoration-text {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 4rem;
    font-weight: bold;
    color: #034D3F;
    opacity: 0.5;
    line-height: 1;
    text-align: right;
    pointer-events: none;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .p-top-articles__decoration-text {
        font-size: 2.5rem;
        top: 0;
    }
}

/* ヤギのアイコン装飾 */
.p-top-articles__decoration-icon {
    position: absolute;
    right: 20px;
    width: 100px;
    bottom: -140px;
}

@media (max-width: 768px) {
    .p-top-articles__decoration-icon {
        width: 100px;
        top: 60px;
    }
}

.p-top-articles__decoration-icon img {
    width: 100%;
    height: auto;
}

/* 記事リスト（グリッド） */
.p-top-articles__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 130px;
}

/* PC以上のみ：記事カードを階段状にずらす */
@media (min-width: 769px) {

    /* 2番目のカードを少し下げる */
    .c-article-card:nth-child(2) {
        margin-top: 50px;
    }

    /* 3番目のカードをさらに下げる */
    .c-article-card:nth-child(3) {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    .p-top-articles__list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
}

.p-top-articles__btn-area {
    text-align: center;
}


/* =========================================
   Component: Tag (タグ)
   ========================================= */
.c-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 1px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* 濃い緑（正社員など） */
.c-tag--main {
    background-color: #04943E;
}

/* 薄い黄緑（エンジニア・リモートなど） */
.c-tag--sub {
    background-color: #A1DB5D;
    /* 画像に近い色 */
}

/* =========================================
   Component: Job Card (求人カード)
   ========================================= */
.c-job-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.c-job-card:hover {
    transform: translateY(-5px);
}

.c-job-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: #333;
}

.c-job-card__link:hover {
    text-decoration: none;
}

.c-job-card__image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* 少し高さを確保 */
    background-color: #eee;
}

.c-job-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-job-card__content {
    padding: 1rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.c-job-card__tags {
    margin-bottom: 0.5rem;
}

.c-job-card__title {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #04943E;
    /* タイトル緑色 */
}

.c-job-card__info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.c-job-card__info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: #034D3F;
}

.c-job-card__icon {
    margin-right: 0.5rem;
    width: 1.2em;
    text-align: center;
    flex-shrink: 0;
    /* アイコンが潰れないように */
}

/* 下部の「詳細を見る」エリア */
.c-job-card__footer {
    margin-top: auto;
    /* 一番下に配置 */
    text-align: right;
}

.c-job-card__more {
    font-size: 0.9rem;
    color: #FF7A38;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.c-job-card__arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 18px;
    border: 1px solid #FF7A38;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
}

/* =========================================
   Section: Recruit (求人一覧セクション)
   ========================================= */
.p-recruit {
    padding: 80px 20px;
    background-color: #fff;
    /* 背景白 */
}

.p-recruit__inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* リスト（グリッドレイアウト・前回と同様） */
.p-recruit__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .p-recruit__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.p-recruit__btn-area {
    text-align: center;
}

/*ヘッダー*/

/*フッター*/
/* =========================================
   Layout: Footer
   ========================================= */
.l-footer {
    background-color: #8FBD67;
    /* 背景色 */
    color: #034D3F;
    /* 文字色 */
    /* 左上と右上の角丸（画像に合わせて調整） */
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 60px 20px 20px;
    margin-top: 50px;
    /* 前のセクションとの余白 */
}

.l-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* 上部のコンテンツエリア（グリッドレイアウト） */
.l-footer__content {
    display: grid;
    /* PC: ロゴ(250px) + 残りのスペースを4等分 */
    grid-template-columns: 200px repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.l-footer__logo {
    max-width: 200px;
    height: auto;
    vertical-align: bottom;
}

/* ナビゲーション全体（SPでグリッドの親として扱うため display: contents を使う手もあるが今回は個別に制御） */
.l-footer__nav {
    display: contents;
    /* グリッドアイテムを直下のdiv(.l-footer__col)にする */
}

/* 各カラム */
.l-footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* 要素間の余白 */
}

/* 見出し（h3） */
.l-footer__heading {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.l-footer__heading-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.l-footer__heading-link:hover {
    opacity: 0.7;
}

/* 外部リンクアイコンの装飾 */
.l-footer__heading-link--external {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.l-footer__heading-link--external::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23034D3F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* リンクりスト */
.l-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.l-footer__item {
    margin-bottom: 4px;
}

.l-footer__link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.l-footer__link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* コピーライトエリア */
.l-footer__copyright {
    border-top: 1px solid #034D3F;
    /* 薄い線の色 */
    padding-top: 20px;
    margin-top: 20px;
    font-size: 1.2rem;
}

/* =========================================
   Responsive (SP)
   ========================================= */
@media (max-width: 900px) {
    .l-footer__content {
        /* SP: ロゴ1列(全幅) + カラム2列 */
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .l-footer__logo-area {
        grid-column: 1 / -1;
        /* 横幅いっぱいに広げる */
        margin-bottom: 10px;
    }

    /* 角丸を少し小さく */
    .l-footer {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 40px 20px 20px;
    }
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}


/* -----------------------------------------------------------
 * 共通ページヘッダーパーツ
 * ----------------------------------------------------------- */
.c-page-header {
    background-color: #8FBD67;
    /* 背景色 */
    padding: 30px 20px;
    /* 上下の余白（スマホ基準） */
    width: 100%;
}

/* コンテナ（中央寄せ・幅制限） */
.c-page-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* タイトルの白い箱 */
.c-page-header__title-wrapper {
    display: inline-block;
    background-color: #ffffff;
    padding: 10px 30px;
    margin-bottom: 10px;
}

/* タイトルテキスト */
.c-page-header__title {
    display: flex;
    align-items: center;
    color: #034D3F;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.c-page-header__title--span {
    color: #FF8C42;
    padding: 10px 10px 10px 0;
    font-size: 16px;
}

/* 説明テキスト */
.c-page-header__description {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* -----------------------------------------------------------
 * 共通セクション見出しパーツ（修正版）
 * ----------------------------------------------------------- */

/* セクション全体の装飾（必要に応じて） */
.c-section-header {
    padding: 80px 20px 0;
}

/* 英語サブタイトル */
.c-section-header__subtitle {
    position: relative;
    /* 線を配置する基準 */
    display: inline-flex;
    align-items: center;
    color: #034D3F;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 左側に画面端まで伸びるライン */
.c-section-header__subtitle::before {
    content: "";
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    height: 1px;
    background-color: #034D3F;
    opacity: 0.6;
}

/* メインタイトル */
.c-section-header__title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #034D3F;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

/* 説明文 */
.c-section-header__text {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* PCサイズ調整 */
@media screen and (min-width: 769px) {
    .c-section-header__title {
        font-size: 40px;
        margin-left: 0;
        letter-spacing: normal;
    }

    .c-section-header__text {
        font-size: 16px;
    }

    .u-hidden-sp {
        display: inline;
    }

    .c-page-header__title--span {
        font-size: 18px;
    }
}