/* リキッドレイアウト対応 */

body {
	background-color: #F1F1E9;
	color: #000000;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 16px;
	font-size: 4.1025641026vw;
}

/* ヘッダー固定した場合、ページ内リンクの遷移先がズレる問題解消 */

/* 画面の高さに合わせてフッターを下に広げる */

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

footer {
	margin-top: auto;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */

body.fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

/* pcの電話番号発信対応 */

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */

/* https://gist.github.com/roatnek/c24d5257c4f6d5b1ef0f2328609a0221 */

.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.wbr {
	display: inline-block;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-webkit-text-size-adjust: 100%;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed; /* 上記のSafari用 */
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: inline-block;
	max-width: 100%;
	vertical-align: bottom;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

address {
	font-style: normal;
}

summary {
	cursor: pointer;
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary::marker {
	display: none;
}

/* js-triggerと一緒に使う */

/* =========================================== */

/*                 inview                      */

/* =========================================== */

.inview {
	opacity: 0;
	transform: translateY(30px);
	transition: transform 2s, opacity 2s;
}

.inview.show {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================== */

/*                slide-up                     */

/* =========================================== */

.slide-up {
	display: inline-block;
	overflow: hidden;
}

.slide-up * {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
}

.slide-up.show * {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: slideInFromBottom;
}

/* =========================================== */

/*               anime-zoom                    */

/* =========================================== */

.anime-zoom__img {
	overflow: hidden;
}

.anime-zoom:hover .anime-zoom__img img {
	transform: scale(1.2, 1.2);
}

/* =========================================== */

/*              anime-scale-in                 */

/* =========================================== */

.anime-scale-in {
	overflow: hidden;
}

.anime-scale-in img {
	animation-duration: 1.2s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
	opacity: 0;
	transform: scale(1.1);
}

.anime-scale-in.is-inview img {
	animation-name: scaleIn;
}

.breadcrumb {
	width: 100%;
}

.breadcrumb__inner {
	align-items: center;
	color: #000000;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	gap: 0.9375rem;
	letter-spacing: 0.024375rem;
	line-height: 1;
	text-align: right;
	white-space: nowrap;
}

.breadcrumb__inner > * {
	align-items: center;
	display: inline-flex;
}

.breadcrumb__inner a {
	-webkit-text-decoration: none;
	color: #000000;
	text-decoration: none;
	transition: opacity 0.3s;
}

.breadcrumb__inner span {
	color: #000000;
}

.breadcrumb__inner .breadcrumb_last,
.breadcrumb__inner span.breadcrumb_last {
	font-weight: 500;
}

.breadcrumb__inner .breadcrumb_sep,
.breadcrumb__inner span.breadcrumb_sep {
	align-items: center;
	display: inline-flex;
	flex-shrink: 0;
	height: 0.5625rem;
	justify-content: center;
	margin: 0;
	width: 0.5625rem;
}

.breadcrumb__inner .breadcrumb_sep::after,
.breadcrumb__inner span.breadcrumb_sep::after {
	background-image: url("../img/common/icon-arrow-right.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 0.5625rem;
	transform: rotate(90deg);
	width: 0.5625rem;
}

.c-btn-1 {
	width: 100%;
}

.c-btn-1.-center {
	text-align: center;
}

.c-btn__link {
	align-items: center;
	background-color: #000000;
	border-radius: 0.1875rem;
	color: #fff;
	display: inline-flex;
	gap: 0.5rem;
	height: 4.375rem;
	justify-content: center;
	transition: all 0.3s;
	width: 100%;
}

.c-btn__link::before {
	-webkit-mask-image: url("../img/common/icon-thunder.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1.375rem;
	mask-image: url("../img/common/icon-thunder.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: 0.1s;
	width: 0.875rem;
}

.c-btn__text {
	color: currentColor;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	transition: inherit;
}

.c-faq__list {
	display: grid;
}

.c-faq__item {
	border: 0.0625rem solid #000000;
	display: flex;
	flex-direction: column;
	padding: 1.875rem;
	transition: all 0.3s ease;
}

.c-faq__item:not(:first-child) {
	border-top: none;
}

.c-faq__item[open] {
	background-color: #fff;
	border-color: #000000;
}

.c-faq__item[open] .c-faq__answer {
	display: block;
}

.c-faq__item[open] .c-faq__icon {
	background-color: #F1F1E9;
}

.c-faq__item[open] .c-faq__icon-line.-vertical {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg);
}

.c-faq__question {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 1fr auto;
	justify-content: space-between;
	width: 100%;
}

.c-faq__question-inner {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 0.9375rem;
}

.c-faq__q-label,
.c-faq__a-label {
	align-items: center;
	color: #000000;
	display: flex;
	flex-shrink: 0;
	font-size: 1.5rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.06em;
	line-height: 1;
	padding-bottom: 0.25rem;
	width: 1.1875rem;
}

.c-faq__question-text {
	color: #000000;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.c-faq__toggle {
	align-items: center;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	height: 1.875rem;
	justify-content: center;
	padding: 0;
	pointer-events: none;
	position: relative;
	width: 1.875rem;
}

.c-faq__icon {
	background-color: #fff;
	border-radius: 50%;
	height: 100%;
	transition: all 0.3s ease;
	width: 100%;
}

.c-faq__icon-line {
	background-color: transparent;
	border-radius: 0.0625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.c-faq__icon-line.-horizontal {
	border-top: 0.0625rem solid #000000;
	height: 0;
	width: 0.625rem;
}

.c-faq__icon-line.-vertical {
	border-left: 0.0625rem solid #000000;
	height: 0.625rem;
	opacity: 1;
	width: 0;
}

.c-faq__answer {
	display: none;
}

.c-faq__answer-inner {
	align-items: flex-start;
	display: flex;
	gap: 0.9375rem;
	padding-top: 1.25rem;
}

.c-faq__answer-texts {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.c-faq__answer-text {
	color: #000000;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.c-heading {
	padding-bottom: 0.125rem;
	padding-top: 0.125rem;
}

.c-heading.-center {
	text-align: center;
}

.c-heading__text {
	align-items: center;
	display: inline-flex;
	height: 2rem;
	justify-content: center;
	min-width: 7.375rem;
	padding: 0 1.75rem 0.125rem;
	position: relative;
	z-index: 1;
}

.c-heading__text::before {
	background-color: #000000;
	clip-path: polygon(0.9375rem 0, calc(100% - 0.9375rem) 0, 100% 50%, calc(100% - 0.9375rem) 100%, 0.9375rem 100%, 0% 50%);
	content: "";
	height: calc(100% + 0.25rem);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 0.375rem);
	z-index: -1;
}

.c-heading__text::after {
	background-color: #FFF352;
	clip-path: polygon(0.8125rem 0, calc(100% - 0.8125rem) 0, 100% 50%, calc(100% - 0.8125rem) 100%, 0.8125rem 100%, 0% 50%);
	content: "";
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 0;
}

.c-heading__text span {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.c-notes {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.c-notes__note {
	align-items: flex-start;
	color: #000000;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	gap: 0.3125rem;
	letter-spacing: 0.02625rem;
	line-height: 1.6;
	margin: 0;
	width: 100%;
}

.c-notes__note-mark {
	flex-shrink: 0;
	white-space: nowrap;
}

.c-notes__note-text {
	flex: 1;
	min-width: 0;
}

/* =========================================== */

/*                    cta                      */

/* =========================================== */

.cta {
	background-color: transparent;
	position: relative;
	z-index: 1;
}

.cta--layout {
	padding-bottom: 6.875rem;
	padding-top: 6.875rem;
}

.cta__heading {
	margin-bottom: 1.875rem;
}

.cta__catch-copy span,
.cta__text span {
	background-color: #fff;
	display: inline-block;
	padding-left: 0.3125rem;
}

.cta__catch-copy {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.6;
	margin-bottom: 0.9375rem;
}

.cta__text {
	display: block;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	margin-bottom: 1.875rem;
}

.cta__btn a {
	align-items: center;
	background-color: #fff;
	border-radius: 0.1875rem;
	display: inline-grid;
	gap: 0.625rem;
	grid-template-columns: auto 8.4375rem;
	justify-content: center;
	padding: 1.5rem 1.875rem;
}

.cta__btn a img {
	aspect-ratio: 42/30;
	filter: invert(100%);
	height: 2rem;
	width: 2.375rem;
}

.cta__btn-text {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

/* =========================================== */

/*                   Footer                    */

/* =========================================== */

.footer {
	background-color: #252525;
	clip-path: polygon(0 1.875rem, 100% 0, 100% 100%, 0% 100%);
	color: #fff;
	padding-bottom: 3.75rem;
	padding-top: 10rem;
	position: relative;
}

.footer__inner {
	margin-bottom: 3.75rem;
}

/* =========================================== */

/*          Footer Left (Company Info)         */

/* =========================================== */

.footer__left {
	margin-bottom: 2.5rem;
}

.footer__company-title {
	color: #FFF352;
	font-size: 1.625rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.footer__address {
	font-size: 0.9375rem;
	letter-spacing: 0.03em;
	line-height: 1.6;
	margin-bottom: 1.875rem;
}

.footer__hours {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: left;
}

.footer__hours-item {
	grid-gap: 0.1875rem;
	align-items: center;
	display: grid;
	gap: 0.1875rem;
}

.footer__hours-item-wrap {
	grid-gap: 0.3125rem;
	align-items: center;
	display: grid;
	gap: 0.3125rem;
	grid-template-columns: auto 1fr;
}

.footer__hours-icon {
	-webkit-mask-image: url("../img/common/icon-thunder.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #FFF352;
	display: inline-block;
	flex-shrink: 0;
	height: 1.1875rem;
	mask-image: url("../img/common/icon-thunder.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.75rem;
}

.footer__hours-text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.footer__hours-note {
	align-items: baseline;
	display: grid;
	font-size: 0.8125rem;
	grid-template-columns: auto 1fr;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.footer__hours-note::before {
	content: "*";
	display: inline-block;
}

/* =========================================== */

/*          Footer Right (Nav & SNS)           */

/* =========================================== */

.footer__right {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
}

.footer__nav {
	margin-bottom: 1.875rem;
	width: 100%;
}

.footer__nav-items {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.4375rem;
}

.footer__nav-item {
	width: 100%;
}

.footer__nav-item a {
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.footer__sns-list {
	grid-gap: 0.9375rem;
	align-items: center;
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: repeat(2, auto);
}

.footer__sns-item a {
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #fff;
	display: inline-block;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background-color 0.3s;
}

.footer__sns-item a.-mail {
	-webkit-mask-image: url("../img/common/icon-mail.svg");
	height: 1.125rem;
	mask-image: url("../img/common/icon-mail.svg");
	width: 1.5625rem;
}

.footer__sns-item a.-x {
	-webkit-mask-image: url("../img/common/icon-x.svg");
	height: 1.4375rem;
	mask-image: url("../img/common/icon-x.svg");
	width: 1.4375rem;
}

/* =========================================== */

/*                Footer Copyright             */

/* =========================================== */

.footer__copyright {
	text-align: center;
}

.footer__copyright small {
	display: inline-block;
	font-size: 0.6875rem;
	letter-spacing: 0.03em;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header {
	background-color: #FFF352;
	height: 4.6875rem;
	opacity: 0;
	position: absolute;
	transition: background-color 0.3s ease-in-out, opacity 0.5s ease-out, visibility 0.5s ease-out;
	visibility: hidden;
	width: 100%;
	z-index: 200;
}

.header.is-visible {
	opacity: 1;
	visibility: visible;
}

.header.is-fixed {
	left: 0;
	position: fixed;
	top: 0;
}

.header.is-sub-page {
	background-color: #F1F1E9;
	left: 0;
	opacity: 1;
	position: fixed;
	top: 0;
	visibility: visible;
}

.header__inner {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: max-content auto;
	height: inherit;
	justify-content: space-between;
	padding-left: 0.625rem;
}

.header__logo {
	align-items: center;
	display: flex;
	height: inherit;
	justify-items: center;
	place-items: center;
}

.header__logo-link {
	width: 5.9375rem;
}

.header__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 260/163;
	object-fit: cover;
}

.header__btns {
	display: flex;
	height: inherit;
}

/* =========================================== */

/*                  Reserve Button              */

/* =========================================== */

.header__reserve-btn {
	height: inherit;
	width: 4.4375rem;
}

.header__reserve-btn a {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.1875rem;
	height: inherit;
	justify-content: center;
}

.header__reserve-btn a .header__reserve-text {
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	line-height: 1.2;
	text-align: center;
}

.header__reserve-btn a::before {
	-webkit-mask-image: url("../img/common/icon-reserve.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1.875rem;
	mask-image: url("../img/common/icon-reserve.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 2.625rem;
}

/* =========================================== */

/*                  PC Header                  */

/* =========================================== */

.header__pc-nav {
	display: none;
}

/* =========================================== */

/*                  SP Header                  */

/* =========================================== */

.header__drawer {
	background-color: #F1F1E9;
	background-image: url("../img/common/header-drawer-bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: none;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto;
	padding: 9.0625rem 2.5rem 6.25rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.header__drawer-logo {
	margin-bottom: 2.5rem;
	text-align: center;
}

.header__drawer-logo img {
	-o-object-fit: cover;
	aspect-ratio: 260/163;
	object-fit: cover;
	width: 11.25rem;
}

.header__sp-nav-items {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 3.75rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.header__sp-nav-item a {
	grid-gap: 0.5rem;
	align-items: center;
	display: grid;
	font-size: 1.25rem;
	font-weight: 500;
	gap: 0.5rem;
	grid-template-columns: auto 1fr;
	letter-spacing: 0.03em;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.header__sp-nav-item a::before {
	background-image: url("../img/common/icon-thunder-color.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.4375rem;
	width: 0.9375rem;
}

.header__drawer-btn a {
	grid-gap: 0.5rem;
	align-items: center;
	background-color: #000000;
	border-radius: 0.1875rem;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: 2.625rem auto;
	justify-content: center;
	padding: 1.5rem;
}

.header__drawer-btn a img {
	-o-object-fit: cover;
	aspect-ratio: 42/30;
	object-fit: cover;
}

.header__drawer-btn a .header__drawer-btn-text {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-align: center;
}

/* =========================================== */

/*                 Hamburger                   */

/* =========================================== */

.header__hamburger {
	align-items: center;
	background-color: #000000;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	height: inherit;
	justify-content: center;
	width: 100%;
	width: 5.125rem;
	z-index: 50;
}

.header__hamburger span {
	display: block;
	transition: 0.5s;
}

.header__hamburger span:nth-of-type(1):before {
	background-image: url("../img/common/icon-thunder.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.375rem;
	transition: 0.3s;
	vertical-align: bottom;
	width: 0.875rem;
}

.header__hamburger span:nth-of-type(2) {
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.header__hamburger span:nth-of-type(2)::before {
	content: attr(data-open-text);
	transition: 0.3s;
}

.header__hamburger.is-open span:nth-of-type(1):before {
	background-image: url("../img/common/icon-close.svg");
	height: 1.375rem;
	width: 1.375rem;
}

.header__hamburger.is-open span:nth-of-type(2)::before {
	content: attr(data-close-text);
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 100%;
}

.page-fv {
	background-color: #F1F1E9;
	margin-bottom: 3.75rem;
	margin-top: 2.1875rem;
	overflow: hidden;
}

.page-fv__content {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	width: 100%;
}

.page-fv__main {
	display: contents;
}

.page-fv__title-area {
	align-items: center;
	display: flex;
}

.page-fv__title-wrap {
	align-items: center;
	display: flex;
	gap: 0.9375rem;
}

.page-fv__icon {
	flex-shrink: 0;
	height: 3.4375rem;
	position: relative;
	width: 3.75rem;
}

.page-fv__icon img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.page-fv__title {
	align-items: start;
	display: flex;
	flex-direction: column;
	font-weight: 500;
	justify-content: center;
	line-height: 1.6;
	text-align: center;
	white-space: nowrap;
}

.page-fv__title-ja {
	display: block;
	font-size: 1.5rem;
	letter-spacing: 0.03em;
}

.page-fv__title-en {
	display: block;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
}

.page-fv__img {
	background-color: #fff;
	height: 15.625rem;
	min-height: 15.625rem;
	overflow: hidden;
	position: relative;
}

.page-fv__img img {
	-o-object-fit: cover;
	-o-object-position: 50% 50%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
}

.page-fv__description {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

/* =========================================== */

/*               パララックス背景               */

/* =========================================== */

.parallax-bg {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	height: 100svh; /* iOSの"最小"表示領域基準 */
	height: 100dvh; /* いける環境なら"動的"表示領域 */
	left: 0;
	position: fixed;
	top: 0;
	transform: translateZ(0);
	transition: background-image 0.5s ease-in-out;
	width: 100%;
	will-change: transform;
	z-index: -1;
}

.parallax-bg--image-1 {
	background-image: url("../img/common/sp/parallax-bg-1.webp");
}

.parallax-bg--image-2 {
	background-image: url("../img/common/sp/parallax-bg-2.webp");
}

.section-wrap {
	background-color: #F1F1E9;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.875rem), 0% 100%);
	padding-top: 4.6875rem;
	position: relative;
	z-index: 1;
}

.error--layout {
	margin-top: 6.25rem;
	padding-bottom: 10.625rem;
}

.error__content {
	grid-gap: 1.25rem;
	align-items: center;
	background-color: #fff;
	border: 0.0625rem solid #000000;
	border-radius: 0.1875rem;
	display: grid;
	gap: 1.25rem;
	padding: 2.5rem 1.875rem;
	width: 100%;
}

.error__heading {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	text-align: center;
}

.error__text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.error__btn {
	margin-top: 1.25rem;
}

/* =========================================== */

/*                 recording-price              */

/* =========================================== */

.recording-price--layout {
	margin-bottom: 8.75rem;
}

.recording-price__heading {
	margin-bottom: 3.75rem;
}

.recording-price__content {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	width: 100%;
}

.recording-price__table {
	display: grid;
}

.recording-price__term,
.recording-price__description {
	align-items: center;
	border-left: 0.0625rem solid #000000;
	border-right: 0.0625rem solid #000000;
	border-top: 0.0625rem solid #000000;
	display: flex;
	font-size: 1.125rem;
	font-weight: 500;
	height: 4.375rem;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1.4;
	text-align: center;
}

.recording-price__description {
	background-color: #fff;
}

.recording-price__description:last-of-type {
	border-bottom: 0.0625rem solid #000000;
}

/* =========================================== */

/*                 recording-equipment          */

/* =========================================== */

.recording-equipment--layout {
	margin-bottom: 8.75rem;
}

.recording-equipment__heading {
	margin-bottom: 3.75rem;
}

.recording-equipment__content {
	grid-gap: 1.25rem;
	align-items: center;
	background-color: #fff;
	border: 0.0625rem solid #000000;
	border-radius: 0.1875rem;
	display: grid;
	gap: 1.25rem;
	padding: 2.5rem 1.875rem;
	width: 100%;
}

.recording-equipment__title {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	text-align: center;
}

.recording-equipment__description {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	width: 100%;
}

.recording-equipment__text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.recording-equipment__notes {
	width: 100%;
}

.recording-equipment__btn {
	margin-top: 1.25rem;
}

/* =========================================== */

/*                 recording-engineer           */

/* =========================================== */

.recording-engineer--layout {
	margin-bottom: 8.75rem;
}

.recording-engineer__heading {
	margin-bottom: 3.75rem;
}

.recording-engineer__content {
	grid-gap: 3.75rem;
	background-color: #fff;
	border: 0.0625rem solid #000000;
	display: grid;
	gap: 3.75rem;
	padding: 3.75rem 1.875rem 1.875rem;
}

.recording-engineer__profile {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	width: 100%;
}

.recording-engineer__img {
	background-color: #e8e8e8;
	flex-shrink: 0;
	height: 17.5rem;
	overflow: hidden;
	width: 14.375rem;
}

.recording-engineer__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.recording-engineer__info {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
}

.recording-engineer__name-info {
	grid-gap: 0.3125rem;
	display: grid;
	gap: 0.3125rem;
}

.recording-engineer__label {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.recording-engineer__name {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	margin: 0;
}

.recording-engineer__description {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.recording-engineer__spotify {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.recording-engineer__works {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
}

.recording-engineer__works-title {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	text-align: center;
}

.recording-engineer__works-list {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, 1fr);
}

.recording-engineer__works-item {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.recording-engineer__works-img {
	background-color: #e8e8e8;
	height: 7.8125rem;
	overflow: hidden;
	width: 100%;
}

.recording-engineer__works-img img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.recording-engineer__works-info {
	display: grid;
	padding: 0 0.625rem;
}

.recording-engineer__works-artist {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.recording-engineer__works-name {
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

/* =========================================== */

/*                 recording-faq                */

/* =========================================== */

.recording-faq--layout {
	padding-bottom: 10.625rem;
}

.recording-faq__heading {
	margin-bottom: 3.75rem;
}

.rehearsal-info--layout {
	margin-bottom: 8.75rem;
}

.rehearsal-info__list {
	grid-gap: 3.75rem;
	display: grid;
	gap: 3.75rem;
}

.rehearsal-info__item {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	justify-content: center;
}

.rehearsal-info__img {
	margin-left: auto;
	margin-right: auto;
	width: 6.25rem;
}

.rehearsal-info__img img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.rehearsal-info__title {
	color: #000000;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.4;
	text-align: center;
}

.rehearsal-info__main-text {
	color: #000000;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	text-align: center;
	width: 100%;
}

/* =========================================== */

/*                 rehearsal-price              */

/* =========================================== */

.rehearsal-price--layout {
	margin-bottom: 10rem;
}

.rehearsal-price__heading {
	margin-bottom: 5rem;
}

.rehearsal-price__content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
}

.rehearsal-price__table {
	border: 0.0625rem solid #000000;
	border-collapse: collapse;
	width: 100%;
}

.rehearsal-price__table.-pc-only {
	display: none;
}

.rehearsal-price__table.-sp-only {
	display: table;
}

.rehearsal-price__table th,
.rehearsal-price__table td {
	border: 0.0625rem solid #000000;
	font-size: 1.125rem;
	font-weight: 500;
	height: 4.375rem;
	letter-spacing: 0.03em;
	line-height: 1.4;
	margin: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}

.rehearsal-price__cell.-empty {
	background-color: #F1F1E9;
	width: 5rem;
}

.rehearsal-price__cell.-header {
	background-color: #F1F1E9;
}

.rehearsal-price__cell.-header-weekday {
	background-color: #FFFFD6;
}

.rehearsal-price__cell.-header-weekend {
	background-color: #FFE4CF;
}

.rehearsal-price__cell.-subheader {
	background-color: #F1F1E9;
}

.rehearsal-price__cell.-subheader .rehearsal-price__subheader-wrap {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
	justify-content: center;
}

.rehearsal-price__cell.-subheader .rehearsal-price__subheader-wrap img {
	-o-object-fit: contain;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	padding-bottom: 0.0625rem;
	width: auto;
}

.rehearsal-price__cell.-title {
	background-color: #fff;
	height: 6.25rem;
}

.rehearsal-price__cell.-label {
	background-color: #F1F1E9;
	width: 5rem;
}

.rehearsal-price__cell.-price {
	background-color: #fff;
}

/* =========================================== */

/*                 rehearsal-studio              */

/* =========================================== */

.rehearsal-studio {
	position: relative;
}

.rehearsal-studio--layout {
	padding-bottom: 10rem;
}

.rehearsal-studio__inner {
	position: relative;
	width: 100%;
}

.rehearsal-studio__heading {
	margin-bottom: 4.6875rem;
}

.rehearsal-studio__content {
	position: relative;
}

.rehearsal-studio__tabs {
	background-color: #F1F1E9;
	border-bottom: 0.0625rem solid currentColor;
	border-top: 0.0625rem solid currentColor;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	position: sticky;
	top: 4.6875rem;
	width: 100%;
	z-index: 199;
}

.rehearsal-studio__tab-item {
	display: flex;
	flex: 1;
}

.rehearsal-studio__tab-item:not(:last-of-type) {
	border-right: 0.0625rem solid currentColor;
}

.rehearsal-studio__tab-input {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.rehearsal-studio__tab-label {
	grid-gap: 0 0.1875rem;
	align-items: center;
	cursor: pointer;
	display: grid;
	gap: 0 0.1875rem;
	grid-template-columns: auto auto;
	justify-content: center;
	overflow: hidden;
	padding: 0.625rem;
	transition: all 0.3s ease;
	width: 100%;
}

.rehearsal-studio__tab-label .rehearsal-studio__tab-icon,
.rehearsal-studio__tab-label .rehearsal-studio__tab-name,
.rehearsal-studio__tab-label .rehearsal-studio__tab-size {
	opacity: 0.2;
	transition: opacity 0.3s ease;
}

#studio-tab-a:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-a],
#studio-tab-b:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-b],
#studio-tab-c:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-c] {
	background-color: #fff;
	position: relative;
	transition: background-color 0.3s ease;
	z-index: 1;
}

#studio-tab-a:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-a] .rehearsal-studio__tab-icon,
#studio-tab-a:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-a] .rehearsal-studio__tab-name,
#studio-tab-a:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-a] .rehearsal-studio__tab-size,
#studio-tab-b:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-b] .rehearsal-studio__tab-icon,
#studio-tab-b:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-b] .rehearsal-studio__tab-name,
#studio-tab-b:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-b] .rehearsal-studio__tab-size,
#studio-tab-c:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-c] .rehearsal-studio__tab-icon,
#studio-tab-c:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-c] .rehearsal-studio__tab-name,
#studio-tab-c:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-c] .rehearsal-studio__tab-size {
	opacity: 1;
	transition: opacity 0.3s ease;
}

.rehearsal-studio__tab-icon {
	align-items: center;
	color: #000000;
	display: flex;
	flex-shrink: 0;
	font-size: 1.875rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1;
	margin-bottom: -0.125rem;
	padding-bottom: 0.125rem;
	text-align: center;
	width: auto;
}

.rehearsal-studio__tab-name {
	color: #000000;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	margin-bottom: -0.125rem;
	text-align: center;
	white-space: nowrap;
}

.rehearsal-studio__tab-size {
	color: #000000;
	font-size: 0.875rem;
	font-weight: 500;
	grid-column: 1/3;
	letter-spacing: 0.03em;
	line-height: 1.6;
	text-align: center;
	white-space: nowrap;
}

.rehearsal-studio__panels {
	border-bottom: 0.0625rem solid #000000;
	margin-left: auto;
	margin-right: auto;
	min-height: 31.25rem;
	overflow: hidden;
	position: relative;
}

.rehearsal-studio__panel {
	display: list-item;
	left: 0;
	opacity: 0;
	padding: 1.875rem 0.625rem 3.75rem;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	visibility: hidden;
	width: 100%;
	z-index: 1;
}

#studio-tab-a:checked ~ .rehearsal-studio__tabs ~ .rehearsal-studio__panels .rehearsal-studio__panel[data-panel=a],
#studio-tab-b:checked ~ .rehearsal-studio__tabs ~ .rehearsal-studio__panels .rehearsal-studio__panel[data-panel=b],
#studio-tab-c:checked ~ .rehearsal-studio__tabs ~ .rehearsal-studio__panels .rehearsal-studio__panel[data-panel=c] {
	left: 0;
	opacity: 1;
	pointer-events: auto;
	position: relative;
	top: 0;
	visibility: visible;
	z-index: 2;
}

.rehearsal-studio__panel-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.rehearsal-studio__image-wrapper {
	position: relative;
	width: 100%;
}

.rehearsal-studio__image-wrapper .js-rehearsal-studio-slider {
	position: relative;
	width: 100%;
}

.rehearsal-studio__image {
	aspect-ratio: 390/219;
	border: 0.0625rem solid #000000;
	border-radius: 0.1875rem;
	overflow: hidden;
	width: 100%;
}

.rehearsal-studio__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.js-rehearsal-studio-slider .rehearsal-studio__image {
	border-radius: 0.1875rem;
}

.rehearsal-studio__arrow {
	background: rgba(241, 241, 233, 0.9);
	border: 0.0625rem solid #000000;
	border-radius: 0.1875rem;
	cursor: pointer;
	height: 6.25rem;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
	width: 1.25rem;
	z-index: 2;
}

.rehearsal-studio__arrow svg {
	display: none;
}

.rehearsal-studio__arrow::before {
	background-image: url("../img/common/sp/icon-slider-arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 0.625rem;
	left: 50%;
	position: absolute;
	top: 49%;
	transform: translate(-50%, -50%);
	width: 0.375rem;
}

.rehearsal-studio__arrow.splide__arrow--prev {
	left: -0.3125rem;
}

.rehearsal-studio__arrow.splide__arrow--prev::before {
	transform: translate(-50%, -50%) rotate(180deg);
}

.rehearsal-studio__arrow.splide__arrow--next {
	right: -0.3125rem;
}

.rehearsal-studio__arrow:disabled {
	cursor: not-allowed;
	opacity: 0.3;
}

.js-rehearsal-studio-slider .rehearsal-studio__pagination {
	display: flex !important;
}

.js-rehearsal-studio-slider .rehearsal-studio__pagination {
	align-items: center;
	gap: 0.3125rem;
	justify-content: center;
	position: static;
}

.js-rehearsal-studio-slider .rehearsal-studio__pagination .splide__pagination__page {
	background-color: #000000;
	border: none;
	border-radius: 0;
	cursor: pointer;
	height: 0.1875rem;
	margin: 0;
	opacity: 0.2;
	padding: 0;
	transition: opacity 0.3s ease;
	width: 5.625rem;
}

.js-rehearsal-studio-slider .rehearsal-studio__pagination .splide__pagination__page.is-active {
	opacity: 1;
	transform: none;
}

.rehearsal-studio__panel[style*="opacity: 0"] .rehearsal-studio__pagination,
.rehearsal-studio__panel[style*="visibility: hidden"] .rehearsal-studio__pagination,
.rehearsal-studio__panel:not([style*="opacity: 1"]) .rehearsal-studio__pagination {
	pointer-events: none !important;
}

#studio-tab-a:not(:checked) ~ .rehearsal-studio__tabs ~ .rehearsal-studio__panels .rehearsal-studio__panel[data-panel=a] .rehearsal-studio__pagination,
#studio-tab-b:not(:checked) ~ .rehearsal-studio__tabs ~ .rehearsal-studio__panels .rehearsal-studio__panel[data-panel=b] .rehearsal-studio__pagination,
#studio-tab-c:not(:checked) ~ .rehearsal-studio__tabs ~ .rehearsal-studio__panels .rehearsal-studio__panel[data-panel=c] .rehearsal-studio__pagination {
	pointer-events: none !important;
}

.rehearsal-studio__equipment {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.rehearsal-studio__equipment-row {
	border-left: 0.0625rem solid currentColor;
	border-right: 0.0625rem solid currentColor;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.rehearsal-studio__equipment-row:first-child {
	border-top: 0.0625rem solid currentColor;
}

.rehearsal-studio__equipment-row:last-child {
	border-bottom: 0.0625rem solid currentColor;
}

.rehearsal-studio__equipment-row + .rehearsal-studio__equipment-row {
	border-top: 0.0625rem solid currentColor;
}

.rehearsal-studio__equipment-category {
	align-items: center;
	background-color: #F1F1E9;
	border-bottom: 0.0625rem solid currentColor;
	border-right: none;
	display: flex;
	flex-shrink: 0;
	font-size: 1.125rem;
	font-weight: 500;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1.4;
	min-height: 5.625rem;
	padding: 1.25rem 0.625rem;
	text-align: center;
	width: 100%;
}

.rehearsal-studio__equipment-items {
	display: flex;
	flex: 1;
	flex-direction: column;
	width: 100%;
}

.rehearsal-studio__equipment-item {
	align-items: center;
	background-color: #fff;
	border-bottom: 1px solid #000000;
	display: flex;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.4;
	padding: 1.25rem 1.875rem;
}

.rehearsal-studio__equipment-item:last-child {
	border-bottom: none;
}

.rehearsal-studio__equipment-row:first-child .rehearsal-studio__equipment-category {
	min-height: 5.625rem;
}

.rehearsal-studio__equipment-row:first-child .rehearsal-studio__equipment-item {
	min-height: 4.375rem;
}

.rehearsal-studio__equipment-row:nth-child(2) .rehearsal-studio__equipment-category,
.rehearsal-studio__equipment-row:nth-child(4) .rehearsal-studio__equipment-category,
.rehearsal-studio__equipment-row:nth-child(5) .rehearsal-studio__equipment-category,
.rehearsal-studio__equipment-row:nth-child(6) .rehearsal-studio__equipment-category,
.rehearsal-studio__equipment-row:nth-child(7) .rehearsal-studio__equipment-category,
.rehearsal-studio__equipment-row:nth-child(8) .rehearsal-studio__equipment-category,
.rehearsal-studio__equipment-row:nth-child(9) .rehearsal-studio__equipment-category,
.rehearsal-studio__equipment-row:nth-child(10) .rehearsal-studio__equipment-category {
	min-height: 5.625rem;
}

.rehearsal-studio__equipment-row:nth-child(2) .rehearsal-studio__equipment-item,
.rehearsal-studio__equipment-row:nth-child(4) .rehearsal-studio__equipment-item,
.rehearsal-studio__equipment-row:nth-child(5) .rehearsal-studio__equipment-item,
.rehearsal-studio__equipment-row:nth-child(6) .rehearsal-studio__equipment-item,
.rehearsal-studio__equipment-row:nth-child(7) .rehearsal-studio__equipment-item,
.rehearsal-studio__equipment-row:nth-child(8) .rehearsal-studio__equipment-item,
.rehearsal-studio__equipment-row:nth-child(9) .rehearsal-studio__equipment-item,
.rehearsal-studio__equipment-row:nth-child(10) .rehearsal-studio__equipment-item {
	min-height: 5.625rem;
}

.rehearsal-studio__equipment-row:nth-child(3) .rehearsal-studio__equipment-category {
	min-height: 5.625rem;
}

.rehearsal-studio__equipment-row:nth-child(3) .rehearsal-studio__equipment-item {
	min-height: 5.625rem;
}

/* =========================================== */

/*                 rehearsal-faq              */

/* =========================================== */

.rehearsal-faq--layout {
	padding-bottom: 10.625rem;
}

.rehearsal-faq__heading {
	margin-bottom: 4.6875rem;
}

/* =========================================== */

/*                 rest-room-price              */

/* =========================================== */

.rest-room-price--layout {
	margin-bottom: 8.75rem;
}

.rest-room-price__heading {
	margin-bottom: 3.75rem;
}

.rest-room-price__table {
	display: grid;
}

.rest-room-price__term,
.rest-room-price__description {
	align-items: center;
	border: 0.0625rem solid #000000;
	display: flex;
	font-size: 1.125rem;
	font-weight: 500;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1.4;
	min-height: 6.5625rem;
	padding: 2.5rem 1.875rem;
	text-align: center;
}

.rest-room-price__term {
	background-color: #F1F1E9;
}

.rest-room-price__description {
	background-color: #fff;
}

/* =========================================== */

/*                 rest-room-facilities         */

/* =========================================== */

.rest-room-facilities--layout {
	margin-bottom: 8.75rem;
}

.rest-room-facilities__heading {
	margin-bottom: 3.75rem;
}

.rest-room-facilities__table {
	display: grid;
}

.rest-room-facilities__term,
.rest-room-facilities__description {
	align-items: center;
	border: 0.0625rem solid #000000;
	display: flex;
	font-size: 1.125rem;
	font-weight: 500;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1.4;
	min-height: 6.5625rem;
	padding: 2.5rem 1.875rem;
	text-align: center;
}

.rest-room-facilities__term {
	background-color: #F1F1E9;
}

.rest-room-facilities__description {
	background-color: #fff;
}

/* =========================================== */

/*                 rest-room-photos             */

/* =========================================== */

.rest-room-photos--layout {
	margin-bottom: 8.75rem;
}

.rest-room-photos__heading {
	margin-bottom: 3.75rem;
}

.rest-room-photos__list {
	grid-gap: 1.875rem;
	background-color: #fff;
	border: 0.0625rem solid currentColor;
	display: grid;
	gap: 1.875rem;
	padding: 1.875rem;
}

.rest-room-photos__item {
	width: 100%;
}

.rest-room-photos__img {
	aspect-ratio: 4/3;
	width: 100%;
}

.rest-room-photos__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

/* =========================================== */

/*                 rest-room-faq                */

/* =========================================== */

.rest-room-faq--layout {
	padding-bottom: 10.625rem;
}

.rest-room-faq__heading {
	margin-bottom: 3.75rem;
}

.top-section-wrap {
	background-color: #F1F1E9;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.875rem), 0% 100%);
	padding-bottom: 7.5rem;
	padding-top: 8.75rem;
	position: relative;
	z-index: 1;
}

/* =========================================== */

/*                  top-fv                     */

/* =========================================== */

.top-fv {
	background-color: transparent;
	height: 100dvh;
	position: relative;
	width: 100%;
	z-index: 2;
}

.top-fv__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	opacity: 1;
	position: relative;
	transform: translateY(0);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	width: 100%;
}

.top-fv__inner.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-20px);
}

.top-fv__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
	justify-content: center;
	margin-top: 24%;
}

.top-fv__logo img {
	-o-object-fit: contain;
	aspect-ratio: 260/163;
	object-fit: contain;
	width: 12.5rem;
}

.top-fv__scroll-down {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	justify-content: center;
}

.top-fv__scroll-text {
	background-color: #000000;
	color: #FFF352;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	padding: 0.125rem 0.1875rem;
}

.top-fv__scroll-bar {
	background-color: #000000;
	height: 4.375rem;
	padding-bottom: 0.1875rem;
	padding-top: 0.1875rem;
	width: 0.625rem;
}

.top-fv__scroll-bar-area {
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.top-fv__scroll-bar-border {
	animation: scroll-bar-flow 2.2s ease-in-out infinite;
	background-color: #FFF352;
	height: 60%;
	left: 0.25rem;
	position: absolute;
	top: 0;
	width: 0.125rem;
}

/* =========================================== */

/*                 top-news                    */

/* =========================================== */

.top-news {
	bottom: 0.625rem;
	left: 0;
	opacity: 1;
	padding-left: 1rem;
	padding-right: 1rem;
	position: absolute;
	right: 0;
	transform: translateY(0);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.top-news.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
}

.top-news__inner {
	grid-gap: 0.625rem;
	align-items: center;
	background: rgba(0, 0, 0, 0.88);
	display: grid;
	gap: 0.625rem;
	grid-template-columns: auto minmax(0, 1fr);
}

.top-news__inner > .js-top-news-slider {
	min-width: 0;
}

.top-news__header {
	grid-gap: 1.25rem 0.625rem;
	align-items: center;
	display: grid;
	gap: 1.25rem 0.625rem;
	grid-template-columns: auto 4.0625rem;
	height: 100%;
	position: relative;
	z-index: 10;
}

.js-top-news.is-accordion-open .top-news__inner {
	align-items: start;
}

.js-top-news.is-accordion-open .top-news__header {
	align-self: start;
	height: auto;
}

.js-top-news.is-accordion-open .js-top-news-slider {
	align-self: start;
}

.js-top-news.is-accordion-open .js-top-news-slider {
	position: relative;
	z-index: 1;
}

.js-top-news.is-accordion-open .top-news__summary {
	position: relative;
	z-index: 1;
}

.top-news__item {
	position: relative;
}

.top-news__item::after {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1.00006 0.999999L5.96085 5.85496L10.9216 1' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #FFF352;
	content: "";
	height: 0.4375rem;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1.00006 0.999999L5.96085 5.85496L10.9216 1' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	pointer-events: none;
	position: absolute;
	right: 0.875rem;
	top: 1.25rem;
	transition: transform 0.3s;
	width: 0.75rem;
}

.top-news__item.is-open::after {
	transform: rotate(180deg);
}

.top-news__summary {
	grid-gap: 0.625rem;
	align-items: start;
	cursor: pointer;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 1fr;
	justify-content: start;
}

.top-news__label {
	align-items: center;
	background-color: #FFF352;
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: 700;
	height: 100%;
	justify-content: center;
	letter-spacing: 0.03em;
	width: 4.5rem;
}

.top-news__pagination-space {
	height: 3.75rem;
}

.top-news__pagination {
	grid-gap: 0.8125rem;
	align-items: center;
	display: grid;
	gap: 0.8125rem;
	grid-template-columns: repeat(3, auto);
	height: 3.75rem;
	justify-content: center;
}

.top-news__pagination-dot {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #686868;
	border-radius: 50%;
	cursor: pointer;
	height: 0.5rem;
	padding: 0;
	pointer-events: auto;
	transition: opacity 0.3s;
	width: 0.5rem;
}

.top-news__pagination-dot.is-active {
	background-color: #FFF352;
	opacity: 1;
}

.top-news__meta {
	align-self: center;
	display: flex;
	flex-direction: column;
	gap: 0;
	grid-row: 1;
}

.top-news__meta-date {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.top-news__meta-title {
	color: #FFF352;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
	max-width: 10.125rem;
	overflow: hidden;
}

.top-news__meta-title-text {
	display: inline-block;
	white-space: nowrap;
}

.top-news__meta-title-text.is-marquee {
	animation: top-news-title-marquee 15s linear infinite;
}

.top-news__meta-title-text.is-marquee::before {
	content: attr(data-text);
	padding-right: 1.25rem;
}

.top-news__meta-title-text.is-marquee::after {
	content: attr(data-text);
	padding-left: 1.25rem;
}

.top-news__content {
	color: #fff;
	display: none;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	line-height: 1.4;
	max-height: 11.25rem;
}

.top-news__content a {
	-webkit-text-decoration: underline;
	display: inline-block;
	margin-bottom: 0.3125rem;
	margin-top: 0.3125rem;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

.top-news__content:not(.is-closed) {
	display: block;
	grid-column: 1/-1;
	grid-row: 2;
	overflow-y: auto;
	padding: 1.25rem 1.875rem 1.875rem;
}

/* =========================================== */

/*              スクロールバー                  */

/* =========================================== */

.top-news__content::-webkit-scrollbar {
	width: 0.1875rem;
}

.top-news__content::-webkit-scrollbar-track {
	background: transparent;
}

.top-news__content::-webkit-scrollbar-thumb {
	-webkit-transition: opacity 0.3s;
	background: #FFF352;
	border-radius: 0.125rem;
	opacity: 0.3;
	transition: opacity 0.3s;
}

.top-news__content::-webkit-scrollbar-thumb:hover {
	opacity: 0.5;
}

.top-news__content {
	scrollbar-color: #FFF352 transparent;
	scrollbar-width: thin;
}

/* =========================================== */

/*                  top-lead                   */

/* =========================================== */

.top-lead {
	background-color: transparent;
	padding-bottom: 10rem;
	padding-top: 10rem;
	transition: background-color 0.3s ease-out;
}

.top-lead::before {
	background: #FFF352;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	opacity: var(--before-opacity, 0);
	position: fixed;
	top: 0;
	transition: opacity 1s ease;
	width: 100%;
	z-index: 1;
}

.top-lead.is-before-hidden::before {
	display: none;
}

.top-lead__inner {
	position: relative;
	z-index: 2;
}

.top-lead__content {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
	opacity: 0;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
	transition: opacity 0.8s ease;
}

.top-lead__content.is-visible {
	opacity: 1;
}

.top-lead__copy {
	grid-gap: 1.875rem;
	display: grid;
	gap: 1.875rem;
	width: 20.625rem;
}

.top-lead__title {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.top-lead__title img {
	-o-object-fit: cover;
	aspect-ratio: 330/146;
	object-fit: cover;
}

.top-lead__title-text,
.top-lead__access-time-text,
.top-lead__free-item {
	color: #686868;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.03em;
}

.top-lead__info {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
	padding-left: 0.625rem;
	padding-right: 0.875rem;
}

.top-lead__access {
	align-items: center;
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
}

.top-lead__access-time {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
}

.top-lead__access-time img {
	-o-object-fit: cover;
	aspect-ratio: 118/56;
	object-fit: cover;
	width: 7.375rem;
}

.top-lead__map {
	width: 11.125rem;
}

.top-lead__map img {
	-o-object-fit: cover;
	aspect-ratio: 178/137.19;
	object-fit: cover;
}

.top-lead__free {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, auto);
	justify-content: left;
}

.top-lead__free-list {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.top-lead__free-text {
	width: 11.8125rem;
}

.top-lead__free-text img {
	-o-object-fit: cover;
	aspect-ratio: 189/48;
	object-fit: cover;
}

.top-lead__value-list {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
}

.top-lead__value-item {
	grid-gap: 0.3125rem;
	display: grid;
	gap: 0.3125rem;
}

.top-lead__value-item-label {
	width: 7rem;
}

.top-lead__value-item-label img {
	-o-object-fit: cover;
	aspect-ratio: 112/30;
	object-fit: cover;
}

.top-lead__value-item-text.-text-1 img {
	-o-object-fit: cover;
	aspect-ratio: 342/153;
	object-fit: cover;
}

.top-lead__value-item-text.-text-2 img {
	-o-object-fit: cover;
	aspect-ratio: 342/204;
	object-fit: cover;
}

/* =========================================== */

/*                  top-about                  */

/* =========================================== */

.top-about {
	overflow: hidden;
}

.top-about--layout {
	margin-bottom: 8.75rem;
}

.top-about__heading {
	margin-bottom: 3.75rem;
}

.top-about__gallery {
	margin-bottom: 3.75rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100%;
}

.top-about__gallery-track {
	animation: scroll-left 40s linear infinite;
	display: flex;
	gap: 0.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.top-about__gallery-item {
	flex-shrink: 0;
	width: 16.25rem;
}

.top-about__gallery-item img {
	-o-object-fit: cover;
	aspect-ratio: 317/199;
	object-fit: cover;
}

.top-about__text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.09em;
	line-height: 2.3;
	margin-left: 1.875rem;
	margin-right: 1.875rem;
}

/* =========================================== */

/*                 top-service                 */

/* =========================================== */

.top-service {
	overflow: hidden;
}

.top-service--layout {
	margin-bottom: 8.75rem;
}

.top-service__heading {
	margin-bottom: 3.75rem;
}

.top-service__list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.top-service__item {
	display: grid;
}

.top-service__item-body {
	align-items: center;
	background-color: #fff;
	border: 0.0625rem solid #000000;
	border-radius: 0.1875rem;
	margin-left: 1.25rem;
	margin-right: 1.25rem;
	margin-top: -1.25rem;
	padding: 3rem;
	position: relative;
}

.top-service__item-img {
	border-bottom: 0.0625rem solid #000000;
	border-top: 0.0625rem solid #000000;
	width: 100%;
}

.top-service__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 402/302;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.top-service__item-content {
	display: contents;
}

.top-service__item-heading {
	grid-gap: 0.3125rem;
	display: grid;
	gap: 0.3125rem;
	margin-bottom: 1.875rem;
}

.top-service__item-icon {
	text-align: center;
}

.top-service__item-icon img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 4.0625rem;
}

.top-service__item-icon.-icon-guitar img {
	aspect-ratio: 65/60;
}

.top-service__item-icon.-icon-equalizer img {
	aspect-ratio: 65/57;
}

.top-service__item-icon.-icon-house img {
	aspect-ratio: 65/59;
}

.top-service__item-title {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.top-service__item-title-ja {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.top-service__item-title-en {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.top-service__item-description {
	font-size: 1rem;
	letter-spacing: 0.09em;
	line-height: 1.8;
	margin-bottom: 3.75rem;
	text-align: justify;
}

/* =========================================== */

/*                 top-access                  */

/* =========================================== */

.top-access__heading {
	margin-bottom: 3.75rem;
}

.access__container {
	background-color: #fff;
	border: 0.0625rem solid #000000;
	padding-bottom: 3.125rem;
}

.top-access__map {
	margin-bottom: 1.25rem;
	overflow: hidden;
	width: 100%;
}

.top-access__map iframe {
	display: block;
	height: 26.25rem;
	width: 100%;
}

.top-access__address {
	grid-gap: 0.3125rem;
	align-items: center;
	display: grid;
	gap: 0.3125rem;
	justify-content: center;
	margin-bottom: 2.5rem;
	text-align: center;
}

.top-access__address-text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.top-access__address-link {
	align-items: center;
	color: #000000;
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 0.3125rem;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1.6;
	transition: opacity 0.3s;
}

.top-access__address-link::after {
	-webkit-mask-image: url("../img/common/icon-external.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 0.75rem;
	mask-image: url("../img/common/icon-external.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.75rem;
}

.top-access__list {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	margin-left: auto;
	margin-right: auto;
	max-width: 16.375rem;
}

.top-access__item {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.top-access__item-title {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.top-access__item-icon {
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #000000;
	display: inline-block;
	flex-shrink: 0;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.top-access__item-icon--clock {
	-webkit-mask-image: url("../img/common/icon-clock.svg");
	height: 1.5625rem;
	mask-image: url("../img/common/icon-clock.svg");
	width: 1.4375rem;
}

.top-access__item-icon--car {
	-webkit-mask-image: url("../img/common/icon-car.svg");
	height: 1.125rem;
	mask-image: url("../img/common/icon-car.svg");
	width: 1.875rem;
}

.top-access__item-icon--train {
	-webkit-mask-image: url("../img/common/icon-train.svg");
	height: 1.4375rem;
	mask-image: url("../img/common/icon-train.svg");
	width: 1.25rem;
}

.top-access__item-title-text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.top-access__hours {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.top-access__hours-label,
.top-access__hours-value {
	display: inline;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.top-access__hours-note {
	align-items: baseline;
	display: inline-grid;
	font-size: 0.875rem;
	grid-template-columns: auto 1fr;
	letter-spacing: 0.06em;
	line-height: 1.6;
	margin-top: -0.9375rem;
}

.top-access__hours-note::before {
	content: "*";
	display: inline-block;
}

.top-access__contact {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.top-access__contact-label,
.top-access__contact-value {
	display: inline;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.top-access__contact-label a,
.top-access__contact-value a {
	transition: opacity 0.3s;
}

.top-access__item-text {
	font-size: 0.875rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

/* =========================================== */

/*                 top-recruit                  */

/* =========================================== */

.top-recruit {
	position: fixed;
	right: 0;
	z-index: 2;
}

.top-recruit__btn {
	align-items: center;
	background-color: #FFF352;
	display: flex;
	gap: 0.3125rem;
	height: inherit;
	justify-content: center;
	overflow: hidden;
	padding: 0.5625rem 0;
	transition: all 0.3s;
	width: 100%;
}

.top-recruit__set {
	align-items: center;
	display: inline-flex;
	flex-direction: column;
	gap: 1.25rem;
	height: inherit;
	justify-content: center;
	width: inherit;
}

.top-recruit__btn-text.-en {
	font-size: 0.8125rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 140%;
}

.top-recruit__btn-text.-ja {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 120%;
}

/* =========================================== */

/*               recruit-modal                  */

/* =========================================== */

.recruit-modal {
	display: none;
	height: 100vh;
	height: 100svh;
	height: 100dvh;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 300;
}

.recruit-modal.is-open {
	display: block;
}

.recruit-modal__overlay {
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.recruit-modal__close {
	align-items: center;
	background-color: #000000;
	color: #fff;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	height: 4.6875rem;
	justify-content: center;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.3s;
	width: 4.6875rem;
	z-index: 302;
}

.recruit-modal__close::before {
	-webkit-mask-image: url("../img/common/icon-close.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1.375rem;
	mask-image: url("../img/common/icon-close.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 1.375rem;
}

.recruit-modal__close-text {
	color: currentColor;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	line-height: 1;
}

.recruit-modal__container {
	-webkit-overflow-scrolling: touch;
	align-items: flex-start;
	display: flex;
	height: 100%;
	justify-content: center;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 5.9375rem 1.25rem;
	pointer-events: auto;
	position: relative;
	touch-action: pan-y;
	width: 100%;
	z-index: 301;
}

.recruit-modal__inner {
	background-color: #F1F1E9;
	max-width: none;
	padding: 3.75rem 1.875rem;
	pointer-events: auto;
	position: relative;
	width: 100%;
	z-index: 301;
}

.recruit-modal__content {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.recruit-modal__title-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.recruit-modal__title {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
	text-align: center;
}

.recruit-modal__title-en {
	color: #fff;
	font-size: 3.375rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 1;
	position: relative;
	text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, 0 -1px 0 #000000, 0 1px 0 #000000;
}

.recruit-modal__title-icon {
	display: grid;
	height: 1.625rem;
	left: 7.25rem;
	position: absolute;
	top: -0.9375rem;
	width: 1rem;
}

.recruit-modal__title-icon img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.recruit-modal__title-ja {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1;
}

.recruit-modal__lead {
	font-size: 1rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.recruit-modal__section {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.recruit-modal__section:nth-of-type(4) {
	text-align: center;
}

.recruit-modal__section-title {
	background-color: #fff;
	border: 1px solid #000000;
	color: #000000;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: normal;
	max-width: 46.25rem;
	padding: 0.53125rem 0.625rem;
	text-align: center;
	width: 100%;
}

.recruit-modal__section-content {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.recruit-modal__section-text {
	font-size: 1rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.recruit-modal__section-text-large {
	font-size: 1.125rem;
	letter-spacing: 0.09em;
}

.recruit-modal__section-text-unit {
	font-size: 1rem;
	letter-spacing: 0.09em;
}

.recruit-modal__contact-item {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.recruit-modal__contact-item + .recruit-modal__contact-item {
	margin-top: 1.5625rem;
}

.recruit-modal__contact-text {
	color: #000000;
	font-size: 1rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.recruit-modal__contact-value {
	-webkit-text-decoration: none;
	color: #000000;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
	text-decoration: none;
	transition: opacity 0.3s;
}

.recruit-modal__contact-note {
	color: #000000;
	font-size: 1rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	margin-top: 1.5625rem;
}

.recruit-modal__logo {
	height: 5.875rem;
	margin: 0 auto;
	margin-top: 0.625rem;
	width: 9.375rem;
}

.recruit-modal__logo img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

@media (hover: hover) and (pointer: fine) {

.breadcrumb__inner a:hover {
	opacity: 0.7;
}

.c-btn__link:hover {
	background-color: #FFF352;
	color: #000000;
}

.cta__btn a:hover {
	background-color: #FFF352;
}

.footer__nav-item a:hover {
	opacity: 0.7;
}

.footer__sns-item a:hover {
	background-color: #FFF352;
}

.header__reserve-btn a:hover {
	background-color: #FFF352;
	color: #000000;
}

.header__pc-nav-item a:hover {
	opacity: 0.7;
}

.rehearsal-studio__arrow:hover:not(:disabled) {
	opacity: 0.7;
}

.js-rehearsal-studio-slider .rehearsal-studio__pagination .splide__pagination__page:hover {
	opacity: 0.5;
}

.top-access__address-link:hover {
	opacity: 0.7;
}

.top-access__contact-label a:hover,
.top-access__contact-value a:hover {
	opacity: 0.5;
}

.top-recruit__btn:hover {
	background-color: #000000;
	color: #FFF352;
}

.recruit-modal__close:hover {
	background-color: #FFF352;
	color: #000000;
}

.recruit-modal__contact-value:hover {
	opacity: 0.6;
}

}

@media screen and (min-width: 768px) {

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 1.3559322034vw;
}

body.fixed {
	position: static;
	position: initial;
}

a:not([href]):hover {
	opacity: 1;
}

.anime-zoom__img img {
	transition: 0.8s all;
}

.c-btn__link {
	height: 3.375rem;
	padding-left: 1.625rem;
	padding-right: 1.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.c-faq__q-label,
.c-faq__a-label {
	width: 1rem;
}

.c-faq__question-text {
	font-size: 1.125rem;
}

.c-faq__toggle {
	height: 2.5rem;
	width: 2.5rem;
}

.c-faq__icon {
	border-radius: 50%;
}

.c-faq__icon-line.-horizontal {
	width: 1rem;
}

.c-faq__icon-line.-vertical {
	height: 1rem;
}

.cta--layout {
	padding-bottom: 4.375rem;
	padding-top: 16.25rem;
}

.cta__catch-copy span,
.cta__text span {
	padding-left: 0.4375rem;
}

.cta__catch-copy {
	font-size: 1.625rem;
	margin-bottom: 0.625rem;
}

.cta__text {
	font-size: 0.875rem;
}

.cta__btn a {
	padding: 1rem 1.625rem;
	transition: background-color 0.3s;
}

.footer {
	clip-path: polygon(0 4rem, 100% 0, 100% 100%, 0% 100%);
	padding-bottom: 5rem;
	padding-top: 9rem;
}

.footer__inner {
	grid-gap: 3.75rem;
	align-items: end;
	display: grid;
	gap: 3.75rem;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
	margin-bottom: 6.25rem;
	text-align: left;
}

.footer__left {
	margin-bottom: 0;
}

.footer__company-title {
	font-size: 1.875rem;
}

.footer__address {
	margin-bottom: 1.25rem;
}

.footer__hours {
	gap: 0.9375rem;
}

.footer__hours-item-wrap {
	gap: 0.375rem;
}

.footer__right {
	align-items: flex-end;
}

.footer__nav {
	margin-bottom: 2.5rem;
}

.footer__nav-items {
	align-items: flex-end;
	gap: 1.25rem;
}

.footer__nav-item {
	position: relative;
	width: auto;
}

.footer__nav-item::before {
	background-image: url("../img/common/icon-thunder-color.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.4375rem;
	left: -1.25rem;
	opacity: 0;
	position: absolute;
	top: 53%;
	transform: translateY(-50%);
	transition: opacity 0.3s;
	width: 0.9375rem;
}

.footer__copyright {
	text-align: right;
}

.footer__copyright small {
	font-size: 0.8125rem;
}

.header {
	height: 5.625rem;
}

.header__inner {
	gap: 1.875rem;
	grid-template-columns: max-content 1fr auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 120.9375rem;
	padding-left: 0.9375rem;
}

.header__logo-link {
	width: 6.5625rem;
}

.header__btns {
	display: contents;
}

.header__reserve-btn {
	width: auto;
}

.header__reserve-btn a {
	background-color: #000000;
	color: #fff;
	gap: 0.5rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	transition: all 0.3s ease;
}

.header__reserve-btn a .header__reserve-text {
	color: currentColor;
	font-size: 0.875rem;
	line-height: 1;
	transition: inherit;
}

.header__pc-nav {
	display: block;
	height: 100%;
}

.header__pc-nav-items {
	display: flex;
	gap: 0.625rem;
	height: inherit;
	justify-content: end;
}

.header__pc-nav-item {
	height: inherit;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.header__pc-nav-item::before {
	background-image: url("../img/common/icon-thunder-color.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.4375rem;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 51%;
	transform: translateY(-50%);
	transition: opacity 0.3s;
	width: 0.9375rem;
}

.header__pc-nav-item a {
	align-content: center;
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	font-size: 1rem;
	font-weight: 700;
	height: inherit;
	justify-content: center;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: inherit;
	word-break: keep-all;
}

.header__hamburger {
	display: none;
}

.header__drawer {
	display: none;
}

.header__hamburger {
	display: none;
}

.inner {
	max-width: 77.5rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.page-fv {
	margin-bottom: 5rem;
	margin-top: 1.875rem;
}

.page-fv__content {
	gap: 2.5rem;
}

.page-fv__main {
	grid-gap: 8.125rem;
	align-items: center;
	display: grid;
	gap: 8.125rem;
	grid-template-columns: auto 1fr;
	margin-right: calc(50% - 50vw);
}

.page-fv__title-wrap {
	flex-direction: column;
	gap: 0.625rem;
}

.page-fv__icon {
	height: 4.625rem;
	width: 5rem;
}

.page-fv__title {
	align-items: center;
}

.page-fv__img {
	border: 0.0625rem solid #000000;
	border-radius: 0.1875rem 0 0 0.1875rem;
	height: 23.125rem;
	min-height: 23.125rem;
	overflow: hidden;
}

.parallax-bg {
	height: 100vh;
}

.parallax-bg--image-1 {
	background-image: url("../img/common/parallax-bg-1.webp");
}

.parallax-bg--image-2 {
	background-image: url("../img/common/parallax-bg-2.webp");
}

.section-wrap {
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 0% 100%);
	padding-top: 5.625rem;
}

.error--layout {
	padding-bottom: 12.125rem;
}

.error__content {
	padding: 4.375rem;
}

.error__text {
	text-align: center;
}

.recording-price--layout {
	margin-bottom: 10rem;
}

.recording-price__heading {
	margin-bottom: 5rem;
}

.recording-price__table {
	grid-template-columns: auto 1fr;
}

.recording-price__term {
	width: 22.5rem;
}

.recording-price__term:last-of-type {
	border-bottom: 0.0625rem solid #000000;
}

.recording-price__description {
	border-left: none;
}

.recording-equipment--layout {
	margin-bottom: 10rem;
}

.recording-equipment__heading {
	margin-bottom: 5rem;
}

.recording-equipment__content {
	padding: 4.375rem;
}

.recording-equipment__text {
	text-align: center;
}

.recording-equipment__notes {
	width: -moz-fit-content;
	width: fit-content;
}

.recording-engineer--layout {
	margin-bottom: 10rem;
}

.recording-engineer__heading {
	margin-bottom: 5rem;
}

.recording-engineer__content {
	gap: 5rem;
	padding: 4.375rem;
}

.recording-engineer__profile {
	flex-direction: row;
	gap: 5rem;
}

.recording-engineer__spotify {
	margin-left: auto;
	margin-right: auto;
	width: 53.75rem;
}

.recording-engineer__works-list {
	gap: 1.875rem;
	grid-template-columns: repeat(6, 1fr);
}

.recording-engineer__works-img {
	height: 8.75rem;
}

.recording-faq--layout {
	padding-bottom: 12.125rem;
}

.recording-faq__heading {
	margin-bottom: 5rem;
}

.rehearsal-info--layout {
	margin-bottom: 10rem;
}

.rehearsal-info__list {
	align-items: start;
	grid-template-columns: repeat(3, 1fr);
	justify-content: space-between;
}

.rehearsal-info__img {
	width: 5rem;
}

.rehearsal-price--layout {
	margin-bottom: 10rem;
}

.rehearsal-price__table.-pc-only {
	display: table;
	table-layout: fixed;
}

.rehearsal-price__table.-sp-only {
	display: none;
}

.rehearsal-price__cell.-empty {
	min-width: 12.5rem;
	width: 12.5rem;
}

.rehearsal-price__cell.-header-weekend {
	min-width: 18.75rem;
	width: 18.75rem;
}

.rehearsal-price__cell.-title {
	height: 4.375rem;
	width: 12.5rem;
}

.rehearsal-price__cell.-label {
	width: 12.5rem;
}

.rehearsal-price__cell.-price {
	width: 24.375rem;
}

.rehearsal-studio--layout {
	padding-bottom: 10rem;
}

.rehearsal-studio__heading {
	margin-bottom: 6.875rem;
}

.rehearsal-studio__tabs {
	max-width: 73.75rem;
	top: 5.625rem;
}

.rehearsal-studio__tab-item {
	border-right: 0.0625rem solid currentColor;
}

.rehearsal-studio__tab-item:first-of-type {
	border-left: 0.0625rem solid currentColor;
}

.rehearsal-studio__tab-label {
	display: flex;
	gap: 0.625rem;
	padding: 1.875rem 2.5rem;
}

.rehearsal-studio__tab-icon {
	font-size: 2.125rem;
	margin-bottom: 0;
	padding-bottom: 0.1875rem;
	width: 1.375rem;
}

.rehearsal-studio__tab-label[for=studio-tab-a] .rehearsal-studio__tab-icon {
	width: 1.375rem;
}

.rehearsal-studio__tab-label[for=studio-tab-b] .rehearsal-studio__tab-icon {
	width: 1.5rem;
}

.rehearsal-studio__tab-label[for=studio-tab-c] .rehearsal-studio__tab-icon {
	width: 1.4375rem;
}

.rehearsal-studio__tab-name {
	font-size: 1.5rem;
	margin-bottom: 0;
	text-align: left;
}

.rehearsal-studio__tab-size {
	font-size: 1.125rem;
	text-align: left;
}

#studio-tab-a:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-a] .rehearsal-studio__tab-name,
#studio-tab-b:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-b] .rehearsal-studio__tab-name,
#studio-tab-c:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-c] .rehearsal-studio__tab-name,
#studio-tab-a:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-a] .rehearsal-studio__tab-size,
#studio-tab-b:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-b] .rehearsal-studio__tab-size,
#studio-tab-c:checked ~ .rehearsal-studio__tabs .rehearsal-studio__tab-label[for=studio-tab-c] .rehearsal-studio__tab-size {
	text-align: center;
}

.rehearsal-studio__panels {
	border: 0.0625rem solid #000000;
	border-top: none;
	min-height: 37.5rem;
}

.rehearsal-studio__panel {
	padding: 2.5rem;
}

.rehearsal-studio__panel-content {
	gap: 1.875rem;
}

.rehearsal-studio__image {
	aspect-ratio: 1100/619;
}

.rehearsal-studio__arrow {
	top: 49%;
	width: 2.5rem;
}

.rehearsal-studio__arrow::before {
	background-image: url("../img/common/icon-slider-arrow.svg");
	height: 1rem;
	width: 0.4375rem;
}

.rehearsal-studio__arrow.splide__arrow--prev {
	left: -1.25rem;
}

.rehearsal-studio__arrow.splide__arrow--next {
	right: -1.25rem;
}

.js-rehearsal-studio-slider .rehearsal-studio__pagination .splide__pagination__page {
	height: 0.25rem;
	width: 7rem;
}

.rehearsal-studio__equipment-row {
	flex-direction: row;
}

.rehearsal-studio__equipment-category {
	border-bottom: none;
	border-right: 0.0625rem solid currentColor;
	min-height: 4.375rem;
	width: 16.25rem;
}

.rehearsal-studio__equipment-items {
	width: auto;
}

.rehearsal-studio__equipment-row:first-child .rehearsal-studio__equipment-category {
	min-height: 8.75rem;
}

.rehearsal-studio__equipment-row:nth-child(3) .rehearsal-studio__equipment-category {
	min-height: 6.875rem;
}

.rehearsal-studio__equipment-row:nth-child(3) .rehearsal-studio__equipment-item {
	min-height: 6.875rem;
}

.rehearsal-studio__notes {
	margin-top: -0.625rem;
}

.rehearsal-faq--layout {
	padding-bottom: 12.125rem;
}

.rehearsal-faq__heading {
	margin-bottom: 5rem;
}

.rest-room-price--layout {
	margin-bottom: 10rem;
}

.rest-room-price__heading {
	margin-bottom: 5rem;
}

.rest-room-price__table {
	grid-template-columns: auto 1fr;
}

.rest-room-price__term,
.rest-room-price__description {
	min-height: 10rem;
}

.rest-room-price__term {
	width: 22.5rem;
}

.rest-room-price__description {
	border-left: none;
}

.rest-room-facilities--layout {
	margin-bottom: 10rem;
}

.rest-room-facilities__heading {
	margin-bottom: 5rem;
}

.rest-room-facilities__table {
	grid-template-columns: auto 1fr;
}

.rest-room-facilities__term,
.rest-room-facilities__description {
	min-height: 10rem;
}

.rest-room-facilities__term {
	width: 22.5rem;
}

.rest-room-facilities__description {
	border-left: none;
}

.rest-room-photos--layout {
	margin-bottom: 10rem;
}

.rest-room-photos__heading {
	margin-bottom: 5rem;
}

.rest-room-photos__list {
	gap: 1.25rem;
	grid-template-columns: repeat(3, 1fr);
	padding: 4.375rem;
}

.rest-room-faq--layout {
	padding-bottom: 12.125rem;
}

.rest-room-faq__heading {
	margin-bottom: 5rem;
}

.top-section-wrap {
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 0% 100%);
	padding-bottom: 12.125rem;
	padding-top: 10rem;
}

.top-fv__content {
	gap: 1.5rem;
	margin-top: 7%;
}

.top-fv__logo img {
	width: 16.25rem;
}

.top-fv__scroll-bar {
	height: 4.5rem;
	padding-bottom: 0.3125rem;
	padding-top: 0.3125rem;
	width: 0.75rem;
}

.top-fv__scroll-bar-border {
	left: 0.28125rem;
	width: 0.1875rem;
}

.top-news {
	bottom: 2.5rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.top-news__inner {
	gap: 1.25rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 90rem;
}

.top-news__header {
	align-items: center;
	display: flex;
	gap: 1.25rem;
}

.js-top-news.is-accordion-open .top-news__inner {
	align-items: center;
}

.js-top-news.is-accordion-open .top-news__header {
	align-self: auto;
	height: 100%;
}

.js-top-news.is-accordion-open .js-top-news-slider {
	align-self: auto;
}

.js-top-news.is-accordion-open .top-news__content:not(.is-closed) {
	padding-left: 0;
	padding-right: 0;
}

.top-news__item::after {
	right: 1.1875rem;
	top: 1.125rem;
}

.top-news__item.is-open .top-news__meta {
	gap: 0.0625rem;
	grid-template-columns: auto;
}

.top-news__summary {
	align-items: center;
	gap: 1.25rem;
	grid-template-columns: auto 1fr 0.625rem;
	grid-template-rows: 2.5rem;
	justify-content: center;
	padding-right: 1.25rem;
}

.top-news__item.is-open .top-news__summary {
	grid-template-rows: auto;
}

.top-news__label {
	width: 5.5rem;
}

.top-news__pagination-space {
	height: 2.5rem;
}

.top-news__pagination {
	gap: 0.375rem;
	height: 2.5rem;
}

.top-news__pagination-dot {
	height: 0.625rem;
	width: 0.625rem;
}

.top-news__meta {
	grid-gap: 0.9375rem;
	align-items: center;
	display: grid;
	gap: 0.9375rem;
	grid-column: 1/2;
	grid-template-columns: auto 1fr;
	justify-content: left;
}

.top-news__meta-title {
	max-width: none;
	max-width: initial;
}

.top-news__content {
	display: block;
	grid-column: 2/3;
	grid-row: 1;
	max-height: 6.4375rem;
	overflow: visible;
	padding: 0;
}

.top-news__content:not(.is-closed) {
	grid-column: 2/3;
	grid-row: 1;
	margin-top: 0;
	overflow-y: auto;
	padding: 0.625rem 0;
}

.top-news__content.is-closed {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: block;
	display: -webkit-box;
	grid-row: 1;
	margin: 0;
	overflow: hidden;
	padding: 0;
	text-overflow: ellipsis;
}

.top-lead__inner {
	min-height: 150vh;
}

.top-lead__content {
	gap: 1.25rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 69.25rem;
}

.top-lead__content.is-visible {
	position: sticky;
	top: 10rem;
}

.top-lead__copy {
	gap: 1.25rem;
	width: 100%;
}

.top-lead__title {
	gap: 0;
}

.top-lead__title img {
	aspect-ratio: 1108/137;
}

.top-lead__title-text,
.top-lead__access-time-text,
.top-lead__free-item {
	font-size: 1.375rem;
	font-weight: 500;
}

.top-lead__info {
	align-items: center;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
	padding-left: 0;
	padding-right: 0;
}

.top-lead__access {
	gap: 0.625rem;
}

.top-lead__access-time {
	align-items: center;
	grid-template-columns: repeat(2, auto);
}

.top-lead__access-time img {
	aspect-ratio: 216/100;
	width: 13.5rem;
}

.top-lead__map {
	width: 16.25rem;
}

.top-lead__free {
	gap: 1.625rem;
}

.top-lead__free-text {
	width: 22.5rem;
}

.top-lead__free-text img {
	aspect-ratio: 360/90;
}

.top-lead__value-item-label {
	width: 6.6875rem;
}

.top-lead__value-item-label img {
	aspect-ratio: 107/26;
}

.top-lead__value-item-text.-text-1 img {
	aspect-ratio: 1108/48;
}

.top-lead__value-item-text.-text-2 img {
	aspect-ratio: 1108/48;
}

.top-about--layout {
	margin-bottom: 10rem;
}

.top-about__heading {
	margin-bottom: 5rem;
}

.top-about__gallery-track {
	gap: 1.25rem;
}

.top-about__gallery-item {
	width: 19.8125rem;
}

.top-about__text {
	font-size: 1.125rem;
	letter-spacing: 0.03em;
	text-align: center;
}

.top-service__heading {
	margin-bottom: 5rem;
}

.top-service__list {
	gap: 1.875rem;
}

.top-service__item {
	align-items: center;
}

.top-service__item:nth-child(odd) {
	grid-template-columns: auto 1fr;
}

.top-service__item:nth-child(odd) .top-service__item-img {
	border-radius: 0 0.1875rem 0.1875rem 0;
	border-right: 0.0625rem solid #000000;
}

.top-service__item:nth-child(odd) .top-service__item-body {
	border-radius: 0.1875rem 0 0 0.1875rem;
	border-right: none;
	margin-left: -1.875rem;
}

.top-service__item:nth-child(even) {
	grid-template-columns: 1fr auto;
}

.top-service__item:nth-child(even) .top-service__item-img {
	border-left: 0.0625rem solid #000000;
	border-radius: 0.1875rem 0 0 0.1875rem;
}

.top-service__item:nth-child(even) .top-service__item-body {
	border-left: none;
	border-radius: 0 0.1875rem 0.1875rem 0;
	margin-right: -1.875rem;
	order: -1;
}

.top-service__item:nth-child(even) .top-service__item-content {
	margin-left: auto;
}

.top-service__item-body {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	padding: 4.375rem;
	z-index: 1;
}

.top-service__item-img {
	width: 43.75rem;
}

.top-service__item-img img {
	aspect-ratio: 700/525;
}

.top-service__item-content {
	display: block;
	max-width: 35.625rem;
}

.top-service__item-heading {
	align-items: center;
	gap: 0.9375rem;
	grid-template-columns: auto auto;
	justify-content: left;
	margin-bottom: 1.25rem;
}

.top-service__item-icon.-icon-guitar {
	width: 3.1875rem;
}

.top-service__item-icon.-icon-equalizer {
	width: 3.125rem;
}

.top-service__item-icon.-icon-house {
	width: 2.8125rem;
}

.top-service__item-title {
	align-items: start;
	text-align: left;
}

.top-service__item-description {
	letter-spacing: 0.06em;
	margin-bottom: 2.5rem;
	text-align: left;
}

.top-access__heading {
	margin-bottom: 5rem;
}

.access__container {
	padding-bottom: 5.625rem;
}

.top-access__map iframe {
	height: 30rem;
}

.top-access__address {
	gap: 0.75rem;
	grid-template-columns: repeat(2, auto);
	margin-bottom: 3.75rem;
}

.top-access__address-text {
	letter-spacing: 0.03em;
}

.top-access__address-link {
	font-size: 1rem;
}

.top-access__list {
	gap: 1.875rem 5rem;
	grid-template-columns: auto 1fr;
	max-width: 62.5rem;
}

.top-access__item:first-child {
	grid-row: 1/3;
}

.top-recruit {
	bottom: 0;
	height: 100%;
}

.top-recruit__btn {
	flex-direction: column;
	gap: 1.25rem;
	justify-content: flex-start;
	padding: 1.25rem 0;
	width: 2.5rem;
}

.top-recruit__btn-text.-en {
	font-size: 0.875rem;
	line-height: 160%;
	writing-mode: sideways-lr;
}

.top-recruit__btn-text.-ja {
	font-size: 1rem;
	letter-spacing: 0.2em;
	writing-mode: vertical-rl;
}

.recruit-modal__container {
	padding-bottom: 6.875rem;
	padding-top: 6.875rem;
}

.recruit-modal__inner {
	max-width: 62.5rem;
	padding: 8.125rem;
}

.recruit-modal__content {
	gap: 2.5rem;
}

.recruit-modal__title {
	gap: 1.875rem;
}

.recruit-modal__title-en {
	font-size: 6.25rem;
}

.recruit-modal__title-icon {
	height: 1.875rem;
	left: 13.9375rem;
	top: -0.625rem;
	width: 1.125rem;
}

.recruit-modal__title-ja {
	font-size: 2rem;
}

.recruit-modal__lead {
	text-align: center;
}

.recruit-modal__section {
	gap: 2.5rem;
}

.recruit-modal__section-content {
	text-align: center;
}

.recruit-modal__contact-item + .recruit-modal__contact-item {
	margin-top: 2.1875rem;
}

.recruit-modal__contact-note {
	margin-top: 2.1875rem;
}

}

@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {

.footer__nav-item:hover::before {
	opacity: 1;
}

.header__pc-nav-item:hover::before {
	opacity: 1;
}

}

@media (min-width: 1180px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1440px) {

.top-service__item-img {
	min-width: 43.75rem;
	width: 48.61vw;
}

}

@media screen and (max-width: 767px) {

.cta__catch-copy,
.cta__text {
	align-items: start;
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.footer__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 22.5rem;
}

.page-fv__title-area {
	margin-left: auto;
	margin-right: auto;
	width: 19.375rem;
}

.page-fv__title-area {
	margin-top: 0.625rem;
}

.page-fv__img {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	order: 1;
}

.page-fv__description {
	margin-left: auto;
	margin-right: auto;
	width: 19.375rem;
}

.rehearsal-info__list {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.rehearsal-price__cell.-solo-label {
	font-size: 1rem;
	letter-spacing: 0.03em;
	width: 6.875rem;
}

.rehearsal-price__solo .rehearsal-price__cell.-empty {
	width: 6.875rem;
}

.rehearsal-price__solo .rehearsal-price__cell.-label {
	width: 6.875rem;
}

.rehearsal-studio__inner {
	padding-left: 0;
	padding-right: 0;
}

.rehearsal-studio__equipment {
	margin-left: auto;
	margin-right: auto;
	width: 21.875rem;
}

.rehearsal-studio__notes {
	margin-left: auto;
	margin-right: auto;
	width: 21.875rem;
}

.rest-room-price__description {
	border-top: none;
}

.rest-room-facilities__description {
	border-top: none;
	text-align: left;
}

.js-top-news.is-accordion-open .top-news__header {
	grid-column: 1/2;
	grid-row: 1/1;
}

.js-top-news.is-accordion-open .js-top-news-slider {
	grid-column: -1/1;
	grid-row: 1/2;
}

.js-top-news.is-accordion-open .top-news__summary {
	gap: 0 0.625rem;
	grid-template-columns: 9.1875rem 1fr;
	grid-template-rows: 3.75rem auto;
}

.js-top-news.is-accordion-open .top-news__meta {
	grid-column: 2/3;
}

.js-top-news.is-accordion-open .top-news__content:not(.is-closed) {
	grid-column: 1/3;
	grid-row: 2;
}

.top-recruit {
	top: 0;
	width: 100%;
}

.top-recruit.is-fixed-bottom {
	bottom: 0;
	top: auto;
}

.top-recruit__btn-icon {
	margin-left: 0.9375rem;
}

.recruit-modal__section-text {
	margin-left: auto;
	margin-right: auto;
	max-width: -moz-max-content;
	max-width: max-content;
}

.recruit-modal__contact-value {
	margin-left: auto;
	margin-right: auto;
	max-width: -moz-max-content;
	max-width: max-content;
}

}

@keyframes slideInFromBottom {

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes scaleIn {

0% {
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	opacity: 1;
	transform: scale(1);
}

}

@keyframes scroll-bar-flow {

0% {
	opacity: 0;
	transform: translateY(-100%);
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
	transform: translateY(400%);
}

}

@keyframes top-news-title-marquee {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-50%);
}

}

@keyframes scroll-left {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-50%);
}

}


/*# sourceMappingURL=style.css.map */
