@charset "utf-8";
/* ------------------------------------
モーダル
------------------------------------ */
.modalOpenBtn {
	cursor: pointer;
	margin: 16px 0;
	background: url(/common/img/ico_arrow04.png) no-repeat #8d8dca;
	background-position: 20% 48%;
	background-size: 9px 14px;
	letter-spacing: 0.08em;
	text-decoration: none;
	width: fit-content;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 16px 72px 16px 88px;
	border: none;
}

.modalOpenBtn:hover {
	background-color: #152c57;
	color: #fff;
	text-decoration: none;
	opacity: 1;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	display: none;
	z-index: 1000;
	background-color: rgba(255, 255, 255, .30);
	backdrop-filter: blur(6px);
}

.modal.show {
	opacity: 1;
	pointer-events: auto;
}

.modalContent {
	background: #fff;
	padding: 24px 16px 0;
	position: relative;
	max-width: 1200px;
	max-height: calc(100% - 80px);
	width: 94%;
	height: auto;
	overflow-y: auto;
	box-shadow: 0 2px 10px rgba(0,0,0,0.3);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal.show .modalContent {
	opacity: 1;
}

.modalClose {
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 20px;
	font-weight: normal;
	cursor: pointer;
	color: #8d8dca;
	border: 2px solid #8d8dca;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	text-align: center;
	line-height: 22px !important;
}

.modalCloseWrap{
	display: flex;
	justify-content: center;
	align-items: center;
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: #fff;
}

.modalClose2 {
	background-color: #8d8dca;
	padding: 8px 32px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	border: none;
}

.modalOpen {
	overflow: hidden;
}


/* --modal内部のstyle-- */
.modal .modalContent section {
	margin-bottom: 30px;
}

.modal .modalContent h2 {
	font-size: 24px;
	color: #152c57;
	margin: 30px 0;
	padding: 0 0 5px 0;
	border-bottom: 1px solid #152c57;
}

.modal .modalContent h3 {
	margin: 0px auto 12px;
	line-height: 1em;
	cursor: default;
	padding: 12px;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
	color: #fff;
	background: #233863;
	position: relative;
}

.modal .modalContent section a {
  overflow-wrap: break-word;
}

.modal .modalContent section ul {
	list-style: disc;
	margin: 0 24px;
}

.modal .modalContent section dl:last-of-type {
	margin-bottom: 10px;
}

.privacyIndent li {
	padding-bottom: 10px;
}