@charset "utf-8";

/* ===================================================
   RECRUIT 一覧ページ
   ---------------------------------------------------
   共通レイアウト（#header / #pole_area / main.second_page /
   .page_title）はテーマの style.css をそのまま使用。
   このファイルは一覧セクション固有のスタイルのみ。
=================================================== */


/* ---------------------------------------------------
   ページ全体の枠
   余白は他の下層ページ（PRICE / ABOUT など）と同じ
   テーマ標準値に揃える
   テーマの main:not(#top_page, #about2_page) が付ける
   右下の黒枠（10px）はこのページでは使わない
--------------------------------------------------- */
main#recruit_page {
    padding: 120px 0 0 100px;
    border-right: 0;
    border-bottom: 0;
}


/* ---------------------------------------------------
   ページタイトル
   他の下層ページと同様に main 直下に置き、
   main の余白（上120px / 左100px）でそのまま位置を決める
--------------------------------------------------- */
main#recruit_page .page_title {
    margin-bottom: 51px;
}


/* ---------------------------------------------------
   コンテンツ全体のラッパー
   一覧を左右中央寄せ（ページタイトルは main 直下なので対象外）
--------------------------------------------------- */
#recruit_page .recruit-inner {
    width: 920px;
    max-width: 100%;
    /* main の padding はテーマ標準値（下0）で固定のため、
       ページ下の余白はコンテンツ側の margin で確保する */
    margin: 0 auto 100px;
}

/* 920px が収まらなくなったら左右に余白（920 + 左padding100 = 1020px） */
@media only screen and (max-width: 1020px) {
    #recruit_page .recruit-inner {
        padding-right: 3%;
        padding-left: 3%;
    }
}


/* ---------------------------------------------------
   一覧ラッパー
--------------------------------------------------- */
#recruit_page .recruit-list-wrap {
    margin-top: 0;
}


/* ---------------------------------------------------
   リード文
--------------------------------------------------- */
#recruit_page .recruit-lead {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
    font-size: 16px;
}

#recruit_page .recruit-lead-en {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 500;
}


/* ---------------------------------------------------
   募集一覧
--------------------------------------------------- */
#recruit_page .recruit-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

#recruit_page .recruit-list-item + .recruit-list-item {
    border-top: 1px solid #000;
    margin-top: 35px;
    padding-top: 35px;
}

#recruit_page .recruit-list-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#recruit_page .recruit-list-title {
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho Pro", "Hiragino Mincho ProN", serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    white-space: nowrap;
}

#recruit_page .recruit-list-desc {
    font-size: 16px;
    line-height: 1.6;
}


/* ---------------------------------------------------
   MORE DETAIL リンク
--------------------------------------------------- */
#recruit_page .more-detail {
    flex-shrink: 0;
    width: 100px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 500;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
}



/* ===================================================
   SP
=================================================== */
@media only screen and (max-width: 767px) {

    /* 他の下層ページと同じテーマ標準値に揃える
       （PC側の指定を打ち消すため、SPでも明示的に指定する） */
    main#recruit_page {
        padding: 100px 0 0 50px;
    }

    #recruit_page .recruit-inner {
        width: auto;
        margin: 0 0 100px;
        padding-right: 20px;
        padding-left: 0;
    }

    main#recruit_page .page_title {
        margin-bottom: 51px;
    }

    #recruit_page .recruit-lead {
        margin-bottom: 40px;
    }

    #recruit_page .recruit-list-item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 15px;
    }

    #recruit_page .recruit-list-item + .recruit-list-item {
        margin-top: 25px;
        padding-top: 25px;
    }

    #recruit_page .recruit-list-title {
        font-size: 22px;
        white-space: normal;
    }

}
