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

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

.plan-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;
}

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

.plan-list-cats > div {
	width: 100%;
	display: flex;
	gap: 50px;
	justify-content: center;
	align-items: flex-start;
}
.plan-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;
}

.plan-list-cats > div > div {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 20px;
	width: 100%;
	max-width: 960px;
}
.plan-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;
}
.plan-list-cats > div > div > a.is-active {
	background: #c3363f;
	color: #fff;
}
.plan-list-cats > div > div > a:hover {
	background: #c3363f;
	color: #fff;
}
.plan-list-cats > div > div > a.is-active:hover {
	opacity: 0.7;
}

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

.card-lower-plan {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.card-lower-plan > div {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.card-lower-plan > 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-plan > div > figure > img {
	width: 100%;
	height: 100%;
	transition: all ease 0.6s;
}
.card-lower-plan:hover > div > figure > img {
	transform: scale(1.05);
	filter: brightness(1.1);
}
.card-lower-plan > div > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	padding-top: 15px;
	gap: 10px;
}
.lower-plan-title {
	width: 100%;
	font-size: 18px;
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-weight: bold;
}
.lower-plan-time-price-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	margin-top: 10px;
	margin-bottom: 10px;
	gap: 10px;
	position: relative;
}
.plan-time {
	display: flex;
	align-items: center;
	position: relative;
	gap: 8px;
	letter-spacing: 0.05em;
	line-height: 1;
}
.plan-time::before {
	content: "";
	width: 21px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-clock.svg");
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.plan-price {
	display: flex;
	align-items: center;
	position: relative;
	gap: 8px;
	letter-spacing: 0.05em;
	font-family: Noto Sans JP, sans-serif;
	line-height: 1;
}
.plan-price > strong {
	font-size: 23px;
}

.lower-plan-info-box {
	width: 100%;
	display: flex;
	gap: 10px;
	flex-flow: column;
}
.lower-plan-info-box > p {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 2;
}
.lower-plan-category-box {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.lower-plan-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) {
	.plan-list-cats > div > div {
		grid-template-columns: repeat(6, 1fr);
		gap: 14px;
	}
	.plan-list-cats {
		padding: 35px;
	}
	.plan-list-cats > div {
		gap: 35px;
	}

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

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

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

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

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

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

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

.plan-slide-area {
	width: 100%;
	height: auto;
	aspect-ratio: 1220 / 547;
	max-height: 547px;
	display: flex;
	gap: 21px;
	align-items: stretch;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}
.plan-slide-area.slide-cnt-1 {
	height: auto;
}
.plan-slider {
	width: 100%;
	height: 100%;
}

.swiper-fade .swiper-slide {
	transition-property: opacity, transform !important;
	pointer-events: none;
}
.swiper-fade .swiper-slide-active {
	pointer-events: auto;
}

.plan-slide-item > figure {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.plan-slide-item > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumb-list {
	width: 23.44%;
	height: auto;
	flex-shrink: 0;
	max-width: 285px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: flex-start;
	gap: 17px;
}
.thumb-item {
	width: 100%;
	overflow: hidden;
	user-select: none;
	opacity: 0.5;
}
.thumb-item > figure {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.thumb-item > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	user-select: none;
}
.thumb-item-active {
	opacity: 1;
}

.plan-info-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	position: relative;
}
.plan-time-price-area {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 37px;
	margin-bottom: 32px;
}
.single-plan .plan-time {
	font-size: 17px;
}
.single-plan .plan-price > strong {
	font-size: 33px;
}

.plan-tag-list {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.plan-tag {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	border: 1px solid #e0e0e0;
	border-radius: 999px;
	padding: 15px 40px;
	font-size: 17px;
	letter-spacing: 0.05em;
	flex-shrink: 0;
}

.plan-contents {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: auto;
	margin-bottom: 50px;
}
.plan-contents > p {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.1em;
}

.plan-resv-btn-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}
.btn-plan-resv {
	width: 100%;
	height: 80px;
	max-width: 660px;
	background: #222222;
	border: 1px solid #222;
	border-radius: 10px;
	color: #fff;
	font-size: 27px;
	font-weight: bold;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease 0.33s;
	position: relative;
	overflow: hidden;
}
.btn-plan-resv:hover {
	background: #fff;
	color: #222222;
}

.btn-plan-resv > span {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
}
.btn-plan-resv > span::before {
	content: "";
	width: 32px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-calendar-wh.svg");
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
	transition: all ease 0.2s;
}
.btn-plan-resv:hover > span::before {
	background-image: url("../images/common/icon-calendar-bk.svg");
}

.plan-tour-detail-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 63px;
	margin-top: 50px;
	padding-top: 58px;
	border-top: 1px solid #eaeaee;
}
.plan-tour-detail-area > h3 {
	font-size: 30px;
	font-family: "Noto Serif JP", serif;
	letter-spacing: 0.05em;
	font-weight: 300;
}
.plan-tour-detail-list {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 43px;
}
.plan-tour-detail-item {
	width: 100%;
	display: flex;
	gap: 35px;
	align-items: flex-start;
}
.plan-tour-detail-item > figure {
	width: 52.2%;
	height: auto;
	max-width: 637px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.plan-tour-detail-item > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.plan-tour-detail-item > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 35px;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 2;
	font-family: Noto Sans JP, sans-serif;
}

@media screen and (max-width: 1200px) {
	.single-plan .plan-price > strong {
		font-size: 27px;
	}
}
@media screen and (max-width: 999px) {
	.sec-single-plan {
		padding: 0 7.8%;
	}
	.sec-single-plan .sec-lower-inner {
		background: transparent;
		padding: 0;
		padding-bottom: 50px;
	}
	.single-plan-contents {
		padding: 0;
		padding-top: 30px;
	}
	.single-plan-title-box > h2 {
		font-size: 20px;
	}
	.single-plan-title-box {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 30px;
	}
	.single-plan-title-box > div {
		display: flex;
		flex-flow: row;
		gap: 20px;
		align-items: center;
		opacity: 0.5;
		font-family: Noto Sans JP, sans-serif;
	}
	.single-plan-category {
		padding-left: 20px;
		border-left: 1px solid #444;
	}
	.single-plan-content-area {
		gap: 30px;
	}
	.plan-time-price-area {
		flex-flow: column;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 25px;
	}
	.plan-price {
		line-height: 1;
		width: 100%;
		flex-flow: column;
		align-items: flex-start;
	}
	.single-plan .plan-price > strong {
		font-size: 23px;
	}
	.plan-tag {
		padding: 10px 30px;
		font-size: 15px;
	}
	.plan-tag-list {
		gap: 10px;
		margin-bottom: 20px;
	}
	.plan-contents {
		margin-bottom: 30px;
	}
	.plan-contents > p {
		font-size: 14px;
	}
	.btn-plan-resv {
		height: 60px;
		font-size: 18px;
	}
	.btn-plan-resv > span {
		gap: 10px;
	}
	.btn-plan-resv > span::before {
		width: 20px;
	}
	.plan-tour-detail-area {
		gap: 30px;
		margin-top: 30px;
		padding-top: 38px;
		border-top: 1px solid #e0e0e0;
	}
	.plan-tour-detail-area > h3 {
		font-size: 20px;
	}
	.plan-tour-detail-item {
		flex-flow: column;
		gap: 15px;
		align-items: center;
	}
	.plan-tour-detail-item > figure {
		width: 100%;
	}
	.plan-tour-detail-item > div {
		gap: 10px;
	}
}

@media screen and (max-width: 768px) {
	.plan-slide-area {
		aspect-ratio: auto;
		max-height: none;
		align-items: center;
		justify-content: flex-start;
		flex-flow: column;
		gap: 15px;
	}
	.plan-slider {
		height: auto;
		aspect-ratio: 913 / 547;
	}
	.thumb-list {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		max-width: none;
		flex-flow: initial;
		justify-content: unset;
		align-items: unset;
	}
	.plan-price {
		font-size: 14px;
		gap: 12px;
	}
	.plan-tag {
		font-size: 13px;
		padding: 7px 20px;
	}
}
