    

  .schedule {
    max-width: 1050px;
    margin: 0 auto;
    color: #222;
  }
  .schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .schedule-item {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
  }             
                        
  .schedule-time {      
    font-weight: 700;
    font-size: 1.05rem;
    color: #cc0000;
    white-space: nowrap;
    padding-top: 0.15rem;
  }                     
                    
  .schedule-content h4 {
    margin: 0;  
    line-height: 1.2;   
    font-weight: 600;
    color: #000;
    text-align: left;
  }

  .schedule-content p {
    margin: 0.65rem 0 0;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    text-align: left;
  }

.schedule-session
{
	text-align: center;
	font-weight: 600;
	margin-top: 3rem;
}

  .schedule-break {
    text-align: center;
    padding: 1rem 1.25rem;
    margin: 0.3rem 0;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.08rem;
    color: #2c2c2c;
    letter-spacing: 0.01em;
  }

  @media (max-width: 700px) {
    .schedule {
      padding: 2rem 1rem 3rem;
    }

    .schedule-item {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }

    .schedule-time {
      padding-top: 0;
    }

    .schedule-content h3 {
      font-size: 1.35rem;
    }
  }

