@charset "utf-8";

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
/* 記事一覧ページ
------------------------------------ */
#newsWrap {
	padding-top: 70px;
	padding-bottom: 60px;
	background-color: #f8f5f2;
}

#selectHead {
	margin-bottom: 15px;
	font-size: 1.8rem;
	font-family: "Zen Maru Gothic", serif;
}

#selectWrap {
	margin-bottom: 60px;
}

.select {
	width: 100%;
	max-width: 430px;
	padding: 20px 50px 20px 20px;
	font-size: 16px;
	color: #333333;
	background: #ffffff url(../../img/news/icon_pulldown.svg) no-repeat right 24px center / 14px;
	border: 1px solid #d2cec7;
	border-radius: 0;
	appearance: none;
	cursor: pointer;
}

.select::-ms-expand {
	display: none;
}

#newsWrap .postList {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #d6d4cf;
}

/* ページャー */
#pager {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

#pager .page-numbers {
	width: 58px;
	height: 58px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 400;
	font-family: "Oswald", sans-serif;
	line-height: 1;
	color: #705e3a;
	background-color: #fff;
	border: 1px solid #d2cec7;
	border-radius: 50%;
}

#pager .page-numbers.prev,
#pager .page-numbers.next {
	background-color: #ffffff;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	border-color: transparent;
}

#pager .page-numbers.prev {
	background-image: url(../../img/news/icon_prev.svg);
}

#pager .page-numbers.next {
	background-image: url(../../img/news/icon_next.svg);
}

#pager .page-numbers.current {
	color: #ffffff;
	background-color: #705e3a;
	border-color: #705e3a;
}

#pager .page-numbers.dots {
	width: auto;
	font-size: 1.6rem;
	background-color: transparent;
	border: none;
}

/* 記事詳細ページ
------------------------------------ */
#article {
	padding-top: 70px;
	padding-bottom: 100px;
	background-color: #f8f5f2;
}

#articleContent {
	margin-bottom: 60px;
	padding: 60px 30px;
	background-color: #fff;
}

#articleContentInner {
	max-width: 800px;
	margin-inline: auto;
}

#articleContentInner > *:first-child {
	margin-top: 0;
}

#articleContentInner > *:last-child {
	margin-bottom: 0;
}

#articleContentInner h2 {
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	font-size: 2.7rem;
	font-family: "Zen Maru Gothic", serif;
	line-height: calc(35 / 27);
	color: #d69c00;
}

#articleContentInner h3 {
	margin-top: 2em;
	margin-bottom: 1em;
	padding: 10px 15px;
	font-weight: 700;
	background-color: #f8f6f3;
}

#articleContentInner p {
	margin-bottom: 1em;
	line-height: calc(35 / 16);
}

#articleContentInner img {
	padding-top: 1em;
}

#articleContentInner a {
	font-weight: 700;
	text-decoration: underline;
	color: inherit;
}

#articleReturn {
	text-align: center;
}

#articleReturn .btn {
	width: 250px;
	font-size: 1.8rem;
}

#sortTxt {
	padding-bottom: 10px;
}


/* ------------------------------------ */
/* ホバーエフェクト */
/* ------------------------------------ */
@media screen and (min-width: 1025px) {
	#pager a.page-numbers {
		transition: all 0.3s ease 0s;
	}

	#pager a.page-numbers:hover {
		color: #ffffff;
		background-color: #705e3a;
		border-color: #705e3a;
	}

	#articleContentInner a {
		transition: all 0.3s ease 0s;
	}

	#articleContentInner a:hover {
		opacity: 0.7;
	}
}

/* -------------------------------------------------- */
/* PC(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 1025px) and (max-width: 1279px) {

}

/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {

}


/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}
/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	/* 記事一覧ページ
	------------------------------------ */
	#newsWrap {
		padding-top: 50px;
	}

	#selectWrap {
		margin-bottom: 40px;
	}

	#selectHead {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}

	.select {
		padding: 15px 50px 15px 15px;
	}

	#newsWrap .postList {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	#pager {
		gap: 8px;
	}

	#pager .page-numbers {
		width: 40px;
		height: 40px;
		font-size: 1.4rem;
	}

	#pager .page-numbers.dots {
		font-size: 1rem;
	}

	/* 記事詳細ページ
	------------------------------------ */
	#article {
		padding-top: 50px;
		padding-bottom: 80px;
	}

	#articleContent {
		margin-bottom: 40px;
		padding: 30px 15px;
	}

	#articleContentInner h2 {
		font-size: 2rem;
	}

	#articleContentInner p {
		line-height: 1.8;
	}

	#articleReturn .btn {
		font-size: 1.6rem;
	}
}