/* 入校までの手順ページ専用スタイル */

/* 入校までの手順セクション */
.enrollment-process {
    background-color: #EDEDEA;
    min-height: 100vh;
}

/* ステップコンテナ */
.steps-container {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 24px;
}

/* ステップカード */
.step-card {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 16px;
    background-color: transparent;
}

.step-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: baseline;
    background-color: #B10100;
    padding: 4px 12px;
    border-radius: 2px;
    width: fit-content;
    min-width: 78px;
    line-height: 1;
}

.step-label {
    font-family: 'YuMincho', serif;
    font-weight: 200;
    font-size: 10px !important;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin-right: 4px;
}

.step-num {
    font-family: 'YuMincho', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-title {
    font-family: 'YuMincho', serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.step-description {
    font-family: 'YuGothic', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* タブレット表示 */
@media (min-width: 768px) {
    .steps-container {
        gap: 32px;
    }
    
    .step-card {
        gap: 20px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .step-description {
        font-size: 18px;
    }
}

/* デスクトップ表示 */
@media (min-width: 1024px) {
    .steps-container {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    .step-card {
        background-color: transparent;
        padding: 0;
    }
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .step-title,
    .step-description {
        color: #000000;
    }
}

