.form_table table p {
	margin-bottom:0px;
}

.program table p {
	margin-bottom:0px;
}

.program .special td {
	background-color: #EEE;
}

.form_table table td {
	padding:5px;
}

ul.items li {
   text-indent: -1em;
   padding-left: 1em;	
}

h1 {
  font-size: 1rem;
}

.lead {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.container-program {
  /* grid レイアウトの設定 */
  display: grid;
  grid-template-columns: auto repeat(2, max-content minmax(120px, 1fr));
  grid-template-rows: auto repeat(calc(4 * 60), 0.2rem);

  /* カラムの間隔 */
  grid-column-gap: 3px;
  column-gap: 3px;

  /* 行の間隔 */
  grid-row-gap: 3px;
  row-gap: 3px;
}

/* 時間軸 */
.time-axis {
  border: solid 1px gray;
  border-radius: 3px;

/*  background-color: gainsboro;*/
  background-color: #F7F7F7;

  grid-column: 1 / 2;
}

/* 放送局の見出し */
.channel-title {
  /* 枠 */
  border: solid 1px gray;
  border-radius: 3px;

  /* 背景色 */
/*  background-color: lightgray;*/
  background-color: #F7F7F7;

  /* 中央揃え・太字 */
  text-align: center;
  font-weight: bold;

  /* 表示位置を固定 */
  top: 0;
  z-index: 2;
  position: sticky;

  grid-row: 1 / 2;
}

/* 番組の枠 */
.content-box {
  border: solid 1px gray;
  border-radius: 3px;
}

.redbg {
 background: #FFD49E;
}
.brownbg {
 background: #E8B589;
}
.normalbg {
/* background: #F5E8AE;*/
/* background: #E3DE8F;	*/
 background: #D9D375;
}
.darkbg {
/* background: #E8D289;*/
 background: #D5B942;
}
.yellowbg {
/* background: #FFF7AD;*/
 background: #FAF9AD;	
}
.greenbg {
  /* background: #FFF7AD;*/
   background: #cffc87;	
}
.bluebg {
  /* background: #FFF7AD;*/
   background: #83c4fa;	
}

/* 番組の枠（上なしバージョン） */
.content-box-break-top {
  border-top: none;
  border-bottom: solid 1px gray;
  border-left: solid 1px gray;
  border-right: solid 1px gray;

  border-radius: 3px;
}

/* 番組の枠（下なしバージョン） */
.content-box-break-bottom {
  border-bottom: none;
  border-top: solid 1px gray;
  border-left: solid 1px gray;
  border-right: solid 1px gray;

  border-radius: 3px;
}

/* 放送開始時間 */
.content-minute {
  margin-left: 3px;
  color: gray;
  overflow: hidden;
}

/* 番組名 */
.content-title {
  overflow-wrap: break-word;
  overflow: hidden;
}

/* 番組内容 */
.content-discription {
  margin-top: 3px;
  color: darkgray;
}