@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@supports (scrollbar-gutter: stable) {
  html { scrollbar-gutter: stable; }
}
@supports not (height: 100dvh) {
  .mv {
    min-height: calc(var(--vh, 1vh) * 100);
  }
}

body {
	font-family: oswald,"Noto Sans JP";
	color: #282828;
}

a {
	color: inherit;
	text-decoration: none;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	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;
	scroll-padding-top: calc(var(--header-h-pc) + var(--anchor-extra));
	scrollbar-gutter: stable;
	background-color: #0b0f1a;
}

/* Set core body defaults */
body {
	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: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	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;
}

picture {
	display: block;
}

button {
	display: block;
	padding: 0;
}

img {
	width: 100%;
	height: auto;
}

a {
	transition: all .7s;
}

#Performance,
#Tickets,
#Access{
  scroll-margin-top: var(--anchor-gap);
}

:target::before{
  content:"";
  display:block;
  height: var(--anchor-gap);
  margin-top: calc(-1 * var(--anchor-gap));
}

table {
	border-collapse: collapse;
}

.p-footer {
	padding-block: 32px;
	padding-block: 2rem;
}

.p-footer__inner.l-inner {
	max-width: 990px;
	max-width: 61.875rem;
}

.p-footer__nav ul {
	gap: 16px 0;
	gap: 1rem 0;
	grid-template-columns: repeat(3, 1fr);
}

.p-footer__nav ul li {
	text-align: center;
}

.p-footer__nav ul li a {
	color: #fff;
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.1em;
	text-decoration: underline;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.p-footer__nav ul li a:hover {
	opacity: 0.8;
}

.p-footer__nav ul li:last-child {
	grid-column: 3/4;
}

.p-footer__copy {
	color: #fff;
	font-size: 18px;
	font-size: 1.125rem;
	margin-top: 78px;
	margin-top: 4.875rem;
	text-align: center
}

/* ========================================================
  共通CSS（ 見出し,fade,inner,コンテンツ幅等）
======================================================== */
/* サイト共通ルール */

section {
	padding: 80px 0;
	overflow: hidden;
}

.gradient {
  font-family: Oswald, Noto Sans JP;
  display: inline-block;
  background: linear-gradient(to right, #8AECC4, #e06df0);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* 見出し関連 */

h1, h2, h3, .cmn-title h2, .gradient-text {
  font-family: 'Oswald';
}

.pick-up .cmn-title h2,
#TMB_Dancers .cmn-title h2 {
	background: linear-gradient(to right, #89ECC4, #e06df0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.news-box .cmn-title {
	margin-bottom: 40px;
}

.news-box .cmn-title h2,
#TMB_Dancers .cmn-title h2 {
	background: linear-gradient(to right, #89ECC4, #e06df0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.support .cmn-txt p,
.pickup .cmn-txt p,
.support .cmn-title h2,
.pickup .cmn-title h2 {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

.cast-txt-cont .cmn-title {
	margin-bottom: 50px;
}

.cast-txt-cont .cmn-title h2 {
	font-size: 42px;
}

.about-title .cmn-title {
	margin-bottom: 0;
}

.cmn-title h2 {
	font-weight: 700;
	font-size: 56px;
	text-align: center;
	line-height: 1;
}

/* inview , fade関連 */
.inview,
.inview_re {
  opacity:0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}

.inview.is-show,
.inview_re.is-show {
  opacity:1;
  transform:none;
}

.inview.fadeIn,
.inview_re.fadeIn {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--reveal-dur) var(--reveal-ease),
    transform var(--reveal-dur) var(--reveal-ease);
  will-change: opacity, transform;
}

/* 交差したら表示 */
.inview.fadeIn.is-visible,
.inview_re.fadeIn.is-visible {
  opacity: 1;
  transform: none;
}

.inview:not(.is-show),
.inview_re:not(.is-show){
  opacity: 0;
  transform: translate3d(0, 16px, 0); /* iOS向けにGPU合成を促す */
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
}

.is-show{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  /* 位置移動はやめるが、フェードは残す */
  .inview,
  .inview_re,
  .fadeIn {
    transform: none !important;
    transition: opacity .45s ease !important;
  }
}

.fadeIn {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.late {
	transition-delay: calc(var(--stagger-step) * 1);
}

.late2 {
	transition-delay: calc(var(--stagger-step) * 2);
}

.late3 {
	transition-delay: calc(var(--stagger-step) * 3);
}

.late4 {
	transition-delay: calc(var(--stagger-step) * 4);
}


.fadeIn.is-show {
	opacity: 1;
	transform: translateY(0);
}

.fadeIn_left {
	opacity: 0;
	transform: translate(-50%, 0);
	transition: all 0.8s ease-out;
}

.fadeIn_left.is-show {
	transform: translate(0, 0);
	opacity: 1;
}

.fadeIn_right {
	opacity: 0;
	transform: translate(50%, 0);
	transition: all 0.8s ease-out;
}

.fadeIn_right.is-show {
	transform: translate(0, 0);
	opacity: 1;
}

.inner {
	max-width: 1200px;
	margin: 0 auto;
}

.fixed-right,
.pagetop-btn {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.fixed-right {
	position: fixed;
	opacity: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 10;
}

.fixed-right ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  width: 50px;
}

.fixed-right ul li a {
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
	display: flex;
	text-decoration: none;
	pointer-events: auto;
	z-index: 10;
	height: 200px;
	writing-mode: vertical-lr;
	width: 50px;
	padding: 0;
}

.fixed-right .attention__Box + .attention__Box {
  margin-left: 0;
}

.mv {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-block: 360px 140px;
	box-sizing: border-box;
}

.mv--fullbleed {

}

.mv-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.mv-sp {
  display: none;
}

.mv-sp img {
  display: block;
  width: 100%;
  height: auto;
}

.mv-title {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 85%;
  pointer-events: none;
}

.mv-title img {
	display: block;
	width: 100%;
	height: auto; 
}

.mv-inner {
	position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.mv-bottom-image {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44%;
  pointer-events: none;
}

.mv-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
}

video {
	position: fixed;
	object-fit: cover;
}

.bg__Contents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.gallery {
	overflow: hidden;
}

.para-bg {
	position: relative;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	background-repeat: no-repeat;
}

/* ========================================================
  ハンバーガーCSS
======================================================== */

/* クリックしやすい当たり、色は currentColor で統一 */
.header .menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #282828;
  -webkit-tap-highlight-color: transparent;
}

.header .menu-toggle.is-active {
  color: #ffffff;
}

#globalNav .nav-close{
  color:#ffffff;
}

#globalNav .nav-close svg line{ stroke:#ffffff; }

/* アイコンの枠（ここに3本線を敷く） */
.header .menu-toggle .menu-icon {
  position: relative;
  display: inline-block;
  width: 28px;   /* 太さや長さの調整はここ */
  height: 18px;  /* 行間の調整はここ */
}

/* 3本線 */
.header .menu-toggle .menu-icon > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;               /* 線の太さ */
  background: currentColor; /* ボタンの色を継承 */
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

/* 上・中・下の配置 */
.header .menu-toggle .menu-icon > span:nth-child(1) { top:0; }
.header .menu-toggle .menu-icon > span:nth-child(2) { top:50%; transform: translateY(-50%); }
.header .menu-toggle .menu-icon > span:nth-child(3) { top:100%; transform: translateY(-100%); }

/* 開いた時（×に変形）— JSで .is-active を付与している想定 */
.header .menu-toggle.is-active .menu-icon > span:nth-child(1) {
  top:50%; transform: translateY(-50%) rotate(45deg);
}
.header .menu-toggle.is-active .menu-icon > span:nth-child(2) {
  opacity:0; transform: translateY(-50%) scaleX(0.3);
}
.header .menu-toggle.is-active .menu-icon > span:nth-child(3) {
  top:50%; transform: translateY(-50%) rotate(-45deg);
}

/* 省エネモーション */
@media (prefers-reduced-motion: reduce){
  .header .menu-toggle .menu-icon > span{ transition:none; }
}

/* ===== ドロワークローズボタン（×）をCSSで描く ===== */
#globalNav .nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;              /* ボタンの当たり */
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #fff;              /* ← ここで色を指定（常に白） */
  -webkit-tap-highlight-color: transparent;
}

/* × の斜線2本（currentColorを使用） */
#globalNav .nav-close::before,
#globalNav .nav-close::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;              /* 線の長さ */
  height: 2px;              /* 線の太さ */
  background: currentColor; /* #fff を拾う */
  border-radius: 2px;
  transform-origin: center;
}
#globalNav .nav-close::before{
  transform: translate(-50%, -50%) rotate(45deg);
}
#globalNav .nav-close::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* もし以前のSVG実装が残っていた場合は無効化（任意） */
#globalNav .nav-close svg{ display:none; }



/* ========================================================
  共通CSS（ 見出し,fade,inner,コンテンツ幅等）
======================================================== */
/* サイト共通ルール */
.news-box {
	padding: 60px 50px;
}

.news-box-list {
	max-width: 1200px;
}

.news-box-list ul {
	max-width: 1000px;
}

.news-box-list ul li {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.news-box-list ul li:last-child {
	margin-bottom: 0px;
}

.news-box-list ul li a:hover {
	opacity: .7;
}

.news-box-list-day {
	width: 10%;
}

.news-box-list-day p {
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 0.05em;
	color: #ffffff;
}

.news-box-list-txt {
	width: 87.5%;
}

.news-box-list-txt h3 {
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 0.05em;
	color: #ffffff;
	line-height: 1.5;
}

.news-box-list-txt h3 a {
	text-decoration: underline;
}

.tmb-box {
	padding: 60px 50px;
}

.tmb-txt-wrap {
	text-align: center;
}

.tmb-txt-title {
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.tmb-txt-title::before {
	content: "";
	width: 50px;
	height: 4px;
	border-radius: 5px;
	background: #139CE7;
	bottom: 0;
	left: 0;
	position: absolute;
}

.tmb-txt-title h3 {
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.tmb .tmb-txt-txt p {
	font-weight: normal;
	font-size: 18px;
	color: #ffffff;
	letter-spacing: 0.05em;
	line-height: 1.8;
	padding-bottom: 30px;
	width: 100%;
	max-width: 100%;
	margin: 0;
	border-bottom: none;
}

.tmb .tmb-txt-txt p:last-child {
	padding-bottom: 40px;
}

.tmb .tmb-txt-txt p span {
	font-weight: 700;
	display: block;
}

.performance__tab__title h2 {
  font-weight: 700;
  font-size: 56px;
}

.performance__tab__title h3 {
	font-size: 48px;
	color: #ffffff;
	padding: 0 0 40px 0;
}

.performance__tab__title p {
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
	padding: 10px 0 20px;
}
.cast-btn ul {
	display: flex;
	justify-content: space-between;
	max-width: 1160px;
	margin: 0 auto 30px;
}

.cast-btn ul li {
	width: 23%;
}

.cast-btn ul li a {
	display: block;
	background: #fff;
	border: 1px solid #f26d8f;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.05em;
	line-height: 1.4;
	text-align: center;
	color: #9a1829;
	padding: 10px 0;
}

.cast-btn-link {
	padding-bottom: 60px;
	text-align: center;
}

.cast-btn-link a {
	font-weight: 500;
	text-decoration: underline;
	font-size: 20px;
	letter-spacing: 0.05em;
	text-align: center;
	color: #fff;
	display: block;
	margin-bottom: 20px;
}

.cast-btn-link p {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.05em;
	color: #fff;
}

.cast-btn-link p span {
	font-size: 20px;
}

.cast {
	position: relative;
	display: flex;
	justify-content: space-between;
	min-height: 100vh;
	padding: 0;
	overflow: initial;
}

.rellax {
	position: relative;
	width: 100%;
	height: auto;
}

.sticked-cont {
	width: 500px;
	position: relative;
	background: #139CE7;
}

#cast02 .sticked-cont {
	background: #A30A5D;
}

#cast03 .sticked-cont {
	background: #149742;
}

#cast04 .sticked-cont {
	background: #ffffff;
}

.sticked-cont-img {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	left: 0;
	height: 100vh;
}

.scroll-cont {
	width: calc(100% - 500px);
	padding: 0px;
	position: relative;
}

.main .swiper-pagination {
bottom: initial;
left: initial;
position: relative;
margin-top: 40px;
}

.main .swiper-pagination-bullet {
	border: 1px solid #ffffff;
	background: rgba(0, 0, 0, 0);
	opacity: 0.5;
  transition: all 0.4s ease;
  transform: scale(1);
  filter: blur(0px);	
}

.main .swiper-pagination-bullet-active {
	background: #ffffff;
	opacity: 0.7;
  transform: scale(1.1);
  filter: blur(1px);
  transition: all 0.4s ease;
}

.cast-txt-cont {
	padding: 130px 50px 0;
}

.cast-txt-day {
	text-align: center;
	margin-bottom: 40px;
}

.cast-txt-day p {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.05em;
	color: #fff;
}

.cast-txt-day p span {
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 0.05em;
	color: #fff;
	padding: 0 5px;
}

.cast-txt-time {
	margin-bottom: 30px;
}

.cast-txt-time:last-child {
	margin-bottom: 0;
}

.cast-txt-time p {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.05em;
	color: #fff;
}

.cast-txt-time p span {
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 0.05em;
	color: #fff;
	padding: 0px;
	line-height: 1.3;
}

.cast-txt-time small {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.05em;
	color: #fff;
	padding-top: 5px;
	display: block;
}

.scroll-cont-one {
	width: 100%;
	position: sticky;
	top: 0;
	left: 0;
	height: 100vh;
}

.scroll-cont-one-img {
	width: 100%;
	height: 100%;
}

.scroll-cont-one-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.scroll-bg {
	border-radius: 10px;
	padding: 30px 20px;
	background: rgba(220, 78, 115, 0.8);
	width: calc(100% - 120px);
	margin: 0 auto 60px;
	z-index: 1;
	position: relative;
}

.scroll-cont-two {
	width: 100%;
	position: relative;
}

.scroll-cont-two-img {
	width: 100%;
}

.scroll-cont-two-img ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: baseline;
}

.scroll-cont-two-img ul li {
	width: 47.5%;
	margin-right: 5%;
	position: relative;
	margin-bottom: 60px;
}

.scroll-cont-two-img ul li:nth-child(even),
.scroll-cont-two-img ul li:last-child {
	margin-right: 0;
	margin-bottom: 0;
}

.cast-role {
	position: absolute;
	top: 30px;
	left: 20px;
}

.cast-role p {
	font-weight: 600;
	font-size: 24px;
	text-align: left;
	color: #fff;
}

.cast-role p.loos {
	font-size: 30px;
	padding-bottom: 10px;
}

.cast-name {
	position: absolute;
	bottom: 30px;
	left: 20px;
}

.cast-name p {
	font-weight: 700;
	font-size: 30px;
	line-height: 1.6;
	text-align: left;
	color: #fff;
}

.scroll-cont-three {
	width: 100%;
	position: relative;
	padding-bottom: 20px;
}

.scroll-cont-three-cont {
	margin-bottom: 0px;
}

.scroll-cont-three-cont-title {
	margin-bottom: 20px;
}

.scroll-cont-three-cont-title p {
	font-weight: 700;
	font-size: 20px;
	color: #000;
}

.scroll-cont-three-cont-img ul {
	display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.scroll-cont-three-cont-img li {
  text-align: center;
}

.scroll-cont-three-cont-img img {
	display: block;
	margin-bottom: 10px;
	max-width: 183.34px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.scroll-cont-three-cont-img ul li p {
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	color: #ffffff;
	margin-top: 8px;
}

.scroll-cont-four {
	width: 100%;
	position: relative;
	padding-bottom: 100px;
}

.scroll-cont-four-txt {
	margin-bottom: 50px;
}

.scroll-cont-four-txt-title {
	margin-bottom: 30px;
	text-align: left;
}

.scroll-cont-four-txt-title p {
	font-weight: bold;
	font-size: 32px;
	letter-spacing: 0.05em;
	color: #fff;
}

.scroll-cont-four-txt-title p span {
	font-size: 36px;
}

.scroll-cont-four-txt-list ul li {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin-bottom: 5px;
	line-height: 1.6;
	color: #fff;
}

.scroll-cont-four-txt-list ul li.pb {
	padding-bottom: 20px;
}

.scroll-cont-four-txt-list-left {
	width: 32.5%;
	font-size: 14px;
	line-height: 1.6;
	color: #fff;
	text-align: left;
}

.scroll-cont-four-txt-list-right {
	width: 65%;
	font-size: 14px;
	line-height: 1.6;
	color: #fff;
	text-align: left;
}

.scroll-cont-four-txt-caution {
	margin-bottom: 50px;
}

.scroll-cont-four-txt-caution p {
	font-size: 14px;
	line-height: 1.5em;
	color: #fff;
}

.cmn-btn a {
	display: block;
	max-width: 400px;
	background: #9B161E;
	border: 1px solid #9B161E;
	text-align: center;
	padding: 15px 0;
	font-weight: 500;
	font-size: 18px;
	color: #fff;
	margin: 0 auto;
	transition: all .7s;
	line-height: 1.8em;
}

.cmn-btn a p {
	font-size: 24px;
}

.cmn-btn a span {
	font-size: 16px;
	display: block;
	font-weight: 400;
}

.cmn-btn a:hover {
	background: #EFEFEF;
	color: #9B161E;
	border-color: #9B161E;
}

/** SOLD　OUT時のスタイル **/
.cmn-btn-sold-out {
	position: relative;
	background-color: #9B161E; /* 赤色の背景 */
    font-style: normal;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: block;
	font-size: 16px;
	line-height: 1.8em;
	cursor: not-allowed;
	overflow: hidden;
	margin: 0 auto;
	max-width: 400px;
}


.cmn-btn-sold-out::after {
	content: 'SOLD OUT';
	position: absolute;
	font-family: "Noto Sans JP";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-30deg);
	/* background-color: rgba(0, 0, 0, 0.8); */
	color: white;
	padding: 5px 50px;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	white-space: nowrap;
}

.cmn-btn-sold-out span {
	opacity: 0.5;
	/* 元のテキストを薄く表示 */
	font-size: 16px;
	display: block;
	padding-bottom: 10px;
}

.cmn-btn-sold-out p {
	opacity: 0.5;
	/* 元のテキストを薄く表示 */
	font-size: 20px;
	display: block;
	padding-bottom: 10px;
}

/** SOLD　OUT時のスタイル **/
.swiper-button-next {
	background: url(../img/swiper_next.svg) no-repeat center center / contain;
}

.swiper-button-prev {
	background: url(../img/swiper_prev.svg) no-repeat center center / contain;
}

.swiper-button-prev,
.swiper-button-next {
	width: 80px;
	width: 80px;
	height: 80px;
}

.swiper-button-prev {
	left: 50px;
}

.swiper-button-next {
	right: 50px;
}

/* ========================================================
  About（芸術監督：コンテンツ用）
======================================================== */

.about-title {
	padding: 100px 0 40px;
	text-align: center;
}

.about {
  /* セクション高さ（通常は 600〜800px あたりで収まる） */
  --about-min-h: 600px;   /* 最小高さ */
  --about-max-h: 800px;   /* 最大高さ */
  /* テキストの位置（画像上の about-txt） */
  --txt-left: 65%;        /* 左右位置（%） */
  --txt-bottom: 14%;      /* 下からの距離（%） */
  /* 画像の見え方（倍率・移動・基準位置） */
  --img-scale: 1.6;       /* 倍率 */
  --img-shift-x: -9vw;    /* 左右移動（vw が扱いやすい） */
  --img-shift-y: 0vw;     /* 上下移動 */
  --img-pos-x: 0%;        /* object-position X（0% = 左） */
  --img-pos-y: 100%;      /* object-position Y（100% = 下） */
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  height: clamp(var(--about-min-h), 80vh, var(--about-max-h));
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  z-index: 1;
}

.about .scroll-cont {
	width: 50%;
	padding: clamp(15px, 1.25vw, 30px);
	background: rgba(40, 40, 40, 0.5);
}

.about .sticked-cont {
	width: 50%;
	height: 100%;
	overflow: hidden;
	background: initial;
	position: relative;
}

.about .sticked-cont picture {
  position: absolute;
  inset: 0;
  display: block;
}

.about .sticked-cont img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  object-position: var(--img-pos-x) var(--img-pos-y);
  transform-origin: left bottom;
  transform: translate(var(--img-shift-x), var(--img-shift-y)) scale(var(--img-scale));
}

.scroll-cont-about-txt {
	padding: padding: clamp(24px, 4vw, 60px);
}

.scroll-cont-about-txt p {
	font-weight: 500;
	font-size: clamp(14px, 1.25vw, 18px);
	letter-spacing: 0.05em;
	line-height: 1.7;
	text-align: left;
	color: #ffffff;
	padding-bottom: clamp(12px, 2.1vw, 30px);
}

.about-txt {
	position: absolute;
  left: var(--txt-left);
  bottom: var(--txt-bottom);
  transform: translate(-50%, 0);
	text-align: center;
	white-space: nowrap;
}

.about-txt h3 {
	font-weight: 700;
	font-size: clamp(22px, 2.78vw, 40px);
	color: #fff;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

.about-txt h3 span {
	font-size: clamp(18px, 2.36vw, 34px);
	padding-right: clamp(8px, 1.39vw, 20px);
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

.about-txt p {
	font-weight: 700;
	font-size: clamp(20px, 2.78vw, 40px);
	color: #fff;
	line-height: 1.25;
	text-align: right;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

.schedule,
.ticket {
	margin: -60px 0 0;
}

.performance__tab__title {
	max-width: 1200px;
	margin-bottom: 60px;
	text-align: center;
	display: block;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin: 0 auto 40px auto;
}

.performance__tab__title > * {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.title-link {
	font-family: oswald,"Noto Sans JP";
	width: clamp(240px, 40.5vw, 600px);
  height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: clamp(20px, 2vw, 33.6px);
  line-height: 1.5;
  color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.title-link:hover {
  opacity: 0.8;
}


.performance-tab-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 20px;
  justify-content: center;
}

.performance-tab {
  padding: 12px 24px;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  transition: 0.3s;
}

.performance-tab .active {
  color: #fff;
}

.performance__Headline {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.performance__Headline h4 {
  font-size: 48px;
  color: #ffffff;
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
}


.performance__Head-line .credit__label {
  font-size: clamp(10px, 1.9vw, 14px);
  font-weight: 500;
  padding: clamp(10px, 1.6vw, 16px) clamp(12px, 1.8vw, 20px);
  margin: 0 0 10px;
  border: 1px solid;
  border-image: linear-gradient(to right, #8AECC4, #e06df0) 1;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.headline__Line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, #82ecec, #e06df0);
  border: none;
}

/* ========================================================
  Ticket（チケットタブボタン用、外部リンク）
======================================================== */
/* 作品見出しや作品タイトル , 振付・出演者紹介 */
.ticket-link {
  display:grid;
  grid-template-columns:repeat(2, minmax(1,1fr));
  gap: clamp(12px,3.3vw,20px) clamp(8px,1.7vw,20px);
  max-width:555px;
  margin: clamp(20px,6vw,80px) auto 0;
  box-sizing:border-box;
  padding-inline: 0;
}

/* カード本体：比率ボックス＋枠線（schedule と同じ仕組み） */
.ticket-content{
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 56 / 17;
  padding: 30px 40px;
  overflow: hidden;
  box-sizing: border-box;
  transition: box-shadow .3s, transform .3s, background-color .2s;
}

.ticket-content::before {
  content:"";
  position: absolute;
  inset: 0;
  padding: clamp(1px, .35vw, 2px);
  background: linear-gradient(90deg, #89ECC4, #e06df0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.ticket-content::after {
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.2);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
  pointer-events: none;
}

.ticket-content:hover::after {
  opacity: 1;
}

.ticket-content:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.ticket-content .link-title {
  width: 100%;
  margin: 8px 0 0px;
  background: linear-gradient(to right, #8AECC4, #e06df0);
  -webkit-background-clip:text;
  background-clip: text;
  color: transparent;
  text-align: left;
}

.link-title h2 {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.02em;
}

.link-title h2 span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ticket-content .link-info {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: clamp(8px, 1.6vw, 20px);
  background: linear-gradient(to right, #8AECC4, #e06df0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width:0;
  margin: -9px 0 0;
}

.ticket-content .link-info-left {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.25em;
  min-width: 0;
}

.ticket-content .link-info-left .date {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 4px 0 0;
}

.ticket-content .link-info-left .date span {
  font-size: 20px;
}

.ticket-content .link-info-left .time {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0.25em 0 0;
}

.ticket-content .link-info-right {
  flex: 0 0 auto;
  color: #ffffff;
  background: linear-gradient(to right, #8AECC4, #e06df0);
  padding: 15px 20px;
  margin: 6px 0 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 transparent;
  transition: transform .2s, box-shadow .2s;
}

.ticket-content .link-info-right h3 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.35em;
}

.ticket-content .link-info-right h3 span {
  font-size: 0.75em;
  line-height: 1;
}

#Ticket .cmn-txt {
  max-width: 1200px;
  margin: 0;
  text-align: left;
}

.cmn-txt {
  text-align: left;
  margin-bottom: 50px;
}

.cmn-txt p {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #ffffff;
}

#Ticket .caution-contents {
  margin: 40px auto;
}

/* Ticket ヘッドライン */
.ticket__Head-line {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5%;
}

.ticket__Head-line .credit__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1050px;
}

.ticket__Head-line .credit__row {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 2.2vw, 24px);
}

.ticket__Head-line .credit__label {
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 1.9vw, 20px);
  font-weight: 500;
  min-width: clamp(140px, 17vw, 233px);
  padding: clamp(10px, 1.6vw, 16px) clamp(12px, 1.8vw, 20px);
  border: 1px solid;
  border-image: linear-gradient(to right, #8AECC4, #e06df0) 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  line-height: 1.6;
}

.ticket__Head-line .credit__text {
  font-family: "Noto Sans JP";
  font-size: clamp(18px, 2.4vw, 20px);
  font-weight: 300;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  align-self: center;
  flex: 1;
}

/* アスタリスク用 */
.ticket .caution {
  font-family: "Noto Sans JP";
  max-width: 1200px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-align: left;
  padding: 35px 50px;
}

.ticket .caution h2 {
  font-family: "Noto Sans JP";
  margin: 0 0 25px;
  letter-spacing: 0.1em;
}

.ticket .caution p {
  font-family: "Noto Sans JP";
  margin: 15px 0 0;
  letter-spacing: 0.2em;
}

.ticket .caution-discount {
  font-family: "Noto Sans JP";
  max-width: 1200px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 35px 5px 0;
}

.ticket .caution-discount p {
  font-weight: 600;
  font-size: 48px;
  text-indent: -1em;
  padding-left: 1em;
}

.ticket .caution-discount span {
  font-size: 32px;
}

.ticket .caution-txt {
  font-family: "Noto Sans JP";
  max-width: 1200px;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0.2em;
  display: flex;
  align-items: flex-start;
}

.ticket .caution-txt a {
  margin: 40px 0;
  transform: scale(1);
  font-weight: 500;
  text-decoration: underline;
}

.ticket .caution-txt a:hover {
  transform: scale(1.1);
  font-weight: 600;
  transition: transform 0.3s ease;
}



/* ========================================================
  Youtube（ユーチューブコンテンツ用）
======================================================== */

/* === Youtube レイアウト ================== */
.youtube {
	background: rgba(40, 40, 40, 0.5);
}

.youtube-list ul {
  display: block;
  margin:20px auto;
  padding:0;
  list-style:none;
  width: 500px;
}

.youtube-list ul li {
  position: relative;
  flex: 0 1 calc(50% - (clamp(16px,2vw,30px) / 2));
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.youtube-list ul li iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block; /* ベースライン隙間対策 */
  border: 0;
}

.youtube-cont {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
}

.youtube-cont img {
	position: absolute;
	cursor: pointer;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}


/* ========================================================
  FAQ（FAQコンテンツ用）
======================================================== */

/* === FAQ レイアウト ================== */
.faq-list ul li {
	margin-bottom: 30px;
	padding: 20px;
}

.faq-list ul li .faq-list-flex:nth-child(1) {
	margin-bottom: 20px;
}

.faq-list-flex {
	display: flex;
	justify-content: space-between;
}

.faq-list-flex-title {
	width: 60px;
}

.faq-list-flex-title p {
	font-weight: 500;
	font-size: 26px;
	letter-spacing: 0.1em;
	color: #ffffff;
}

.faq-list-flex-txt {
	width: calc(100% - 60px);
}

.faq-list-flex-txt p {
	font-size: 14px;
	line-height: 1.9;
	color: #ffffff;
}

.faq-list ul li .faq-list-flex:nth-child(1) .faq-list-flex-txt p {
	font-weight: 700;
	font-size: 16px;
}

/* ========================================================
  Access（アクセスコンテンツ用）
======================================================== */

/* === Access レイアウト ================== */
.access {
	background: rgba(0, 0, 0, 0.2);
}


/* ========================================================
  Footer（フッターコンテンツ用）
======================================================== */

/* === Footer レイアウト ================== */
footer {
	margin: 0px;
	padding: 0px;
	background-color: #000;
}

.p-footer__inner.l-inner {
	max-width: 1000px;
	margin: 0 auto;
}

.p-footer__nav ul li {
	color: #fff;
}

.p-footer__nav ul li a {
	font-size: 16px;
}


/* ========================================================
  その他（追従ボタン等、その他のコンテンツ用）
======================================================== */

/* === その他 レイアウト ================== */
.pagetop-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 8px;
  right: 8px;
  z-index: 10;
  cursor: pointer;
  background: #C761E1;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease;
  opacity: 0;
  -webkit-tap-highlight-color: transparent;
}

.pagetop-btn:hover {
  transform: translateY(-6px);
  background: #C761E1;
  color: #ffffff;
}

/* ★ iOS等の安全エリア（ノッチ/ホームバー）を加味して再配置 */
@supports (bottom: env(safe-area-inset-bottom)) {
  .pagetop-btn {
    bottom: calc(env(safe-area-inset-bottom) + 8px);
    right:  calc(env(safe-area-inset-right)  + 8px);
  }
}
/* ★ 旧iOS用フォールバック（iOS 11.x 系） */
@supports (bottom: constant(safe-area-inset-bottom)) {
  .pagetop-btn {
    bottom: calc(constant(safe-area-inset-bottom) + 8px);
    right:  calc(constant(safe-area-inset-right)  + 8px);
  }
}

.cmn-btn-a a,
.cmn-btn-b a,
.cmn-btn-c a {
	text-decoration: none;
	margin-bottom: 20px;
	padding: 25px 0;
}

.cmn-btn-b a {
	background: #139CE7;
	border: 1px solid #139CE7;
}

.cmn-btn-b a:hover {
	background: #fff;
	color: #139CE7;
}

.cmn-btn-c a {
	background: #fff;
	color: #DC4E73;
	border: 1px solid #DC4E73;
}

.cmn-btn-c a:hover {
	background: #DC4E73;
	color: #fff;
}

.sp {
	display: none;
}


@media screen and (max-width:1400px) {
	.news-detail {
		padding: 120px 0;
	}

	.news-detail-box {
		max-width: 100%;
		width: calc(100% - 30px);
		padding: 40px 0px;
	}
}

@media screen and (max-width:1200px) {
	.inner {
		max-width: 100%;
		width: calc(100% - 5%);
		margin: 0 auto;
	}

	.scroll-cont-two-img ul li {
		width: 49%;
		margin-right: 2%;
		margin-bottom: 30px;
	}

	.about picture {
		position: absolute;

	}

}

@media screen and (max-width:1100px) {
	.cast {
		display: block;
		min-height: auto;
	}

	.sticked-cont-txt {
		position: relative;
		top: initial;
		left: initial;
		padding: 100px 20px;
	}

	.sticked-cont-img {
		position: relative;
		top: initial;
		left: initial;
		width: 100%;
		height: auto;
		padding-bottom: 80px;
	}

	.cast .scroll-cont {
		width: 100%;
	}

	.about .sticked-cont-img img {
		position: relative;
		top: initial;
		left: initial;
		object-fit: initial;
		height: auto;
		width: auto;
		max-width: 700px;
		margin: 0px auto;
	}

	.about .sticked-cont-img {
		padding-bottom: 0;
	}

	.mv {
		padding-block: 120px 40px;
	}

	.mv-scroll-content img {
		height: 480px;
		margin-right: 30px;
	}
}

@media screen and (min-width: 600px) and (max-width: 1165px) {
	.pc {
		display: block !important;
	}

 .header {
    position: fixed;
  }

  .header-nav {
    display: none; /* ハンバーガークリック時に表示切り替え */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000; /* メニュー背景色 */
    z-index: 1000;
    overflow-y: auto;
    padding: 80px 20px 20px;
    box-sizing: border-box;
  }

	.header-nav.is-open {
  	display: block;
	}

  .header-logo {
    display: block;
    margin: 0 auto 20px auto;
    text-align: center;
  }

  .header-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .header-nav-list .attention__Box {
    display: inline-flex;
    gap: 16px;
    flex-direction: row;
  }

  .header-right {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

}

@media (min-width: 1166px) {
  .header .menu-toggle { display: none !important; }
}

/* タブレット・SP幅：ボタンを表示 */
@media (max-width: 1165px) {
  .header .menu-toggle {
    display: inline-flex;       /* 既存の見た目を踏襲 */
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }
}

/* PC：ドロワー用SNSは隠す */
@media (min-width: 1166px) {
  .drawer-sns { display: none !important; }
}

/* SP：ヘッダー右側のSNSは隠して、ドロワー内SNSだけ表示 */
@media (max-width: 1165px) {
  .header .sns-list { display: none; }
  .drawer-sns { display: flex; }
}

@media screen and (max-width:834px) {
	.sp {
		display: block !important;
	}

	.pc {
		display: none !important;
	}

	.header-left {
		width: 140px;
	}

	.sns-list {
		width: 160px;
	}

	.sns-list-item {
		width: 35px;
	}

	.mv {
		margin-top: 0;
		height: 100vh;
		min-height: 0;
		padding-block: 0;
	}

  .mv,
  .mv.mv--fullbleed {
  	padding-left: 0 !important;
  	padding-right: 0 !important;
  }

	.mv-scroll-content {
		width: max-content;
		min-width: 100vw;
	}

	.mv-infinite-scroll {
		margin-bottom: 30px;
	}

	.mv-scroll-content img {
		height: 440px;
		margin-right: 20px;
	}

	.mv-inner {
		position: absolute;
		inset: 0;
		display:flex;
		justify-content: flex-end;
		pointer-events: none;
	}

  .mv-title { 
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: var(--mv-offset, -25px);
    width: min(834px, calc(120% - 0px));
    margin: 0;
    z-index: 3;
    pointer-events:none;
  }

  .mv-title picture,
  .mv-title img {
  	display: block;
  	width: 100%;
  	height: auto;
  }

  .mv-bg-video {
  	display: none;
  }

  .mv-sp {
  	display: block;
  	position: absolute;
  	inset: 0;
  	overflow: hidden;
  }

  .mv-sp img {
    position: absolute;
    left: 50%; bottom: 0; transform: translateX(-50%);
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
  }

	section {
		padding: 60px 0;
	}

	section.mv.mv--fullbleed {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .cmn-title {
		margin-bottom: 40px;
	}

	.news-box {
		padding: 30px 20px;
	}

	.news-box-list-txt h3 {
		font-size: 16px;
	}

	.news-box-list-day p {
		font-size: 14px;
	}

	.tmb-box {
		padding: 30px 10px;
	}

	.tmb-txt-title h3 {
		font-size: 20px;
	}

	.tmb-txt-title::before {
		width: 40px;
		height: 2px;
	}

	.tmb-txt-title {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.tmb .tmb-txt-txt p {
		font-size: 14px;
		padding-bottom: 20px;
	}

	.tmb .tmb-txt-txt p {
		font-weight: normal;
		font-size: 14px;
		letter-spacing: 0.05em;
		line-height: 1.8;
		padding-bottom: 20px;
	}

	.cmn-txt p {
		font-size: 16px;
	}

	.cast-btn ul {
		flex-wrap: wrap;
		max-width: 500px;
		margin-bottom: 25px;
	}

	.cast-btn ul li {
		width: 49%;
		margin-bottom: 10px;
	}

	.cast-btn ul li a {
		font-size: 18px;
	}

	.cast-txt-cont .cmn-title {
		margin-bottom: 20px;
	}

	.cast-txt-cont .cmn-title h2 {
		font-size: 36px;
	}

	.cast-txt-day {
		margin-bottom: 25px;
	}

	.cast-txt-day p,
	.cast-txt-time p {
		font-size: 16px;
	}

	.cast-txt-time {
		max-width: 300px;
		margin: 0 auto 20px;
	}

	.cast-txt-day p span {
		font-size: 24px;
	}

	.cast-txt-time p span {
		font-size: 24px;
	}

	.scroll-bg {
		padding: 25px 15px 0px;
		width: calc(100% - 40px);
		margin: 0 auto 40px;
	}

	.scroll-cont-two {
		padding-bottom: 60px;
	}

	.scroll-cont-one {
		display: none;
	}

	.scroll-cont {
		background-image: url(../img/pala_bg.webp);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		padding: 30px 0;
	}

	.cast-role {
		top: 20px;
		left: 15px;
	}

	.cast-role {
		position: absolute;
		top: 20px;
		left: 15px;
	}

	.cast-role p {
		font-size: 16px;
	}

	.cast-role p.loos {
		font-size: 20px;
	}

	.cast-name {
		bottom: 20px;
		left: 15px;
	}

	.cast-name p {
		font-weight: 700;
		font-size: 20px;
	}

	.scroll-cont-three-cont-title p {
		font-size: 18px;
	}

  .scroll-cont-three-cont-img ul {
    grid-template-columns: repeat(3, 1fr);
  }

	.scroll-cont-three-cont-img ul li p {
		font-size: 12px;
	}

	.scroll-cont-three-cont {
		margin-bottom: 40px;
	}

	.scroll-cont-four-txt-title p {
		width: 100px;
		height: 30px;
		line-height: 29px;
	}

	.scroll-cont-four {
		padding-bottom: 40px;
	}

	.cmn-btn a {
		max-width: 300px;
		padding: 12.5px 0;
		font-size: 16px;
	}

	.cmn-btn a span {
		font-size: 14px;
		line-height: 1.4;
	}

	.cmn-btn a p {
		line-height: 1.5;
		font-size: 20px;
	}

	.modal-content {
		padding: 30px 0;
	}

	.scroll-cont-four-txt-title {
		margin-bottom: 20px;
	}

	.scroll-cont-four-txt-title p span {
		font-size: 24px;
		white-space: nowrap;
	}

	.scroll-cont-four-txt-list-left,
	.scroll-cont-four-txt-list-right {
		font-size: 12px;
	}

	.cast {
		margin-top: -1px;
	}

	/** SOLD OUT時　　**/
	.cmn-btn-sold-out {
		max-width: 300px;
	}

	.cmn-btn-sold-out span {
		font-size: 14px;
		line-height: 1.0;
	}

	/* about画像 サイズ調整用 */
	.about {
  	/* セクション高さ（通常は 600〜800px あたりで収まる） */
  	--about-min-h: 500px;   /* 最小高さ */
  	--about-max-h: 595px;   /* 最大高さ */
  	/* テキストの位置（画像上の about-txt） */
  	--txt-left: 65%;        /* 左右位置（%） */
  	--txt-bottom: 14%;      /* 下からの距離（%） */
  	/* 画像の見え方（倍率・移動・基準位置） */
  	--img-scale: 1.6;       /* 倍率 */
  	--img-shift-x: -11vw;    /* 左右移動（vw が扱いやすい） */
  	--img-shift-y: 0vw;     /* 上下移動 */
  	--img-pos-x: 0%;        /* object-position X（0% = 左） */
  	--img-pos-y: 100%;      /* object-position Y（100% = 下） */
  	position: relative;
  	display: flex;
  	justify-content: space-between;
  	max-width: 834px;
  	height: clamp(var(--about-min-h), 80vh, var(--about-max-h));
  	min-height: 0;
  	margin: 0 auto;
  	padding: 0;
  	z-index: 1;
	}

	.schedule-list ul li {
		font-size: 16px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.schedule-list ul li::before {
		width: 40px;
		height: 2px;
	}

	.schedule-table table th {
		padding: 15px 5px;
		font-size: 18px;
	}

	.schedule-table table td {
		padding: 15px 5px;
		font-size: 14px;
	}

	.schedule-table table td span {
		font-size: 10px;
	}

	.schedule-table table td span.soldout {
		font-size: 15px;
		top: 5px;
	}

	.schedule-table {
		margin: 60px auto 30px;
		max-width: 100%;
		overflow-x: scroll;
	}

	.schedule-table table {
		min-width: 600px;
	}

	.schedule-box {
		margin: 0 auto 30px;
		padding: 25px 5px;
	}

	.schedule-box p {
		font-size: 24px;
		line-height: 1.3;
	}

	.caution-txt p {
		font-size: 14px;
	}

	.ticket .schedule-table table th {
		border: none;
		padding: 15px 5px;
		font-size: 16px;
		width: 100%;
		display: block;
		margin: 0;
	}

	.ticket .schedule-table table td {
		padding: 15px;
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}

	.schedule-table {
		margin: 60px auto 20px;
		padding-bottom: 20px;
	}

	.ticket .schedule-table {
		padding-bottom: 0;
	}

	.ticket-table {
		max-width: 100%;
		margin: 0 auto 40px;
	}

	.faq-list ul li {
		margin-bottom: 20px;
		padding: 15px 10px;
	}

	.faq-list-flex-title p {
		font-size: 24px;
	}

	.faq-list-flex-title {
		width: 40px;
	}

	.faq-list-flex-txt {
		width: calc(100% - 40px);
	}

	.faq-list-flex-txt p {
		font-size: 14px;
		line-height: 1.6;
	}

	.faq-list ul li .faq-list-flex:nth-child(1) .faq-list-flex-txt p {
		font-size: 16px;
	}

	.faq-list ul li .faq-list-flex:nth-child(1) {
		margin-bottom: 10px;
	}

	.p-footer {
		padding-top: 5rem;
	}

	.p-footer__nav ul {
		gap: 2rem;
		grid-template-columns: repeat(1, 1fr);
	}

	.p-footer__nav ul li a {
		font-size: 1rem;
	}

	.p-footer__nav ul li:last-child {
		grid-column: unset;
	}

	.p-footer__copy {
		font-size: 0.875rem;
		margin-top: 5.125rem;
	}

	.p-footer__nav ul {
		gap: 1.5rem;
		grid-template-columns: repeat(1, 1fr);
	}

	.p-footer {
		padding-block: 4rem 7rem;
	}

	.p-footer__inner.l-inner {
		max-width: 100%;
		padding: 0 20px;
	}

	.p-footer__nav ul li a {
		font-size: 16px;
	}

	.p-footer__nav ul li:last-child {
		grid-column: initial;
	}

	.cmn-txt {
		margin-bottom: 40px;
		padding: 0 15px;
	}

	.cast-txt-cont {
		padding: 40px 10px 0;
	}

	.sticked-cont-img {
		padding-bottom: 50px;
	}

	.news-detail-box h1 {
		font-size: 24px;
		padding: 12.5px;
		margin-bottom: 15px;
	}

	.news-detail-box h2 {
		padding-left: 10px;
		font-size: 20px;
		margin-bottom: 15px;
	}

	.news-detail-box p {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.news-detail-box a {
		font-size: 14px;
		padding-bottom: 15px;
	}

	.news-detail-box h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.news-detail-box h3::before {
		width: 15px;
		height: 1px;
		bottom: -4.5px;
	}

	.news-detail-box ul li {
		font-size: 14px;
	}

	.news-detail-box small {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.news-detail .inner {
		width: calc(100% - 30px);
	}

	.news-detail-box table th {
		display: block;
		width: 100%;
		border: none;
		font-size: 16px;
		padding: 15px 5px;
	}

	.news-detail-box table td {
		display: block;
		width: 100%;
		margin-bottom: 10px;
		font-size: 16px;
		padding: 15px;
	}

	.support-list li {
		width: 49%;
	}

	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	.main {
		overflow: hidden;
	}

	.scroll-cont-about-txt {
		padding: 0;
	}

	.sponsor ul{
        flex-direction: column; /* 縦並びに変更 */
	}

	.sponsor li {
        margin-right: 0; /* 横並びの時のマージンを削除 */
        margin-bottom: 20px; /* 項目間の間隔を設定 */
	}

      /* 最後のli要素の下マージンを削除 */
	.sponsor li:last-child {
        margin-bottom: 0;
	}

}


/* ========================================================
  SP（スマホ表示用）
======================================================== */

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

	/* about画像 サイズ調整用 */
	.about {
  	/* セクション高さ */
  	--about-min-h: 500px;   /* 最小高さ */
  	--about-max-h: 595px;   /* 最大高さ */
  	/* テキストの位置（画像上の about-txt） */
  	--txt-left: 65%;        /* 左右位置（%） */
  	--txt-bottom: 14%;      /* 下からの距離（%） */
  	/* 画像の見え方（倍率・移動・基準位置） */
  	--img-scale: 1.6;       /* 倍率 */
  	--img-shift-x: -17vw;    /* 左右移動（vw が扱いやすい） */
  	--img-shift-y: 0vw;     /* 上下移動 */
  	--img-pos-x: 0%;        /* object-position X（0% = 左） */
  	--img-pos-y: 100%;      /* object-position Y（100% = 下） */
  	position: relative;
  	display: flex;
  	justify-content: space-between;
  	max-width: 768px;
  	height: clamp(var(--about-min-h), 80vh, var(--about-max-h));
  	min-height: 0;
  	margin: 0 auto;
  	padding: 0;
  	z-index: 1;
	}
	/* 作品見出しや作品タイトル , 振付・出演者紹介 */

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

}

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

	/* about画像 サイズ調整用 */
	.about {
    --img-h-min: 360px;          /* 画像ブロックの最小高さ */
    --img-h-max: 560px;          /* 画像ブロックの最大高さ */
    --img-h: clamp(var(--img-h-min), 56vh, var(--img-h-max)); /* 実高さ */

    --img-scale: 1.3;            /* 画像の拡大率 */
    --img-shift-x: -15vw;        /* 画像の横移動（-で左 / +で右） */
    --img-shift-y:  0vw;        /* 画像の縦移動（-で上 / +で下） */
    --img-pos-x: 0%;             /* object-position X（0%=左, 50%=中央, 100%=右） */
    --img-pos-y: 100%;           /* object-position Y（0%=上, 100%=下） */

    --txt-left:   65%;           /* 肩書き/氏名の横位置（%） */
    --txt-bottom: 14%;           /* 下からの距離（%） */

    /* ★セクションは自動高さに戻す（食い込み防止） */
    display: block;
    height: auto;
    min-height: 0;
    max-width: 767px;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
  }

	.about .sticked-cont {
    width: 100%;
    height: var(--img-h);   /* ←ここだけで画像側の“見せる量”を調整 */
    position: relative;
    overflow: hidden;
    background: initial;
	}

	.about .sticked-cont img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--img-pos-x) var(--img-pos-y);
    transform-origin: left bottom;
    transform: translate(var(--img-shift-x), var(--img-shift-y)) scale(var(--img-scale));
  }

	.about-txt {
    position: absolute;
    left: var(--txt-left);
    bottom: var(--txt-bottom);
    text-align: center;
	}

	.about-txt h3 {
    font-size: clamp(34px, 2.78vw, 40px);
	}

	.about-txt p {
    font-size: clamp(28px, 2.78vw, 40px);
	}

	.about .scroll-cont {
    width: 100%;
    padding: clamp(20px, 4vw, 32px);
    background: rgba(40,40,40,.5);
    height: auto;                /* ←内側スクロールをやめる */
    overflow: visible;           /* ←縦スクロールバーを出さない */
    -webkit-overflow-scrolling: auto;
  }

  .access-grid {
    display: block;
    margin: clamp(20px, 6vw, 80px) auto 0;
    padding: 0 clamp(6px, 1.8vw, 14px);;
  }
  .fixed-right ul li a {
	width: 200px;
	height: auto;
	writing-mode:horizontal-tb;
  }
}

.ticket .schedule-table {
	margin-top: 40px;
}

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

.schedule-table table th {
	background: #000;
	text-align: center;
	padding: 17.5px 5px;
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	border-right: 1px solid #fff;
}

.schedule-table table th:nth-child(1) {
	border: none;
	background: #fff;
}

.schedule-table table tr:nth-child(2) td {
	border-top: 1px solid #ffffff;
}

.schedule-table table th span {
	font-size: 16px;
	display: block;
	padding-top: 7.5px;
}

.schedule-table table td {
	width: 20%;
	padding: 20px 5px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	position: relative;
	border-right: 1px solid #ffffff;
}

.schedule-table table tr.blue td {
	background: #000;
	color: #fff;
	border-right: 1px solid #ffffff;
}

.schedule-table table td:last-child {
	border-right: none;
}

.schedule-table table td span {
	font-size: 12px;
	font-weight: 500;
	color: #cc0000;
	position: absolute;
	top: 4.5px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.schedule-table table td span.soldout {
	color: brown;
	font-size: 18px;
	top: 15px;
	font-weight: bold;
}

.schedule-box {
	max-width: 1000px;
	margin: 0 auto 40px;
	background: #DC4E73;
	text-align: center;
	padding: 35px 5px;
}

.schedule-box p {
	font-weight: 700;
	font-size: 36px;
	color: #fff;
}

.ticket-btns {
	margin-bottom: 20px;
}

.ticket-table {
	max-width: 1000px;
	margin: 0 auto 60px;
}

.ticket .cmn-btn a {
	width: 100%;
	border-radius: 0;
	margin-bottom: 15px;
}

.ticket .schedule-table table th {
	background: #DC4E73;
	border: 1px solid #fff;
	padding: 20px 5px;
	font-size: 18px;
	vertical-align: middle;
	width: 30%;
}

.ticket .schedule-table table tr:nth-child(1) th {
	border-top: 1px solid #DC4E73;
}

.ticket .schedule-table table tr:last-child th {
	border-bottom: 1px solid #DC4E73;
}

.ticket .schedule-table table td {
	width: 70%;
	padding: 20px 20px 20px 30px;
	text-align: left;
	border: 1px solid #dc4e73;
}

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

	.scroll-cont-four-txt-list-right {
		width: 66.5%;
		font-size: 12px;
	}

	.scroll-cont-four-txt-list-left {
		width: 32.5%;
		font-size: 12px;
	}

	section {
		padding: 40px 0;
	}

	.cmn-title {
		margin-bottom: 30px;
	}

	.news-box-list ul li a {
		display: block;
	}

	.news-box-list-day {
		width: 100%;
		margin-bottom: 5px;
	}

	.news-box-list-txt {
		width: 100%;
	}

	.tmb-txt-title h3 {
		font-size: 16px;
	}

	.tmb .tmb-txt-txt p:last-child {
		padding-bottom: 0px;
	}

	.scroll-cont-two-img ul {
		display: block;
	}

	.scroll-cont-two-img ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.scroll-cont-two-img ul li:nth-child(even) {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.scroll-cont-three-cont-img ul {
		flex-wrap: wrap;
	}

	.scroll-cont-three-cont-img li {
    grid-template-columns: repeat(2, 1fr);
	}

	.scroll-cont-three-cont {
		margin-bottom: 20px;
	}

	.about .sticked-cont-img img {
		max-width: 100%;
	}

	.scroll-cont-about-txt p {
		font-size: 14px;
	}

	.about .scroll-cont {
		padding: 40px 20px 10px;
	}

	.schedule-box p {
		font-size: 20px;
	}

	.ticket .schedule-table table {
		min-width: auto;
	}

	.ticket .schedule-table table td {
		padding: 12.5px 15px;
		line-height: 1.5;
	}

	.p-footer__nav ul li a {
		font-size: 14px;
	}

	.header {
		padding: 10px 15px;
	}

	.header-left {
		width: 120px;
	}

	.news-detail {
		padding: 80px 0;
	}

	.news-detail-box {
		padding: 30px 0px;
	}

	.support-list {
		display: block;
		max-width: 100%;
	}

	.support-list li {
		width: 100%;
		margin-bottom: 40px;
	}

	.news-detail-box h1 {
		font-size: 20px;
	}

	.youtube-list ul {
  	width: 90%;
	}

	.cast-btn ul li a,
	.cast-btn-link a,
	.cast-btn-link p {
		font-size: 16px;
	}

	.cast-btn-link p span {
		font-size: 18px;
	}

	.schedule-table table th span,
	.schedule-table table th {
		font-size: 14px;
	}
}

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

	/* about画像 サイズ調整用 */
	.about {
    --img-h-min: 260px;          /* 画像ブロックの最小高さ */
    --img-h-max: 350px;          /* 画像ブロックの最大高さ */
    --img-h: clamp(var(--img-h-min), 56vh, var(--img-h-max)); /* 実高さ */
    --img-scale: 1.3;            /* 画像の拡大率 */
    --img-shift-x: -16vw;        /* 画像の横移動（-で左 / +で右） */
    --img-shift-y:  10vw;        /* 画像の縦移動（-で上 / +で下） */
    --img-pos-x: 0%;             /* object-position X（0%=左, 50%=中央, 100%=右） */
    --img-pos-y: 100%;           /* object-position Y（0%=上, 100%=下） */
    --txt-left:   50%;           /* 肩書き/氏名の横位置（%） */
    --txt-bottom: 5%;           /* 下からの距離（%） */
    max-width: 430px;
  }

	.about .sticked-cont {
    width: 100%;
    height: var(--img-h);   /* ←ここだけで画像側の“見せる量”を調整 */
    position: relative;
    overflow: hidden;
    background: initial;
	}

	.about-txt h3 {
    font-size: clamp(30px, 2.78vw, 40px);
	}

	.about-txt p {
    font-size: clamp(24px, 2.78vw, 40px);
	}

	.youtube-list ul{
    display:block;
    margin: 0 auto;
  }

  .youtube-list ul li{
    width: 100%;
    margin: 0 0 clamp(16px,3vw,20px);
  }

}


.caution-info-text {
	width: 100%;
	padding: 20px;
	background-color: #EFEFEF;
	color: #000;
	box-sizing: border-box;
	max-width: 100%;
	margin: 0 auto;
	padding-bottom: 20px;
}

.caution-info h3 {
	font-size: 24px;
	font-weight: bold;
	color: #000;
	margin-block: 60px 20px;
}

.caution-info-text p {
	font-size: 16px;
	color: #000;
	line-height: 1.8;
	text-indent: -1em;
	padding-left: 1em;
}

@media (max-width: 500px) {
	.news-box-list ul li {
		display: block;
	}

	.scroll-cont-four-txt-title p span {
		font-size: 22px;
	}

	.modal-close {
		right: 15px;
		font-size: 30px;
		width: 30px;
	}
}
