/* 放送局の見出し */
.channel-title {
    /* 枠 */
    border: solid 1px gray;
    border-radius: 3px;
  
    /* 背景色 */
    background-color: lightgray;
  
    /* 中央揃え・太字 */
    text-align: center;
    font-weight: bold;
  
    /* 表示位置を固定 */
    top: 0;
    z-index: 2;
    position: sticky;
  
    grid-row: 1 / 2;
  }

.channel-title.color0 {
    /* 背景色 */
    background-color: #f8dee8;
  }

.channel-title.color1 {
    /* 背景色 */
    background-color: #f9d7e1;
}

.channel-title.color2 {
    /* 背景色 */
    background-color: #f6d0d9;
}

.channel-title.color3 {
    /* 背景色 */
    background-color: #f7c3cf;
}

.channel-title.color4 {
    /* 背景色 */
    background-color: #f6bdc9;
}

.channel-title.color5 {
    /* 背景色 */
    background-color: #f2b4c2;
}

.channel-title.color6 {
    /* 背景色 */
    background-color: #f1afbc;
}
