#eraberu #head nav.pcNavi ul {
	display: none;
}

.plan-title {
	text-align: center;
}

.plan-title h1 {
	font-size: 24px;
	font-weight: bold;
	color: #000;
	width: 100%;
}

.plan-container {
	 box-sizing: border-box; 
	 max-width: 100%;
	 padding: 0 15px;
	 margin: 0 auto; 
	}

@media (min-width: 576px) {
	.plan-container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.plan-container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.plan-container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.plan-container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.plan-container {
		max-width: 1320px;
	}
}

.plan-list-row {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.plan-list-row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
}

.plan-card {
	flex: 0 0 auto;
	width: 100%;
	border: 1px solid #ccc;
	margin-bottom: 0;
	padding: 10px;
	opacity: 0;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transform: translateY(-20px) scale(0.95);
	transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.1s;
}

.plan-card:hover,
.plan-card:active {
	transform: scale(0.98);
	background-color: #d6e7e9ff;
}

.plan-card__desc {
	font-size: 16px;
}

.plan-label__note {
	font-size: 0.8em;
}

@media (min-width: 768px) {
	.plan-list-row>* {
		width: calc((100% - 10px) /3);
	}

	.plan-card {
		flex: 0 0 auto;
		width: calc((100% - 10px) /3);
		padding: 15px;
	}
}

.plan-card.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.plan-card.fade-out {
	opacity: 0;
	transform: translateY(20px) scale(0.95);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.plan-card-inner {
	transition: opacity 0.3s ease;
}

.plan-card-inner a {
	display: flex;
}

.plan-card__no {
	font-size: 1.2em;
	font-weight: bold;
	background-color: #f1eddc;
}

.plan-card__image {
	width: 45%;
	margin-right: 10px;
}

@media (min-width: 768px) {
	.plan-card-inner a {
		display: block;
	}

	.plan-card__image {
		width: 100%;
		margin-bottom: 5px;
	}
}

.plan-img {
	display: block;
	width: 100%;
	height: auto;
}

.result-count {
	margin: 1em 0;
	font-weight: bold;
}

.result-count span {
	font-weight: bold;
}

/* 条件指定のスタイル */
.filter-area {
	margin-bottom: 20px;
	padding: 15px 15px 5px 15px;
	background: #f4f4f4;
}

.filter-area h2 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 22px;
}

.filter-block {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.filter-label {
	flex: 0 0 3.5em;
	font-weight: bold;
	line-height: 1.8;
}

.filter-options {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px;
}

.filter-options label {
	white-space: nowrap;
}

@media screen and (min-width: 641px) {
	.filter-area {
		padding-left: 30px;
		padding-bottom: 15px;
	}
}

/* 条件表示 */
.option-filters {
	position: relative;
}

.option-filters.collapsed .filter-options {
	max-height: 6em;
	overflow: hidden;
	position: relative;
}

.option-filters.collapsed .filter-options::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2em;
	background: rgba(255, 255, 255, 0.85);
	pointer-events: auto;
	z-index: 1;
}

.filter-toggle-btn {
	position: absolute;
	right: 0.5em;
	bottom: 0.5em;
	z-index: 2;
	background: none;
	border: none;
	color: #007bba;
	cursor: pointer;
	font-size: 0.95em;
	padding: 0.3em 0.5em;
}

.option-filters.collapsed .filter-options .filter-toggle-btn {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -0.1em;
	z-index: 2;
	background: none;
	border: none;
	color: #007bba;
	cursor: pointer;
	font-size: 0.95em;
	padding: 0.3em 0.5em;
}

.option-filters.expanded .filter-options .filter-toggle-btn {
	position: static;
	margin-top: 0.5em;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

@media screen and (min-width: 641px) {
	.option-filters.collapsed .filter-options {
		max-height: none;
		overflow: visible;
	}

	.option-filters.collapsed .filter-options::after {
		display: none;
	}

	.filter-toggle-btn {
		display: none;
	}
}

/* ボタンのスタイル */
.reserveBtn-wraper {
	text-align: center;
	margin: 30px auto;
}

.reserveBtn .button {
	margin: 5px 12px;
	padding: 7px 24px;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	background-color: #458EF7;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

/* ボタンホバー時 */
.reserveBtn .button:hover {
	background-color: #357ABD;
}

/* ボタンフォーカス時 */
.reserveBtn .button:focus {
	outline: none;
	box-shadow: 0 0 8px rgba(53, 122, 189, 0.8);
}

/* モーダル */
.modal-reserve-button {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #fff !important;
	padding: 7px 24px;
	background-color: #458EF7;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 6px;
	padding: 10px 24px;
	display: inline-block;

	transition: background-color 0.3s ease;
	width: fit-content;
}

.modal-reserve-button:hover {
	background-color: #357ABD;
}

.pswp-custom-reserve {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 1000;
	padding: 10px 0;
	text-align: center;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.pswp-gallery__item img {
	max-width: 100%;
	height: auto;
}

.image-crop {
	width: 120px;
	height: 100px;
	overflow: hidden;
	position: relative;
}

.image-crop img {
	position: absolute;
	top: -20px;
	left: -10px;
	width: 270px;
	height: auto;
	max-width: none;
	object-fit: cover;
}

@media (min-width: 768px) {
	.image-crop {
		width: auto;
		height: auto;
		overflow: visible;
	}

	.image-crop img {
		position: static;
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}

.tooltip-icon {
	display: inline-block;
	margin-left: 5px;
	color: #fff;
	background-color: #c50812ff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
	position: relative;
}

.tooltip-box {
	display: none;
	position: absolute;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 5px;
	width: 260px;
	font-size: 14px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	z-index: 999;
	top: 25px;
	right: 0;
}

#price-note {
	position: relative;
}

.price-note {
	font-size: 16px;
	position: relative;
	display: block;
	text-align: right;
	margin: 0 0 5px;
}

.price-note .tooltip-box {
	text-align: left;
}

/* スマホ表示時に下部に矢印ボタンを配置 */
@media screen and (max-width: 768px) {
	.pswp--touch .pswp__button--arrow {
		visibility: visible !important;
	}

	.pswp__button--arrow--prev,
	.pswp__button--arrow--next {
		display: block !important;
		top: auto !important;
		bottom: 100px !important;
		width: 44px;
		height: 44px;
		background-color: rgba(0, 0, 0, 0.5);
		border-radius: 50%;
		z-index: 1000;
	}

	.pswp__button--arrow--prev {
		left: 25%;
		right: auto;
		transform: translateX(-50%);
	}

	.pswp__button--arrow--next {
		right: 25%;
		left: auto;
		transform: translateX(50%);
	}

	.pswp__button svg {
		width: 20px;
		height: 20px;
	}

	.pswp__icn {
		left: 2px;
	}

	.pswp__button--arrow--next .pswp__icn {
		left: auto;
		right: 2px;
		transform: scale(-1, 1);
	}
}