@charset "utf-8";

/*--------------------------------------------------
	アーカイブページ
--------------------------------------------------*/
.archive__header {
	margin-top: 80px;
	padding: 40px var(--container-padding) 20px;
}
.event-archive .archive__header {
	margin-top: 0;
}
.archive__header .archive__title {
	font-weight: 700;
	font-size: 1.25rem;
	text-align: center;
}
.archive__nav {
	position: fixed;
	top: 80px;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 80px;
	padding-top: 10px;
	padding-bottom: 20px;
	transition: transform 0.3s ease;
}
.is-header-hidden + .site-main .archive__nav {
	transform: translateY(-100%);
}
.page-search-purpose__links {
	padding: 0 var(--container-padding);
}
.archive__nav-title,
.page-search-purpose__link-title {
	display: none;
}
.archive__nav-list {
	display: flex;
	gap: 8px;
	overflow-x: scroll;
	padding-bottom: 16px;
	padding-left: 1rem;
}
.page-search-purpose__links-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px 8px;
	max-width: 480px;
	margin: 0 auto;
}
.page-search-purpose__links-item {
	width: calc(40% - 4px);
	min-width: 124px;
	max-width: 142px;
}
.archive__nav-list a,
.page-search-purpose__links-list a {
	display: block;
	position: relative;
	min-width: 80px;
	padding: 9px 16px 9px 34px;
	border-radius: var(--radius-full);
	box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
	background: var(--color-white);
	font-size: 0.875rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}
.-all a {
	padding-left: 16px;
}
.archive__nav-list a::before,
.page-search-purpose__links-list a::before {
	position: absolute;
	top: calc(50% - 8px);
	left: 8px;
	width: 16px;
	height: 16px;
	border-radius: var(--radius-full);
	content: '';
}
.-spot a::before {
	background: var(--color-spot);
}
.-experience a::before {
	background: var(--color-experience);
}
.-gourmet a::before {
	background: var(--color-gourmet);
}
.-souvenir a::before {
	background: var(--color-souvenir);
}
.-stay a::before {
	background: var(--color-stay);
}
.archive__filters,
.event-archive .calendar {
	padding: 20px var(--container-padding) 0;
}
.spot-archive .archive__header,
.spot-archive .archive__filters {
	background: #F9FBEB;
}
.experience-archive .archive__header,
.experience-archive .archive__filters {
	background: #FFFBDA;
}
.gourmet-archive .archive__header,
.gourmet-archive .archive__filters {
	background: #FDEFE0;
}
.souvenir-archive .archive__header,
.souvenir-archive .archive__filters {
	background: #FDF1F0;
}
.stay-archive .archive__header,
.stay-archive .archive__filters {
	background: #F0FFF3;
}
.event-archive .archive__header,
.event-archive .archive__search,
.event-archive .archive__filters {
	background: #D6EBF5;
}

@media (min-width: 768px) {
	.archive__header {
		margin-top: 100px;
	}
	.archive__nav,
	.page-search-purpose__links {
		display: flex;
		align-items: center;
		justify-content: center;
		top: 90px;
		max-width: var(--max-content-width);
		margin: 0 auto;
		padding: 0 var(--container-padding);
	}
	.is-header-hidden + .site-main .archive__nav {
		transform: translateY(calc(-100% - 10px));
	}
	.archive__nav-title,
	.page-search-purpose__link-title {
		display: block;
		flex-shrink: 0;
		color: var(--gray-700);
		font-size: 0.8125rem;
		line-height: 1;
	}
	.archive__nav-list,
	.page-search-purpose__links-list {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		flex-grow: 1;
		overflow-x: visible;
		padding-bottom: 0;
	}
	.page-search-purpose__links-list {
		max-width: inherit;
		padding-left: 1rem;
	}
	.page-search-purpose__links-item {
		width: auto;
		min-width: inherit;
		max-width: inherit;
	}
	.archive__nav-list a,
	.page-search-purpose__links-list a {
		padding: 12px 8px;
		box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16);
		font-size: clamp(0.8125rem, 0.8125rem + 0.25vw, 0.9375rem);
	}
	.-spot a {
		background: var(--color-spot);
	}
	.-experience a {
		background: var(--color-experience);
	}
	.-gourmet a {
		background: var(--color-gourmet);
	}
	.-souvenir a {
		background: var(--color-souvenir);
	}
	.-stay a {
		background: var(--color-stay);
	}
	.archive__nav-list a::before,
	.page-search-purpose__links-list a::before {
		display: none;
	}
}

@media (min-width: 1024px) {
	.archive__header {
		margin-top: 120px;
	}
	.archive__nav {
		top: 110px;
		left: 50%;
		padding: 0;;
		transform: translateX(-50%);
	}
	.is-header-hidden + .site-main .archive__nav {
		transform: translate(-50%, calc(-100% - 20px));
	}
	.archive__nav-list {
		gap: 2%;
		padding-left: 20px;
	}
}

/* フィルターフォーム */
.archive-filter-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.archive-filter-form__row.-filter {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-top: 50px;
}
.archive-filter-form__row .archive-filter-form__field > label {
	position: absolute;
	top: 0;
	width: calc((100% - 16px) / 3);
}
.event-archive .archive-filter-form__row .archive-filter-form__field > label {
	position: relative;
	width: auto;
}
.archive-filter-form__row .archive-filter-form__field:nth-child(1) > label {
	left: 0;
}
.archive-filter-form__row .archive-filter-form__field:nth-child(2) > label {
	left: calc((100% - 16px) / 3 + 8px);
}
.archive-filter-form__row .archive-filter-form__field:nth-child(3) > label {
	left: calc((100% - 16px) * 2 / 3 + 16px);
}
.archive-filter-form__field > label {
	display: block;
	position: relative;
	padding: 8px 16px;
	border-radius: var(--radius-full);
	background: var(--color-white);
	border-width: 2px;
	border-style: solid;
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1.4;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}
.archive-filter-form__field > label::after {
	position: absolute;
	top: calc(50% - 4px);
	right: 16px;
	width: 12px;
	height: 7px;
	background: url(../images/icon_arrow_down.svg) no-repeat center center / contain;
	transition: transform 0.2s;
	content: '';
}
.event-archive .archive-filter-form__field > label::after {
	display: none;
}

/* イベントアーカイブ */
.event-archive .archive__header .archive__title {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	font-size: clamp(1rem, 0.814rem + 0.76vw, 1.5rem);
	line-height: 1.2;
}
.event-archive .archive__header .archive__title .en {
	color: var(--color-white);
	font-family: var(--font-montserrat);
	font-size: clamp(2rem, 1.35rem + 2.67vw, 3.75rem);
	letter-spacing: 0.05em;
	text-shadow:
  1px 1px 0 var(--gray-700), -1px -1px 0 var(--gray-700),
  -1px 1px 0 var(--gray-700),  1px -1px 0 var(--gray-700),
  1px 0 0 var(--gray-700), -1px  0 0 var(--gray-700),
  0 1px 0 var(--gray-700),  0 -1px 0 var(--gray-700);
}
.event-archive .archive-filter-form {
	gap: 12px;
}
.event-archive .archive-filter-form__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 8px 12px;
}
.event-archive .archive-filter-form__row .archive-filter-form__field {
	flex: 1;
	min-width: 0;
}
.event-archive .archive-filter-form__row .archive-filter-form__field > label {
	position: relative;
	left: auto;
	width: auto;
	display: block;
	margin-bottom: 6px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--color-black);
	cursor: default;
}
.event-archive .archive-filter-form__row.-keyword .archive-filter-form__field > label {
	margin-bottom: 0;
}
.event-archive .archive-filter-form__field input[type="date"],
.event-archive .archive-filter-form__field select,
.event-archive .archive-filter-form__field--keyword input[type="search"] {
	display: block;
	width: 100%;
	padding: 10px 16px;
	border: 1px solid var(--color-black);
	border-radius: var(--radius-full);
	background: var(--color-white);
	font-size: 0.9375rem;
	color: var(--color-black);
	appearance: none;
	-webkit-appearance: none;
	background-image: none;
}
.event-archive .archive-filter-form__field input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 1;
	cursor: pointer;
}
.event-archive .archive-filter-form__field input[type="date"]::placeholder,
.event-archive .archive-filter-form__field--keyword input[type="search"]::placeholder {
	color: #757575;
}
.event-archive .archive-filter-form__field select {
	padding-right: 40px;
	background-image: url(../images/icon_arrow_down.svg);
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px 7px;
}
.event-archive .archive-filter-form__field--keyword {
	height: auto;
	border: none;
	background: transparent;
	flex-grow: 1;
	min-width: 120px;
}
.event-archive .archive-filter-form__field--keyword label {
	margin-bottom: 6px;
}
.event-archive .archive-filter-form__field--keyword input[type="search"] {
	flex: 1;
	min-width: 0;
}
.event-archive .archive-filter-form__date-sep {
	display: flex;
	align-items: center;
	height: 50px;
	padding: 0 4px;
	font-size: 1rem;
	color: var(--color-black);
}
.event-archive .archive-filter-form__actions {
	width: 100%;
	margin-top: 8px;
	margin-bottom: 0;
}
.event-archive .archive-filter-form__submit {
	padding-left: 48px;
}
.event-archive .archive-filter-form__submit::before {
	left: 16px;
}

.archive-filter-form__field.is-open > label::after {
	transform: rotate(-180deg);
}
.archive-filter-form__checkboxes {
	padding: 0 24px;
	border-radius: var(--radius-m);
	background: var(--color-white);
}
.archive-filter-form__field.is-open .archive-filter-form__checkboxes {
	display: flex;
	padding-top: 12px;
	padding-bottom: 12px;
	border-width: 2px;
	border-style: solid;
}
.spot-archive .archive-filter-form__field > label,
.spot-archive .archive-filter-form__field.is-open .archive-filter-form__checkboxes {
	border-color: var(--color-spot);
}
.experience-archive .archive-filter-form__field > label,
.experience-archive .archive-filter-form__field.is-open .archive-filter-form__checkboxes {
	border-color: var(--color-experience);
}
.gourmet-archive .archive-filter-form__field > label,
.gourmet-archive .archive-filter-form__field.is-open .archive-filter-form__checkboxes {
	border-color: var(--color-gourmet);
}
.souvenir-archive .archive-filter-form__field > label,
.souvenir-archive .archive-filter-form__field.is-open .archive-filter-form__checkboxes {
	border-color: var(--color-souvenir);
}
.stay-archive .archive-filter-form__field > label,
.stay-archive .archive-filter-form__field.is-open .archive-filter-form__checkboxes {
	border-color: var(--color-stay);
}
.archive-filter-form__checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 0;
	font-size: 0.875rem;
	cursor: pointer;
}
.archive-filter-form__checkbox-label input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
	border: 2px solid #212121;
	border-radius: 4px;
	background: #F4F4F4;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	flex-shrink: 0;
}
.archive-filter-form__checkbox-label input[type="checkbox"]:checked {
	background: #2C2C2C;
	position: relative;
}
.archive-filter-form__checkbox-label input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 4px;
	height: 8px;
	border: solid #FFF9C4;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
}
.archive-filter-form__field:first-child .archive-filter-form__checkbox-label input[type="checkbox"]:checked::after {
	border-color: #FFF;
}
.archive-filter-form__row.-keyword {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 480px;
}
.archive-filter-form__field--keyword {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 8px;
	width: calc(100% - 142px);
	max-width: 330px;
	height: 43px;
	margin-right: auto;
	border-width: 2px;
	border-style: solid;
	border-radius: var(--radius-full);
	background: var(--color-white);
}
.spot-archive .archive-filter-form__field--keyword {
	border-color: var(--color-spot);
}
.experience-archive .archive-filter-form__field--keyword {
	border-color: var(--color-experience);
}
.gourmet-archive .archive-filter-form__field--keyword {
	border-color: var(--color-gourmet);
}
.souvenir-archive .archive-filter-form__field--keyword {
	border-color: var(--color-souvenir);
}
.stay-archive .archive-filter-form__field--keyword {
	border-color: var(--color-stay);
}
.archive-filter-form__field--keyword label {
	background: transparent;
	border: none;
	padding: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #2C2C2C;
	cursor: default;
}
.archive-filter-form__field--keyword label::after {
	display: none;
}
.archive-filter-form__field--keyword input[type="search"],
input[type="date"] {
	flex: 1;
	min-width: 0;
	padding: 0 1em;
	border: none;
	border-radius: var(--radius-full);
	background: transparent;
	font-size: 1rem;
	color: var(--color-black);
}
input[type="date"] {
	flex: 1;
	min-width: 0;
	padding: 0 1em;
	border: none;
	border-radius: var(--radius-full);
	background: var(--color-white);
	font-size: 1rem;
	color: transparent;
}
/* 値がある時は文字を表示する */
input[type="date"]:not(:placeholder-shown),
input[type="date"]:focus {
  color: var(--color-black);
}
.archive-filter-form__field--keyword input[type="search"]:focus,
input[type="date"]:focus {
	outline: none;
}
.archive-filter-form__field--keyword input[type="search"]::placeholder {
	color: #999;
}
.archive-filter-form__reset {
	display: inline-block;
	flex-shrink: 0;
	padding: 12px 24px;
	border-radius: var(--radius-full);
	background: var(--color-white);
	border: 2px solid var(--gray-200);
	color: #999;
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}
.archive-filter-form__reset:hover {
	background: #D0D0D0;
	border-color: #A0A0A0;
}
.archive-filter-form__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	margin: 20px auto -22px;
}
.archive-filter-form__submit {
	position: relative;
	width: 100%;
	max-width: 640px;
	padding: 12px 24px;
	border-radius: var(--radius-full);
	background: var(--color-black);
	color: var(--color-white);
	font-weight: 700;
	font-size: 0.9375rem;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}
.archive-filter-form__submit::before {
	position: absolute;
	top: calc(50% - 8px);
	left: 16px;
	width: 20px;
	height: 20px;
	background: url(../images/icon_search_wh.svg) no-repeat center center / contain;
	content: '';
}

@media (max-width: 479px) {
	.archive-filter-form__checkboxes {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 480px) {
	.archive-filter-form__checkboxes {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 768px) {
	.archive__header .archive__title {
		font-size: clamp(1.25rem, 1.25rem + 0.75vw, 2rem);
	}
	.archive-filter-form {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 16px;
		max-width: var(--max-content-width);
		margin: 0 auto;
		padding: 0;
	}
	.event-archive .archive-filter-form {
		flex-direction: column;
		max-width: 420px;
		margin-left: 0;
	}
	.event-archive .archive-filter-form__row {
		display: flex;
		flex-wrap: wrap;
	}
	.archive-filter-form__row.-filter {
		width: 50%;
		padding-top: 60px;
	}
	.archive-filter-form__row .archive-filter-form__field > label {
		width: calc((100% - 16px) / 3);
		padding: 12px 16px;
	}
	.archive-filter-form__row.-keyword {
		width: calc(50% - 16px);
	}
	.event-archive .archive-filter-form__row.-keyword,
	.event-archive .archive-filter-form__row.-genre {
		width: 100%;
	}
	.archive-filter-form__field--keyword {
		height: 49px;
	}
	.archive-filter-form__submit {
		padding: 18px 24px;
		font-size: clamp(0.9375rem, 0.9375rem + 0.25vw, 1.25rem);
	}
	.archive-filter-form__submit::before {
		width: 28px;
		height: 28px;
		top: calc(50% - 14px);
		left: 24px;
	}
	.event-archive .archive-filter-form__submit {
		padding-left: 56px;
	}
	.event-archive .archive-filter-form__submit::before {
		left: 16px;
	}
	.archive-filter-form__checkboxes {
		grid-template-columns: 1fr 1fr;
		margin-right: -100%;
	}
	.archive-filter-form__actions {
		margin-bottom: -33px;
	}
}

@media (min-width: 1024px) {
	.archive-filter-form__checkboxes {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.archive__wrapper {
	padding: 32px calc(var(--container-padding) / 2);
	background: var(--gray-100);
}
.page .archive__wrapper {
	margin-top: 32px;
	background: var(--gray-100);
}
.archive__list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 16px;
	padding: 20px 3vw;
	border-top-right-radius: var(--radius-m);
	border-top-left-radius: var(--radius-m);
	background: var(--color-white);
}
.archive__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	position: relative;
	width: calc((100% - 16px) / 2);
}
.archive__thumbnail {
	overflow: hidden;
	position: relative;
	border-radius: var(--radius-s);
	background: var(--gray-50);
	aspect-ratio: 4 / 3;
}
.archive__thumbnail img {
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	max-width: inherit;
	height: 100%;
	transform: translateX(-50%);
}
.archive__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	position: absolute;
	top: 0;
	right: 0;
	padding-top: calc(75% - 20px);
}
.archive__meta .btn-favorite {
	position: static;
}
.archive__item .event__date {
	margin-top: 12px;
	font-size: 0.9375rem;
	line-height: 1.6;
}
.archive__item .archive__title {
	margin-top: 6px;
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1.6;
}
.archive__info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}
.archive__genre,
.single__genre {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	color: var(--gray-700);
	font-size: 0.75rem;
	line-height: 1;
}
.archive__genre-tag,
.single__genre-tag {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-full);
	background: transparent;
	color: var(--gray-700);
	font-size: 0.675rem;
	line-height: 1;
}
.archive__area,
.single__area {
	display: flex;
	gap: 4px;
	width: 100%;
	color: var(--gray-700);
	font-size: 0.75rem;
	line-height: 1.4;
}
.archive__area svg,
.single__area svg {
	flex-shrink: 0;
}
.archive__area svg {
	margin-top: 4px;
}
.single__area svg {
	margin-left: 1em;
}
.archive__pagination {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px var(--container-padding);
	border-bottom-right-radius: var(--radius-m);
	border-bottom-left-radius: var(--radius-m);
	background: var(--color-white);
}
.archive__pagination:not(:has(nav)) {
	padding-bottom: 0;
}
.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-full);
	background: var(--color-white);
	color: var(--color-black);
	font-size: 0.875rem;
}
.page-numbers.current,
.page-numbers.dots,
.next.page-numbers,
.prev.page-numbers {
	border: 0;
}
.next.page-numbers {
	background: url(../images/icon_next.svg) no-repeat center center / 7px 12px;
	font-size: 0;
}
.prev.page-numbers {
	background: url(../images/icon_prev.svg) no-repeat center center / 7px 12px;
	font-size: 0;
}

.archive__description {
	max-width: 620px;
	margin: 32px auto 0;
	padding: 16px;
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-s);
}
.archive__description-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1.4;
}
.archive__description-title-en {
	margin-top: 2px;
	color: #7EABB7;
	font-style: italic;
	font-family: var(--font-montserrat);
	font-size: 0.8125rem;
}
.archive__description-text {
	margin-top: 12px;
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 1.4;
}

@media (max-width: 479px) {
	.archive__list {
		gap: 24px 12px;
	}
	.archive__item {
		width: calc((100% - 12px) / 2);
	}
	.archive__genre-tag,
	.single__genre-tag {
		padding: 2px 8px;
	}
}

@media (min-width: 768px) {
	.archive__wrapper {
		padding: 60px var(--container-padding);
	}
	.page-search-purpose__links + .archive__wrapper {
		padding-top: 40px;
	}
	.archive__list {
		gap: 24px;
		max-width: 1280px;
		margin: 0 auto;
		padding: 20px var(--container-padding) 40px;
		border-top-right-radius: calc(var(--radius-m) * 2);
		border-top-left-radius: calc(var(--radius-m) * 2);
	}
	.archive__item {
		width: calc((100% - 24px) / 2);
	}
	.archive__thumbnail {
		border-radius: var(--radius-m);
	}
	.archive__item .event__date {
		font-size: 1rem;
	}
	.archive__item .archive__title {
		font-size: clamp(0.9375rem, 0.9375rem + 0.125vw, 1.0625rem);
	}
	.archive__pagination {
		padding-bottom: 40px;
	}
}

@media (min-width: 1024px) {
	.archive__wrapper {
		padding: 80px var(--container-padding);
	}
	.archive__list {
		gap: 32px;
		padding: 40px var(--container-padding) 60px;
	}
	.archive__item {
		width: calc((100% - 64px) / 3);
	}
	.archive__info {
		margin-top: 10px;
	}
	.archive__pagination {
		padding-bottom: 60px;
	}
}

.archive__results-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}
.archive__search-condition-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
}
.archive__search-condition-btn {
	display: flex;
	align-items: center;
	gap: 4px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	margin: 2px 3px;
	padding: 5px 10px 5px 5px;
	border: 0;
	border-radius: var(--radius-full);
	box-shadow: none;
	background: var(--gray-100);
	font: inherit;
	font-size: 0.75rem;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
}
.archive__search-condition-btn::before {
	display: block;
	width: 12px;
	height: 12px;
	background: url(../images/icon_clear.svg) no-repeat center center / contain;
	content: '';
}
.archive__search-conditions-reset {
	display: inline-flex;
	margin-left: auto;
	padding: 8px 12px;
	border-radius: var(--radius-full);
	background: var(--color-white);
	border: 1px solid var(--gray-200);
	color: #999;
	font-size: 0.75rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}
.archive__results-count {
	font-size: 0.8125rem;
}

@media (min-width: 768px) {
	.archive__search-condition-group {
		font-size: 0.8125rem;
	}
	.archive__search-condition-btn {
		gap: 6px;
		padding: 4px 10px 4px 6px;
		font-size: 0.8125rem;
	}
	.archive__search-condition-btn::before {
		width: 14px;
		height: 14px;
	}
	.archive__results-count {
		margin-top: 12px;
		margin-left: auto;
		font-size: 0.9375rem;
	}
}

@media (min-width: 768px) {
	.event-archive .archive__search {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		padding: 20px var(--container-padding) 48px;
	}
	.event-archive .calendar {
		width: 40.54054%;
		max-width: 560px;
		padding: 0;
	}
	.event-archive .archive__filters {
		width: 54.05405%;
		max-width: 420px;
		margin-left: clamp(3rem, 1.893rem + 5.54vw, 6.875rem);
		padding: 0;
	}
}

/*--------------------------------------------------
	詳細ページ
--------------------------------------------------*/
.single__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px var(--container-padding);
	background: var(--color-white);
}
.single__title {
	order: 1;
	font-weight: 700;
	font-size: clamp(1.25rem, 1.25rem + 0.75vw, 2rem);
	text-align: center;
}
.single__title-kana {
	display: block;
	font-weight: 500;
	font-size: clamp(0.875rem, 0.875rem + 0.125vw, 1rem);
}
.single__type {
	order: 2;
	margin-top: 12px;
	padding: 4px 1.5em;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	line-height: 1;
}
.spot-single .single__type {
	background: var(--color-spot);
}
.experience-single .single__type {
	background: var(--color-experience);
}
.gourmet-single .single__type {
	background: var(--color-gourmet);
}
.souvenir-single .single__type {
	background: var(--color-souvenir);
}
.stay-single .single__type {
	background: var(--color-stay);
}
.event-single .single__type {
	background: var(--color-event);
}
.event .single__type {
	order: 3;
}
.event .single__date {
	order: 2;
	font-weight: 400;
	font-size: 0.875rem;
}
.single__meta.single__meta--top {
	order: 3;
}
.single__favorite-share {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	position: relative;
	margin-left: auto;
}
.single__favorite-share .btn-favorite,
.single__favorite-share .btn-share {
	position: static;
	border: 1px solid #9E9E9E;
	background: #9E9E9E;
}
.single__header .btn-favorite svg path {
	fill: var(--color-white);
}

@media (min-width: 768px) {
	.single__header {
		padding: 52px var(--container-padding) 20px;
	}
	.single__favorite-share {
		margin-bottom: -32px;
	}
}

@media (min-width: 1024px) {
	.single__header {
		position: relative;
	}
	.single__favorite-share {
		flex-direction: column;
		gap: 24px;
		position: absolute;
		right: var(--container-padding);
		bottom: -96px;
		z-index: 1;
		margin-bottom: 0;
	}
	.single__favorite-button,
	.single__share-button {
		width: 36px;
		height: 36px;
	}
	.single__favorite-button svg {
		width: 16px;
		height: auto;
	}
}

.single__gallery {
	position: relative;
	margin: 0 auto;
	padding: 0 3.076923vw 36px;
	background: var(--gray-100);
}
.single__gallery::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 23.076923vw;
	background: var(--color-white);
	content: '';
}
.single__gallery-main {
	overflow: visible;
	width: 93.84615vw;
	max-width: 760px;
	margin: 0 auto 20px;
}
.single__gallery-main:has(.single__gallery-caption) {
	margin-bottom: 0;
}
.single__gallery-main .single__gallery-item {
	height: 100%;
}
.single__gallery-main .single__gallery-image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 3 / 2;
}
.single__gallery-main .single__gallery-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.single__gallery-main .single__gallery-caption {
	width: 100%;
	padding: 12px 0 20px;
	font-weight: 500;
	font-size: 0.8125rem;
	line-height: 1.6;
	text-align: center;
}
.single__gallery-thumbnail-wrapper {
	position: relative;
	margin: 0 var(--container-padding);
}
.single__gallery-thumbnail .swiper-wrapper {
	justify-content: flex-start;
}
.single__gallery-thumbnail .swiper-slide {
	opacity: 0.5;
	width: calc((100% - 20px) / 3);
	aspect-ratio: 3 / 2;
}
.single__gallery-thumbnail .swiper-slide.swiper-slide-thumb-active {
	opacity: 1;
}
.single__gallery-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: var(--radius-s);
}
.single__gallery-thumbnail-wrapper .swiper-button-next,
.single__gallery-thumbnail-wrapper .swiper-button-prev {
	display: flex !important;
	align-items: center;
	justify-content: center;
	top: calc(50% - 16px);
	width: 32px;
	height: 32px;
	margin-top: 0;
	background-color: var(--color-black);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 14px 14px;
	border: 1px solid var(--color-black);
	border-radius: var(--radius-full);
	color: var(--color-black);
	cursor: pointer;
	transition: background 0.2s ease;
}
.single__gallery-thumbnail-wrapper .swiper-button-next {
	right: calc(var(--container-padding) * -1);
	background-image: url(../images/icon_arrow_white.svg);
}
.single__gallery-thumbnail-wrapper .swiper-button-prev {
	left: calc(var(--container-padding) * -1);
	background-image: url(../images/icon_arrow_white.svg);
	transform: rotate(180deg);
}
.single__gallery-thumbnail-wrapper .swiper-button-next:after,
.single__gallery-thumbnail-wrapper .swiper-button-prev:after {
	display: none;
}

@media (min-width: 768px) {
	.single__gallery {
		padding: 0 0 56px;
	}
	.single__gallery-main figcaption {
		padding: 12px 0;
		text-align: center;
	}
	.single__gallery-thumbnail-wrapper {
		max-width: 680px;
		margin: 0 auto;
	}
	.single__gallery-thumbnail.swiper {
		margin-top: 16px;
		padding: 0;
	}
	.single__gallery-thumbnail .swiper-slide {
		width: calc((100% - 36px) / 4);
	}
}

.single__information {
	padding: 38px var(--container-padding) 30px;
	background: var(--color-favorite);
}
.single__information-inner {
	position: relative;
	max-width: var(--max-content-width);
	margin: 0 auto;
	padding: 16px 12px 28px;
	border-radius: var(--radius-s);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	background: var(--color-white);
	font-size: 0.875rem;
	line-height: 1.6;
}
.single__information-inner::before {
	position: absolute;
	top: calc(-1.25rem + 3px);
	left: 0;
	width: 100%;
	height: 1.25rem;
	font-family: var(--font-montserrat);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1;
	text-align: center;
	color: var(--color-white);
	content: 'INFORMATION';
}
.single__information-inner::after {
	position: absolute;
	right:8px;
	bottom: -24px;
	width: 77px;
	height: 53px;
	background: url(../images/icon_information.svg) no-repeat center center / contain;
	content: '';
}

@media (min-width: 768px) {
	.single__information {
		padding: 56px var(--container-padding) 64px;
	}
	.single__information-inner {
		padding: 32px 5.925925% 48px;
		font-size: 1rem;
	}
	.single__information-inner::after {
		right: 24px;
		bottom: -48px;
		width: 126px;
		height: 87px;
	}
}

@media (min-width: 1024px) {
	.single__information-inner::after {
		right: 20px;
		width: 146px;
		height: 100px;
	}
}

.single__catchphrase {
	padding: 42px var(--container-padding) 32px;
	background: var(--color-white);
}
.single__catchphrase .wp-block-heading {
	font-weight: 700;
	font-size: clamp(1.25rem, 1.25rem + 0.75vw, 2rem);
	text-align: center;
}

@media (min-width: 768px) {
	.single__catchphrase {
		padding: 80px var(--container-padding);
	}
	.single__catchphrase .wp-block-heading {
		max-width: var(--max-content-width);
		margin: 0 auto;
		font-size: 2rem;
		text-align: center;
	}
}

.single__lead {
	padding: 42px var(--container-padding) 32px;
}
.single-experience .single__lead {
	background: var(--color-experience);
}
.single-gourmet .single__lead {
	background: var(--color-gourmet);
}
.single-souvenir .single__lead {
	background: var(--color-souvenir);
}
.single-stay .single__lead {
	background: var(--color-stay);
}
.single-experience .single__lead {
	position: relative;
	padding-bottom: 32px;
}
.single-experience .single__lead::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 32px;
	background: var(--color-white);
	content: '';
}
.single__lead > * {
	max-width: var(--max-content-width);
	margin: 0 auto;
}
.single-experience .single__lead > *:last-child {
	margin-bottom: 64px;
}
.single__lead h2.wp-block-heading:first-of-type {
	margin-bottom: 32px;
	font-weight: 700;
	font-size: clamp(1.25rem, 1.25rem + 0.75vw, 2rem);
	text-align: center;
}

@media (min-width: 768px) {
	.single-experience .single__lead {
		padding-bottom: 48px;
	}
	.single-experience .single__lead::after {
		height: 48px;
	}
}

@media (min-width: 1024px) {
	.single-experience .single__lead {
		padding-bottom: 58px;
	}
	.single-experience .single__lead::after {
		height: 58px;
	}
}
.single__highlights {
	position: relative;
	padding: 42px 0 24px;
	background: #B4D75F url(../images/bg_highlights_sp.png) no-repeat left center / cover;
}
.single__highlights::before {
	position: absolute;
	top: -30px;
	left: -16px;
	width: 164px;
	height: 81px;
	background: url(../images/tit_highlights_sp.png) no-repeat center center / contain;
	pointer-events: none;
	content: '';
}
.single__highlights::after {
	position: absolute;
	right: 0;
	bottom: -42px;
	z-index: 1;
	width: 160px;
	height: 161px;
	background: url(../images/img_highlights_sp.png) no-repeat center center / contain;
	pointer-events: none;
	content: '';
}
.single__highlights-inner {
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 0 var(--container-padding);
}
.single__highlights-list.swiper {
	overflow: visible;
}
.single__highlights-list .swiper-wrapper {
	align-items: stretch;
}
.single__highlight-item.swiper-slide {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	overflow: hidden;
	width: 68.20512vw;
	max-width: 268px;
	height: auto;
	background: var(--color-white);
	border-radius: var(--radius-m);
}
.single__highlights-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}
.highlights__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--color-black);
	border: 1px solid var(--color-black);
	border-radius: var(--radius-full);
	color: var(--color-white);
	cursor: pointer;
	transition: background 0.2s ease;
}
.highlights__nav:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.highlights__nav svg {
	width: 14px;
	height: 14px;
}
.single__highlight-image {
	aspect-ratio: 16 / 11;
}
.single__highlight-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single__highlight-caption {
	flex-grow: 1;
	padding: 12px 20px;
	font-weight: 500;
	font-size: 0.8125rem;
}

@media (min-width: 768px) {
	.single__highlights {
		padding: 12px 0;
		background: var(--color-white) url(../images/bg_highlights_pc.png) repeat-x left bottom / contain;
	}
	.single__highlights::before {
		top: -90px;
		left: 0;
		width: 267px;
		height: 162px;
		background-image: url(../images/tit_highlights_pc.png);
	}
	.single__highlights::after {
		bottom: -68px;
	}
	.single__highlights-list.swiper {
		padding-top: 40px;
	}
	.single__highlight-item.swiper-slide:nth-of-type(even) {
		position: relative;
		top: -40px;
	}
	.single__highlight-caption {
		padding: 16px 24px;
		font-size: 0.875rem;
	}
	.single__highlights-navigation {
		justify-content: flex-end;
		margin-right: 80px;
		margin-left: auto;
	}
}

/* swiper-wrapper の子が3つ以下のとき（4番目が存在しない） */
@media (min-width: 940px) {
	.single__highlights-list.swiper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.single__highlights-list.swiper:has(> .swiper-wrapper:not(:has(> :nth-child(4)))) {
		display: flex;
		justify-content: center;
	}
	.single__highlights-list.swiper .swiper-wrapper:has(> :nth-child(-n+3):last-child) {
		width: fit-content;
	}
	.single__highlights-list.swiper .swiper-wrapper:has(> :nth-child(-n+3):last-child) > :last-child {
		margin-right: 0 !important;
	}
}

@media (min-width: 1024px) {
	.single__highlights-list .swiper-wrapper {
		max-width: var(--max-content-width);
	}
	.single__highlights-navigation {
		gap: 24px;
	}
	.highlights__nav {
		width: 46px;
		height: 46px;
	}
	.highlights__nav svg {
		width: 16px;
		height: 16px;
	}
}

@media (min-width: 1280px) {
	.single__highlight-item.swiper-slide {
		max-width: 320px;
	}
	.single__highlight-caption {
		padding: 20px 32px 24px;
		font-size: 0.9375rem;
	}
}

@media (min-width: 1440px) {
	.single__highlights-inner {
		padding: 0 8vw;
	}
}

.single__content {
	padding: 48px var(--container-padding);
	font-size: clamp(0.875rem, 0.875rem + 0.1875vw, 1.0625rem);
	line-height: 1.8;
}
.single__content h2 {
	font-weight: 700;
	font-size: 1.5em;
}
.single__content h3,
.single__lead h3 {
	font-weight: 700;
	font-size: 1.25em;
}
.single__content h4,
.single__lead h4 {
	font-weight: 700;
	font-size: 1.125em;
}
.single__content p + p,
.single__lead p + p {
	margin-top: 1.8em !important;
}
.single__content ul,
.single__content ol,
.single__lead ul,
.single__lead ol {
	margin-top: 1.8em !important;
}
.single__content ul li,
.single__content ol li,
.single__lead ul li,
.single__lead ol li {
	padding-left: 1em;
	text-indent: -1em;
}
.single__content ul li::before,
.single__lead ul li::before {
	font-weight: 700;
	content: '・';
}
.single__content ol li::before,
.single__lead ol li::before {
	font-weight: 700;
	content: counter(list-item) ". ";
}
.single__content .wp-block-columns,
.single__content .wp-block-buttons {
	margin-top: 3.6em;
}
.single__content .wp-block-image.is-landscape {
	aspect-ratio: 3 / 2;
}
.single__content .wp-block-image.is-portrait {
	width: 80%;
	margin: 0 auto;
	aspect-ratio: 9 / 16;
	text-align: center;
}
.single__content .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-m);
}
.single__content .wp-element-caption {
	font-size: 0.8125rem;
}
.single__content .wp-block-buttons {
	gap: 24px;
}
.single__content .wp-block-buttons .wp-block-button {
	width: 83.58974vw;
	max-width: 568px;
	margin: 0 auto;
}
.single__content .wp-block-buttons .wp-block-button__link {
	position: relative;
	padding: 12px 8px 12px 1.2em;
	background: var(--gray-700);
	font-size: 1rem;
	text-align: left;
}
.single__content .wp-block-buttons .wp-block-button__link::before {
	margin-right: 6px;
	content: '●';
}
.single__content .wp-block-buttons .wp-block-button__link[href*="spot"]::before {
	color: var(--color-spot);
}
.single__content .wp-block-buttons .wp-block-button__link[href*="experience"]::before {
	color: var(--color-experience);
}
.single__content .wp-block-buttons .wp-block-button__link[href*="gourmet"]::before {
	color: var(--color-gourmet);
}
.single__content .wp-block-buttons .wp-block-button__link[href*="souvenir"]::before {
	color: var(--color-souvenir);
}
.single__content .wp-block-buttons .wp-block-button__link[href*="stay"]::before {
	color: var(--color-stay);
}
.single__content .wp-block-buttons .wp-block-button__link[href*="model-course"]::before {
	color: var(--color-model-course);
}
.single__content .wp-block-buttons .wp-block-button__link[href*="event"]::before {
	color: var(--color-event);
}
.single__content .wp-block-buttons .wp-block-button__link[href*="feature"]::before,
.single__content .wp-block-buttons .wp-block-button__link[href*="#"]::before {
	color: #CCCCCC;
}
.single__content .wp-block-buttons .wp-block-button__link::after {
	display: block;
	position: absolute;
	top: calc(50% - 9px);
	right: 20px;
	width: 18px;
	height: 18px;
	background: url(../images/icon_link.svg) no-repeat center center / contain;
	content: '';
}

@media (min-width: 768px) {
	.single__content {
		padding: 64px 4.6875vw;
	}
	.single__content > *:not(.wp-block-columns) {
		max-width: 780px;
		margin: 0 auto;
	}
	.single__content h2.wp-block-heading {
		font-size: 1.75rem;
	}
	.single__content .wp-block-image img {
		border-radius: var(--radius-m);
	}
	.single__content .wp-block-columns {
		max-width: var(--max-content-width);
		margin: 40px auto;
	}
	.single__content .wp-block-columns:last-of-type {
		margin-bottom: 0;
	}
}

.single__facility,
.single__info {
	padding: 20px 3.076923vw 38px;
}
.single__info {
	background: #FFF58680;
}
.event .single__info {
	background: #D9EBF6;
}
.single__facility > h2,
.single__basic-info-title,
.single__event-info-title,
.single__product-title {
	margin-bottom: 12px;
	font-size: 1.25rem;
	text-align: center;
}
.single__facility .facility,
.single__basic-info,
.single__event-info,
.single__product {
	padding: 24px 2.45901% 32px;
	border-radius: var(--radius-m);
	background: var(--color-white);
}
.facility-info-table,
.single__basic-info-table,
.single__event-info-table,
.single__product-table {
	width: 100%;
}
.facility-info-table th,
.facility-info-table td,
.single__basic-info-table th,
.single__basic-info-table td,
.single__event-info-table th,
.single__event-info-table td,
.single__product-table th,
.single__product-table td {
	padding: 10px 4px;
	border-top: 1px solid var(--gray-100);
	border-bottom: 1px solid var(--gray-100);
	font-size: 0.875rem;
	line-height: 1.8;
	word-break: break-all;
}
.facility-info-table th,
.single__basic-info-table th,
.single__event-info-table th,
.single__product-table th {
	font-weight: 700;
	white-space: nowrap;
}
.access-item {
	display: flex;
	align-items: flex-start;
}
.access-icon {
	flex-shrink: 0;
	margin: -2px 4px 0 0;
}
.facility-info-table td a:has(img),
.single__basic-info-table td a:has(img),
.single__event-info-table td a:has(img),
.single__product-table td a:has(img) {
	display: inline-block;
	margin-right: 16px;
}
.facility-map {
	overflow: hidden;
	position: relative;
	margin-top: 24px;
	aspect-ratio: 5 / 4;
}
.facility-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.facility-tags,
.single__conditions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
.facility-tag,
.single__condition-tag {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--gray-500);
	border-radius: calc(var(--radius-s) / 3 * 2);
	background: transparent;
	color: var(--gray-700);
	font-size: 0.75rem;
	line-height: 1;
}
.facility-file,
.facility-link,
.single__flyer,
.single__external-link {
	display: flex;
	justify-content: center;
	width: 83.58974vw;
	margin: 24px auto 0;
}
.facility-file + .facility-link,
.single__flyer + .single__external-link {
	margin-top: 12px;
}
.facility-file a,
.facility-link a,
.single__flyer a,
.single__external-link a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	min-width: 20em;
	padding: 12px 8px 12px 1.2em;
	border-radius: var(--radius-full);
	line-height: 1.4;
}
.facility-file a,
.single__flyer a {
	border: 1px solid #E9612D;
	background: #E9612D;
	color: var(--color-white);
}
.facility-link a,
.single__external-link a {
	border: 1px solid var(--gray-700);
	background: var(--color-white);
	color: var(--gray-700);
}
.facility-file a::after,
.single__flyer a::after {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 1em;
	padding: 4px 8px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.2);
	color: var(--color-white);
	font-family: var(--font-montserrat);
	font-size: 0.8125rem;
	line-height: 1;
	content: '';
}
.facility-file a[href$=".pdf"]::after,
.single__flyer a[href$=".pdf"]::after {
	content: 'PDF';
}
.facility-file a[href$=".docx"]::after,
.single__flyer a[href$=".docx"]::after {
	content: 'DOCX';
}
.facility-file a[href$=".doc"]::after,
.single__flyer a[href$=".doc"]::after {
	content: 'DOC';
}
.facility-file a[href$=".xlsx"]::after,
.single__flyer a[href$=".xlsx"]::after {
	content: 'XLSX';
}
.facility-file a[href$=".xls"]::after,
.single__flyer a[href$=".xls"]::after {
	content: 'XLS';
}
.facility-link a::after,
.single__external-link a::after {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-right: 0.5em;
	background: url(../images/icon_blank_gr.svg) no-repeat center center / contain;
	content: '';
}

.single__footer {
	padding: 0 var(--container-padding) 64px;
}
.single__footer-info {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px 12px;
	border-radius: var(--radius-s);
	background: var(--gray-100);
}
.single__back-link {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 24px;
}
.single__back-link-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 54px;
	border: 1px solid var(--color-black);
	border-radius: var(--radius-full);
	background: var(--color-black);
	color: var(--color-white);
	font-weight: 700;
	font-size: 1rem;
}
.single__back-link-button::after {
	position: absolute;
	top: calc(50% - 8px);
	left: 24px;
	width: 16px;
	height: 16px;
	background: url(../images/icon_arrow_white.svg) no-repeat center center / contain;
	transform: rotate(180deg);
	content: '';
}

@media (min-width: 768px) {
	.single__facility .facility,
	.single__basic-info,
	.single__event-info,
	.single__product {
		max-width: var(--max-content-width);
		margin: 0 auto;
		padding: 40px 2.45901%;
		border-radius: calc(var(--radius-m) * 2);
	}
	.single__facility > h2,
	.single__basic-info-title,
	.single__event-info-title,
	.single__product-title {
		font-size: 1.375rem;
	}
	.facility-content,
	.single__basic-info > *,
	.single__event-info > *,
	.single__product > * {
		max-width: 780px;
		margin: 0 auto;
	}
	.facility-info-table th,
	.facility-info-table td,
	.single__basic-info-table th,
	.single__basic-info-table td,
	.single__event-info-table th,
	.single__event-info-table td {
		padding: 18px 10px 12px;
	}
	.facility-info-table th,
	.single__basic-info-table th,
	.single__event-info-table th {
		width: 20%;
	}
	.access-icon {
		margin-right: 6px;
	}
	.facility-tag {
		padding: 8px 16px;
	}
	.facility-map {
		aspect-ratio: 2 / 1;
	}
	.facility-file,
	.facility-link,
	.single__flyer,
	.single__external-link {
		width: 100%;
		max-width: 400px;
		margin-top: 40px;
	}
	.facility-file + .facility-link,
	.single__flyer + .single__external-link {
		margin-top: 20px;
	}
	.facility-file a,
	.facility-link a,
	.single__flyer a,
	.single__external-link a {
		min-width: 100%;
		padding: 16px 8px 16px 1.2em;
	}
	.facility-file a::after,
	.single__flyer a::after {
		padding: 8px 12px;
	}
	.single__footer > * {
		max-width: 780px;
		margin: 0 auto;
	}
	.single__footer-info {
		padding: 20px;
		border-radius: var(--radius-m);
	}
	.single__back-link {
		margin-top: 40px;
	}
	.single__back-link-button {
		width: 100%;
		max-width: 520px;
		height: 64px;
		font-size: 1rem;
	}
	.single__back-link-button::after {
		top: calc(50% - 10px);
		left: 28px;
		width: 20px;
		height: 20px;
	}
}

/*--------------------------------------------------
	周辺おすすめスライダー
--------------------------------------------------*/
.single__nearby-spots,
.single__nearby-gourmets,
.single__relation-shops,
.page__relation {
	padding: 40px var(--container-padding) 24px;
}
.single__nearby-spots {
	background: var(--color-spot);
}
.single__nearby-gourmets {
	background: var(--color-gourmet);
}
.single__relation-shops {
	background: var(--color-souvenir);
}
.page__relation-recommend_souvenirs {
	background: var(--color-souvenir);
}
.page__relation-recommend_stays {
	background: var(--color-stay);
}
.page__relation-recommend_feature {
	background: var(--color-white);
}

.single__nearby-spots-inner,
.single__nearby-gourmets-inner,
.single__relation-shops-inner,
.page__relation-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: var(--max-content-width);
}
.single__nearby-spots-title,
.single__nearby-gourmets-title,
.single__relation-shops-title,
.page__relation-title {
	font-weight: 700;
	font-size: clamp(1.125rem, 1.079rem + 0.19vw, 1.25rem);
}
.single__nearby-spots-button,
.single__nearby-gourmets-button,
.single__relation-shops-button,
.page__relation-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: fit-content;
	height: 38px;
	padding: 0 12px 0 24px;
	border: 1px solid var(--color-black);
	border-radius: var(--radius-full);
	background: var(--color-black);
	color: var(--color-white);
	font-weight: 700;
	font-size: 0.875rem;
}
.single__nearby-spots-button::after,
.single__nearby-gourmets-button::after,
.single__relation-shops-button::after,
.page__relation-button::after {
	width: 16px;
	height: 16px;
	background: url(../images/icon_arrow_white.svg) no-repeat center center / contain;
	content: '';
}
.single__nearby-spots-list,
.single__nearby-gourmets-list,
.single__relation-shops-list,
.page__relation-list {
	width: 100vw;
	margin: 0 calc(var(--container-padding) * -1) !important;
	padding: 0 var(--container-padding) !important;
}

@media (min-width: 768px) {
	.single__nearby-spots-inner,
	.single__nearby-gourmets-inner,
	.single__relation-shops-inner,
	.page__relation-inner {
		flex-direction: row;
		flex-wrap: wrap;
		margin: 0 auto;
	}
	.single__nearby-spots-button,
	.single__nearby-gourmets-button,
	.single__relation-shops-button,
	.page__relation-button {
		justify-content: space-between;
		min-width: 188px;
		margin-left: auto;
	}
}

.single__nearby-spots-list,
.single__nearby-gourmets-list,
.single__relation-shops-list,
.page__relation-list {
	padding-right: var(--container-padding);
	padding-left: var(--container-padding);
}
.single__nearby-spots-list .swiper-wrapper,
.single__nearby-gourmets-list .swiper-wrapper,
.single__relation-shops-list .swiper-wrapper,
.page__relation-list .swiper-wrapper {
	height: fit-content;
}
/* model-course__slider / experience__slider と同一仕様 */
.single__nearby-spots-list .single__nearby-spots-item,
.single__nearby-gourmets-list .single__nearby-gourmets-item,
.single__relation-shops-list .single__relation-shops-item,
.page__relation-list .page__relation-item {
	position: relative;
	flex-shrink: 0;
	width: auto;
	height: fit-content;
}
.single__nearby-spots-item a,
.single__nearby-gourmets-item a,
.single__relation-shops-item a,
.page__relation-item a {
	display: block;
	width: 268px;
}
.single__nearby-spots-thumbnail,
.single__nearby-gourmets-thumbnail,
.single__relation-shops-thumbnail,
.page__relation-thumbnail {
	position: relative;
	border-radius: var(--radius-m);
	overflow: hidden;
	aspect-ratio: 4 /3;
}
.single__nearby-spots-thumbnail img,
.single__nearby-gourmets-thumbnail img,
.single__relation-shops-thumbnail img,
.page__relation-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single__nearby-spots-item .single__nearby-spots-title,
.single__nearby-gourmets-item .single__nearby-gourmets-title,
.single__relation-shops-item .single__relation-shops-title,
.page__relation-item .page__relation-title {
	margin-top: 12px;
	font-weight: 700;
	font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
	line-height: 1.71;
}
.single__nearby-spots-navigation,
.single__nearby-gourmets-navigation,
.single__relation-shops-navigation,
.page__relation-navigation {
	display: flex;
	align-items: center;
	position: relative;
	gap: 24px;
	margin-top: 40px;
}
.nearby-spots__nav,
.nearby-gourmets__nav,
.nearby-shops__nav,
.relation__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--color-black);
	border: 1px solid var(--color-black);
	border-radius: var(--radius-full);
	color: var(--color-black);
	cursor: pointer;
	transition: background 0.2s ease;
}
.nearby-spots__nav:disabled,
.nearby-gourmets__nav:disabled,
.nearby-shops__nav:disabled,
.relation__nav:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.nearby-spots__nav svg,
.nearby-gourmets__nav svg,
.nearby-shops__nav svg,
.relation__nav svg {
	width: 14px;
	height: 14px;
}
.nearby-spots__pagination,
.nearby-gourmets__pagination,
.nearby-shops__pagination,
.relation__pagination {
	display: flex;
	align-items: center;
	gap: 32px;
}
.nearby-spots__pagination-text,
.nearby-gourmets__pagination-text,
.nearby-shops__pagination-text,
.relation__pagination-text {
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
}
.nearby-spots__progress,
.nearby-gourmets__progress,
.nearby-shops__progress,
.relation__progress {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(0, 0, 0, 0.16);
	overflow: hidden;
}
.nearby-spots__progress-bar,
.nearby-gourmets__progress-bar,
.nearby-shops__progress-bar,
.relation__progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: var(--color-black);
	transition: width 0.3s ease;
}

@media (max-width: 374px) {
	.single__nearby-spots-item,
	.single__nearby-gourmets-item,
	.single__relation-shops-item,
	.page__relation-item {
		width: 80vw;
	}
}

@media (min-width: 768px) {
	.single__nearby-spots-item a,
	.single__nearby-gourmets-item a,
	.single__relation-shops-item a,
	.page__relation-item a {
		width: calc((100vw - 80px) / 3);
	}
	.nearby-spots__pagination,
	.nearby-gourmets__pagination,
	.nearby-shops__pagination,
	.page__relation-pagination {
		flex-grow: 1;
	}
	.single__nearby-spots-navigation,
	.single__nearby-gourmets-navigation,
	.single__relation-shops-navigation,
	.page__relation-navigation {
		max-width: 940px;
		margin: 20px auto 0;
	}
	.nearby-spots__nav,
	.nearby-gourmets__nav,
	.nearby-shops__nav,
	.relation__nav {
		width: 46px;
		height: 46px;
	}
	.nearby-spots__progress,
	.nearby-gourmets__progress,
	.nearby-shops__progress,
	.relation__progress {
		position: relative;
		top: inherit;
		left: inherit;
	}
}

@media (min-width: 1024px) {
	.single__nearby-spots,
	.single__nearby-gourmets,
	.single__relation-shops,
	.page__relation {
		padding: 40px 0;
	}
	h2.single__nearby-spots-title,
	h2.single__nearby-gourmets-title,
	h2.single__relation-shops-title,
	h2.page__relation-title {
		margin-left: 40px;
	}
	.single__nearby-spots-button,
	.single__nearby-gourmets-button,
	.single__relation-shops-button,
	.page__relation-button {
		margin-right: 40px;
	}
	.single__nearby-spots-list,
	.single__nearby-gourmets-list,
	.single__relation-shops-list,
	.page__relation-list {
		width: 90vw;
		max-width: calc(var(--max-content-width) - 40px);
		margin: 0 auto !important;
		padding: 0 !important;
	}
	.single__nearby-spots-list .single__nearby-spots-item,
	.single__nearby-gourmets-list .single__nearby-gourmets-item,
	.single__relation-shops-list .single__relation-shops-item,
	.page__relation-list .page__relation-item {
		width: auto;
	}
	.single__nearby-spots-item a,
	.single__nearby-gourmets-item a,
	.single__relation-shops-item a,
	.page__relation-item a {
		width: calc((90vw - 48px) / 3);
		max-width: 324px;
	}
	.nearby-spots__nav,
	.nearby-gourmets__nav,
	.nearby-shops__nav,
	.relation__nav {
		width: 46px;
		height: 46px;
	}
}

@media (min-width: 1128px) {
	.single__nearby-spots-item a,
	.single__nearby-gourmets-item a,
	.single__relation-shops-item a,
	.page__relation-item a {
		width: calc((calc(var(--max-content-width) - 40px) - 48px) / 3);
	}
}

@media (min-width: 1024px) and (hover: hover) {
	.nearby-spots__nav:hover,
	.nearby-gourmets__nav:hover,
	.nearby-shops__nav:hover,
	.relation__nav:hover {
		background: var(--color-white);
	}
	.single__nearby-spots-navigation:hover svg path,
	.single__nearby-gourmets-navigation:hover svg path,
	.single__relation-shops-navigation:hover svg path,
	.page__relation-navigation:hover svg path {
		fill: var(--color-black);
	}
}


/*--------------------------------------------------
	固定ページ
--------------------------------------------------*/
.page__header {
	margin-bottom: 32px;
	padding: 0 var(--container-padding);
}
.page__title {
	padding: 6px 12px;
	border-radius: var(--radius-full);
	background: var(--color-white);
	font-weight: 700;
	font-size: clamp(1.25rem, 1.25rem + 0.75vw, 2rem);
	text-align: center;
}

/*--------------------------------------------------
	立山連峰ページ
--------------------------------------------------*/
.page-tateyama .page__header {
	margin-bottom: 12px;
}
.page-tateyama .page__title {
	background: transparent;
}
.tateyama-lead {
	position: relative;
	padding: 0 var(--container-padding) 36px;
	background: var(--gray-100);
}
.tateyama-lead::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50vw;
	background: var(--gray-50);
	content: '';
}
.tateyama-lead__visual-wrapper {
	margin-bottom: 32px;
}
.tateyama-lead__visual {
	position: relative;
}
.tateyama-lead__video {
	display: block;
	width: 100%;
	height: auto;
	border-radius: calc(var(--radius-s) * 2);
}
.tateyama-lead__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	bottom: -24px;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	border-radius: var(--radius-full);
	background: var(--color-white);
}
.tateyama-lead__title {
	margin-bottom: 0.5em;
	font-weight: 700;
	font-size: clamp(1.125rem, 1.125rem + 0.5vw, 1.75rem);
	text-align: center;
}
.tateyama-lead__text {
	max-width: 900px;
	margin: 0 auto;
	font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
	line-height: 1.8;
}

.tateyama-toc {
	max-width: var(--max-content-width);
	margin: 0 auto;
}
.tateyama-toc__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 24px var(--container-padding) 48px;
}
.tateyama-toc__title {
	font-weight: 700;
	font-size: clamp(1.125rem, 1.125rem + 0.5vw, 1.75rem);
}
.tateyama-toc__panel {
	position: relative;
	width: 100%;
	padding: 24px;
	border-radius: calc(var(--radius-s) * 2);
	background: var(--color-white);
}
.tateyama-toc__panel::before {
	position: absolute;
	top: -82px;
	right: calc(var(--container-padding) * -1);
	z-index: 1;
	width: 144px;
	height: 146px;
	background: url(../images/img_highlights_sp.png) no-repeat center center / contain;
	content: '';
}
.tateyama-toc__body {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}
.tateyama-toc__label {
	flex-shrink: 0;
	font-weight: 700;
	font-size: 0.875rem;
}
.tateyama-toc__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tateyama-toc__item {
	display: flex;
	align-items: center;
}
.tateyama-toc__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9375rem;
}
.tateyama-toc__bullet {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/icon_bullet.svg) no-repeat center center / contain;
}
.tateyama-toc__text {
	white-space: nowrap;
}

.tateyama-gallery {
	position: relative;
	margin-bottom: 80px;
	padding: 32px var(--container-padding) 64px;
	border-radius: calc(var(--radius-m) * 2);
	background: var(--gray-100);
	text-align: center;
}
.tateyama-gallery::before {
	position: absolute;
	bottom: -80px;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 50%;
	background: var(--color-white);
	content: '';
}
.tateyama-gallery::after {
	position: absolute;
	bottom: -8px;
	left: calc(50% - 129px);
	width: 258px;
	height: 70px;
	background: url(../images/icon_toyama.svg) no-repeat center center / contain;
	content: '';
}
.tateyama-gallery__inner {
	max-width: 946px;
	margin: 0 auto;
}
.tateyama-gallery__title {
	margin-bottom: 12px;
	color: var(--color-white);
	font-weight: 700;
	font-size: clamp(2rem, 1.35rem + 2.67vw, 3.75rem);
	letter-spacing: 0.05em;
	text-shadow:
  1px 1px 0 var(--gray-700), -1px -1px 0 var(--gray-700),
  -1px 1px 0 var(--gray-700),  1px -1px 0 var(--gray-700),
  1px 0 0 var(--gray-700), -1px  0 0 var(--gray-700),
  0 1px 0 var(--gray-700),  0 -1px 0 var(--gray-700);
}
.tateyama-gallery__months {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 2px;
	margin: 0 auto 24px;
	padding: 0;
	list-style: none;
}
.tateyama-gallery__month-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
	width: 52px;
	height: 52px;
	border-radius: var(--radius-full);
	border: 0;
	font-size: 0.625rem;
	font-family: var(--font-montserrat);
	line-height: 1;
	cursor: pointer;
	transition: opacity 0.2s ease;
}
.tateyama-gallery__month:nth-child(1) .tateyama-gallery__month-button,
.tateyama-gallery__month:nth-child(2) .tateyama-gallery__month-button,
.tateyama-gallery__month:nth-child(12) .tateyama-gallery__month-button {
	background: var(--color-blue);
}
.tateyama-gallery__month:nth-child(3) .tateyama-gallery__month-button,
.tateyama-gallery__month:nth-child(4) .tateyama-gallery__month-button,
.tateyama-gallery__month:nth-child(5) .tateyama-gallery__month-button {
	background: var(--color-yellow);
}
.tateyama-gallery__month:nth-child(6) .tateyama-gallery__month-button,
.tateyama-gallery__month:nth-child(7) .tateyama-gallery__month-button,
.tateyama-gallery__month:nth-child(8) .tateyama-gallery__month-button {
	background: var(--color-spot);
}
.tateyama-gallery__month:nth-child(9) .tateyama-gallery__month-button,
.tateyama-gallery__month:nth-child(10) .tateyama-gallery__month-button,
.tateyama-gallery__month:nth-child(11) .tateyama-gallery__month-button {
	background: var(--color-gourmet);
}
.tateyama-gallery__month-button.is-active {
	position: relative;
	opacity: 1;
}
.tateyama-gallery__month-button.is-active::before {
	position: absolute;
	top: -14px;
	left: 10px;
	width: 34px;
	height: 28px;
	background: url(../images/icon_birds.svg) no-repeat center center / contain;
	content: '';
}
.tateyama-gallery__month-num {
	font-size: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
}
.tateyama-gallery__month-label {
	font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.9375rem);
}
.tateyama-gallery__slider {
	max-width: 850px;
	margin: 0 auto;
}
.tateyama-gallery__figure {
	margin: 0;
}
.tateyama-gallery__figure img {
	display: block;
	width: 100%;
	height: auto;
}

.tateyama-spot20 {
	position: relative;
	padding: 32px var(--container-padding) 100px;
	background: var(--gray-100);
	text-align: center;
}
.tateyama-spot20::before {
	position: absolute;
	top: -52px;
	left: calc(50% - 52px);
	width: 104px;
	height: 104px;
	border-radius: var(--radius-full);
	background: var(--gray-100) url(../images/icon_tateyama.svg) no-repeat center center / 64px auto;
	content: '';
}
.tateyama-spot20__inner {
	max-width: var(--max-content-width);
	margin: 0 auto;
}
.tateyama-spot20__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
	gap: 12px;
	margin-bottom: 32px;
}
.tateyama-spot20__title {
	font-weight: 700;
	font-size: clamp(1.125rem, 1.125rem + 0.5vw, 1.75rem);
}
.tateyama-spot20__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 16px;
	margin: 0 auto 60px;
	padding: 0;
	list-style: none;
}
.tateyama-spot20__item {
	display: flex;
	justify-content: center;
}
.tateyama-spot20__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
}
.tateyama-spot20__thumb {
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
}
.tateyama-spot20__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tateyama-spot20__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	min-width: 32px;
	height: 32px;
	padding: 0 10px;
	border-radius: var(--radius-full);
	background: #54C3F1;
	color: var(--color-white);
	font-style: italic;
	font-size: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
	font-family: var(--font-montserrat);
	line-height: 1;
	text-indent: -0.25em;
}
.tateyama-spot20__name {
	display: block;
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 1.4;
}
.tateyama-spot20__map {
	max-width: 750px;
	margin: 0 auto;
}
.tateyama-spot20__map-inner {
	position: relative;
	padding-top: calc(75% + 67px);
	overflow: hidden;
}
.tateyama-spot20__map-inner iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (min-width: 768px) {
	.tateyama-gallery__months {
		display: grid;
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 1px;
	}
	.tateyama-gallery__month-button {
		width: 100%;
		max-width: 78px;
		height: auto;
		aspect-ratio: 1 / 1;
	}
	.tateyama-gallery__month-button.is-active::before {
		width: 44px;
		height: 37px;
		top: -22px;
		left: calc(50% - 22px);
	}
	.tateyama-spot20__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.tateyama-spot20 {
		padding-top: 60px;
		padding-bottom: 120px;
	}
}

@media (min-width: 960px) {
	.tateyama-lead__video {
		border-radius: calc(var(--radius-m) * 2);
	}
}

@media (min-width: 1024px) {
	.tateyama-gallery {
		padding: 60px 0 120px;
		margin-bottom: 120px;
		background: url(../images/bg_tateyama_gallery.png) no-repeat center center / contain;
	}
	.tateyama-gallery::before {
		bottom: -120px;
	}
	.tateyama-gallery::after {
		display: none;
	}
	.tateyama-spot20__list {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.tateyama-spot20 {
		padding-bottom: 160px;
	}
}

.tateyama-spot20__banner {
	position: relative;
	padding: 24px var(--container-padding);
	background: var(--color-white);
	text-align: center;
}
.tateyama-spot20__banner::before {
	position: absolute;
	top: -124px;
	left: 0;
	width: 100vw;
	height: 160px;
	background: url(../images/bg_tateyama.png) no-repeat center center / cover;
	content: '';
}
.tateyama-banner {
	display: block;
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: 0 auto;
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-s);
	background: var(--color-white);
	box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
	overflow: hidden;
}
.tateyama-banner__inner {
	position: relative;
	padding: 20px 24px 28px;
	text-align: center;
}
.tateyama-banner__curve {
	position: absolute;
	top: 0;
	left: 50%;
	width: 260px;
	height: 120px;
	transform: translateX(-50%);
	border-radius: 50%;
	box-shadow: 0 24px 0 0 #E3F2FD;
}
.tateyama-banner__title {
	position: relative;
	margin-bottom: 12px;
	font-weight: 700;
	font-size: 1rem;
}
.tateyama-banner__logo {
	margin-bottom: 16px;
}
.tateyama-banner__text {
	position: relative;
	font-size: 0.8125rem;
	line-height: 1.8;
}
.tateyama-banner__arrow {
	position: absolute;
	right: 20px;
	bottom: 16px;
	width: 18px;
	height: 12px;
	border-bottom: 2px solid var(--color-black);
	border-right: 2px solid var(--color-black);
	transform: skewX(-30deg);
}

.tateyama-live,
.tateyama-information {
	padding: 32px var(--container-padding) 100px;
	background: var(--color-white);
}
.tateyama-live__inner,
.tateyama-information__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: var(--max-content-width);
	margin: 0 auto;
}
.tateyama-live__title,
.tateyama-information__title {
	font-weight: 700;
	font-size: clamp(1.125rem, 1.125rem + 0.5vw, 1.75rem);
	text-align: center;
}
.tateyama-live__content,
.tateyama-information__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.tateyama-live__video-inner {
	position: relative;
	padding-top: 56.25%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
}
.tateyama-live__video-inner iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.tateyama-live__note {
	margin-top: 10px;
	color: var(--gray-700);
	font-size: 0.75rem;
}
.tateyama-live__info,
.tateyama-information__info {
	display: flex;
	flex-direction: column;
}
.tateyama-live__image,
.tateyama-information__image {
	max-width: 600px;
}
.tateyama-live__text,
.tateyama-information__text {
	font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
	line-height: 1.8;
}
.tateyama-live__buttons,
.tateyama-information__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
}
.tateyama-live__button,
.tateyama-information__button {
	display: inline-flex;
	align-items: center;
	position: relative;
	min-width: 20em;
	padding: 12px 8px 12px 1.2em;
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-full);
	background: var(--gray-700);
	color: var(--color-white);
	line-height: 1.4;
}
.tateyama-live__button[target="_blank"],
.tateyama-information__button[target="_blank"] {
	background: var(--color-white);
	color: var(--gray-700);
}
.tateyama-live__button::before,
.tateyama-information__button::before {
	margin-right: 6px;
	color: #CCCCCC;
	content: '●';
}
.tateyama-live__button[target="_blank"]::before,
.tateyama-information__button[target="_blank"]::before {
	display: none;
}
.tateyama-live__button::after,
.tateyama-information__button::after {
	flex-shrink: 0;
	display: block;
	position: absolute;
	top: calc(50% - 9px);
	right: 20px;
	width: 18px;
	height: 18px;
	background: url(../images/icon_link.svg) no-repeat center center / contain;
	content: '';
}
.tateyama-live__button[target="_blank"]::after,
.tateyama-information__button[target="_blank"]::after {
	display: block;
	flex-shrink: 0;
	position: absolute;
	top: calc(50% - 9px);
	right: 16px;
	width: 18px;
	height: 18px;
	background: url(../images/icon_blank_gr.svg) no-repeat center center / contain;
	content: '';
}

.tateyama-information {
	position: relative;
	padding-bottom: 24px;
}
.tateyama-information::before {
	position: absolute;
	top: -124px;
	left: 0;
	width: 100vw;
	height: 160px;
	background: url(../images/bg_tateyama.png) no-repeat center center / cover;
	content: '';
}
.tateyama-information__points {
	display: flex;
	flex-direction: column;
	margin-top: 24px;
}
.tateyama-information__points-title {
	position: relative;
	margin-top: 2em;
	padding-left: 30px;
	font-weight: 700;
	font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
}
.tateyama-information__points-title::before {
	position: absolute;
	top: 0.4em;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: var(--radius-full);
	background: #54C3F1;
	content: '';
}
.tateyama-information__points-text {
	margin-top: 0.5em;
	padding-left: 30px;
	font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}
.tateyama-information__link-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin-top: 8px;
}
.tateyama-information__hint {
	margin: 0;
	font-size: 0.8125rem;
}
.tateyama-information__pamphlet {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 40px;
}
.tateyama-information__pamphlet-image {
	text-align: left;
}
.tateyama-information__pamphlet-image img {
	display: block;
	width: 100%;
	height: auto;
}
.tateyama-information__pamphlet-caption {
	margin-top: 4px;
	color: var(--gray-700);
	font-size: 0.75rem;
	text-align: right;
}

.tateyama-sns {
	display: flex;
	justify-content: center;
	padding: 24px var(--container-padding);
	background: var(--color-white);
}

@media (min-width: 768px) {
	.tateyama-information__content {
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
	}
	.tateyama-live__button br,
	.tateyama-information__button br {
		display: none;
	}
	.tateyama-information__pamphlet {
		align-items: center;
	}
}

@media (min-width: 768px) {
	.page-tateyama .page__header {
		padding-top: 24px;
	}
	.page-tateyama .page__content {
		padding-top: 24px;
	}
	.tateyama-lead::before {
		max-height: 208px;
	}
	.tateyama-lead__visual-wrapper {
		max-width: 900px;
		margin: 0 auto 40px;
	}
	.tateyama-lead__logo {
		bottom: -30px;
		width: 104px;
		height: 104px;
	}
	.tateyama-lead__logo-mark img {
		width: 72px;
		height: 47px;
	}
	.tateyama-lead__text {
		text-align: center;
	}
	.tateyama-toc__inner {
		padding-top: 48px;
		padding-bottom: 80px;
	}
	.tateyama-toc__panel {
		max-width: 760px;
		margin: 0 auto;
		padding: 32px 40px;
	}
	.tateyama-toc__list {
		gap: 16px;
	}
	.tateyama-toc__bullet {
		width: 24px;
		height: 24px;
	}

	.tateyama-spot20__map-inner {
		padding-top: 56.25%;
	}
	.tateyama-banner__text br {
		display: none;
	}
	.tateyama-live__inner,
	.tateyama-information__inner {
		gap: 48px;
	}
	.tateyama-live__content,
	.tateyama-information__content {
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
	}
	.tateyama-live__video,
	.tateyama-live__info,
	.tateyama-information__info {
		flex: 1;
	}
	.tateyama-live__buttons,
	.tateyama-information__info .tateyama-information__buttons {
		flex-direction: column;
		align-items: flex-start;
	}
	.tateyama-information__button {
		max-width: 526px;
	}

	.tateyama-sns {
		padding: 48px var(--container-padding);
	}
}

@media (min-width: 1024px) {
	.tateyama-lead__visual-wrapper {
		margin-bottom: 48px;
	}
	.tateyama-lead {
		padding-bottom: 60px;
	}
	.tateyama-toc__panel::before {
		right: 40px;
	}
	.tateyama-toc__body {
		gap: 40px;
	}
	.tateyama-toc__label,
	.tateyama-toc__text {
		font-size: 1rem;
	}
	.tateyama-spot20__banner {
		padding: 48px 0;
	}
	.tateyama-spot20__banner::before {
		top: -160px;
		height: 200px;
	}
	.tateyama-live,
	.tateyama-information {
		padding: 60px var(--container-padding) 120px;
	}
	.tateyama-information {
		padding-bottom: 0;
	}
}

/*--------------------------------------------------
	NEWS
--------------------------------------------------*/
.news-section {
	padding: 64px var(--container-padding);
	background: var(--gray-100);
}
.news-section .section__title {
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	margin-bottom: 24px;
	font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
	line-height: 1.2;
}
.news-section .section__title .en {
	font-weight: 700;
	font-size: clamp(1.6875rem, 1.491rem + 0.98vw, 2.375rem);
	font-family: var(--font-montserrat);
}
.news__list {
	max-width: var(--max-content-width);
	margin: 0 auto 24px;
	border-top: 1px solid var(--gray-300);
}
.news__item {
	border-bottom: 1px solid var(--gray-300);
}
.news__link {
	display: block;
	padding: 16px 0;
	text-decoration: none;
	color: var(--color-black);
}
.news__date {
	display: block;
	margin-bottom: 4px;
	color: var(--color-black);
	font-size: 0.8125rem;
	font-family: var(--font-montserrat);
}
.news__title {
	font-size: 0.9375rem;
	line-height: 1.71;
}

@media (min-width: 768px) {
	.news-section {
		padding: 80px 0;
	}
	.news-section .section__inner {
		position: relative;
	}
	.news-section .section__title {
		flex-direction: row-reverse;
		align-items: center;
		gap: 20px;
		line-height: 1;
	}
	.news__list {
		margin-bottom: 0;
	}
	.news__link {
		display: flex;
		gap: 40px;
	}
	.news__date {
		margin-top: 2px;
		margin-bottom: 0;
	}
}

@media (min-width: 960px) {
	.news-section .section__inner {
		padding: 0 var(--container-padding);
	}
}

@media (min-width: 1024px) {
	.news-section .section__header {
		max-width: var(--max-content-width);
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 60px;
	}
}

/*--------------------------------------------------
	モデルコース（.page__model-course-wrapper）
--------------------------------------------------*/
.page__model-course-wrapper {
	padding: 40px var(--container-padding) 24px;
	background: var(--color-white);
}
.page__model-course {
	position: relative;
	margin-bottom: 40px;
}
.page__model-course:last-child {
	margin-bottom: 0;
}
.page__model-course .page__relation-title {
	position: relative;
	margin: 0 0 24px;
	padding-right: 24px;
	font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.5rem);
	font-weight: 700;
	line-height: 1.4;
}
.page__model-course .page__relation-title::after {
	position: absolute;
	top: calc(50% - 10px);
	right: 0;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: url(../images/icon_bullet.svg) no-repeat center center / contain;
	transform: rotate(-90deg);
	content: '';
}
.page__model-course-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
.page__model-course .page__relation-item a {
	display: block;
	width: 100% !important;
}
.page__model-course .page__relation-thumbnail {
	position: relative;
	overflow: hidden;
	margin: 0 0 16px;
}
.page__model-course .page__relation-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page__model-course .page__relation-title-item {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
}
.page__model-course-list .archive__meta {
	display: none !important;
	margin-bottom: 10px;
}
.page__model-course .archive-meta__excerpt {
	margin-top: 0;
	font-size: 0.875rem;
	line-height: 1.7;
}
.page__model-course .archive-meta__foot {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	font-size: 0.8125rem;
	color: var(--gray-600);
}
.page__model-course .archive-meta__foot-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}
.page__model-course .archive-meta__foot-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (min-width: 768px) {
	.page__model-course-wrapper {
		display: flex;
		justify-content: center;
		gap: 40px;
		margin-top: 96px;
	}
	.page__model-course {
		width: 100%;
		max-width: 448px;
	}
	.page__model-course .page__relation-thumbnail {
		border-radius: 22px;
	}
}

@media (min-width: 1024px) {
	.page__model-course-wrapper {
		gap: 80px;
		padding-top: 80px;
	}
	.page__model-course .page__relation-item a {
		max-width: inherit;
	}
}
