@charset "UTF-8";
/* PCページ */
@media screen and (min-width: 768px){
main{
	padding-top: 114px;
}
/* ページタイトル */
.page-title::after{
	background-image : url(img/news-4.jpg);
}
.page-text::after{
	position: absolute;
	content: "";
	background-image : url(img/24265763_s.jpg);
	background-size: contain;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.5;
	top: 0;
}
.page-text::before{
	position: absolute;
	content: "";
	background: #8b837c;
	opacity: 0.1;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -2;
}
/* メインタイトル */
.main-title{
	padding-top: 60px;
}
.news1{
	width: 100%;
	max-width: 1920px;
	padding: 0 4vw;
	margin: 0 auto;
	display: grid;
	justify-items: center;
	opacity: 0;
	transition: opacity 1.4s, transform 1s;
	transform: translateY(20px);
}
.news1.run{
	opacity: 1;
	transform: translateY(0);
}
.news1 ul{
	width: 100%;
	max-width: 1000px;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	border-bottom: 1px solid #d8d8d8;
}
.news1 li{
	display: grid;
	grid-auto-columns: auto 1fr;
	grid-template-rows: min-content 1fr;
	position: relative;
	border-top: 1px solid #d8d8d8;
}
.news1 li:nth-child(2){
	gap: 1vw;
	padding: 20px 0;
}
.news1 li a{
	display: grid;
	grid-auto-columns: auto 1fr;
	grid-template-rows: min-content 1fr;
	gap: 1vw;
	padding: 20px 0;
	position: relative;
}
.news1 li a::after{
	position: absolute;
	content: "";
	border-right: 1px solid #8b837c;
	border-bottom: 1px solid #8b837c;
	transform: skew(45deg);
	width: 25px;
	height: 4px;
	right: 20px;
	bottom: 15px;
	transition: .3s;
}
.news1 li a:hover{
	opacity: 0.8;
	transition: .3s;
}
.news1 li a:hover::after{
	right: -10px;
}
.news1 ul img{
	width: 100%;
	max-width: 250px;
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}
.news1 ul li span{
	grid-column: 2 / 3;
}
.news1 ul li span:nth-last-child(2){
	grid-row: 1 / 2;
	color: #8b837c;
	font-size: 12px;
	border: 1px solid #8b837c;
	width: fit-content;
	min-width: 6em;
	padding :0 5px;
	text-align: center;
}
.news1 ul li span:not(.news1 ul li span span):last-child{
	grid-row: 2 / 3;
}
.news1 ul li span span{
	display: block;
}
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px){
main{
	padding-top: 79px;
}
}
/*スマホページ */
@media screen and (max-width: 768px){
main{
	padding-top: 72px;
}
/* ページタイトル */
.page-title::after{
	background-image : url(img/news-4.jpg);
}
.page-text::after{
	position: absolute;
	content: "";
	background-image : url(img/24265763_s.jpg);
	background-size: contain;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.5;
	top: 0;
}
.page-text::before{
	position: absolute;
	content: "";
	background: #8b837c;
	opacity: 0.1;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -2;
}
/* お知らせ一覧 */
.news1{
	padding: 0 20px 30px;
	margin: -20px auto 0;
}
.news1 ul{
	display: grid;
	list-style: none;
	padding: 0;
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
}
.news1 img{
	width: 100%;
	max-width: 100px;
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}
.news1 li{
	display: grid;
	grid-auto-columns: auto 1fr;
	grid-template-rows: min-content auto;
	font-size: 14px;
	gap: 5px 10px;
}
.news1 li:nth-child(2){
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
	padding: 10px 0;
}
.news1 li a{
	display: grid;
	grid-auto-columns: auto 1fr;
	grid-template-rows: min-content auto;
	font-size: 14px;
	gap: 0 10px;
	padding: 10px 0;
	position: relative;
}
.news1 li a::after{
	position: absolute;
	content: "";
	border-right: 1px solid #8b837c;
	border-bottom: 1px solid #8b837c;
	transform: skew(45deg);
	width: 20px;
	height: 4px;
	right: 10px;
	bottom: 15px;
}
.news1 li span:nth-child(2){
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	border: 1px solid #8b837c;
	width: fit-content;
	height: 1.6em;
	min-width: 6em;
	display: inline-grid;
	font-size: 12px;
	color: #8b837c;
	justify-content: center;
	line-height: 1.6em;
}
.news1 li span:last-child{
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
.news1 li:hover{
	opacity: 0.8;
	transition: .3s;
}
}