@charset "utf-8";

/*===============================================
 共通
===============================================*/
/* section間のマージン */
#content{
  display: grid;
  gap: 60px;
}

/* section内、コンテンツ間のマージン */
#content section{
  display: grid;
  gap: 20px;
}

/* 既存スタイルのmargin削除 */
#content section p{
  margin: 0;
}

#content section .title{
  margin: 0;
}

#content section .article_list{
  margin: 0;
}

/* バナー */
.bana_img{
  border-radius: 6px;
}

/*===============================================
 開催概要
===============================================*/
/* プログラム */
.program{
  border-collapse: collapse;
  font-size: 15px;
  width: 100%;
}

.program .label{
  background-color: #fff1d1;
}

.program th,
.program td{
  border: 1px solid #ccc;
  padding: 6px 10px;
}


/*===============================================
 ライブ中継
===============================================*/
.live{
  display: grid;
  gap: 10px;
}

.live p{
  display: flex;
  justify-content: center;
  font-size: 14px;
}

/*youtube動画埋め込み*/
.youtube{
  position: relative;
	width: 100%;
  height: auto;
  float: none;
  margin: 0 auto;
}

.youtube:before{
  content:"";
  display: block;
  padding-top: 56.25%;
}

.youtube iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
