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

/*臨床研究相談・支援窓口*/

.contents_block {
	width: 100%;
	padding: 10px;
	background-color: #EEF4F3;
	
}

/*ヘッダーflex*/
.contents_header_flex {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 20px;
}
.header_content {
	flex: 1;
}
.poster_image {
	width: 200px;
	margin: 0 auto 20px;
}
.poster_image img {
	vertical-align: top;
	width: 100%;
	border: 1px solid #363636;
}
@media screen and (max-width: 500px) {
	.contents_header_flex {
		display: block;
	}
}

/*項目名*/
.item_name {
	width: 100%;
	padding: 0px 10px;
	background-color: #CE6CA0;
	font-size: 14px;
	color: white;
	text-align: center;
}

/*内容のブロック*/
.item {
	padding: 0 1em;
	font-size: 15px;
	color: #061146;
}
@media screen and (max-width: 500px) {
	.item {
		padding: 0;
	}
}

/*開催日時のインデント*/
.date_indent {
	padding-left: 5.6em;
}

/*相談員*/
.counselor_flex {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.counselor dt {
	font-weight: 600;
	width: 85px;
}
.counselor dd {
	width: 100%;
	margin-left: 0;
	font-size: 12px;
	line-height: 1.5em;
	padding-top: 3px;
	padding-left: 1em;
	text-indent: -1em;
	flex: 1;
}
@media screen and (max-width: 500px) {
	.counselor dd {
		flex: none;
	}
}

/*QRコード*/
.image_block {
	text-align: center;
}
.image_block img {
	vertical-align: top;
	max-width: 200px;
	width: 100%;
}

