@charset "UTF-8";

:root {
	--site-bg: #000;
	--site-fg: #fff;
	--site-content-bg: #fafaf7;
	--site-panel: #111;
	--site-panel-soft: #1b1b1b;
	--site-card: #f6f1e8;
	--site-card-text: #171717;
	--site-accent: #d4af37;
	--site-accent-strong: #f3d067;
	--site-border: rgba(255, 255, 255, 0.18);
	--site-shell-width: 1180px;
	--site-header-height: 60px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: #000;
	color: #fff;
	margin: 0 auto;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	max-width: 1920px;
}

body p,
body ul,
body h1,
body h2,
body h3 {
	margin: 0;
	padding: 0;
}

body ul {
	list-style: none;
}

body a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

body a:hover {
	opacity: 0.7;
}

.phone-link {
	color: inherit;
	text-decoration: none;
}

.selection-control {
	display: inline-block;
	padding: 8px 12px;
	border: 1px solid #000;
	border-radius: 999px;
	background: #fff !important;
	color: #000 !important;
	text-decoration: none !important;
}

.selection-control.is-active,
.selection-control[aria-current="page"],
.tab li.active .selection-control {
	background: #000 !important;
	color: #fff !important;
	font-weight: 700 !important;
	border-color: #000 !important;
}

.link-text,
.details a,
.page-section--detail a {
	color: #1f5a3a;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.link-text--strong {
	font-weight: 700;
}

body.no-scroll {
	overflow: hidden;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 980;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #000;
	transition: box-shadow 0.3s ease;
}

header.invert {
	box-shadow: 0 2px 6px rgba(46, 46, 46, 0.9);
}

#headerInner {
	width: 95%;
	margin: 0 auto;
}

.header-address {
	display: block;
	width: 95%;
	margin: 0 auto;
	padding: 0 0 10px;
	font-size: 0.76rem !important;
	color: rgba(255, 255, 255, 0.82);
	text-align: left;
}

.header-address p {
	margin: 0;
	font-size: inherit;
	line-height: 1.45;
}

.logo_pc,
#headermenu {
	display: none;
}

.logo_mb a {
	display: flex;
	align-items: center;
	height: 60px;
}

.logo_mb img {
	width: 100px;
}

#menuInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}

.englishsite {
	display: flex;
	align-items: center;
}

.openbtn {
	position: relative;
	width: 50px;
	height: 50px;
}

.openbtn .openbtn-area {
	position: relative;
	width: 100%;
	height: 100%;
	transition: all 0.4s;
}

.openbtn span {
	position: absolute;
	left: 50%;
	display: inline-block;
	width: 26px;
	height: 3px;
	background: #fff;
	transform: translateX(-50%);
	transform-origin: center;
	transition: all 0.4s;
}

.openbtn span:nth-of-type(1) {
	top: 16px;
}

.openbtn span:nth-of-type(2) {
	top: 24px;
}

.openbtn span:nth-of-type(3) {
	top: 32px;
}

.openbtn.active .openbtn-area {
	transform: rotateY(-360deg);
}

.openbtn.active span:nth-of-type(1) {
	top: 24px;
	transform: translateX(-50%) rotate(-135deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
	top: 24px;
	transform: translateX(-50%) rotate(135deg);
}

.menuboard {
	display: block;
	position: fixed;
	top: var(--site-header-height);
	right: 0;
	width: 100%;
	height: calc(100vh - var(--site-header-height));
	background: rgba(0, 0, 0, 0.92);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 999;
}

.menuboard.active {
	opacity: 1;
	visibility: visible;
}

.menuboard ul {
	padding-right: 8%;
}

.menuboard li {
	margin: 16px 0;
	font-size: 16pt;
}

#mobile-menu a {
	font-size: 16pt !important;
}

main {
	padding-top: var(--site-header-height);
}

header .tagInner {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

header .c-tag {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px !important;
	border: 1px solid #fff;
	background: transparent !important;
}

header .c-tag span {
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.8 !important;
	color: #fff !important;
}

#mobile-menu ul {
	text-align: right !important;
	padding-left: 0 !important;
	padding-right: 8%;
}

#mobile-menu li a {
	display: inline-block;
}

#page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 900;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

#page-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#page-top a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid #fff;
	background: rgba(0, 0, 0, 0.82);
	backdrop-filter: blur(6px);
}

#page-top a span {
	position: static !important;
	display: block !important;
	width: 12px !important;
	height: 12px !important;
	margin-top: 6px !important;
	border-top: 2px solid #fff !important;
	border-left: 2px solid #fff !important;
	border-right: 0 !important;
	transform: rotate(45deg) !important;
}

footer .footer-privacy a,
footer .footer-privacy a:visited,
footer .footer-privacy a:hover,
footer .footer-privacy a:focus-visible {
	color: #fff !important;
	text-decoration: underline !important;
	text-underline-offset: 0.18em;
}

footer {
	margin-top: 0 !important;
}

footer #footerInner {
	display: grid;
	align-items: center;
	justify-items: center;
	gap: 18px;
	width: 95%;
	height: auto !important;
	margin: 0 auto;
	padding: 28px 0 !important;
	border-top: 0 !important;
	text-align: center;
}

footer .footer-privacy {
	font-size: 0.75rem !important;
	line-height: 1.5 !important;
}

footer .footerlogo a {
	display: block;
}

footer .footerlogo img {
	display: block;
	width: min(180px, 32vw);
}

.home-sponsor {
	display: flex;
	justify-content: center;
	width: 95%;
	margin: 0 auto;
	padding: 24px 0 28px;
}

.home-sponsor a {
	display: block;
}

.home-sponsor img {
	display: block;
	width: min(260px, 72vw);
	height: auto;
}

footer #copyright {
	height: auto !important;
	padding: 0;
}

footer #copyright p {
	margin: 0;
}

@media screen and (min-width: 1080px) {
	:root {
		--site-header-height: 168px;
	}

	header {
		height: 168px !important;
	}

	header #headerInner {
		display: flex;
		align-items: center;
		width: 95%;
		height: auto !important;
		margin: 0 auto;
		padding-top: 14px;
	}

	header .header-address {
		display: block;
		width: auto;
		margin-left: 28px;
		padding: 0;
		font-size: 0.76rem !important;
		color: rgba(255, 255, 255, 0.86);
	}

	header .logoInner {
		float: none !important;
	}

	header .logo_pc a {
		height: auto !important;
	}

	header .logo_pc {
		display: block;
	}

	header .logo_mb {
		display: none;
	}

	header .logo_pc img {
		width: 199px;
	}

	header #menuInner {
		display: none !important;
	}

	header #headermenu {
		display: block !important;
		width: 95%;
		margin: 0 auto;
		padding: 10px 0 14px;
		line-height: 1 !important;
	}

	header #headermenu ul {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 10px 18px;
	}

	header #headermenu li {
		float: none !important;
		padding-left: 0 !important;
		font-size: clamp(15px, 1.15vw, 19px);
	}

	header #headermenu li.nav-english {
		margin-left: 18px;
	}

	header #headermenu a {
		display: block;
		white-space: nowrap;
		font-size: clamp(15px, 1.15vw, 19px) !important;
	}

	.menuboard {
		display: none !important;
	}
}

main {
	background: var(--site-content-bg);
	color: #000;
	padding-bottom: 48px;
}

main a,
main a:visited {
	color: inherit;
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 50vh;
	border-bottom: 1px solid #fff;
}

.hero-logo {
	position: absolute;
	right: 4%;
	top: 50%;
	z-index: 1;
	width: min(32vw, 420px);
	max-width: 46%;
	transform: translateY(-50%);
	opacity: 0.52;
	pointer-events: none;
}

.hero-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.top-notice {
	position: relative;
	z-index: 1;
	padding: 14px 16px;
	background: linear-gradient(90deg, #f4c84a 0%, #f7df8a 100%);
	border-bottom: 1px solid #000;
}

.top-notice__inner {
	width: min(100%, 1600px);
	margin: 0 auto;
	padding: 18px 20px;
	background: #111;
	color: #fff;
	border: 2px solid #f4c84a;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.top-notice__label {
	margin-bottom: 8px;
	font-family: "Oswald", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: #f7df8a;
}

.top-notice__body {
	margin: 0;
	font-size: clamp(15px, 1.35vw, 19px);
	line-height: 1.8;
	white-space: pre-line;
}

.hero-slides li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-size: cover;
	background-position: center;
	animation: slideAnime var(--hero-slide-duration, 35s) linear infinite;
}

.hero-slides li:nth-child(1),
.hero-slides li:nth-child(3),
.hero-slides li:nth-child(4) {
	background-position: center 38%;
}

.hero-slides li:nth-child(2) {
	background-position: center 48%;
}

.hero-title {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 2;
}

.hero-title h1 {
	font-family: "Oswald", sans-serif;
	font-size: clamp(18px, 4.8vw, 50px);
	font-weight: 400;
	line-height: 1.8;
	text-align: left;
	color: #fff;
}

.promo-grid {
	display: block;
	padding: 0;
	background: #fff;
}

.promo-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 180px;
	padding: 24px 28px;
	text-align: center;
	border: 1px solid #000;
	background: #000;
}

.promo-card h2 {
	margin-bottom: 20px;
	font-size: 1.1rem;
	line-height: 1.2;
	letter-spacing: 0.08em;
}

.promo-card ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.promo-card--app ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.promo-card--sns li {
	width: 42px;
	margin: 0;
}

.promo-card--sns img {
	display: block;
	width: 42px;
}

.appdata {
	height: auto;
	flex: 0 0 auto;
}

.appdata img {
	display: block;
	width: 148px;
}

.tripadvisor-widget {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 360px);
	min-height: 96px;
	margin: 0 auto;
	padding: 18px;
	background: #000;
	border: 0;
	overflow: hidden;
}

.tripadvisor-widget ul {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.tripadvisor-widget img {
	display: block;
	max-width: 100%;
	height: auto;
}

.accordion-area {
	width: min(100%, 760px);
	margin: 20px auto 0;
	background: #2e2e2e;
	border-bottom: 2px solid #000;
}

.accordion-area .list {
	position: relative;
	padding: 16px 20px;
	font-size: clamp(14px, 1.3vw, 18px);
}

.accordion-area .acordionbox {
	display: none;
	margin: 0 3% 3%;
	padding: 3%;
	background: #f3f3f3;
	color: #000;
	font-size: clamp(14px, 1.3vw, 18px);
}

.songlist-text {
	white-space: pre-wrap;
}

.more {
	width: 200px;
	height: 40px;
	margin: 0 auto;
	border: 1px solid #fff;
}

.more a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.more p {
	font-size: 14px;
	font-weight: 600;
}

.info-area li {
	border-color: rgba(0, 0, 0, 0.25);
}

.promo-card,
.page-section .planlist li div,
.page-section .planlist li p,
.page-section .split-item li div,
.page-section .split-item li p,
.page-section .bandlist li div,
.page-section .bandlist li p,
.page-section .time li div,
.page-section .time li p,
.page-section .list li div,
.page-section .list li p,
.page-section .tab li a,
.more {
	background: #000;
	color: #fff;
}

.promo-card *,
.page-section .planlist li div *,
.page-section .planlist li p *,
.page-section .split-item li div *,
.page-section .split-item li p *,
.page-section .bandlist li div *,
.page-section .bandlist li p *,
.page-section .time li div *,
.page-section .time li p *,
.page-section .list li div *,
.page-section .list li p *,
.page-section .tab li a *,
.more * {
	color: #fff;
}

.page-section .planlist li p,
.page-section .split-item li div,
.page-section .split-item li p,
.page-section .bandlist li p,
.page-section .time li p,
.page-section .list li div,
.page-section .list li p,
.page-section .tab li a,
.more {
	border-color: #000;
}

.promo-card h2,
.page-section .planlist li p,
.page-section .split-item,
.page-section .split-item li p,
.page-section .bandlist li p,
.page-section .time li p,
.page-section .list,
.page-section .list li p,
.page-section .tab li a,
.page-section .more a,
.page-section .more p,
.more a,
.more p {
	color: #fff;
}

main .next {
	background: #fff;
}

main .section-heading {
	display: inline-block;
	margin: 0 auto 28px;
	padding: 0 20px 12px;
	color: #111;
	font-size: clamp(1.4rem, 2.2vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-align: center;
	border-bottom: 3px solid #111;
}

main .section-heading::after {
	content: none;
}

main .section-header,
main .section-content {
	text-align: center;
}

main .section-block {
	padding-top: clamp(72px, 8vw, 120px);
	padding-left: 24px;
	padding-right: 24px;
}

main .section-block--reservation {
	padding-top: clamp(36px, 4vw, 56px);
}

main .section-block--compact {
	padding-top: clamp(36px, 4vw, 56px);
}

main .section-header {
	margin-bottom: 32px;
}

main .section-content > .section-heading {
	margin-bottom: 32px;
}

main .section-content {
	width: min(100%, 1200px);
	margin: 0 auto;
}

main .section-grid,
main .section-gallery,
main .info-area {
	margin-top: 0;
	padding-top: 0;
}

main .info-area {
	width: min(100%, 760px);
	margin-left: auto;
	margin-right: auto;
}

main .section-list {
	border-top: 1px solid rgba(0, 0, 0, 0.25);
}

main .section-list-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

main .section-list-link {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	align-items: start;
	gap: 20px;
	padding: 18px 0;
	text-align: left;
}

main .section-list .date {
	font-weight: 700;
	white-space: nowrap;
}

main .section-list .date span,
.page-section--detail .date span {
	display: block;
}

main .section-list .newstext {
	line-height: 1.6;
}

main .section-media {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}

main .section-media img {
	display: block;
	width: 100%;
}

main .section-grid {
	max-width: 1920px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

main .section-grid li {
	flex: 1 1 0;
	max-width: 520px;
	margin-bottom: 16px;
}

main .section-grid img {
	display: block;
	width: 100%;
}

main .section-gallery {
	column-count: 4;
	column-gap: 0.6em;
	width: min(100%, 1600px);
	margin: 0 auto;
}

main .section-gallery li {
	margin-bottom: 0.4em;
	opacity: 1;
	break-inside: avoid;
}

main .section-gallery img {
	display: block;
	width: 100%;
}

main .section-content--embed iframe {
	display: block;
	width: min(960px, 100%);
	aspect-ratio: 16 / 9;
	height: auto;
	margin: 0 auto;
	border: 0;
}

.page-container {
	width: min(100%, 1200px);
	margin: 0 auto;
	padding: 0 24px;
}

.page-hero,
#mainphoto {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	padding: 48px 24px;
	background: #000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero .mainslide,
#mainphoto .mainslide,
.page-hero__media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		url("../../img/hero/abbey_top01.jpg") center/cover no-repeat;
}

.page-hero .title,
#mainphoto .title,
.page-hero__title {
	position: relative;
	z-index: 1;
	container-type: inline-size;
	width: min(100%, 640px);
	padding: 32px 24px;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
}

.page-hero h1,
#mainphoto h1,
.page-hero__title h1 {
	font-family: "Oswald", sans-serif;
	font-size: clamp(1.35rem, 10cqw, 3.5rem);
	font-weight: 400;
	letter-spacing: 0;
	white-space: nowrap;
	color: #fff;
}

.page-section {
	width: min(100%, 1080px);
	margin: 0 auto;
}

.guide-page {
	display: grid;
	gap: 64px;
}

.guide-section {
	width: min(100%, 1080px);
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 56px;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.guide-section:first-child {
	border-top: 0;
}

.guide-section__header {
	width: min(100%, 860px);
	margin: 0 auto 28px;
	text-align: center;
}

.guide-section__header h2 {
	position: relative;
	display: inline-block;
	padding: 0 32px 14px;
	font-size: clamp(1.4rem, 2.2vw, 2rem);
	font-weight: 800;
	line-height: 1.4;
}

.guide-section__header h2::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: #000;
	content: "";
}

.guide-section__header p {
	margin-top: 10px;
	line-height: 1.9;
}

.guide-section__body {
	width: min(100%, 900px);
	margin: 0 auto;
}

.guide-section__body h3 {
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	font-weight: 800;
	line-height: 1.5;
	text-align: center;
}

.guide-section__body > * + * {
	margin-top: 28px;
}

.guide-text {
	display: grid;
	gap: 12px;
	width: min(100%, 760px);
	margin-right: auto;
	margin-left: auto;
	line-height: 1.9;
	text-align: left;
}

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

.guide-note {
	display: grid;
	gap: 10px;
	width: min(100%, 760px);
	margin-right: auto;
	margin-left: auto;
	padding: 22px 24px;
	line-height: 1.9;
	text-align: left;
	background: rgba(0, 0, 0, 0.04);
	border-left: 4px solid #000;
}

.guide-image img,
.guide-banner img {
	display: block;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}

.guide-banner img {
	max-width: 560px;
}

.guide-table {
	display: grid;
	gap: 12px;
}

.guide-table li {
	display: grid;
	grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
	background-image: radial-gradient(circle at 4px 100%, rgba(0, 0, 0, 0.34) 1.5px, transparent 1.7px);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 10px 4px;
}

.guide-table li:first-child {
	border-top: 0;
}

.guide-table li div,
.guide-table li p {
	padding: 14px 18px;
	line-height: 1.55;
}

.guide-table li div {
	font-weight: 700;
	text-align: right;
}

.guide-table li p span {
	display: block;
	margin-top: 8px;
}

.guide-actions {
	margin-top: 28px;
}

.page-section--compact {
	padding-top: 56px;
}

.page-section--text,
.page-section--legal {
	text-align: center;
}

.page-section--text > ul,
.page-section--legal > ul,
.page-section--text > .image,
.page-section--text > h3,
.page-section--text > p,
.page-section--text > .birthday,
.page-section--text > .infoblock,
.page-section--text > .menubunner {
	width: min(100%, 860px);
	margin-left: auto;
	margin-right: auto;
}

.page-section--text > ul,
.page-section--legal > ul,
.caution {
	margin-top: 24px;
	text-align: left;
}

.page-section--text > ul li,
.page-section--legal > ul li,
.caution li {
	line-height: 1.9;
}

.page-section--text > h3,
.page-section--legal > h3 {
	margin-top: -8px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.9;
	color: inherit;
}

.page-section .image,
.page-section .menubunner,
.page-section #wifi,
.guide-section #wifi {
	margin-top: 28px;
}

.page-section .image img,
.page-section .menubunner img,
.page-section #wifi img,
.guide-section #wifi img {
	display: block;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}

.page-section #wifi img,
.guide-section #wifi img {
	width: auto;
	max-width: 100%;
}

.page-section .caption,
.page-section .subcaption {
	text-align: center;
}

.page-section .caption {
	margin-bottom: 24px;
	font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.page-section .subcaption {
	margin-top: -12px;
	margin-bottom: 24px;
	font-size: clamp(0.95rem, 1.4vw, 1.05rem);
	line-height: 1.8;
}

.page-section .time,
.page-section .bandlist,
.page-section .planlist {
	display: grid;
	gap: 18px;
	width: min(100%, 900px);
	margin: 0 auto;
}

.page-section .time li,
.page-section .bandlist li,
.page-section .planlist li,
.page-section .split-item ul li,
.page-section .list ul li {
	display: grid;
	grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
}

.page-section .time li div,
.page-section .bandlist li div,
.page-section .planlist li div,
.page-section .split-item li div,
.page-section .list li div {
	padding: 18px 20px;
	font-weight: 700;
	line-height: 1.6;
}

.page-section .time li p,
.page-section .bandlist li p,
.page-section .planlist li p,
.page-section .split-item li p,
.page-section .list li p {
	padding: 18px 20px;
	line-height: 1.8;
}

.page-section .split,
.page-section .split-item,
.page-section .list,
.page-section .infoblock,
.page-section .birthday,
.page-section .map,
.page-section .infoInner {
	width: min(100%, 900px);
	margin-left: auto;
	margin-right: auto;
}

.page-section .split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.page-section .split-item > ul,
.page-section .list > ul {
	display: grid;
	gap: 16px;
}

.page-section .map iframe {
	display: block;
	width: 100%;
	min-height: 420px;
}

.page-section #address,
.page-section .accesstext {
	width: min(100%, 900px);
	margin: 24px auto 0;
	text-align: center;
}

.page-section #address .access-phone {
	margin-top: 6px;
	font-size: 0.86rem;
	line-height: 1.45;
	color: rgba(0, 0, 0, 0.72);
}

.page-section .accesstext ul {
	display: inline-grid;
	gap: 6px;
	text-align: center;
}

.page-section .menubutton {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 24px;
}

.page-section .menubutton li {
	width: min(100%, 320px);
}

.page-section .menubutton a {
	display: block;
	padding: 18px 20px;
	text-align: center;
	background: #000;
	color: #fff;
	border: 1px solid #000;
}

.page-section .info {
	width: min(100%, 860px);
	margin: 20px auto 0;
	text-align: left;
}

.page-section #subcaption {
	margin-top: 56px;
}

.page-section .birthday,
.guide-section .birthday {
	margin-top: 32px;
	padding: 28px;
	background: #000;
	border: 1px solid #000;
	color: #fff;
}

.page-section .birthday *,
.page-section .birthday .list,
.page-section .birthday .list li,
.page-section .birthday .list span,
.page-section .birthday .infocaption,
.page-section .birthday figcaption,
.guide-section .birthday *,
.guide-section .birthday .list,
.guide-section .birthday .list li,
.guide-section .birthday .list span,
.guide-section .birthday .infocaption,
.guide-section .birthday figcaption {
	color: #fff !important;
}

.page-section .birthday .clearfix,
.guide-section .birthday .clearfix,
.page-section .infocontain {
	display: grid;
	grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.page-section .listimg img,
.guide-section .listimg img,
.page-section .infoimg img {
	display: block;
	width: 100%;
}

.page-section .infoimg figcaption,
.page-section .infocaption {
	margin-top: 12px;
	line-height: 1.8;
	text-align: center;
}

.page-section .infoblock {
	display: grid;
	gap: 40px;
	margin-top: 28px;
}

.page-section .infoInner ul {
	margin-top: 20px;
	text-align: left;
}

.page-section .infoInner ul:first-child {
	margin-top: 0;
}

.page-section .birthday .list p + p,
.guide-section .birthday .list p + p {
	margin-top: 16px;
}

.page-section .birthday .list p,
.guide-section .birthday .list p {
	line-height: 1.9;
}

.page-section .more,
.page-section .page-cta {
	width: min(100%, 340px);
	height: auto;
	margin: 48px auto 0;
}

.page-section .more a,
.page-section .page-cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 18px 22px;
}

.page-section .next {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.section-content--profiles {
	width: min(100%, 1080px);
}

.tab {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 32px;
}

.tab li {
	margin: 0;
}

.section-content--profiles .tab .selection-control {
	padding: 14px 22px;
	border-radius: 0;
}

.area {
	display: none;
}

.area.is-active {
	display: block;
}

.profInner {
	display: grid;
	gap: 28px;
}

.imgInner {
	display: grid;
	gap: 16px;
	justify-items: center;
	padding: 28px 24px;
	background: #000;
}

.imgInner .img {
	width: min(100%, 760px);
}

.imgInner .img img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.bandlogo img {
	display: block;
	max-width: min(100%, 520px);
	margin: 0 auto;
}

.member,
.history {
	width: min(100%, 860px);
	margin: 0 auto;
	text-align: left;
}

.member {
	display: grid;
	gap: 8px;
}

.history {
	display: grid;
	gap: 16px;
}

.band-sns-group {
	display: grid;
	gap: 14px;
	text-align: center;
	width: min(100%, 860px);
	margin: 0 auto;
}

.band-sns-group h3 {
	font-size: 1.15rem;
	font-weight: 700;
}

.sns ul,
.band-sns-group ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 18px;
	min-height: 72px;
	width: min(100%, 720px);
	margin: 0 auto;
}

.sns li,
.band-sns-group li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
}

.sns img,
.band-sns-group img {
	display: block;
	width: 100%;
}

.schedule-section,
.reservation-form-container {
	width: min(100%, 960px);
	margin: 0 auto;
}

.schedule-container,
.reservation-form-container {
	padding: 32px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: #fff;
}

.reservation-form-container {
	margin-top: 32px;
}

.schedule-header {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
	margin-bottom: 24px;
}

.schedule-header-top {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
}

.schedule-header h1 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
}

.month-navigation {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.month-navigation a {
	padding: 10px 14px;
	border: 1px solid #000;
}

.schedule-table {
	width: 100%;
	border-collapse: collapse;
}

.schedule-calendar-view {
	display: none;
}

.schedule-table th,
.schedule-table td {
	padding: 16px 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	vertical-align: top;
}

.schedule-table thead th {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.date-cell {
	width: 96px;
	text-align: center;
}

.day-number {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
}

.day-name {
	display: block;
	margin-top: 4px;
}

.day-name.saturday,
tr.saturday .day-number,
tr.saturday .day-name {
	color: #1d5bcb;
}

.day-name.sunday,
tr.sunday .day-number,
tr.sunday .day-name {
	color: #c02d2d;
}

.cast-cell {
	line-height: 1.75;
}

.cast-entry {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.cast-copy {
	min-width: 0;
}

.event-link {
	display: inline-block;
}

.event-name {
	font-weight: 700;
}

.event-details {
	display: block;
	margin-top: 6px;
	font-size: 0.85rem;
	color: rgba(0, 0, 0, 0.72);
}

.schedule-empty {
	padding: 24px 12px;
	text-align: center;
	color: rgba(0, 0, 0, 0.72);
}

.schedule-calendar-empty {
	padding: 40px 12px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: #fff;
}

.cast-icon {
	flex: 0 0 auto;
	margin-left: auto;
	width: 88px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border: 1px solid transparent;
}

.cast-icon img {
	display: block;
	max-width: 88px;
	max-height: 44px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.schedule-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: rgba(0, 0, 0, 0.12);
}

.schedule-calendar-weekday,
.schedule-calendar-spacer,
.schedule-calendar-day {
	background: #fff;
}

.schedule-calendar-weekday {
	padding: 12px 8px;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.schedule-calendar-weekday.sunday {
	color: #c02d2d;
}

.schedule-calendar-weekday.saturday {
	color: #1d5bcb;
}

.schedule-calendar-spacer {
	min-height: 120px;
}

.schedule-calendar-day {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 190px;
	padding: 12px;
}

.schedule-calendar-day-header {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.schedule-calendar-day-number {
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1;
}

.schedule-calendar-day-name {
	font-size: 0.92rem;
}

.schedule-calendar-day.saturday .schedule-calendar-day-number,
.schedule-calendar-day.saturday .schedule-calendar-day-name {
	color: #1d5bcb;
}

.schedule-calendar-day.sunday .schedule-calendar-day-number,
.schedule-calendar-day.sunday .schedule-calendar-day-name {
	color: #c02d2d;
}

.schedule-calendar-events {
	display: grid;
	gap: 10px;
}

.schedule-calendar-event {
	padding: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #fcfcfc;
}

.schedule-calendar-event .cast-entry {
	display: grid;
	gap: 10px;
	align-items: start;
}

.schedule-calendar-event .cast-icon {
	margin-left: 0;
	justify-content: flex-start;
}

.schedule-calendar-event .event-name {
	font-size: 0.96rem;
	line-height: 1.55;
}

.schedule-calendar-event .event-details {
	font-size: 0.8rem;
}

.schedule-calendar-day-empty {
	flex: 1 1 auto;
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%) 0 0 / 12px 12px,
		linear-gradient(315deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%) 0 0 / 12px 12px;
	opacity: 0.5;
}

.details {
	margin: 20px 0 0;
	padding: 16px 18px;
	border-left: 4px solid #000;
	background: #f5f5f5;
	line-height: 1.8;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.details a {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.details .schedule-detail-images {
	display: grid;
	gap: 14px;
	margin: 0 0 16px;
	max-width: 50%;
}

.details .schedule-detail-image {
	margin: 0;
}

.details .schedule-detail-image-button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.details .schedule-detail-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.82);
}

.image-lightbox[hidden] {
	display: none;
}

.image-lightbox__button {
	position: absolute;
	inset: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-out;
}

.image-lightbox img {
	position: relative;
	z-index: 1;
	display: block;
	max-width: min(100%, 1000px);
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 700px) {
	.details .schedule-detail-images {
		max-width: none;
	}
}

.details .schedule-charge-description {
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.details .schedule-charge-description h3 {
	margin: 0 0 4px;
	font-size: 0.95rem;
	font-weight: 700;
}

#reservation-form-content h2 {
	margin-top: 28px;
}

.important-notice {
	margin: 20px 0 24px;
	padding: 18px 20px;
	background: #f5f5f5;
	border-left: 4px solid #000;
}

.important-notice p,
.important-notice ul {
	line-height: 1.8;
}

.form-grid {
	display: grid;
	gap: 18px;
}

.name-fields-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
}

.form-group > div {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.form-group > div label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	margin: 0;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: #fff;
	font: inherit;
}

.form-group .reservation-day-display {
	-webkit-appearance: none;
	appearance: none;
	color: #000;
	background: #fff;
	opacity: 1;
}

.form-group input[type="radio"],
.form-group input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.label-hidden {
	visibility: hidden;
}

.required {
	color: #c02d2d;
}

.form-text {
	display: block;
	margin-top: 8px;
	font-size: 0.92rem;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.72);
}

.form-actions {
	margin-top: 28px;
	text-align: center;
}

.form-actions--split {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.form-actions--split form {
	margin: 0;
}

.submit-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 16px 24px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.submit-button--secondary,
.submit-button--link {
	background: #fff;
	color: #000;
	text-decoration: none !important;
}

.form-preview-list {
	margin: 24px 0 0;
	border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.form-preview-row {
	display: grid;
	grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.form-preview-row dt {
	font-weight: 700;
}

.form-preview-row dd {
	margin: 0;
	line-height: 1.8;
}

hr {
	border: 0;
	border-top: 1px dotted rgba(0, 0, 0, 0.28);
	margin: 28px 0;
}

.section-guide {
	margin: -10px 0;
	text-align: center;
	font-weight: 700;
	line-height: 1.7;
}

.page-section--detail {
	width: min(100%, 900px);
}

.page-section--detail h2 {
	margin-bottom: 18px;
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	line-height: 1.4;
}

.page-section--detail .image img {
	max-width: 100%;
}

.page-section--detail .date {
	margin: 20px 0 12px;
	font-weight: 700;
}

.page-section--detail p {
	line-height: 1.9;
}

@media screen and (max-width: 767px) {
	:root {
		--site-header-height: 183px;
	}

	header:not(.is-compact) {
		height: var(--site-header-height);
	}

	main .section-list-link {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 16px 0;
	}

	main .section-grid {
		width: 100%;
		display: block;
	}

	main .section-grid li {
		width: 80%;
		max-width: none;
		margin: 0 auto 15px;
	}

	main .section-gallery {
		column-count: 2;
	}

	main .section-content--embed iframe {
		width: 95%;
	}

	.page-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.form-preview-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.page-hero,
	#mainphoto {
		min-height: 180px;
	}

	.hero-logo {
		right: 4%;
		top: auto;
		bottom: 10%;
		width: min(44vw, 240px);
		transform: none;
		opacity: 0.4;
	}

	.page-section .time li,
	.page-section .bandlist li,
	.page-section .planlist li,
	.page-section .split-item ul li,
	.page-section .list ul li,
	.guide-table li,
	.page-section .birthday .clearfix,
	.guide-section .birthday .clearfix,
	.page-section .infocontain,
	.page-section .split,
	.name-fields-container,
	.schedule-header {
		grid-template-columns: 1fr;
	}

	.guide-page {
		gap: 48px;
	}

	.guide-section {
		padding-left: 16px;
		padding-right: 16px;
		padding-top: 44px;
	}

	.guide-note {
		padding: 18px;
	}

	.guide-table li div {
		text-align: left;
	}

	.schedule-container,
	.reservation-form-container,
	.page-section .birthday,
	.guide-section .birthday {
		padding: 22px 18px;
	}

	.schedule-table,
	.schedule-table thead,
	.schedule-table tbody,
	.schedule-table tr,
	.schedule-table th,
	.schedule-table td {
		display: block;
		width: 100%;
	}

	.schedule-table thead {
		display: none;
	}

	.schedule-table tr {
		padding: 16px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	}

	.schedule-table td {
		padding: 6px 0;
		border-bottom: 0;
	}

	.date-cell {
		text-align: left;
	}

	.cast-entry {
		align-items: flex-start;
	}

	.cast-icon img {
		max-width: 72px;
		max-height: 36px;
	}
}

@media screen and (min-width: 900px) {
	.schedule-list-view {
		display: none;
	}

	.schedule-calendar-view {
		display: block;
	}
}

@media screen and (min-width: 768px) and (max-width: 899px) {
	:root {
		--site-header-height: 120px;
	}

	.logo_pc {
		display: block;
	}

	.logo_mb {
		display: none;
	}

	.logo_pc a {
		display: flex;
		align-items: center;
		height: 120px;
	}

	.logo_pc img {
		width: 199px;
	}

	header {
		height: 120px;
	}

	#headerInner {
		display: flex;
		align-items: center;
		height: 120px;
	}

	.header-address {
		display: block;
		width: auto;
		margin-left: 20px;
		padding: 0;
		font-size: 0.76rem !important;
		color: rgba(255, 255, 255, 0.86);
	}

	#menuInner {
		margin-left: auto;
	}

	.menuboard {
		top: 120px;
		height: calc(100vh - 120px);
	}

	.hero {
		height: calc(100vh - 120px);
	}

	.hero-logo {
		right: 6%;
		width: min(34vw, 360px);
	}

	.top-notice__inner {
		width: 95%;
	}

	.hero-title {
		width: 40%;
	}

	.appdata img {
		width: 156px;
	}

	main .section-block {
		padding-left: 40px;
		padding-right: 40px;
	}

	main .section-gallery {
		column-count: 4;
	}
}

@media screen and (min-width: 900px) and (max-width: 1079px) {
	:root {
		--site-header-height: 168px;
	}

	header {
		height: 168px !important;
	}

	header #headerInner {
		display: flex;
		align-items: center;
		width: 95%;
		height: auto !important;
		margin: 0 auto;
		padding-top: 14px;
	}

	header .logoInner {
		float: none !important;
	}

	header .logo_pc {
		display: block;
	}

	header .logo_mb {
		display: none;
	}

	header .logo_pc a {
		height: auto !important;
	}

	header .logo_pc img {
		width: 199px;
	}

	header .header-address {
		display: block;
		width: auto;
		margin-left: 28px;
		padding: 0;
		font-size: 0.76rem !important;
		color: rgba(255, 255, 255, 0.86);
	}

	header #menuInner {
		display: none !important;
	}

	header #headermenu {
		display: block !important;
		width: 95%;
		margin: 0 auto;
		padding: 10px 0 14px;
		line-height: 1 !important;
	}

	header #headermenu ul {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 8px 14px;
	}

	header #headermenu li {
		float: none !important;
		padding-left: 0 !important;
		font-size: clamp(15px, 1.15vw, 19px);
	}

	header #headermenu li.nav-english {
		margin-left: 16px;
	}

	header #headermenu a {
		display: block;
		white-space: nowrap;
		font-size: clamp(15px, 1.15vw, 19px) !important;
	}

	.menuboard {
		display: none !important;
	}

	.hero {
		height: calc(100vh - 168px);
	}

	.hero-logo {
		right: 6%;
		width: min(30vw, 380px);
	}

	.top-notice__inner {
		width: 95%;
	}

	.hero-title {
		width: 40%;
	}

	.appdata img {
		width: 156px;
	}

	main .section-block {
		padding-left: 40px;
		padding-right: 40px;
	}

	main .section-gallery {
		column-count: 4;
	}
}

@media screen and (min-width: 1080px) {
	.top-notice__inner {
		width: min(100%, 1600px);
	}

	.hero {
		height: calc(100vh - 168px);
	}

	.hero-logo {
		right: 6%;
		width: min(28vw, 420px);
	}

	.hero-title {
		width: 40%;
	}

	.promo-grid {
		display: flex;
		justify-content: space-between;
		gap: 0;
		padding: 0;
	}

	.promo-card {
		width: 33.333%;
		min-height: 210px;
		padding: 28px 32px;
	}

	.promo-card--sns li {
		width: 50px;
		margin: 0;
	}

	.promo-card--sns img {
		width: 50px;
	}

	.appdata img {
		width: 168px;
	}

	main .section-block {
		padding-left: 56px;
		padding-right: 56px;
	}
}

main .cta-list.cta-list--primary {
	justify-content: center;
}

main .cta-list.cta-list--primary li {
	width: min(560px, 90%) !important;
	height: auto !important;
	margin: 16px auto 0 !important;
	background: transparent !important;
}

main .cta-list.cta-list--primary a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 132px !important;
	padding: 24px 28px !important;
	text-align: center;
	background: linear-gradient(135deg, #050505 0%, #151515 100%);
	border: 2px solid #fff;
	border-radius: 18px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

main .cta-list.cta-list--primary p {
	font-size: clamp(1.4rem, 2.2vw, 2rem) !important;
	line-height: 1.3 !important;
	flex: 1;
	color: #fff !important;
}

main .cta-list.cta-list--primary span {
	display: inline-block;
	margin-top: 8px !important;
	font-size: 0.72em !important;
	font-weight: 600 !important;
}

main .cta-list.cta-list--primary .reservation-title {
	margin-top: 0 !important;
	font-size: 1em !important;
	line-height: 1 !important;
	letter-spacing: 0.08em !important;
}

main .cta-list.cta-list--primary .reservation-arrow {
	width: 18px;
	height: 18px;
	margin-top: 0 !important;
	flex-shrink: 0;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
}

main .cta-list.cta-list--primary a:hover,
main .cta-list.cta-list--primary a:focus-visible {
	background: #fff;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

main .cta-list.cta-list--primary a:hover p,
main .cta-list.cta-list--primary a:hover span,
main .cta-list.cta-list--primary a:focus-visible p,
main .cta-list.cta-list--primary a:focus-visible span {
	color: #111 !important;
}

main .cta-list.cta-list--primary a:hover .reservation-arrow,
main .cta-list.cta-list--primary a:focus-visible .reservation-arrow {
	border-color: #111;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -48px;
	z-index: 1200;
	padding: 12px 16px;
	background: #fff;
	color: #000;
	font-size: 14px;
	text-decoration: none;
}

.skip-link:focus {
	top: 16px;
}

.openbtn {
	background: transparent;
	border: 0;
	padding: 0;
	color: inherit;
	cursor: pointer;
}

.accordion-area--static .list {
	cursor: default;
	pointer-events: none;
	color: #fff;
}

.accordion-area--static .list::before,
.accordion-area--static .list::after {
	display: none;
}

.accordion-area--static .acordionbox {
	display: block !important;
}

#headermenu li.current.current-linkable a,
.menuboard li.current.current-linkable a {
	pointer-events: auto;
	cursor: pointer;
}

@media screen and (min-width: 900px) {
	header {
		overflow: hidden;
		transition: height 0.28s ease, box-shadow 0.3s ease;
	}

	header #headerInner {
		max-height: 130px;
		overflow: hidden;
		transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease, transform 0.28s ease;
	}

	header #headermenu {
		transition: padding 0.28s ease;
	}

	header #headermenu ul {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	header.is-compact {
		height: 54px !important;
	}

	header.is-compact #headerInner {
		max-height: 0;
		padding-top: 0;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
	}

	header.is-compact #headermenu {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	header.is-compact #headermenu ul {
		gap: 8px 14px;
	}

	header.is-compact #headermenu a {
		font-size: clamp(13px, 1vw, 15px) !important;
	}
}

@media screen and (max-width: 899px) {
	header {
		overflow: hidden;
		transition: height 0.28s ease, box-shadow 0.3s ease;
	}

	header #headerInner {
		transition: padding 0.28s ease;
	}

	#menuInner {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		transition: height 0.28s ease;
	}

	.openbtn {
		display: block !important;
	}

	#headermenu {
		display: none !important;
	}

	header.is-compact {
		height: 60px;
	}

	header.is-compact #headerInner {
		width: 95%;
	}

	header.is-compact .logoInner,
	header.is-compact .header-address {
		display: none;
	}

	header.is-compact #menuInner {
		height: 60px;
	}
}

@keyframes slideAnime {
	0% { opacity: 1; }
	12% { opacity: 1; }
	14.285% { opacity: 0; }
	100% { opacity: 0; }
}
