/*--------------------------------------
ページャー
--------------------------------------*/
.pagenation {
	text-align: center;
}
.pagenation ul {
	margin: 0;
	padding-left: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: wrap;
}
.pagenation li {
    list-style: none;
	position: relative;
	border-radius: 50%;
	padding-top: 0.2rem;
}
.pagenation li a {
    display: block;
    text-decoration: none;
	color: #282828;
	transition: .3s;
	width: 100%;
	height: 100%;
}
.pagenation li a:hover {
	opacity: 0.6;
	color: #282828;
}
@media screen and (max-width: 1399px){
	.pagenation ul {
		font-size: 1.4rem;
	}
	.pagenation li {
		line-height: 2.8rem;
		width: 2.8rem;
		height: 2.8rem;
	}
}
@media screen and (min-width: 1400px){
	.pagenation ul {
		font-size: 1.8rem;
	}
	.pagenation li {
		line-height: 3.3rem;
		width: 3.3rem;
		height: 3.3rem;
	}
}
/*ellipsis*/
.ellipsis{
	padding-right: 1.4rem;
	padding-left: 1.4rem;
}
/*active*/
.pagenation li.active {
    cursor: not-allowed;
	background-color: #f0c33e;
	color: #fff;
	margin-right: 0.8rem;
	margin-left: 0.8rem;
}

/*--------------------------------
PREV NEXT
---------------------------------*/
#prev_next{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 90%;
	max-width: 43.8rem;
	margin-right: auto;
	margin-left: auto;
}
.single-page-all a{
	transition: .3s;
}
.single-page-all a:hover{
	opacity: 0.6;
}
/*btn*/
#prev,#next{
	display: block;
	position: relative;
	color: #282828;
	text-decoration: none;
	transition: .3s;
}
#prev:hover,#next:hover{
	opacity: 0.6;
}
#prev::before,#next::before{
	content: " ";
	position: absolute;
	top: 0;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url(../images/logo-icon/single-page-arrow.svg);
}
#next{
	text-align: right;
}
#prev::before{
	left: 0;
}
#next::before{
	right: 0;
	transform: rotate(180deg);
}
@media screen and (max-width: 1599px){
	.single-page-all{
		max-width: 3rem;
	}
	#prev,#next{
		font-size: 1.5rem;
		width: 8rem;
		line-height: 3.2rem;
	}
	#prev::before,#next::before{
		width: 3.2rem;
		height: 3.2rem;
	}
	#prev{
		padding-left: 4.4rem;
	}
	#next{
		padding-right: 4.4rem;
	}
}
@media screen and (min-width: 1600px){
	.single-page-all{
		max-width: 3.5rem;
	}
	#prev,#next{
		font-size: 1.7rem;
		width: 10rem;
		line-height: 4rem;
	}
	#prev::before,#next::before{
		width: 4rem;
		height: 4rem;
	}
	#prev{
		padding-left: 5.6rem;
	}
	#next{
		padding-right: 5.6rem;
	}
}

/* Margin and Paddings 
----------------------------------------------------------------------------------------------------*/
.m10 {
	margin: 10px;
}
.m20 {
	margin: 20px;
}
.m40 {
	margin: 40px;
}
.m10-top {
	margin-top: 10px;
}
.m20-top {
	margin-top: 20px;
}
.m30-top {
	padding-top: 30px;
}
.m40-top {
	margin-top: 40px;
}
.m60-top {
	margin-top: 60px;
}
.m80-top {
	margin-top: 80px;
}
.m10-right {
	margin-right: 10px;
}
.m20-right {
	margin-right: 20px;
}
.m40-right {
	margin-right: 40px;
}
.m10-bottom {
	margin-bottom: 10px;
}
.m20-bottom {
	margin-bottom: 20px;
}
.m30-bottom {
	margin-bottom: 30px;
}
.m40-bottom {
	margin-bottom: 40px;
}
.m60-bottom {
	margin-bottom: 60px;
}
.m80-bottom {
	margin-bottom: 80px;
}
.m10-left {
	margin-left: 10px;
}
.m20-left {
	margin-left: 20px;
}

.m40-left {
	margin-left: 40px;
}
.p10 {
	padding: 10px;
}
.p20 {
	padding: 20px;
}
.p40 {
	padding: 40px;
}
.p10-top {
	padding-top: 10px;
}
.p20-top {
	padding-top: 20px;
}

.p40-top {
	padding-top: 40px;
}
.p10-right {
	padding-right: 10px;
}
.p20-right {
	padding-right: 20px;
}
.p40-right {
	padding-right: 40px;
}
.p10-bottom {
	padding-bottom: 10px;
}
.p20-bottom {
	padding-bottom: 20px;
}
.p40-bottom {
	padding-bottom: 40px;
}
.p60-bottom {
	padding-bottom: 60px;
}
.p10-left {
	padding-left: 10px;
}
.p20-left {
	padding-left: 20px;
}
.p40-left {
	padding-left: 40px;
}

