@charset "UTF-8";
/*--------------------------------------------------
カラー設定
濃いレッド　　　　　　　#D10043
背景ブラック　　　　　　#00041B
オレンジ　　　　　　　　#F4A43B
ピンク　　　　　　　　　#F43BD2

--------------------------------------------------*/

/*==================================================
プログラム
==================================================*/

/*
ページリンク
==================================================*/
.page_link {
	display: flex;
	flex-wrap: wrap;
	max-width: 640px;
	margin: 0 auto;
	gap: 10px;
}
.page_link_item {
	position: relative;
	display: inline-block;
	clip-path:polygon(6px 0, 100% 0, 100% 100%, 0 100%, 0 6px);
}
.page_link_item::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-right: 1px solid white;
	border-bottom: 1px solid white;
	transform: rotate(45deg);
	top: calc(50% - 6px);
	right: 8px;
}
.page_link_item a {
	display: block;
	padding: 2px 30px 2px 10px;
	width: 100%;
	background-color: #4A4B4E;
	font-size: 12px;
	color: white;
	transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
	.page_link_item a:hover {
		background-color: #00041B;
	}
}
@media (hover: none) {
	.page_link_item a:active {
		background-color: #00041B;
	}
}

/*
プログラムアイテム
==================================================*/
.program_item {
	display: block;
	width: 100%;
	background-color: #E0E0E0;
}
/*セッション名*/
.program_session {
	position: relative;
	display: inline-block;
	padding: 2px 40px 2px 10px;
	background-color: #D10043;
	color: white;
	clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.program_session::before {
	position: absolute;
	content: "";
	width: 14px;
	height: 100%;
	top: 0;
	right:6px;
	background-color: #E0E0E0;
	clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
/*演題タイトル*/
.abstract_title {
	margin: 10px 0;
	padding-left: 20px;
	font-size: 17px;
	font-weight: 600;
	color: #0010A2;
}
/*時間場所*/
.program_overview {
	display: block;
	padding: 3px 10px;
	width: 100%;
	background-color: #DADADA;
	border-top: 1px solid #898989;
	border-bottom: 1px solid #898989;
	font-size: 13px;
	text-align: right;
}
/*
プログラム　アイコン設定*/
.program_icon {
  position: relative;
  width: 18px;
  height: 18px;
  top: 3px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(82%) saturate(7492%) hue-rotate(336deg) brightness(81%) contrast(102%);
}
/*
名前所属
-------------*/
.program_inner {
	display: block;
	padding: 10px;
	background-color: #E0E0E0;
}

table.program_table {
	border: none;
	width: 100%;
}
.program_table th {
	padding: 2px 0;
	text-align: right;
	vertical-align: top;
	white-space: nowrap;
	font-size: 12px;
	font-weight: 400;
	width: 4em;
}
.program_table td {
	text-align: left;
	vertical-align: top;
}
@media screen and (max-width:767px) {
	.program_table td{
		display: block;
	}
}
.program_table td.program_name {
	white-space: nowrap;
	width: 5em;
	font-weight: 500;
	padding: 2px 0;
}
.program_table td.program_belong {
	font-size: 12px;
	padding-left: 1em;
	padding-top: 5px;
	text-indent: -1em;
	line-height: 1.5em;
}
