@charset "utf-8";
/* CSS Document */

#news-list{
	margin: 80px auto;
}
#news-list h2{
	text-align: center;
	font-size: 200%;
	margin-bottom: 1em;
}
	
#news-list .panel{
	width: 90%;
	max-width: 1080px;
	margin: 20px auto;
	background: #fff;
	box-sizing: border-box;
	padding: 20px;
	border: 1px solid #ddd;
}
#news-list .panel ul{
	box-sizing: border-box;
	padding: 20px;
}
#news-list .panel .l_btn{
	text-align: center;
	margin: 25px auto 0 auto;
	min-width: 100px;
	max-width: 150px;
}

.pickup{
	padding: 30px 0 0 0;
	display: flex;
	flex-wrap: wrap;
}
.pickup li{
	width: 25%;
}
.pickup li a{
	display: block;
	color: #fff !important;
	text-decoration: none !important;
	transition: all ease .3s;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
.pickup li a:hover{
	box-shadow: 0 5px 20px 0 rgba(0,0,0,0.1);
}
.pickup article{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	color: #fff;
	padding: 5px 30px;
	width: 100%;
	box-sizing: border-box;
	transform: translateY(40%);
	transition: all ease .5s;
}
.pickup a:hover article{
	transform: translateY(0);
}
.pickup .date_cate{
	font-size: 90%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 5px;
	border-bottom: 1px solid #fff;
}
.pickup .title{
	font-weight: bold;
	transition: all ease .3s;
}
.pickup .title span{
	font-weight: normal;
	margin-top: 10px;
	display: block;
	font-size: 90%;
}
.pickup figure{
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: #000;
}
.pickup figure img{
	transition: all ease .3s;
	opacity: 0.8;
	transform: scale(1.02);
}
.pickup a:hover figure img{
	transform: scale(1.06);
	opacity: 0.5;
}


@media screen and (max-width: 999px){ /* tablet,smartphone */
	#visual{
		height: 60vh;
	}
	
	#visual .h1-bar{
		line-height: 1.4;
	}
	#visual .h1-bar em{
		padding-left: 0;
		margin-bottom: 15px;
	}
	#visual .h1-bar em,
	#visual .h1-bar small span{
		display: block;
	}

	.pickup li{
		width: 50%;
	}
	.pickup figure{
		height: 250px;
	}
}
@media screen and (min-width: 0px) and (max-width: 600px){ /* smartphone */
	#visual{
		height: 80vh;
	}

	#news-list .panel{
		padding: 15px 10px;
	}

}

/* print-css */
@media print{
body{
	width:100%;
	box-sizing:border-box;
}
#container{
	width:100%;
	display:flex;
}
header#side{
	display:block;
	width: 25%;
	max-width:250px;
	z-index: 10;
}
#side nav{
	display:block;
	width:100%;
	height:100%;
}
header#side .box{
	position: absolute;
	left: 0;
	top: 0;
	min-height: 100%;
	width: 100%;
	background: #fff;
	border-bottom:none;
	border-right: 1px solid #ddd;
}
header#side nav .side_links{
	margin-top: 50px;
}
#fix_navi{
	display:block;
	position:absolute;
	width: 100%;
}
#fix_navi .box{
	font-size:0.7vw;
}

#visual,
#visual > ul{
	width:100%;
	height: auto ;
	max-height:400px;
}
#visual .slick-list,
#visual .slick-track{
	width:100%;
	height: auto;
	max-height:400px;
}
#visual img{
	width:100%;
	height:400px;
}
#visual .slide-animation{
    animation: fade 0s 0s !important;
}
@keyframes fade {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

#news-list .tablabel li a{
	min-width:auto;
	box-sizing:border-box;
	font-size:1vw;
	white-space:nowrap;
	padding:2px 15px;
}

#f_sitemap{
	display:block;
}

}