@charset "utf-8";
/*==================================================================
	Fonts setting
===================================================================*/
@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/CenturyGothic.woff2') format('woff2'),
      url('fonts/CenturyGothic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*==================================================================
	Contents setting
===================================================================*/
#newsContents,
#newsContents * {
	-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
			box-sizing:border-box;
}
#newsContents {
	background: #fff;
	font-family: 'Noto Serif JP', serif;
	text-align: left;
}
#newsContents img {
	max-width: 100%;
	height: inherit;
}
.sectionInner {
	margin: 0 auto;
	max-width: 1100px;
	width: 92%;
}
.headTitle01 {
	color: #D00716;
	font-size: 2.55em;
	padding: 80px 0 40px;
	position: relative;
	z-index: 1;
}
.headTitle01:first-letter {
	font-size: 200%;
}
.headTitle01:after {
	content: "";
	background: #D00716;
	display: inline-block;
	height: 1px;
	width: 100px;
	margin-left: 20px;
	vertical-align: middle;
}
@media screen and (max-width: 767px) {
	.headTitle01 {
		font-size: 1.8em;
		padding: 40px 0 20px;
	}
	.headTitle01:after {
		width: 50px;
	}
}

/* News
--------------------------------------------*/
.sectionNews {
	background: #ECE5E5;
	padding-bottom: 80px;
}
.sectionNews .newsBlock {
	margin: 0 auto;
	max-width: 920px;
	width: 100%;
}
.sectionNews .newsList li {
	border-bottom: 1px solid #C1C1C1;
	display: table;
	padding: 6px 0;
	position: relative;
	width: 100%;
	text-align: left;
}
.sectionNews .newsList li > a {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.sectionNews .newsList .day {
	color: #61383A;
	display: table-cell;
	font-size: 1.4em;
	font-family: 'Century Gothic';
	padding-right: 10px;
	vertical-align: middle;
	width: 25%;
}
.sectionNews .newsList .day em {
	color: #BE0716;
	display: inline-block;
	font-style: normal;
}
.sectionNews .newsList .des {
	display: table-cell;
	vertical-align: middle;
	width: 75%;
}
.sectionNews .newsList .des {
	color: #61383A;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.4em;
	letter-spacing: 0.2em;
	transition: all ease 0.3s;
}
.sectionNews .newsList :hover .des {
	color: #BE0716;
}
.sectionNews .newsList .des > span {
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	white-space: inherit;
}
.sectionNews .newsList .des a:hover {
	color: #D00716;
	opacity: 1;
}
.sectionNews .newsPagination {
	margin-top: 50px;
	/*font-size: 13px;*/
	text-align: center;
}
.sectionNews .newsPagination a,
.sectionNews .newsPagination span {
	color: #61383A;
	font-size: 1.4em;
	font-family: 'Century Gothic';
	margin: 0 4px;
	vertical-align: middle;
}
.sectionNews .newsPagination a.active,
.sectionNews .newsPagination a:hover {
	color: #BE0716;
}

.sectionNews .postTitle {
	color: #6A1E1F;
	font-size: 2em;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.5;
	margin-bottom: 20px;
}
.sectionNews .postDate {
	color: #6A1E1F;
	font-size: 1.2em;
	font-family: 'Century Gothic';
}
.sectionNews .postDate > span {
	color: #BE0716;
}
.sectionNews .postImg {
	margin-top: 30px;
}
.sectionNews .postContents {
	color: #6A1E1F;
	font-size: 1.5em;
	line-height: 1.8;
	margin: 0 auto;
	width: 90%;
}
.sectionNews .postContents p {
	margin-top: 40px;
}
.sectionNews .postPager {
	border-top: 1px solid #C1C1C1;
	border-bottom: 1px solid #C1C1C1;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.sectionNews .postPager a {
	color: #6A1E1F;
	display: flex;
	align-items: center;
	font-size: 1.5em;
	font-family: 'Century Gothic';
	height: 100px;
	position: relative;
}
.sectionNews .postPager a:hover {
	color: #BE0716;
}
.sectionNews .postPager .prev {
	padding-left: 65px;
	visibility: hidden;
}
.sectionNews .postPager .prev:before {
	border-top: 1px solid #6A1E1F;
	border-left: 1px solid #6A1E1F;
	content: "";
	height: 12px;
	width: 12px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}
.sectionNews .postPager .next {
	padding-right: 65px;
	visibility: hidden;
}
.sectionNews .postPager .next:before {
	border-top: 1px solid #6A1E1F;
	border-right: 1px solid #6A1E1F;
	content: "";
	height: 12px;
	width: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.sectionNews .postPager .prev:hover:before,
.sectionNews .postPager .next:hover:before {
	border-color: #BE0716;
}

@media screen and (max-width: 767px) {
	.sectionNews {
		padding-bottom: 40px;
	}
	.sectionNews .newsList li {
		display: block;
	}
	.sectionNews .newsList .day,
	.sectionNews .newsList .des {
		display: block;
		font-size: 1.2em;
		padding: 2px 0;
		width: 100%;
	}
	.sectionNews .newsPagination {
		margin-top: 30px;
	}
	.sectionNews .postContents {
		width: 100%;
	}
	.sectionNews .postTitle {
		font-size: 1.6em;
	}
	.sectionNews .postContents {
		font-size: 1.2em;
	}
	.sectionNews .postContents > p {
		margin-top: 20px;
	}
	.sectionNews .postPager a {
		font-size: 1em;
		height: 60px;
	}
	.sectionNews .postPager .prev {
		padding-left: 20px;
		visibility: hidden;
	}
	.sectionNews .postPager .next {
		padding-right: 20px;
		visibility: hidden;
	}
	.sectionNews .postPager .prev:before,
	.sectionNews .postPager .next:before {
		height: 8px;
		width: 8px;
	}
}
.petit {
    font-family: 'Petit Formal Script', cursive;
}
.newsList {
    font-size: 12px;
}
body{
	background-color: #ECE5E5;
}