/* ===================================================================
   page-recruit.css — Recruit ページ固有スタイル
   =================================================================== */

/* -------------------------------------------------------------------
   1. Hero (Recruit)
------------------------------------------------------------------- */
.hero-recruit {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-recruit__bg-text {
    position: absolute;
    top: calc(var(--header-height) + 40px); left: 0;
    font-family: var(--font-en);
    font-size: clamp(120px, 20vw, 320px);
    font-weight: 200;
    color: var(--color-blue-light);
    line-height: 1;
    z-index: -1;
    white-space: nowrap;
    user-select: none;
    letter-spacing: -0.02em;
}

.hero-recruit__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-recruit__content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-recruit { min-height: auto; padding-top: 140px; padding-bottom: 40px; }
}

/* -------------------------------------------------------------------
   2. White Navigation Area (Breadcrumb + Tabs)
------------------------------------------------------------------- */
.white-nav-area {
    background: #fff;
    padding-top: 32px;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

.white-nav-area .breadcrumb {
    margin-bottom: 24px;
}

/* -------------------------------------------------------------------
   3. Recruit Tabs (Capsule Style)
------------------------------------------------------------------- */
.recruit-tabs {
    display: flex;
    justify-content: center;
    background: #F4F7FA;
    padding: 6px;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto 32px;
    position: relative;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    font-family: var(--font-ja);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-radius: 100px;
    background: transparent;
    color: var(--color-text-light);
    border: none;
    transition: var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.tab-btn.is-active {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(43, 112, 214, 0.2);
}

.tab-btn:hover:not(.is-active) {
    color: var(--color-text);
}

@media (max-width: 600px) {
    .tab-btn { padding: 10px 20px; font-size: 13px; }
}

/* -------------------------------------------------------------------
   4. Tab Content Animation
------------------------------------------------------------------- */
.tab-content {
    display: none;
    opacity: 0;
    animation: fadeInTab 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.tab-content.is-active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------------
   5. Requirement Section (募集要項)
------------------------------------------------------------------- */
.requirement {
    background: #F9FBFC;
    padding: 100px 0;
    overflow: hidden;
}

.requirement__lead {
    text-align: center;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 48px;
    color: var(--color-text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.requirement__table-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    max-width: 900px;
    margin: 0 auto 48px;
    border: 1px solid var(--color-border);
}

/* -------------------------------------------------------------------
   6. Requirement Header
------------------------------------------------------------------- */
.req-header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 24px;
}

.req-header__tag {
    display: inline-block;
    background: var(--color-blue-light);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.req-header__title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------
   7. Company DL (Definition List Table)
------------------------------------------------------------------- */
.company-dl { display: flex; flex-direction: column; }

.company-dl__row {
    display: flex;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
}
.company-dl__row:first-child { padding-top: 0; }
.company-dl__row:last-child { padding-bottom: 0; border-bottom: none; }

.company-dl__dt {
    width: 25%;
    font-weight: 500;
    color: var(--color-accent);
}

.company-dl__dd {
    width: 75%;
    font-size: 15px;
    line-height: 2;
    color: var(--color-text-light);
}

.company-dl__dd li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 8px;
}

.company-dl__dd li::before {
    content: '\30FB'; /* ・ */
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .requirement { padding: 60px 0; }
    .requirement__table-wrap { padding: 40px 24px; }
    .company-dl__row { flex-direction: column; gap: 12px; padding: 24px 0; }
    .company-dl__dt, .company-dl__dd { width: 100%; }
}
