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

body {
	background-color: #0C0A09;
	color: #EDEDED;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 16px;
}

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

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

footer {
	margin-top: auto;
}

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

html {
	scroll-padding-top: 3.5rem;
}

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

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

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

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s, 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 */

/* Set core body defaults */

body { /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 上記のSafari用 */
	-webkit-text-size-adjust: 100%; /* フォントを滑らかに（GoogleFontsがデザインより太く見える時の対処） */
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* 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: block;
	max-width: 100%;
	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;
}

/* 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;
}

.c-modal-btn {
	align-items: center;
	background-color: transparent;
	border: 0.0625rem solid #0C0A09;
	color: #0C0A09;
	display: inline-flex;
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.125rem;
	line-height: 120%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding: 0.1875rem 0.5rem 0.25rem 0.375rem;
	position: relative;
	transition: color 0.3s;
	z-index: 1;
}

.c-modal-btn::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M12.5 21C7.8 21 4 17.2 4 12.5C4 7.8 7.8 4 12.5 4C17.2 4 21 7.8 21 12.5C21 17.2 17.2 21 12.5 21ZM12.5 5C8.35 5 5 8.35 5 12.5C5 16.65 8.35 20 12.5 20C16.65 20 20 16.65 20 12.5C20 8.35 16.65 5 12.5 5Z' fill='%230C0A09'/%3E%3Cpath d='M8 12H17V13H8V12Z' fill='%230C0A09'/%3E%3Cpath d='M12 8H13V17H12V8Z' fill='%230C0A09'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	flex-shrink: 0;
	height: 1.5625rem;
	transition: filter 0.3s;
	width: 1.5625rem;
}

.c-modal-btn::after {
	background-color: #0C0A09;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: width 0.3s ease;
	width: 0;
	z-index: -1;
}

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

/*                   Header                    */

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

.header {
	width: 100%;
}

.header__nav {
	background-color: #0C0A09;
	height: 3rem;
	transition: all 0.3s ease;
	width: inherit;
	z-index: 200;
}

.header__nav.is-fixed {
	background-color: #0C0A09;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
}

.header__inner {
	display: grid;
	height: 100%;
}

.header__logo {
	display: block;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.header__logo-link {
	align-items: center;
	display: flex;
	height: 100%;
	width: 8.125rem;
}

.header__logo-link:hover {
	opacity: 1;
}

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

.header__fv-img img {
	-o-object-fit: cover;
	aspect-ratio: 375/530;
	object-fit: cover;
}

.header__fv-img-text {
	color: #fff;
	font-family: "Shippori Mincho", serif;
	font-size: 1.5rem;
	font-weight: 700;
	padding-bottom: 0.5rem;
	padding-top: 1rem;
	text-align: center;
}

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

/*                  PC Header                  */

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

.header__pc-nav {
	display: none;
}

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

/*                  SP Header                  */

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

.header__drawer {
	background-color: #0C0A09;
	display: block;
	height: 100vh;
	height: 100dvh;
	left: 0;
	max-width: 25rem;
	overflow-y: auto;
	padding-bottom: 2.5rem;
	padding-top: 5rem;
	position: absolute;
	top: 0; /* スライド初期状態：画面外へ */
	transform: translateX(-100%);
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	width: 80%;
	will-change: transform;
	z-index: 2;
}

.header__drawer.is-open {
	transform: translateX(0);
}

/* 画面の残り30%に被る暗幕（クリックで閉じる） */

.header__backdrop {
	background: rgba(0, 0, 0, 0.3);
	bottom: 0;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.3s ease;
	visibility: hidden;
	z-index: 1;
}

.header__backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

/* hidden制御（アニメ用に必須） */

[hidden] {
	display: none !important;
}

.header__sp-nav-items {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header__sp-nav-item {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.header__sp-nav-item:nth-of-type(odd) {
	border-bottom: 0.0625rem solid #004A68;
	border-top: 0.0625rem solid #AF262D;
}

.header__sp-nav-item:last-child {
	background-color: rgba(175, 38, 45, 0.7);
	border-bottom: none;
	border-top: none;
}

.header__sp-nav-item a {
	align-content: center;
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 0.125rem;
	height: inherit;
	justify-content: center;
	padding-bottom: 1rem;
	padding-top: 1rem;
	text-align: center;
	width: 100%;
	word-break: keep-all;
}

.header__sp-nav-item a span.-en {
	color: #EDEDED;
	font-family: "Libertinus Serif", serif;
	font-size: 1.5rem;
	text-transform: uppercase;
}

.header__sp-nav-item a span.-ja {
	color: #E2B465;
	font-family: "Shippori Mincho", serif;
	font-size: 0.75rem;
}

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

/*                 Hamburger                   */

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

.header__hamburger {
	color: #EDEDED;
	display: block;
	height: inherit;
	margin-left: auto;
	max-width: 3.875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	position: relative;
	width: 100%;
	z-index: 50;
}

.header__hamburger:hover {
	opacity: 1;
}

.header__hamburger span {
	background-color: currentColor;
	display: block;
	height: 0.125rem;
	margin-left: auto;
	position: relative;
	transition: 0.5s;
	width: 1.875rem;
}

.header__hamburger span:nth-of-type(2) {
	top: -0.25rem;
}

.header__hamburger span:nth-of-type(3) {
	top: 0.125rem;
}

.header__hamburger.is-open span:nth-of-type(2) {
	background-color: #004A68;
	top: 0.125rem;
	transform: rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(3) {
	background-color: #AF262D;
	top: 0rem;
	transform: rotate(-45deg);
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 632px;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.profile-modal {
	align-items: center;
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	padding: 1.5rem;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 300;
}

.profile-modal__backdrop {
	background: rgba(12, 10, 9, 0.6);
	bottom: 0;
	left: 0;
	opacity: 0;
	pointer-events: auto;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
	z-index: 0;
}

.profile-modal__backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

.profile-modal__inner {
	background-color: #D2CFCB;
	border: 0.0625rem solid #0C0A09;
	border-radius: 0.5rem;
	box-shadow: 0 1rem 3rem rgba(12, 10, 9, 0.3);
	max-height: 90vh;
	max-width: 43.75rem;
	opacity: 0;
	overflow-y: auto;
	padding: 3.5rem 1.5rem 2.5rem;
	pointer-events: auto;
	position: relative;
	transform: scale(0.95);
	transition: transform 0.3s ease, opacity 0.3s ease;
	width: 100%;
	z-index: 1;
}

.profile-modal.is-open .profile-modal__inner {
	opacity: 1;
	transform: scale(1);
}

.profile-modal__close {
	align-items: center;
	background: transparent;
	cursor: pointer;
	display: flex;
	height: 3rem;
	justify-content: center;
	overflow: hidden;
	position: absolute;
	right: 0.3125rem;
	top: 0.3125rem;
	width: 3rem;
}

.profile-modal__close::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 6L18 18' stroke='%23004A68'/%3E%3Cpath d='M18 6L6 18' stroke='%23AF262D'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 2.5rem;
	position: absolute;
	width: 2.5rem;
	z-index: 1;
}

.profile-modal__panes {
	position: relative;
}

.profile-modal__pane {
	display: none;
}

.profile-modal__pane.is-active {
	animation: profileModalFadeIn 0.3s ease;
	display: block;
}

.profile-modal__body {
	grid-gap: 1.5rem;
	color: #0C0A09;
	display: grid;
	gap: 1.5rem;
}

.profile-modal__img {
	flex-shrink: 0;
}

.profile-modal__img img {
	-o-object-fit: cover;
	aspect-ratio: 212/305;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.profile-modal__content {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 0;
}

.profile-modal__name {
	font-family: "Shippori Mincho", serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.profile-modal__name-kana {
	font-size: 0.875rem;
	font-weight: 400;
	opacity: 0.7;
}

.profile-modal__roles {
	color: #004A68;
	font-family: "Shippori Mincho", serif;
	font-size: 0.875rem;
	font-weight: 500;
}

.profile-modal__profile {
	flex: 1;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.8;
	margin-top: 0.625rem;
	min-height: 0;
}

.profile-modal__profile a {
	-webkit-text-decoration: underline;
	color: #004A68;
	text-decoration: underline;
}

.section-bg {
	background-color: #D2CFCB;
}

.section-heading {
	grid-gap: 0.25rem;
	display: grid;
	gap: 0.25rem;
	text-align: center;
}

.section-heading__en {
	color: #fff;
	font-family: "Libertinus Serif", serif;
	font-size: 2.5rem;
	font-weight: 400;
	text-transform: uppercase;
}

.section-heading__en.-black {
	color: #0C0A09;
}

.section-heading__ja {
	background-color: #004A68;
	color: #fff;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	padding: 0.25rem 1.75rem 0.25rem;
	width: -moz-fit-content;
	width: fit-content;
}

.section-heading__ja.-red {
	background-color: #AF262D;
}

.section-heading__ja.-blue {
	background-color: #004A68;
}

.section-heading__ja.-yellow {
	background-color: #BC8C39;
}

.section-heading__ja.-black {
	background-color: #0C0A09;
}

.band {
	border-top: 0.0625rem solid #0C0A09;
}

.band__inner {
	border-left: 0.0625rem solid #0C0A09;
	border-right: 0.0625rem solid #0C0A09;
	padding-bottom: 4.5rem;
	padding-top: 4.5rem;
}

.band__heading {
	margin-bottom: 3rem;
}

.band__list {
	grid-gap: 2rem 1.5rem;
	display: grid;
	gap: 2rem 1.5rem;
	grid-template-columns: repeat(2, 1fr);
}

.band__item {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
	grid-template-rows: repeat(2, auto) 1fr;
	text-align: center;
}

.band__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 212/305;
	height: 14.375rem;
	object-fit: cover;
	width: 100%;
}

.band__item-name {
	color: #0C0A09;
	font-family: "Shippori Mincho", serif;
	font-size: 1.125rem;
	font-weight: 700;
}

.band__notes {
	color: #0C0A09;
	font-family: "Shippori Mincho", serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 170%;
	margin-top: 2rem;
	text-align: left;
}

.cast {
	border-top: 0.0625rem solid #0C0A09;
}

.cast__inner {
	border-left: 0.0625rem solid #0C0A09;
	border-right: 0.0625rem solid #0C0A09;
	padding-bottom: 4.5rem;
	padding-top: 4.5rem;
}

.cast__heading {
	margin-bottom: 3rem;
}

.cast__list {
	grid-gap: 2rem 1.5rem;
	display: grid;
	gap: 2rem 1.5rem;
	grid-template-columns: repeat(2, 1fr);
}

.cast__item {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
	grid-template-rows: repeat(2, auto) 1fr;
	text-align: center;
}

.cast__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 212/305;
	height: 14.375rem;
	object-fit: cover;
	width: 100%;
}

.cast__item-name {
	color: #0C0A09;
	font-family: "Shippori Mincho", serif;
	font-size: 1.125rem;
	font-weight: 700;
}

.introduction--layout {
	margin-bottom: 6.25rem;
}

.introduction__heading {
	margin-bottom: 3rem;
}

.introduction__items {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
}

.introduction__item {
	grid-gap: 1.5rem;
	color: #fff;
	display: grid;
	gap: 1.5rem;
}

.introduction__item-title {
	font-family: "Shippori Mincho", serif;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 130%;
	text-align: center;
}

.introduction__item-text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 180%;
	text-align: justify;
}

.other-info--layout {
	margin-bottom: 6.25rem;
	margin-top: 4.5rem;
}

.other-info__outline {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	margin-bottom: 4.5rem;
}

.other-info__outline-item {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
}

.other-info__outline-item-title {
	grid-gap: 0.875rem;
	display: grid;
	font-family: "Shippori Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	gap: 0.875rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
}

.other-info__outline-item-title::before {
	background-color: currentColor;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	top: 2.375rem;
	width: 100%;
}

.other-info__outline-item-title span {
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
}

.other-info__outline-item-content {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
	justify-content: center;
}

.other-info__outline-item-content.-flex {
	align-items: center;
	display: flex;
}

.other-info__outline-item-text {
	font-family: "Shippori Mincho", serif;
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
}

.other-info__outline-item-text.-slash {
	align-self: end;
}

.other-info__outline-item-text span.-fs-28 {
	font-size: 1.75rem;
}

.other-info__outline-item-text span.-fs-32 {
	font-size: 2rem;
}

.other-info__btns {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
}

.other-info__btn {
	text-align: center;
}

.other-info__btn a {
	align-items: center;
	display: inline-grid;
	width: 100%;
}

.outline-ticket--layout {
	margin-bottom: 5rem;
	margin-top: 4.5rem;
}

.outline-ticket__heading {
	margin-bottom: 3rem;
}

.outline-ticket__body {
	grid-gap: 3rem;
	display: grid;
	gap: 3rem;
}

.outline-ticket__block-title {
	border-bottom: 0.0625rem solid rgba(237, 237, 237, 0.3);
	color: #EDEDED;
	font-family: "Shippori Mincho", serif;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
}

.outline-ticket__block-text {
	color: #EDEDED;
	font-size: 1rem;
	font-weight: 400;
	line-height: 180%;
}

.outline-ticket__block-text.-lg {
	font-family: "Shippori Mincho", serif;
	font-size: 1.25rem;
	font-weight: 700;
}

.outline-ticket__block-text + .outline-ticket__block-text {
	margin-top: 1rem;
}

.outline-ticket__block-text + .outline-ticket__block-text.-lg {
	margin-top: 2rem;
}

.outline-ticket__block-text a {
	-webkit-text-decoration: underline;
	color: #E2B465;
	display: inline;
	text-decoration: underline;
}

.outline-ticket__block-text a::after {
	-webkit-mask-image: url("../img/common/ico-external-link.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1rem;
	margin-left: 0.375rem;
	mask-image: url("../img/common/ico-external-link.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: inherit;
	width: 1rem;
}

.outline-ticket__block-text-note {
	font-size: 0.75rem;
	font-weight: 700;
}

.outline-ticket__block-icon-schedule {
	padding-left: 1.5rem;
	position: relative;
}

.outline-ticket__block-icon-schedule::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='23' viewBox='0 0 23 23' fill='none'%3E%3Ccircle cx='11.0976' cy='11.0976' r='11.0976' fill='%23AF262D'/%3E%3Ccircle cx='11.0977' cy='11.1008' r='4.7561' fill='white'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.375rem;
	left: 0;
	position: absolute;
	top: 0.125rem;
	width: 1.375rem;
}

.outline-ticket__block-img {
	margin-bottom: 1.5rem;
	margin-top: 0.25rem;
}

.outline-ticket__venues {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.outline-ticket__venue-name {
	color: #EDEDED;
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.outline-ticket__venue-address {
	color: #EDEDED;
	display: block;
	font-size: 0.875rem;
	line-height: 160%;
	margin-bottom: 0.5rem;
}

.outline-ticket__venue-link {
	align-items: center;
	border: 0.0625rem solid currentColor;
	display: inline-flex;
	gap: 0.5rem;
	padding: 0.25rem 1rem 0.375rem;
	transition: color 0.3s;
}

.outline-ticket__venue-link::after {
	-webkit-mask-image: url("../img/common/ico-external-link.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1.125rem;
	mask-image: url("../img/common/ico-external-link.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: inherit;
	width: 1.125rem;
}

.outline-ticket__ticket-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.outline-ticket__ticket-links a {
	-webkit-text-decoration: underline;
	color: #E2B465;
	text-decoration: underline;
}

.outline-ticket__link {
	font-size: 0.875rem;
}

.playwright-director {
	overflow-x: hidden;
}

.playwright-director__inner {
	border-left: 0.0625rem solid #0C0A09;
	border-right: 0.0625rem solid #0C0A09;
	padding-bottom: 3rem;
	padding-top: 4.5rem;
	text-align: center;
}

.playwright-director__heading {
	margin-bottom: 2.5rem;
}

.playwright-director__name {
	border-bottom: 0.0625rem solid #0C0A09;
	border-top: 0.0625rem solid #0C0A09;
	color: #0C0A09;
	font-family: "Shippori Mincho", serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 130%;
	margin-bottom: 2.5rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.playwright-director__bio {
	color: #0C0A09;
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	line-height: 180%;
	text-align: center;
}

.staff {
	border-top: 0.0625rem solid #0C0A09;
}

.staff__inner {
	border-left: 0.0625rem solid #0C0A09;
	border-right: 0.0625rem solid #0C0A09;
	padding-bottom: 4.5rem;
	padding-top: 4.5rem;
}

.staff__heading {
	margin-bottom: 3rem;
}

.staff__text {
	color: #0C0A09;
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	line-height: 180%;
	text-align: center;
}

.story {
	background-image: url("../img/sp/story-bg.webp");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-bottom: 5rem;
}

.story__heading {
	margin-bottom: 20rem;
}

.story__content {
	margin-left: auto;
	margin-right: auto;
	max-width: 37.5rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.story__text {
	color: #EDEDED;
	font-family: "Shippori Mincho", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 180%;
	text-align: left;
	text-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
}

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

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

.c-modal-btn:hover {
	color: #fff;
}

.c-modal-btn:hover::before {
	filter: brightness(0) invert(1);
}

.c-modal-btn:hover::after {
	width: 100%;
}

.profile-modal__close:hover::before {
	opacity: 0.5;
}

.profile-modal__profile a:hover {
	opacity: 0.8;
}

.outline-ticket__block-text a:hover {
	opacity: 0.8;
}

.outline-ticket__venue-link:hover {
	color: #E2B465;
}

.outline-ticket__ticket-links a:hover {
	opacity: 0.8;
}

}

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

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 1.5384615385vw;
}

main {
	margin-top: 0;
}

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

a[href^="tel:"] {
	pointer-events: none;
}

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

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

.header {
	display: flex;
	flex-direction: column-reverse;
	position: relative;
}

.header__nav {
	border-bottom: 0.125rem solid #004A68;
	border-top: 0.125rem solid #AF262D;
	bottom: -5.125rem;
	height: 5.125rem;
	left: 0;
	position: absolute;
}

.header__inner {
	align-items: center;
	gap: 1.25rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 82.5rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.header__logo {
	display: none;
}

.header__fv-img img {
	aspect-ratio: 1440/800;
}

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

.header__pc-nav-items {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
}

.header__pc-nav-item {
	height: inherit;
}

.header__pc-nav-item.-accent {
	margin-left: 0.75rem;
}

.header__pc-nav-item.-accent a {
	background-color: rgba(175, 38, 45, 0.7);
}

.header__pc-nav-item a {
	align-content: center;
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 0.125rem;
	height: inherit;
	justify-content: center;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	text-align: center;
	width: inherit;
	word-break: keep-all;
}

.header__pc-nav-item a span.-en {
	color: #EDEDED;
	font-family: "Libertinus Serif", serif;
	font-size: 1.5rem;
	text-transform: uppercase;
}

.header__pc-nav-item a span.-ja {
	color: #E2B465;
	font-family: "Shippori Mincho", serif;
	font-size: 0.75rem;
}

.header__hamburger {
	display: none;
}

.header__drawer {
	display: none;
}

.header__backdrop {
	display: none;
}

.header__hamburger {
	display: none;
}

.inner {
	max-width: 1120px;
	padding-left: 40px;
	padding-right: 40px;
}

.profile-modal {
	padding: 2.5rem;
}

.profile-modal__inner {
	max-width: 50rem;
	padding: 3rem 2.5rem 2.5rem;
}

.profile-modal__close {
	height: 3.25rem;
	right: 0.625rem;
	top: 0.625rem;
	width: 3.25rem;
}

.profile-modal__close::before {
	height: 2.5rem;
	transition: opacity 0.3s;
	width: 2.5rem;
}

.profile-modal__body {
	gap: 2rem;
	grid-template-columns: 12.5rem 1fr;
}

.profile-modal__content {
	height: 100%;
}

.profile-modal__name {
	font-size: 1.75rem;
}

.section-heading {
	gap: 0.5rem;
}

.section-heading__en {
	font-size: 4.5rem;
}

.section-heading__ja {
	font-size: 1.125rem;
	padding: 0.25rem 2.5rem 0.375rem;
}

.band__inner {
	padding-bottom: 6.875rem;
	padding-top: 6.25rem;
}

.band__heading {
	margin-bottom: 4rem;
}

.band__list {
	gap: 4rem;
	grid-template-columns: repeat(4, 1fr);
}

.band__item {
	gap: 1rem;
}

.band__item-img img {
	height: 19.0625rem;
}

.band__item-name {
	font-size: 1.25rem;
}

.band__notes {
	font-size: 1rem;
	margin-top: 2.5rem;
}

.cast__inner {
	padding-bottom: 6.875rem;
	padding-top: 6.25rem;
}

.cast__heading {
	margin-bottom: 4rem;
}

.cast__list {
	gap: 4rem;
	grid-template-columns: repeat(4, 1fr);
}

.cast__item {
	gap: 1rem;
}

.cast__item-img img {
	height: 19.0625rem;
}

.cast__item-name {
	font-size: 1.375rem;
}

.introduction--layout {
	margin-bottom: 6.25rem;
}

.introduction__heading {
	margin-bottom: 5rem;
}

.introduction__item {
	gap: 2rem;
}

.introduction__item-title {
	font-size: 2.25rem;
}

.introduction__item-text {
	font-size: 1rem;
	text-align: center;
}

.other-info--layout {
	margin-bottom: 12.5rem;
	margin-top: 12.5rem;
}

.other-info__btns {
	gap: 2rem;
}

.other-info__btn a {
	height: 10rem;
	max-width: 56.25rem;
}

.outline-ticket--layout {
	margin-bottom: 7.5rem;
	margin-top: 7.5rem;
}

.outline-ticket__heading {
	margin-bottom: 5rem;
}

.outline-ticket__body {
	gap: 4rem;
}

.outline-ticket__block-title {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
}

.outline-ticket__block-text {
	font-size: 1rem;
}

.outline-ticket__block-text.-lg {
	font-size: 1.5rem;
}

.outline-ticket__block-text + .outline-ticket__block-text {
	margin-top: 1.5rem;
}

.outline-ticket__block-text + .outline-ticket__block-text.-lg {
	margin-top: 2rem;
}

.outline-ticket__block-text a::after {
	height: 1.0625rem;
	margin-left: 0.5rem;
	width: 1.0625rem;
}

.outline-ticket__block-text-note {
	font-size: 0.875rem;
}

.outline-ticket__block-img {
	margin-bottom: 2rem;
	margin-top: 0.5rem;
}

.outline-ticket__venues {
	gap: 2rem;
}

.outline-ticket__venue-name {
	font-size: 1.5rem;
}

.outline-ticket__venue-address {
	display: inline-block;
	font-size: 1rem;
	margin-right: 1rem;
}

.outline-ticket__venue-link {
	padding: 0.375rem 1rem 0.5rem;
}

.outline-ticket__ticket-links {
	margin-bottom: 1.25rem;
}

.outline-ticket__link {
	font-size: 1rem;
}

.playwright-director__inner {
	padding-bottom: 3.75rem;
	padding-top: 11.25rem;
}

.playwright-director__heading {
	margin-bottom: 4rem;
}

.playwright-director__name {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	padding-bottom: 1.75rem;
	padding-top: 1.75rem;
}

.playwright-director__bio {
	font-size: 1.125rem;
}

.staff__inner {
	padding-bottom: 6.875rem;
	padding-top: 6.25rem;
}

.staff__heading {
	margin-bottom: 4rem;
}

.staff__text {
	font-size: 1.125rem;
}

.story {
	background-image: url("../img/story-bg.webp");
	background-position: left bottom;
	background-size: 63.75rem 72.5625rem;
	padding-bottom: 12.5rem;
	padding-top: 6.25rem;
}

.story__heading {
	margin-bottom: 5rem;
}

.story__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 90rem;
	padding-left: 6.375rem;
	padding-right: 6.375rem;
}

.story__text {
	font-size: 1.125rem;
	margin-left: auto;
	max-width: 39.375rem;
	width: 100%;
}

}

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

.header__pc-nav-item.-accent {
	margin-left: 1.125rem;
}

.header__pc-nav-item a {
	padding-left: 1.125rem;
	padding-right: 1.125rem;
}

}

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

.header__pc-nav-item.-accent a:hover {
	background-color: rgba(175, 38, 45, 0.5);
}

.header__pc-nav-item:not(.-accent) a:hover {
	background-color: rgba(237, 237, 237, 0.15);
}

.other-info__btn a:hover {
	opacity: 0.8;
}

}

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

html {
	scroll-padding-top: 6.125rem;
}

}

@media (min-width: 1040px) {

html {
	font-size: 16px;
}

}

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

.header__inner {
	grid-template-columns: auto 1fr;
	max-width: none;
	max-width: initial;
	padding-left: 0;
	padding-right: 3.4375rem;
}

.header__fv-img {
	margin-top: 3rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes slideInFromBottom {

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

}

@keyframes profileModalFadeIn {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}


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