html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

img {
    vertical-align: bottom;
    width: auto;
    max-width: 100%;
}

li {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

@media only screen and (min-width: 751px) {
    .sp {
        display: none;
    }
}

@media only screen and (max-width: 750px) {
    .pc {
        display: none;
    }
}


body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    background: url(../img/bg.png) repeat;
    font-family: 'Noto Sans JP', sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5 {
    color: #fff;
}

.section_con {
    padding: 10% 0;
}

/*nav --------------------------------------------------------*/
.pb-3,
.py-3 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
}

.navbar {
    transition: all 0.4s;
}

.navbar .nav-link {
    color: #fff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #fff;
    text-decoration: none;
}

.navbar .navbar-brand {
    color: #fff;
}


/* Change navbar styling on scroll */
.navbar.active {
    background: #B60005;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: #fff;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #555;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}


/* Change navbar styling on small viewports */
@media (max-width: 750px) {

    .navbar .navbar-brand,
    .navbar .nav-link {
        color: #555;
    }

}

@media (max-width: 991px) {

    li {
        padding: 1.2em 0;
    }
}

/*========= 画面遷移のためのCSS ===============*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #333;
    z-index: 9999999;
    text-align: center;
    color: #fff;
}


@media only screen and (min-width: 751px) {
    #splash-logo {
        position: relative;
        width: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width: 750px) {
    #splash-logo {
        position: relative;
        width: 90%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/*画面遷移アニメーション*/
.splashbg {
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: scaleX(0);
    background-color: #B60005;
    /*伸びる背景色の設定*/
    animation-name: PageAnime;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

}

@keyframes PageAnime {
    0% {
        transform-origin: right;
        transform: scaleX(0);
    }

    50% {
        transform-origin: right;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: left;
    }

    100% {
        transform-origin: left;
        transform: scaleX(0);
    }
}

/*画面遷移の後現れるコンテンツ設定*/

#container {
    opacity: 0;
    /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
    animation-name: PageAnimeAppear;
    animation-duration: 1s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#ytPlayerWrap {
    position: fixed;
    width: 100%;
    z-index: -1;
}



/* main */

.start {
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9000;
}

.start p {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    width: 80%;
}

@media only screen and (min-width: 751px) {
    .start p {
        width: 80%;
    }
}

@media only screen and (max-width: 750px) {
    .start p {
        width: 130%;
    }
}

#main_container {
    width: 100%;
    margin: 0;
    font-size: 14px;
}

.main {
    position: relative;
}


#main .logo {
    position: absolute;
    transform: scale(2.9);
    opacity: 0;
    top: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#main.is-loaded .logo {
    transform: scale(1);
    opacity: 1;
    transition: opacity 4s ease 1.5s, transform 10s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}

@media only screen and (min-width: 751px) {
    #main .logo img {
        width: 80%;
    }

    #main .shadow_logo {
        transform: rotate(-6deg);
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.6));
        margin-bottom: 5vh;
    }

    #main .bansen1 {
        width: 60%;
        transform: rotate(-6deg);

        right: 0;
        position: absolute;
        bottom: 0;
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.6));

    }
}

@media only screen and (max-width: 750px) {
    #main .logo img {
        width: 95%;
    }

    #main .shadow_logo {
        transform: rotate(-6deg);
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.6));
    }

    #main .bansen1 {
        width: 80%;
        position: absolute;
        bottom: 0;
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.6));
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);

    }
}



#video-overlay {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, -2.5);
    background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}


/* news */

#news {
    margin: 0 auto;
    width: 100%;
}

#news .news_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#news .news_con_sub {
    max-width: 1400px;
    margin: 0 auto;
}

.section_title h2 {
    margin-bottom: 1em;
}

#news .news_con .tokyo {
    width: 520px;
    padding: 20px 20px;
}

#news .news_con .tokyo iframe {
    width: 100%;
    height: 400px;
}

.news_area {
    width: 520px;
    padding: 20px 20px;
}

.news_area .news li {
    background: white;
}

.news_area .news li .date,
.news_area .news li .title {
    display: table-cell;
    vertical-align: middle;
}

.news_area .news li .date {
    border-right: 1px solid #3f98ef;
    text-align: center;
}

.news_area .news li .title {
    line-height: 1.6;
    text-align: left;
}

.news_area .news li .title a {
    text-decoration: none;
    color: #3f98ef;
}

.news_area .news .news_list {
    position: relative;
}

.news_area .news .news_list ul {
    height: 400px;
    overflow: auto;
}

.news_area .news .news_list ul p {
    color: #696969;
}

.news_area .news .news_list:before {
    width: 1px;
    background: #00b1ec2d;
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
}

@media only screen and (min-width: 751px) {
    #news .news_con {
        padding: 5% 30px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .news_area .news {
        width: 520px;
    }

    .news_area .news h3 {
        width: 116px;
    }

    .news_area .news li {
        margin-bottom: 3px;
    }

    .news_area .news .date {
        width: 74px;
        font-size: 14px;
        padding: 20px 0;
    }

    .news_area .news .title {
        font-size: 16px;
        padding: 0 20px;
    }

    /* .news_area .news .news_list {
        margin-bottom: 24px;
    } */
    .news_area .news .news_list:before {
        height: 30px;
        top: -30px;
    }

    .section_title h2 {
        font-size: 2em;
    }
}

@media only screen and (max-width: 750px) {
    #news .news_con {
        padding: 5em 0;
    }

    .section_title h2 {
        font-size: 1.3em;
    }

    .news_area .news h3 {
        width: 172px;
        width: 25.67%;
        margin: 0 auto 8%;
    }

    .news_area .news li {
        margin-bottom: 2px;
    }

    .news_area .news .date {
        width: 60px;
        font-size: 10px;
        padding: 14px 0;
        line-height: 1.2;
    }

    .news_area .news .title {
        font-size: 16px;
        padding: 6px 12px;
    }

    .news_area .news .news_list:before {
        height: 30px;
        top: -7%;
    }
}


/* intro */

#intro {
    width: 100%;
    z-index: 10;
    background-color: rgba(170, 1, 7, 0.8);
    text-align: center;
    padding: 5em 0 10em;

}

#intro p {
    color: white;
    margin-bottom: 70px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75;
    text-align: left;

}

#intro .intro_bg {
    background: url(../img/intro/intro_bg.svg) top no-repeat;
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
}



.concon {
    margin: 0 auto;
}

.catch_title {
    color: #fff;
    font-size: 3.5em;
    font-weight: 600;
    margin-top: 10%;
    text-shadow:
        0 0.05em 0.08em rgba(0, 0, 0, 0.7);
}

#intro .intro_con .intro_1 {
    padding: 12em 0 3em;
}

#intro .intro_con .intro_2 h3 {
    text-align: right;
}

.concon h3 {
    text-align: left;
    font-size: 2.5em;
    color: yellow;
    margin: 1em 0;
    font-weight: 600;
}

.catch_title span,
.concon span {
    display: inline-block;
}

@media only screen and (min-width: 751px) {
    #intro .intro_bg {
        background-size: 40%;
        background-position: top left;
    }

    #intro .intro_con {
        width: 60%;
    }

    .space_top {
        height: 20vh;
    }
}

@media only screen and (max-width: 750px) {
    #intro .intro_bg {
        background-size: 100%;
        background-position: top left;
    }

    #intro .intro_con {
        width: 90%;
    }

    .catch_title {
        color: #fff;
        font-size: 2.2em;
        padding-top: 40%;
        font-weight: 600;
        text-shadow: 0 0.05em 0.08em rgb(0 0 0 / 70%);
    }

    .concon h3 {
        text-align: left;
        font-size: 1.8em;
        color: yellow;
        margin: 1em 0;
        font-weight: 600;
    }

    .concon span {
        display: inline-block;
    }
}

/* story */
#story {
    width: 100%;
    z-index: 10;
    text-align: center;
    padding: 5em 0 10em;
    background-color: rgba(170, 1, 7, 0.8);
}

#story p {
    color: white;
    margin-bottom: 70px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75;
    text-align: left;
}

#story .story_bg {
    background: url(../img/story/story_bg.svg) top no-repeat;
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
}

@media only screen and (min-width: 751px) {
    #story .story_bg {
        background-size: 40%;
        background-position: top left;
    }
}

@media only screen and (max-width: 750px) {
    #story .story_bg {
        background-size: 100%;
        background-position: top left;
    }
}

#story .story_con {
    margin: 0 auto;
}

.story_con h2 {
    font-size: 1.4em;
    padding-bottom: 2em;
}

#story .story_con .arasuzi_con {
    display: flex;
    justify-content: space-around;
}

.arasuzi p {
    text-shadow: 2px 2px 3px black;
}

@media only screen and (min-width: 751px) {
    #story .story_con {
        width: 70%;
    }
}

@media only screen and (max-width: 750px) {
    #story {
        padding-top: 10em;
    }

    #story .story_con {
        width: 90%;
    }
}

/* space */
@media only screen and (min-width: 751px) {
    #space {
        background-image: url(../img/title/ttt.png);

    }
}

@media only screen and (max-width: 750px) {
    #space {
        background-image: url(../img/title/ttt_sp.png);
    }

}

#space {
    background-size: cover;
    background-position: center;
    height: 160vh;
}





/* cast */

#cast {
    width: 100%;
    background-color: rgb(100, 100, 100, 0.6);
    z-index: 10;
    text-align: center;
    padding: 5em 0 10em;


}

#cast .cast_bg {
    background: url(../img/cast/cast_bg.svg) top no-repeat;
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
}

@media only screen and (min-width: 751px) {
    #cast .cast_bg {
        background-size: 40%;
        background-position: top left;

    }
}

@media only screen and (max-width: 750px) {
    #cast .cast_bg {
        background-size: 100%;
        background-position: top left;

    }
}


.f_cast_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 5%;
}

#cast .cast_con .cast_grid {
    text-align: center;
    background-image: url(../img/other/test2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}






#cast .cast_con .cast_grid img {
    width: 100%;
}



.f_cast_con h2 {
    text-shadow: 2px 2px 3px black;
    color: #fff;
}

.f_cast_con p {
    text-shadow: 1px 1px 2px black;
    color: #fff;

}



@media only screen and (min-width: 751px) {
    #cast {
        margin: 0 auto;
    }

    #cast .yaku {
        margin: 0 0 -6%;
    }

    #cast .cast_con {
        padding: 0 10px;
        max-width: 1400px;
        margin: 0 auto;
    }

    #cast .cast_con .cast_grid {
        width: 25%;
    }

    #cast .cast_con .main_cas {
        padding: 3% 30px;
    }

    #cast .cast_con .sub_cas {
        padding: 1% 30px;
        margin: 5% 0;
    }

    #cast .cast_con .main_cas {
        width: 30%;
    }

    .cast_team_name {
        width: 38%;
        margin-top: -100px;
        z-index: -1;
        fill: darkgrey;
    }

    .cast_grid h2 {
        font-size: 1.8em;
        padding: 0.7em 0 0;
    }

    .cast_grid p {
        font-size: 1.2em;
        margin: 0 0 0.5em;
    }

    .sub_title {
        font-size: 2em;
        padding: 15% 0 0;
        color: #fff;

        font-weight: bold;
    }

    .cast_team {
        margin-top: 30px;
    }

    .cast_2 {
        text-align: right;
    }

    .cast_hosoku {
        padding: 10% 5% 0;
    }

    .cast_hosoku p {
        padding: 5px 0;
    }
}

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

    .sub_title {
        font-size: 2em;
        padding: 50% 0 10%;
        color: #fff;
        text-shadow:
            0 0.05em 0.08em rgba(0, 0, 0, 0.7);
        font-weight: bold;
    }

    .cast_grid .coment {
        margin-top: 8%;
    }

    #cast .cast_con .cast_grid {
        background-position: bottom;
    }





    .cast_con h3 {
        font-size: 2em;
    }

    .f_cast_con {
        margin-top: -20px;
    }

    #cast .cast_con .cast_grid {
        width: 60%;
        margin: 30px 10px;
    }

    #cast .cast_con .main_cas {
        width: 70%;
    }

    #cast .cast_con .sub_cas {
        width: 60%;
        margin: 13% 0;
    }

    .f_sub {
        margin-top: 20%;
    }


    .cast_grid h2 {
        font-size: 2.2em;
    }

    .cast_grid p {
        font-size: 1.4em;
        line-height: 1em;
        margin: 1% 0;
    }

    .cast_team {
        margin-top: 30px;
        margin-bottom: -80px;
    }

    .f-item01 {
        order: 1;
    }

    .f-item02 {
        order: 2;
    }

    .f-item03 {
        order: 3;
    }

    .f-item04 {
        order: 4;
    }

    .f-item05 {
        order: 5;
    }

    .f-item06 {
        order: 6;
    }

    .f-item07 {
        order: 7;
    }

    .f-item08 {
        order: 8;
    }

    .f-item09 {
        order: 9;
    }

    .cast_team_name {
        width: 100%;
        margin: -100px 0 -80px 0;
    }

    .cast_2 {
        font-size: 12px;
        padding: 0 2em 1em;
    }

    .cast_hosoku {
        padding: 1em 2em 1em;
    }

    .cast_hosoku p {
        font-size: 12px;
        padding: 5px 0;
    }
}

/* staff */

#staff {
    background-color: #cccccc;
    width: 100%;
    z-index: 10;
    text-align: center;
    padding: 5em 0 10em;
}

#staff .staff_bg {
    background: url(../img/staff/staff_bg.svg) top no-repeat;
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
}

#staff .staff_con {
    margin: 0 auto;
}

#staff .staff_con .kantoku {
    margin: 2em auto;
    background-color: rgb(255, 255, 255, 0.8);
    border: solid 1px #333;
    border-radius: 15px;
    padding: 5%;

}

.kantoku p {
    margin-bottom: 70px;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.55;
    text-align: left;
}

.kantoku h2 {
    font-size: 2em;
    font-weight: bold;
    padding: 1em 0;
    color: #B60005;
}

.kantoku .head {
    text-align: left;
    font-size: 1.5em;
    font-weight: bold;
}

.staff_con img {
    width: 75%;
    margin-bottom: 10%;
}

@media only screen and (min-width: 751px) {
    #staff .staff_bg {
        background-size: 40%;
        background-position: top left;

    }

    #staff .staff_con {
        width: 80%;
    }

    #staff .staff_con .kantoku {
        width: 90%;
    }
}

@media only screen and (max-width: 750px) {
    #staff .staff_bg {
        background-size: 100%;
        background-position: top left;

    }

    #staff .staff_con {
        width: 95%;
    }

    #staff .staff_con .kantoku {
        width: 100%;
    }

    .staff_con img {
        width: 100%;
    }
}


/* yokoku */
#yokoku {
    width: 100%;
    z-index: 10;
    text-align: center;
    padding: 5em 0 10em;
}

#yokoku .yokoku_con {
    padding-top: 10%;
}

#yokoku .yokoku_bg {
    background: url(../img/trailer/trailer_bg.svg) top no-repeat;
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
}

.yokoku_flame {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10vh 0;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 10% 0;
}



.iframe_title {
    font-size: 1.2em;
    margin: 1em;
    font-weight: 600;
}



@media only screen and (min-width: 751px) {
    #yokoku .yokoku_bg {
        background-size: 40%;
        background-position: top left;

    }

    .yokoku_if {
        margin: 1em;

    }
}

@media only screen and (max-width: 750px) {
    #yokoku .yokoku_bg {
        background-size: 100%;
        background-position: top left;
    }

    .yokoku_bg iframe {
        width: 90%;
    }

    .yokoku_con {
        padding-top: 5em;
    }

    iframe {
        aspect-ratio: 16 / 9;
        width: 100%;
        height: 100%
    }

    .yokoku_if {
        margin-bottom: 10em;
        width: 100%;
    }
}




/* footer */

#footer {
    margin: 0 auto;
    width: 100%;
    padding: 15% 0 5%;
    background-color: #242424;
}

#footer p {
    color: whitesmoke;
    text-align: center;
}

#footer a {
    color: #ff9900;
}

#footer .foot2 span {
    display: inline-block;
}

#footer .last {
    padding: 3em 0 1em;
}

@media only screen and (min-width: 751px) {
    #footer .foot2 .ff1 {
        font-size: 1.5em;
    }

    #footer .foot2 .ff1 span {
        margin: 0 0.5em;
    }

    #footer .foot2 .ff2 {
        font-size: 1.2em;
    }

    #footer .foot2 .ff2 span {
        margin: 0 0.4em;
    }

    #footer .foot2 .ff4 {
        font-size: 1.3em;
    }

    #footer .foot2 .ff4 span,
    .ff5 span {
        margin: 0 0.4em;
    }

}

@media only screen and (max-width: 750px) {
    #footer .foot2 .ff1 {
        font-size: 1.2em;
    }

    #footer .foot2 .ff1 span {
        margin: 0 0.5em;
    }

    #footer .foot2 .ff2 {
        font-size: 1em;
    }

    #footer .foot2 .ff2 span,
    .ff4 span,
    .ff5 span {
        margin: 0 0.4em;
    }
}

.wrapper {
    height: 100%;
    overflow-x: hidden;
    position: relative;
}




/* ページtop */

#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.6;
    border-radius: 50%;
}

#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #5C5C5C;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

@media screen and (min-width: 960px) {
    .bg_triangle {
        background: url(../img/line_pc.svg) top/0% no-repeat;
        transition: all 1.5s;
    }
}

@media screen and (max-width: 959px) {
    .bg_triangle {
        background: url(../img/line_sp.svg) top/0% no-repeat;
        transition: all 1.5s;
    }
}


/* ローディング */

#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: aliceblue;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.self-building-square-spinner,
.self-building-square-spinner * {
    box-sizing: border-box;
}

.self-building-square-spinner {
    height: 40px;
    width: 40px;
    top: calc(-10px * 2 / 3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.self-building-square-spinner .square {
    height: 10px;
    width: 10px;
    top: calc(-10px * 2 / 3);
    margin-right: calc(10px / 3);
    margin-top: calc(10px / 3);
    background: #1760ff;
    float: left;
    position: relative;
    opacity: 0;
    animation: self-building-square-spinner 6s infinite;
}

.self-building-square-spinner .square:nth-child(1) {
    animation-delay: calc(300ms * 6);
}

.self-building-square-spinner .square:nth-child(2) {
    animation-delay: calc(300ms * 7);
}

.self-building-square-spinner .square:nth-child(3) {
    animation-delay: calc(300ms * 8);
}

.self-building-square-spinner .square:nth-child(4) {
    animation-delay: calc(300ms * 3);
}

.self-building-square-spinner .square:nth-child(5) {
    animation-delay: calc(300ms * 4);
}

.self-building-square-spinner .square:nth-child(6) {
    animation-delay: calc(300ms * 5);
}

.self-building-square-spinner .square:nth-child(7) {
    animation-delay: calc(300ms * 0);
}

.self-building-square-spinner .square:nth-child(8) {
    animation-delay: calc(300ms * 1);
}

.self-building-square-spinner .square:nth-child(9) {
    animation-delay: calc(300ms * 2);
}

.self-building-square-spinner .clear {
    clear: both;
}

@keyframes self-building-square-spinner {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
        top: 0;
    }

    50.9% {
        opacity: 1;
        top: 0;
    }

    55.9% {
        opacity: 0;
        top: inherit;
    }
}

.loaded {
    opacity: 0;
    visibility: hidden;
}

.flame_in {
    position: relative;
}



.endv2 {
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 100%;
    opacity: 1;
}

.endv {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.9;
}

/* notice */
#tyuui {
    margin: 0 auto;
    width: 100%;
    padding: 15% 0 5%;
}

.tyuui h2 {
    font-size: large;
    color: aliceblue;
    text-align: center;
    margin-bottom: 5em;
}



@media screen and (min-width: 960px) {
    .open {
        right: 0;
        width: 40%;
        padding-top: 22vh;
        text-align: right;
        background-color: #B60005;
        display: none;
        clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
    }

    .open .pc {
        width: 50%;
        padding: 1%;
    }
}






@media screen and (max-width: 959px) {
    .open {
        width: 100%;
        text-align: center;
        display: none;
        background-color: #B60005;

    }

    .open .sp {
        width: 50%;
        padding: 2%;
    }
}

.modal_flex {
    display: block;
}



.modal_cast {
    padding: 5px;

}

.modal_cast h2 {
    font-size: 2em;
    text-shadow: none;
    color: #333;
    font-weight: bold;
    padding: 0.3em 0 0;
    text-align: left;
}

.modal_cast .sub_name {
    margin: 2px 0 1em;
}


.modal_cast p {
    font-size: 1em;
    text-shadow: none;
    color: #333;
    line-height: 1.2;
}



.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;


}

.modal__bg {
    background: rgba(182, 0, 5, 0.8);
    height: 100vh;
    position: fixed;
    width: 100%;
}



.modal__content p {
    text-align: left;
}

.modal__content a {
    margin-top: 1em;
}

@media only screen and (min-width: 751px) {
    .modal__content {
        background: #fff;
        left: 50%;
        padding: 40px;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
    }

    .modal_cast .modal_about {
        padding: 1em;
    }

    .modal_img {
        padding: 2px;
        border: solid 3px #2323233b;
        width: 30%;
        margin: 0 auto;
    }

}

@media only screen and (max-width: 750px) {
    .modal_img {
        padding: 2px;
        border: solid 3px #2323233b;
        width: 50%;
        margin: 0 auto;
    }

    .modal__content {
        background: rgb(255, 255, 255, 0.8);
        left: 50%;
        padding: 5px;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 95%;

    }

    .modal_content_in {

        padding: 5px 0;


    }

    .modal_name {
        text-align: left;
    }



    .modal_out {
        background-color: #fff;
        background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 97.5%, #646464 100%);
        background-size: 8px 100%, 100% 28px;
        line-height: 28px;
        padding: 2em 0 0.2em 0em;
    }
}

.btn-flat-double-border {
    display: inline-block;
    padding: 0.4em 4em;
    text-decoration: none;
    color: #B60005;
    background-color: rgb(255, 255, 255, 0.8);
    border: double 2px #fff;
    border-radius: 20px;
    transition: .4s;
    font-size: 1.3em;
}

.modal .btn-flat-double-border {

    color: #B60005;
    background-color: rgb(255, 255, 255, 0.8);
    border: double 2px #B60005;

}

.modal .btn-flat-double-border:hover {

    color: #fff;
    background-color: rgb(235, 0, 5, 0.8);
    border: double 2px #fff;

}

.btn-flat-double-border:hover {
    background: #fff;
    text-decoration: none;

}

.btn-flat-double-border2 {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #f29c9f;
    border: double 4px #f29c9f;
    border-radius: 25px;
    transition: .4s;
}

.btn-flat-double-border2:hover {
    background: #f29c9f1a;
}

#news .news_head {
    background-color: #B60005;
    text-align: center;
}

#news .news_head h3 {
    font-size: 4em;
    padding: 15% 0;
    color: white;
}

.news_con .news_fom {
    width: 60%;
    border: 2px solid;
    border-radius: 15px;
    border-color: #555;
    margin: 2em 0;
}

.news_con .news_concon {
    padding: 3em 2em;
}

.news_concon p {
    margin: 1em;
    line-height: 25px;
}

.news_concon h5 {
    margin: 1em;
    font-size: 1.5em;
    font-weight: 600;
}

.news_concon .date {
    text-align: right;
}

.btn--orange,
a.btn--orange {
    color: #fff;
    background-color: #B60005;
}

.btn--orange:hover,
a.btn--orange:hover {
    color: #fff;
    background: red;
}

.news_con .news_concon a {
    display: block;
    width: 50%;
    margin: 2em auto 0;
}

@media only screen and (max-width: 750px) {
    .news_con .news_fom {
        width: 95%;
    }

    .news_con .news_concon {
        padding: 1em 0;
    }



    .news_concon p {
        line-height: 28px;
    }

    #news .news_head h3 {
        font-size: 2em;
    }
}

.theater_con {
    text-align: center;
    margin: 5em 0;
    width: 100%;
}

.theater_con h2 {
    font-size: 2em;
    padding: 1em 0;
    font-weight: 600;
}

.theater_con th,
.theater_con td {
    border: solid 1px;
    padding: 10px;
}

.theater_con table {
    border-collapse: collapse;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .theater_con {
        width: 100%;
    }

    .theater_con th,
    .theater_con td {
        display: block;
        width: 100%;
    }

    .theater_con h2 {
        font-size: 1.4em;

    }

}