/********** Template CSS **********/
body {
    /* font-family: 'Zen Maru Gothic', serif; */
}

section#cast {/* display: none; */}

.pc {
    display: block;
}

.sp {
    display: none;
}

  body {
    display: none;
    overflow-x: hidden;
    width: 100%;
    /* height: 100vh; */
    background: linear-gradient(45deg, #7eb7d1,#cba7d9,#87c499);
    /**/
    background-size: 200% 200%;/**/
    animation: bggradient 13s ease infinite;
  }

.wrap {
    /* width: 70%; */
    /* margin: auto; */
    /* position: relative; */
}

p {
    line-height: 1.8em;
}


p {
    margin-top: 0;
    margin-bottom: 0;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
        /* font-family: 'Zen Maru Gothic', serif; */
}

:root {
    --primary: #4294E3;
    --secondary: #8F12FD;
    --light: #F0F6FF;
    --dark: #262B47;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Zen Maru Gothic', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        /* background: #ffffffdb; */
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 16rem 0 0 0;
    background: url(../img/main_image.jpg),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer_title {
    bottom: 10px;
    width: 100%;
    /* position: absolute; */
    right: 0;
    /* margin-bottom: 160px; */
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/**/
.pararax-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.pararax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/main_image.jpg');
  background-size: cover;
  background-position: center;
/*  z-index: -1;*/
}





.pararax_auto {
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/main_image.jpg');
  background-size: 100%;
  background-position: center;
  /*  z-index: -1;*/
  height: 100vw;
  background-color: azure;
}



/**/
.navbar {
    flex-wrap: wrap;
    width: 20%;
    padding-left: 20px !important;
}

.navbar-nav {
    flex-wrap: wrap;
    width: 230px;
}

div#navbarCollapse {display: none !important;}

.navbar-nav a.nav-item {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link.active::before {
    left: -10px !important;
    top: 50%;
}

.sticky-top.navbar-light .navbar-nav .nav-link::before {
    left: -30px;
    top: 50%;
}

.navbar-light .navbar-nav .nav-link {
    padding: 10px;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
}

#navbarCollapse > div > a:nth-child(3):before {
}

sticky-top .navbar-light .navbar-nav .nav-link::before {
    top: 50%;
    left: 0 !important;
}




.navbar-light .navbar-brand h1 {
    transition: transform 0.5s ease-in-out; 
    transform: translate(0px, -150px);
    background: #000000;
    border-radius: 10px;
}

.sticky-top.navbar-light .navbar-brand h1 {
    transition: transform 0.5s ease-in-out;
    transform: translate(0px, 0px);
    background: #000000;
    border-radius: 10px;
}

.navbar-light .navbar-brand img {
    max-height: inherit;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: inherit;
}

section.interview .right_box img {
    width: 90%;
    margin: auto;
    text-align: center;
    display: block;
    padding: 15px;
    border: 1px solid #000;
    transform: rotateZ(1deg);
    border-radius: 0 !important;
}

.navbar {padding-left: 0 !important;}

.navbar-brand h1 {
    border-radius: 0px !important;
    border-bottom-right-radius: 10px !important;
    padding: 10px;
    width: 300px;
    border-right: 1px dashed #ffcd00;
    border-bottom: 1px dashed #ffcd00;
    border-spacing: 6px; /* 6px  */
}



/**/
section.main_visual {
      background-image: url('../img/main_image.jpg');
      background-size: 1050px;
      height: 140vh;
      overflow: hidden;
      position: relative;
      background-attachment: fixed;
      background-position: 50% -790px; 
      /*  */
      z-index: 1;
      background: #f9fafc;
}


@keyframes fadeInBackgroundImage {
  from {
    opacity: 0; 
  }
  to {
    opacity: 1; 
  }
}

section.main_visual {/*  opacity: 0;*/

  animation: fadeInBackgroundImage 1s ease-in-out;overflow: hidden;}





.top {
    width: 180%;
    height: 60px;
    background: linear-gradient(to bottom left, transparent 50%,#000000 51%) no-repeat top left/100% 50%, linear-gradient(to top left, transparent 50%, #000000 51%) no-repeat bottom left/100% 50%;
    position: absolute;
    top: -20px;
    left: 0;
}



.left {
    background-color: black;
    width: 46px;
    height: 100%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 0;
    left: 0;
}

.bottom {
    background-color: black;
    width: 150%;
    height: 16vh;
    clip-path: polygon(0 0, 0% 100%, 100% 110%);
    position: absolute;
    bottom: 0px;
    left: 0;
}

.right {
    background-color: black;
    width: 56px;
    height: 100%;
    clip-path: polygon(100% 0, 100% 100%, 0% 80%);
    position: absolute;
    top: 0;
    right: 0;
}

section.main_visual .container img {
    width: 60%;
    margin: auto;
    top: 25%;
    position: fixed;
    right: 49%;
    transform: translate(50%, -50%) !important;
    mix-blend-mode: multiply;
}


    @keyframes slideInDownFade {
      0% {
        opacity: 0;
       transform: translateY(-300px); 
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .slideInDownFade {
              opacity: 0; 
      animation: slideInDownFade 2s ease 0.8s forwards;
    }

.bx-wrapper img {
    height: 100vh;
    display: inline;
    margin: auto;
}

.bx-wrapper {
    background: inherit !important;
    box-shadow: none !important;
    border: none !important;
    text-align: center;
}

         .hidden-element {
            display: none;
            padding: 30px;
            background-color: #000000e0;
            /* border: 1px solid #ccc; */
            margin-top: 20px;
            position: fixed;
            top: -20px;
            bottom: 0;
            right: 0;
            left: 0;
            z-index: 999999999;
            width: 100%;
            height: 100%;
        }
        #toggleButton {
            cursor: pointer;
            background: inherit;
            color: #fff;
            padding: 10px;
            border: none;
            border-radius: 5px;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            z-index: 999;
        }
        .close-btn {
            cursor: pointer;
            float: right;
            font-size: 53px;
            z-index: 999;
            font-weight: bold;
            color: white;
            position: absolute;
            top: 0;
            right: 0;
            /* border-radius: 90.1px; */
            border: 1px solid #000;
            height: 1em;
            width: 1em;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 80px;
            width: 80px;
            background: #777777e6;
            color: white;
        }
.hidden-element iframe.title_box {
    width: 100%;
    margin: auto;
    display: block;
}
.youtube_wrap{
    padding-top: 56.25%;
    width: 80%;
    position: relative;
    margin: auto;
    text-align: center;
    /* margin-top: 100px; */
    height: 100%;
}
 
.youtube_wrap iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}






/*main_visual_footer*/
section.main_visual_footer {background: black;color: white;text-align: center;padding-bottom: 60px;position: relative;z-index: 2;}

section.main_visual_footer .yellow_box {
    background: #eaff00;
    display: inline-block;
    border: 1px solid #5b5b5b;
    border-radius: 100px;
    color: black;
    font-weight: bold;
    padding: 10px 70px;
    font-size: 32px;
    position: relative;
    margin-bottom: 0px;
    margin-top: -90px;
    top: -44px;
    font-weight: 600;
    font-family: 'M PLUS 1', sans-serif;
    line-height: 1.2em;
    /*    transform: scale( 1.05, 1 );*/
}

section.main_visual_footer:after {
    background-color: #000000;
    width: 100%;
    height: 110px;
    clip-path: polygon(0 0, 0% 100%, 100% 53%);
    content: "";
    position: absolute;
    left: 0;
    z-index: 11;
    bottom: -52px;
}

.container-xxl.bg-white.p-0 {
    width: 1000px;
    position: relative;
}

section.main_visual_footer .cast01 {
    font-size: 1.4em;
    font-weight: 300;
    margin-bottom: 30px;
    /* font-family: 'M PLUS 1', sans-serif; */
    line-height: 1.2em;
    font-family: "Shippori Mincho B1", serif;
}

.pff {}

.pff p {
    font-size: 19px;
    font-family: 'M PLUS 1', sans-serif;
    font-weight: 900;
    /* margin-bottom: 2em; */
}

section.teaser_movie {
    /* background: url(); */
    /* background-image: url('../img/bg01.jpg'); */
    padding: 60px 0 0;
    /* height: 2627px; */
    /* background-size: 2627px; */
    /* overflow: hidden !important; */
}


section.teaser_movie iframe {
    margin: auto;
    display: block;
    /* width: 89%; */
    /* height: 60vh; */
    /* z-index: 999; */
}

h2.title_box {
    /* border: 2px solid #000; */
    text-align: center;
    display: table;
    margin: auto;
    border-radius: 140px;
    padding: 0px 20%;
    margin: 30px auto;
    /* font-size: 53px; */
    /* font-family: 'Sawarabi Gothic', sans-serif; */
    -moz-transform: scale( 0.80, 1 ); /* Firefox */
    /* -webkit-transform: scale( 0.80, 1 ); */ /* Chrome,Safari */
    -ms-transform: scale( 0.80, 1 ); /* IE */
    /* transform: scale( 1.5, 1 ); */ /* CSS3 */
    margin-bottom: 100px;
}

h2.title_box p {
    transform: scale( 1.1, 1 );
    letter-spacing: 0em;
    font-weight: 600 !important;
    font-size: 60px;
    /* -webkit-text-stroke: 1px #858585; */
    text-stroke: 1.5px #FFF;
    color: #8f8f8f;
    line-height: 1em;
    padding: 20px 0;
    /* left: 1.3em; */
    position: relative;
    /* font-family: 'M PLUS 1', sans-serif; */
    font-family: "Shippori Mincho B1", serif;
    display: inline-block;
    background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
    background: -webkit-linear-gradient(0deg, #000000, #4e4e4e 30%, #929292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


section.teaser_movie .txt {}

.copyright01 {
    /* background: #f5ff01; */
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: 23px;
    /* position: absolute; */
    bottom: 0;
    right: 50%;
    width: 100%;
    /* transform: translate(50%, -50%); */
    font-family: 'M PLUS 1', sans-serif;
    line-height: 1.5em;
    font-weight: 300;
}

p.txt02 b {
    font-weight: 300 !important;
    font-size: 10px;
}

section.teaser_movie .txt p.line_txt {
    font-size: 33px;
    background: black;
    line-height: 2em;
    display: inline;
    position: relative;
    color: white;
    font-weight: bold;
    left: -0.7vw;
    top: 3vw;
    width: 90%;
}

section.teaser_movie .txt p.size_big {
    font-size: 70px;
    text-align: right;
    color: white;
    font-weight: bold;
}

p.txt01 {
    font-size: 12px;
    /* background: #f5ff01; */
    display: inline-block;
    font-weight: 100;
    color: white;
}

p.txt02 {
    background: #f5ff01;
    font-size: 0.7em;
    margin-top: 50px;
    display: inline-block;
}

.background_black {
    position: relative;
    background: #00000096;
    padding-bottom: 60px;
    padding-top: 60px;
}

p.txt02.wow.fadeInUp {}

.copyright01 .display_flex {
    display: flex;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.copyright01 .display_flex p.txt01:nth-child(1) {
    width: 100%;
    text-align: center;
}

.copyright01 .display_flex p.txt01 {
    text-align: left;
    width: 23.3%;
    color: white;
    font-weight: 100;
}

.footer_title img {
    width: 300px;
    text-align: center;
    margin: auto;
    display: block;
    margin-bottom: 40px;
    display: none;
}

.container-xxl.bg-white.p-0 {
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    background: inherit !important;
}

section.teaser_movie iframe:before {
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: aqua;
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
}


#toggleButton:before {
    position: absolute;
    content: "";
    display: block;
    background: content-box;
    /* width: 120%; */
    /* height: 120%; */
    top: -40px;
    bottom: -40px;
    right: 0px;
    border-right: 1px solid #000000;
    border-left: 1px solid #000000;
    left: 0px;
    z-index: -16;
}

#toggleButton:after {
    position: absolute;
    content: "";
    display: block;
    background: content-box;
    /* width: 120%; */
    /* height: 120%; */
    top: 0px;
    bottom: 0px;
    right: -40px;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    left: -40px;
    z-index: -16;
}

section.main_visual_footer:after {
}


section.main_visual_footer .container:before {
    content: "";
    display: block;
    width: 110%;
    height: 2px;
    background: black;
    transform: rotate(3.7deg) translate(50%, 0%);
    right: 50%;
    position: absolute;
    top: -90px;
    display: none;
}

section.main_visual_footer .container:after {
    content: "";
    display: block;
    width: 110%;
    height: 2px;
    background: black;
    transform: rotate(-2.9deg) translate(50%, 0%);
    right: 50%;
    position: absolute;
    bottom: -52px;
    display: none;
}


section.main_visual_footer .cast02 {
    font-family: 'M PLUS 1', sans-serif;
    line-height: 1.5em;
/*    transform: scale( 1.05, 1 );*/
    font-weight: 300;
}



section.teaser_movie .txt {
    /* display: none; */
}


.site_title_floating {
    position: fixed;
    width: 90vw;
    top: 0;
    left: 0;
    z-index: 999999;
    /* background: black; */
    padding: 10px;
    border-bottom-right-radius: 20px;
    /* border-right: 1px solid #eee; */
    /* border-bottom: 1px solid #eee; */
    transform: translate(0px, -100%);
    transition: all 0.5s 1s ease-in-out;
}
.site_title_floating.fixed {
    transform: translate(0px, 0%);
    transition: all 0.5s 0s;
    mix-blend-mode: multiply;
}

.site_title_floating img {
    width: auto;
    height: auto;
    max-width: 100%;
}


.sns_icon_floating {margin-bottom: 30px;}

.sns_icon_floating .d-flex {
    justify-content: center;
    gap: 20px;
}

.sns_icon_floating i {
    font-size: 31px;
}

.sns_icon_floating .d-flex a.btn {
    border-radius: 100%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}




@media screen and (max-width: 1000px) and (min-width: 621px) {
section.main_visual_footer .yellow_box {
    font-size: 3.5vw;
}

.copyright01 {
    font-size: 2.3vw;
}

h2.title_box p {
    font-size: 11vw;
}

.footer_title img {
    margin-bottom: 5vw;
}

section.main_visual_footer .cast01 {
    font-size: 2.9vw;
}

section.main_visual_footer .cast02 {
    font-size: 2.2vw;
}

.site_title_floating {
    width: 30vw;
    border-bottom-right-radius: inherit;
}

  .site_title_floating {
    width: 25vw;
    border-bottom-left-radius: 10px;
    right: -1px;
    left: inherit;
}

.site_title_floating img {
    width: 13vw;
    margin: auto;
}

/* section.main_visual:before {
    content: "";
    display: block;
    position: fixed;
    z-index: 0;
    background: #bdbdbd;
    background-image: url(../img/main_image.jpg);
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-position: 0vw -52vw;
    background-size: 100%;
} */

section.introduce .right_box {
    padding-top: 66vw !important;
}
  
.container-xxl.bg-white.p-0 {
    width: auto;
    overflow: hidden;
}
.footer_title {
    right: 0;
}
.youtube_wrap {
    width: 100%;
}
.container, .container-sm, .container-md {
    max-width: inherit;
    width: 100%;
}
section.teaser_movie {
    padding-top: 30vw;
    /* height: 300vw; */
}
section.main_visual {
    /* background-size: 100%; */
    /* background-position: 50% -190vw !important; */
    background-size: 100%;
    height: 130vw;
}

section.main_visual .container img {
    top: 17vw;
    width: 80%;
}

  section.main_visual .background_img01 {background-size: 120%;}

section.main_visual .container {
    padding: 0;
}

  
}











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


.container-xxl.bg-white.p-0 {
    width: auto;
    border: none;
    overflow: hidden;
}

section.main_visual {
    height: 66vh;
    background-size: 110%;
}

  .site_title_floating {
    width: 32vw;
    padding: 3vw;
    border-bottom-right-radius: 0vw;
    border-right: 0;
}

.right {
    width: 7vw;
}

.left {
    width: 7vw;
}

  

section.main_visual .container img {
    top: inherit;
    width: 93%;
    /* right: 50%; */
    right: 43%;
    transform: translate(50%, 0%) !important;
    top: -6vw;
}

section.main_visual_footer .yellow_box {
    width: 90vw;
    font-size: 4vw;
    top: -4vw;
    padding: 1vw 10vw;
    line-height: 1.1em;
}

  section.main_visual_footer .cast01 {
    font-size: 5vw;
    line-height: 1.4em;
}

  img {
    max-width: 100%;
}

section.main_visual_footer .cast02 {
    font-size: 3.5vw;
}

.bottom {
    height: 10vh;
    clip-path: polygon(0 50%, 0% 100%, 100% 100%);
}

section.main_visual_footer:after {
    clip-path: polygon(0 0, 0% 70%, 100% 40%);
    bottom: -17vw;
}

section.teaser_movie {
    padding-top: 40vw;
    /* height: 363vw; */
    background-size: 300vw;
}

  .copyright01 .display_flex {
    gap: 1vw;
    width: 90%;
    margin: auto;
}

.copyright01 .display_flex p.txt01 {
    font-size: 3vw;
    width: 48%;
}

.copyright01 .display_flex p.txt01:nth-child(1) {
    margin-bottom: 30px;
}

p.txt01.width_100 {
    margin-top: 6vw;
}

h2.title_box {
    line-height: 3em;
    padding: 3vw 0vw;
}

  section.theater td {
    font-size: 3vw;
}


section.theater td {
padding: 1vw !important;
}

section.theater table tr th:nth-child(2) {
    width: 15% !important;
}

section.theater table tr th:nth-child(3) {
    width: 16% !important;
}

section.theater table tr th:nth-child(4) {
    width: 20% !important;
}



.youtube_wrap {
    width: 99%;
}

  

.footer_title img {
    /* bottom: -10vw; */
    /* position: absolute; */
    width: 63%;
    max-width: inherit;
    margin-bottom: 10vw;
    display: none;
}

.footer_title {
    bottom: 0vw;
}

.copyright01 {
    /* transform: translate(50%, 0%); */
    bottom: 10vw;
    font-size: 4vw;
}

section.main_visual_footer .container:before {}

section.main_visual_footer .container:before {
    display: none;
}

section.main_visual_footer .container:after {
    display: none;
}
/*.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding: 0;
}*/




}




/*  */
section.introduce .ttl_block {
    position: absolute;
    z-index: 3;
    top: 250px;
}

section.introduce {
    padding-top: 200px;
    /* background: #ffffff; */
    /* background-color: #f6f6f6; */
    /* background-image: repeating-linear-gradient( 0deg,rgb(214 214 214) 0px 1px, transparent 1px 20px),
  repeating-linear-gradient( 90deg,rgb(214 214 214) 0px 1px, transparent 1px 20px); */
    /* padding-bottom: 30px; */
    position: relative;
}

section.introduce .right_box_height {
    color: #ffffff00 !important;
    position: relative !important;
    border: none !important;
    background: inherit !important;
    float: inherit !important;
}

section.introduce .right_box {
    position: relative;
    width: 90%;
    right: 0;
    border: 1px solid #686868;
    padding: 30px;
    border-right: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 400px;
    background: #ffffffdb;
    float: right;
}

section.introduce .right_box:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: calc(100% + 2px);
    background: #ffffffdb;
    top: 50%;
    transform: translate(100%, -50%);
    border-top: 1px solid #686868;
    border-bottom: 1px solid #686868;
    clear: both;
}

section.introduce .right_box_height:after {
    display: none;
}

.site_title_floating {
    text-align: center;
}

section.introduce .sub_catch_box {
    /* background: black; */
    font-size: 1.5em;
    font-family: "Shippori Mincho B1", serif;
}

section.introduce .ttl_block h2 {margin-left: 0;margin-bottom: 30px;border: none;text-align: left;display: inline-block;padding: 0;}

section.introduce .sub_catch_box p.sub_catch {
    margin-bottom: 17px;
    display: inline-block;
    background: black;
    color: white;
}



section.introduce h2.title_box p {
    left: 0.3em;
}


section.introduce .container {
    max-width: inherit;
    padding: 0;
}

section.introduce h2 {
    border: none;
    margin: 0;
    text-align: left;
    padding: 0;
    padding-bottom: 40px;
}

section.introduce .ttl_box {
    position: absolute;
    z-index: 1;
}

section.introduce .left_box {
    border: 1px solid #686868;
    float: left;
    background: #ffffffdb;
    margin-top: 100px;
    width: 90%;
    padding: 60px 30px;
    position: relative;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

section.introduce .left_box:before {
    content: "";
    display: block;
    clear: both;
}

.left_box:after {}

section.introduce .left_box:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100% + 2px);
    background: #ffffffdb;
    top: 50%;
    transform: translate(-100%, -50%);
    border-top: 1px solid #686868;
    border-bottom: 1px solid #686868;
    clear: both;
}

section.introduce p.txt {
    font-size: 17px;
    width: 90%;
    margin: auto;
    margin-bottom: 50px;
    font-weight: 300;
    font-family: 'M PLUS 1', sans-serif;
    color: black;
}

section.cast:after {
    content: "";
    display: block;
    clear: both;
}

section.cast li.list-item.list02 {
}

ol.list.list_column-count02 {
    column-count: 2 !important;
}



section.cast li.list-item h4 {color: white;}

section.cast li.list-item {
    border: 1px solid #000;
    /* float: left; */
    /* width: 30%; */
    background: white;
    position: relative;
    margin-right: 2%;
    display: inline-block;
    /* border-radius: 9px; */
    border-top-right-radius: 0;
    margin-bottom: 70px;
    break-inside: avoid;
    padding-bottom: 20px;
    height: auto !important; /* æ¤œè¨¼ã¨ã—ã¦é«˜ã•ã¯å¯å¤‰ï¼ˆautoï¼‰ã«è¨­å®šã—ã¦ã„ã‚‹ã ã‘ã§ã™ã€‚å®Ÿéš›ã¯ä¸è¦ã§ã™ã€‚ */
    break-inside: avoid; /* ã“ã„ã¤ãŒè‚ */
    height: auto !important; /* æ¤œè¨¼ã¨ã—ã¦é«˜ã•ã¯å¯å¤‰ï¼ˆautoï¼‰ã«è¨­å®šã—ã¦ã„ã‚‹ã ã‘ã§ã™ã€‚å®Ÿéš›ã¯ä¸è¦ã§ã™ã€‚ */
    break-inside: avoid; /* ã“ã„ã¤ãŒè‚ */
    background-color: #000;
    color: #FFF;
}

section.cast li.list-item:last-child:after {
    content: "";
    display: block;
    clear: both;
    position: relative;
}

section.cast ol.list {
    clear: both;
    display: block;
    position: relative;
    column-count: 3;
    column-gap: 20px;
    break-inside: avoid;
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */
     /*  */
     /*  */
    column-count: 1; /*  */
    height: auto !important; /*  */
    padding-left: 0;
}

section.cast ol.list:after {
    content: "";
    clear: both;
}

section.cast li.list-item h3 {
    justify-content: center;
    position: absolute;
    right: -1px;
    -ms-writing-mode: tb-rl;
    /* writing-mode: vertical-rl; */
    margin: 0;
    background: black;
    color: white;
    top: 0;
    font-size: 31px;
    z-index: 2;
    padding: 2px;
    top: 0px;
    transform: translate(0px, -100%);
    display: flex;
    align-items: baseline;
    font-family: "Shippori Mincho B1", serif;
}

section.cast li h3 {}

section.cast li h3 p {
    font-size: 0.5em;
}

section.cast li h3 p span {
    position: relative;
}


section.cast li h3 p span b {
    position: absolute;
    top: -0.5em;
    font-size: 0.6em;
    width: 100%;
    transform: translate(50%, -50%);
    right: 50%;
    letter-spacing: 0.6em;
}


section.cast li.list-item .description {position: relative;/* min-height: 260px; */padding: 30px 40px 30px 30px;}

section.cast li.list-item .description p {
    font-size: 16px;
    line-height: 1.6em;
    /* padding-right: 43px !important; */
    font-family: 'M PLUS 1', sans-serif;
    font-weight: 300;
}

section.introduce .right_box_height p.txt {
    color: #ffffff00 !important;
}

.description:after {
    position: absolute;
    left: 0%;
    bottom: 0;
    width: 100%;
    height: 1px;
    margin: auto;
    background-image: linear-gradient(to right, #000, #000 7px, transparent 7px, transparent 10px);
    background-size: 14px 14px;
    background-repeat: repeat-x;
    content: '';
    z-index: 0;
}

section.cast li.list-item .detail {
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
}

section.cast li.list-item .detail ul a {
    color: #eaff01;
}


section.cast li.list-item.director {width: 70%;margin: auto;display: block;}

section.cast li.list-item.director .description {
    /* padding-right: 90px; */
}

section.cast li.list-item.director .img {
    float: right;
    width: 223px;
    height: 360px;
    background: #767676;
    position: relative;
    z-index: 1;
    border-bottom-right-radius: 8px;
    /* transform: rotate(2deg) translate(10px, 0px); */
    display: none;
}

section.cast li.list-item.director .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.cast li.list-item h3:before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: 50%;
    transform: translate(50%, -50%);
    width: 30px;
    height: 30px;
    background: black;
    border-radius: 140px;
    z-index: -1;
    display: none;
}



section.comment p.txt {
    font-size: 26px;
    /* background: black; */
    line-height: 2em;
    display: inline-block;
    position: relative;
    color: white;
    font-weight: bold;
    left: -0.7vw;
    font-weight: 600;
    top: 3vw;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    letter-spacing: 0.05em;
    padding: 50px;
    padding-right: 0;
    display: inline-block;
    background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
    background: -webkit-linear-gradient(0deg, #ffffff, #c0c0c0 50%, #9f9f9f) 10%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


section.comment .comment_box p.name {
    padding-top: 30px;
    text-align: right;
    margin-top: 0px;
    margin-bottom: 40px;
    font-size: 20px;
    text-align: right;
    color: white;
    font-weight: 100;
    /* font-family: 'M PLUS 1', sans-serif; */
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

section.main_visual_footer .yellow_box p {
    line-height: 1.4em;
}

section.comment {
    clear: both;
    position: relative;
    z-index: 1;
}

section.comment .comment_box:nth-child(odd) {
    width: 80%;
    border: 1px solid #000;
    padding: 30px;
    position: relative;
    /* left: -5%; */
    background: #00000075;
    margin-bottom: 200px;
    position: relative;
}

section.comment .comment_box:nth-child(even) {
    width: 84%;
    border: 1px solid #000;
    padding: 30px;
    position: relative;
    background: #0000005e;
    margin: auto;
    margin-bottom: 200px;
    /* float: right; */
    transform: translate(0%, 0%);
    position: relative;
    right: -10%;
}
p.txt01.wow.fadeInUp.width_100 {
    display: block;
}

img.img_pff02 {
    display: block;
    text-align: center;
    margin: auto;
}
p.txt01 img.img_pff02 {
    width: 130px;
    margin-bottom: 10px;
}


section.comment .comment_box:nth-child(3) {width: 93%;border: 1px solid #000;padding: 30px;position: relative;/* right: -5%; */background: #0000005e;margin-bottom: 200px;/* float: right; */}

section.World {
    margin-top: 100px;
    position: relative;
}

section.World ul.display_flex {
    display: flex;
    padding-left: 0;
    background: white;
}

section.World ul.display_flex img {
    height: 70px;
    margin: 0 20px;
}

section.World ul.display_flex li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1vw;
    font-size: 3vw;
}

section.World ul.display_flex li p {
    line-height: 1.3em;
    color: #009876;
    font-weight: 300;
    font-family: 'M PLUS 1', sans-serif;
    font-size: 14px;
    display: block;
}

section.World ul.display_flex li:nth-child(1) {}

section.World ul.display_flex li:nth-child(1) img {position: relative;top: -11px;height: 87px;}

section.World ul {
    text-align: center;
    list-style: none;
    padding-left: 0;
}

section.World ul li {
    color: #009876;
    font-weight: 300;
    margin-bottom: 0.5em;
    font-family: 'M PLUS 1', sans-serif;
    background: white;
    display: inline-block;
}
.floating_menu li:after {
    content: "";
    width: 1px;
    height: 60%;
    right: 0;
    position: absolute;
    display: block;
    background: #b4b4b4;
    top: 50%;
    transform: translate(0%, -50%);
}

section.theater {
    margin-top: 100px;
    /* margin-bottom: 300px; */
    position: relative;
    padding-bottom: 5em;
}

section.theater th {
    width: calc(100% / 4);
    padding: 10px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

section.theater table {
    width: 100%;
    background: #ffffffab;
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
    color: black;
    font-family: 'M PLUS 1', sans-serif;
    font-weight: bold;
    table-layout: fixed;
}
section.theater table tr th:first-child {
    width: 10% !important;
}

section.theater table tr th:nth-child(3) {
    width: 13% !important;
}

section.theater td {
    padding: 10px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

section.theater h2 {
    margin-bottom: 30px;
}

section.introduce .right_box img {
    width: 90%;
    margin: auto;
    text-align: center;
    display: block;
    margin-bottom: 30px;
    border-radius: 20px;
}


section.introduce .left_box img {
    width: 90%;
    margin: auto;
    text-align: center;
    display: block;
    padding: 15px;
    border: 1px solid #000;
    transform: rotateZ(-1deg);
}

.checkpattern_bg {
    background-color: #f6f6f6;
    background-image: repeating-linear-gradient( 0deg,rgb(214 214 214) 0px 1px, transparent 1px 20px), repeating-linear-gradient( 90deg,rgb(214 214 214) 0px 1px, transparent 1px 20px);
    background-image: linear-gradient(rgba(0, 0, 0, 0.1) 2px, transparent 2px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    position: relative;
    z-index: 1;
    padding-top: 3em;
}

section.comment .comment_box:nth-child(odd):before {
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 10px;
    background: content-box;
    position: absolute;
    transform: skewY(-2deg);
    border: 1px solid #000;
}

section.comment .comment_box:nth-child(even) :before {
    content: "";
    top: 0;
    bottom: 0;
    right: 10px;
    left: 0;
    background: content-box;
    position: absolute;
    transform: skewY(3deg);
    border: 1px solid #000;
}


section.comment p.txt:before {
    display: none;
}


section.teaser_movie .background_img01 {position: fixed!important; /*  */top: 0;left: 50%;z-index: 0;display: block;width: 996px;height: 100vh;background-position: center center;transform: translate(-50%, 0%);}

section.teaser_movie .container {
    position: relative;
    padding-bottom: 180px;
}


@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


section.main_visual_footer .container {
    overflow: inherit;
}

section.main_visual .background_img01 {
    /* position: fixed!important; */
    background-size: 100%;
    /* top: 0; */
    /* left: 50%; */
    /* z-index: -1; */
    /* display: block; */
    /* width: 100%; */
    height: 200vh;
    /* background-position: center -4vh; */
    /* transform: translate(-50%, 0%); */
    /* background-size: 100%; */
    /* background-repeat: no-repeat; */
}


.floating_menu {
    position: fixed;
    z-index: 999;
    left: -1px;
    bottom: 0;
    transform: translate(-100%, 0%);
    transition: all 0.5s 1s ease-in-out;
    }

.floating_menu ul {
    list-style: none;
    padding-left: 0;
}

.floating_menu li {
    border: 1px solid #000;
    background: #ffffff;
    margin-bottom: 8px;
}

.floating_menu li a {
    color: inherit;
    /* font-family: "Jost",sans-serif; */
    font-weight: bold;
    padding: 5px 5px;
    padding-right: 20px;
    display: inline-block;
    /* color: white; */
    font-size: 16px;
    width: 100%;
    font-family: 'M PLUS 1', sans-serif;
    font-family: "Shippori Mincho B1", serif;
}

.floating_menu.fixed {
    transform: translate(0%, -0%);
    transition: all 0.5s 0s;
    /* display: none; */
}

.floating_menu li a.active {
    background: #fcff00;
    color: black !important;
    font-weight: bold;
}

.floating_sns {
    position: fixed;
    z-index: 999;
    right: -1px;
    bottom: 0;
    transform: translate(100%, 0%);
    transition: all 0.5s 1s ease-in-out;
}

.floating_sns.fixed {
    transform: translate(0%, -0%);
    transition: all 0.5s 0s;
}

.floating_sns ul {
    list-style: none;
    padding-left: 0;
}

.floating_sns ul li {
    text-align: center;
    padding: 5px 10px;
    font-size: 29px;
    border: 1px solid #000;
    margin-bottom: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #eaff01;
    width: 67px;
}

.floating_sns ul li p {
    font-size: 14px;
    font-family: 'M PLUS 1', sans-serif;
    font-weight: bold;
    color: black;
    /* display: inline-block; */
    /* width: 100%; */
    line-height: 0.8em;
    text-align: center;
}


.floating_sns ul li img {
    width: 58px;
}

.floating_sns ul li a {
    color: black;
    /* padding-left: 18px; */
}

.d-flex {}



img {
    max-width: 100%;
}

.pff {}

.pff {
    margin: auto;
}

.pff img.img_pff {
    width: 100px;
    margin-bottom: 20px;
}




/*チラシスライダー*/

  .slider-container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .slide {
    flex: 0 0 100%;
    max-width: 100%;
  }

.slide img {
    height: 100vh;
    max-width: inherit !important;
}

ul.slider {
    padding-left: 0;
    display: flex;
    width: 100%;
    gap: 30px;
    justify-content: center;
}

ul.slider img {
    max-height: 100vh;
}

.s-container {
    overflow-x: scroll;
}




/**/
div#rss-feed img {
    width: 100px;
    height: auto;
    float: left;
}

section#news_feed {
    /* padding-top: 10em; */
    /* height: 460px; */
    /* overflow: hidden; */
    /* border: 1px solid #787878; */
    /* background: white; */
    /* margin: 2em; */
    /* border-radius: 10px; */
    /* padding: 2em; */
    /* overflow-y: scroll; */
}

div#rss-feed {
    padding-top: 10em;
    height: 390px;
    overflow: hidden;
    border: 1px solid #787878;
    background: white;
    margin: 2em;
    border-radius: 10px;
    padding: 2em;
    overflow-y: scroll;
}

div#rss-feed .block {
    margin-bottom: 12px;
    border-bottom: 1px dashed #c6c6c6;
    padding-bottom: 12px;
}

div#rss-feed a {
    font-weight: bold;
    font-size: 1.1em;
}




@media screen and (max-width: 620px) {
.close-btn {
    position: fixed;
}
    .s-container {}

.s-container li {}

.s-container li img {
    margin-bottom: 4vw;
}

.hidden-element {
    padding: 0;
    overflow-y: scroll;
}

.s-container ul.slider {
    padding-left: 0;
    width: 100%;
    display: block;
}

  .floating_menu li:last-child {
    border-right: 0px;
}

  
.sp {
    display: block;
}

.pc {
    display: none;
}

section.main_visual .background_img01 {width: 100vw;background-position: center 0vw;background-size: 100%;/* height: 78%; */background-repeat: no-repeat;}

.site_title_floating {
    width: 100%;
}

  section.main_visual .container {
    padding: 0;
}

.site_title_floating img {
    width: 100vw;
}

section.introduce .right_box {
    width: 95%;
    padding: 3vw;
    padding-top: 91vw;
}

section.introduce .sub_catch_box {
    font-size: 4.3vw;
    width: 95%;
}

section.introduce p.txt {
    width: 100%;
}

section.introduce .right_box img {
    width: 100%;
    border-radius: 2vw;
}

section.introduce .left_box {
    padding: 3vw;
    width: 95%;
    padding-bottom: 15vw;
}

section.introduce .left_box img {
    width: 100%;
    padding: 2.6vw;
    margin-top: 13vw;
}

section.introduce p.txt {
    margin-bottom: 0;
}

section.cast li.list-item.director .img {
    float: inherit;
    width: 100%;
    height: 90vw;
    border-radius: 0;
    border-top-left-radius: 6px;
}

section.cast li.list-item .description {
    padding: 2vw;
    /* padding-right: 11vw !important; */
}

section.cast ol.list {
    padding-left: 0;
    column-count: 1 !important;
}

  section.cast li.list-item h3 {
    font-size: 6vw;
}

section.cast li.list-item.director {
    margin-right: 0;
    width: auto;
}

/*section.cast li.list-item {
    width: 48%;
}
*/
section.cast li.list-item .detail {
    padding: 2vw;
}

section.cast li.list-item .detail ul {
    padding-left: 6vw;
    font-size: 3.3vw;
}

section.cast li.list-item.director .description {
    padding-right: 2vw !important;
}

section.cast li.list-item p {
    font-size: 3.5vw !important;
}

section.comment .comment_box:nth-child(1) {
    width: 100%;
    padding: 2vw;
}

    section.comment .comment_box:nth-child(even) {
    padding: 0;
    width: 100%;
    right: 0;
    margin-bottom: 17vw;
}

section.comment .comment_box:nth-child(odd) {
    padding: 0;
    width: 100%;
    margin-bottom: 18vw;
}

section.comment .comment_box p.name {
    font-size: 3.7vw;
}

section.comment .comment_box:nth-child(2) {
    width: 100%;
    padding: 2vw;
    right: 0;
}

section.comment .comment_box:nth-child(3) {
    margin-bottom: 4vw;
    width: 100%;
    padding: 2vw;
}

section.comment p.txt {
    font-size: 4vw;
    padding: 3vw;
    line-height: 1.6em;
}

section.World ul.display_flex {
    flex-wrap: wrap;
}

section.World ul.display_flex li:nth-child(1) img {
    margin: 0;
    height: 17vw;
}

section.World ul.display_flex li:nth-child(2) img {
    margin: 0;
    height: 12vw;
}

section.World ul li {
    font-size: 3.3vw;
}
  .floating_menu {
    right: 0;
    left: inherit;
    top: 10vw;
    transform: translate(100%, 0%);
    transition: all 0.5s 1s ease-in-out;
    bottom: inherit;
    z-index: 9999999;
    /* display: none; */
    border: none !important;
    width: 100%;
}

.floating_menu ul {
    display: flex;
    border-bottom: 1px solid #d1d1d1 !important;
    /* border: none !important; */
    flex-wrap: wrap;
    background: white;
}

.floating_menu li a {
    padding: 1vw;
    font-size: 4vw;
    line-height: 1em;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0em;
    color: black;
    padding: 2vw 0;
}

.floating_menu li {
    width: 25%;
    border-right: 1px solid #fff;
    border: none;
    position: relative;
    /* border-bottom: 1px solid #a7a7a7; */
    margin-bottom: 0;
}

.site_title_floating {
    padding-bottom: 2vw;
    PADDING-TOP: 1.4vw;
}


  div#rss-feed {
    margin: 5vw;
    height: 120vw;
}

section.introduce {
    padding-top: 16vw;
}

    section.introduce .ttl_block {
    top: 18vw;
}
.site_title_floating img.pc {
    display: block !important;
}

.site_title_floating img.sp {
    display: none !important;
}
    .site_title_floating.fixed {
    background: white;
    display: block;
    /* position: relative; */
    mix-blend-mode: inherit;
}

.site_title_floating.fixed:after {
    width: 100vw;
    height: 10vw;
    position: absolute;
    top: 0;
    right: 0;
    background: black;
    mix-blend-mode: unset;
}

section.introduce .sub_catch_box p.sub_catch {
}

section.introduce h2.title_box p {
    font-size: 12vw;
}

    
}








/*  */
/* .floating_menu {
    display: none;
}

.checkpattern_bg {
    display: none;
}

section#comment {
    display: none;
}

section#theater {
    display: none;
}

section#World {
    display: none;
} */