.__modal-content {
	position: fixed;
	/* display: none; */
	z-index: 2000;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 60px 20px 60px 20px;
	/*border:2px solid rgba(170,170,170,1.0);*/
	background: none;
	color: rgba(0,0,0,1.0);
	background:rgba(255,255,255,1.0);
	overflow-y: auto;
}

.__modal-content p {
	margin:0;
	padding:0;
}

.modal-overlay {
	z-index:10;
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
	background:rgba(0,0,0,1.0);
}

.modal-open {
	color: rgba(255,255,255,1.0);
}
.modal-open:hover {
	cursor: pointer;
	color: rgba(255,255,255,1.0);
}
.modal-close {
	position: fixed;
	top: 45px;
	right: 60px;
	z-index: 111;
}
.modal-close:hover {
	cursor: pointer;
	color: rgba(255,255,255,1.0);
}
.modal-close img {
	max-width: 60px !important;
	height: 60px;
	transition: 0.5s all;
}
.modal-close:hover img {
	transform: rotate(360deg);
}


/*----------------------------------
** modal
----------------------------------*/
.__modal-wrap {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	color: rgba(0,0,0,1.0);
}
.__modal-inner {
	width: 780px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 70px;
}
.__modal-inner h3 {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	width: 100%;
	display: inline-block;
	position: relative;
	margin: 0 0 50px 0;
}
.__modal-inner h3:after {
	content: "";
	position: absolute;
	left: 50%;
	right: auto;
	bottom: -18px;
	border-bottom: 5px solid rgba(0,0,0,1.0);
	width: 80px;
	transform: translateX(-50%);
	transition: 0.2s all;
}

.__modal-inner table {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	border-collapse: separate;
	border-spacing: 0 10px;
	border: none;
}
.__modal-inner table th,
.__modal-inner table td {
	padding: 10px 0;
	border: none;
	margin-bottom: 20px;
	vertical-align: top;
	line-height: 2em;
}
.__modal-inner table th {
	text-align: left;
	width: 25%;
	overflow: visible;
	position: relative;
	font-weight: 700;
	color: rgba(0,0,0,1.0);
	font-size: 14px;
	border-bottom: 2px solid rgba(0,0,0,1.0);
}
.__modal-inner table td {
	width: 75%;
	padding-left: 20px;
	color: rgba(0,0,0,1.0);
	font-size: 14px;
	font-weight: 500;
	border-bottom: 2px solid rgba(0,0,0,0.1);
}
.__modal-inner table td p {
	margin-bottom: 1em;
}
.__modal-inner table td p:last-child {
	margin-bottom: 0;
}
.__modal-inner table td a {
	color: rgba(0,0,0,1.0);
	font-weight: 600;
}




.__modal-nav {
	width: 45%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 40px;
	font-family: 'Poppins', sans-serif;
}
.__modal-nav ul li a span {
	background: url(../img/cns_icon.svg) left center no-repeat;
	background-size: 70px auto;
	padding-left: 80px;
}
.__modal-nav h2 {
	font-size: 14px;
	font-weight: 700;
	padding: 0 35px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center; /* for no-flexbox browsers */
}
.__modal-nav h2:after {
	border-top: 1px solid rgba(255,255,255,0.3);
	content: " ";
	display: inline; /* for IE */
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex: 1;
	flex-grow: 1;
	margin-left: 0.5em;
}

.__modal-nav ul {
	list-style: none;
	padding-left: 0;
	font-size: 48px;
	font-weight: 900;
}
.__modal-nav ul li {
	line-height: 1;
	margin: 0;
}
.__modal-nav ul li:hover {
	line-height: 1;
	margin: 0;
}
.__modal-nav ul li a {
	padding: 0 35px;
	transition: 0.2s all;
	position: relative;
	display: block;
	color: rgba(0,0,0,1.0);
}
.__modal-nav ul li a:hover {
	background: rgba(255,255,255,1.0) url(../img/bg-modal-nav.png) top center repeat-y;
	background-size: 110% auto;
}


/*--------------------------------------
**
** スマホ
**
--------------------------------------*/
@media screen and (max-width: 768px) {
	.modal-overlay {
		z-index: 10;
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,1.0);
	}

	.modal-open {
		color: rgba(255,255,255,1.0);
	}
	.modal-open:hover {
		cursor: pointer;
		color: rgba(255,255,255,1.0);
	}
	.modal-close {
		position: fixed;
		top: 25px;
		right: 25px;
	}
	.modal-close:hover {
		cursor: pointer;
		color: rgba(255,255,255,1.0);
	}
	.modal-close img {
		max-width: 40px !important;
		height: 40px;
		transition: 0.5s all;
	}
	.modal-close:hover img {
		transform: rotate(360deg);
	}
	
	
	.__modal-inner h3 {
		font-size: 22px;
		font-weight: 700;
		text-align: center;
		width: 100%;
		display: inline-block;
		position: relative;
		margin: 0 0 50px 0;
	}
	
	.__modal-inner {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 70px;
	}
	
	.__modal-inner table th,
	.__modal-inner table td {
		padding: 10px 0;
		border: none;
		margin-bottom: 0;
		vertical-align: top;
		display: block;
	}
	.__modal-inner table th {
		text-align: left;
		width: 100%;
		overflow: visible;
		position: relative;
		font-weight: 700;
		color: rgba(0,0,0,1.0);
		font-size: 14px;
		border-bottom: 2px solid rgba(0,0,0,1.0);
	}
	.__modal-inner table td {
		width: 100%;
		padding-left: 0;
		color: rgba(0,0,0,1.0);
		font-size: 14px;
		font-weight: 500;
		border-bottom: none;
	}
	
}




/*------------------------------------
	** contact
	------------------------------------*/
	._recruit-contact {
		text-align: center;
		height: 75%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
	}
	@media screen and (max-width: 768px) {
		._recruit-contact {
		height: 65%;
	}
	}
	
	._recruit-recruiter {
		font-size: 24px;
		font-weight: 900;
		margin: 0 0 40px 0 !important;
	}
	@media screen and (max-width: 768px) {
		._recruit-recruiter {
			font-size: 18px;
			margin: 0 0 5% 0 !important;
		}
	}
	
	._recruit-information {
		font-size: 28px;
		font-weight: 700;
		font-family: "Roboto Condensed", sans-serif;
		line-height: 2em;
	}
	@media screen and (max-width: 768px) {
		._recruit-information {
			font-size: 22px;
		}
	}
	
	.-recruit-info-link {
		color: #000;
		text-decoration: none;
		transition: 0.2s;
		-webkit-transition: 0.2s;
		-moz-transition: 0.2s;
		-ms-transition: 0.2s;
		-o-transition: 0.2s;
	}
	.-recruit-info-link:hover {
		color: #ff004d;
	}

	
	.modaal-fullscreen .modaal-close {
		background: none;
	}
	
	.modaal-close:before {}