@charset "UTF-8";

/*================================================================
# header
================================================================ */
header {
	opacity: 1;
	position: relative;
	visibility: visible;
	will-change: opacity;
	z-index: 9;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

header.is-hidden {
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
}

.gnav {
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
}

.sp-logo {
	display: none;
}

.gnav__logo {
	width: 20rem;
	margin: 0;
	position: absolute;
	top: 2.4rem;
	left: 2.4rem;
	z-index: 0;
}

.top-page .gnav__logo {
	display: none;
}

.gnav__logo a {
	display: block;
}

.gnav__logo a img {
	filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.5));
}

.gnav__block {
	width: 50%;
	margin: auto;
	padding: 0;
	list-style: none;
	border-radius: 0 0 4px 4px;
	background-color: rgba(232, 237, 242, 0.9);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	color: var(--black);
	z-index: 2;
	backdrop-filter: blur(5px);
}

.gnav__item .gnav__link {
	padding: 16px;
	position: relative;
	display: block;
	font-size: 14px;
	transition:
		color 0.3s ease,
		transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gnav__item .gnav__link::after {
	width: 0;
	height: 1px;
	background: currentColor;
	position: absolute;
	content: "";
	bottom: 8px;
	left: 50%;
	transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
	transform: translateX(-50%);
}

.gnav__item .gnav__link:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

.gnav__item .gnav__link:hover::after {
	width: 60%;
}

.gnav .tel {
	margin: 0;
	position: absolute;
	top: 1.6rem;
	right: 2.4rem;
	font-size: 12px;
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
	text-align: center;
	z-index: 0;
}

.gnav .number {
	margin: 0;
	font-size: 1rem;
	letter-spacing: 0.1em;
}

.gnav .tel .link {
	margin: 0 0.2rem;
	font-size: 24px;
	line-height: 1;
}

.lang-switch {
	margin: 0;
	position: absolute;
	top: 7.2rem;
	right: 6.4rem;
	display: flex;
	font-size: 12px;
	text-align: center;
	z-index: 0;
}

.lang-switch__link {
	padding: 8px 12px;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: var(--white);
	text-decoration: none;
	transition: .3s;
}

.lang-switch__link:hover {
	border-bottom: 1px solid var(--white);
	color: #fff;
}

.lang-switch__link.is-current {
	pointer-events: none;
	border-bottom: 1px solid var(--gray03);
	color: var(--gray03);
}

/* mega dropdown
------------------------------------------------------ */
.gnav__item--mega {
	position: relative;
}

.gnav__mega {
	width: 80vw;
	margin: 0;
	padding: 40px 0 64px;
	pointer-events: none;
	opacity: 0;
	background: var(--black);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	position: absolute;
	top: calc(100% + 12px);
	right: auto;
	left: 50%;
	visibility: hidden;
	color: var(--white);
	z-index: 1;
	transition: 0.25s;
	transform: translateX(-50%) translateY(-10px);
}

.gnav__mega::before {
	height: 40px;
	background: transparent;
	position: absolute;
	content: "";
	top: -24px;
	right: 0;
	left: 0;
}

.gnav__item--mega.is-force-close .gnav__mega {
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-10px);
}

.gnav__item--mega.is-force-close .gnav__mega,
.gnav__item--mega.is-force-close:hover .gnav__mega,
.gnav__item--mega.is-force-close:focus-within .gnav__mega {
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-10px);
}

.gnav__item--mega .gnav__link--mega {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.gnav__item--mega .gnav__link--mega::before {
	width: 5px;
	height: 5px;
	margin: auto;
	opacity: 0.6;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	position: absolute;
	content: "";
	right: 0;
	bottom: 5px;
	left: 0;
	display: inline-block;
	transition: 0.3s;
	transform: rotate(45deg);
}

.gnav__item--mega .gnav__link--mega:hover::after {
	display: none;
}

.gnav__item--mega:hover .gnav__mega,
.gnav__item--mega:focus-within .gnav__mega {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.gnav__item--mega.is-open .gnav__mega {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.gnav__megaTtl {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.02em;
}

.gnav__megaTtl a {
	padding: 0 4px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	transition: .35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gnav__megaTtl a:hover {
	transform: translateY(-2px);
}

.gnav__megaTtl a::before {
	width: 100%;
	height: 1px;
	background: var(--white);
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	transform: scaleX(1);
	transform-origin: center;
}

.gnav__megaTtl a:hover::before,
.gnav__megaTtl a:focus-visible::before {
	animation: underlineCenterWipe .55s ease-in-out forwards;
}

@keyframes underlineCenterWipe {
	0% {
		transform: scaleX(1);
		transform-origin: center;
	}

	10% {
		transform: scaleX(0);
		transform-origin: center;
	}

	55% {
		transform: scaleX(0);
		transform-origin: center;
	}

	100% {
		transform: scaleX(1);
		transform-origin: center;
	}
}

.gnav__megaGrid {
	width: 88%;
	margin: 16px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.gnav__item .gnav__megaCard {
	width: calc(100% / 4 - 24px);
	margin: 24px 0 0;
	padding: 0;
	display: block;
	color: inherit;
	text-decoration: none;
	transform: translateY(0);
}

.gnav__megaThumb {
	border-radius: 8px;
	overflow: hidden;
	transition: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
	aspect-ratio: 1 / 1;
}

.gnav__megaThumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:
		opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
	transform: scale(1);
}

.gnav__megaLabel {
	margin: 12px 0 0;
	font-size: 14px;
	text-align: center;
	letter-spacing: 0.03em;
	transition: 1.2s;
}

.gnav__megaCard:hover .gnav__megaLabel,
.gnav__megaCard:focus-visible .gnav__megaLabel {
	opacity: 0.7;
}

.gnav__megaCard:hover .gnav__megaThumb img,
.gnav__megaCard:focus-visible .gnav__megaThumb img {
	opacity: 0.7;
	transform: scale(1.06);
}

.gnav__megaLabel small {
	margin: 0 4px 0 0;
	font-size: 10px;
	color: var(--gold02);
}

/*================================================================
# footer
================================================================ */
.footer {
	margin: 160px 0 0;
	padding: 0;
	background: var(--back01) url(../img/decor01.png) no-repeat right bottom / 400px auto;
	color: var(--white);
}

.footer .map {
	width: 100%;
}

.footer__inner {
	width: calc(100% - 4.8rem);
	margin: auto;
	padding: 120px 0 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.footer__left {
	width: 240px;
	flex: 0 0 auto;
}

.footer__brand {
	margin: 0;
}

.footer__logo {
	width: 240px;
	display: block;
	transition: opacity 0.25s;
}

.footer__logo:hover {
	opacity: 0.8;
}

.footer__info {
	margin: 40px 0 0;
	opacity: 0.85;
	font-size: 12px;
	letter-spacing: 0.06em;
}

.footer__infoLine+.footer__infoLine {
	margin: 8px 0 0;
}

.footer__infoLink {
	display: inline-block;
	transition: opacity 0.25s;
}

.footer__infoLink:hover {
	opacity: 0.75;
}

.footer__nav {
	margin: 0;
	padding: 0 0 120px;
}

.footer__right {
	padding: 0;
	flex: 0 0 auto;
}

.footer__cap {
	margin: 0;
	opacity: 0.55;
	font-size: 10px;
	letter-spacing: 0.2em;
}

.footer__list {
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 32px;
}

.footer__item {
	margin: 0;
}

.footer__link {
	padding: 0 0 0 24px;
	position: relative;
	display: block;
	font-size: 16px;
	letter-spacing: 0.1em;
	transition: opacity 0.25s;
}

.footer__link.no-link {
	pointer-events: none;
}

.footer__link:hover {
	opacity: 0.75;
}

.footer__link::before {
	opacity: 0.75;
	position: absolute;
	content: "—";
	top: -1px;
	left: 0;
}

.footer__sub {
	margin: 16px 0 0 24px;
	padding: 0;
	list-style: none;
}

.footer__subItem+.footer__subItem {
	margin: 10px 0 0;
}

.footer__subLink {
	padding: 4px 0;
	opacity: 0.8;
	display: block;
	font-size: 13px;
	letter-spacing: 0.12em;
	transition: opacity 0.25s;
}

.footer__subLink:hover {
	opacity: 1;
}

.footer__subLink small {
	margin: 0 4px 0 0;
}

.footer__btn {
	margin: 16px 0 0;
	padding: 0 0 10px;
	border-bottom: 1px solid rgba(232, 237, 242, 0.35);
	display: inline-flex;
	align-items: center;
	letter-spacing: 0.12em;
	transition:
		opacity 0.25s,
		border-color 0.25s;
	gap: 16px;
}

.footer__btn:hover {
	opacity: 0.8;
	border-color: rgba(232, 237, 242, 0.6);
}

.footer__btnText {
	font-size: 20px;
}

.footer__btnArrow {
	width: 10px;
	height: 10px;
	border-top: 1px solid rgba(232, 237, 242, 0.8);
	border-right: 1px solid rgba(232, 237, 242, 0.8);
	transition: transform 0.25s;
	transform: rotate(45deg);
}

.footer__btn:hover .footer__btnArrow {
	transform: translateX(2px) rotate(45deg);
}

.footer__tel {
	margin: 54px 0 0;
}

.footer__telCap {
	margin: 0;
	opacity: 0.55;
	font-size: 12px;
	letter-spacing: 0.2em;
}

.footer__telNum {
	margin: 8px 0 0;
	font-size: 24px;
	letter-spacing: 0.05em;
}

.footer__telLink {
	display: block;
	transition: opacity 0.25s;
}

.footer__telLink:hover {
	opacity: 0.75;
}

.footer__copy {
	width: 100%;
	margin: 16px 0 0;
	padding: 0;
	opacity: 0.9;
	font-size: 10px;
	letter-spacing: 0.16em;
}

/* reserve-btn
------------------------------------------------------ */
.reserve-btn {
	width: 280px;
	margin: auto;
	position: fixed;
	right: 0;
	bottom: 6.4vh;
	left: 0;
	display: flex;
	justify-content: center;
	z-index: 3;
}

.reserve-btn__link {
	width: 280px;
	padding: 1.4rem 4rem 1.6rem;
	border-radius: 4px;
	background-color: var(--btn);
	box-shadow: 0 4px 24px rgba(21, 23, 25, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	transition: background-color 0.5s var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1));
	gap: 8px;
}

.reserve-btn__ja {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.reserve-btn__link:hover {
	background-color: var(--gold02);
}

/*================================================================
# 共通スタイル
================================================================ */
/* section
------------------------------------------------------ */
.section {
	padding: 160px 0 0;
	position: relative;
}

/* hero
------------------------------------------------------ */
.hero {
	width: 100%;
	margin: 160px 0 0;
	padding: 0 0 160px;
	position: relative;
	z-index: 1;
}

.hero__bar {
	width: 100%;
}

.hero__pagettl {
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
}

.hero__main {
	width: 100%;
	margin: 24px 0 0;
	padding: 0;
	position: relative;
}

.hero__main:before {
	height: 16px;
	margin: auto;
	background: url(../../common/img/decor08.png) repeat center top / contain;
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.hero__copy .decor06 {
	width: calc(402px / 5);
	opacity: 1;
	position: absolute;
	top: -90px;
	left: 36px;
	z-index: 1;
}

.hero__media {
	width: 100%;
	position: relative;
}

.hero__media img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 2.414 / 1;
}

.hero__copy {
	margin: 40px 0 0;
	padding: 0 40px;
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.hero__catch {
	flex: 0 0 auto;
	font-size: 24px;
	color: var(--white);
	letter-spacing: 0.02em;
}

.hero__lead {
	margin: 0 0 0 auto;
	padding: 0 0 0 80px;
	font-size: 14px;
	font-weight: 500;
	line-height: 2.4;
	letter-spacing: .02em;
}

/* breadcrumb
------------------------------------------------------ */
.breadcrumb {
	position: absolute;
	top: 64px;
	left: 2.4rem;
	z-index: 0;
}

.breadcrumb__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 12px;
}

.breadcrumb__item {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: var(--gray02);
	white-space: nowrap;
	letter-spacing: 0.04em;
}

.breadcrumb__item+.breadcrumb__item::before {
	width: 5px;
	height: 7px;
	margin: 0 10px 0 0;
	background-color: var(--gray03);
	content: "";
	display: block;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.breadcrumb__link {
	opacity: 1;
	color: var(--white);
	text-decoration: none;
	transition: 0.3s;
}

.breadcrumb__link:hover {
	color: var(--gold01);
}

/* anchor
------------------------------------------------------ */
.anchor {
	border-top: 1px solid var(--gray03);
	border-bottom: 1px solid var(--gray03);
}

.anchor-list {
	list-style: none;
	display: flex;
	justify-content: center;
}

.anchor-list a {
	padding: 32px 24px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	line-height: 1.75;
	color: var(--white);
	transition: 0.3s;
}

.anchor-list a:hover {
	color: var(--gold02);
}

.anchor-list a::after {
	width: 8px;
	height: 4px;
	margin: auto;
	background-color: var(--gold01);
	position: absolute;
	content: "";
	right: 0;
	bottom: 8px;
	left: 0;
	display: block;
	-webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.anchor-list small {
	margin: 0 8px 0 0;
	font-size: 12px;
	color: var(--gold02);
}

/* scene
------------------------------------------------------ */
.scene {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.scene__bg {
	width: 100%;
	margin: 120px 0 0;
	position: relative;
}

.scene__bg.top,
.top-page .scene__bg {
	margin: 0;
}

.scene__bg img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1.618 / 1;
}

.scene__bg.filter:after {
	width: 100%;
	height: 100%;
	background: linear-gradient(146deg, rgba(10, 14, 18, 0.62), rgba(10, 14, 18, 0.18) 45%, rgba(10, 14, 18, 0));
	position: absolute;
	content: "";
	top: 0;
	left: 0;
}

.reverse .scene__bg.filter:after {
	background: linear-gradient(-90deg, rgba(10, 14, 18, 0.62), rgba(10, 14, 18, 0.18) 45%, rgba(10, 14, 18, 0));
}

.scene__inner {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.scene .scene__text {
	padding: 140px 0 0;
	position: relative;
}

.scene .sauna-carousel__inner {
	position: relative;
}

.scene .decor05 {
	width: calc(402px / 4);
	position: absolute;
	top: 11vh;
	left: -128px;
	z-index: 1;
}

.scene .decor07 {
	width: calc(1820px / 3);
	opacity: 0.85;
	position: absolute;
	top: 320px;
	right: 0;
}

.reverse .scene__text {
	margin: 0 0 0 auto;
}

.scene__en {
	opacity: 0.92;
	font-size: 13px;
	font-weight: 600;
	color: var(--gray03);
	letter-spacing: 0.08em;
	text-transform: lowercase;
}

.scene__ttl {
	margin: 12px 0 40px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.4;
	text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.02em;
}

.scene__lead {
	margin: 24px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 2.2;
	text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.04em;
}

/* carousel
------------------------------------------------------ */
.carousel {
	width: 100%;
}

.carousel__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 120px 24px 0;
}

.carousel__ttl {
	font-size: 4.4rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--white);
	letter-spacing: 0.02em;
}

.carousel__lead {
	max-width: 720px;
	margin: 28px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 2.2;
	color: rgba(255, 255, 255, 0.92);
	letter-spacing: 0.04em;
}

.carousel__splide {
	margin: 100px 0 0;
	position: relative;
}

.carousel__splide .splide__track {
	margin-left: 12rem;
	overflow: visible;
}

.carousel__splide.is-initial .splide__track {
	margin-left: 12rem;
	position: relative;
}

.carousel__splide.is-initial .splide__track::before {
	width: 12rem;
	height: 100%;
	pointer-events: none;
	background: var(--back01);
	position: absolute;
	content: "";
	top: 0;
	left: -12rem;
	z-index: 2;
}

.carousel__splide .splide__list {
	align-items: stretch;
}

.carousel .card__media {
	width: 500px;
	height: 600px;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.carousel .card__media img {
	width: 500px;
	height: 600px;
	display: block;
	object-fit: cover;
}

.carousel .card__caption {
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	bottom: -2.4rem;
	left: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--white);
}

.carousel__splide .splide__arrow {
	width: 56px;
	height: 56px;
	opacity: 1;
	border: 1px solid var(--white);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45);
	transition: 0.3s;
	backdrop-filter: blur(10px);
}

.carousel__splide .splide__arrow--prev {
	display: none;
}

.carousel__splide .splide__arrow--next {
	right: 8rem;
}

.carousel__splide .splide__arrow:hover {
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.6);
	transform: translateY(-50%) scale(1.06);
}

.carousel__splide .splide__arrow svg {
	fill: var(--white);
}

/* half-slide
------------------------------------------------------ */
.half-slide {
	max-width: 1600px;
	margin: 120px auto 0;
	position: relative;
}

.half-slide.top {
	margin: 0 auto;
}

.half-slide .container {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.half-slide .slider-area {
	width: 100vw;
	margin-right: calc(50% - 50vw);
	position: relative;
}

.half-slider {
	position: relative;
}

.half-slider .splide__track {
	overflow: hidden;
}

.half-slider .splide__slide {
	aspect-ratio: 1 / 1;
}

.half-slider .splide__slide img {
	width: 100%;
	height: 100%;
	border-radius: 8px 0 0 8px;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.half-slider .splide__pagination {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 2.0rem;
	left: 50%;
	display: flex;
	transform: translateX(-50%);
	gap: 1.0rem;
}

.half-slider .splide__pagination__page {
	width: .8rem;
	height: .8rem;
	opacity: .45;
	border-radius: 999px;
	transform: none;
}

.half-slider .splide__pagination__page.is-active {
	width: 3.2rem;
	opacity: 1;
	transform: none;
}

/* heading
------------------------------------------------------ */
.heading01 {
	text-align: center;
}

.heading01 .en {
	margin: 0;
	font-size: 16px;
	color: var(--gold01);
	letter-spacing: 0.2em;
}

.heading01 .jp {
	margin: 24px 0 0;
	font-size: 28px;
	font-weight: 500;
}

.heading01 .copy {
	font-size: 16px;
	font-weight: 400;
	color: var(--gold02);
	letter-spacing: 0.2em;
}

.heading02 {
	font-size: 24px;
	font-weight: 500;
}

.heading02.center {
	text-align: center;
}

/* text
------------------------------------------------------ */
.text01 {
	margin: 40px 0 0;
	font-size: 15px;
	line-height: 2.4;
	letter-spacing: 0.08em;
}

.text01.center {
	text-align: center;
}

.text01.top {
	margin: 0;
}

.text02 {
	margin: 28px 0 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 2.4;
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.50);
	letter-spacing: 0.04em;
}

.text02.center {
	text-align: center;
}

.text02.top {
	margin: 0;
}

.warning {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.warning span {
	padding: 8px 24px 12px;
	border-bottom: 1px solid var(--gold02);
	color: var(--gold02);
	text-align: center;
	letter-spacing: .1em;
}

/* btn
------------------------------------------------------ */
.btn {
	margin: 40px auto 0;
	display: flex;
	z-index: 3;
}

.btn.center {
	justify-content: center;
}

.btn__link {
	padding: 18px 40px 21px 48px;
	border-radius: 4px;
	background-color: var(--btn);
	box-shadow: 0 4px 24px rgba(21, 23, 25, 0.6);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.08em;
	transition: background-color 0.5s var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1));
	gap: 16px;
}

.btn__link::after {
	width: 10px;
	height: 10px;
	opacity: 0.9;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transition: transform 0.4s var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)),
		opacity 0.4s var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1));
	transform: translateY(1px) rotate(-45deg);
}

.btn__link:hover {
	background-color: var(--gold02);
}

.btn__link:hover::after {
	opacity: 1;
	animation: 0.9s var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)) infinite;
	transform: translate(4px, 1px) rotate(-45deg);
}

.btn__link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

	.btn__link,
	.btn__link::after {
		transition: none;
	}

	.btn__link:hover::after {
		animation: none;
	}
}

/* accordion
------------------------------------------------------ */
.accordion {
	margin: 40px 0 0;
}

.accordion__head {
	margin: 0;
}

.accordion__trigger {
	width: 100%;
	padding: 22px 18px;
	cursor: pointer;
	border: 0;
	background: var(--gray04);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: inherit;
	appearance: none;
	transition: .3s;
	gap: 12px;
}

.accordion__title {
	font-size: 15px;
	letter-spacing: 0.06em;
}

.accordion__trigger::before {
	top: 0;
}

.accordion__trigger::after {
	bottom: 0;
}

.accordion__item.is-open .accordion__trigger::before,
.accordion__item.is-open .accordion__trigger::after {
	opacity: 1;
}

.accordion__chev {
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--gold01);
	border-bottom: 2px solid var(--gold01);
	flex: 0 0 auto;
	transition: transform 360ms cubic-bezier(.2, .8, .2, 1);
	transform: rotate(45deg);
}

.accordion__item.is-open .accordion__chev {
	transform: rotate(225deg);
}

.accordion__trigger:focus-visible {
	outline: 2px solid rgba(201, 162, 74, 0.6);
	outline-offset: 4px;
}

.accordion__panel {
	height: 0;
	padding: 0;
	overflow: hidden;
	transition:
		height 520ms cubic-bezier(.2, .8, .2, 1);
}

.accordion__panel .container {
	margin: 0;
	padding: 24px 0;
	display: flex;
	gap: 10px;
}

.accordion__inner {
	padding: 24px 0;
}

.accordion__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	gap: 10px;
}

.accordion__thumb {
	margin: 0;
	opacity: 0;
	filter: saturate(0.95);
	transition:
		opacity 420ms ease,
		transform 520ms cubic-bezier(.2, .8, .2, 1),
		filter 520ms ease;
	transition-delay: .55s;
	transform: translateY(10px);
}

.accordion__item.is-open .accordion__thumb {
	opacity: 1;
	filter: saturate(1);
	transform: translateY(0);
}

.accordion__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	aspect-ratio: 1 / 1;
}

.accordion__item.is-open .accordion__thumb img {
	transform: scale(1);
}

.accordion__texts {
	margin: 0;
	padding: 12px 0;
	border-bottom: 1px solid var(--gray03);
}

.accordion__lead,
.accordion__note {
	margin: 0;
	opacity: 0;
	line-height: 1.9;
	transition:
		opacity 420ms ease,
		transform 520ms cubic-bezier(.2, .8, .2, 1);
	transition-delay: .3s;
	transform: translateY(8px);
}

.accordion__lead {
	margin: 0;
	padding: 0 0 2px 16px;
	border-left: 3px solid var(--gray01);
	font-size: 16px;
	letter-spacing: 0.02em;
}

.accordion__note {
	margin: 8px 0 0;
	opacity: 0;
	font-size: 14px;
}

.accordion__item.is-open .accordion__lead,
.accordion__item.is-open .accordion__note {
	opacity: 1;
	transform: translateY(0);
}

.accordion__note .number {
	margin: 0 4px 0 0;
}