@charset 'utf-8';

/* ===========================
   Recruit Page — Base
   =========================== */

/* ナビゲーション：recruit ページでは常に白背景で固定 */
.recruit-page .main-nav {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 15px 0 7px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
}

/* ===========================
   Hero Section
   =========================== */
.recruit-hero {
    position: relative;
    padding: 260px 0 180px;
    background-image: url('../images/banner_background.jpg');
    background-size: cover;
    background-position: center center;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.recruit-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 24, 0.68);
}

.recruit-hero .container {
    position: relative;
    z-index: 1;
}

.recruit-hero-label {
    font-size: 11px;
    letter-spacing: 0.35em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.recruit-hero h1.recruit-hero-title {
    font-size: 58px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    font-family: 'Varela Round', sans-serif;
    letter-spacing: 4px;
    line-height: 1.2;
}

.recruit-hero-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.6;
}

/* ===========================
   Message Section
   =========================== */
.recruit-message {
    background-color: #f6f3f1;
    padding: 0 0 80px;
}

.recruit-message-text {
    font-size: 16px;
    line-height: 2.1em;
    color: #5a5d62;
    text-align: center;
}

/* ===========================
   Open Positions (Cards)
   =========================== */
.recruit-jobs {
    background-color: #fff;
    padding: 0 0 100px;
}

.recruit-cards-wrapper {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.recruit-card {
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    background: #26272d;
    color: #fff;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s;
}

.recruit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.recruit-card-inner {
    padding: 44px 40px;
}

.recruit-card-type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(21, 127, 194, 0.25);
    color: #6bc4f5;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.recruit-card-type--fulltime {
    background: rgba(111, 199, 84, 0.2);
    color: #8de070;
}

.recruit-card h3.recruit-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.45;
}

.recruit-card-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.recruit-card-meta {
    margin-bottom: 32px;
}

.recruit-card-meta li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
    line-height: 1.5;
}

.recruit-card-meta li i {
    margin-right: 8px;
    color: #157fc2;
    width: 14px;
    text-align: center;
}

.recruit-card-btn {
    display: block;
    text-align: center;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.recruit-card-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff !important;
}

/* ===========================
   Job Detail Sections
   =========================== */
.recruit-job-detail {
    padding: 90px 0;
    background: #f6f3f1;
}

.recruit-job-detail--alt {
    background: #f2efed;
}

.recruit-job-header {
    margin-bottom: 56px;
    padding-bottom: 36px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.07);
}

.recruit-job-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 20px;
    background: #157fc2;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.recruit-job-tag--fulltime {
    background: #26272d;
}

h2.recruit-job-title {
    font-size: 26px;
    font-weight: 700;
    color: #26272d;
    font-family: 'Varela Round', sans-serif;
    letter-spacing: 2px;
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1.4;
}

.recruit-job-title-sub {
    font-size: 14px;
    font-weight: 400;
    color: #8c8f94;
    display: block;
    letter-spacing: 0.03em;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

/* Detail body */
.recruit-job-body {
    margin-bottom: 0;
}

.recruit-job-section {
    margin-bottom: 44px;
}

h4.recruit-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #157fc2;
    border-left: 3px solid #157fc2;
    padding-left: 12px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.recruit-list {
    padding-left: 0;
    margin: 0;
}

.recruit-list li {
    font-size: 15px;
    color: #5a5d62;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    line-height: 1.65;
}

.recruit-list li:last-child {
    border-bottom: none;
}

.recruit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 19px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #157fc2;
}

.recruit-list--welcome li::before {
    background: #6fc754;
}

/* Info card (sidebar) */
.recruit-job-info-card {
    background: #fff;
    border-radius: 2px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 80px;
}

dl.recruit-info-list {
    margin-bottom: 28px;
}

dl.recruit-info-list dt {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b0b3b8;
    margin-top: 24px;
}

dl.recruit-info-list dt:first-child {
    margin-top: 0;
}

dl.recruit-info-list dd {
    font-size: 15px;
    color: #26272d;
    font-weight: 600;
    margin: 6px 0 0;
    line-height: 1.65;
}

dl.recruit-info-list dd small {
    display: block;
    font-size: 12px;
    color: #8c8f94;
    font-weight: 400;
    margin-top: 3px;
    line-height: 1.6;
}

.recruit-apply-btn {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding-top: 11px;
}

/* Apply box */
.recruit-job-apply {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 2px solid rgba(0, 0, 0, 0.07);
}

.recruit-apply-text {
    font-size: 15px;
    color: #5a5d62;
    margin-bottom: 24px;
    line-height: 1.8;
}

.recruit-apply-box {
    background: #fff;
    border-radius: 2px;
    padding: 36px 44px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 640px;
}

.recruit-apply-box p {
    font-size: 14px;
    color: #26272d;
    margin-bottom: 10px;
    line-height: 1.8;
}

.recruit-apply-box ul {
    margin: 4px 0 24px 20px;
}

.recruit-apply-box ul li {
    list-style: disc;
    font-size: 14px;
    color: #5a5d62;
    line-height: 2.0;
    padding: 0;
    border: none;
}

.recruit-apply-box ul li::before {
    display: none;
}

.recruit-apply-box .btn {
    margin-top: 8px;
    font-size: 14px;
    padding: 10px 28px;
    height: auto;
}

/* ===========================
   Contact / Inquiry CTA
   =========================== */
.recruit-contact {
    background: #26272d;
    padding: 100px 0;
    color: #fff;
}

.recruit-contact h2 {
    color: #fff;
}

.recruit-contact > .container > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 44px;
    line-height: 1.9;
}

.recruit-contact-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.recruit-contact-btns .btn {
    font-size: 14px;
    padding: 11px 32px;
    height: auto;
    font-weight: 600;
}

.recruit-contact-btns .btn i {
    margin-right: 6px;
}

.recruit-contact-btns .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    border-radius: 30px;
    min-width: 130px;
}

.recruit-contact-btns .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
    .recruit-hero {
        padding: 200px 0 150px;
    }

    .recruit-hero h1.recruit-hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .recruit-hero-sub {
        font-size: 17px;
    }

    .recruit-cards-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .recruit-card {
        max-width: 100%;
    }

    .recruit-job-info-card {
        position: static;
        margin-top: 48px;
    }

    h2.recruit-job-title {
        font-size: 20px;
    }

    .recruit-apply-box {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .recruit-hero {
        padding: 160px 0 120px;
    }

    .recruit-hero h1.recruit-hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .recruit-hero-sub {
        font-size: 15px;
    }

    .recruit-message-text {
        font-size: 15px;
        text-align: left;
    }

    .recruit-card-inner {
        padding: 32px 28px;
    }

    .recruit-job-detail {
        padding: 60px 0;
    }

    .recruit-contact {
        padding: 70px 0;
    }

    .recruit-contact-btns {
        flex-direction: column;
        align-items: center;
    }

    .recruit-contact-btns .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .recruit-hero {
        padding: 140px 0 100px;
    }

    .recruit-hero h1.recruit-hero-title {
        font-size: 26px;
    }

    .recruit-hero-sub {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .recruit-job-header {
        margin-bottom: 36px;
        padding-bottom: 24px;
    }

    .recruit-apply-box {
        padding: 24px 16px;
    }
}
