@charset 'Shift_JIS';
/* jalanModalCntSp.css */

/* modal */
.modal {
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	position: fixed;
	z-index: 1100;
	top: 0;
	left: 0;
	display: none;
	overflow: auto;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: auto;
	padding: 32px 0;
	background-color: rgba(0, 0, 0, .4);
}
.modal .modalClose {
	font-size: 0;
	position: absolute;
	z-index: 1100;
	top: 42px;
	right: 20px;
	overflow: hidden;
	width: 31px;
	text-indent: -100%;
	color: #fff;
}
.modal .modalClose-icon {
	display: block;
	width: 24px;
	height: 24px;
	margin-bottom: 2px;
	margin-left: 4px;
	background: url('/assets/img/common/icons/icon_closeround_gra.svg') center no-repeat;
	background-size: 12px;
}
.modal .modalContent {
	width: 100%;
}
.modal .modalContent-text {
	font-size: 14px;
	line-height: 1.45;
	box-sizing: border-box;
	margin: 0 16px;
	padding: 16px;
	color: #3b1800;
	border-radius: 4px;
	background-color: #fff;
}
.modal .modalContent-text .title {
	font-weight: bold;
}
.modal .modalContent-text .content {
	margin-top: 14px;
}
.modal .modalContent-text .link {
	font-size: 12px;
	margin-top: 14px;
	text-align: right;
}
.modal .modalContent-text .link a:link {
	color: #1558ce;
}
.modal .modalContent-text .link a:visited {
	color: #7607f1;
}

/* showModal */
html.showModal, body.showModal {
	position: fixed !important;
	width: 100%;
}
.showModal .modal {
	display: block;
}

/* modalContentWrap */
.modalContentWrap {
	display: none;
}

/*
/* このファイルにはモーダル枠の style のみを定義しています。
/* モーダル内コンテンツの style は、画面に紐付く CSSファイル に定義してください。
 */
