@charset "utf-8";

/* お知らせ
============================ */

/* visual
-----------------------------*/
.news .visualArea {
	background: url("../news/images/visual.jpg") center center / cover;
	margin-bottom: 50px;
	}
	@media screen and (min-width:1025px) {
	.news .visualArea {
		margin-bottom: 100px;
	}
}

/* 共通
-----------------------------*/
.news .wrap_w {
	width: 100%;
	padding: 0 7%;
	text-align: left;
	}
	@media screen and (min-width:1025px) {
	.news .wrap_w {
		display: flex;
		justify-content: space-between;
		padding: 0 10%;
	}
}
.news h2 {
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.2;
	margin-top: -22px;
	margin-bottom: 30px;
	}
	@media screen and (min-width:1025px) {
	.news h2 {
		width: 25%;
		font-size: 3.6rem;
	}
}
.news h2 span:first-child {
	position: relative;
	display: inline-block;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: #e50113;
	margin-bottom: 8px;
	padding-right: 92px
	}
	@media screen and (min-width:1025px) {
	.news h2 span:first-child {
		font-size: 1.4rem;
		margin-bottom: 18px;
		padding-right: 120px;
	}
}
.news h2 span:first-child::after {
	position: absolute;
	display: block;
	content: "";
	top: 8px;
	right: 0;
	width: 80px;
	height: 1px;
	background: #e50113;
	margin: auto;
	}
	@media screen and (min-width:1025px) {
	.news h2 span:first-child::after {
		width: 100px;
	}
}
.news .box_r {
	width: 100%;
	}
	@media screen and (min-width:1025px) {
	.news .box_r {
		width: 72%;
	}
}

/* 一覧
-----------------------------*/
.news div[class^="list_"] ul {
	width: 100%;
	margin-bottom: 60px;
	}
	@media screen and (min-width:1025px) {
	.news div[class^="list_"] ul {
		margin-bottom: 110px;
	}
}
.news div[class^="list_"] ul li {
	font-size: 1.4rem;
	line-height: 1.6;
	border-bottom: solid 1px #4e4e4e;
	padding: 20px 20px 20px 0;
	}
	@media screen and (min-width:1025px) {
	.news div[class^="list_"] ul li {
		display: flex;
		font-size: 1.6rem;
		padding: 24px 20px 20px 0;
	}
}
.news div[class^="list_"] ul li:first-child {
	border-top: solid 1px #4e4e4e;
}
.news div[class^="list_"] ul span {
	display: block;
	width: 150px;
	padding-bottom: 5px;
}
.news div[class^="list_"] ul p {
	width: 100%;
	}
	@media screen and (min-width:1025px) {
	.news div[class^="list_"] ul p {
		width: calc(100% - 150px);
	}
}
.news div[class^="list_"] ul a {
	color: #333;
}
.news .list_materials {
	margin-bottom: 80px;
	}
	@media screen and (min-width:1025px) {
	.news .list_materials {
		margin-bottom: 30px;
	}
}


/* アニメーション
------------------------------------------------- */
/* アニメーション（見出し） */
.news h2 span {
	position: relative;
	opacity: 0;
	transition: 0.6s;
}
.news h2 span::before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 0;
	background-color: #e50113;
	height: 100%;
	transition: 0.6s;
	z-index: 55;
}
.news h2 span.is-active {
	opacity: 1;
}
.news h2 span.is-active::before{
	animation: sizeScale 0.6s ease 0s 1 normal;
}

/* アニメーション（一覧） */
.news div[class^="list_"] ul {
	position: relative;
	opacity: 0;
	top: 30px;
}


