.modal_box {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
}

.modal_bg {
	background-color: rgba(30, 30, 30, 0.9);
	height: 100%;
	width: 100%;
}

.modal_inner {
	position: relative;
	z-index: 20;
	width: 95%;
	max-width: 600px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, .6);
	padding: 30px;
}

.modal_close span {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: -3rem;
	font-size: 2rem;
	color: #ffffff;
}





/* ================================================================================

	ソリューション

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.solution_box {
		position: relative;
		text-align: center;
	}
	.solution_box::before {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/char00.png) center top / contain no-repeat;
		width: 259px;
		height: 190px;
		top: -212px;
		left: 50%;
		margin-left: -131px;
		pointer-events: none;
	}

	.solution_box area {
		cursor: pointer;
	}

	.modal_inner h3 {
		margin-top: 8px;
		font-size: 20px;
	}
	.modal_inner p {
		margin-top: 0.5em;
		text-align: left;
	}
	.modal_inner .link_cate {
		margin-top: 0.8em;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.solution_box {
		position: relative;
		text-align: center;
	}
	.solution_box::before {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/char00.png) center top / contain no-repeat;
		width: 44vw;
		height: 32vw;
		top: -31vw;
		left: 50%;
		margin-left: -22vw;
		pointer-events: none;
	}

	.solution_box area {
		cursor: pointer;
	}

	.image-map area {
		cursor: pointer;
	}

	.modal_inner {
		padding: 4vw;
	}
	.modal_inner h3 {
		margin-top: 0.5em;
		font-size: 4vw;
	}
	.modal_inner p {
		margin-top: 0.5em;
		text-align: left;
	}
	.modal_inner .link_cate {
		margin-top: 0.8em;
	}
}