/* ============================================
   Recruit Hero Section
   ============================================ */
.recruit-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruit-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.recruit-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 1, 0.5) 0%, rgba(12, 39, 101, 0.5) 100%);
    z-index: 1;
}

.recruit-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.recruit-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.recruit-hero-subtitle {
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ============================================
   Recruit Message Section
   ============================================ */
.recruit-message {
    padding: 60px 0;
    background-color: #fff;
    text-align: left;
}

.recruit-message h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.recruit-message p {
    font-size: 1.2rem;
    color: #333;
    padding-left: 2rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ============================================
   Orbital Section
   ============================================ */
.orbital-section {
    padding: 10px 0 20px;
    background-color: #fff;
    position: relative;
}

/* Background decoration */


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

.orbital-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 500px;
    position: relative;
}
.orbital-item {
    padding: 0;      /* ← パディング削除 */
    margin: 0;       /* ← マージン削除 */
}

.orbital-item img {
    display: block;  /* ← インライン要素の余白を削除 */
}
/* Orbital Items - Static Positioning */
.orbital-item {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
}

/* Image 1 - Left (Small) */
.orbital-item.orbital-left {
    width: auto;
    height: 300px;
    right: 5%;
    top: 40%;
    z-index: 5;
}

/* Image 2 - Center (Large) */
.orbital-item.orbital-center{
    width: auto;
    height: 400px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Image 3 - Right (Medium) */
.orbital-item.orbital-right {
    width: auto;
    height: 200px;
    left: 5%;
    bottom: 10px;
    z-index: 9;
}

.orbital-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.orbital-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   Interview Section
   ============================================ */
.interview-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 38px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 43%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    width: 70px;
    height: 2px;
    background-color: #333333;
    transform: translateX(-60px) rotate(45deg);
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

/* Interview Item */
.interview-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}
.interview-item.reverse {
     grid-template-columns: 1fr 300px;
}
.interview-image {
    width: 300px;
    height: AUTO;
    overflow: hidden;
    border-radius: 4px;
    position: sticky;
    top: 100px;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.interview-position {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.interview-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

/* ============================================
   Recruit CTA Section
   ============================================ */
.recruit-cta {
    padding: 0;
    background-color: #2B3D4E;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    width: 100vw;
    margin: 0 auto;

}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4em;
    background: #2B3D4E;
    border:1px solid #fff;
    color: #fff;
    border-radius: 0;
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ============================================
   Responsive Design (Tablet)
   ============================================ */
@media (max-width: 1024px) {
    .orbital-wrapper {
        height: 400px;
        gap: 20px;
    }

    .orbital-item.orbital-center {
        width: 500px;
        height: 300px;
    }

    .orbital-item.orbital-left {
        width: 350px;
        height: 210px;
    }

    .orbital-item.orbital-right {
        width: auto;
        height: 140px;
    }

    .interview-item {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    .interview-image {
        width: 250px;
        height: auto;
    }

    .orbital-section::before {
        display: none;
    }
}

/* ============================================
   Responsive Design (Smartphone)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .recruit-hero {
        height: 200px;
    }

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

    .recruit-message {
        padding: 40px 0;
    }

    .recruit-message h2 {
        font-size: 24px;
    }

    .recruit-message p {
        font-size: 13px;
    }

    .orbital-section {
        padding: 10px 0;
    }

    .orbital-wrapper {
        height: auto;
        flex-direction: row;
        justify-content: center;
    }

    .orbital-item {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .orbital-item.orbital-center {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
        padding: 20px 0;
    }

    .orbital-item.orbital-left {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }

    .orbital-item.orbital-right {
        width: 100%;
        height: 250px;
    }

    .interview-section {
        padding: 60px 0;
    }

    .interview-item,
    .interview-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .interview-image {
        width: 100%;
        height: auto;
        position: relative;
        top: auto;
    }

    .interview-content h3 {
        font-size: 20px;
    }

    .interview-text {
        font-size: 13px;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
        /*gap: 20px;*/
    }

    .cta-button {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .recruit-hero-title {
        font-size: 22px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .interview-image {
        height: auto;
    }

    .interview-content h3 {
        font-size: 18px;
    }

    .interview-text {
        font-size: 12px;
    }
}
