@charset "utf-8";

/* お知らせ
============================ */
.news section:first-of-type {
	padding-top: 80px;
}
.news #contentsArea .wrap {
	width: min(86%, 1120px);
	}
	@media screen and (max-width:1024px) {
	.news section:first-of-type {
		padding-top: 40px;
	}
	.news #contentsArea .wrap {
		width: 86%;
	}
}

/* 一覧
------------------------------------------------- */
.news ul.info {
	margin-top: 80px;
}
.news ul.info li:first-child {
	border-top: 1px solid #a39296;
}
.news ul.info li a {
	display: flex;
	align-items: center;
	text-decoration: underline;
	border-bottom: 1px solid #a39296;
	padding: 22px 120px 22px 2em;
	text-decoration: none;
	transition: 0.2s;
	position: relative;
}
/* リンクアイコン */
.news ul.info li a::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 35px;
	margin: auto 0;
}
.news ul.info li a::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 28px;
	margin: auto 0;
	width: 14px;
	height: 14px;
	border-top: 3px solid #e7587a;
	border-right: 3px solid #e7587a;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* 日付 */
.news ul.info li span.date {
	display: inline-block;
	min-width: 12em;
}
/* テキスト */
.news ul.info li span.txt {
	display: inline-block;
	margin-top: 0;
}
.news ul.info li a:hover {
	opacity: 1;
	background: #fff8f7;
}
	@media screen and (max-width:1024px) {
	.news ul.info {
		margin-top: 50px;
	}
	.news ul.info li a {
		display: block;
		text-decoration: underline;
		border-bottom: 1px solid #bfb5af;
		padding: 20px 30px 20px 0;
		text-decoration: none;
		transition: 0.2s;
		position: relative;
	}
	/* 日付 */
	.news ul.info li span.date {
		display: block;
	}
	/* テキスト */
	.news ul.info li span.txt {
		line-height: 1.8;
	}
	/* リンクアイコン */
	.news ul.info li a::before,
	.news ul.info li a::after {
		right: 0;
		width: 10px;
		height: 10px;
		border-top: 2px solid #e7587a;
		border-right: 2px solid #e7587a;
	}
}

/* ボタン */
.news ul.info + .btn {
	margin-top: 60px;
}
.news .btn a {
	background: #ffdde5;
	color: #4a413e;
}
.news .btn a::after {
	border-color: #e7587a;
}


/* 詳細
------------------------------------------------- */
.news article {
	margin: 80px 0 0;
}
.news .ttl h3 {
	font-size: min(4.8vw, 3rem);
	letter-spacing: -0.03em;
	line-height: 1.6;
	margin: 25px 0 40px;
	padding-bottom: 0;
	border-bottom: none;
}
.news article .content {
	border-top: 1px solid #dad5d6;
	padding: 40px 0 0;
	}
	@media screen and (max-width:1024px) {
	.news article {
		margin: 50px 0 0;
	}
}

/* リスト */
.single article ul li {
	list-style-type: disc;
	margin: 1em 0 0 20px;
	padding-left: 0.3em;
}

/* 数字付きリスト */
.single article ol li {
	list-style-type: decimal;
	margin: 1em 0 0 20px;
	padding-left: 0.8em;
	}
	@media screen and (max-width:1024px) {
	.single article ol li {
		padding-left: 0.4em;
	}
}

/* 画像 */
.single article figure {
	margin: 1.5em auto;
	text-align: center;
}
.single article figure img {
	width: auto;
	max-width: 100%;
}

/* 表 */
.single article table {
	width: 100%;
	border: 1px solid #ccc;
	border-left: none;
	border-right: none;
	margin-top: 1em;
	text-align: left;
}
.single article table th, .single article table td {
	border-bottom: 1px solid #ccc;
	padding: 1em 1.5em;
	display: table-cell;
	}
	@media screen and (max-width:1024px) {
	.single article table {
		width: 100%;
	}
	.single article table th, .single article table td {
		padding: 1em;
		line-height: 1.8;
	}
}

/* 一覧に戻るボタン */
.news article + .btn {
	margin-top: 60px;
}

/* ページ送り
------------------------------------------------- */
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 25px;
}
.pagination ul li {
	margin: 0 4px 8px;
}
.pagination ul li.active,
.pagination ul li a {
	font-size: 1.55rem;
	color: #44423d;
	background: #ffdde5;
	display: inline-block;
	line-height: 38px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	transition: 0.2s;
}
.pagination ul li.active {
	background: #e7587a;
	color: #fff;
}
.pagination ul li.prev a,
.pagination ul li.next a {
	position: relative;
}
.pagination ul li.prev a::before,
.pagination ul li.next a::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 8px;
	height: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.pagination ul li.prev a::before {
	border-bottom: 2px solid #e7587a;
	border-left: 2px solid #e7587a;
	left: 18px;
}
.pagination ul li.next a::before {
	border-top: 2px solid #e7587a;
	border-right: 2px solid #e7587a;
	left: 15px;
	}
	@media screen and (max-width:1024px) {
	.pagination ul {
		margin-top: 20px;
	}
	.pagination ul li {
		margin: 0 2px 6px;
	}
	.pagination ul li.active,
	.pagination ul li a {
		font-size: 1.4rem;
		line-height: 31px;
		width: 32px;
		height: 32px;
	}
	.pagination ul li.prev a::before,
	.pagination ul li.next a::before {
		width: 6px;
		height: 6px;
	}
	.pagination ul li.prev a::before {
		left: 14px;
	}
	.pagination ul li.next a::before {
		left: 11px;
	}
}
