/* ------ Spot ------ */
.sec-spot-list {
	width: 100%;
	position: relative;
	z-index: 0;
	padding: 0 5.2%;
}
.sec-spot-list .sec-lower-inner {
	padding: 0 5.8%;
	padding-bottom: 50px;
}

.spot-list-contents {
	width: 100%;
	display: flex;
	flex-flow: column;
	max-width: 1520px;
	margin: 0 auto;
	position: relative;
}
.spot-list-main {
	width: 100%;
	position: relative;
	margin-bottom: 150px;
}

.spot-list-cats {
	width: 100%;
	margin: 0 auto 100px;
	max-width: 1220px;
	display: flex;
	flex-flow: column;
	border: 1px solid #ddd;
	padding: 50px;
	gap: 20px;
	align-items: center;
}

.spot-list-cats > h3 {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.spot-list-cats > div {
	width: 100%;
	display: flex;
	gap: 50px;
	justify-content: center;
	align-items: flex-start;
}
.spot-list-cats > div > p {
	width: 80px;
	height: 40px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.spot-list-cats > div > div {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	width: 100%;
	max-width: 690px;
}
.spot-list-cats > div > div > a {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #eee;
	border-radius: 999px;
	height: 40px;
	line-height: 1;
	max-width: 120px;
	font-size: 16px;
	letter-spacing: 0.1em;
	transition: all ease 0.33s;
}
.spot-list-cats > div > div > a.is-active {
	background: #c3363f;
	color: #fff;
}
.spot-list-cats > div > div > a:hover {
	background: #c3363f;
	color: #fff;
}
.spot-list-cats > div > div > a.is-active:hover {
	opacity: 0.7;
}

.spot-list-grid {
	width: 100%;
	margin-bottom: 80px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	row-gap: 50px;
}

.card-lower-spot {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.card-lower-spot > div {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.card-lower-spot > div > figure {
	width: 100%;
	max-width: 490px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	aspect-ratio: 300 / 169;
	flex-shrink: 0;
}
.card-lower-spot > div > figure > img {
	width: 100%;
	height: 100%;
	transition: all ease 0.6s;
}
.card-lower-spot:hover > div > figure > img {
	transform: scale(1.05);
	filter: brightness(1.1);
}
.card-lower-spot > div > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	padding-top: 15px;
	gap: 10px;
}
.lower-spot-title {
	width: 100%;
	font-size: 18px;
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-weight: bold;
}

.lower-spot-info-box {
	width: 100%;
	display: flex;
	gap: 10px;
	flex-flow: column;
}
.lower-spot-info-box > p {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 2;
}
.lower-spot-category-box {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.lower-spot-category {
	font-size: 13px;
	letter-spacing: 0.1em;
	border: 1px solid #ccc;
	color: #ccc;
	height: 25px;
	padding: 2px 19px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination-box {
	width: 100%;
	display: flex;
	justify-content: center;
}
.pagination {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: center;
}
.pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	border: 1px solid rgb(68 68 68 / 50%);
	width: 46px;
	height: auto;
	aspect-ratio: 1 /1;
	border-radius: 999px;
	font-family: Noto Sans JP, sans-serif;
	color: rgb(68 68 68 / 50%);
	transition: all ease 0.3s;
	line-height: 1;
	overflow: hidden;
}
.page-numbers.current {
	color: #fff;
	background: #444;
	border: 1px solid #444;
}
.prev.page-numbers {
	margin-right: 15px;
}
.next.page-numbers {
	margin-left: 15px;
}
.page-numbers:hover {
	opacity: 0.6;
}

@media screen and (max-width: 1200px) {
	.spot-list-cats > div > div {
		gap: 14px;
	}
	.spot-list-cats {
		padding: 35px;
	}
	.spot-list-cats > div {
		gap: 35px;
	}

	.spot-list-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 999px) {
	.sec-spot-list {
		padding: 0 7.8%;
	}
	.sec-spot-list .sec-lower-inner {
		background: transparent;
		padding: 0;
	}
	.spot-list-contents {
		padding-top: 50px;
	}
	.spot-list-main {
		margin-bottom: 50px;
	}
	.spot-list-cats {
		gap: 30px;
		padding: 30px;
		margin: 0 auto 50px;
		background: #fff;
		border: none;
	}
	.spot-list-cats > div {
		flex-flow: column;
		align-items: center;
		gap: 20px;
	}
	.spot-list-cats > div > p {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		line-height: 1;
	}
	.spot-list-cats > div > div {
		gap: 10px;
	}
	.spot-list-cats > div > div > a {
		height: 25px;
		font-size: 13px;
		letter-spacing: 0.05em;
		max-width: none;
	}
	.spot-list-grid {
		margin-bottom: 40px;
	}
	.lower-spot-category {
		border: 1px solid #bbb;
		color: #444;
	}
}

@media screen and (max-width: 768px) {
	.spot-list-cats > div > div {
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}

	.lower-spot-title {
		font-size: 16px;
	}
	.lower-spot-info-box > p {
		font-size: 14px;
		line-height: 1.6;
	}
}

@media screen and (max-width: 500px) {
	.spot-list-cats {
		gap: 20px;
		padding: 25px;
		margin: 0 auto 30px;
	}
	.spot-list-cats > div {
		gap: 10px;
	}
	.spot-list-cats > div > p {
		font-size: 14px;
	}
	.spot-list-cats > div > div {
		grid-template-columns: repeat(3, 1fr);
	}

	.spot-list-grid {
		grid-template-columns: repeat(1, 1fr);
		row-gap: 30px;
	}
	.card-lower-spot > div > div {
		padding-top: 12px;
		gap: 8px;
	}
	.lower-spot-info-box > p {
		font-size: 13px;
	}
	.lower-spot-category {
		font-size: 12px;
	}
}

/* ------ Single spot ------ */
.sec-single-spot {
	width: 100%;
	position: relative;
	z-index: 0;
	padding: 0 5.2%;
}
.sec-single-spot .sec-lower-inner {
	padding: 0;
	padding-bottom: 150px;
}
.single-spot-contents {
	width: 100%;
	display: flex;
	flex-flow: column;
	max-width: 820px;
	margin: 0 auto;
	position: relative;
}
.single-spot-title-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 30px;
	margin-bottom: 50px;
}
.single-spot-title-box > h2 {
	font-size: 30px;
	font-family: "Noto Serif JP", serif;
	letter-spacing: 0.05em;
}
.single-spot-title-box > div {
	display: flex;
	flex-flow: column;
	gap: 10px;
	align-items: center;
	opacity: 0.5;
	font-family: Noto Sans JP, sans-serif;
}
.single-spot-category {
	font-size: 12px;
}
.single-spot-content-area img {
	width: 100%;
	display: block;
	margin-bottom: 30px;
}
.single-spot-content-area p {
	line-height: 2;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-family: Noto Sans JP, sans-serif;
}

@media screen and (max-width: 999px) {
	.sec-single-spot {
		padding: 0 7.8%;
	}
	.sec-single-spot .sec-lower-inner {
		background: transparent;
		padding: 0;
		padding-bottom: 50px;
	}
	.single-spot-contents {
		padding-top: 30px;
	}
	.single-spot-title-box > h2 {
		font-size: 20px;
	}
	.single-spot-title-box {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 30px;
	}
	.single-spot-title-box > div {
		display: flex;
		flex-flow: row;
		gap: 20px;
		align-items: center;
		opacity: 0.5;
		font-family: Noto Sans JP, sans-serif;
	}
	.single-spot-category {
		padding-left: 20px;
		border-left: 1px solid #444;
	}
	.single-spot-content-area img {
		margin-bottom: 20px;
	}
}
