@charset "UTF-8";
/* =============================================================================

MEDIA

============================================================================= */
.mediaList {
	position: relative;
	height: 560px;
	overflow: hidden;
	transition: .4s;
	padding-bottom: 88px;
}
.mediaList::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(229,231,235,1) 70%, rgba(229,231,235,0) 100%);
	transition: .4s;
}
.mediaList.active:before {
  opacity: 0;
  visibility: hidden;
}
.mediaList li {
	text-align: left;
	padding: 8px 16px;
	margin-bottom: 8px;
	background: #FFF;
	box-shadow: 2px 2px 7px #CCC;
}
button.view_all {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	display: block;
	text-align: center;
	margin: 32px auto 0 auto;
	padding: 8px 0px;
	background: #FFF;
	font-size: 90%;
	border: none;
	color: #000;
	cursor: pointer;
}
button.view_all::before {
	display: inline-block;
	margin-right: 16px;
	line-height: 1.8;
	font-family: "Font Awesome 5 Free";
	content: '\f078';
	font-weight: 900;
	transition: .5s;
}
.active .view_all::before {
	display: inline-block;
	margin-right: 16px;
	line-height: 1.8;
	font-family: "Font Awesome 5 Free";
	content: '\f077';
}


/*________________________________________________________

PC
________________________________________________________*/

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

button.view_all {width: 320px;}
.contents .mediaForm div {
	width: 100%;
}
.contents .mediaForm p {
	margin: 32px 0 0 0;
	font-size: 90%;
	float: left;
}

}

/*________________________________________________________

SP
________________________________________________________*/


@media only screen and (max-width: 740px) {

.contents .mediaForm p {
	margin: 16px 0 24px 0;
}


}

