/*map_mpodal.css*/

.modalCont {
	display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
    max-width: 960px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
	background:#ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
	background:#666;
}

.modaal-overlay {
	opacity: 1!important;
	background: rgba(0,0,0,0.7)!important;
}

.sc_mBox {
	display: flex;
	column-gap: 4%;
}

.sc_mBox > * {
  flex: 1;
  min-width: 0;
}

.sc_mBox .sc_mBox_tit {
	line-height: 1.6;
	font-size: 2.2rem;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 20px;
}

.sc_mBox p {
	line-height: 1.6;
}

.sc_mbox_dl {
	margin-top: 24px;
}

.sc_mbox_dl dt,
.sc_mbox_dl dd {
	line-height: 1.6;
	padding-left: 20px;
}

.sc_mbox_dl dt {
	font-size: 1.8rem;
	font-weight: 500;
	position: relative;
	margin-top: 12px;
}

.sc_mbox_dl dt:before {
	content: '';
	width: 11px;
	height: 11px;
	background-color: #005BAC;
	display: inline-block;
	position: absolute;
	top: 10.5px;
	left: 0;
	
}

@media screen and (max-width:767px) {
	.sc_mBox {
		display: block;
	}
	.sc_mBox > * {
		width: 100%;
	}
	.sc_mBox_img {
		margin-top: 20px;
	}
	.sc_mbox_dl {
		margin-top: 16px;
	}
	.sc_mBox .sc_mBox_tit {
		font-size: 1.8rem;
		margin-bottom: 16px;
	}
	.sc_mBox p {
		font-size: 1.4rem;
	}
	.sc_mbox_dl dt {
		font-size: 1.4rem;
	}
	.sc_mbox_dl dd {
		font-size: 1.4rem;
	}
	.sc_mbox_dl dd ul li {
		font-size: 1.4rem;
	}
	.sc_mbox_dl dt:before {
		top: 6.5px;
	}
	.modaal-content-container {
		padding: 20px 20px;
	}
}


