@charset "UTF-8";

#cocoro_entry_modal{
	display: none;
	height: 100vh;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9999;
}
.cocoro_entry_modal_bg{
	background: rgba(0,0,0,0.4);
	height: 100vh;
	position: fixed;
	width: 100%;
}
.cocoro_entry_modal_content{
	background: #fff;
	border-radius: 8px;
	left: 50%;
	padding: 40px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 40%;
	box-sizing: border-box;
}
.cocoro_entry_modal_content .cocoro_entry_modal_close{
	position: absolute;
	width: 24px;
	top: -40px;
	right: 0;
}
.cocoro_entry_modal_content .cocoro_entry_modal_close img{
	width: 100%;
}
.cocoro_entry_modal_ttl{
	text-align: center;
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: #bc007f 2px solid;
	font-size: 18px;
}
.cocoro_entry_modal_txt{
	margin-bottom: 20px;
	font-size: 16px;
}
.cocoro_entry_modal_btn{
	width: 50%;
	padding: 10px;
	border-radius: 8px;
	display: block;
	background: #bc007f;
	color: #ffffff !important;
	text-decoration: none;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	margin: 40px auto 30px;
	text-decoration: none;
	box-sizing: border-box;
}
.cocoro_entry_modal_btn:hover{
	text-decoration: none;
	color: #ffffff !important;
	opacity: 0.8;
}
.cocoro_entry_modal_img{
	width: 180px;
	margin-left: auto;
}

@media only screen and (max-width: 767px){
	.cocoro_entry_modal_content{
		width: 90%;
		padding: 20px;
	}
	.cocoro_entry_modal_ttl{
		font-size: 16px;
	}
	.cocoro_entry_modal_txt{
		margin-bottom: 10px;
		font-size: 14px;
	}
	.cocoro_entry_modal_btn{
		width: 100%;
		margin: 30px auto 20px;
	}
	.cocoro_entry_modal_img{
		width: 60%;
	}
}

@media only screen and (max-width: 374px){
	.cocoro_entry_modal_content{
		top: 65%;
	}
}