@charset "utf-8";

/* トップページ
============================ */

/* スライダー
----------------------------------------------------*/
#contentsArea.index {
	width: 100%;
	overflow: hidden;
}
.index .sliderArea {
	padding-top: 0;
	width: 100vw;
	overflow: hidden;
}
.index .index_slider {
	width: 130%;
}
.index .slick-list {
	margin: 0 -7vw 0 0;
}
.index .slick-slide {
	margin: 0 7vw 0 0;
}

/* お知らせ
----------------------------------------------------*/
.postArea h2 {
	margin-top: 0;
}
.postArea ul.info li {
	list-style-image: none;
	margin-bottom: 10px;
}
.postArea ul.info li:last-child {
	margin-bottom: 0;
}
.postArea ul.info li.nolink,
.postArea ul.info li a {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	color: #000;
	padding: 20px 80px 20px 70px;
	background: #f1f1f1;
	min-height: 96px;
	position: relative;
	transition: 0.3s;
}
.postArea ul.info li a::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 40px;
	margin: auto 0;
	width: 16px;
	height: 17px;
	background: url("../images/icon_arrow.png") center right no-repeat;
	background-size: 100%;
	transition: 0.2s;
}
.postArea ul.info li.nolink a::before {
	display: none;
}
.postArea ul.info li a:hover {
	text-decoration: none;
	background: #f4f4f4;
	cursor: pointer;
}
.postArea ul.info li a:hover::before {
	right: 30px;
}
/* 日付 */
.postArea ul.info li span.news-date {
	display: block;
	flex-basis: 9em;
	min-width: 9em;
}
/* タグ */
.postArea ul.info li span.tag {	
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(0.813rem, 0.789rem + 0.1vw, 0.875rem); /* 13px-14px */
	text-align: center;
	background: #252525;
	color: #fff;
	margin-right: 1.5em;
	padding: 2px 1.5em;
	border-radius: 100px;
	white-space: nowrap;
}
/* テキスト */
.postArea ul.info li span.title {
	display: block;
	margin-top: 0;
	flex-grow: 1;
	}
	@media screen and (max-width:1024px) {
	.postArea ul.info li.nolink,
	.postArea ul.info li a {
		flex-wrap: wrap;
		padding: 20px 50px 20px 25px;
	}
	.postArea ul.info li a::before {
		right: 20px;
	}
	.postArea ul.info li a:hover::before {
		right: 15px;
	}
	.postArea ul.info li span.news-date {
		flex-basis: 8em;
		min-width: 8em;
	}
	.postArea ul.info li span.tag {	
		padding: 2px 1.1em;
		margin-right: 0;
	}
	.postArea ul.info li span.title {
		margin-top: 4px;
		flex-basis: 100%;
		line-height: 1.5;
	}
}


