@charset 'utf-8';



*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(12px, 1vw, 16px);

}

body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  color: #1f2328;
  line-height: 1.7;
  overflow-x: hidden;
   background-color: hsl(0, 0%, 90%);
}


 





.change-image img {

  opacity: 0;
  width: 100%;
  height:100%;
}


.container {
  padding: 0 8rem;
  margin: 0 auto;
  max-width: 1440px;
 
}

.change-image img.active {
  opacity: 1;
}

  .bg_img img {
     top: 0; 
    left: 0; 
    z-index: -40;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    margin: 0;
}


.topsp {
  opacity: 0;
}

.award {
  width: 75%;
margin: 2rem auto 0;
display: block;
}


.youtube {
  padding: 1rem 0;
}



.movie{
	width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
	margin: 10px auto 30px auto;
    align-items: center;
    display: block;
    position: relative;
}


.movie iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
    border-radius: 10px;
}

.movie .movieCon iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    -moz-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}



.aboutdetail {
  text-align: center;
  margin-bottom: 4rem;
  word-break: keep-all;
overflow-wrap: anywhere;

  
}

.aboutdetail p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 2.4;
  
}



.aboutcontents {
  display: flex;
  align-items: end;
  margin-bottom: 10rem;
}

.aboutcontents img {
  width: 50%;
      display: block;
      height: auto;

}


.aboutcontents p {
  margin: 0 -2rem 3rem 0;
 background-color: rgba(255, 255, 255, 0.6);
  padding: 1rem 2rem;
  width: 60%;
  z-index: 300;
  color: #1b1b1b;
  box-shadow: 0 20px 50px rgba(58, 92, 94, 0.2);
  margin-bottom: 1rem;
   font-size: clamp(1rem, 1vw, 1.1rem);
    text-align: center;
      line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: anywhere;
   
}


.produced {
      margin: 0 auto 10rem;
    text-align: center;
    max-width: 1000px;
     width: 100%;
     padding: 1rem;
}

.produced h2 {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}



.produced p {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
}

.actor {
  font-size: 1.2rem;
}
.produced img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 0.5rem;
} 




.fade_in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade_in.is-visible {
  opacity: 1;
  transform: translateY(0);
}