@charset "utf-8";

/* ===========================================
	common
============================================== */
/*スクロールヒントの表示位置調整*/
.scroll-hint-icon {
	top: 15%;
}

.main {
	background-size: 128rem;
	background-position: center top;
	background-repeat: repeat;
	background-image: url(../images/common/blue_bg.png);
}

/* ============
	responsive
================ */

/* ===========================================
	under_ttl
============================================== */
.under_ttl_area {
	padding-top: 11.8rem;
	border-bottom: solid 2px var(--black_color);
}

.under_ttl_inner {
	justify-content: space-between;
	align-items: flex-end;
}

.under_ttl_wrap {
	justify-content: center;
	align-items: center;
	column-gap: 2.667rem;
	width: 33.6rem;
	height: 8rem;
	background-color: var(--black_color);
	border-radius: 10px 10px 0 0;
}

.under_ttl_sub,
.under_ttl {
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-style: normal;
}

.under_ttl_sub {
	margin-bottom: 8px;
	font-size: 1.2667rem;
	color: #a5e84e;
	letter-spacing: 0.06em;
}

.under_ttl {
	font-size: 2.46667rem;
	color: var(--white_color);
}

/* ============
	responsive
================ */
@media screen and (max-width: 1024px) {
	.under_ttl_area {
		padding-top: 8rem;
	}

	.under_ttl_inner {
		flex-direction: column-reverse;
		align-items: flex-start;
		row-gap: 1.6rem;
	}

	.under_ttl_wrap {
		column-gap: 1.0667rem;
		max-width: 21rem;
		width: 100%;
		height: 6.667rem;
	}

	.under_ttl_icon {
		width: 2rem;
		height: 2.667rem;
	}

	.under_ttl_sub {
		font-size: 0.9334rem;
	}

	.under_ttl {
		font-size: 1.7334rem;
	}
}

@media screen and (max-width: 480px) {
	.under_ttl_wrap {
		max-width: none;
	}
}

/* ===========================================
	breadcrumbs_list
============================================== */
.breadcrumb_list {
	column-gap: 1rem;
	padding-bottom: 1.0667rem;
}

.breadcrumb_list > li {
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.9334rem;
	line-height: 1;
}

.breadcrumb_list > li > a {
	position: relative;
	padding-right: 1rem;
}

.breadcrumb_list > li > a:hover {
	opacity: 0.7;
}

.breadcrumb_list > li > a::after {
	content: '';
	position: absolute;
	top: 0;
	right: -0.5rem;
	bottom: 0;
	margin: auto;
	width: 0.8667rem;
	height: 0.8667rem;
	background-position: center;
	background-size: contain;
	background-image: url(../images/common/triangle_green_icon.svg);
}

/* ============
	responsive
================ */
@media screen and (max-width: 1024px) {
	.breadcrumb_list {
		padding-bottom: 0;
	}
}

/* ===========================================
	cate
============================================== */
.cate_list_wrap {
	margin-bottom: 10rem;
	align-items: center;
}

.cate_ttl,
.cate_list > li > a {
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
}

.cate_list {
	flex-wrap: wrap;
}

.cate_ttl {
	position: relative;
	margin-right: 2.5334rem;
	padding: 6.5px 10px;
	font-size: 1.4rem;
	color: #a5e84e;
	letter-spacing: 0.06em;
	background-color: var(--black_color);
	border-radius: 2px 0 0 2px;
}

.cate_ttl::after {
	content: '';
	position: absolute;
	right: -0.9334rem;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 17px solid rgba(255, 255, 255, 0);
	border-right: 0;
	border-bottom: 17px solid rgba(255, 255, 255, 0);
	border-left: 14px solid var(--black_color);
}

.cate_list {
	column-gap: 1.6rem;
}

.cate_list > li > a {
	padding: 8px;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	line-height: 1.4;
	background-color: var(--white_color);
	border: solid 2px var(--black_color);
	border-radius: 5px;
}

.cate_list > li > a:hover {
	color: #2dae5d;
	border: solid 2px #2dae5d;
}

/* =============
	responsive
================ */
@media screen and (max-width: 1024px) {
	.cate_list_wrap {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 1.0667rem;
	}

	.cate_ttl {
		padding: 4px 10px;
		font-size: 0.9334rem;
	}

	.cate_ttl::after {
		right: -11px;
		border-top: 11px solid rgba(255, 255, 255, 0);
		border-right: 0;
		border-bottom: 11px solid rgba(255, 255, 255, 0);
		border-left: 11px solid var(--black_color);
	}

	.cate_list_wrap {
		margin-bottom: 3.4rem;
	}

	.cate_list {
		gap: 8px;
	}

	.cate_list > li > a {
		font-size: 1rem;
	}
}

/* ===========================================
	pagination
============================================== */
.pagination {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 1.334rem;
	padding-top: 3.2rem;
}

.pagination span,
.pagination a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	font-family: 'DotGothic16', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.0667rem;
	color: var(--black_color);
	text-decoration: none !important;
	text-align: center;
	border-radius: 9999px;
	border: solid 2px rgba(255, 255, 255, 0);
}

.pagination .pager:hover {
	background-color: var(--white_color);
	border: solid 2px #a5e84e;
}

.pagination .current {
	color: var(--white_color);
	border: solid 2px var(--black_color);
	background-color: var(--black_color);
}

.pagination a.prev,
.pagination a.next {
	position: relative;
	width: 2rem;
	height: 2rem;
	background-size: 2rem;
	background-position: center;
}

.pagination a.prev {
	margin-right: 2.8667rem;
	background-image: url(../images/common/prev.png);
}

.pagination a.next {
	margin-left: 2.8667rem;
	background-image: url(../images/common/next.png);
}

/* Page x / y */
.pagination span.page_num {
	display: none;
}

/* =============
	responsive
================ */
@media screen and (max-width: 1024px) {
	.pagination {
		padding-top: 3.2rem;
	}
}

@media screen and (max-width: 480px) {
	.pagination a.prev {
		justify-content: flex-start;
		margin-right: 0;
		margin-left: 0;
	}

	.pagination a.next {
		justify-content: flex-end;
		margin-right: 0;
		margin-left: 0;
	}
}
