@charset "utf-8";

/* CSS Document */
/****************************************************************/
/*　地域情報一覧・詳細用CSS TOPページにも使用　（PC、SP共用）  */
/****************************************************************/
/*　社内メモ  */
/*　制作：東  */


/*-----------------------------------------
		地域情報一覧
-------------------------------------------*/
a.local_list {
    display: block;
    float: left;
    overflow: hidden;
	width:330px;
	margin:0 3px 40px 0;
}




figure img{
    height: auto;
    opacity: 1;
  	width: 100%;
	-webkit-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
}
	
figure{
	position: relative;
	overflow: hidden;
	background:#000;
	
}


a.local_list:last-child {
  margin-right: 0;
}

figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
    background: #ffffff none repeat scroll 0 0;
    color: #000;
    opacity: 0.8;
    font-size: 16px;
    -webkit-transition:all 0.25s ease-in-out;
   transition:all 0.25s ease-in-out;
    padding: 15px 25px;	
	
	/*width: 280px;
	height:72px;*/
}

figcaption span {
	display:block;
	width: 280px;
}

figcaption span.local_tit {
	font-size: 18px;
	height: 22px;
	font-weight:bold;
	margin-bottom:5px;
}

/*figcaption span.local_tit2は_gst_top.cssに記述*/



figcaption span.local_des {
	font-size: 16px;
	height: 3.9em;
}



a:hover>figure img {
        transform: scale(1.15,1.15);
        -webkit-transform:scale(1.15,1.15);
        -moz-transform:scale(1.15,1.15);
        -ms-transform:scale(1.15,1.15);
        -o-transform:scale(1.15,1.15);
		opacity: 0.8;
		 
}
@media (max-width: 767px) {
	a.local_list {
		float:none;
		width:auto;
		margin:0 0 3px 0;
	}
	figure{
		height:120px;
		position:static;
	}
	figure img{
		width:120px;
	}
	figure .img_wrap_sp{
		position: relative;
		width:120px;
		overflow: hidden;
		display:block;
		float:left;
	}
	figcaption {
		position:relative;
		bottom: auto;
		left: auto;
		height:120px;
		width: calc(100% - 120px);
		float:right;
		box-sizing: border-box;
		padding:10px;
		opacity: 1;
		background:#cbcbcb;
	}
	figcaption:before {
    border-color: #000;
    border-style: solid;
    border-width:   0 2px 2px 0;
    content: "";
    display: block;
	width: 8px;
    height: 8px;
    position: absolute;
    right: 10px;
    top: 45%;
    transform: rotate(-45deg);


	}
	figcaption span {
		width: calc(100% - 20px);
	}
	figcaption span.local_tit {
		font-size: 16px;
		height: 20px;
		margin-bottom:5px;
	}

	figcaption span.local_des {
		font-size: 14px;
		height: 5.5em;
	}
}
 




/*-----------------------------------------
		詳細ページ
-------------------------------------------*/
.local_art img {
	max-width: 800px;
	height:auto;
	margin: 0 auto 35px;
	display: block;
}
@media (max-width: 767px) {
.local_art img {
	max-width: 100%;
	margin: 0 auto 10px;
}
}

.local_art p {

	line-height:1.5em;
}
.local_art .justifyleft{
	text-align:left;
}
.local_art .justifyright{
	text-align:right;
}