@charset "UTF-8";

h3 {
    color: #004190;
	font-size: 20px;
}
.box .flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.box table {
	border: none;
}

.box table tbody th {
	width: 130px;
	background: rgba(0,0,0,0);
	border: none;
	color: #4D4D4D;
	font-weight: bold;
	text-align: left;
	vertical-align: text-top;
	box-sizing: border-box;
}

.box table tbody td {
	padding-bottom: 30px;
	border: none;
	color: #4D4D4D;
	text-align: left;
	vertical-align: text-top;
	box-sizing: border-box;
	line-height: 1.6em;
}

.box iframe {
	width: 100%;
}

/* タブレット・スマートフォン版 */
@media screen and (max-width:999px) {
	.box table tbody th {
		width: 5em;
	}
	
	.box .flex>img {
		max-width: 280px;
	}
}

/* スマートフォン版 */
@media screen and (max-width:767px) {
	.box .flex {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.box .flex>img {
		max-width: 100%;
		margin: 0 auto 20px;
	}
	
	.box table tbody th {
		display: block;
		width: 100%;
		padding: 5px 0;
	}
	
	.box table tbody td {
		display: block;
		width: 100%;
		padding: 5px 0 20px;
		font-size: 0.9em;
	}
}