/* 採用情報ページのスタイル */

/* ヒーローセクション */
.info-hero {
    position: relative;
    height: 45vh;
    background-color: var(--bg-gray);
    overflow: hidden;
}

.info-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.info-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

.info-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.info-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.info-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 紹介セクション */
.dining-intro {
    background-color: white;
    padding: 60px 20px;
    margin: 0;
    text-align: center;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: transparent;
    box-shadow: none;
}

.intro-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0 0 30px;
    font-family: var(--font-serif);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 1.5px;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin: 0;
}

/* 情報カード */
.info-section {
    padding: 5rem 0;
    background-color: var(--bg-gray);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.info-card-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 1rem;
}

.info-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.info-item-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .info-hero {
        height: 35vh;
    }
    
    .info-hero-image img {
        object-position: center 65%;
    }
    
    .info-hero-title {
        font-size: 2rem;
    }
    
    .info-hero-subtitle {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card-title {
        font-size: 1.5rem;
    }
    
    .info-item-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info-hero {
        height: 30vh;
    }
    
    .info-hero-image img {
        object-position: center 60%;
    }
    
    .info-hero-title {
        font-size: 1.5rem;
    }
    
    .info-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card-title {
        font-size: 1.3rem;
    }
}

/* メインセクション */
.meal-sections {
    padding: 0;
    margin: 0;
}

.meal-category {
    padding: 80px 0;
    position: relative;
    margin: 0;
}

/* 募集要項セクション共通 */
.meal-category.body {
    background-color: var(--bg-gray);
}

.meal-category.facial {
    background-color: white;
}

.meal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.meal-text {
    display: flex;
    justify-content: center;
}

.meal-description {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.meal-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin: 0 0 10px;
    font-family: var(--font-serif);
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
}

.meal-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0 0 25px;
    letter-spacing: 0.2em;
    line-height: 1.4;
    font-family: var(--font-en);
    text-align: center;
}

.meal-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.meal-description-text p {
    margin-bottom: 1.5rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .info-hero {
        height: 40vh;
    }

    .info-hero-title {
        font-size: 2rem;
    }

    .info-hero-subtitle {
        font-size: 1rem;
    }

    .meal-description {
        padding: 30px 20px;
    }

    .meal-title {
        font-size: 1.8rem;
    }

    .meal-description-text {
        font-size: 1rem;
    }
}

/* 採用ボタン */
.recruit-button {
    margin-top: 40px;
    text-align: center;
}

.recruit-button .button {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: #2a6cb8;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 108, 184, 0.2);
}

.recruit-button .button:hover {
    background: #1a4b84;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 108, 184, 0.3);
}

.recruit-button .button-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.recruit-button .button:hover .button-arrow {
    transform: translateX(5px);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .recruit-button {
        margin-top: 30px;
    }

    .recruit-button .button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .recruit-button {
        margin-top: 25px;
    }

    .recruit-button .button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
} 