@charset "utf-8";

/*--------------------------------------------------
	ファーストビュー
--------------------------------------------------*/
.hero {
	position: relative;
	min-height: calc(100svh - 80px - calc(var(--container-padding) / 2));
	padding: 0 calc(var(--container-padding) / 2) 48px;
}
.hero__title {
	display: block;
	position: absolute;
	bottom: 100px;
	left: calc(50% - 148px);
	width: 296px;
	height: 116px;
	opacity: 0;
	visibility: hidden;
}
.hero__title-logo {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
}
.hero__copy {
	position: absolute;
	top: 14px;
	right: calc((var(--radius-s) * 2) + 12px);
	height: 100%;
}
.hero__copy-text {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	height: fit-content;
	padding: 16px 10px;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.2);
	color: var(--color-white);
	font-weight: 500;
	font-size: clamp(1.125rem, 0.5rem + 1.67vw, 2rem);
	line-height: 1.8;
	letter-spacing: 0.1em;
	opacity: 0;
	visibility: hidden;
}
@media (max-width: 599px) {
	.lang-ja .hero__copy-text {
		writing-mode: vertical-rl;
	}
}
/* 各コピーごとのアニメーションディレイ（ベース指定） */
.hero__copy-text--01 { animation-delay: 0s; }
.hero__copy-text--02 { animation-delay: 4.55s; }
.hero__copy-text--03 { animation-delay: 9.1s; }
.hero__copy-text--04 { animation-delay: 13.65s; }
.hero__copy-text--05 { animation-delay: 18.2s; }

.hero.-animating .hero__title {
	animation: hero-title-fade 24s linear infinite;
	animation-fill-mode: both;
}

.hero.-animating .hero__copy-text {
	animation: hero-copy 24s linear infinite;
	animation-fill-mode: both;
}

/* .hero.-animating が付いているときにも、各コピーごとのディレイを維持する */
.hero.-animating .hero__copy-text--01 { animation-delay: -0.5s; }
.hero.-animating .hero__copy-text--02 { animation-delay: 4.5s; }
.hero.-animating .hero__copy-text--03 { animation-delay: 9.5s; }
.hero.-animating .hero__copy-text--04 { animation-delay: 14s; }
.hero.-animating .hero__copy-text--05 { animation-delay: 19s; }

@keyframes hero-copy {
	0%,
	2% {
		opacity: 0;
		visibility: hidden;
	}
	4%,
	20% {
		opacity: 1;
		visibility: visible;
	}
	22%,
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

@keyframes hero-title-fade {
	0%,
	5% {
		opacity: 1;
		visibility: visible;
	}
	10%,
	87% {
		opacity: 0;
		visibility: hidden;
	}
	92%,
	100% {
		opacity: 1;
		visibility: visible;
	}
}
.hero__image,
.hero__video {
	overflow: hidden;
	width: 100%;
	height: calc(100svh - 80px - calc(var(--container-padding) / 2));
	border-radius: calc(var(--radius-s) * 2);
}
.hero__copy {
	height: calc(100svh - 80px - calc(var(--container-padding) / 2));
}
.hero__image img {
	display: block;
	max-width: inherit;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__notice {
	position: absolute;
	bottom: 0;
	left: calc(var(--container-padding) / 2);
	width: calc(100vw - var(--container-padding));
	height: 76px;
	padding: 8px;
	border-bottom-right-radius: calc(var(--radius-s) * 2);
	border-bottom-left-radius: calc(var(--radius-s) * 2);
	background: #F0A15E;
}
.hero__notice-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
	padding: 10px 12px;
	border-radius: calc((var(--radius-s) * 2) - 8px);
	background: var(--color-white);
}
.hero__notice-title {
	flex-shrink: 0;
	color: #F0A15E;
	font-weight: 700;
	font-family: var(--font-montserrat);
	font-size: 0.75rem;
	line-height: 1.2;
}
.hero__notice-link {
	position: relative;
	width: 100%;
	padding-right: 40px;
	font-size: 0.9375rem;
	line-height: 28px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.hero__notice-link::after {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 28px;
	height: 28px;
	border: 1px solid #F0A15E;
	border-radius: 50%;
	background: url(../images/icon_arrow_orange.svg) no-repeat center center / 16px 16px;
	content: '';
}

@media (max-width: 374px) {
	.hero__title {
		left: calc(50% - 35.641026vw);
		width: 71.28205vw;
		height: auto;
	}
	.hero__title-logo {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 959px) {
	.hero__social {
		display: none;
	}
}

@media (min-width: 600px) {
	.hero {
		min-height: inherit;
	}
	.hero__title {
		bottom: 56.25%;
		left: 50%;
		width: 38.28125%;
		max-width: 490px;
		height: auto;
		aspect-ratio: 49 / 19;
		transform: translate(-50%, 50%);
	}
	.hero:has(.hero__notice) .hero__title {
		bottom: calc(56.25% + 10px);
	}
	.hero__title-logo img {
		width: 100%;
	}
	.hero__copy {
		top: 0;
		left: calc(var(--container-padding) / 2);
		width: calc(100% - var(--container-padding));
		height: 100%;
	}
	.hero__copy-text {
		justify-content: flex-start;
		top: auto;
		right: auto;
		bottom: 60px;
		left: 20px;
		width: fit-content;
		padding: 12px 20px 12px 24px;
		border-radius: var(--radius-m);
		writing-mode: horizontal-tb;
	}
	.hero__copy-text--01 {
		top: 40px;
		right: 20px;
		bottom: auto;
		left: auto;
	}
}

@media (min-width: 768px) {
	.hero {
		padding: 0 3.07692vw 42px;
	}
	.hero__copy {
		left: 3.07692vw;
		width: calc(100% - 6.15384vw);
	}
	.hero__copy-text {
		font-size: clamp(1.125rem, 0.268rem + 1.79vw, 1.875rem);
	}
	.hero__notice {
		left: 3.07692vw;
		width: calc(100% - 6.15384vw);
		height: auto;
		padding: 12px;
	}
	.hero__notice-inner {
		flex-wrap: nowrap;
		gap: 16px;
		padding: 12px 12px 12px 24px;
		border-radius: var(--radius-full);
	}
	.hero__notice-title {
		margin-top: 4px;
		font-size: 0.875rem;
	}
	.hero__notice-link {
		font-size: 1rem;
		line-height: 32px;
	}
	.hero__notice-link::after {
		width: 32px;
		height: 32px;
	}
}

@media screen and (min-width: 768px) and (orientation: portrait) {
	.hero {
		height: auto;
	}
	.hero__image,
	.hero__video,
	.hero__copy {
		height: auto;
		aspect-ratio: 16 / 9;
	}
}

@media (min-width: 960px) {
	.hero {
			padding: 0 var(--container-padding) 42px;
	}
	.hero__copy {
		left: var(--container-padding);
		width: calc(100% - calc(var(--container-padding) * 2));
	}
	.hero__notice {
		left: var(--container-padding);
		width: calc(100% - 10vw);
		border-bottom-right-radius: calc(var(--radius-m) * 2);
		border-bottom-left-radius: calc(var(--radius-m) * 2);
	}
	.hero__social {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 12px;
		position: absolute;
		top: 50%;
		right: calc((5% - 36px) / 2);
		transform: translateY(-50%);
	}
	.hero__social-text {
		color: #AAABAB;
		font-size: 1rem;
		writing-mode: vertical-rl;
	}
	.hero__social-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border: 1px solid var(--color-black);
		border-radius: 50%;
		background: var(--gray-100);
		transition: opacity 0.3s;
	}
}

@media screen and (min-width: 960px) and (orientation: landscape) {
	.hero__image,
	.hero__video {
		height: 100%;
		border-radius: calc(var(--radius-m) * 2);
	}
	.hero__copy {
		height: calc(100% - 42px);
	}
	.hero:has(.hero__notice) .hero__copy {
		height: calc(100% - 40px);
	}
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
	.hero {
		height: calc(100svh - 114px);
	}
}

@media (min-width: 1440px) {
	.hero {
		padding: 0 8vw;
	}
	.hero__copy {
		left: 8vw;
		width: calc(100% - 16vw);
		height: 100%;
	}
	.hero__copy-text {
		bottom: 60px;
	}
	.hero:has(.hero__notice) .hero__copy-text {
		bottom: 90px;
	}
	.hero__notice {
		left: 8vw;
		width: calc(100% - 16vw);
		padding: 18px;
		border-bottom-right-radius: calc(var(--radius-m) * 2);
		border-bottom-left-radius: calc(var(--radius-m) * 2);
	}
	.hero__notice-inner {
		padding: 16px 20px 16px 40px;
	}
	.hero__notice-title {
		font-size: 0.9375rem;
	}
	.hero__notice-link {
		font-size: 1rem;
		line-height: 42px;
	}
	.hero__notice-link::after {
		width: 42px;
		height: 42px;
	}
	.hero__social {
		right: calc(4vw - 23px);
		gap: 20px;
	}
	.hero__social-text {
		margin-bottom: 4px;
	}
	.hero__social-link {
		width: 48px;
		height: 48px;
	}
	.hero__social-link img {
		width: 100%;
		height: 100%;
	}
}

@media (hover: hover) {
	.hero__notice-link::after {
		transition: background 0.2s ease;
	}
	.hero__notice-link:hover::after {
		background-color: #F0A15E;
		background-image: url(../images/icon_arrow_white.svg);
	}
	.hero__social-link {
		transition: background 0.2s ease;
	}
	.hero__social-link:hover {
		background: var(--color-black);
	}
	.hero__social-link:hover img {
		opacity: 1;
		filter: brightness(0) invert(1);
	}
}

/*--------------------------------------------------
	ヒーロー直下：検索・人気検索タグ
--------------------------------------------------*/
.hero-search {
	padding: 0 var(--container-padding) 32px;
	background: var(--gray-50);
}
.hero:has(.hero__notice) + .hero-search {
	padding-top: 32px;
}
.hero-search__keyword {
	margin-bottom: 20px;
}
.hero-search__popular {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
}
.hero-search__popular-title {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-black);
}
.hero-search__tag-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.hero-search__tag-item {
	margin: 0;
}
.hero-search__tag {
	display: inline-block;
	padding: 8px 1em 9px;
	border-radius: var(--radius-full);
	background: var(--color-white);
	font-size: 0.8125rem;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 960px) {
	.hero-search {
		padding: 20px 7.5vw 40px;
	}
	.hero:has(.hero__notice) + .hero-search {
		padding-top: 40px;
	}
	.hero-search__inner {
		max-width: 1280px;
		margin: 0 auto;
	}
}

@media (min-width: 1440px) {
	.hero-search {
		padding: 72px 10vw 32px;
	}
	.hero-search__popular {
		justify-content: center;
	}
	.hero-search__popular-title {
		font-size: 1rem;
	}
}

@media (hover: hover) {
	.hero-search__tag:hover {
		background: var(--gray-100);
		border-color: var(--gray-300);
	}
}

/*--------------------------------------------------
	セクション共通
--------------------------------------------------*/
.section__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}
.news-section .section__header,
.news-section .section__title,
.travel-smart-section .section__header,
.travel-smart-section .section__title {
	align-items: flex-start;
}
.section__title {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
	line-height: 1.2;
}
.section__title .en {
	font-weight: 700;
	font-size: clamp(1.6875rem, 1.491rem + 0.98vw, 2.375rem);
	font-family: var(--font-montserrat);
}
.section-btn {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.section-btn__link {
	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;
}
.section-btn__link::after {
	width: 16px;
	height: 16px;
	background: url(../images/icon_arrow_white.svg) no-repeat center center / contain;
	content: '';
}

@media (min-width: 768px) {
	.section__header {
		margin-bottom: 24px;
	}
	.section-btn {
		justify-content: flex-end;
		width: calc(100vw - 80px);
		max-width: var(--max-content-width);
		margin-top: -62px;
		margin-right: auto;
		margin-left: auto;
		padding: 0 !important;
	}
}

@media (min-width: 1024px) {
	.section__header {
		margin-bottom: 40px;
	}
	.section-btn {
		margin-top: -80px;
	}
	.section-btn__link {
		justify-content: space-between;
		width: 180px;
	}
}

@media (min-width: 1024px) and (hover: hover) {
	.section-btn__link:hover {
		background: var(--color-white);
		color: var(--color-black);
	}
	.section-btn__link:hover::after {
		background: url(../images/icon_arrow_black.svg) no-repeat center center / contain;
	}
}

/*--------------------------------------------------
	スライダー
--------------------------------------------------*/
.pickup-section .pickup__slider,
.feature-section .feature__slider,
.model-course-section .model-course__slider,
.experience-section .experience__slider,
.experience__slider,
.event-section .event__slider {
	padding-right: var(--container-padding);
	padding-left: var(--container-padding);
}
.pickup__slider .pickup__slide,
.feature__slider .feature__slide,
.model-course__slider .model-course__slide,
.experience__slider .experience__slide,
.event__slider .event__slide {
	width: auto;
}
.model-course__slider .model-course__slide,
.experience__slider .experience__slide,
.event__slider .event__slide {
	width: auto;
}
.pickup__slider .pickup__slide,
.model-course__slider .model-course__slide,
.experience__slider .experience__slide,
.feature__slider .feature__slide,
.event__slider .event__slide {
	flex-shrink: 0;
}
.pickup__card {
	display: block;
	width: 152px;
}
.feature__card {
	display: block;
	width: 298px;
}
.model-course__card,
.experience__card {
	display: block;
	width: 268px;
}
.event__card {
	display: block;
	width: 228px;
}
.pickup__image,
.feature__image,
.model-course__image,
.experience__image,
.event__image {
	position: relative;
	border-radius: var(--radius-m);
	overflow: hidden;
}
.pickup__image {
	aspect-ratio: 1;
	border: 1px solid var(--color-black);
}
.feature__image {
	aspect-ratio: 4 /3;
}
.model-course__image,
.experience__image {
	aspect-ratio: 4 / 3;
}
.event__image {
	aspect-ratio: 2 / 3;
}
.pickup__image img,
.feature__image img,
.model-course__image img,
.experience__image img,
.event__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pickup__content,
.feature__content,
.model-course__content,
.experience__content,
.event__content {
	margin-top: 12px;
}
.feature__content,
.model-course__content,
.experience__content {
	position: relative;
}
.pickup__title,
.feature__title,
.model-course__title,
.experience__title,
.event__title {
	font-weight: 700;
	font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
	line-height: 1.71;
}
.pickup__navigation,
.feature__navigation,
.model-course__navigation,
.experience__navigation,
.event__navigation {
	display: flex;
	align-items: center;
	position: relative;
	gap: 24px;
	margin-top: 40px;
}
.pickup__nav,
.feature__nav,
.model-course__nav,
.experience__nav,
.event__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;
}
.pickup__nav:disabled,
.feature__nav:disabled,
.model-course__nav:disabled,
.experience__nav:disabled,
.event__nav:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.pickup__nav svg,
.feature__nav svg,
.model-course__nav svg,
.experience__nav svg,
.event__nav svg {
	width: 14px;
	height: 14px;
}
.pickup__pagination,
.feature__pagination,
.model-course__pagination,
.experience__pagination,
.event__pagination {
	display: flex;
	align-items: center;
	gap: 32px;
}
.pickup__pagination-text,
.feature__pagination-text,
.model-course__pagination-text,
.experience__pagination-text,
.event__pagination-text {
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
}
.pickup__progress,
.feature__progress,
.model-course__progress,
.experience__progress,
.event__progress {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(0, 0, 0, 0.16);
	overflow: hidden;
}
.pickup__progress-bar,
.feature__progress-bar,
.model-course__progress-bar,
.experience__progress-bar,
.event__progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: var(--color-black);
	transition: width 0.3s ease;
}
.feature__tags,
.event__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 10px;
}
.feature__tag,
.event__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;
}

@media (max-width: 374px) {
	.feature__card {
		width: 80vw;
	}
}

@media (max-width: 479px) {
	.feature__tag,
	.event__tag {
		padding: 2px 8px;
	}
}

@media (min-width: 768px) {
	.event-section .event__slider {
		padding-right: 0;
		padding-left: 0;
	}
	.pickup__card {
		width: 184px;
	}
	.feature__card {
		width: 296px;
	}
	.model-course__card,
	.experience__card {
		width: calc((100vw - 80px) / 3);
	}
	.pickup__navigation,
	.feature__navigation,
	.model-course__navigation,
	.experience__navigation,
	.event__navigation {
		max-width: 940px;
		margin-right: auto;
		margin-left: auto;
	}
	.pickup__nav,
	.feature__nav,
	.model-course__nav,
	.experience__nav,
	.event__nav {
		width: 42px;
		height: 42px;
	}
	.pickup__pagination,
	.feature__pagination,
	.model-course__pagination,
	.experience__pagination,
	.event__pagination {
		flex-grow: 1;
	}
	.pickup__progress,
	.feature__progress,
	.model-course__progress,
	.experience__progress,
	.event__progress {
		position: relative;
		top: inherit;
		left: inherit;
	}
}

@media (min-width: 1024px) {
	.pickup-section .pickup__slider {
		width: 90vw;
		max-width: 1280px;
		padding: 0;
	}
	.feature-section .feature__slider {
		width: 90vw;
		max-width: 1188px;
		padding: 0;
	}
	.model-course-section .model-course__slider,
	.experience-section .experience__slider {
		width: 90vw;
		max-width: calc(var(--max-content-width) - 40px);
		padding: 0;
	}
	.pickup__card {
		width: calc((90vw - 80px) / 5);
		max-width: 240px;
	}
	.feature__card {
		width: calc((90vw - 48px) / 3);
		max-width: 380px;
	}
	.model-course__card,
	.experience__card {
		width: calc((90vw - 48px) / 3);
		max-width: 324px;
	}
	.pickup__nav,
	.feature__nav,
	.model-course__nav,
	.experience__nav,
	.event__nav {
		width: 46px;
		height: 46px;
	}
	.pickup__nav svg,
	.feature__nav svg,
	.model-course__nav svg,
	.experience__nav svg,
	.event__nav svg {
		width: 16px;
		height: 16px;
	}
}

@media (min-width: 1128px) {
	.model-course__card,
	.experience__card {
		width: calc((calc(var(--max-content-width) - 40px) - 48px) / 3);
	}
}

@media (min-width: 1024px) and (hover: hover) {
	.pickup__nav:hover,
	.feature__nav:hover,
	.model-course__nav:hover,
	.experience__nav:hover,
	.event__nav:hover {
		background: var(--color-white);
	}
	.pickup__nav:hover svg path,
	.feature__nav:hover svg path,
	.model-course__nav:hover svg path,
	.experience__nav:hover svg path,
	.event__nav:hover svg path {
		fill: var(--color-black);
	}
}

/*--------------------------------------------------
	PICK UP
--------------------------------------------------*/
.pickup-section {
	padding: 64px 0 48px;
	background: var(--gray-50);
}
.pickup-section .section__inner {
	max-width: 1280px;
	margin: 0 auto;
}
.pickup-section .section__title {
	position: relative;
}
.pickup-section .section__title::before {
	position: absolute;
	top: -22px;
	left: -22px;
	width: 29px;
	height: 32px;
	background: url(../images/icon_pickup.svg) no-repeat center center / contain;
	pointer-events: none;
	content: '';
}

@media (min-width: 768px) {
	.pickup-section .section__title::before {
		top: -20px;
		left: -42px;
		width: 40px;
		height: 44px;
	}
}


/*--------------------------------------------------
	FEATURE
--------------------------------------------------*/
.feature-section {
	position: relative;
	z-index: 2;
	padding: 64px 0;
	border-radius: var(--radius-m);
	background: var(--color-white);
}
.feature-section .section__title {
	position: relative;
	padding-top: 20px;
}
.feature-section .section__title::before {
	position: absolute;
	top: 0;
	left: calc(50% - 42.5px);
	width: 85px;
	height: 8px;
	background: url(../images/icon_feature.svg) no-repeat center center / contain;
	content: '';
}

@media (min-width: 768px) {
	.feature-section .section__title::before {
		top: -2px;
		left: calc(50% - 63.5px);
		width: 127px;
		height: 12px;
	}
}

.feature__banner {
	display: flex;
	justify-content: center;
	padding: 48px var(--container-padding) 0;
}

@media (min-width: 768px) {
	.feature-section {
		padding-bottom: 100px;
	}
	.feature__banner {
		padding-top: 64px;
		padding-bottom: 0;
	}
	.feature__banner-link {
		max-width: 940px;
	}
	.feature__banner-link img {
		width: 100%;
	}
}

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

@media (min-width: 1024px) {
	.feature-section {
		padding-bottom: 120px;
	}
	.feature__banner {
		padding-top: 80px;
	}
}

/*--------------------------------------------------
	富山の日常に出会える３つの入口
--------------------------------------------------*/
.fave-section {
	margin: -20px 0;
	padding: 0;
	background: #A6D1B2;
	overflow: hidden;
}
.fave-section .section__inner {
	position: relative;
	padding: 0 0 84px;
}
.fave__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fave-section .fave__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.fave-section .fave__list.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.fave__list-item {
	width: calc((100% - 32px) / 3);
	max-width: 100px;
	aspect-ratio: 1 / 1;
}
.fave__list-item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: 100%;
	border-radius: var(--radius-full);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	background: var(--color-white);
	color: var(--color-black);
	font-weight: 700;
	font-size: 0.875rem;
}
.fave__list-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 49px;
	height: 42px;
}
.fave__message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: fit-content;
	margin: 40px auto 0;
}
.fave__message-title {
	margin-bottom: 1em;
	font-weight: 700;
	font-size: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
	text-align: center;
}
.fave__message-text {
	font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
	line-height: 2;
}
.fave__message-text p:last-child {
	margin-top: 1.5em;
}

@media (max-width: 767px) {
	.fave__slide {
		aspect-ratio: 5 / 6;
	}
}

@media (min-width: 480px) {
	.fave-section .fave-list {
		gap: 8px;
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}
	.fave-item {
		width: calc((100% - 16px) / 3);
	}
}

@media (min-width: 768px) {
	.fave-section .section__inner {
		padding-bottom: 80px;
	}
	.fave__slide {
		height: 412px !important;
	}
	.fave__slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.fave-section .fave__list,
	.fave__message {
		margin-top: 60px;
	}
}

@media (min-width: 960px) {
	.fave-section {
		margin: -40px 0 0;
	}
	.fave__content {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		gap: 76px;
	}
	.fave-section .fave__list {
		flex-shrink: 0;
		gap: 20px;
		width: 362px;
	}
	.fave__list-item {
		width: calc((100% - 40px) / 3);
		max-width: 108px;
	}
	.fave__list-item:nth-child(1) img {
		width: 40px;
	}
	.fave__list-item:nth-child(2) img {
		width: 48px;
	}
	.fave__list-item:nth-child(3) img {
		width: 37px;
	}
	.fave__message {
		align-items: flex-start;
		margin-right: 0;
		margin-left: 0;
		font-size: 1rem;
		text-align: left;
	}
}

@media (min-width: 1280px) {
	.fave__slide {
		height: 474px !important;
	}
}

/*--------------------------------------------------
	アクセス
--------------------------------------------------*/
.access-section {
	position: relative;
	padding: 64px 0;
	background: var(--color-blue);
	overflow: hidden;
}
.access-section::before {
	position: absolute;
}
.access-section .section__inner {
	display: flex;
	flex-direction: column;
}
.access__header {
	padding: 0 var(--container-padding);
}
.access__title {
	margin: 0 0 16px;
	font-weight: 700;
	font-size: clamp(1.25rem, 1.214rem + 0.18vw, 1.375rem);
	line-height: 1.4;
}
.access__text {
	font-size: 0.875rem;
	line-height: 1.8;
}
.access__buttons {
	display: inline-flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	width: fit-content;
	margin: 40px auto 0;
	padding: 0 var(--container-padding);
}
.access__buttons::before {
	position: absolute;
	top: -120px;
	right: calc(50% - 50vw + 2.05128vw);
	z-index: 1;
	width: 56px;
	height: 53px;
	background: url(../images/icon_direction.png) no-repeat center center / contain;
	content: '';
}
.access__buttons::after {
	position: absolute;
	top: -72px;
	left: calc(50% - 50vw + 2.05128vw);
	z-index: 1;
	width: fit-content;
	font-size: 0.75rem;
	content: '※所要時間は最速の場合の目安です。';
}
.access__button-link {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 44px 0 24px;
	min-height: 56px;
	border: 1px solid var(--color-black);
	border-radius: var(--radius-full);
	background: var(--color-black);
	color: var(--color-white);
	font-weight: 700;
	text-decoration: none;
}
.access__button-link:first-child {
	background: var(--color-white);
	color: var(--color-black);
}
.access__button-link::after {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	background: url(../images/icon_arrow_white.svg) no-repeat center center / contain;
	content: '';
}
.access__button-link:first-child::after {
	background: url(../images/icon_arrow_black.svg) no-repeat center center / contain;
}
.access__button-text .sub {
	font-size: 0.875rem;
}

/* スマホ: マップを横スクロールで表示 */
.access__map-wrapper {
	position: relative;
	width: 100%;
	height: 540px;
	margin-top: 12px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.access__map-wrapper::-webkit-scrollbar {
	display: none;
}
.access__map {
	width: 720px;
}
.access__map img {
	display: block;
	width: 100%;
	height: auto;
}

/* スマホ時: スクロールヒント（左右に動くアニメーション） */
.access__map-scroll-hint,
.search-area__map-scroll-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: calc(50% - 36px);
	left: calc((720px - 100vw) / 2);
	z-index: 2;
	width: 100%;
	height: 72px;
	pointer-events: none;
}
.search-area__map-scroll-hint {
	left: 0;
}
.access__map-scroll-hint.is-hidden,
.search-area__map-scroll-hint.is-hidden {
	animation: none;
	opacity: 0;
	visibility: hidden;
}
.access__map-scroll-hint img,
.search-area__map-scroll-hint img {
	animation: access-scroll-hint-move 2s ease-in-out infinite;
	transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
@keyframes access-scroll-hint-move {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(-10px);
	}
}
.access__map-scroll-hint img,
.search-area__map-scroll-hint img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: contain;
}

@media (min-width: 720px) {
	.access__map {
		width: 100%;
	}
	.access__map-wrapper {
		height: 75vw;
		margin-top: -60px;
	}
	.access__map-scroll-hint,
	.search-area__map-scroll-hint {
		display: none;
	}
}

@media (min-width: 960px) {
	.access-section {
		height: 61.77606vw;
		max-height: 640px;
	}
	.access-section::after {
		position: absolute;
		bottom: 24px;
		right: 8vw;
		z-index: 1;
		width: fit-content;
		font-size: 0.75rem;
		content: '※所要時間は最速の場合の目安です。';
	}
	.access__header {
		position: relative;
		z-index: 1;
	}
	.access__map-wrapper {
		overflow: visible;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		margin-top: 0;
		aspect-ratio: 13 / 8;
	}
	.access__map {
		max-width: 1056px;
		width: 100%;
		height: 100%;
		margin: 0 auto;
	}
	.access__catch {
		font-size: clamp(1.5rem, 1.25rem + 0.52vw, 1.75rem);
	}
	.access__buttons {
		gap: 20px;
		margin: 24px 0 0;
	}
	.access__buttons::before,
	.access__buttons::after {
		display: none;
	}
	.access__button-link {
		min-height: 52px;
		font-size: 0.9375rem;
	}
	.access__button-text .sub {
		font-size: 0.8125rem;
	}
}

@media (min-width: 1024px) {
	.access__header {
		width: 940px;
		margin: 0 auto;
		padding: 0;
	}
	.access__buttons {
		margin-left: calc(50% - 470px);
		padding: 0;
	}
}

@media (min-width: 1056px) {
	.access-section::after {
		right: calc(50% - 518px + 88px);
	}
	.access__map {
		padding-left: 20px;
	}
}

@media (min-width: 1280px) {
	.access-section {
		padding: 80px 0 0;
	}
	.access-section .section__inner {
		max-width: 1280px;
		margin: 0 auto;
	}
	.access__map-wrapper::before {
		right: 8vw;
	}
	.access__map-wrapper::after {
		right: calc(8vw + 100px);
	}
}


/*--------------------------------------------------
	モデルコース
--------------------------------------------------*/
.model-course-section {
	padding: 64px 0 48px;
}
.model-course-section .section__title {
	position: relative;
}
.model-course-section .section__title::before {
	position: absolute;
	bottom: -54px;
	left: -48px;
	width: 114px;
	height: 48px;
	background: url(../images/icon_model_course.svg) no-repeat center center / contain;
	pointer-events: none;
	content: '';
}
.model-course__view-all {
	justify-content: flex-end;
	padding: 0 2.05128vw;
}
.model-course__meta {
	display: flex;
	align-items: center;
	gap: 8px;
}
.model-course__duration {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--gray-700);
	font-size: 0.75rem;
}

@media (min-width: 768px) {
	.model-course-section .section__title::before {
		bottom: 0;
		left: calc(50% - 50vw + 40px);
		width: 170px;
		height: 72px;
	}
}

@media (min-width: 1024px) {
	.model-course-section {
		padding: 80px 0;
	}
	.model-course-section .section__inner {
		padding: 0 40px;
	}
	.model-course-section .section__title::before {
		left: calc(50% - 50vw + 40px);
		width: 211px;
		height: 90px;
	}
}

@media (min-width: 1056px) {
	.model-course-section .section__title::before {
		left: calc(50% - 528px);
	}
}

/*--------------------------------------------------
	体験
--------------------------------------------------*/
.experience-section {
	padding: 48px 0 64px;
}
.experience-section .section__title {
	position: relative;
}
.experience-section .section__title::before {
	position: absolute;
	bottom: -56px;
	left: -78px;
	width: 98px;
	height: 57px;
	background: url(../images/icon_experience.svg) no-repeat center center / contain;
	pointer-events: none;
	content: '';
}
.experience__view-all {
	justify-content: flex-end;
	padding: 0 2.05128vw;
}

@media (min-width: 768px) {
	.experience-section .section__title::before {
		bottom: 0;
		left: calc(50% - 50vw + 40px);
		width: 121px;
		height: 72px;
	}
}

@media (min-width: 1024px) {
	.experience-section {
		padding: 80px 0;
	}
	.experience-section .section__inner {
		padding: 0 40px;
	}
	.experience-section .section__title::before {
		left: calc(50% - 528px);
		width: 150px;
		height: 90px;
	}
}


/*--------------------------------------------------
	探す
--------------------------------------------------*/
.search-section {
	padding: 64px 0;
	background: var(--gray-100);
}

/* Heading */
.search-purpose {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	margin-bottom: 20px;
}
.search-purpose__title,
.search-area__title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: clamp(11.375rem, 10.375rem + 5vw, 14.875rem);
	height: clamp(2.125rem, 1.804rem + 1.61vw, 3.25rem);
	border-radius: var(--radius-full);
	background: #DEDEDE;
	color: var(--gray-700);
	font-weight: 700;
	font-size: clamp(0.875rem, 0.829rem + 0.19vw, 1rem);
}
.search-purpose__title::after,
.search-area__title::after {
	position: absolute;
	bottom: -18px;
	left: calc(50% - 1px);
	width: 2px;
	height: 10px;
	background: var(--gray-200);
	content: '';
}

/* Purpose Category */
.search-purpose__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.search-purpose__item {
	flex: 0 0 auto;
}
.search-purpose__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 7em;
	height: clamp(3.125rem, 2.614rem + 2.1vw, 4.5rem);
	padding: 0 1em;
	border-radius: var(--radius-full);
	font-size: clamp(0.9375rem, 0.848rem + 0.45vw, 1.25rem);
}
.search-purpose__button.-spot {
	background: var(--color-spot);
}
.search-purpose__button.-experience {
	background: var(--color-experience);
}
.search-purpose__button.-gourmet {
	background: var(--color-gourmet);
}
.search-purpose__button.-souvenir {
	background: var(--color-souvenir);
}
.search-purpose__button.-stay {
	background: var(--color-stay);
}

/* Area Section */
.search-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	margin-top: 64px;
}
/* エリアマップ: .search-area__map が相対位置の枠、内側の wrapper が横スクロールコンテナ */
.search-area__map {
	position: relative;
	width: 100%;
	margin-top: 32px;
}
.search-area__map-wrapper {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.search-area__map-wrapper::-webkit-scrollbar {
	display: none;
}
.search-area__map-image {
	display: block;
	position: relative;
	width: 240vw;
	max-width: 1280px;
}
.search-area__map-link {
	position: absolute;
	top: 0;
	left: 0;
	height: 4.44444%;
	background: transparent;
	font-size: 0;
}
.search-area__map-link.-central {
	top: 37.22222%;
	left: 65.625%;
	width: 20%;
}
.search-area__map-link.-bay {
	top: 9.81481%;
	left: 30.20833%;
	width: 16.04166%;
}
.search-area__map-link.-kureha {
	top: 45.55555%;
	left: 21.25%;
	width: 6.25%;
}
.search-area__map-link.-fuchu-yatsuo {
	top: 75.74074%;
	left: 22.29166%;
	width: 14.47916%;
}
.search-area__map-link.-oyama {
	top: 72.59259%;
	left: 70.625%;
	width: 6.25%;
}
.search-area__map-link.-osawano-hosori {
	top: 65.18518%;
	left: 42.29166%;
	width: 11.5625%;
}
.search-area__map-image img {
	display: block;
	width: 100%;
	height: auto;
}
.search-area__map-nav {
	display: none !important;
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 24px;
	pointer-events: none;
}
.search-area__map-prev,
.search-area__map-next {
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: var(--color-black);
	color: var(--color-white);
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: background 0.3s, color 0.3s;
}
.search-area__map-prev:hover,
.search-area__map-next:hover {
	background: var(--color-black);
	color: var(--color-white);
}

/* Area List */
.search-area__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin: 30px var(--container-padding) 16px;
}
.search-area__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: .5em 1em;
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-full);
	background: var(--color-white);
	font-weight: 700;
	font-size: min(0.9375rem, 4.16666vw);
}

/* Nearby Link */
.search-area__link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	padding: 0 1em;
	height: 34px;
	border-radius: var(--radius-full);
	background: var(--color-white);
	font-weight: 700;
	font-size: 0.875rem;
}
.search-area__link::after {
	width: 17px;
	height: 17px;
	background: url(../images/icon_arrow_black.svg) no-repeat center center / contain;
	content: '';
}

/* Footer */
.search-area__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
	padding: 0 var(--container-padding);
}
.search-area__bottom-catch {
	font-size: 0.875rem;
}
.search-area__bottom-link {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	max-width: 360px;
	height: 56px;
	border-radius: var(--radius-full);
	background: var(--color-black);
	color: var(--color-white);
	font-weight: 700;
}
.search-area__bottom-link::after {
	position: absolute;
	top: calc(50% - 8px);
	right: 14px;
	width: 16px;
	height: 16px;
	background: url(../images/icon_arrow_white.svg) no-repeat center center / contain;
	content: '';
}
.search-area__bottom-text {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-white);
}

@media (min-width: 768px) {
	.search-section {
		padding: 80px 0;
	}
	.search-section .section__inner {
		padding: 0 var(--container-padding);
	}
	.search-purpose {
		margin-bottom: 60px;
	}
	.search-purpose__list {
		gap: 12px;
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
	}
	.search-purpose__item {
		width: calc((100% - 48px) / 5);
	}
	.search-purpose__button {
		width: 100%;
		font-size: 1rem;
	}
	.search-area {
		margin-bottom: 48px;
	}
	.search-area__map {
		min-width: auto;
		width: 100%;
	}
	.search-area__map-wrapper {
		overflow-x: visible;
		border-radius: calc(var(--radius-s) * 2);
	}
	.search-area__map-image {
		width: 100%;
		max-width: inherit;
	}
	.search-area__map img {
		max-width: none;
		min-width: auto;
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: calc(var(--radius-s) * 2);
	}
	.search-area__map-nav {
		display: none;
	}
	.search-area__list {
		display: none;
	}
	.search-area__link {
		justify-content: flex-start;
	}
	.search-area__link-text {
		font-size: 0.875rem;
	}
	.search-area__bottom-catch {
		font-size: 0.9375rem;
	}
	.search-area__bottom-link {
		max-width: 520px;
		height: 64px;
	}
	.search-area__bottom-text {
		font-size: 1.125rem;
	}
	.search-area__bottom-link::after {
		right: 30px;
		width: 20px;
		height: 20px;
	}
}

@media (min-width: 960px) {
	.search-section .section__inner {
		padding: 0 var(--container-padding);
	}
	.search-area__map img {
		border-radius: calc(var(--radius-m) * 2);
	}
}

@media (min-width: 1024px) {
	.search-purpose {
		gap: 48px;
		max-width: var(--max-content-width);
		margin: 0 auto 80px;
	}
	.search-purpose__button {
		border: 3px solid var(--color-white);
		box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
		font-weight: 700;
	}
	.search-purpose__title::after,
	.search-area__title::after {
		bottom: -32px;
		height: 18px;
	}
	.search-purpose__list {
		gap: 16px;
	}
	.search-purpose__item {
		width: calc((100% - 64px) / 5);
	}
	.search-area__map {
		max-width: 1280px;
		margin: 48px auto 0;
	}
	.search-area__bottom-catch {
		font-size: 1rem;
	}
}

@media (min-width: 1440px) {
	.search-section .section__inner {
		padding: 0 8vw;
	}
	.search-purpose {
		margin-bottom: 100px;
	}
	.search-purpose__list {
		gap: 20px;
	}
	.search-purpose__item {
		width: calc((100% - 80px) / 5);
	}
}

/*--------------------------------------------------
	EVENT
--------------------------------------------------*/
.event-section {
	padding: 64px 0;
	background: #B3E5FC;
}
.event-section .section__inner {
	width: 100%;
	padding: 0 var(--container-padding);
}
.event-section .section__header,
.event-section .section__title {
	align-items: flex-start;
}

.event__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 40px;
}
.event__button {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	max-width: 360px;
	height: 56px;
	border-radius: var(--radius-full);
	background: var(--color-black);
	color: var(--color-white);
	font-weight: 700;
}
.event__button::after {
	position: absolute;
	top: calc(50% - 8px);
	right: 14px;
	width: 16px;
	height: 16px;
	background: url(../images/icon_arrow_white.svg) no-repeat center center / contain;
	content: '';
}

/* Event Section Slider */
.event__slider-container {
	margin-top: 60px;
	margin-right: calc(var(--container-padding) * -1);
	margin-left: calc(var(--container-padding) * -1);
}
.event__body {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px;
	position: relative;
	margin-top: 12px;
}
.event__date {
	width: 100%;
	padding-right: 40px;
	font-size: 0.875rem;
}
.event__title {
	flex: 1;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.71;
}
.event__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.event__location {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	color: var(--gray-700);
}

@media (min-width: 768px) {
	.event-section .section__header,
	.event-section .section__title {
		align-items: center;
	}
	.event__content {
		display: flex;
		justify-content: space-between;
	}
	.event__calendar-container {
		width: 40.54054%;
	}
	.event__buttons {
		gap: 24px;
	}
	.event__slider-container {
		width: calc(54.05405% + var(--container-padding));
		margin-top: 24px;
		margin-right: calc(var(--container-padding) * -1);
		margin-left: 0;
	}
	.event__slider {
		padding-right: 0;
		padding-left: 0;
	}
	.event__button {
		max-width: inherit;
	}
}

@media (min-width: 960px) {
	.event-section .section__inner {
		padding: 0 var(--container-padding);
	}
	.event__content {
		padding: 24px 4.6875%;
		border-radius: calc(var(--radius-m) * 2);
		background: var(--color-white);
	}
	.event__calendar-container {
		width: calc(100% - 480px - 4vw);
	}
	.event__slider-container {
		width: 480px;
		margin-right: 0;
		margin-left: 4vw;
	}
}

@media (min-width: 1024px) {
	.event-section {
		padding: 80px 0;
	}
	.event__content {
		max-width: 1280px;
		margin: 0 auto;
		padding: 56px 4.6875% 60px;
	}
	.event-section__content {
		display: flex;
		gap: 40px;
		align-items: flex-start;
	}
	.event__calendar-wrapper {
		flex: 0 0 360px;
		margin-bottom: 0;
	}
	.event-calendar {
		border-radius: 24px;
		padding: 24px;
	}
	.event-calendar__month-num {
		font-size: 2.5rem;
	}
	.event-calendar__day {
		height: 44px;
	}
	.event__buttons {
		gap: 40px;
		margin-top: 58px;
	}
	.event-section__buttons {
		flex-direction: column;
		gap: 16px;
	}
	.event-section__button {
		padding: 16px 32px;
		font-size: 1rem;
	}
	.event__calendar-container {
		width: calc(100% - 560px);
	}
	.event__slider-container {
		width: 508px;
		margin-left: 52px;
	}
	.event__card {
		width: 242px;
	}
}

@media (min-width: 1280px) {
	.event__calendar-container {
		width: calc(100% - 660px);
	}
	.event__slider-container {
		width: 600px;
		margin-left: 60px;
	}
	.event__card {
		width: 282px;
	}
}

@media (min-width: 1440px) {
	.event-section .section__inner {
		padding: 0 8vw;
	}
}

/*--------------------------------------------------
	富山をめぐる12ヶ月
--------------------------------------------------*/
.seasons-section {
	position: relative;
	padding: 40px 0;
	background: #C4A77D;
	overflow: hidden;
}
.seasons__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	pointer-events: none;
	opacity: 0.15;
}
.seasons__bg-mountain {
	position: absolute;
	right: 0;
	bottom: 0;
	width: auto;
	height: 80%;
	object-fit: contain;
	object-position: right bottom;
}
.seasons__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.seasons__header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 var(--container-padding);
}
.seasons__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2em;
	position: relative;
	font-size: 1rem;
	color: var(--color-white);
	line-height: 1.4;
}
.seasons__title::before {
	position: absolute;
	top: -12px;
	left: -58px;
	width: 49px;
	height: 45px;
	background: url(../images/icon_ptarmigan.svg) no-repeat center center / contain;
	content: '';
}
.seasons__title::after {
	position: absolute;
	top: -24px;
	right: calc(50% - 50vw);
	width: 136px;
	height: 19px;
	background: url(../images/icon_footprints.svg) no-repeat center center / contain;
	content: '';
}
.seasons__title img {
	width: clamp(13.25rem, 12.161rem + 5.45vw, 17.063rem);
}
.seasons__title .en {
	font-size: clamp(0.8125rem, 0.795rem + 0.09vw, 0.875rem);
	font-family: var(--font-montserrat);
	letter-spacing: 0.05em;
}

/* Slider Container */
.seasons__slider-container {
	display: flex;
	align-items: center;
	position: relative;
}
.seasons__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: var(--radius-full);
	background: var(--color-black);
	cursor: pointer;
}
.seasons__nav-prev {
	left: 8px;
}
.seasons__nav-next {
	right: 8px;
}
.seasons__slider-wrapper {
	width: 100%;
	padding: 20px var(--container-padding);
}
.seasons__slider-wrapper.swiper {
	overflow: hidden;
}
.seasons__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.seasons__list.swiper-wrapper {
	display: flex;
	align-items: stretch;
	padding: 20px 0;
}
.seasons__item {
	flex-shrink: 0;
}
.seasons__item.swiper-slide {
	box-sizing: border-box;
	width: auto;
}
.seasons__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}
.seasons__link.-current::before {
	position: absolute;
	top: -8px;
	left: -8px;
	width: calc(100% + 16px);
	height: calc(100% + 16px);
	border: 8px solid rgba(255, 255, 255, 0.64);
	border-radius: var(--radius-full);
	pointer-events: none;
	content: '';
}
.seasons__image {
	order: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 98px;
	height: 98px;
	border-radius: var(--radius-full);
	background: var(--color-white);
	overflow: hidden;
}
.seasons__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.seasons__month-num {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: clamp(1.875rem, 1.554rem + 1.61vw, 3rem);
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-full);
	background: var(--color-white);
	color: #B7C7AA;
	font-style: italic;
	font-size: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
	font-family: var(--font-montserrat);
	line-height: 1;
	text-indent: -0.25em;
}
.seasons__month-name {
	position: absolute;
	bottom: 0.5em;
	left: 0;
	width: 100%;
	color: #B7C7AA;
	font-size: clamp(0.75rem, 0.607rem + 0.71vw, 1.25rem);
	font-family: var(--font-montserrat);
	text-align: center;
}

@media (min-width: 480px) {
	.seasons__title::after {
		top: -20px;
		right: -136px;
	}
}

@media (min-width: 768px) {
	.seasons-section {
		padding: 64px 0;
		background: #C4A77D url(../images/bg_seasons.png) no-repeat center center / cover;
	}
	.seasons__link.-current::before {
		top: -12px;
		left: -12px;
		width: calc(100% + 24px);
		height: calc(100% + 24px);
		border-width: 12px;
	}
	.seasons__link.-current::before {
		top: -12px;
		left: -12px;
		width: calc(100% + 24px);
		height: calc(100% + 24px);
		border-width: 12px;
	}
	.seasons__image {
		width: 152px;
		height: 152px;
	}
}

@media (min-width: 1024px) {
	.seasons__bg-mountain {
		height: 100%;
		opacity: 0.2;
	}
	.seasons__header {
		margin-bottom: 24px;
	}
	.seasons__title::before {
		top: -2px;
		left: -80px;
		width: 66px;
		height: 60px;
	}
	.seasons__title::after {
		top: 4px;
		right: -166px;
	}
	.seasons__nav {
		width: 44px;
		height: 44px;
	}
	.seasons__nav-prev {
		left: 20px;
	}
	.seasons__nav-next {
		right: 20px;
	}
	.seasons__item {
		position: relative;
	}
	.seasons__item::after {
		position: absolute;
		bottom: -50%;
		right: -50%;
		width: 307px;
		height: 266px;
		background: url(../images/img_shadow.png) no-repeat center center / contain;
		content: '';
	}
	.seasons__image {
		width: 180px;
		height: 180px;
	}
	.seasons__image img {
		width: 90%;
		height: 90%;
	}
}

@media (min-width: 1440px) {
	.seasons-section {
		height: 480px;
		padding: 74px 0;
	}
}


/*--------------------------------------------------
	FOLLOW US（Instagram セクション・フィード以外）
--------------------------------------------------*/
.instagram-section {
	padding: 40px 0 64px;
	background: var(--color-white);
}
.instagram-section .section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.instagram__header {
	text-align: center;
	margin-bottom: 20px;
}
.instagram__title {
	margin: 0 0 8px;
	font-size: clamp(1.5rem, 1.491rem + 0.98vw, 2.375rem);
	font-weight: 700;
	font-family: var(--font-montserrat);
	color: var(--color-black);
	letter-spacing: 0.05em;
}
.instagram__subtitle {
	margin: 0;
	font-size: 0.875rem;
	color: var(--gray-500);
}
.instagram__profile-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	padding: 4px 0;
	color: var(--color-black);
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.instagram__profile-link:hover {
	opacity: 0.8;
}
.instagram__profile-icon {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
}
.instagram__profile-handle {
	font-size: 0.875rem;
}
.instagram__profile-external {
	flex-shrink: 0;
	width: 15px;
	height: 16px;
}
.instagram__feed {
	width: 74.35897vw;
	max-width: 940px;
	margin: 0 auto;
}
#sb_instagram.sbi_mob_col_2 #sbi_images {
	gap: 10px !important;
}
#sb_instagram .sbi_photo img {
	border-radius: var(--radius-m) !important;
}
.instagram__buttons {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 40px;
	padding: 0 var(--container-padding);
}
.instagram__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	max-width: 360px;
	min-height: 60px;
	padding: 12px 24px 12px 20px;
	border-radius: var(--radius-full);
	color: var(--color-white);
	font-size: 0.8125rem;
	transition: opacity 0.2s ease;
}
.instagram__button:hover {
	opacity: 1;
	color: var(--color-white);
}
.instagram__button:hover img {
	opacity: 1;
}
.instagram__button.-x {
	background: var(--color-black);
}
.instagram__button.-facebook {
	background: #3B5998;
}
.instagram__button-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
}
.instagram__button-external {
	flex-shrink: 0;
	width: 15px;
	height: 16px;
}

@media (min-width: 960px) {
	.instagram-section {
		padding: 64px var(--container-padding);
	}
	#sb_instagram.sbi_mob_col_2 #sbi_images {
		overflow: hidden;
		gap: 0 !important;
		border-radius: calc(var(--radius-m) * 2) !important;
	}
	#sb_instagram #sbi_images {
		padding: 0 !important;
	}
	#sb_instagram .sbi_photo img {
		border-radius: 0 !important;
	}
	.instagram__buttons {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 40px;
		width: 100%;
		margin-top: 60px;
	}
}

/*--------------------------------------------------
	NEWS
--------------------------------------------------*/
.news-section {
	padding: 64px 0;
	background: var(--gray-100);
}
.news-section .section__inner {
	padding: 0 var(--container-padding);
}
.news-section .section__header {
	margin-bottom: 24px;
}
.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;
}
.news__view-all {
	justify-content: flex-end;
	margin-bottom: 0;
}
.news__view-all .section-btn__link {
	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;
}
.news__view-all .section-btn__link::after {
	width: 16px;
	height: 16px;
	background: url(../images/icon_arrow_white.svg) no-repeat center center / contain;
	content: '';
}

@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;
	}
	.news__view-all {
		position: absolute;
		top: 0;
		right: 40px;
		margin: 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;
	}
}

@media (min-width: 1136px) {
	.news__view-all {
		right: calc(50% - 528px);
	}
}

/*--------------------------------------------------
	お役立ち情報
--------------------------------------------------*/
.travel-smart-section {
	background: var(--color-yellow);
	padding: 64px var(--container-padding);
}
.travel-smart__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 330px;
	margin: 0 auto 20px;
}
.travel-smart__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 72px;
	background: var(--color-white);
	border-radius: var(--radius-s);
	text-decoration: none;
	color: var(--color-black);
	transition: background 0.2s ease;
}
.travel-smart__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 69px;
	height: 51px;
}
.travel-smart__text {
	width: 15em;
	margin-left: -1em;
	font-size: 0.875rem;
	line-height: 1.2;
	text-align: center;
}
.travel-smart__view-all {
	justify-content: flex-end;
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.travel-smart-section {
		padding: 80px 0;
	}
	.travel-smart-section .section__inner {
		padding: 0 var(--container-padding);
	}
	.travel-smart-section .section__title {
		flex-direction: row-reverse;
		align-items: center;
		gap: 20px;
	}
	.travel-smart__list {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
		gap: 24px;
		max-width: inherit;
	}
}

@media (min-width: 1024px) {
	.travel-smart {
		padding: 60px 4.102564vw;
	}
	.travel-smart-section .section__header {
		max-width: var(--max-content-width);
		margin-right: auto;
		margin-left: auto;
	}
	.section-heading__title {
		font-size: 2rem;
	}
	.section-heading__subtitle {
		font-size: 1.125rem;
	}
	.travel-smart__list {
		grid-template-columns: 1fr 1fr 1fr;
		max-width: var(--max-content-width);
		margin: 0 auto;
	}
	.travel-smart__link {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		height: 100px;
		padding: 0 0 10px;
	}
}


/*--------------------------------------------------
	バナーエリア（無限スクロール）
--------------------------------------------------*/
.banner {
	overflow: hidden;
	padding: 0;
}
.banner__inner {
	width: 100%;
}
.banner__slider {
	overflow: hidden;
}
.banner__slide {
	flex-shrink: 0;
	width: 152px;
}
.banner__link {
	display: block;
	width: 152px;
	line-height: 0;
}
.banner__link img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 19 / 16;
	object-fit: cover;
}

@media (min-width: 768px) {
	.banner__slide {
		width: 320px;
	}
}

/*--------------------------------------------------
	ボトムナビ
--------------------------------------------------*/
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 90;
	background: rgba(244, 244, 244, 0.92);
	padding: 12px var(--container-padding);
	border-radius: calc(var(--radius-m) * 2) calc(var(--radius-m) * 2) 0 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}
.bottom-nav.is-visible {
	transform: translateY(0);
}
.bottom-nav__list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 480px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.bottom-nav__item {
	flex: 1;
	text-align: center;
}
.bottom-nav__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	line-height: 1.2;
}
.bottom-nav__link::before {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: var(--radius-full);
	content: '';
}
.bottom-nav__link.-spot::before {
	background: var(--color-spot);
}
.bottom-nav__link.-experience::before {
	background: var(--color-experience);
}
.bottom-nav__link.-gourmet::before {
	background: var(--color-gourmet);
}
.bottom-nav__link.-souvenir::before {
	background: var(--color-souvenir);
}
.bottom-nav__link.-event::before {
	background: var(--color-event);
}
.bottom-nav__link.-course::before {
	background: var(--color-model-course);
}
.bottom-nav__link-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 2.4em;
	white-space: nowrap;
}

@media (min-width: 480px) {
	.bottom-nav {
		padding: 16px var(--container-padding);
	}
	.bottom-nav__link-label {
		height: auto;
	}
	.bottom-nav__link-label br {
		display: none;
	}
}

@media (min-width: 768px) {
	.bottom-nav {
		width: 80vw;
		max-width: 880px;
		margin: 0 auto;
	}
	.bottom-nav__list {
		gap: 8px;
	}
	.bottom-nav__link {
		font-size: 0.875rem;
	}
	.bottom-nav__link::before {
		width: 32px;
		height: 32px;
	}
}

/*--------------------------------------------------
	トップバナー
--------------------------------------------------*/
.top-banner {
	display: none;
	position: absolute;
	top: 140px;
	left: 0;
}
.top-banner__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: clamp(148px, 116px + 10vw, 260px);
	height: clamp(54px, 46px + 2.5vw, 82px);
	border: 1px solid var(--color-black);
	border-left: 0;
	background: var(--color-yellow);
	border-radius: 0 var(--radius-full) var(--radius-full) 0;
	font-size: clamp(1rem, 0.893rem + 0.54vw, 1.375rem);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.top-banner__logo {
	display: block;
	width: clamp(94px, 82px + 3.4vw, 132px);
	height: clamp(9px, 8px + 0.35vw, 13px);
	margin-bottom: 4px;
	background: url(../images/logo_mark.svg) no-repeat center center / contain;
	font-size: 0;
}
.top-banner__close {
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #2C2C2C;
	border-radius: var(--radius-full);
	background: #2C2C2C url(../images/icon_banner_close.svg) no-repeat center center / 11px 11px;
	font-size: 0;
	cursor: pointer;
}
.top-banner.is-hidden {
	transform: translateX(-110%);
	opacity: 0;
	pointer-events: none;
}
