@charset "utf-8";

/* for Common & Smartphone*/

.contents{
  background: repeating-linear-gradient(90deg, #fff880, #fff880 16px, #fff100 20px, #fff100 40px);
  color: #000;
}

/* for pc */
@media print, screen and (min-width:768px) {

}


/*intro
--------------------------------- */
.intro{
  max-width: 750px;
  margin: 0 auto;
}
.intro .copy04{
  margin-top: 30px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  font-feature-settings: "palt";
}
@media screen and (max-width:767px) {
  .intro .copy04{
    font-size:clamp(1.2rem, 3.73vw, 1.5rem);/*15*/
  }
}

.intro .btn{
  max-width: 100%;
  margin: 30px auto;
  border: 1px solid #f39800;
  border-radius: 200px;
  text-align: center;
  font-size:1.8rem;/*18 / 26*/
  overflow: hidden;
  font-weight: bold;
}
.intro .btn a{
  position: relative;
  display: block;
  padding: 10px;
  background: #f39800;
  line-height: 1.4;
  color: #fff;
}
.intro .btn a::after{
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid #fff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: none;
  transform: translate(0,-50%);
}
.intro .btn a:hover{
  background: #fff;
  color: #f39800;
  opacity: 1;
}
.intro .btn a:hover::after{
  border-top-color: #f39800;
}

/* for pc */
@media print, screen and (min-width:768px) {
  .intro{}
  .intro .copy04{
    margin-top: 35px;
  }

  .intro .btn{
    margin-top: 35px;
    margin-bottom: 35px;
    font-size:2.6em;/*18 / 26*/
  }
  .intro .btn a{
    padding: 15px 0;
  }
  .intro .btn a::after{
    right: 20px;
    border-top-width: 16px;
    border-right-width: 10px;
    border-left-width: 10px
  }
  .intro .btn a:hover{}
  .intro .btn a:hover::after{}
}


/*bnrEvent2502,bnrEvent2505
--------------------------------- */
.bnrEvent2505{
  background: #fffbc7;
}


.event2502Slider,
.event2505Slider{
  pointer-events: none;
}
.event2502Slider .swiper-wrapper,
.event2505Slider .swiper-wrapper{
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.event2502Slider .swiper li,
.event2505Slider .swiper li{
  max-width: 200px;
}



/* for pc */
@media print, screen and (min-width:768px) {
  .bnrEvent2502{}
  .bnrEvent2505{}
}



/*movieList
--------------------------------- */
.movieList{}
.movieList > section{
  padding: 0 0 20px 0;
}
.movieList > section:nth-of-type(2n+1){
  background: #f9c158;
}
.movieList > section:nth-of-type(2n){
  background: #c0ad54;
}
.movieList > section > div{
  position: relative;
  padding: 35px 20px 20px 20px;
  text-align: left;
}
.movieList > section > button{
  position: relative;
  display: block;
  width: 85%;
  margin: 0 auto;
  border: none;
  outline: none;
}
.movieList > section > button:hover{
  cursor: pointer;
}
.movieList > section > button::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 50%;
  aspect-ratio: 242/130;
  transform: translate(-50%,-50%);
  background-color: rgba(243,152,0,0.7);
  background-image: url("../images/btn_movie.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}
.movieList > section .num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 28px;
  background: #000;
  color: #fff;
  line-height: 1.0;
  font-size:clamp(1.3rem, 4.26vw, 1.6rem);/*16 / 18*/
  font-weight: 700;
}
.movieList > section .ttl{
  height: 80px;
  line-height: 1.0;
}
.movieList > section .lead01{
  margin: 20px 0 0 0;
  font-weight: 700;
}

.movieList > section.new > div::after{
  content: "";
  position: absolute;
  right: 20px;
  bottom: -30px;
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../images/ico_new.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(30deg);
  z-index: 10;
}
/* for pc */
@media print, screen and (min-width:768px) {
  .movieList > section{
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  .movieList > section:nth-of-type(2n+1){
    flex-direction: row;
  }
  .movieList > section:nth-of-type(2n){
    flex-direction: row-reverse;
  }
  .movieList > section > div{
    display: flex;
    align-items: center;
    width: 50%;
    padding: 0;
  }
  .movieList > section:nth-of-type(2n+1) > div{
    justify-content: flex-end;
    padding-right: 70px;
  }
  .movieList > section:nth-of-type(2n) > div{
    justify-content: flex-start;
    padding-left: 70px;
  }
  .movieList > section > div > div{
    width: 500px;
  }
  .movieList > section > button{
    width: 50%;
  }
  .movieList > section > button::after{
    max-width: 242px;
    border-radius: 16px;
  }
  .movieList > section .num{
    font-size:clamp(1.5rem, 1.80vw, 1.8rem);/*16 / 18*/
  }
  .movieList > section .ttl{
    width: 100%;
    max-width: 430px;
    height: auto;
  }
  .movieList > section .lead01{}
  .movieList > section.new > div::after{
    right: 70px;
    bottom: 70px;
    width: 116px;
    height: 116px;
    transform: rotate(0);
  }
}

.modal-video{
  background: rgba(0,0,0,0.7);
}


/*end
--------------------------------- */
.end{
  padding: 30px 0;
  font-size:clamp(1.9rem, 6.40vw, 2.4rem);/*24 / 32*/
  text-align: center;
  line-height: 1.0;
  font-weight: 700;
  font-feature-settings: "palt";
}

/* for pc */
@media print, screen and (min-width:768px) {
  .end{
    padding: 45px 0 45px 0.05em;
    font-size:clamp(2.6rem, 3.2vw, 3.2rem);/*24 / 32*/
    letter-spacing: 0.05em;
  }
}
/*set aos
--------------------------------- */
/* for sp*/
@media screen and (max-width: 767px) {}

/* for pc*/
@media print, screen and (min-width:768px) {
}


