@charset "UTF-8";

.mv {
	width:1000px;
	margin: 0 auto;
}

.content{
	padding: 1em 2em;
}

.content_wrap {
	width: 1000px;
	margin: 30px auto 40px;
}
.content_wrap h2 {
	position: relative;
	color: #003688;
	border-bottom: solid 1px #707070;
	border-left: solid 5px #003688;
	padding-top:3px;
	padding-left: 10px;
	font-weight: 400;
}
.content_wrap .information {
	padding: 0;
	margin: 1em 1em;
}
.content_wrap .information > li {
	display: flex;
	padding-top: 10px;
	padding-bottom: 15px;
	margin-bottom: 5px;
	border-bottom: dotted 1px #aaa;
}
.content_wrap .information .cat {
	display:flex;
	align-items: center;
	margin: 0 20px;
}
.content_wrap .information .cat a {
	display: block;
	font-size: 0.8em;
	text-decoration: none;
	border-radius: 5px;
	padding: 2px 5px;
}
.content_wrap .information .cat a.report {
	background:#f08c00;
	color: #fff;
}
.content_wrap .cont_col3 {
	display: flex;
	justify-content: space-between;
}
.content_wrap .cont_col3 div {
	position: relative;
	overflow:hidden;
	width: 320px;
	height: 226px;
}
.content_wrap .cont_col3:after {
	content: "";
	width: 320px;
}
.content_wrap .cont_col3 div img {
	transition:1s all;
}
.content_wrap .cont_col3 div img:hover {
	transform:scale(1.2,1.2);
	transition:1s all;
}
.content_wrap .cont_col3 div h3 {
	position: absolute;
	top: 0;
	left: calc( 50% - 115px);
	font-size: 1.5em;
	width: 230px;
	text-align:center;
}
.content_wrap .cont_col3 div p {
	position: absolute;
	top: 0;
	left: calc( 50% - 115px);
	width: 230px;
	text-align:center;
}
.content_wrap .cont_col3 div.congress h3 {
	top:60px;
	color:#fff;
	text-shadow: 1px 1px 2px #333;
	border-bottom: solid 1px #fff;
}
.content_wrap .cont_col3 div.congress p{
	top:100px;
	color:#fff;
	font-size: 1.5em;
	text-shadow: 1px 1px 2px #333;
}
.content_wrap .cont_col3 div.column h3 {
	top:60px;
	color:#fff;
	text-shadow: 1px 1px 2px #333;
	border-bottom: solid 1px #fff;
}
.content_wrap .cont_col3 div.column p{
	top:100px;
	color:#fff;
	font-size: 1.5em;
	text-shadow: 1px 1px 2px #333;
}
@media screen and (max-width: 999px) {
	/* 999px以下に適用されるCSS*/
	.mv {
		width: 100%;
	}
	.content_wrap {
		width: 96%;
		margin: 30px 3% 40px;
	}
	.content_wrap .cont_col3 {
		justify-content: flex-start;
		flex-wrap:wrap;
	}
	.content_wrap .cont_col3 div {
		margin-right: 20px;
	}
	.content_wrap .cont_col3 div.column {
		margin-right: 0;
	}
    
}
@media screen and (max-width: 780px) {
	/* 780px以下に適用されるCSS（スマホ用） */
	.content_wrap .cont_col3 {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.content_wrap .cont_col3 div {
		margin-right: 0;
		margin-bottom: 30px;
	}	
}
@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
	
}