.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear
}

.fade.in {
	opacity: 1
}

.close {
	top: -7px;
	right: 15px;
	position: absolute;
	font-size: 50px;
	color: #5d5d5d;
	z-index: 10;
	font-family: 'HarmonyOS_Sans_SC_Light';
}

.close:focus,
.close:hover {
	color: #920d14;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50)
}

button.close {
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0;
	-webkit-appearance: none
}

.modal {
	width: 100%;
	height: 100%;
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999999999;
	outline: 0;
}

.modal.fade .modal-dialog {
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	-o-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: -webkit-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: transform .3s ease-out
}

.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.modal-header {
	position: absolute;
	right: 3px;
	top: 8px;
}

.modal-dialog {
	position: relative;
	width: 1200px;
	height: 70%;
	padding: 30px 30px;
	background-color: #fff;
	margin: 5% auto 0 auto;
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
}

.modal-content {
	height: 100%;
	overflow: auto;
	position: relative;
}

.modal-content::-webkit-scrollbar {
	width: 3px;
	height: 1px;
}

.modal-content::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #920d14;
}

.modal-content::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	background: #ededed;
}


.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999999;
	background-color: #000
}

.modal-backdrop.fade {
	opacity: 0;
	filter: alpha(opacity=0)
}

.modal-backdrop.in {
	opacity: .5;
	filter: alpha(opacity=50)
}

.modal-title {
	font-size: 32px;
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: 1px solid #bfbfbf;
}

.modal-content h5 {
	font-size: 24px;
	padding: 15px 0;
}

.modal-memo {
	font-size: 22px;
	color: #898989;
}

.modal-body {
	position: relative;
	font-size: 18px;
	line-height: 35px;
	color: #000;
	font-family: 'HarmonyOS_Sans_SC_Light';
}

.modal-mail {
	margin-top: 40px;
	font-size: 29px;
	color: #898989;
	padding-left: 45px;
	position: relative;
}

.modal-mail:before {
	content: '';
	width: 37px;
	height: 29px;
	transition: 0.3s;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -14.5px;
	z-index: 20;
	background-image: url(../icon01.png);
	background-size: 100%;
}

.modal-mail a {
	color: #920d14;
}

.modal-mail a:hover {
	margin-left: 10px;
}

.modal-body video {
	width: 100%;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}

@media (max-width:1200px) {
	.modal-dialog {
		width: 90%;
	}

	.modal-content {
		padding: 30px 20px;
	}
}

@media (max-width:650px) {
	.modal-content {
		padding: 10px 10px;
	}
}