body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	overflow-y: scroll;
}
.modal_bg {
	position: fixed;
	z-index: 9997;
	display: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: rgba(0, 20, 60, 0.8);
}
.modal_body {
	position: fixed;
	z-index: 9999;
	display: none;
	width: 90%;
	max-width: 820px;
	max-height: 90%;
	overflow-y: auto;
	box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
	.modal_body {
		width: 80%;
	}
}
.modal_body_inner {
	position: relative;
	z-index: 9998;
	background-color: #fff;
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
}
.modal_body_inner .speaker {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding: 20px;
	background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
	.modal_body_inner .speaker {
		display: block;
	}
}
.modal_body_inner .speaker .speaker_image {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	width: 170px;
	height: auto;
}
@media screen and (max-width: 767px) {
	.modal_body_inner .speaker .speaker_image {
		width: 110px;
		margin-left: auto;
		margin-right: auto;
	}
}
.modal_body_inner .speaker .speaker_image img {
	width: 100%;
	height: auto;
}
.modal_body_inner .speaker .speaker_info {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	width: calc(100% - 215px);
}
@media screen and (max-width: 767px) {
	.modal_body_inner .speaker .speaker_info {
		width: 100%;
		text-align: center;
	}
}
.modal_body_inner .speaker .speaker_info span {
	display: block;
}
.modal_body_inner .speaker .speaker_info span.name {
	margin: 0 0 10px;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0;
	color: #224e9d;
}
@media screen and (max-width: 767px) {
	.modal_body_inner .speaker .speaker_info span.name {
		margin: 15px 0 7px;
		letter-spacing: 0;
	}
}
.modal_body_inner .speaker .speaker_info span.company {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.625;
	letter-spacing: 0;
}
@media screen and (max-width: 767px) {
	.modal_body_inner .speaker .speaker_info span.company {
		font-size: 15px;
	}
}
.modal_body_inner .speaker .speaker_info span.position {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.43;
	letter-spacing: 0;
}
@media screen and (max-width: 767px) {
	.modal_body_inner .speaker .speaker_info span.position {
		font-size: 12px;
	}
}
.speaker_body {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	padding: 30px 40px;
	letter-spacing: 0;
}
.speaker_body h4 {
	color: #224e9d;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 10px;
}
.speaker_body p {
	margin: 0 0 15px;
}
.speaker_body p:last-child {
	margin: 0;
}
@media screen and (max-width: 767px) {
	.speaker_body {
		padding: 20px 20px 30px;
	}
}
.modal_close {
	color: transparent;
	position: absolute;
	top: 20px;
	right: 0;
	z-index: 9999;
	width: 60px;
	height: 60px;
	margin-left: auto;
	background-image: url('../media/images/common/modal_close.svg');
	background-size: cover;
	transition: opacity 0.2s;
	cursor: pointer;
}
.modal_close:hover {
	opacity: 0.8;
}
