@charset "UTF-8";
/* CSS Document */

/*プログラム*/

/*ページ内リンク*/
.page_link {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
	margin: 0;
	padding: 0;
}
.page_link_item {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.page_link_item a {
	padding-left: 14px;
	color: #002DAD;
}
.page_link_item a::after {
	position: absolute;
	content: "";
	top: 5px;
	left: 0;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid #002DAD;
}

.page_link_item a:hover {
	color: #FF8725;
}
.page_link_item a:hover::after {
	border-left: 8px solid #FF8725;
}

/*
カテゴリー名
------------------*/
.category_name {
	position: relative;
	margin: 40px 0 20px;
	padding: 6px 0 6px 40px;
	font-weight: 600;
	font-size: 20px;
	border-top : 2px solid #f39800;
	border-bottom : 2px solid #f39800;
	background-color: #FFFAEC;
}
.category_name::before {
	position: absolute;
	content: "";
	top: 10px;
	left: 6px;
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background-color: rgba(255,162,0,1.00);
}
.category_name::after {
	position: absolute;
	content: "";
	top: 4px;
	left: 14px;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	background-color: rgba(255,224,0,0.6);
}

/*
プログラムアイテム
-----------------------------------*/
/*プログラムコンテナ*/
.program_container {
	display: block;
	margin-bottom: 20px;
	width: 100%;
	background-color: #FFFBEB;
}
/*
テーマプロック
-------------------------------------*/
.program_theme {
	padding-bottom: 10px;
	background-color: #E4E7E8;
	border-bottom: 1px solid #B6B6B6;
}
/*テーマブロックのflex*/
.program_theme_flex {
	display: flex;
	justify-content: space-between;
}
/*セッション名*/
.session_name {
	display: inline-block;
	margin-bottom: 6px;
	padding: 1px 30px 0px 10px;
	background-color: #FF8725;
	clip-path: polygon(0 0 , 100% 0, calc(100% - 20px) 100%, 0 100%);
	color: white;
	font-size: 13px;
}
/*タグブロック*/
.tag_block {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 6px;
	padding-right: 6px;
}
/*タグ*/
.tag_item {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 12px;
	height: 20px;
}
.tag_red {
	background-color: #FF0000;
	color: white;
}
.tag_blue {
	background-color: #0007D2;
	color: white;
}
/*テーマ名*/
.theme_name {
	padding-left: 20px;
	font-size: 17px;
	font-weight: 600;
}

/*---------------------------*


/*
日時・場所
-------------------------------------*/
.date_time_block {
	padding: 4px;
	width: 100%;
	background-color: #ECF0F0;
	border-bottom: 1px solid #B6B6B6;
}
.date_time_item {
	font-size: 13px;
	text-align: right;
	line-height: 1.5em;
}
/*
プログラム　アイコン設定*/
.program_icon {
  position: relative;
  width: 18px;
  height: 18px;
  top: 3px;
  filter: brightness(0) saturate(100%) invert(53%) sepia(83%) saturate(824%) hue-rotate(342deg) brightness(102%) contrast(101%);
}

/*
名前所属
-------------*/
.program_inner {
	display: block;
	padding: 10px;
	background-color: #F1F6F6;
}

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;
}

/*教育セミナー演題名*/
.abstract_title {
	margin-top: 10px;
	font-weight: 600;
	padding-left: 0.7em;
	/*color: #000E79;*/
}

