/* ========== 共通 ========== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
  --c_set1: #B8183F;
  --c_set2: #0086CD;
  --c_set3: #00AFEC;
  --c_set4: #ffe72d;
  --c_set5: #886bad;
  --c_set6: #8fc763;
}

:root {
	--m_space: calc((100vw - 1640px) / 2);
	--m_space-in: calc((100vw - 1360px) / 2);
}

html {
	font-family: "Adobe Garamond Pro", "Garamond", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", -apple-system, BlinkMacSystemFont, "Meiryo", serif;
	font-size:calc(100vw / 39);
	color:#ffffff;
	background-color: #000000;
	margin: 0 auto;
	padding: 0;
	min-width: 320px;

	scroll-behavior:smooth;
	-webkit-scroll-behavior:smooth;
	overscroll-behavior-y:contain;
	-webkit-overflow-scrolling: touch;
	overflow-y: scroll;
	overflow-x: hidden;

	opacity: 0;
}

body, header, section, footer {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5 {
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	text-decoration: underline;
	color: var(--c_set2);
	-webkit-transition: all 0.5s;
	-webkit-transition-delay: 0;
	transition: all 0.5s;
	transition-delay: 0;
	opacity: 1;
}
a:hover {
	color: #FFE200;
}
body {
	position: relative;
	background: url("../img/bg_sp.png") no-repeat top;
	background-size: cover;
	background-attachment: fixed;
}

p {
	margin-bottom: 1.5em;
}

#main_wrapper {
	position: relative;
	margin: 0 auto;
	min-height: 100lvh;
}

header {
	position: relative;
	display: grid;
	place-items: center;
	background-color: #000000;
}
nav a {
	color: #ffffff;
	text-decoration: none;
}


input[name="kv-switch"] {
    display: none;
}
#kv_box div {
	opacity: 0;
	pointer-events: none;
	transition: all 1s ease-in-out;
}
#kv0-radio:checked ~ #kv_box #kv0,
#kv1-radio:checked ~ #kv_box #kv1,
#kv2-radio:checked ~ #kv_box #kv2,
#kv3-radio:checked ~ #kv_box #kv3 {
	opacity: 1;
}
#kv0-radio:checked ~ #kv_btn .btn0,
#kv1-radio:checked ~ #kv_btn .btn1,
#kv2-radio:checked ~ #kv_btn .btn2,
#kv3-radio:checked ~ #kv_btn .btn3 {
	opacity: 0.6;
	pointer-events: none;
}
#kv_btn label {
    cursor: pointer;
    display: inline-block;
}

#kv_box {
	display: grid;
	position: relative;
	place-items: center;
	width: 100%;
	height: 84lvh;
	overflow: hidden;
}
#kv_box div {
	display: grid;
	place-items: center;
	grid-row: 1;
    grid-column: 1;
	position: static;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}
#kv_box div img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 84lvh;
	object-fit: contain;
}
#kv_btn {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;

	height: 16lvh;
	gap:0 1em;
	padding-right: 1em;
}
#kv_btn::before {
	content: "";
	display: block;
	width: 80%;
	margin: 0 0 0 20%;
	background-image: url("../img/visual.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
}

#kv_btn label {
	position: relative;
	display: inline-block;
	height: min(60%,20vw);
	aspect-ratio: 1 / 1;
	border: none;
	padding: 0;
	transition: all 0.25s ease;

	background-color: #ffffff;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)			
}
#kv_btn label:hover {
	filter: brightness(1.2);
}
#kv_btn label.btn0::after {
	background: url('../img/btn0.webp') no-repeat;
	background-size: 60%;
	background-position: center;
}
#kv_btn label.btn1::after {
	background: url('../img/btn1.webp') no-repeat;
	background-size: 60%;
	background-position: center;
}
#kv_btn label.btn2::after {
	background: url('../img/btn2.webp') no-repeat;
	background-size: 60%;
	background-position: center;
}
#kv_btn label.btn3::after {
	background: url('../img/btn3.webp') no-repeat;
	background-size: 60%;
	background-position: center;
}
#kv_btn label::after {
	content: "";
	position: absolute;
	display: block;
	width: 92%;
	height: 92%;
	top: 4%;
	left: 4%;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.btn0.active,
.btn1.active,
.btn2.active,
.btn3.active {
	filter: brightness(0.8);
}

#kv0::before,
#kv0::after{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
#kv0::before {
	background: url("../img/main_txt.png") no-repeat;
	background-size: contain;
	background-position: center;
}
#kv0::after {
	background: url("../img/main_logo.png") no-repeat;
	background-size: contain;
	background-position: center;
}


nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	font-size: 1.6em;
	padding: 1em;
}

#main {
	padding: 0;
	overflow: hidden;
}

section {
	position: relative;
	box-sizing: border-box;
}
h3 {
	position: relative;
	font-size: 4em;
	margin-left: 0.5em;
	z-index: 10;
}
section h3 {
	display: flex;
	align-items: center;
	margin-right: 0.5em;
}
section h3::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #ffffff;
	margin: 0 0.2em;
	order: 2;
}
section h3 span {
	font-size: 0.4em;
	font-weight: bold;
	white-space: nowrap;
	order: 3;
}

#schedule {
	display: flex;
	flex-direction: column;
	padding: 6em 4em;
	gap:2em;
}
#movie_title {
	pointer-events: none;
	margin-bottom: -0.6em;
	filter: drop-shadow(0 0 0.25em #000000ff);
}
.movie_btn {
	position: relative;
	width:100%;
	aspect-ratio: 10 / 4;
	overflow: hidden;
	border-top: solid  1px #ffffff;
	border-bottom: solid  1px #ffffff;
	box-sizing: border-box;
	margin-bottom: 6em;
	transition: all 0.25s ease 0s;
}
.movie_btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height: 100%;

	background: url("../img/play.svg") no-repeat center;
	background-size: 40% 40%;
	pointer-events: none;
	transition: all 0.25s ease 0s;
}
.movie_btn:hover::after {
	filter: drop-shadow(0 0 1em #ffffff) drop-shadow(0 0 1em #ffffff);
}
.movie_btn video {
	position: relative;
	top: -10%;
	left: -10%;
	width: 120%;
	filter: blur(10px) drop-shadow(0 0 0.5em #ffffffee);
}

#news {
	margin-bottom: 6em;
}
#news li {
	position: relative;
	border-top: 1px solid #ffffff;
	padding: 1em;
	font-size: 1.4em;
}
#news li:last-child {
	border-bottom: 1px solid #ffffff;
}
#news li a {
	display: flex;
	flex-direction: column;
	color: #ffffff;
	text-decoration: none;
	padding-right: 3em;
}
#news li:hover {
	transition-duration: 0.25s;
	filter: drop-shadow(0 0 0.5em #ffffffff) drop-shadow(0 0 0.5em #ffffffff);
}
#news li::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2em;
	transform: translateY(-50%) rotate(45deg);
	width: 1.5em;
	height: 1.5em;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	pointer-events: none;
}

.entry_link {
	text-align: right;
	margin: 2em 1em;
}
.entry_link a {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
	border: 1px solid #ffffff;
	padding: 1em 5em 1em 2em;
	font-size: 1em;
}
.entry_link a::after {
	content: "";
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
	width: 3em;
	height: 1em;
	background-image: url("../img/btn_arrow.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.entry_link a:hover {
	filter: drop-shadow(0 0 0.5em #ffffffff) drop-shadow(0 0 0.5em #ffffffff);
}

#about {
	position: relative;
}
#about div {
	position: relative;
	padding: 1em 2em;
	font-size: 1.5em;
	line-height: 1.8em;
	z-index: 1;
}

#about div::before {
	content: "";
	position: absolute;
	top: 45%;
	left: 50%;
	width: 140%;
	height: 110%;

	background: linear-gradient(90deg, #BA0100ff 50%, #89010088 90%,#00000000 100%);

	z-index: -1;
	transform: translate(-50%,-50%) rotate(-8deg);
}
#about p:last-of-type{
	margin-bottom: 0;
}

.line {
	margin: 2em auto;
	width: 1px;
	height: 6em;
	background-color: #ffffff;
}
#caststaff {
	text-align: center;
	padding: 0em 2em;
}
#caststaff h4 {
	font-size: 3em;
}
#caststaff p {
	font-size: 1.25em;
	line-height: 2em;
}
#caststaff p span {
	font-size: 1.4em;
}
#caststaff > div:first-child {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	gap: 1em;
	font-weight: bold;
}
#caststaff > div:first-child p:first-child {
	font-size: 1.4em;
	margin-bottom: 0em;
}
#caststaff > div:last-child {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1em;
}
#caststaff > div:last-child h4 {
	width: 100%;
}
#caststaff > div:last-child p {
	margin: 0;
}
.line_box {
	margin: auto;
	width: 10em;
	height: 4em;
	background: url("../img/line.svg") no-repeat;
	background-size: 100% 100%;
}


.btn_back {
	margin: 2em auto 0;
	text-align: center;
}
.btn_back a {
	display: inline-block;
	background: url("../img/btn_back.svg") no-repeat;
	background-size: contain;
	width: 6em;
	height: 6em;
}
.btn_back a:hover {
	filter: drop-shadow(0 0 0.5em #ffffffff) drop-shadow(0 0 0.5em #ffffffff);
}

#link_box {
	display: flex;
	flex-direction: column;
	text-align: center;
	place-items: center;
	margin-top: 1em;
	gap: 1em;
}
#link_box .btn_official img{
	width: 12em;
}
#link_box .btn_x img{
	width: 2em;
}
#link_box a {
	display: inline-block;
	transition: all 0.25s ease;
	justify-self: center;
}
#link_box .btn_official:hover {
	filter: drop-shadow(0 0 0.5em #ffffffff) drop-shadow(0 0 0.5em #ffffffff);
}
#link_box .btn_x:hover {
	filter: drop-shadow(0 0 0.5em #ffffffee);
}

footer {
	border-top: solid 1px #ffffff;
	font-size: 1.4em;
	font-size: calc(80vw / 28);
	text-align: center;
	margin-top: 3em;
	padding-top: 3em;
	padding-bottom: 3em;
}
footer #cr {
	margin: 2em auto 0em;
}

/* ========== on off ========== */
.sp {
	display: initial;
}
.pc {
	display: none;
}
br.sp {
	display: inline;
}

/* ================================================== */
/* ==================== 900px以上 ==================== */
/* ================================================== */
@media (min-width: 900px) {
html {
	font-size: 10px;	/* 10pxを基準に変更 */
}


#kv_box {
	height: 100lvh;
}
#kv_box {
	text-align: center;
}
#kv_box div img {
	max-height: 100lvh;
}
#kv_btn {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: end;
	flex-direction: column;
	width: 16em;
	height: 50em;
	gap:1em;
	margin-bottom: 1em;
}



#kv_btn::before {
	display: none;
}
#kv_btn::after {
	content: "";
	display: block;
	width: 4em;
	height: 100%;
	margin: 0;
	background-image: url("../img/visual_r.svg");
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: contain;
}
#kv_btn label {
	height: auto;
    width: 10em;
    aspect-ratio: 1 / 1;
}

nav {
	font-size: 2.4em;
}

#main {
	min-height: 640px;
}

#schedule {
	width: 60vw;
	max-width: 1000px;
	margin: 6em auto ;
	padding: 0;
}
#schedule img:nth-child(2) {
	width: 60%;
	margin: 2em auto;
}
.movie_btn {
	aspect-ratio: 240 / 59;
	max-height: 472px;
}
#movie_title {
	min-width: calc((100vw - 900px) - 4em);
}
h3 {
	font-size: 12em;
	max-width: 1640px;
	margin-left: max(0.5em, var(--m_space));
}
section h3 span {
	font-size: 0.25em;
	letter-spacing: 0.2em;
}

#news li {
	padding: 2em max(2em, var(--m_space-in));
	font-size: 2em;
}
#news li::after {
    right: max(2em, var(--m_space-in));
}
.entry_link {
	font-size: 1.6em;
	margin-right: max(2em, var(--m_space));
}

#about div {
	font-size: 2em;
	margin: 2em max(2em, var(--m_space-in));
}
#about div::before {
    width: 120vw;
    height: 140%;
}

.line {
    margin: 8em auto;
    height: 12em;
}
#caststaff {
	font-size: 2em;
}
#caststaff > div:last-child {
	flex-direction: row;
	gap: 1em;
}
#caststaff > div:last-child h4 {
	width: 100%;
}

#caststaff > div:last-child div {
	display: flex;
	flex: 1;
}
#caststaff > div:last-child div.line_box {
	flex: unset;
}
.line_box {
	margin: auto;
	width: 6em;
	height: auto;
	aspect-ratio: 1 / 1;
	background-size: contain;
}
#caststaff > div:last-child div:nth-of-type(1) {
	justify-content: end;
}
#caststaff > div:last-child div:nth-of-type(3) {
	justify-content: start;
}

.btn_back a {
	display: inline-block;
	background: url("../img/btn_back.svg") no-repeat;
	background-size: contain;
	width: 12em;
	height: 12em;
}

footer {
	font-size: 2em;
}
#cr {
	font-size: 1em;
}

/* ========== on off ========== */
.sp {
	display: none;
}
.pc {
	display: initial;
}
br.sp {
	display: none;
}

}
/* ================================================== */
/* ==================== 1920px以上 ==================== */
/* ================================================== */
@media (min-width: 1920px) {

}

/* ========== iOS用 ========== */
@supports (-webkit-touch-callout: none) {
}

/* ========== firefox用 ========== */
@-moz-document url-prefix(){
}

@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
}
