html,
body,
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1.5;
	scroll-behavior: smooth;
}

.pc {
	display: none !important;
}

/* pc-container */
.pc-container {
	padding: 0 !important;
	margin: 0 !important;
	display: block;
	position: relative;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}

.pc-container::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.pc-container>.bg_movie {
	position: fixed;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

/* sp-container */
.sp-container {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	display: block;
}

.left-container,
.right-container {
	display: none;
}

/* header */
.header {
	width: 100%;
	margin: 0 auto;
	z-index: 15;
	position: fixed;
	top: 0;
	transition: transform 0.3s ease-out;
	text-align: center;
	border-bottom-width: 1px;
	border-style: solid;
	height: 50px;
	opacity: 1;
}

.header .header__inner,
.header .header__inner-center,
.header .header__inner-center h1 {
	height: 50px;
	display: block;
	overflow: hidden;
}

.left-content .header__inner-center h1 {
	font-size: 32px;
	letter-spacing: 0.02em;
}

.header .header__inner-center a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: fit-content;
	margin: 0 auto;
}

.header .header__inner-center a img {
	display: block;
	height: auto;
}

/* sp-menu-btn */
#sp-menu-btn {
	position: absolute;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 2;
	padding: 0;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 20px;
}

#sp-menu-btn span {
	display: block;
	position: absolute;
	height: 1px;
	width: 60%;
	left: 50%;
	transform: translateX(-50%);
	margin: 11px auto;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	transform-origin: center center;
}

#sp-menu-btn span:nth-child(1) {
	top: 0;
}

#sp-menu-btn span:nth-child(2) {
	top: 8px;
}

#sp-menu-btn span:nth-child(3) {
	top: 16px;
}

#sp-menu-btn.open span {
	top: 50%;
	margin: 0;
}

#sp-menu-btn.open span:nth-child(1) {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

#sp-menu-btn.open span:nth-child(2) {
	opacity: 0;
}

#sp-menu-btn.open span:nth-child(3) {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-moz-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* main-nav */
.main-nav {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	transform: translateX(100%);
	z-index: 14;
	overflow-y: auto;
	transition: transform 0.3s ease-in-out;
}

.main-nav.open {
	transform: translateX(0);
}

.main-nav .main-nav__inner {
	width: 90%;
	margin: 100px auto;
}

.main-nav__inner .main-nav__list {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 30px;
}

.main-nav__list li {
	padding: 10px 0;
}

.main-nav__list li a {
	display: flex;
	align-items: center;
	gap: 15px;
}

.main-nav__list li a:hover {
	transform: translateX(8px);
}

.main-nav__list li h2 {
	width: fit-content;
	font-size: 20px;
	letter-spacing: 0.1em;
}

.main-nav__list li h3 {
	width: fit-content;
	font-size: 12px;
	letter-spacing: 0.02em;
}

/* nav sns */
.main-nav .main-nav__sns {
	margin: 0 auto !important;
}

.main-nav__sns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: fit-content;
	margin: 0 auto;
}

.main-nav__sns li {
	display: inline-block;
	vertical-align: middle;
	width: 30px;
}

.main-nav__sns li a {
	display: block;
}

.main-nav__sns li a svg {
	width: 28px;
	height: 28px;
}

.main-nav__sns li a svg.line-icon {
	width: 38px;
	height: 38px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* nav contact */
.main-nav .main-nav__contact {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px 0;
	margin-bottom: 20px;
}

.main-nav__contact li {
	width: 100%;
	padding: 10px 0;
	border-width: 1px;
	border-style: solid;
	font-size: 18px;
}

.main-nav__contact li a {
	display: block;
	text-align: center;
}

.main-nav__contact li a span {
	line-height: 1.5;
}

/* content animation */
section,
.schedule ul li {
	opacity: 0;
}

section.none,
.schedule ul li.none {
	opacity: 1 !important;
}

/* slide-in (↑) */
.slide-in-up {
	opacity: 0;
	transform: translateY(50px);
	animation: slideInUp 0.5s ease-out forwards;
}

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

/* slide-in (←) */
.slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	animation: slideInRight 0.5s ease-out forwards;
}

@keyframes slideInRight {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* zoom-in */
.zoom-in {
	opacity: 0;
	transform: scale(0.95);
	animation: zoomIn 0.5s ease-out forwards;
}

@keyframes zoomIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* zoom-out */
.zoom-out {
	opacity: 0;
	transform: scale(1.05);
	animation: zoomOut 0.5s ease-out forwards;
}

@keyframes zoomOut {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* bottom fixed link */
.fixd_contact {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: fit-content;
	z-index: 2;
	padding: 10px 0;
}

.fixd_contact a {
	display: block;
	text-align: center;
	width: fit-content;
	min-width: 80%;
	margin: 0 auto;
	padding: 5px 30px;
	font-size: 16px;
	border-radius: 5px;
	border-style: solid;
	border-width: 1px;
}

/* banner */
.banner_content {
	position: fixed;
	bottom: 0;
	right: 0;
	max-width: 90%;
	z-index: 3;
}

.banner_content .banner__inner {
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.banner__inner .banner_wrapper {
	position: relative;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.banner_wrapper.hide {
	transform: translateX(150%);
	opacity: 0;
}

.banner__inner .close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	border-radius: 13px;
	border-width: 1px;
	border-style: solid;
	cursor: pointer;
}

.banner__inner .close svg {
	display: block;
}

/* map */
.map {
	padding: 0;
	line-height: 0;
}

section.map .map__inner iframe {
	width: 100%;
	height: 30vh;
}

/* footer */
footer.footer {
	padding: 60px 0;
}

footer.footer .footer__inner {
	width: 90%;
	margin: 0 auto;
}

.footer__inner>h2,
.footer__inner>img,
.group_info>h2,
.group_info>img {
	font-size: 32px;
	padding-bottom: 10px;
	display: block;
	letter-spacing: 0.02em;
}

/* footer nav sns */
.footer__inner nav {
	position: static;
	transform: none;
	transition: none;
	width: 100%;
	overflow: hidden;
	height: auto;
	background: transparent;
}

.footer__inner nav div.main-nav__inner {
	width: 100%;
	margin: 30px auto 0;
}

.footer__inner nav li {
	border: none !important;
	white-space: nowrap;
	padding: 4px 0;
}

.footer__inner nav li a h2 {
	font-size: 14px;
	letter-spacing: 0.1em;
}

/* footer shop contact */
.footer__inner .main-nav__shop-info {
	margin-bottom: 15px;
}

/* footer shop info */
.footer__inner .main-nav__shop-info p {
	font-size: 16px;
	white-space: normal;
	margin-bottom: 8px;
}

/* footer gruop info */
.group_info {
	margin-bottom: 30px;
}

.group_info .area_container {
	margin-top: 30px;
}

.group_info .area_container:first-of-type {
	margin-top: 0;
}

.group_info .area_container:last-child {
	margin-bottom: 0;
}

.group_info .area_container h3 {
	font-size: 18px;
	padding: 10px 0;
}

/* logo */
.group_info .logo_wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px 50px;
}

.group_info .logo_wrapper a {
	display: block;
	flex-basis: calc((100% - 100px) / 3);
}

/* text */
.group_info .text_wrapper,
.group_info .logo_text_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0 20px;
}

.group_info .text_wrapper a,
.group_info .logo_text_wrapper a {
	display: block;
	width: 100%;
	border-top-width: 1px;
	border-top-style: solid;
	padding: 15px 0 10px;
}

.group_info .text_wrapper a:last-child,
.group_info .logo_text_wrapper a:last-child,
.group_info .img_wrapper a:last-child {
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.group_info .text_wrapper a p,
.group_info .logo_text_wrapper a p {
	font-size: 14px;
	margin-bottom: 5px;
}

.group_info .text_wrapper a .shop_name,
.group_info .logo_text_wrapper a .shop_name {
	font-size: 18px;
}

/* logo_text */
.group_info .logo_text_wrapper a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}

.group_info .logo_text_wrapper a img {
	display: block;
	width: 20%;
}

/* img */
.group_info .img_wrapper {
	overflow: hidden;
}

.group_info .img_wrapper a {
	display: block;
	overflow: hidden;
	border-top-width: 1px;
	border-top-style: solid;
}

/* copyright */
.footer__inner small {
	display: block;
	font-size: 14px;
}

/* span#page_top */
span#page_top {
	width: 36px;
	height: 36px;
	position: fixed;
	bottom: 85px;
	right: 15px;
	border-radius: 18px;
	cursor: pointer;
	transition: opacity 0.5s ease-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

span#page_top.show {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

span#page_top svg {
	width: 15.2px;
	height: 13.2px;
}

/* .common-btn */
.common-btn {
	min-width: 187px;
	width: fit-content;
	height: 35px;
	justify-content: center;
	display: flex;
	align-items: center;
	margin: 0 auto;
	text-align: center;
	margin-top: 30px;
	border-width: 1px;
	border-style: solid;
	font-size: 14px;
	padding: 0 20px;
	cursor: pointer;
}

/* pop */
.common-btn-pop {
	border-radius: 11.5px;
}

/* stylish */
.common-btn-stylish {
	border-radius: 30px;
}

/* luxury */
.common-btn-luxury {
	border-radius: 0;
}

/* translation */
#gt_float_wrapper {
	top: 50px !important;
	right: 0 !important;
	z-index: 99 !important;
	display: none;
}

/* tablet */
@media (min-width: 768px) and (max-width: 1072px) {
	.sp {
		display: block !important;
	}

	.pc {
		display: block !important;
	}

	.sp-container {
		width: 513px;
		flex: 0 0 513px;
		max-width: 513px;
		z-index: 5;
		margin: 0 auto;
	}

	.left-content .inner {
		max-height: 88vh;
		overflow: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		background-color: transparent;
	}

	.left-content .inner::-webkit-scrollbar {
		display: none;
	}

	.header {
		width: 513px;
		max-width: 513px;
		left: 50%;
		transform: translate(-50%);
	}

	.main-nav {
		width: 513px;
		left: 50%;
		transform: translateX(-50%) !important;
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: -1 !important;
	}

	.main-nav.open {
		opacity: 1;
		z-index: 14 !important;
	}

	footer .main-nav {
		transform: none !important;
		opacity: 1 !important;
	}

	.fixd_contact {
		width: 513px;
		max-width: 513px;
	}

	.banner_content {
		max-width: 25%;
	}

	.modal-window__inner,
	.modal-window__inner b {
		width: 513px !important;
	}

	span#page_top {
		width: 44px;
		height: 44px;
		bottom: 30px;
		left: calc(50% + 280px);
		border-radius: 22px;
	}

	#gt_float_wrapper {
		top: 0 !important;
		right: 0 !important;
		display: block;
	}
}

/* PC */
@media only screen and (min-width: 1073px) {

	a,
	a img,
	a svg,
	.sns li div img {
		transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
	}

	a:hover {
		opacity: 0.8;
	}

	a:hover img,
	a:hover svg,
	a.selected img,
	.sns li div:hover img,
	.header a:hover img {
		transform: scale(1.02);
	}

	.sp {
		display: none !important;
	}

	.pc {
		display: block !important;
	}

	/* pc-container */
	.pc-container {
		display: flex;
		justify-content: center;
		align-items: stretch;
	}

	/* sp-container */
	.sp-container {
		width: 513px;
		flex: 0 0 513px;
		max-width: 513px;
		z-index: 5;
	}

	.left-container,
	.right-container {
		display: block;
		flex: 1;
		min-width: 0;
		min-height: 100vh;
		position: fixed;
		width: calc((100% - 513px) / 2);
		margin: 0 auto;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
	}

	.left-container {
		left: 0;
	}

	.right-container {
		right: 0;
	}

	.left-container>.bg_movie,
	.right-container>.bg_movie {
		position: fixed;
		top: 0;
		z-index: -1;
		height: 100vh;
		object-fit: cover;
		width: calc((100% - 513px) / 2);
	}

	.left-container>.bg_movie {
		left: 0;
	}

	.right-container>.bg_movie {
		right: 0;
	}

	.left-content,
	.right-content {
		display: block;
		height: 100vh;
		width: fit-content;
		max-width: 80%;
		margin: 0 auto;
		position: absolute;
		left: 0;
		right: 0;
	}

	.left-content .inner,
	.right-content .inner {
		display: block;
		width: 100%;
		margin: 0 10px;
	}

	.left-content .inner {
		max-height: 88vh;
		overflow: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		background-color: transparent;
	}

	.left-content .inner::-webkit-scrollbar {
		display: none;
	}

	/* header */
	.header {
		display: none;
	}

	/* header logo */
	.left-content .header__inner-center,
	.right-content .group_info>img,
	.right-content .group_info>h2 {
		margin: 30px 0 5px;
	}

	.left-content .header__inner-center a {
		display: inline-block;
	}

	/* main-nav */
	.left-content .main-nav,
	.right-content .main-nav {
		position: static;
		transform: none;
		transition: none;
		width: 100%;
		overflow: hidden;
		height: auto;
		background: transparent;
	}

	.left-content .main-nav__inner,
	.right-content .main-nav__inner {
		width: 100%;
		margin: 30px auto 0;
	}

	.left-content .main-nav__inner {
		margin-top: 0;
	}

	.left-content .main-nav__list li,
	.right-content .main-nav__list li {
		border: none !important;
		white-space: nowrap;
		padding: 5px 0;
	}

	.left-content .main-nav__list li h2,
	.right-content .main-nav__list li h2 {
		font-size: 18px;
		letter-spacing: 0.1em;
	}

	/* nav shop info */
	.left-content .main-nav__shop-info,
	.right-content .main-nav__shop-info {
		margin-bottom: 30px;
	}

	.left-content .main-nav__shop-info p,
	.right-content .main-nav__shop-info p {
		font-size: 16px;
		white-space: normal;
		margin-bottom: 5px;
	}

	/* nav contact */
	.left-container .main-nav__contact {
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translate(-50%, 0);
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 20px;
		width: 140%;
		max-width: 500px;
	}

	.left-container .main-nav__contact li {
		width: 50%;
		min-width: 170px;
		padding: 0 20px;
		white-space: nowrap;
		font-size: 16px;
	}

	.left-container .main-nav__contact li.tel {
		display: none;
	}

	.left-container .main-nav__contact li span {
		display: inline-block;
		height: 35px;
		line-height: 35px;
	}

	/* group info */
	.right-container .group_info {
		max-width: 300px;
	}

	.right-container .group_info .scroll_box {
		height: 40vh;
		overflow-y: auto;
		scrollbar-width: thin;
		background-color: transparent;
	}

	/* bottom fixed link */
	.fixd_contact {
		display: none;
	}

	/* banner */
	.banner_content {
		bottom: 20px !important;
		right: 20px !important;
		max-width: 20% !important;
	}

	.banner__inner .close {
		top: -10px !important;
		right: -10px !important;
	}

	/* section.map */
	section.map .map__inner iframe {
		width: 513px;
	}

	/* span#page_top */
	span#page_top {
		width: 44px;
		height: 44px;
		bottom: 30px;
		left: calc(50% + 280px);
		border-radius: 22px;
	}

	/* translation */
	#gt_float_wrapper {
		top: 0 !important;
		right: 0 !important;
		display: block;
	}
}
