

/*--------------------------------------------------*/
/* .archive-page */
/*--------------------------------------------------*/

.cms-page .page-content .archive-title {
	font-size: 28px;
	margin: 0 0 60px 0;
}
.archive-page .blog-list ul {
	padding: 0;
	list-style-type: none;
}
.archive-page .blog-list > ul > li {
	margin-bottom: 50px;
}
.archive-page .blog-list dl dt a {
	display: block;
	overflow: hidden;
}
.archive-page .blog-list dl dt a img {
	transition: 0.3s;
}
.archive-page .blog-list dl dd .time {
	font-size: 14px;
	line-height: 1;
	color: #ED7C44;
	margin: 20px 0 5px 0;
}
.archive-page .blog-list dl dd .entry-title {
	font-size: 18px;
	line-height: 1.8;
	margin: 0 0 5px 0;
}
.archive-page .blog-list dl dd .category ul li {
	display: inline-block;
	margin: 0 5px 5px 0;
}
.archive-page .blog-list dl dd .category ul li a {
	display: flex;
	align-items: center;
	background-color: #ED7C44;
	color: #ffffff;
	font-size: 13px;
	line-height: 1;
	height: 20px;
	border-radius: 20px;
	padding: 0 15px 2px 15px;
}
@media (min-width: 768px) {
	.archive-page .blog-list dl dt a:hover img {
		scale: 1.1;
	}
}
@media (max-width: 767px) {
	.cms-page .page-content .archive-title {
		font-size: 20px;
	}
	.archive-page .blog-list dl dd .entry-title {
		font-size: 16px;
	}
}

/*--------------------------------------------------*/
/* ページネーション */
/*--------------------------------------------------*/

.archive-page .pagination-wrap {
	text-align: center;
	margin-top: 50px;
}
.archive-page .pagination-wrap nav {
	display: inline-block;
}
.archive-page .pagination {
	position: relative;
	border-radius: 0;
	margin: 0;
}
.archive-page .pagination .page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #efedec;
	color: #333333;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	font-size: 12px;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	margin: 0 5px;
}
.archive-page .pagination .page-item.active .page-link {
	background-color: #ED7C44;
	color: #ffffff;
	transition: 0.5s;
}
.archive-page .pagination .page-link:hover,
.archive-page .pagination .page-item.active .page-link:hover {
	opacity: 1;
}
.archive-page .pagination .prev,
.archive-page .pagination .next,
.archive-page .pagination .prev:hover,
.archive-page .pagination .next:hover {
	background-color: rgba(0,0,0,0);
	color: rgba(0,0,0,0);
	background-position: center center;
	background-repeat: no-repeat;
}
.archive-page .pagination .prev {
	position: absolute;
	left: -50px;
	top: 0;
}
.archive-page .pagination .next {
	position: absolute;
	right: -50px;
	top: 0;
}
.archive-page .pagination .prev:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	content: "\f104";
	font-family: FontAwesome;
	font-weight: normal;
	font-size: 20px;
	color: #ED7C44;
}
.archive-page .pagination .next:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	content: "\f105";
	font-family: FontAwesome;
	font-weight: normal;
	font-size: 20px;
	color: #ED7C44;
}
@media (min-width: 576px) {
	.archive-page .pagination .page-link:hover,
	.archive-page .pagination .page-item.active .page-link:hover {
		background-color: #ED7C44;
		color: #ffffff;
	}
	.archive-page .pagination .prev:hover,
	.archive-page .pagination .next:hover {
		background-color: rgba(0,0,0,0);
		color: rgba(0,0,0,0);
	}
	.archive-page .pagination .prev:hover {
		background-position: calc(50% - 5px) center;
	}
	.archive-page .pagination .next:hover {
		background-position: calc(50% + 5px) center;
	}
}
@media (max-width: 991px) {
	.archive-page .pagination-wrap {
		margin-top: 60px;
	}
}
@media (max-width: 575px) {
	.archive-page .pagination .page-link {
		width: 30px;
		height: 30px;
		margin: 0 5px;
	}
	.archive-page .pagination .prev {
		background-size: 7px;
		left: -40px;
	}
	.archive-page .pagination .next {
		background-size: 7px;
		right: -40px;
	}
}


/*--------------------------------------------------*/
/* .single-page .page-content .title-wrap */
/*--------------------------------------------------*/

.single-page .page-content .title-wrap {
	border-bottom: 1px solid #dddddd;
	padding-bottom: 25px;
}
.single-page .page-content .title-wrap .time {
	font-size: 14px;
	color: #ED7C44;
	margin: 0;
}
.single-page .page-content .title-wrap h1 {
	font-size: 32px;
	line-height: 1.6;
	margin: 5px 0 10px 0;
}
.single-page .page-content .title-wrap .category ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.single-page .page-content .title-wrap .category ul li {
	display: inline-block;
	margin: 0 5px 5px 0;
}
.single-page .page-content .title-wrap .category ul li a {
	display: flex;
	align-items: center;
	background-color: #ED7C44;
	color: #ffffff;
	font-size: 13px;
	line-height: 1;
	height: 20px;
	border-radius: 20px;
	padding: 0 15px 2px 15px;
}
@media (max-width: 575px) {
	.single-page .page-content .title-wrap h1 {
		font-size: 24px;
	}
}

/*--------------------------------------------------*/
/* .single-page .page-content .eyecatch */
/*--------------------------------------------------*/

.single-page .page-content .eyecatch {
	margin-top: 40px;
}

/*--------------------------------------------------*/
/* .single-page .page-content .the-content */
/*--------------------------------------------------*/

.single-page .page-content .the-content {
	padding: 60px 0 100px 0;
	font-size: 16px;
	line-height: 2;
}
.single-page .page-content .the-content > *:first-child {
	margin-top: 0;
}
.single-page .page-content .the-content h2 {
	font-size: 28px;
	border-top: 5px solid #eeeeee;
	border-bottom: 5px solid #eeeeee;
	margin: 80px 0 30px 0;
	padding: 15px 0;
}
.single-page .page-content .the-content > *:first-child {
	margin-top: 0;
}
.single-page .page-content .the-content h3 {
	position: relative;
	font-size: 24px;
	border-bottom: 5px solid #eeeeee;
	padding-bottom: 15px;
	margin: 60px 0 25px 0;
}
.single-page .page-content .the-content h3:after {
	position: absolute;
	left: 0;
	bottom: -5px;
	content: "";
	background-color: #ED7C44;
	width: 20px;
	height: 5px;
}
.single-page .page-content .the-content h4 {
	font-size: 20px;
	margin: 40px 0 15px 0;
}
.single-page .page-content .the-content h4:before {
	content: "\f111";
	font-family: FontAwesome;
	font-weight: normal;
	color: #ED7C44;
	margin-right: 0.4em;
}
.single-page .page-content .the-content p,
.single-page .page-content .the-content ul,
.single-page .page-content .the-content ol {
	margin-bottom: 2.2em;
}
.single-page .page-content .the-content a {
	color: #ED7C44;
	text-decoration: underline;
}
.single-page .page-content .the-content a:hover {
	text-decoration: none;
}
@media (max-width: 575px) {
	.single-page .page-content .the-content {
		font-size: 14px;
		padding: 40px 0 130px 0;
	}
	.single-page .page-content .the-content h2 {
		font-size: 22px;
	}
	.single-page .page-content .the-content h3 {
		font-size: 18px;
	}
	.single-page .page-content .the-content h4 {
		font-size: 16px;
	}
}

/*--------------------------------------------------*/
/* .tag-wrapt */
/*--------------------------------------------------*/

.single-page .page-content .tag-wrap {
	margin: 0 0 30px 0;
}
.single-page .page-content .tag-wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.single-page .page-content .tag-wrap ul li {
	display: inline-block;
	margin: 0 10px 15px 0;
}
.single-page .page-content .tag-wrap ul li a {
	display: block;
	background-color: #eeeeee;
	border-radius: 50px;
	color: #000000;
	font-size: 90%;
	line-height: 1.4;
	text-decoration: none;
	padding: 10px 20px;
}

/*--------------------------------------------------*/
/* 記事ページ .prev-next */
/*--------------------------------------------------*/

.single-page .prev-next {
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	font-size: 13px;
	line-height: 1.6;
}
.single-page .prev-next a {
	position: relative;
	display: block;
	padding: 20px 10px;
}
.single-page .prev-next .prev a {
	padding-left: 25px;
}
.single-page .prev-next .next a {
	text-align: right;
	padding-right: 25px;
}
.single-page .prev-next .prev a:before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "\f104";
	font-family: FontAwesome;
	font-weight: normal;
	font-size: 20px;
	color: #ED7C44;
}
.single-page .prev-next .next a:before {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "\f105";
	font-family: FontAwesome;
	font-weight: normal;
	font-size: 20px;
	color: #ED7C44;
}
.single-page .prev-next a .en {
	display: block;
	color: #ED7C44;
	margin-bottom: 5px;
}
@media (min-width: 768px) {
	.single-page .prev-next {
		display: flex;
	}
	.single-page .prev-next > * {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.single-page .prev-next .prev + .next {
		border-top: 1px solid #eeeeee;
	}
}

/*--------------------------------------------------*/
/* 記事ページ ボタン */
/*--------------------------------------------------*/

.single-page .col-main .btn-wrap {
	margin-top: 70px;
}
.single-page .col-main .btn-wrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 50px;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	background-color: #333333;
	border: none;
	margin: 0 auto;
}







