/* 受講生の1日ページ専用スタイル */

/* 受講生の1日セクション */
.day-in-life {
    background-color: #EDEDEA;
    min-height: 100vh;
}

body > section.day-in-life > div > div > div.title-section > div > h1.main-title.title24 {
    font-weight: 700 !important;
}

/* Intro Text */
.intro-text {
    font-family: 'YuGothic', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    color: #333;
}

/* Schedule List */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: stretch;
}

/* Schedule Item */
.schedule-item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-self: stretch;
}

/* Schedule Time Wrapper */
.schedule-time-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* Time Badge */
.time-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: 56px;
    height: 56px;
    background-color: #B10100;
    border-radius: 50%;
    flex-shrink: 0;
}

.time-number {
    font-family: 'YuMincho', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #FFFFFF;
}

.time-label {
    font-family: 'YuMincho', serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: #FFFFFF;
}

/* Time Line */
.time-line {
    width: 1px;
    flex: 1;
    background-color: #B10100;
    min-height: 20px;
}

/* Schedule Content */
.schedule-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 0;
    flex: 1;
}

.schedule-content.no-image {
    gap: 12px;
    padding: 20px 0;
}

/* Schedule Image */
.schedule-image {
    width: 100%;
    height: auto;
    max-height: 160.36px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

/* Schedule Details */
.schedule-details {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
}

/* Schedule Tasks */
.schedule-tasks {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
}

/* Task Item */
.task-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-self: stretch;
    gap: 4px;
    align-items: flex-start;
}

/* Task Icon */
.task-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 24px;
    flex-shrink: 0;
}

.task-icon img {
    width: 16px;
    height: 24px;
}

/* Task Text */
.task-text {
    font-family: 'YuGothic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    flex: 1;
}

/* Schedule Description */
.schedule-description {
    font-family: 'YuGothic', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    align-self: stretch;
}

/* タブレット表示 */
@media (min-width: 768px) {
    .intro-text {
        font-size: 18px;
    }
    
    .schedule-item {
        gap: 12px;
    }
    
    .time-badge {
        width: 64px;
        height: 64px;
    }
    
    .time-number {
        font-size: 24px;
    }
    
    .time-label {
        font-size: 14px;
    }
    
    .schedule-content {
        padding: 32px 0;
        gap: 20px;
    }
    
    .schedule-image {
        max-height: 200px;
    }
    
    .task-text {
        font-size: 18px;
    }
    
    .schedule-description {
        font-size: 18px;
    }
}

/* デスクトップ表示 */
@media (min-width: 1024px) {
    .schedule-list {
        gap: 0;
    }
    
    .schedule-item {
        gap: 16px;
    }
    
    .time-badge {
        width: 72px;
        height: 72px;
    }
    
    .time-number {
        font-size: 28px;
    }
    
    .time-label {
        font-size: 16px;
    }
    
    .schedule-content {
        padding: 40px 0;
    }
    
    .schedule-image {
        max-height: 240px;
    }
}

/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
    .schedule-item {
        transition: none;
    }
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .intro-text,
    .task-text,
    .schedule-description {
        color: #000000;
    }
    
    .time-badge {
        border: 2px solid #FFFFFF;
    }
}

