@charset "UTF-8";
/*--------------------------------------------------
カラー設定
濃いレッド　　　　　　　#D10043
背景ブラック　　　　　　#00041B
オレンジ　　　　　　　　#F4A43B
ピンク　　　　　　　　　#F43BD2

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));

@media screen and (max-width: 795px) {

}

@media screen and (max-width: 420px) {

}


--------------------------------------------------*/

/*==================================================
座長・発表者の皆様へ
==================================================*/

/*発表形式 テーブル*/
.presen-format .venue{
	width: 6em;
}
.presen-format .on-demand{
	width: 10em;
}
@media screen and (max-width: 420px) {
	.presen-format .on-demand{
		width: 8em;
	}
}
.presen-format td.venue{
	text-align: center;
}
.presen-format td.on-demand{
	text-align: center;
}

/*カッコ付き数字リスト*/
ol.half-bracket {
  list-style: none; /* デフォルトの数字を非表示 */
  counter-reset: item; /* カウンターを初期化 */
  padding-left: 25px; /* 左側の余白を調整 */
}

ol.half-bracket > li {
  counter-increment: item; /* カウンターを進める */
  position: relative;
}

ol.half-bracket > li::before {
  content: "(" counter(item) ")"; /* 半角のカッコで囲む */
  position: absolute;
  left: -25px; /* 数字の位置を左にずらして整列 */
  width: 20px;
  text-align: right;
}

/*発表時間　テーブル*/
.time_schedule .time_head {
	width: 30%;
}

/*ケースブロック*/
.case_block {
	display: inline-block;
	margin: 10px 0;
	padding: 4px 10px;
	background-color: #6B6B6B;
	color: white;
}

/*貼り付け・撤去　テーブル*/
.set_time .date {
	width: 30%;
}
.set_time .label {
	width: 30%;
}
@media screen and (max-width: 420px) {
	.set_time .date {
		width: initial;
	}
	.set_time .label {
		width: initial;
	}
}

/*演題発表用ボード*/
.bord_block {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.bord_text {
	flex: 1;
}
.bord_image {
	min-width: 280px;
	text-align: center;
}
.bord_image img {
	width: 100%;
	vertical-align: top;
}
