@charset "utf-8";
/* news.css
-------------------------------------- */

/* wp
-------------------------------------- */

/* .news_list 一覧用
-------------------------------------- */

.news_list, .news_item {
	width: 100%;
	/* border-bottom: 1px solid #e6eaea; */
	padding-bottom: 8rem;
}
.news_list>h3 {
	max-width: 1200px;
	width: 90%;
	text-align: center;
	font-size: 2rem;
	padding: 0.5em;
	border-top: 1px dashed #e6eaea;
	border-bottom: 1px dashed #e6eaea;
	margin:50px auto 50px;
	font-weight: bold;
}

.news_list>ul {
	max-width: 730px;
	width: 90%;
	margin: 0 auto 60px;
}

.news_list>ul>li {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e6eaea;
	padding: 1em 0;
	/* background-color: #fff; */
}

.news_list>ul>li:last-child {
	border-bottom: none;
}

.news_list>ul>li>a {
	display: block;
	width: 25%;
	margin-right: 5%;
	overflow: hidden;
}
.news_list>ul>li>a>img {
    transition: 1s;
    -webkit-transition: 1s;
}
.news_list>ul>li>a:hover>img {
	transform: scale(1.1);
}
.news_list>ul>li>div {
	width: 70%;
}

.news_list>ul>li>div>time {
	display: block;
	font-size: 1.4rem;
	margin-bottom: 0.5em;
}

.news_list>ul>li>div>h4 {
	margin-bottom: 0.5em;
}

.news_list>ul>li>div>h4>a {
	font-size: 1.8rem;
	font-weight: bold;
}

.news_list>ul>li>div>h4>a>span {
	display: none;
}

.news_list>ul>li>div>p {
	font-size: 1.4rem;
}

.pagination {
	max-width: 730px;
	width: 90%;
	margin: auto;
	text-align: center;
}

.pagination * {
	display: inline-block;
	padding: 0 0.5em;
	font-size: 1.7rem;
}

.pagination .current {
	color: #73c8b2;
}

@media all and (max-width:769px) {
	.news_list>h3 {
		font-size: 1.8rem;
	}
	.news_list>ul {
		margin: 0 auto 40px;
		border-top: none;
	}
	.news_list>ul>li {
		flex-direction: row-reverse;
		border: 1px solid #e6eaea;
		padding: 0;
		background-color: #fff;
		margin-bottom: 1.5em;
	}
	.news_list>ul>li:last-child {
		border-bottom: 1px solid #e6eaea;
	}
	.news_list>ul>li>a {
		width: 50%;
		margin-right: 0;
		position: relative;
		padding-bottom: 50%;
	}
	.news_list>ul>li>a>img {
		position: absolute;
		height: 100%;
		object-fit: cover;
	}

	.news_list>ul>li>div {
		width: 50%;
		padding: 1em;
	}
	.news_list>ul>li>div>time {
		text-align: center;
	}
	.news_list>ul>li>div>h4 {
		margin-bottom: 0;
	}
	.news_list>ul>li>div>h4>a {
		display: block;
		font-size: 1.6rem;
		text-align: center;
	}
	.news_list>ul>li>div>h4>a>span {
		display: block;
		width: 90px;
		font-size: 1.1rem;
		padding: 0.5em;
		border: 1px solid #5a5a5a;
		border-radius: 30px;
		text-align: center;
		margin: 1em auto 0;
	}
	.news_list>ul>li>div>p {
		display: none;
	}
}

/* .news_item シングル用
-------------------------------------- */

.news_item>h4 {
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}

.news_item>time {
	display: block;
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 3em;
}

.news_item>.article_data {
	max-width: 730px;
	width: 90%;
	margin: 0 auto 60px;
	overflow: hidden;
}

.prevnext {
	max-width: 730px;
	width: 90%;
	margin: 0 auto 60px;
	text-align: center;
	display: flex;
	justify-content: space-between;
}

.button {
	margin: 0 auto;
}

@media all and (max-width:769px) {
	.news_item>h4 {
		font-size: 1.8rem;
	}
	.news_item>.article_data {
		margin: 0 auto 40px;
	}
	.prevnext {
		display: none;
	}
}


.past_list{
	max-width: 1000px;
	width: 90%;
	margin: 0 auto 100px;
}

.past_list>h3{
	font-size: 24px;
	text-align: center;
	font-weight: 600;
	margin-bottom: 60px;
}

.past_list>ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.past_list>ul>li{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.past_list>ul>li>a {
	font-weight: 600;
	padding: 0px 45px;
	text-align: center;
	height: 80px;
}
.past_list>ul>li>a p {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}
@media all and (max-width:769px) {
	.past_list {
		margin: 0 auto 60px;
	}
	.past_list>h3 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.past_list>ul {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.past_list>ul>li>a {
		font-weight: 600;
		padding: 0px 45px;
		width: 270px;

	}
}