/**********************
 * モーダル：マイナビエントリー、会社説明会への申し込み
 */
/* 背景 */
#modal {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(102, 102, 102, 0.5);
	z-index: 1000;
}
/* モーダルメイン */
.modal-content {
	position: absolute;
	width: 90%;
	max-width: 600px;
	height: auto;
	padding: 30px 6%;
	background-color: #FFFFFF;
	border: solid 1px #bfbfbf;
	border-radius: 12px;
	box-shadow: 0px 4px 8px 2px #333;
	-moz-box-shadow: 0px 4px 8px 2px #333;
	-webkit-box-shadow: 0px 4px 8px 2px #333;
	z-index: 1100;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.modal-close {
	position: absolute;
	top: -20px;
	right: -10px;
	background: url(../images/ic_cancel.png);
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.2s;
}
.modal-close:hover {
	cursor: pointer;
}
.modal-content .content.mynavi {
	display: block;
}
.modal-content .content.rikunabi {
	display: none;
}
.modal-content .content.mailForm {
	display: none;
}
.modal-content .content p {
	margin-bottom: 4px;
}
.modal-content a {
	display: inline-block;
	width: 100%;
}
.modal-content a img {
	width: 90%;
	border: 1px solid #CCCCCC;
}
.entryWrngTextForm {
	display: none;
	color: #585858;
}
.alignRight {
	text-align: right;
	font-size: 14px;
}

/*エントリーエリア */
.modal-content .entryArea {
	position: relative;
	padding: 20px 13px;
	border: solid 1.5px #00b0f0;
 	border-radius: 10px;
 	width: auto;
	margin: 30px 2%;
}

.entryArea .entryAreaTitle{
	position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    background: #FFF;
    color: #00b0f0;
}

.entryArea .entryBox{
	width: 90%;
	text-align: center;
	margin: auto;
}
