@charset "UTF-8";
/* CSS Document */
#seminar{}
#seminar .inner{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
#seminar .wrapper h3{
	color: #0086c1;
	font-size: 160%;
	font-weight: 800;
	line-height: 1.2em;
	border: solid 1px #0086c1;
	/*border-radius: 0.5em;*/
	text-align: center;
	padding: 0.5em;
	margin-bottom: 1em;
}
#seminar .wrapper h3 .small{
	font-size: 75%;
	font-weight: 500;
}
#seminar .wrapper h4{
	color: #0086c1;
	font-size: 140%;
	font-weight: 700;
	line-height: 1.5em;
	margin-bottom: 0.5em;
}
#seminar .wrapper p{
	font-size: 120%;
	line-height: 1.5em;
	margin-bottom: 1.5em;
}
#seminar .wrapper p span.br{
	margin-right: 0.5em;
}
#seminar .wrapper p.asterisk {
	color: #e63082;	
	font-weight: 300;
	line-height: 1.2em;
	text-indent: -0.5em;
	margin-left: 0.5em;
	margin-bottom: 0.5em;
}
#seminar .wrapper p.asterisk-jp {
	color: #e63082;	
	font-size: 90%;
	font-weight: 400;
	line-height: 1.2em;
	text-indent: -1em;
	margin-left: 1em;
}
.seminar-speakers ul{
	width: 100%;
	display: flex;
	align-items: center;/* 縦位置 */
	justify-content: space-between;/* 横位置 */
	flex-direction: row;/* 順番 */
	flex-wrap: wrap;/* 折り返し */
	margin: 0 auto;
}
.seminar-speakers ul li{
	width: 33%;
	max-width: 240px;
	padding: 0 10px;
	margin: 0;
}
.seminar-speakers ul li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius:50%;
	margin-bottom: 0;
}
.seminar-speakers ul li p{
	text-align: center;
}

/*600px以下の場合*/
@media screen and (max-width: 600px) {
.seminar-speakers ul{
	justify-content: center;/* 横位置 */
}
.seminar-speakers ul li{
	width: 100%;
}
}
