/* ======================================
   Recruit Page - 20代女性向けPOPデザイン
   ====================================== */

:root {
    /* カラーパレット - 20代女性向け親しみやすいカラー */
    --primary-pink: #ff6b9d;
    --primary-coral: #ff8a80;
    --primary-peach: #ffab91;
    --secondary-purple: #ce93d8;
    --secondary-blue: #81d4fa;
    --accent-yellow: #fff176;
    --accent-mint: #a5d6a7;
    
    /* ニュートラル */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #2c3e50;
    
    /* グラデーション */
    --gradient-primary: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-coral) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-purple) 0%, var(--secondary-blue) 100%);
    --gradient-soft: linear-gradient(135deg, #fff 0%, var(--light-gray) 100%);
    
    /* シャドウ */
    --shadow-soft: 0 4px 20px rgba(255, 107, 157, 0.15);
    --shadow-medium: 0 8px 30px rgba(255, 107, 157, 0.2);
    --shadow-card: 0 6px 25px rgba(0, 0, 0, 0.08);
    
    /* フォント */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-accent: 'Poppins', sans-serif;
}

/* ======================================
   Base Styles
   ====================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    font-weight: 600;
    line-height: 1.4;
}

/* ======================================
   Header
   ====================================== */

.recruit-header {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    color: var(--white) !important;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand:hover {
    color: var(--accent-yellow) !important;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 25px;
    margin: 0 0.2rem;
}

.nav-link:hover {
    color: var(--accent-yellow) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-nav {
    background: var(--accent-yellow) !important;
    color: var(--text-dark) !important;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.cta-nav:hover {
    color: var(--text-dark) !important;
    background: #fff !important;
    transform: translateY(-3px);
}

.navbar-toggler {
    border: 2px solid var(--white);
    border-radius: 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======================================
   Hero Section
   ====================================== */

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-background.jpg') center center/cover no-repeat;
    z-index: -2;
}

/* モバイル時の背景画像調整 */
@media (max-width: 768px) {
    .hero-background {
        background-size: 150%;
        background-position: center 20%;
    }
}

@media (max-width: 576px) {
    .hero-background {
        background-size: 180%;
        background-position: center 30%;
    }
}

.hero-image-placeholder {
    display: none;
}

.image-placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.image-placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.7) 0%, rgba(255, 138, 128, 0.6) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    color: var(--white);
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.title-accent {
    color: var(--accent-yellow);
    font-weight: 700;
    display: block;
    font-size: 1.2em;
}

.title-main {
    font-weight: 700;
    display: block;
    font-size: 1.4em;
    margin: 0.2em 0;
}

.title-sub {
    font-weight: 400;
    display: block;
    font-size: 0.8em;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    color: var(--accent-yellow);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
    border: 2px solid var(--accent-yellow);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ヒーローメイン画像関連のスタイルを削除 */

/* ======================================
   Sections
   ====================================== */

section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title .title-accent {
    color: var(--primary-pink);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title .title-main {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
}

/* ======================================
   About Section
   ====================================== */

.about-section {
    background: var(--gradient-soft);
    position: relative;
    z-index: 11;
    margin-top: 0;
}

.about-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.job-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.job-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.job-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.facility-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    background: var(--white);
    position: relative;
}

.facility-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.facility-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.facility-caption {
    padding: 1rem;
    text-align: center;
}

.facility-caption h5 {
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.facility-caption p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

.voice-image {
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.voice-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.voice-profile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
}

.voice-profile h5 {
    color: var(--accent-yellow);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.voice-profile p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content h3 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.store-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* ======================================
   Job Info Section
   ====================================== */

.job-info-section {
    background: var(--white);
    position: relative;
    z-index: 12;
}

.job-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--medium-gray);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.job-card h3 {
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.job-card h3 i {
    margin-right: 0.5rem;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--medium-gray);
    position: relative;
    padding-left: 2rem;
}

.job-list li:last-child {
    border-bottom: none;
}

.job-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-mint);
    font-weight: bold;
    font-size: 1.1rem;
}

.job-list li.highlight {
    background: linear-gradient(135deg, var(--accent-yellow), #fff176);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-dark);
    border: none;
    margin: 1rem 0;
}

.job-list li.highlight:before {
    color: var(--text-dark);
}

/* Reward Card */
.reward-card {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
}

.reward-card h3 {
    color: var(--white);
}

.reward-highlight {
    text-align: center;
    margin: 2rem 0;
}

.reward-main {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reward-amount {
    color: var(--accent-yellow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reward-sub {
    font-size: 1.2rem;
    opacity: 0.9;
}

.reward-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reward-features .badge {
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.reward-example {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
}

.reward-example h4 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    text-align: center;
}

.example-calculation {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.calc-item:last-child {
    border-bottom: none;
}

.calc-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0 0;
    border-top: 2px solid var(--accent-yellow);
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.total-amount {
    color: var(--accent-yellow);
    font-size: 1.3rem;
}

/* Time Info */
.time-info {
    margin-top: 1rem;
}

.time-range {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.time-label {
    font-weight: 600;
    color: var(--primary-pink);
}

.time-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* ======================================
   Benefits Section
   ====================================== */

.benefits-section {
    background: var(--gradient-soft);
    position: relative;
    z-index: 13;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-soft);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--dark-gray);
}

.benefit-card li:before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-size: 0.8rem;
}


/* ======================================
   Voice Section
   ====================================== */

.voice-section {
    background: var(--white);
    position: relative;
    z-index: 14;
}

.voice-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.voice-image-placeholder {
    height: 200px;
    background: var(--medium-gray);
}

.voice-content {
    padding: 2rem;
}

.voice-content h4 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.voice-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.voice-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-coral);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ======================================
   Message Section
   ====================================== */

.message-section {
    background: var(--gradient-secondary);
    color: var(--white);
    position: relative;
    z-index: 15;
}

.message-content {
    padding: 2rem;
}

.message-content h3 {
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.message-highlights {
    margin: 3rem 0;
}

.message-highlights .highlight {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.message-highlights .highlight i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--accent-yellow);
    width: 2rem;
}

.message-questions {
    margin-top: 3rem;
    text-align: left;
}

.message-questions h4 {
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.message-questions ul {
    list-style: none;
    padding: 0;
}

.message-questions li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    opacity: 0.9;
}

.message-questions li:before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.message-note {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
}

/* ======================================
   Application Section
   ====================================== */

.application-section {
    background: var(--light-gray);
    position: relative;
    z-index: 16;
}

.application-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--medium-gray);
}

.application-methods {
    margin-bottom: 3rem;
}

.application-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    height: 100%;
}

.application-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: var(--text-dark);
}

.phone-btn:hover {
    border-color: var(--primary-coral);
}

.line-btn:hover {
    border-color: #00B900;
}

.form-btn:hover {
    border-color: var(--primary-pink);
}

.btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.phone-btn .btn-icon {
    background: var(--gradient-primary);
}

.line-btn .btn-icon {
    background: linear-gradient(135deg, #00B900 0%, #00C300 100%);
}

.form-btn .btn-icon {
    background: var(--gradient-primary);
}

.btn-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.btn-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.btn-content p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-pink);
}

.btn-sub {
    font-size: 0.9rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.application-info {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.application-info h4 {
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-pink);
    margin-right: 1rem;
    width: 2rem;
}

.interview-info {
    padding: 2rem;
    background: var(--gradient-soft);
    border-radius: 15px;
}

.interview-info h4 {
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.interview-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.detail-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: var(--dark-gray);
}

.value {
    color: var(--text-dark);
    font-weight: 500;
}

.interview-note {
    background: rgba(255, 107, 157, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
    margin: 0;
}

/* ======================================
   Application Form
   ====================================== */

.application-form {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gradient-soft);
    border-radius: 20px;
    border: 1px solid var(--medium-gray);
}

.application-form h4 {
    color: var(--primary-pink);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.recruit-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.recruit-form .form-control,
.recruit-form .form-select {
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.recruit-form .form-control:focus,
.recruit-form .form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.recruit-form .text-danger {
    color: var(--primary-coral) !important;
}

.recruit-form .form-text {
    color: var(--dark-gray);
    font-size: 0.875rem;
}

.recruit-form .btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.recruit-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.interview-date-inputs {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--medium-gray);
}

.interview-date-inputs .mb-3:last-child {
    margin-bottom: 0 !important;
}

/* ======================================
   Confirmation Modal
   ====================================== */

.confirmation-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--medium-gray);
}

.confirmation-value {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-top: 0.3rem;
}

/* ======================================
   Footer
   ====================================== */

.recruit-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 17;
}

.recruit-footer h5, .recruit-footer h6 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.recruit-footer p {
    opacity: 0.8;
    line-height: 1.7;
}

.recruit-footer .btn-outline-light {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.recruit-footer .btn-outline-light:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ======================================
   Responsive Design
   ====================================== */

/* タブレット・モバイル共通調整 (768px以下) */
@media (max-width: 768px) {
    /* ヒーローセクション */
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-overlay {
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 0.5;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    /* セクションタイトル */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* ヒーローハイライト */
    .hero-highlights {
        justify-content: center;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .highlight-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
        max-width: 200px;
        justify-content: center;
        padding: 0.6rem 1rem;
    }
    
    /* ボタンエリア */
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
    }
    
    /* カードレイアウト */
    .job-card,
    .application-content {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* 応募ボタン */
    .application-btn {
        padding: 1.5rem;
    }
    
    /* グリッドレイアウト */
    .info-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    /* 詳細アイテム */
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 0.6rem 0;
    }
    
    /* 計算項目 */
    .calc-item,
    .calc-total {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        text-align: center;
    }
    
    /* 報酬機能 */
    .reward-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .reward-features .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* メッセージハイライト */
    .message-highlights .highlight {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    /* 画像調整 */
    .about-image,
    .job-image,
    .facility-image {
        margin-bottom: 1.5rem;
    }
    
    /* 音声カード */
    .voice-card {
        margin-bottom: 2rem;
    }
}

/* スマートフォン専用調整 (576px以下) */
@media (max-width: 576px) {
    /* ヒーローセクション */
    .hero-section {
        height: 100vh;
        min-height: 550px;
    }
    
    .hero-overlay {
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 0.5;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    /* ハイライト項目 */
    .highlight-item {
        flex: 1 1 100%;
        max-width: none;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .highlight-item:last-child {
        margin-bottom: 0;
    }
    
    /* ボタン */
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    /* セクションパディング */
    section {
        padding: 3rem 0;
    }
    
    /* カードパディング */
    .feature-item,
    .job-card,
    .benefit-card {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .voice-content {
        padding: 1.2rem;
    }
    
    .message-content {
        padding: 1.2rem;
    }
    
    .application-content {
        padding: 1.5rem 1rem;
    }
    
    /* 報酬メイン */
    .reward-main {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .reward-sub {
        font-size: 1rem;
    }
    
    /* アプリケーションボタン */
    .application-btn {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .btn-content h4 {
        font-size: 1rem;
    }
    
    .btn-content p {
        font-size: 1rem;
    }
    
    /* フォントサイズ調整 */
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content h3,
    .job-card h3 {
        font-size: 1.5rem;
    }
    
    /* マージン調整 */
    .hero-highlights {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        gap: 0.6rem;
    }
    
    /* 音声プロファイル */
    .voice-profile {
        padding: 1.5rem 0.8rem 0.8rem 0.8rem;
    }
    
    .voice-profile h5 {
        font-size: 1rem;
    }
    
    .voice-profile p {
        font-size: 0.85rem;
    }
    
    /* 設備キャプション */
    .facility-caption {
        padding: 0.8rem;
    }
    
    .facility-caption h5 {
        font-size: 1rem;
    }
    
    .facility-caption p {
        font-size: 0.85rem;
    }
}

/* モバイル専用ヘッダー調整 */
@media (max-width: 768px) {
    .recruit-header {
        padding: 0.5rem 0;
        height: 70px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem;
    }
    
    /* ナビゲーションメニュー展開時の背景 */
    .navbar-collapse {
        background: var(--gradient-primary);
        margin-top: 0.5rem;
        border-radius: 15px;
        box-shadow: var(--shadow-medium);
        padding: 1rem;
        backdrop-filter: blur(10px);
    }
    
    .navbar-collapse.show {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* ヒーローセクションのパディングトップ調整 */
    .hero-overlay {
        padding-top: 140px;
    }
}

@media (max-width: 576px) {
    .recruit-header {
        padding: 0.3rem 0;
        height: 65px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem;
    }
    
    /* ナビゲーションメニュー展開時の背景（スマートフォン専用調整） */
    .navbar-collapse {
        margin-top: 0.3rem;
        border-radius: 12px;
        padding: 0.8rem;
    }
    
    .nav-link {
        border-radius: 8px;
        margin-bottom: 0.2rem;
    }
    
    .nav-link:hover,
    .nav-link.cta-nav {
        background: rgba(255, 255, 255, 0.15) !important;
        transform: none !important;
    }
    
    /* ヒーローセクションのパディングトップ調整 */
    .hero-overlay {
        padding-top: 130px;
    }
}

/* ======================================
   Animation Utilities
   ====================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* モバイル専用スペーシング調整 */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
    
    .row {
        margin-left: -0.4rem;
        margin-right: -0.4rem;
    }
    
    .col-lg-6,
    .col-lg-4,
    .col-lg-3,
    .col-md-6 {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
}

/* ======================================
   Utility Classes
   ====================================== */

.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-soft {
    background: var(--gradient-soft);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.border-radius-xl {
    border-radius: 25px;
}

.border-radius-xxl {
    border-radius: 30px;
}

/* モバイル専用 z-index 調整 */
@media (max-width: 768px) {
    .hero-section {
        z-index: 1;
    }
    
    .about-section {
        z-index: 11;
        margin-top: 0;
    }
    
    section {
        position: relative;
        z-index: 10;
    }
    
    /* アンカーリンクのオフセット調整 */
    section[id] {
        scroll-margin-top: 80px;
    }
}

@media (max-width: 576px) {
    /* アンカーリンクのオフセット調整 */
    section[id] {
        scroll-margin-top: 75px;
    }
}