@charset "UTF-8";

/* ============================================================
   採用案内ページ（recruit）完全版CSS
   ============================================================ */

/* --- 全体ベース --- */
.recruit-page, 
main:has(.recruit-section) {
    background-color: #fcfaf5 !important;
    color: #333;
    line-height: 1.8;
    font-family: 'Zen Maru Gothic', sans-serif !important;
}

.container {
    max-width: 1000px;
    margin: 140px auto 0;
    padding: 0 20px;
}

/* --- セクションタイトル --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title .title-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 26px;
    font-weight: 900 !important;
    color: #4a3728;
}

.section-title .title-inner::before,
.section-title .title-inner::after {
    content: "";
    width: 6px;
    height: 32px;
    background-color: #08A66C;
    border-radius: 10px;
}

.section-title span:not(.title-inner) {
    display: block;
    font-size: 13px;
    color: #08A66C;
    margin-top: 10px;
    letter-spacing: 0.15em;
    font-weight: 900;
}

/* --- メッセージカード --- */
.recruit-section { padding: 60px 0; }

.recruit-message-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid #fff !important;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(93, 64, 55, 0.06) !important;
    text-align: center;
}

.message-content p {
    font-size: 17px;
    font-weight: 700 !important;
    margin-bottom: 1.2em;
    color: #4a3728;
}

/* --- 先輩インタビュー --- */
.staff-voice-list { display: flex; flex-direction: column; gap: 50px; }
.staff-item { display: flex; align-items: center; gap: 40px; }
.staff-item.item-reverse { flex-direction: row-reverse; }

.staff-photo { 
    width: 120px; height: 120px; border-radius: 50%; 
    overflow: hidden; border: 4px solid #08A66C; 
    margin: 0 auto 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }

.staff-name { font-size: 19px; font-weight: 900 !important; color: #4a3728; }
.staff-role { font-size: 13px; font-weight: 700 !important; color: #08A66C; }

.speech-bubble { 
    background: #fff; padding: 30px; border-radius: 30px; 
    flex: 1; font-size: 16px; font-weight: 700 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
}

/* --- 募集要項 --- */
.requirements-container { 
    background: #fff; border-radius: 30px; padding: 50px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); 
}

.recruit-list dt { 
    background: #fdfaf5; padding: 12px 20px; border-radius: 10px; 
    color: #08A66C; font-size: 19px; font-weight: 900 !important;
    margin-top: 40px; border-left: 6px solid #08A66C; 
}
.recruit-list dt:first-child { margin-top: 0; }
.recruit-list dd { padding: 20px; font-size: 16px; font-weight: 700 !important; border-bottom: 1px solid #f0f0f0; }

.time-grid { 
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); 
    gap: 10px; list-style: none; padding: 0; margin-top: 15px; 
}
.time-grid li { 
    background: #f8f9f8; padding: 10px; border-radius: 8px; 
    font-size: 14px; border: 1px solid #eee; text-align: center; font-weight: 900 !important;
}

/* --- 園見学・採用のご相談エリア（修正点） --- */
.recruit-glass-contact {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 3px solid #fff !important;
    border-radius: 40px;
    padding: 65px 40px; /* パディングを少し広げてゆとりを */
    text-align: center;
    box-shadow: 0 15px 35px rgba(8, 166, 108, 0.1) !important;
    margin: 60px 0;
}

.recruit-glass-contact h2 {
    font-size: 26px;
    font-weight: 700 !important; /* 太すぎを解消: 900→700 */
    color: #4a3728;
    margin-bottom: 25px; /* 下との間隔を確保 */
}

.recruit-glass-contact p {
    font-size: 17px;
    font-weight: 700 !important;
    color: #666;
    margin-bottom: 45px; /* ボタンとの余白をしっかり空ける */
    line-height: 1.8;
}

.recruit-btn-submit {
    display: inline-block;
    background: #08A66C;
    color: #fff !important;
    padding: 20px 65px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900 !important; /* ボタンはクッキリ太く */
    text-decoration: none !important;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(8, 166, 108, 0.3);
}

.recruit-btn-submit:hover {
    transform: translateY(-3px);
    background: #068a5a;
    box-shadow: 0 15px 30px rgba(8, 166, 108, 0.4);
}

/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
    .container { margin-top: 100px !important; }
    .recruit-section { padding: 40px 0; }
    
    .staff-item, .staff-item.item-reverse { flex-direction: column; text-align: center; gap: 20px; }
    .speech-bubble { font-size: 15px; padding: 25px; }

    .requirements-container { padding: 30px 20px; border-radius: 20px; }
    
    .recruit-glass-contact {
        padding: 45px 20px;
    }
    .recruit-glass-contact h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .recruit-glass-contact p {
        font-size: 15px;
        margin-bottom: 35px; /* スマホでも余白を維持 */
    }
    .recruit-btn-submit {
        width: 100%;
        padding: 18px 20px;
        font-size: 16px;
        box-sizing: border-box;
    }
}