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

.zen-kaku-gothic-new-regular {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.zen-kaku-gothic-new-black {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.zen-kaku-gothic-new-bold {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.zen-kaku-gothic-new-medium {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}





body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic Antique", 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,
.navbar.active2 {
    background-image: url(../img/gr.png);
    background-size: cover;
    opacity: 0;
    animation-name: header;
    animation-duration: 0.4s;

    animation-fill-mode: forwards;


    /* background: #f4d3e3; */
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);

}


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

    100% {
        opacity: 1;
    }
}

.navbar.active .nav-link,
.navbar.active2 .nav-link {
    color: #666;
}

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

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


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

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

    .kara {
        content: "";
    }

    li {
        padding: 1.2em 0;
        text-align: center;
    }

    .navbar-toggler {
        font-size: 2.25rem;
    }



}

@media (max-width: 991px) {}

/*========= 画面遷移のためのCSS ===============*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #f4d3e3;
    text-align: center;
    color: #fff;
}

/* Loadingバー中央配置　*/
#splash_text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
}



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

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

/*bodyにappearクラスがついたら出現*/
body.appear #container {
    animation-name: PageAnimeAppear;
    animation-duration: 1s;

    animation-fill-mode: forwards;
    opacity: 0;
}

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

    100% {
        opacity: 1;
    }
}

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



/* main */



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

.main {
    position: relative;
    display: flex;
    justify-content: center;
}


#main .logo {
    position: absolute;
    transform: scale(2) rotate(20deg);

    opacity: 0;
    top: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 80%;
}

#main.is-loaded .logo {
    transform: scale(1) rotate(0);
    opacity: 1;

    transition: opacity 4s ease 2s, transform 5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}

#main .bansen1 {
    opacity: 0;
    animation-name: bansen;
    animation-duration: 2.5s;
    animation-delay: 5s;
    animation-fill-mode: forwards;
}

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

    100% {
        opacity: 1;
    }
}

@media only screen and (min-width: 751px) {
    #main .logo {

        align-items: center;

    }

    #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 {
        right: 1em;
        position: absolute;
        bottom: 2em;
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.6));

    }

    #main .bansen1 h3 {
        color: #fff;
        font-size: 4em;
        font-weight: bold;
    }

    #main .eirin {
        left: 1em;
        bottom: 2em;
        position: absolute;
        width: 10%;
    }
}

@media only screen and (max-width: 750px) {
    #main .logo {
        padding-top: 10%;
        align-items: flex-start;

    }

    #main .logo svg {
        height: 85lvh;
    }

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

    #main .bansen1 {
        width: 100%;
        margin: 10% auto;


    }

    #main .bansen1 h3 {
        color: #fff;
        font-size: 2em;
        font-weight: 700;
        text-align: center;
    }

    #main .eirin {
        left: 1em;
        bottom: 1em;
        position: absolute;
        width: 20%;
    }
}



#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%;
    background-color: #F4F5F7;
    min-height: 100vh;
}

#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(252, 15, 192, 1);
    text-align: center;

}

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

}

.intro_con {
    display: flex;
}



.intro_con .intro_left {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;

}

.webp .intro_con .intro_left {
    background-image: url(../img/other/intro_left.webp);
}

.no-webp .intro_con .intro_left {
    background-image: url(../img/other/intro_left.png);
}




.concon {
    margin: 0 auto;
}

.catch_title {
    color: #fff;
    font-size: 3.5em;
    font-weight: 700;
    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: center;
    font-size: 2.5em;
    color: yellow;
    margin: 1em 0;
    font-weight: 700;
}

span {
    display: inline-block;
}

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


    #intro .intro_con {
        width: 100%;
    }

    .intro_right {
        padding: 10% 1%;
    }

    .intro_right img {
        width: 50%;
        transform: rotate(-6deg);
        margin-bottom: 10%;
    }

    .space_top {
        height: 5vh;
    }

    .intro_con .intro_left,
    .intro_con .intro_right {
        width: 50%;
    }
}

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


    #intro .intro_con {
        width: 95%;
        display: flex;
        flex-direction: column-reverse;
    }

    .intro_right {
        padding: 1% 1%;
    }

    .intro_right img {
        width: 80%;
        transform: rotate(-6deg);
    }

    .catch_title {
        color: #fff;
        font-size: 2.2em;
        padding-top: 40%;
        font-weight: 700;
        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: 700;
        text-align: center;
    }

    .concon span {
        display: inline-block;
    }

    .intro_con .intro_left,
    .intro_con .intro_right {
        width: 100%;
    }

    .intro_con .intro_left {

        height: 70vh;
    }
}

/* story */



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

#story .story_bg {
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
}



#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;
}





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

    .story_con img {
        width: 40%;
        transform: rotate(-6deg);
        margin-bottom: 10%;
    }

    #story {
        width: 100%;
        z-index: 10;
        text-align: center;
        padding: 5em 0 10em;
        background-repeat: no-repeat;
        background-position: left bottom, right bottom, bottom;
        background-size: 15%, 15%, contain;
        background-color: rgba(252, 15, 192, 1);
    }

    .webp #story {
        background-image: url(../img/other/left_g.webp), url(../img/other/right_g.webp), url(../img/cast/shibuya.png);

    }

    .no-webp #story {
        background-image: url(../img/other/left_g.png), url(../img/other/right_g.png), url(../img/cast/shibuya.png);

    }

    #story p {

        filter: drop-shadow(3px 3px 3px #515157);
    }
}

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

    #story {
        width: 100%;
        z-index: 10;
        text-align: center;
        padding: 5em 0 60vh;
        background-repeat: no-repeat;
        background-position: left bottom, right bottom;
        background-size: 30%;
        background-color: rgba(252, 15, 192, 1);
    }

    .webp #story {
        background-image: url(../img/other/left_g.webp), url(../img/other/right_g.webp), url(../img/cast/shibuya.svg);

    }

    .no-webp #story {
        background-image: url(../img/other/left_g.png), url(../img/other/right_g.png), url(../img/cast/shibuya.svg);

    }

    #story .story_con {
        width: 95%;
    }

    .story_con img {
        width: 60%;
        transform: rotate(-6deg);
    }
}

/* space */
@media only screen and (min-width: 751px) {
    #space {

        background-image: url(../img/other/mado.png), url(../img/other/bb.png), url(../img/other/bb.png);
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: center, 12% 0, 88% 0;
        background-size: cover, 5% 100%, 5% 100%;
        background-color: rgba(0, 0, 127, 0.3);


    }

    #spaceb {
        width: 100%;
        height: 30vh;
        margin-top: -10px;
        background-color: #000;
    }


}

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

        background-image: url(../img/other/mado.png), url(../img/other/bb.png), url(../img/other/bb.png);
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: center, 12% 0, 88% 0;
        background-size: cover, 5% 100%, 5% 100%;
        background-color: rgba(0, 0, 127, 0.3);


    }

    #spaceb {
        width: 100%;
        height: 30vh;
        margin-top: -10px;
        background-color: #000;
    }

}

#space {

    height: 105vh;
}






/* cast */

#cast {
    width: 100%;
    background-color: rgba(252, 15, 192, 0.7);
    z-index: 10;
    text-align: center;
    padding: 5em 0 10em;


}

#cast .cast_bg {
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
}




.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 {
    color: #fff;
}

.f_cast_con p {
    color: #fff;

}



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

    #cast .sub_title img,
    #staff .sub_title img,
    #comment .sub_title img,
    #yokoku .sub_title img {
        width: 30%;
        transform: rotate(-6deg);
        margin-bottom: 10%;
    }

    #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: 33%;
    }

    .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: 1.4em;
        padding: 15% 0 0;
        color: #fff;
        text-align: left;
        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) {

    #cast .sub_title img,
    #staff .sub_title img,
    #comment .sub_title img,
    #yokoku .sub_title img {
        width: 60%;
        transform: rotate(-6deg);
        margin-bottom: 10%;
    }

    .sub_title {
        font-size: 2em;
        padding: 15% 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: 75%;
    }

    #cast .cast_con .sub_cas {
        width: 65%;
        margin: 10% 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;
    }
}

.modal_flex {
    display: block;
}





.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.3;
}



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


}

.modal__bg {
    background: rgba(252, 15, 192, 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: 75%;
    }

    .modal_flex {
        justify-content: space-around;
        display: flex;
        width: 95%;
        margin: 0 auto 2em;
    }

    .modal_cast {
        padding: 5px;
        width: 55%;
        align-self: center;
    }

    .modal_cast .modal_about {
        padding: 1em;
    }

    .modal_img {
        padding: 2px;
        border: solid 3px #2323233b;
        width: 40%;
        align-self: center;
    }


}

@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: rgb(252, 15, 192);
    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: rgb(252, 15, 192);
    background-color: rgb(255, 255, 255, 0.8);
    border: double 2px rgb(252, 15, 192);

}

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

    color: #fff;
    background-color: rgb(252, 15, 192);
    border: double 2px #fff;

}

.btn-flat-double-border:hover {
    background: #fff;
    text-decoration: none;
    color: rgb(252, 15, 192);
}

.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;
}


/* staff */

#staff {
    background-image: url(../img/gr.png);
    background-size: cover;
    width: 100%;
    z-index: 10;
    text-align: center;
    padding: 5em 0 10em;
}

#staff p,
.kantoku h2,
.kantoku .head {
    color: #333;
}

#comment .comment_bg,
#staff .staff_bg {
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
}

#staff .staff_con {
    margin: 0 auto;
}


.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;
}

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

.kantoku .birth {
    text-align: center;
}

.lilubay {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 2em;
    border-radius: 2em;
}

.lilubay img {
    width: 40%;
    margin-bottom: 50px;
}

.lilubay .btn-flat-double-border {
    display: inline-block;
    padding: 0.4em 4em;
    text-decoration: none;
    color: #fff;
    background-color: rgba(252, 15, 192, 0.6);

    border: double 2px rgb(252, 15, 192);
    border-radius: 20px;
    transition: .4s;
    font-size: 1.3em;
}

.lilubay .btn-flat-double-border:hover {
    background: rgb(252, 15, 192);
    text-decoration: none;
    color: #fff;
}

.lilubay .modal img {
    width: 100%;
    margin-bottom: 0;
}




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


    #staff .staff_con {
        width: 80%;
    }

}

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


    #staff .staff_con {
        width: 90%;
    }

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

    .staff_con img {
        width: 100%;
    }

    .kantoku .sub_hon {
        font-size: 1.6em;
    }

    .kantoku h2 {
        font-size: 1.5em;

    }
}


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

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



#yokoku .yokoku_bg {
    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: 700;
}



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


    .yokoku_if {
        margin: 1em;

    }

    #yokoku .yokoku_con iframe {
        width: 80%;
    }
}

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


    #yokoku .yokoku_con iframe {
        width: 95%;
    }

    .yokoku_con {
        padding-top: 5em;
    }

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

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




/* footer */

footer span {
    display: inline-block;
}

footer {
    text-align: center;
    background-image: url(../img/gr.png);
    background-size: cover;

    padding: 2em 0;
}

.credit .c1,
.credit .c3,
footer .last {
    font-weight: 700;
    color: #333;
}

@media only screen and (min-width: 751px) {
    .credit {
        text-align: center;
        font-size: 1em;
        padding-bottom: 3em;
        width: 90%;
        margin: 0 auto;

    }

    .credit .c1 {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }

    .credit .c2 {
        font-size: 1.2em;
        margin-bottom: 0.5em;
    }

    .credit .c3 {
        font-size: 1em;
        line-height: 1.5;
    }

    .eirin_end {
        width: 8%;
        margin: 0 auto;
    }


}

@media only screen and (max-width: 750px) {
    .credit {
        text-align: center;
        font-size: 1em;
        padding-bottom: 3em;
        width: 95%;
        margin: 0 auto;

    }

    .credit .c1 {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }

    .credit .c2 {
        font-size: 1.2em;
        margin-bottom: 0.5em;

    }

    .credit .c3 {
        font-size: 1em;
        line-height: 1.3;
    }

    .eirin_end {
        width: 20%;
        margin: 0 auto;
    }

}

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






/* ローディング */

#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%;
    }
}

#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: 700;
}

.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;

}

@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;
    padding: 10em 0 5em;
    width: 100%;
}

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

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

.theater_con table {
    border-collapse: collapse;
    margin: 0 auto;
    min-width: 70%;
}

@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;

    }

}


/* 動画を囲う親要素 */
.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* logoグラデーション  */
#poly {
    fill: #231815;
    stroke: url(#gradient);
}

#stop1 {
    animation: step1 5s ease-in-out infinite alternate;
}

#stop2 {
    animation: step2 5s ease-in-out infinite alternate;
}

@keyframes step1 {
    0% {
        stop-color: #f56186;
    }

    50% {
        stop-color: #ffb8f2;
    }

    100% {
        stop-color: #f34747;
    }
}

@keyframes step2 {
    0% {
        stop-color: #ff3065;
    }

    50% {
        stop-color: #f1f50f;
    }

    100% {
        stop-color: #0ff55c;
    }
}

/* logoグラデーション2  */
#poly2 {
    fill: #231815;
    stroke: url(#gradient2);
}

#stop3 {
    animation: step3 5s ease-in-out infinite alternate;
}

#stop4 {
    animation: step4 5s ease-in-out infinite alternate;
}

@keyframes step3 {
    0% {
        stop-color: #f56186;
    }

    50% {
        stop-color: #ffb8f2;
    }

    100% {
        stop-color: #f34747;
    }
}

@keyframes step4 {
    0% {
        stop-color: #ff3065;
    }

    50% {
        stop-color: #f1f50f;
    }

    100% {
        stop-color: #0ff55c;
    }
}

.fa-brands,
.fab {
    font-weight: 400;
    font-size: 2em;
    color: #000;
    margin-right: 1em;
}

/*============
#comment
=============*/
#comment {
    width: 100%;
    background-color: rgba(252, 15, 192, 0.7);
    z-index: 10;
    text-align: center;
    padding: 5em 0 10em;
}



#comment h2,
#comment .jun,
#comment .sub_con2 {
    position: relative;
    z-index: 1;
}


#comment .jun {
    color: #fff;
    text-align: center;
    font-size: 12px;
}

@media only screen and (min-width: 751px) {
    #comment .comment_con {
        width: 85%;
        margin: 5em auto 10em;
        border: 2px solid #fff;
        padding: 2em 4em;
        border-radius: 2em;
    }

    .comment,
    .author {
        font-size: 1.7em;
        text-align: left;
        color: #fff;

    }

    .author {
        text-align: right;
        color: #faed00;
        font-style: italic;
        margin-top: 1em;

    }

    .author .yyy {
        font-weight: bold;
        font-size: 1.3em;
    }
}

@media only screen and (max-width: 750px) {
    #comment .comment_con {
        width: 95%;
        margin: 5em auto 10em;
    }

    .comment,
    .author {
        font-size: 1.4em;
        color: #fff;
        text-align: left;
    }

    .author {
        text-align: right;
        color: #faed00;
        font-style: italic;


    }

    .author .yyy {
        font-weight: bold;
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 750px) {
    .theater_con tr td:last-child {
        margin-bottom: 2em;
    }
}