/* インターンシップページ専用スタイル */

/* インターンヒーローセクション */
.intern-hero {
    padding: 100px 0;
    background: #f8f9fa;
}

.hero-content-intern {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-intern {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.4;
    color: #000;
    margin-bottom: 40px;
}

.hero-tags {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: #4a69ff;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* 募集概要セクション */
.job-overview {
    padding: 100px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.overview-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.overview-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4a69ff;
}

.overview-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.work-type {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.work-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a69ff;
    margin-bottom: 10px;
}

.work-type p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.work-type ul,
.conditions-list {
    list-style: none;
    padding: 0;
}

.work-type li,
.conditions-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.work-type li:before,
.conditions-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a69ff;
    font-weight: bold;
}

.salary-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #4a69ff;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a69ff;
    margin-bottom: 15px;
}

.salary-info ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.salary-info li {
    padding: 5px 0;
    color: #666;
}

.salary-info strong {
    color: #4a69ff;
    font-size: 1.2rem;
}

.note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 10px;
}

.access {
    font-weight: 600;
    color: #4a69ff;
    margin: 10px 0;
}

.remote-info {
    background: #e8f0ff;
    padding: 10px 15px;
    border-radius: 5px;
    color: #4a69ff;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* スキルセクション */
.skills-section {
    padding: 100px 0;
    background: #000;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.skill-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
}

.skill-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.skill-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: white;
}

.skill-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.skill-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* 会社情報セクション */
.company-info {
    padding: 100px 0;
    background: #f8f9fa;
}

.company-mission {
    background: white;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.company-mission h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 2rem;
    font-weight: 900;
    color: #4a69ff;
    margin-bottom: 20px;
}

.company-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.business-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.business-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.business-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a69ff;
}

.business-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.business-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.partners {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.partners h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.partners ul {
    list-style: none;
    padding: 0;
}

.partners li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: #666;
}

.partners li:last-child {
    border-bottom: none;
}

/* 選考フローセクション */
.selection-process {
    padding: 100px 0;
    background: #fff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #4a69ff;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.95rem;
    color: #666;
}

.step-arrow {
    font-size: 2rem;
    color: #4a69ff;
    margin: 0 20px;
}

/* 応募セクション（インターン用） */
.apply-message {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.apply-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: inline-block;
}

/* Lucideアイコンのスタイル調整 */
.environment-item .icon,
.skill-icon {
    stroke-width: 2;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-title-intern {
        font-size: 1.8rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .step {
        width: 100%;
    }

    .company-mission,
    .business-content,
    .partners {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title-intern {
        font-size: 1.5rem;
    }

    .hero-tags {
        gap: 10px;
    }

    .tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .overview-item {
        padding: 25px;
    }

    .skill-item {
        padding: 25px 20px;
    }
}