@charset "UTF-8";

/*================================================================
# header
================================================================ */
header {
	position: relative;
	z-index: 10;
}

header .wrap {
	width: 100%;
}

.header__logo {
	width: 160px;
	margin: 0;
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 0;
}

.header__logo a {
	display: block;
}

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

.lang-switch {
	margin: 0;
	position: absolute;
	top: 4rem;
	left: 4.8rem;
	display: flex;
	font-size: 12px;
	text-align: center;
	z-index: 0;
	gap: 8px;
}

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

/*================================================================
# gnav (SP only)
================================================================ */
.gnav {
	width: 100vw;
	height: 100dvh;
	padding: 100px 40px;
	opacity: 0;
	background: var(--black);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	visibility: hidden;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 9;
	transition:
		opacity 0.4s ease,
		transform 0.4s ease,
		visibility 0.4s;
	transform: translateY(-20%);
}

.gnav.is-open {
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
	transform: translateY(0);
}

.gnav__toggle {
	width: 48px;
	height: 3.2rem;
	cursor: pointer;
	border: none;
	background: transparent;
	position: fixed;
	top: 2.4rem;
	right: 1.6rem;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	z-index: 10;
	-webkit-tap-highlight-color: transparent;
}

.gnav__toggle span {
	width: 100%;
	height: 1px;
	background: var(--white);
	display: block;
	transition: 0.3s ease;
	transform-origin: left;
}

.gnav__toggle span:nth-child(2) {
	width: 60%;
}

.gnav__toggle.is-open span:nth-child(1) {
	transform: rotate(24deg);
}

.gnav__toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.gnav__toggle.is-open span:nth-child(3) {
	transform: rotate(-24deg);
}

.gnav__block {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gnav__item {
	width: 100%;
}

.gnav__link {
	padding: 1.6rem 0;
	border-bottom: 1px solid var(--gray03);
	display: block;
	color: var(--white);
	text-decoration: none;
}

/*================================================================
# mega (SP accordion)
================================================================ */
.gnav__item--mega {
	position: static;
}

.gnav__mega {
	width: 100%;
	max-height: 0;
	margin: 0;
	padding: 0;
	pointer-events: auto;
	opacity: 1;
	background: transparent;
	position: static;
	top: auto;
	right: auto;
	left: auto;
	visibility: visible;
	overflow: hidden;
	color: var(--white);
	transition:
		max-height 0.35s ease,
		padding 0.35s ease;
	transform: none;
}

.gnav__item--mega.is-open .gnav__mega {
	max-height: 1200px;
	padding: 16px 0 24px;
}

.gnav__megaHead {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
}

.gnav__link--mega {
	width: 100%;
	padding-right: 56px;
}

.gnav__megaToggle {
	width: 44px;
	height: 44px;
	padding: 0;
	cursor: pointer;
	border: 0;
	background: transparent;
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	z-index: 2;
	transform: translateY(-50%);
	-webkit-tap-highlight-color: transparent;
}

.gnav__megaToggleIcon {
	width: 18px;
	height: 18px;
	position: relative;
	display: inline-block;
}

.gnav__megaToggleIcon::before,
.gnav__megaToggleIcon::after {
	width: 18px;
	height: 1px;
	margin: auto;
	opacity: 0.9;
	background: currentColor;
	position: absolute;
	content: "";
	inset: 0;
}

.gnav__megaToggleIcon::after {
	transition: transform 0.25s ease;
	transform: rotate(90deg);
}

.gnav__item--mega.is-open .gnav__megaToggleIcon::after {
	transform: rotate(0deg);
}

.gnav__megaTtl {
	display: none;
}

.gnav__megaGrid {
	margin: 0 0 0 -16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

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

.gnav__megaThumb {
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.gnav__megaThumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
}

.gnav__item .gnav__megaGrid .gnav__megaCard:first-child {
	width: calc(100% - 16px);
}

.gnav__item .gnav__megaGrid .gnav__megaCard:first-child .gnav__megaThumb {
	aspect-ratio: inherit;
}

.gnav__item .gnav__megaGrid .gnav__megaCard:first-child .gnav__megaThumb img {
	height: 180px;
}

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

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

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

.footer .map {
	width: 100%;
}

.footer__inner {
	width: calc(100% - 4.8rem);
	margin: auto;
	padding: 80px 0;
}

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

.footer__brand {
	margin: auto;
}

.footer__logo {
	width: 260px;
	max-width: 100%;
	margin: auto;
	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: 40px 0 0;
	padding: 0 40px;
}

.footer__right {
	margin: 64px auto 0;
	padding: 0;
	text-align: center;
}

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

.footer__item {
	margin: 0;
}

.footer__link {
	padding: 12px 0 12px 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: 11px;
	left: 0;
}

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

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

.footer__subLink {
	padding: 8px 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: 22px;
}

.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: 26px;
	letter-spacing: 0.05em;
}

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

.footer__telLink:hover {
	opacity: 0.75;
}

.footer__copy {
	width: 100%;
	margin: 70px 0 0;
	padding: 0 0 28px;
	opacity: 0.9;
	font-size: 10px;
	text-align: center;
	letter-spacing: 0.16em;
}

/* 下固定fixed-bottom
------------------------------------------------------ */
.fixed-bottom {
	width: 100%;
	margin: auto;
	padding: 0 24px;
	position: fixed;
	right: 0;
	bottom: 24px;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 8;
}

.reserve-btn {
	padding: 14px 32px 16px;
	border-radius: 4px;
	background-color: var(--btn);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	color: var(--white);
	text-align: center;
	letter-spacing: 0.08em;
	gap: 4px;
	backdrop-filter: blur(5px);
}

.access-btn,
.phone-btn {
	width: 48px;
	height: 48px;
	border: 1px solid var(--gray03);
	border-radius: 4px;
	background: rgba(18, 32, 63, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
}

.access-btn img,
.phone-btn img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

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

/* hero
------------------------------------------------------ */
.hero {
	width: 100%;
	margin: 0;
	padding: 80px 0;
	position: relative;
}

.hero__bar {
	width: 100%;
}

.hero__pagettl {
	font-size: 28px;
	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: 8px;
	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 / 8);
	opacity: 1;
	position: absolute;
	top: -95px;
	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: 64px 0 0;
	padding: 0 40px;
	position: relative;
}

.hero__catch {
	font-size: 20px;
	line-height: 2;
	color: var(--white);
	letter-spacing: 0.02em;
}

.hero__lead {
	margin: 32px 0 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 2.8;
	letter-spacing: 0.02em;
}

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

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

.breadcrumb__item {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	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);
}

.anchor-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.anchor-list li:nth-child(odd) {
	border-right: 1px solid var(--gray03);
}

.anchor-list a {
	padding: 12px 16px 20px;
	border-bottom: 1px solid var(--gray03);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 14px;
	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;
	display: block;
	font-size: 12px;
	line-height: 12px;
	color: var(--gold02);
}

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

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

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

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

.scene__inner {
	width: 100%;
	padding: 0;
}

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

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

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

.scene .decor07 {
	width: 88%;
	opacity: 0.85;
	position: absolute;
	top: 0;
	right: 0;
}

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

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

.scene__ttl {
	margin: 12px 0 40px;
	font-size: 28px;
	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: 13px;
	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: 64px 0 0;
	position: relative;
}

.carousel__splide .splide__track {
	margin-left: 24px;
	overflow: visible;
}

.carousel__splide.is-initial .splide__track {
	margin-left: 24px;
	position: relative;
}

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

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

.carousel .card__media {
	width: 240px;
	height: 300px;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

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

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

.carousel__splide .splide__arrow {
	width: 44px;
	height: 44px;
	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: 2.4rem;
}

.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: 64px auto 0;
	position: relative;
}

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

.half-slide .container {
	display: grid;
	gap: 80px;
}

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

.half-slider {
	width: 88%;
	margin: 0 auto;
	position: relative;
}

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

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

.half-slider .splide__slide img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	object-fit: cover;
	aspect-ratio: 240 / 300;
}

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

.half-slider .splide__pagination__page {
	width: 5px;
	height: 5px;
	opacity: 0.45;
	border-radius: 999px;
	transform: none;
}

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

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

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

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

.heading01 .copy {
	font-size: 14px;
	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: 13px;
	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.5);
	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);
	font-size: 14px;
	color: var(--gold02);
	text-align: center;
	letter-spacing: 0.1em;
}

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

.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: 0.3s;
	gap: 12px;
}

.accordion__title {
	font-size: 14px;
	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;
	margin: auto;
	border-right: 2px solid var(--gold01);
	border-bottom: 2px solid var(--gold01);
	position: absolute;
	top: 0;
	right: 16px;
	bottom: 0;
	transition: transform 360ms cubic-bezier(0.2, 0.8, 0.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(0.2, 0.8, 0.2, 1);
}

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

.accordion__inner {
	padding: 24px 0;
}

.accordion__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.accordion__thumb {
	margin: 0;
	opacity: 0;
	filter: saturate(0.95);
	transition:
		opacity 420ms ease,
		transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
		filter 520ms ease;
	transition-delay: 0.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: 8px 0 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(0.2, 0.8, 0.2, 1);
	transition-delay: 0.3s;
	transform: translateY(8px);
}

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

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

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