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

#lower-image {
	background: url(../../images/main_image.jpg) center -150px;
	background-size: cover;
}

#lower-contents #main-contents {
	overflow: hidden;
}


@-webkit-keyframes turn {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes turn {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}

@keyframes turn {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}




/* list部分編集 */

.contents-list {
	list-style: none;
	padding-left: 0;
}

.contents-list li {
	display: inline-block;
	box-sizing: border-box;
	margin-bottom: 50px;
	margin-left: 10px;
}

.contents-list li a {
	text-decoration: none;
}

.contents-list li a:hover figcaption {
	color: var(--color-link);
}

.contents-list li figure img {
	width: 80%;
	-webkit-filter: brightness(1);
	-moz-filter: brightness(1);
	-ms-filter: brightness(1);
	filter: brightness(1);
	transition: all 0.45s ease-in-out;
	border-radius: 5px;
	
}

.contents-list li a:hover figure img {
	-webkit-filter: brightness(1.1);
	-moz-filter: brightness(1.1);
	-ms-filter: brightness(1.1);
	filter: brightness(1.1);
}

.contents-list li figcaption {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	font-size: 1.4rem;
	transition: all 0.35s ease-in-out;
}

.contents-list li figcaption:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 14px;
	height: 14px;
	content: "";
	margin: auto;
	background-color: #666;
	background-image: url(../../../common/images/arrow_round.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 14px 14px;
	border-radius: 50%;
	transition: all 0.35s ease-in-out;
}

.contents-list li figcaption:after {
	content: "PDF";
	display: inline-block;
	background: rgb(241, 103, 135);
	border-radius: 0 5px 0 0;
	color: #fff;
	margin-left: 0.5em;
	font-size: 0.7em;
	padding: 0 0.25em;
	line-height: 1.4;
}

.contents-list li a:hover figcaption:before {
	background-color: var(--color-link);
}

.contents-list li a:hover figcaption {
	background-position: 3px center;
}




/* over iphone 6 plus landscape */
@media screen and (orientation:landscape) and (min-width: 736px) {

}


@media screen and (min-width: 768px) {

	.contents-list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	
	.contents-list li {
		width: calc(50% - 10px);

	}


}

/* over ipad landscape */
@media screen and (orientation:landscape) and (min-width: 1024px) {

}

@media screen and (min-width: 1280px) {

	.contents-list li {
		width: calc(33.33% - 15px);
	}
}
