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

/*meetings.css*/

.bl_float_left {
	width: 59%;
}
.bl_float_right {
	width: 39%;
}
@media screen and (max-width:900px){
	.bl_meetings_1 {
		text-align: center;
	}
	.bl_float_left {
		float: none;
		display: inline-block;
		width: auto;
		text-align: left;
	}
	.bl_float_right {
		float: none;
		display: block;
		width: 100%;
		text-align: center;
	}
	.bl_float_right img {
		margin: auto;
	}
}


/*テーブル frontPage.css > .bl_profile を改造*/
.bl_table {
	display: block;
	overflow: hidden;
	margin: 35px auto 35px;
	max-width: 1050px;
	padding: 0 25px;
}
.bl_table + hr {
	display: block;
	overflow: hidden;
	border-top: 1px solid #a3a3a3;
	clear: both;
	max-width: 1050px;
	margin: 0 auto;
}
.bl_table ul {
	list-style: none;
	padding: 0;
}
.bl_table .bl_table_head {
	width:13.5em;
	float: left;
	clear: both;
}
.bl_table .bl_table_head h3 {
	color:var(--theme-color);
	font-size: 1.125rem;
	line-height: 1.2;
	margin-bottom: 1.2em;
}
.bl_table .bl_table_data {
	width:calc(100% - 13.5em);
	float: left;
	box-sizing: border-box;
}
.bl_table_data > p {
	margin-bottom: 1em;
	font-size: 0.96rem;
}
.bl_table .bl_table_data ul {
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.bl_table .bl_table_data li {
	padding-left: 1em;
	margin-bottom: 0.5em;
	line-height: 1.5;
	font-size: 0.96rem;
	padding-right: 1em;
	width: calc((100% - 25px - 4.5em)/3);
}
.bl_table .bl_table_data li::before {
	content:"⚫︎";
	color:var(--theme-color);
	margin-left: -1em;
}
.bl_table .bl_table_data h4 {
	color:var(--theme-color);
	font-weight: bold;
	margin-bottom: 1em;
}
@media screen and (max-width:1070px){
	.bl_table .bl_table_head {
		float: none;
		display: block;
	}
	.bl_table .bl_table_data {
		float: none;
		display: block;
		width: 100%;
	}
	.bl_table .bl_table_data li {
		width: 33%;
		box-sizing: border-box;
	}
}
@media screen and (max-width:880px){
	.bl_table .bl_table_data li {
		width: 50%;
	}
}
@media screen and (max-width: 590px) {
	.bl_table {
		padding: 0;
	}
	.bl_table .bl_table_data li {
		width: 100%;
	}
}