:root{
    /*基本背景色*/
    --baseBG: #103300;
    /*直書文字色*/
    --baseCharColor: #fff;
}


*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: var(--baseBG);
}
body > .inner{
    padding: 16px;
    min-height: 100vh;
    padding-bottom: 100px;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    padding: 0;
    background-color: #000;
}
.main{
    padding-top: 32px;
}

#Clock{
    color: var(--baseCharColor);
    font-size: 20px;
    position: fixed;
    top: 16px;
    right: 16px;
}

.flexArea{
    margin-left: 16px;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.className{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.name{
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.card{
    width: calc(100vw / 8);
    min-width: 180px;
    /*max-width: calc(100vw / 6);*/
    padding: 8px 16px;
    background-color: #cc3300;
    min-height: 92px;
    /*
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fcfff4),
    color-stop(40%, #dfe5d7),
    to(#b3bead)
  );
  background: -webkit-linear-gradient(
    top,
    #fcfff4 0%,
    #dfe5d7 40%,
    #b3bead 100%
  );
  background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  -webkit-box-shadow: inset 5px 30px 20px rgba(255, 255, 255, 0.5),
    0 6px 10px rgba(0, 0, 0, 0.2);
    
  box-shadow: inset 5px 30px 20px rgba(255, 255, 255, 0.5),
    0 6px 10px rgba(0, 0, 0, 0.2);
    */
  
  
  border: 2px solid #fff;
  border-radius: 8px;
}

.card.tripCard{
    background-color: #006699;
}

.card.otherCard{
    background-color: #666;
}

.card.classNameCard{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--baseCharColor);
    background-color: rgba(255,255,255,0.2);
    font-size: 16px;
    font-weight: bold;
    font-size: 48px;
    border-color: var(--baseCharColor);
}
.card.classNameCard p{
    line-height: 0;
    text-align: center;
}

.card.tripCard.classNameCard{
    /*background-color: rgba(0,0,0,0.1);*/
}

.timeline{
    text-align: right;
}

.training1:before{
    display: inline-block;
    content: '（研）';
    margin-right: 8px;
}

.special1:before{
    display: inline-block;
    content: '【特】';
    margin-right: 8px;
}

.scheduleLine{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2px;
}

.scheduleTime{
    color: #fff;
    padding: 1px 2px;
    font-size: 16px;
}

.zen{
    color: #ff99ff;
    color: #fff;
}
.training{
    color: #99ffff;
    color: #fff;
}
.special{
    color: yellow;
}
.kaigo{
    
}
.kango{
    
}
.trip{
    
}
