@charset "utf-8";
/*========================================================================
 topics.css (あとでtopics.cssとガッチャンゴ)
========================================================================*/
div#location ul {
	padding-top: 10px;
}

.location_inner {
	width: 1190px;
	margin: 0 auto;
	position: relative;
}

.list_topicsbnr {
	width: 1190px;
	margin: -46px auto 27px;
}
/*
.list_topicsbnr li {
	margin-right: 120px;
}
*/

.list_topicsbnr li a.btn_topics {
	width: 114px;
	margin-left: 993px;
	display: block;
}

.list_topicsbnr .topicsbnr_inner {
	/*background: #fff;*/
	background-color: rgba(255,255,255,0.8);
	font-family: "メイリオ","Meiryo",verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Osaka","小塚ゴシック","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-weight: normal;
	font-size: 13px;
	text-align: left;
	line-height: 1.2;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0 0;
	position: absolute;
	top: 73px;/*38*/
	left: 0;
	right: 0;
	display: none;
	z-index: 98;
}

.list_topicsbnr .topicsbnr_inner .topicsbnr {
	letter-spacing: -.40em;
	text-align: left;
	width: 1150px;
	margin: 0 auto;
}

.topicsbnr_inner .topicsbnr li {
	letter-spacing: normal;
	width: 210px;
	margin-bottom: 30px;
	margin-right: 0;
	padding: 0 10px;
	display: inline-block;
	vertical-align: top;
}

.topicsbnr_inner .topicsbnr li a {
	text-decoration: none;
	display: block;
}


.topicsbnr_inner .topicsbnr li .topics_img {
	width: 210px;
	margin-bottom: 18px;
	transition: 0.7s;
	overflow: hidden;
}

.topicsbnr_inner .topicsbnr li .topics_img:hover {
	-moz-transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
}

.topicsbnr_inner .topicsbnr li .topics_txt {
	font-size: 18px;
	color: #000;
	display: block;
}

.topicsbnr_inner .topicsbnr li .date {
	font-size: 12px;
	line-height: 1.8;
	color: #333;
	display: block;
}

.topicsbnr_inner .topicsbnr li .ttl {
	font-size: 12px;
	line-height: 1.8;
	color: #333;
	display: block;
}

.topicsbnr_inner .topicsbnr li span:hover {
	text-decoration: underline;
}

.topicsbnr_img {
	width: 69px;
	/* position: absolute; */
	/* top: -12px; */
	/* right: 0; */
	float: right;
	margin-top: -40px;
}
/*
.topicsbnr_img .topicsbnr li {
	width: 69px;
	height: auto;
}
*/
.topicsbnr_img .topics_txt {
	display: none;
}


/* animation
*************************************/
/* zoomOut */
ul[data-liffect="zoomOut"] li {
	opacity: 0;
	position: relative;
	-webkit-animation: zoomOut 600ms ease both;
	-webkit-animation-play-state: paused;
	-moz-animation: zoomOut 600ms ease both;
	-moz-animation-play-state: paused;
	-o-animation: zoomOut 600ms ease both;
	-o-animation-play-state: paused;
	animation: zoomOut 600ms ease both;
	animation-play-state: paused;
}

ul[data-liffect="zoomOut"].play li {
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
}

@-webkit-keyframes zoomOut {
	0% { opacity: 0; -webkit-transform: scale(.6); }
	100% { opacity: 1; -webkit-transform: scale(1); }
}

@-moz-keyframes zoomOut {
	0% { opacity: 0; -moz-transform: scale(.6); }
	100% { opacity: 1; -moz-transform: scale(1); }
}

@-o-keyframes zoomOut {
	0% { opacity: 0; -o-transform: scale(.6); }
	100% { opacity: 1; -o-transform: scale(1); }
}

@keyframes zoomOut {
	0% { opacity: 0; transform: scale(.6); }
	100% { opacity: 1; transform: scale(1); }
}

/* zoomIn */
ul[data-liffect="zoomIn"] li {
	opacity: 0;
	position: relative;
	-webkit-animation: zoomIn 600ms ease both;
	-webkit-animation-play-state: paused;
	-moz-animation: zoomIn 600ms ease both;
	-moz-animation-play-state: paused;
	-o-animation: zoomIn 600ms ease both;
	-o-animation-play-state: paused;
	animation: zoomIn 600ms ease both;
	animation-play-state: paused;
}

ul[data-liffect="zoomIn"].play li {
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
}

@-webkit-keyframes zoomIn {
	0% { opacity: 0; -webkit-transform: scale(1.8); }
	100% { opacity: 1; -webkit-transform: scale(1); }
}

@-moz-keyframes zoomIn {
	0% { opacity: 0; -moz-transform: scale(1.8); }
	100% { opacity: 1; -moz-transform: scale(1); }
}

@-o-keyframes zoomIn {
	0% { opacity: 0; -o-transform: scale(1.8); }
	100% { opacity: 1; -o-transform: scale(1); }
}

@keyframes zoomIn {
	0% { opacity: 0; transform: scale(1.8); }
	100% { opacity: 1; transform: scale(1); }
}