@charset "UTF-8";
/*
modal
------------------------------------------------*/
.lock {
	overflow:hidden;
}
.modal-overlay {
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,0.70);
	position:fixed;
	top:0;
	left:0;
	display:none;
	z-index: 999;
}
.modal-wrap {
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	overflow:auto;
	display:none;
	z-index:10000;
}
.modalBtn {
	cursor: pointer;
}
.closeBtn{
	width: 30px;
	height: 30px;
	border-radius: 5px;
	position: absolute;
	top: -40px;
	right: 0;
	cursor: pointer;
}
.closeBtn::before ,
.closeBtn::after{
	content: '';
	width: 40px;
	height: 4px;
	background: #fff;
	border-radius: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}
.closeBtn::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}

.appliModal {
	display: none;
	width:1000px;
	margin: 60px auto;
	padding: 60px 30px 0;
	position:relative;
	overflow: scroll;
}
.modalArea{
	display: none;
	max-width:1000px;
	min-width: 800px;
	width: 90%;
	margin: 100px auto;
	position:relative;
	z-index: 1000;
	background: #e6f7f9;
	padding: 50px 50px 50px 50px;
}
.mdlInfoCenter {
	display: flex;
	justify-content: space-between;
}
.mdlInfoBottom {
	margin: 0 0 30px 0;
}
.mdlInfoCenter .mdlTxtArea {
	width: calc((100% - 330px));
}
.mdTitArea{
	width: 100%;
	background: #0AAEBF;
	margin: 0 0 15px 0;
	display: flex;
	align-items: flex-end;
	padding: 6px 0;
}
.mdTitArea .mdtit{
	font-size: 3rem;
	font-weight: bold;
	margin: 0 15px 0 20px;
	color: #fff;
	letter-spacing: 0.1rem;
	display: flex;
	align-items: center;
}
.mdTitArea .mdtit span{
	display: inline-block;
	padding: 4px 0 0 0;
	font-size: 2rem;
	margin: 0 0 0 8px;
}
.mdTitArea .mdtitsub{
	font-size: 1.4rem;
	padding: 0 0 4px 0;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.1rem;
}
.mdlInfoTop {
	margin: 0 0 35px 0;
}
.mdcopy {
	font-size: 2.2rem;
	font-weight: bold;
	color: #0AAEBF;
}
.mdInfoTit {
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 0 10px 0;
	padding: 0 0 0 10px;
	border-left: 5px solid #0AAEBF;
}
.mdInfoExp{ 
	font-size: 1.4rem;
	margin: 0 0 5px 0;
	text-align: justify;
}
.mdInfoNotos{ 
	font-size: 1.1rem;
	text-indent: -1.1rem;
	padding: 0 0 0 11px;
}
.mdlPhArea {
	width: 280px;
}
.mdlPhArea img{
	width: 100%;
}
.modalArea .mdBtn {
	width: 100%;
	max-width: 227px;
	margin: 10px auto 0 auto;
}
.modalArea .mdBtn .btnG{
	width: 100%;
	background: #0AAEBF;
	text-align: center;
	border-radius: 50px;
	display: inline-block;
	box-shadow: 0 5px 0 #00979E;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 4rem;
	color: #fff;
	cursor: pointer;
	position: relative;
}
.modalArea .mdBtn .btnG:active{
	box-shadow: none;
	transform: translateY(5px);
}
.modalArea .mdBtn .btnP{
	width: 100%;
	background: #D678A8;
	text-align: center;
	border-radius: 50px;
	display: inline-block;
	box-shadow: 0 5px 0 #C06497;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 4rem;
	color: #fff;
	cursor: pointer;
	position: relative;
}
.modalArea .mdBtn .btnP::before{
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 45%;
	left: 15px;
}
.modalArea .mdBtn .btnP:active{
	box-shadow: none;
	transform: translateY(5px);
}
@media screen and (max-width:812px){
	.modalArea {
		width: 90%;
		max-width: 100%;
		min-width: 90%;
		padding: 30px;
	}
	.mdTitArea {
		margin: 0 0 20px 0;
		display: block;
		padding: 8px 0;
		text-align: center;
	}
	.mdlTxtArea {
		width: 100%;
	}
	.mdTitArea .mdtit {
		font-size: 2.1rem;
		display: block;
		margin: 0;
		line-height: 1.1;
	}
	.mdTitArea .mdtit span{
		padding: 4px 0 0 0;
		font-size: 1.6rem;
		margin: 0;
	}
	.mdTitArea .mdtitsub{
		font-size: 1.2rem;
		padding: 0;
		margin: 5px 0 0 0;
	}
	.mdlInfoTop {
		margin: 0 0 25px 0;
	}
	.mdlInfoCenter {
		flex-direction: column-reverse;
		margin: 0 0 25px 0;
	}
	.mdlInfoBottom {
		margin: 0 0 20px 0;
	}
	.mdlInfoCenter .mdlTxtArea {
		width: 100%;
	}
	.mdlPhArea{
		width: 100%;
		margin: 0 0 25px 0;
	}
	.mdcopy{
		font-size: 1.6rem;
		line-height: 1.3;
		word-break: break-all;
	}
	.mdInfoTit {
		font-size: 1.5rem;
		line-height: 1.3;
	}
	.mdInfoExp {
		font-size: 1.3rem;
		margin: 0 0 5px 0;
	}
	.modalArea .mdBtn {
		margin: 30px auto 0 auto;
	}
}