*{
		box-sizing: border-box;
		margin: 0;
		padding: 0;
}
.content{
		margin: 0 auto;
		padding: 40px;
}
.modal{
		display: none;
		height: 100vh;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 2;
}
.modal__bg{
		background: rgba(0,0,0,0.8);
		height: 100vh;
		position: absolute;
		width: 100%;
}
.modal__content{
	background: #fff;
	left: 50%;
	/* padding: 40px; */
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	/* width: auto; */
	width: 80%;
	max-width: 800px;
}
.modal__content_ttl{
	color: #065091;
	font-size: 16px;
}
.modal__content_tb{
	margin: 0 auto;
	width: 100%;
}
.modal__content_tb tbody tr th,.modal__content_tb tbody tr td {
		border: 1px solid #fff;
		padding: 0.5em;
		font-size: 12px;
}
.modal__content_tb tbody tr th{
	background: #065091;
	color: #fff;
	font-size: 16px;
	text-align: center;
}
.modal__content_tb tbody tr td{
	font-size: 14px;
}
.modal__content_tb tbody tr:nth-child(odd) td{
	background: #efefef;
}
.modal__content_note{
	font-size: 12px;
	text-align: right;
}
.modal__content_inner{
	/* position: relative; */
	padding: 40px;
	max-height: 60vh;
}
.modal__content .js-modal-close{
	position: absolute;
	right: 0px;
	top: -55px;
}
@media screen and (max-width: 768px) {
	.modal__content {
		/* padding: 20px; */
		width: 80%;
	}
	.modal__content_inner{
		padding: 20px;
	}
	.modal__content .js-modal-close{
	position: absolute;
	/* right: -15px; */
	/* top: -60px; */
	}
}

body.modal_open {
	overflow: hidden;
}
.modal__content .flex3col {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.modal__content .flex3col > * {
	flex-grow: 1;
}
.modal__content .flex3col > *:not(:first-of-type) {
	margin-left: 20px;
}
.modal__content .flex3col > * img {
	display: block;
}
.modal__content .kome {
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.modal__content .flex3col {
		display: block;
	}
	.modal__content .kome {
		font-size: calc((26 / 750) * 100vw);
	}
	.modal__content .flex3col > *:not(:first-of-type) {
		margin-left: 0;
		margin-top: 10px;
	}
}
