@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_NVY : #07082a;
	--color_YLW : #ffea00;
	--color_RED : #e60033;
	--color_VIO : #e7b6fa;
	/* --color_BLU : #0068b7; */
	--fontS : clamp(14px,2.2vw,22px);
	--fontM : clamp(16px,2.8vw,28px);
	--fontL : clamp(20px,4vw,38px);
	--gap_160px : clamp(54px, 24vw, 160px);
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: inherit;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	/* font-size: clamp(16px, 2.2vw, 20px); */
	font-size: clamp(16px, 2.2vw, 18px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	/* font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}
#page {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	color: #92a4ff;
	word-break: break-all;
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	#page {
		font-size: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
}
.arial {
	font-family: Arial;
}
.font_yusei-magic {
	font-family: "Yusei Magic", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.dela {
    font-family: 'Dela Gothic One', cursive;
    font-weight: 100;
}
.dotgothic {
	font-family: "DotGothic16", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
}
.dela em,
.dotgothic em {
	font-weight: normal !important;
}

.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.red {
	color: var(--color_RED) !important;
}
.blue {
	color: var(--color_BLU) !important;
}
.ylw {
	color: var(--color_YLW) !important;
}
.lgry {
	color: #999;
}
.line_ylw {
	background: linear-gradient(180deg,transparent 70%, #ffea00 70%, #ffea00 100%);
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1600px;
}
.pd_tb {
	padding-top: var(--gap_80px);
	padding-bottom: var(--gap_80px);
}
.pd_t {
	padding-top: var(--gap_80px);
}
.pd_b {
	padding-bottom: var(--gap_80px);
}
.cont_close {
    position: relative;
}
.cont_close::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 50;
}
.stanby, .stanby a {
    position: relative;
}
.stanby a img {
	filter: blur(1px);
}
.stanbyText {
	display: none;
}
.stanby .stanbyText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,50%);
    display: -webkit-flex;
    display: flex;
    align-items: center;
	text-align: center;
	z-index: 55;
}
.stanby .stanbyText P {
	color: #fff;
	text-shadow: 0 0 0.2em #000,0 0 0.2em #000,0 0 0.3em #000,0 0 0.3em #000,0 0 0.3em #000;
	margin-inline: auto;
	padding-inline: var(--gap_16px);
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.col2 {
	column-gap: 4%;
}
.flex.col2 .flex_item {
	width: calc(96% / 2);
}
.flex.col3 {
	column-gap: 3%;
	justify-content: center;
}
.flex.col3 .flex_item {
	width: calc(94% / 3);
}
.flex.col4 {
	column-gap: 2%;
	justify-content: unset;
}
.flex.col4 .flex_item {
	width: calc(90% / 6);
}
.flex.col4 .flex_item:nth-child(n + 7) {
	margin-top: var(--gap_48px);
}
@media screen and (max-width:767px) {
	.flex.col2,
	.flex.col3 {
		justify-content: center;
	}
	.flex.col2 .flex_item {
		width: min(80%, 480px);
	}
	.flex.col3 .flex_item {
		width: min(100%, 480px);
	}
	.flex.col2 .flex_item:not(:first-of-type),
	.flex.col3 .flex_item:not(:first-of-type) {
		margin-top: var(--gap_48px);
	}
	.flex.col4 .flex_item {
		width: calc(94% / 4);
	}
	.flex.col4 .flex_item:nth-child(n + 5) {
        margin-top: var(--gap_48px);
    }
}
@media screen and (max-width:479px) {
	.flex.col4 .flex_item {
		width: calc(96% / 3);
	}
	.flex.col4 .flex_item:nth-child(n + 4) {
        margin-top: var(--gap_48px);
    }
}

.flex.col_3_1 {
	align-items: center;
}
.flex.col_3_1 .flex_item.w3 {
	width: calc(100% / 4 * 3 );
	padding-right: var(--gap_64px);
}
.flex.col_3_1 .flex_item.w1 {
	width: calc(100% / 4 * 1 );
}
@media screen and (max-width: 1279px) {
	.flex.col_3_1 .flex_item.w3 {
		width: calc(100% / 3 * 2 );
		padding-right: var(--gap_48px);
	}
	.flex.col_3_1 .flex_item.w1 {
		width: calc(100% / 3 * 1 );
	}
}
@media screen and (max-width: 999px) {
	.flex.col_3_1 {
		align-items: flex-start;
	}
	.flex.col_3_1 .flex_item.w3 {
		padding-right: var(--gap_24px);
	}
}
@media screen and (max-width: 767px) {
	.flex.col_3_1 {
		flex-direction: column-reverse;
	}
	.flex.col_3_1 .flex_item.w3,
	.flex.col_3_1 .flex_item.w1 {
		width: 100%;
	}
	.flex.col_3_1 .flex_item.w3 {
		padding-right: 0;
		margin-top: var(--gap_32px);
	}
	.flex.col_3_1 .flex_item.w1 {
		text-align: center;
	}
	.flex.col_3_1 .flex_item.w1 img {
		max-width: 380px;
	}
}

.grid {
	display: grid;
}
.grid.col2 {
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gap_64px);
}
.grid.col4 {
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap_24px);
}
@media screen and (max-width: 1279px) {
	.grid.col4 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px) {
	.grid.col2 {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media screen and (max-width: 479px) {
	.grid.col4 {
		grid-template-columns: repeat(1, 1fr);
	}
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}

.img_thumb {
	width: min(100%,300px);
}
.img_thumb a {
	color: #fff !important;
	display: block;
	position: relative;
}
.img_thumb a::after {
	font-size: clamp(18px, 3vw, 22px);
	color: var(--myColor01);
	position: absolute;
	content: '\f00e';
	bottom: -0.5em;
	right: -0.5em;
	text-shadow: 0 0 0.2em var(--color_BLK),0 0 0.2em var(--color_BLK),0 0 0.2em var(--color_BLK),0 0 0.3em var(--color_BLK),0 0 0.3em var(--color_BLK);
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}

#page button {
	border: 0;
	background: unset;
	font-weight: unset;
	padding: unset;
	cursor: pointer;
}
.tvo-video button {
	background: inherit !important;
	padding: inherit !important;
}
.btn_wrap {
	text-align: center;
}
.btn {
	font-weight: bold;
	padding: var(--gap_8px) var(--gap_16px);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	transition: all 0.3s;
	display: inline-block;
}

.side_nav {
	text-align: center;
	margin-bottom: var(--gap_32px);
}
.side_nav a {
	font-size: clamp(24px,4vw,38px);
	color: #fff !important;
	text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
	margin-block: var(--gap_8px);
	display: inline-block;
}
@media screen and (max-width: 479px) {
	.side_nav {
		margin-bottom: var(--gap_16px);
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.side_nav > div {
		display: inline-block;
		margin-inline: var(--gap_16px);
	}
}

#btn_pagetop,
#btn_pagetop2 {
	bottom: var(--gap_16px);
    position: fixed;
    z-index: 1100;
}
#btn_pagetop {
	right: clamp(8px, 2vw, 16px);
}
#btn_pagetop2 {
	left: var(--gap_24px);
}
#btn_pagetop a,
#btn_pagetop2 a {
	display: block;
}
#btn_pagetop2 a {
	font-size: clamp(14px,1.8vw,20px);
	text-align: center;
	text-decoration: none;
	text-shadow: 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000;
	line-height: 1.2;
	letter-spacing: 0;
	color: #fff !important;
	padding: var(--gap_8px);
	border: solid 1px var(--color_YLW);
	box-shadow: 0 0 var(--gap_8px) #000;
    /* background: var(--color_RED); */
	background: #214361;
    background: radial-gradient(circle, rgba(33, 67, 97, 1) 0%, rgba(17, 44, 68, 1) 100%);
    filter: sepia(0.8);
}
#btn_pagetop2 a + a {
	margin-top: var(--gap_24px);
}
/* #btn_pagetop i {
	padding: var(--gap_16px) var(--gap_24px);
} */
#btn_pagetop2 > i {
	font-size: 1.4em;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000;
	color: #fff;
	margin-bottom: var(--gap_8px);
	display: inline-block;
	cursor: pointer;
	position: relative;
	z-index: 999;
}
#btn_pagetop a img {
	width: clamp(30px, 6vw, 40px);
	filter: drop-shadow(0px 0px 4px var(--color_NVY));
}
#btn_pagetop2 a img {
	width: clamp(120px, 12vw, 160px);
}
@media screen and (max-width: 479px) {
	.btm_btn_area {
		position: relative;
	}
	.btm_btn_area::after {
		position: fixed;
		content: "";
		width: 100%;
		background-color: #000;
		background: linear-gradient(90deg, transparent 0%, #000 50%, transparent 100%);
		bottom: 0;
		height: 60px;
		z-index: 1010;
	}
}

.hidden {
	display: none !important;
}
.mob {
	display: none;
}
@media screen and (max-width: 899px) {
	.mob {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 1000px;
    margin: 0 auto var(--gap_64px);
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.vjs-dock-title {
	text-align: left;
}

#page {
	color: #fff;
	letter-spacing: 1px;
	background: url(/unreal/images/bg_kv.png) center top no-repeat,
		url(/unreal/images/bg_btm.png) center bottom no-repeat;
}


#tver {
    /* text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.4em #fff, 0 0 0.4em #fff, 0 0 0.4em #fff; */
    text-shadow: 0 0 0.4em var(--color_NVY);
    color: var(--color_VIO);
}
.tver_area {
    text-align: center;
    margin-inline: auto;
}
.tver_info,
.tver_info_btm {
	font-size: 0.8em;
}
.tver_info {
    margin-bottom: var(--gap_8px);
}
.tver_info_btm {
    margin-top: var(--gap_8px);
}
.tver_area a {
    margin-inline: auto;
    width: clamp(100px,20vw,250px);
    display: block;
}
.tver_area a img {
    filter: drop-shadow(0 0 var(--gap_8px) var(--color_NVY));
}
.tver_area a[tabindex="-1"] img {
	filter: brightness(0.8);
}

.oa_end #tver {
	margin-bottom: var(--gap_48px);
}
.oa_end .tver_info {
	font-size: var(--fontM);
}
.oa_end .tver_area a {
    width: clamp(100px,30vw,350px);
}

/* =============================================================
    【content】ブロック　
============================================*/
.cont_wrap {
	padding-bottom: var(--gap_160px);
}
.sec_wrap {
	padding-top: var(--gap_160px);
}
.sec_title {
	font-size: var(--fontL);
	font-family: "Shippori Mincho", serif;
    font-weight: 800;
	color: var(--color_NVY);
	text-align: center;
	text-shadow: 0 0 0.4em var(--color_VIO);
	line-height: 1.2;
	margin-bottom: var(--gap_48px);
}
.bg_box {
	padding: var(--gap_96px);
	box-shadow: 0 0 var(--gap_24px) #000;
	background: #214361;
	background: radial-gradient(circle,rgba(33, 67, 97, 1) 0%, rgba(17, 44, 68, 1) 100%);
}
@media screen and (max-width: 1279px) {
	.bg_box {
		padding: var(--gap_96px) var(--gap_48px);
	}
}

.bg_box + .bg_box {
	margin-top: var(--gap_64px);
}
.read p {
	margin-block: var(--gap_8px);
}
.read p:first-of-type {
	margin-top: 0;
}
.read_left {
	text-align: left;
	max-width: max-content;
	margin-inline: auto;
}
.read_left_inner + .read_left_inner {
	margin-top: var(--gap_32px);
}
.read_box {
	margin-top: var(--gap_24px);
	padding: var(--gap_24px);
    color: #eee;
    border: solid 1px;
}


.break {
	text-align: left;
	line-height: 1.2;
}

.title_L {
	font-size: var(--fontL);
}
.title_M {
	font-size: clamp(16px,2.4vw,26px);
}
.title_S {
	font-size: var(--fontS);
}

.profile_wrap .read {
	text-align: justify;
	line-height: 1.8;
}
.name {
	font-family: "Shippori Mincho", serif;
	margin-bottom: var(--gap_16px);
}
.name em {
	font-size: 1.2em;
}
.name small {
	font-size: var(--fontS);
	display: block;
}

.cap {
	font-size: clamp(12px,1.4vw,14px);
	line-height: 1.1;
	margin-top: var(--gap_8px);
	display: block;
}

.comment_wrap  {
	column-gap: var(--gap_64px);
}
.comment_item {
	width: calc(100% - var(--gap_64px) - 300px);
	margin-top: var(--gap_32px);
}
.comment_item.illust {
	width: 300px;
}
.comment_item .title {
	margin-bottom: var(--gap_16px);
}
.comment_item .title small {
	font-size: 0.8em;
	margin-right: var(--gap_8px);
}
.comment_item .read {
	text-align: justify;
}
@media screen and (max-width: 899px) {
	.comment_wrap {
		column-gap: 0;
	}
	.comment_item {
		width: 66.6%;
	}
	.comment_item.illust {
		width: 33.3%;
		padding-right: var(--gap_32px);
	}
}
@media screen and (max-width: 767px) {
	.comment_wrap .img_thumb {
		margin-inline: auto;
	}
	.comment_item {
		width: 100% !important;
	}
	.comment_item.illust {
		padding-right: 0;
	}
}

.btn_more {
	color: #fff;
	display: block;
}
.btn_more,
.js-modal--btn {
	position: relative;
}
.btn_more::before,
.js-modal--btn::before {
	font-size: 0.8em;
	position: absolute;
	content: "\2b";
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 400;
	top: 50%;
	left: 1em;
	transform: translateY(-50%);
}
.btn_more.is-acctive::before,
.js-modal--btn.is-acctive::before {
	content: "\f068";
	font-weight: 900;
}

.btn_open {
	font-size: 1em;
	line-height: 1.1;
	padding: var(--gap_16px) var(--gap_24px) var(--gap_16px) var(--gap_48px) !important;
	border: solid 1px !important;
	box-shadow: 0 0 var(--gap_8px) var(--color_VIO);
}
.btn_viewmore {
	font-size: clamp(12px,1.4vw,14px);
	margin-inline: auto 0;
	border-bottom: solid 1px !important;
}
.btn_viewmore::before {
	left: -1.5em;
}

/* ============= モーダルウインドウ表示 ======== */
.js-modal--content {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    
    /* 装飾 */
    background-color: rgba(0,0,0,85%);
    padding: var(--gap_64px);
}
.modal_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal_item {
	text-align: left;
	max-height: 90vh;
	-ms-overflow-style: none;
    scrollbar-width: none;
	overflow-y: scroll;
}

/* =============================================================
    【KV】ブロック　
============================================*/
#kv_wrap {
	padding: var(--gap_64px) 0;
}
@media screen and (max-width: 1279px) {
	#kv_wrap {
		padding: var(--gap_64px) 0 var(--gap_16px);
	}
}

.logo_wrap {
	font-size: 0em;
	/* width: calc(100% - min(8vw,150px) * 2);
	margin-inline: min(8vw,150px); */
	padding-inline: var(--gap_64px);
	position: relative;
	z-index: 999;
}
.logo {
	background: url(/unreal/images/kv.jpg) center center/contain no-repeat;
	padding-top: calc(900 / 1600 * 100%);
	box-shadow: 0 0 var(--gap_24px) #000;
}
@media screen and (max-width: 767px) {
	.logo_wrap {
		padding-inline: var(--gap_24px);
	}
}

#nav_wrap,
#nav_wrap_stage {
	text-align: center;
	position: sticky;
	top: 0;
	z-index: 100;
}
.nav_panel .flex {
	justify-content: center;
}
#nav a {
	font-size: 1.1em;
	color: #fff !important;
	width: min(100%,180px);
	margin: var(--gap_8px) var(--gap_16px);
	padding: var(--gap_8px) var(--gap_16px);
	border: solid 1px var(--color_YLW);
    box-shadow: 0 0 var(--gap_8px) #000;
	background: #214361;
    background: radial-gradient(circle, rgba(33, 67, 97, 1) 0%, rgba(17, 44, 68, 1) 100%);
	filter: sepia(0.8);
	display: inline-block;
}
#nav a.is-active {
	text-shadow: 0 0 0.3em #000000,0 0 0.3em #000000,0 0 0.3em #000000,0 0 0.3em #000000;
}
#nav_wrap_stage #nav a {
	filter: unset;
}
@media screen and (min-width: 1600px) {
	.trigger_wrap {
		display: none;
	}
	.p_top .nav_panel {
		margin-bottom: var(--gap_64px);
	}
}
@media screen and (max-width: 1599px) {
	.trigger_wrap {
		margin-bottom: var(--gap_16px);
		display: -webkit-flex;
		display: flex;
		justify-content: center;
		align-items: center;
        position: relative;
        z-index: 1010;
    }
	.btn_trigger {
        font-size: 22px;
        color: #fff;
        background-color: transparent;
        border: 0;
        position: relative;
        height: 40px;
        width: 40px;
    }
	.btn_trigger i {
		text-shadow: 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000;
		color: var(--color_YLW);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
	.btn_trigger .menu_close, .btn_trigger.is-opend .menu_bar {
        display: none;
    }
	.btn_trigger.is-opend .menu_close {
        display: block;
    }
	.nav_panel {
		width: 100%;
		position: absolute;
        top: 0;
		left: 0;
        max-height: 80vh;
        overflow-y: scroll;
		-ms-overflow-style: none;
        scrollbar-width: none;
        transform: translateY(-100%);
        opacity: 0;
        z-index: -1;
        transition: all 0.5s ease-in-out;
	}
	.nav_panel.is-opend {
        transform: translateY(0);
        opacity: 1;
    }
	.nav_panel .flex {
		flex-direction: column;
		padding-top: 40px;
	}
	#nav a {
		margin-inline: auto;
	}
}

/* =============================================================
    【intro】ブロック　
============================================*/
#bnr_area {
	padding-bottom: var(--gap_80px);
}
#bnr_area .bnr_wrap {
	width: min(80%,800px);
	margin-inline: auto;
}
#bnr_area .bnr_wrap img {
	box-shadow: 0 0 var(--gap_24px) #000;
}
#intro .story_mov {
	padding-top: var(--gap_64px);
}
#intro .story_head {
	margin-bottom: var(--gap_64px);
}
#intro .story_head .read {
	text-align: left;
	width: min(100%, 1000px);
    margin-inline: auto;
}
#intro {
	text-align: center;
	padding-block: var(--gap_96px);
	box-shadow: 0 0 var(--gap_24px) #000;
}
.intro_head {
	font-size: clamp(20px,6vw,78px);
	line-height: 1.2;
}
.intro_head em {
	color: var(--color_RED);
}
.intro_head ,
.intro_head em {
	font-weight: 800;
}
.intro_head_sub {
	font-size: var(--fontM);
	margin-block: var(--gap_48px);
}
.intro_head_sub.vol2 {
	font-size: var(--fontL);
	margin-bottom: var(--gap_96px);
}
.intro_head_sub.vol2 em {
	font-size: 1.2em;
	color: var(--color_RED);
}
.pr_cast {
	font-size: clamp(18px,5vw,68px);
	line-height: 1.2;
}
.note_irregular {
	margin-bottom: var(--gap_32px);
}
.oa_end .note_irregular {
	font-size: var(--fontM);
	font-weight: bold;
}
.intro_pr {
	font-size: var(--fontL);
	text-shadow: 0 0 0.4em var(--color_VIO),0 0 0.4em var(--color_VIO);
	animation: blink 4s infinite alternate;
}
@keyframes blink {
    0% {
		opacity:0;
	}
    4% {
		opacity:1;
	}
    5% {
		opacity:0;
	}
    6% {
		opacity:1;
	}
    10% {
		opacity:1;
	}
    11% {
		opacity:0;
	}
    12% {
		opacity:1;
	}
    60% {
		opacity:1;
	}
    61% {
		opacity:0;
	}
    62% {
		opacity:1;
	}
    100% {
		opacity:1;
	}
}

.oa_station {
    font-size: var(--fontS);
    margin-top: var(--gap_8px);
	padding-bottom: var(--gap_64px);
    align-items: center;
    justify-content: center;
	column-gap: var(--gap_24px);
}
.oa_station_item {
    padding: 8px 0 0;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
}
.oa_station_item > div {
	line-height: 1;
}
.oa_station_item img {
    margin: 0 var(--gap_8px);
	filter: drop-shadow(0 0 calc(var(--gap_8px) / 4) #fff);
	display: block;
}
.logo_tvo {
    width: clamp(78px, 14vw, 130px) !important;
}
.logo_tva {
    width: clamp(70px, 12vw, 110px) !important;
}
.logo_bstx {
    width: clamp(74px, 13vw, 120px) !important;
}

.intro_story {
	line-height: 1.8;
	text-align: justify;
	word-break: break-all;
	max-width: 1000px;
	margin-inline: auto;
	margin-top: var(--gap_48px);
}

#intro_info .inner_wrap {
	max-width: 800px;
}
.oa_info {
	text-align: center;
	margin-bottom: var(--gap_48px);
}
.btn_oainfo {
	font-size: 1.1em;
	font-family: "Shippori Mincho", serif;
	color: #fff;
	width: min(90%,300px);
	padding: var(--gap_32px) !important;
	border: solid 1px !important;
	box-shadow: 0 0 var(--gap_8px) var(--color_VIO);
}
.original_info {
	text-align: justify;
}
.original_info.closed {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	overflow: hidden;
}

#intro_info {
	margin-top: var(--gap_48px);
}

#intro_info .inner_dl div {
	display: flex;
	flex-wrap: wrap;
	margin-top: var(--gap_24px);
	padding-bottom: var(--gap_24px);
	border-bottom: solid 1px;
}
#intro_info .inner_dl div:last-of-type {
	padding-bottom: 0;
	border-bottom: 0;
}
#intro_info .inner_dl dt {
	text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
	width: 7em;
}
#intro_info .inner_dl dd {
	width: calc(100% - 7em);
}
#intro_info .inner_dl small {
	display: block;
}
#intro_info .btn_viewmore {
	margin-top: var(--gap_8px);
}

.sns_nav {
	justify-content: center;
	column-gap: var(--gap_32px);
	margin-top: var(--gap_48px);
}
.sns_nav a {
    font-size: clamp(24px, 4vw, 38px);
    color: #fff !important;
    text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
    margin-block: var(--gap_8px);
    display: inline-block;
}

/* =============================================================
    【TOPICS】ブロック　
============================================*/
#topics .bg_box {
	position: relative;
}
.lamp {
	width: clamp(40px,10vw,106px);
	position: absolute;
	top: clamp(-120px,-10vw,-50px);
	right: var(--gap_24px);
}
.topics_title {
	font-size: var(--fontM);
	font-family: "Shippori Mincho", serif;
	margin-bottom: var(--gap_24px);
	border-bottom: solid 1px;
	display: inline-block;
	position: relative;
}
.topics_title::before {
	font-size: 0.8em;
	padding-right: var(--gap_8px);
	content: "\f219";
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.topics_title em {
	color: var(--color_YLW);
}

.topics_item:not(:first-of-type) {
	padding-top: var(--gap_64px);
}
.topics_item .btn_open {
	margin-top: var(--gap_16px);
}

.topics_item .btn_wrap {
	text-align: left;
}
.topics_item .btn_wrap a {
	font-size: 1.1em;
    color: #fff !important;
	text-align: center;
    /* width: min(80%, 250px); */
    margin: 0 auto;
    padding: var(--gap_8px) var(--gap_16px);
    border: solid 1px var(--color_YLW);
    box-shadow: 0 0 var(--gap_8px) #000;
    background: #214361;
    background: radial-gradient(circle, rgba(33, 67, 97, 1) 0%, rgba(17, 44, 68, 1) 100%);
    filter: sepia(0.8);
    display: inline-block;
}
.topics_item .present_wrap .img_thumb {
	width: min(100%, 200px);
	padding: var(--gap_24px) 0;
}
.topics_item .present_wrap .topics_tab {
	width: calc(100% - min(100%, 200px) - var(--gap_24px) * 2);
}
#topic_music .btn_wrap {
	margin-top: var(--gap_24px);
}
@media screen and (max-width: 999px) {
	.topics_item .present_wrap {
		justify-content: center;
		flex-direction: column-reverse;
	}
	.topics_item .present_wrap .img_thumb {
		width: min(60%,200px);
		margin-inline: auto;
	}
	.topics_item .present_wrap .topics_tab {
		width: calc(100% - var(--gap_24px) * 2);
	}
}

.group_photo {
	width: min(90%,1200px);
	margin-block: 0 var(--gap_48px);
}

.topics_tab {
	padding: var(--gap_24px);
	margin: var(--gap_24px);
	background-color: rgba(0,0,0,30%);
}
.topics_tab .btn_wrap {
	margin-top: var(--gap_8px);
}
.topics_tab dl {
	padding-bottom: var(--gap_8px);
	border-bottom: solid 1px;
	border-color: rgba(255,255,255,20%);
	overflow: hidden;
}
.topics_tab dl:not(:first-of-type) {
	margin-top: var(--gap_16px);
}
.topics_tab dl:last-of-type {
	padding-bottom: 0;
	border-bottom: 0;
}
.topics_tab dt,
.topics_tab dd {
	float: left;
}
.topics_tab dt {
	text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
	width: 7em;
	padding-right: 1em;
}
.topics_tab dd {
	width: calc(100% - 7em);
}
.topics_tab small {
	line-height: 1.2;
	display: inline-block;
}
@media screen and (max-width: 767px) {
	.topics_tab dt,
	.topics_tab dd {
		width: 100%;
	}
	.topics_tab dd {
		padding-left: 1em;
		margin-top: var(--gap_8px);
	}
}

.btn_buy {
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color_NVY) !important;
	padding: calc(var(--gap_8px) / 2) var(--gap_8px);
	margin-top: var(--gap_8px);
	border-radius: var(--gap_8px);
	background-color: #fff;
	/* border: solid 1px; */
	/* box-shadow: 0 0 var(--gap_8px) var(--color_VIO); */
	display: inline-block;
}

/* =============================================================
    【COMMENT】ブロック　
============================================*/
.comm_staff {
	margin-top: var(--gap_32px);
}

/* =============================================================
    【ORIGINAL】ブロック　
============================================*/




/* =============================================================
    【OUTLINE】ブロック　
============================================*/
.outline_list {
	width: min(100%,1000px);
	margin-inline: auto;
}
.outline_list div {
	display: flex;
	flex-wrap: wrap;
	margin-top: var(--gap_24px);
	padding-bottom: var(--gap_24px);
	border-bottom: solid 1px;
}
.outline_list div:first-of-type {
	margin-top: 0;
}
.outline_list div:last-of-type {
	padding-bottom: 0;
	border-bottom: 0;
}
.outline_list dt {
	text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
	width: 12em;
}
.outline_list .inner_dl dt {
	width: 7em;
}
.outline_list dd {
	width: calc(100% - 12em);
	display: inline-block;
}
.outline_list .inner_dl dd {
	width: calc(100% - 7em);
}
.outline_list .inner_dl small {
	display: block;
}
.outline_list a {
	color: #92a4ff;
}
.outline_list a i {
	margin-left: var(--gap_8px);
}

.btn_tver {
	width: clamp(100px,20vw,150px);
	margin-top: var(--gap_16px);
	display: block;
}
@media screen and (max-width: 767px) {
	.outline_list dt,
	.outline_list dd {
		width: 100%;
	}
	.outline_list > div > dd {
		padding-left: 1em;
		margin-top: var(--gap_8px);
	}
}
@media screen and (max-width: 479px) {
	.outline_list .inner_dl dt,
	.outline_list .inner_dl dd {
		width: 100%;
	}
	.outline_list .inner_dl dd {
		padding-left: 1em;
		margin-top: var(--gap_8px);
	}
}

/* ==========================================================================================================================
    下層ページ
=========================================================================================================*/
/* =============================================================
    下層ページ 共通
============================================*/
.p_lower .sec_wrap {
	padding-top: var(--gap_80px);
}
.p_lower .cont_wrap {
	padding-bottom: var(--gap_80px);
}
.p_lower_first_blk {
	padding-top: var(--gap_80px);
}
@media screen and (max-width: 1279px) {
	.p_lower_first_blk {
		padding-top: var(--gap_32px);
	}
}

/* =============================================================
    /cast/ キャスト
============================================*/
.role_info {
	line-height: 1.3;
	color: var(--color_VIO);
	margin-bottom: var(--gap_8px);
}
.btn_diagram {
	text-align: right;
	margin-bottom: var(--gap_24px);
}
.btn_diagram a {
	font-size: var(--fontS);
	color: #fff !important;
    text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
    animation: blink 4s infinite alternate;
}
#p_diagram .bg_box {
	background: #2e2f2b;
    background: radial-gradient(circle, #494841 0%, #2e2f2b 100%);
}

/* =============================================================
    /trailer/ トレーラー
============================================*/
.page_trailer .name {
	line-height: 1.2;
	margin-bottom: var(--gap_32px);
}
.story_head .read p:last-child {
    margin-block: 0;
}

.trailer_item {
	row-gap: var(--gap_32px);
}
.trailer_item .story_head {
	width: 60%;
	padding-right: 3%;
}
.trailer_item .story_photo {
	width: 32.333%;
}
.trailer_item .story_head + .story_photo {
	width: 40%;
}

.archive_wrap {
	row-gap: var(--gap_48px);
}
.archive_wrap .bg_box {
	padding: var(--gap_48px);
}
.archive_wrap .bg_box + .bg_box {
    margin-top: 0;
}
.archive_item  {
	row-gap: var(--gap_16px);
}
.archive_item .name em {
	font-size: 1em;
}
.archive_item .story_photo {
	width: 49%;
}
@media screen and (max-width: 1279px) {
	.archive_item .story_photo {
		width: min(100%,300px) !important;
		margin-inline: auto;
	}
}
@media screen and (max-width: 999px) {
	.trailer_item {
		row-gap: var(--gap_32px);
	}
	.trailer_item .story_head {
		width: 100%;
		padding-right: 0;
	}
	.trailer_item .story_photo {
		width: 48% !important;
	}
	.archive_wrap .bg_box {
		padding: var(--gap_48px) var(--gap_24px);
	}
}
@media screen and (max-width: 767px) {
	.archive_wrap .bg_box {
        width: min(100%, 768px) !important;
    }
	.flex.col2 .flex_item:not(:first-of-type) {
		margin-top: 0;
	}
	.archive_wrap .story_photo {
		width: 48% !important;
		margin-inline: unset;
	}
}
@media screen and (max-width: 479px) {
	.trailer_item .story_photo {
		width: 100% !important;
	}
}

/* =============================================================
    /stage/ 公演公演情報
============================================*/
#page.page_stage {
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
    background: url(/unreal/images/bg_stage.png) center top no-repeat, url(/unreal/images/bg_stage_btm.png) center bottom/100% no-repeat;
}
.page_stage .bg_box {
	background: rgb(30 39 67 / 90%);
}
.btn_evtopics {
	text-align: right;
	margin-bottom: var(--gap_24px);
}

.stage_kv_wrap {
	width: min(70%, 960px);
	margin-inline: auto;
	position: relative;
}
.stage_kv {
	background: url(/unreal/images/stage_kv.jpg) center center / contain no-repeat;
    padding-top: calc(2704 / 1920 * 100%);
    box-shadow: 0 0 var(--gap_24px) #000;
}
@media screen and (max-width: 479px) {
	.stage_kv_wrap {
		width: min(100%, 960px);
	}
}

.btn_evtopics a {
	font-size: var(--fontS);
	color: #fff !important;
    text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
	margin-right: var(--gap_24px);
    animation: blink 4s infinite alternate;
}
.btn_evtopics a:last-of-type {
	margin-right: 0;
}
/* .btn_evtopics a, */
.p_title {
	font-size: var(--fontM);
	text-align: center;
	margin-bottom: var(--gap_64px);
}
.p_title em {
	border-bottom: solid 1px;
}
.stage_info_wrap {
	text-align: center;
}
.stage_info_item + .stage_info_item {
	padding-top: var(--gap_48px);
}
.stage_heading,
.stage_read {
	font-size: var(--fontS);
}
.stage_heading {
	color: var(--color_VIO);
	margin-bottom: var(--gap_16px);
}
.stage_read {
	/* font-weight: bold; */
	line-height: 1.2;
    padding: var(--gap_48px);
	background-color: rgb(14 18 35 / 50%);
}
.stage_read + .stage_read {
	margin-top: var(--gap_24px);
}
.stage_read .m {
	font-size: var(--fontM);
}
.stage_read p + p {
	margin-top: var(--gap_16px);
}
.stage_read small {
	font-size: 0.7em;
	font-weight: 400;
	color: #eee;
}
.stage_read small.new {
	font-size: 12px;
	color: var(--color_YLW);
	margin-left: var(--gap_8px);
	display: inline-block;
}
.stage_read small.note {
	font-size: clamp(12px,1.8vw,14px);
	margin-top: var(--gap_32px);
    display: inline-block;
}
.stage_read p.note {
	font-size: 0.9em;
	margin-top: var(--gap_8px);
}
.stage_read p.nml {
	font-size: clamp(14px, 2.2vw, 18px);
}
.stage_read p > small:not(.inline) {
	display: block;
}
.stage_read p > i {
	font-size: 0.7em;
	margin-right: var(--gap_8px);
}

.page_stage #kv_wrap {
	position: relative;
	overflow: hidden;
}
.stage_cast_wrap {
	margin-bottom: var(--gap_48px);
	padding-bottom: var(--gap_48px);
	row-gap: var(--gap_48px);
	position: relative;
}
.stage_cast_wrap::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	border-bottom: dotted 1px #fff;
}
.stage_cast_wrap .flex_item {
	margin-top: 0 !important;
}
.stage_cast {
	margin-bottom: var(--gap_16px);
}
.read_dl.flex {
	justify-content: flex-start;
}
.read_dl + .read_dl,
.stage_read p + .read_dl {
	margin-top: var(--gap_8px);
 }
.read_dl dt > i {
    font-size: 0.7em;
    margin-right: var(--gap_8px);
}
.ev_topics .read_ul {
	font-size: clamp(14px, 2.2vw, 18px);
	padding-left: 1.5em;
}
.ev_topics .read_ul li {
	list-style: disc;
}
.ev_topics .read_ul small {
	font-size: 0.9em;
}
@media screen and (max-width: 767px) {
    .stage_cast_wrap .flex_item {
        width: calc(97% / 2) !important;
    }
}
@media screen and (max-width: 479px) {
    .stage_cast_wrap .flex_item {
        width: 100% !important;
    }
	.stage_cast {
		width: min(60%,300px) !important;
	}
}


.seat_img_wrap {
	justify-content: center;
}
.seat_img_wrap .flex_item {
	width: min(50%, 300px) !important;
}
.stage_read .img_thumb {
	margin-inline: auto;
    margin-top: var(--gap_48px);
	width: 100%;
}

.read_head {
	margin-bottom: var(--gap_8px);
}
.ckt_schdl .stage_read p + p {
	margin-top: var(--gap_8px);
}
.ckt_schdl .stage_read .cont_close::before {
	opacity: 0.6;
}
.ckt_schdl .read_head {
	color: var(--color_YLW);
}
.ckt_schdl .cont_close::after {
	font-size: var(--fontL);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    text-align: right;
	width: 100%;
	content: "受付終了";
    position: absolute;
    top: -0.5em;
    right: 0;
    z-index: 55;
    /* transform: translate(-50%, -50%); */
}
#ckt_schdl p.nml {
	margin-top: var(--gap_24px);
}

.ev_topics .stage_read p {
	font-size: clamp(14px, 2.2vw, 18px);
}


/* =============================================================
    【video】ブロック　
============================================*/
.video_wrap {
	position: fixed;
    top: 0;
    right:0;
    left:-1px;
    bottom:0;
    overflow: hidden;
	z-index: -1;
}
.video_wrap::before {
	content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
	background-color: #081b36;
}
.video_wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(0 0 0 / 40%); */
    /* background-image: radial-gradient(rgba(255 255 255 / .2) 30%, rgba(255 255 255 / 0) 31%), radial-gradient(rgba(255 255 255 / .2) 30%, rgba(255 255 255 / 0) 31%); */
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}
#video,
#video_mob {
	position: absolute;
    /* z-index: -1; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
}
video.pc {
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
}
video.mob {
    width: 56.25vw; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 177.77777778vh; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
}


/* =============================================================
   【scroll】ブロック ※マウスドラッグでのスクロール有効化
============================================*/
.js-scroll {
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	justify-content: flex-start;
	flex-flow: row;
	overflow-x: scroll;
	max-width: max-content;
    margin: var(--gap_48px) auto 0;
	padding-bottom: 8px;
	width: 100%;
	position: relative;
}
.js-scroll .flex_item {
	flex: 0 0 2em;
	border: solid 1px #eee;
}
.js-scroll .flex_item.fixed {
	flex: 0 0 6em;
    text-align: center;
    position: sticky;
    top: 0;
    left: 0;
	background-color: #1c2640;
}
.js-scroll .flex_item.fixed .read {
	text-align: center;
}
.js-scroll .flex_item:not(:first-of-type) {
	border-left: 0;
}
.js-scroll .flex_item.fixed + .flex_item {
	border-left: solid 1px var(--color_BLU);
}
.js-scroll::-webkit-scrollbar{
	height: 8px;
}
.js-scroll::-webkit-scrollbar-track{
	background-color: #fff;
}
.js-scroll::-webkit-scrollbar-thumb{
	background-color: var(--color_VIO);
}
@media screen and (min-width: 1400px) {
	.js-scroll::-webkit-scrollbar {
		display: none;
	}
}

.flex_item > div {
	padding: var(--gap_8px) var(--gap_24px);
}
.day,
.week {
	background-color: #1c2640;
}
.day,
.week,
.time1 {
	border-bottom: solid 1px #eee;
}

/* =======================================
    アニメーション
=======================*/
.pikapika {
	animation: pikapika 2s steps(1) infinite;
}
@keyframes pikapika {
	0%,100% {
	opacity: 0.2;
   }
	50% {
	opacity: 1;
   }
}

.fuwafuwa {
	animation: fuwafuwa 2s infinite 0s;
}
.fuwafuwa2 {
	animation: fuwafuwa 2s infinite 1s;
}
@keyframes fuwafuwa {
	0% {
	transform: translateY(8px);
   }
	50% {
	transform: translateY(-8px);
   }
	100% {
	transform: translateY(8px);
   }
}

.poyopoyo {
    animation: poyopoyo 2s ease-out infinite 1s;
}
.poyopoyo2 {
    animation: poyopoyo 2s ease-out infinite 2s;
}
@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
}

.anm_arrow_btm {
	animation: anm_arrow_btm 1s infinite;
}
@keyframes anm_arrow_btm {
	0% {
	transform: translateY(0);
	opacity: 1;
   }
   100% {
	transform: translateY(var(--gap_24px));
	opacity: 0;
   }
}

/* 画像の表示アニメーション*/
  .slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
  &.slidein-left{
      transform: translate(-100%,0);
  }
  &.slidein-right{
      transform: translate(100%,0);
  }
  &.slidein-up{
      transform: translate(0,-100%);
  }
  &.slidein-bottom{
      transform: translate(0,100%);
  }
  &.js-scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}

.c-text {
    display: none;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
	overflow: hidden;
}
#kv_wrap .c-text {
	position: absolute;
	top: 50%;
}
.c-text__item {
	font-size: clamp(20px,8vw,88px);
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 0.2em #000, 0 0 0.3em #000, 0 0 0.3em #000;
	white-space: nowrap;
    margin: 0 0 var(--gap_16px) 0;
    flex-shrink: 0;
}
.c-text__item {
    &:nth-child(odd) {
        animation: MoveLeft 50s -25s infinite linear;
    }
}
.c-text__item {
    &:nth-child(even) {
        animation: MoveLeft2 50s infinite linear;
    }
}
@keyframes MoveLeft {
	from {
	  transform: translateX(100%);
	}
	to {
	  transform: translateX(-100%);
	}
}
@keyframes MoveLeft2 {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-200%);
	}
}
.c-text__item em {
	color: var(--color_RED);
}
@media only screen and (min-width: 480px) {
	.c-text {
		display: none;
	}
	#kv_wrap .c-text {
		display: flex;
	}
}
@media only screen and (max-width: 479px) {
	.c-text {
		display: flex;
	}
	#kv_wrap .c-text {
		display: none;
	}
	.c-text__item {
		font-size: clamp(20px, 6vw, 88px);
	}
}

/* JS 時間指定で表示非表示を制御用 */
.js-time_limited {
    display: none !important;
}
.js-time_limited_fire {
    display: block !important;
}
/* END // JS 時間指定で表示非表示を制御用 */

#tvoHeader,
#tvoFooter {
	position: relative;
	z-index: 1000;
}
.tvo-footer_sp_ad {
	display: none !important;
}
@media only screen and (max-width: 767px) {
    footer.tvo-footer.sp_ad_pad {
        padding-bottom: 0 !important;
    }
}