/* 採用情報ページのスタイル */

/* ヒーローセクション */
.recruit-hero {
    background-image: url('../images/recruit/team_meeting.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.recruit-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.recruit-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.recruit-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.recruit-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    width: 100%;
}

/* 会社についてセクション */
.recruit-about {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.recruit-about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.recruit-about p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 企業理念セクション */
.recruit-philosophy {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.recruit-philosophy h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.philosophy-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.philosophy-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: #333;
}

/* 募集職種セクション */
.recruit-positions {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.recruit-positions h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.position-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.position-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.position-content h4 {
    font-size: 1.3rem;
    color: #444;
    margin: 20px 0 10px;
}

.position-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.position-content li {
    line-height: 1.6;
    margin-bottom: 5px;
}

/* 福利厚生セクション */
.recruit-benefits {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.recruit-benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.benefits-content ul {
    list-style-type: none;
    padding: 0;
}

.benefits-content li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.benefits-content ul ul {
    margin-top: 10px;
    margin-left: 20px;
}

/* 採用プロセスセクション */
.recruit-process {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.recruit-process h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 40px;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #007bff;
    border-radius: 50%;
}

/* 社員インタビューセクション */
.recruit-interviews {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.recruit-interviews h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* 添加卡片容器 */
.interview-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.interview-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: calc(50% - 15px);
}

.interview-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.interview-card p {
    line-height: 1.8;
}

/* エントリーフォームセクション */
.recruit-form {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.recruit-form h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.required {
    color: #ff4444;
    margin-left: 5px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .recruit-hero {
        height: 300px;
    }

    .recruit-hero h1 {
        font-size: 2rem;
    }

    .recruit-hero p {
        font-size: 1rem;
    }

    .philosophy-items {
        flex-direction: column;
    }

    .position-card {
        padding: 20px;
    }

    .position-card h3 {
        font-size: 1.5rem;
    }

    .interview-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
} 