/* リクルートページのスタイル */

/* ページヘッダー背景 */
.page-header {
    background-image: linear-gradient(to right, rgba(241, 143, 176, 0.2), rgba(148, 187, 233, 0.2));
    background-size: cover;
    background-position: center;
    position: relative;
}

/* リクルートメッセージセクション */
.recruit-message-section {
    padding: 80px 0;
}

.recruit-message {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.recruit-message-title {
    font-size: 28px;
    font-weight: 700;
    color: #f18fb0;
    margin-bottom: 30px;
}

.recruit-message-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.recruit-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.recruit-message-highlight {
    font-size: 18px;
    font-weight: 500;
    color: #f18fb0;
    margin: 30px 0;
}

/* 3つのこころセクション */
.recruit-heart-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.recruit-hearts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.recruit-heart {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.recruit-heart:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.recruit-heart-icon {
    width: 80px;
    height: 80px;
    background-color: #f18fb0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.recruit-heart-icon i {
    font-size: 36px;
    color: #fff;
}

.recruit-heart-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.recruit-heart-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 求人情報テーブル */
.recruit-jobs-section {
    padding: 80px 0;
}

.jobs-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.job-tab {
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.job-tab.active {
    color: #f18fb0;
    border-bottom-color: #f18fb0;
}

.job-tab:hover {
    color: #f18fb0;
}

.job-content {
    display: none;
}

.job-content.active {
    display: block;
}

.job-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.job-table th,
.job-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.job-table th {
    width: 25%;
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #eee;
}

.job-table td ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-table td ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.job-table td ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #f18fb0;
}

.job-table tr:last-child th,
.job-table tr:last-child td {
    border-bottom: none;
}

.job-table tr:hover {
    background-color: #f9f9f9;
}

/* 応募方法セクション */
.apply-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.apply-methods {
    max-width: 800px;
    margin: 0 auto;
}

.apply-methods-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.apply-methods-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.apply-method {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.apply-method-icon {
    font-size: 40px;
    color: #f18fb0;
    margin-bottom: 15px;
}

.apply-method-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.apply-method-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.apply-method-line-qr {
    width: 120px;
    height: 120px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 12px;
}

/* お問い合わせバナー */
.contact-recruit-banner {
    background-color: #f18fb0;
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    margin: 60px auto 0;
    max-width: 800px;
}

.contact-recruit-banner-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-recruit-banner-text {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-recruit-btn {
    display: inline-block;
    background-color: white;
    color: #f18fb0;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-recruit-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .recruit-message-title {
        font-size: 24px;
    }
    
    .recruit-message-subtitle {
        font-size: 18px;
    }
    
    .recruit-message p {
        font-size: 15px;
    }
    
    .recruit-message-highlight {
        font-size: 16px;
    }
    
    .recruit-heart {
        min-width: 100%;
    }
    
    .recruit-heart-icon {
        width: 70px;
        height: 70px;
    }
    
    .recruit-heart-icon i {
        font-size: 32px;
    }
    
    .recruit-heart-title {
        font-size: 18px;
    }
    
    .job-tab {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .job-table th,
    .job-table td {
        padding: 15px;
        font-size: 14px;
    }
    
    .apply-methods-title {
        font-size: 22px;
    }
    
    .apply-method {
        min-width: 100%;
    }
    
    .apply-method-icon {
        font-size: 36px;
    }
    
    .apply-method-title {
        font-size: 17px;
    }
    
    .apply-method-text {
        font-size: 14px;
    }
    
    .contact-recruit-banner-title {
        font-size: 22px;
    }
    
    .contact-recruit-banner-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .recruit-message-title {
        font-size: 22px;
    }
    
    .recruit-message-subtitle {
        font-size: 17px;
    }
    
    .recruit-message p {
        font-size: 14px;
    }
    
    .recruit-message-highlight {
        font-size: 15px;
    }
    
    .recruit-heart-icon {
        width: 60px;
        height: 60px;
    }
    
    .recruit-heart-icon i {
        font-size: 28px;
    }
    
    .recruit-heart-title {
        font-size: 17px;
    }
    
    .recruit-heart-text {
        font-size: 13px;
    }
    
    .job-tabs {
        flex-wrap: wrap;
    }
    
    .job-tab {
        margin-bottom: 5px;
    }
    
    .job-table th,
    .job-table td {
        padding: 12px;
        font-size: 13px;
    }
    
    .job-table th {
        width: 35%;
    }
    
    .apply-methods-title {
        font-size: 20px;
    }
    
    .apply-method-icon {
        font-size: 32px;
    }
    
    .apply-method-title {
        font-size: 16px;
    }
    
    .apply-method-text {
        font-size: 13px;
    }
    
    .contact-recruit-banner {
        padding: 30px 15px;
    }
    
    .contact-recruit-banner-title {
        font-size: 20px;
    }
    
    .contact-recruit-banner-text {
        font-size: 14px;
    }
    
    .contact-recruit-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}