@charset "UTF-8";
/*****************************
  common
*****************************/
.mainbody{
  background: #000;
  overflow: hidden;
  height: 100vh;
}
.popsec{
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transition: .5s;
  height: 100vh;
  width: 100%;
}
.popsec.popopen{
  opacity: 1;
  pointer-events: all;
  z-index: 1000;
}
.popsec .popbg{
  background: rgba(0, 0, 0, .65);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.popsec .popcontent{
  background: #000;
  max-width: 1300px;
  overflow-y: auto;
  padding: 10rem 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 80vh;
  width: 68.75%;
}
.popsec .popcontent::-webkit-scrollbar {
  background: #404040;
  width: 10px;
}
.popsec .popcontent::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}
.popsec .popclose{
  background: url(../images/common/cross.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
}
@media only screen and (max-width: 1180px) {
  .popsec .popcontent{
    padding: 8rem 2rem;
    width: 80%;
  }
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  .popsec .popcontent {
    padding: 5rem 2rem 8rem;
    height: 70vh;
    width: calc(80% - 2rem);
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .mainbody{
    overflow: auto;
    height: auto;
  }
  .popsec{
    opacity: 1;
    padding: 9rem 0 0;
    pointer-events: all;
    position: relative;
    height: auto;
  }
  .popsec .popbg,
  .popsec .popclose{
    display: none;
  }
  .popsec .popcontent{
    padding: 0;
    position: static;
    transform: none;
    height: auto;
    width: 100%;
  }
  .sec-finfo{
    display: none;
  }
}

/*****************************
  popup-yt-frist
*****************************/
.popup-yt-frist{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.7);
  height: 100vh;
  width: 100vw;
  z-index: 9999999;
}
.popup-yt-frist .popyt {
  padding-top: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 800px;
  width: 100%;
}
.popup-yt-frist .popyt-closebtn{
  background: url(../images/common/cross.svg) no-repeat center / contain;
  cursor: pointer;
  color: transparent;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
}
.popup-yt-frist iframe{
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1180px) {
    
}
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 820px) {
    
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 767px) {
  .popup-yt-frist .popyt {
    padding: 50px 10px;
  }
  .popup-yt-frist .popyt-closebtn{
    right: 1rem;
  }
}
/*==================================================
タブ切り替えのためのcss
===================================*/
/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 50px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 767px){
  .tabs{
    margin-top: 100px;
  }
}

  /*タブのスタイル*/
  .tab_item {
    width: calc(100%/2);
    height: 90px;
    /* border-bottom: 4px solid #4d4d4d; */
    background-color: #4d4d4d;
    line-height: 90px;
    font-size: 22px;
    text-align: center;
    color: #fff;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
  }
  @media screen and (max-width: 767px) {
    .tab_item {
        width: calc(100%/2);
        height: 40px;
        /* border-bottom: 2px solid #000; */
        background-color: #4d4d4d;
        line-height: 40px;
        font-size: 14px;
        text-align: center;
        color: #fff;
        display: block;
        float: left;
        text-align: center;
        font-weight: bold;
        transition: all 0.2s ease;
    }
}

  .tab_item:hover {
    opacity: 0.75;
  }
  
  /*ラジオボタンを全て消す*/
  input[name="tab_item"] {
    display: none;
  }
  
  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    padding: 40px 40px 0;
    clear: both;
    overflow: hidden;
  }
@media screen and (max-width: 767px) {
  .tab_content {
      display: none;
      padding: 20px 5px 0;
      clear: both;
      overflow: hidden;
  }
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #000;
  color: #fff;
}


/*****************************
  fv
*****************************/
.sec-fv{
  position: relative;
  height: 100vh;
}
.sec-fv::before{
  content: "";
  background: url(../images/fv/main.webp) no-repeat top right / cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.sec-fv .logo{
  position: absolute;
  top: 20%;
  left: 10%;
  text-align: center;
  width: 30.5%;
}
.sec-fv .fvnavlist{
  position: absolute;
  right: 5%;
  bottom: 30%;
}
.sec-fv .fvnav{
  margin-bottom: 1.4vw;
}
.sec-fv .fvnav li{
  font-family: "Baskervville", serif;
  font-size: 1.6vw;
  margin-bottom: 1vw;
  text-align: right;
}
.sec-fv .fvnav li:last-of-type{
  font-size: 1.4vw;
}
.sec-fv .sns{
  gap: 1.8vw;
  justify-content: flex-end;
}
.sec-fv .sns li{
  width: 25px;
}
.sec-fv .sns li:nth-child(3){
  width: 35px;
}
.sec-fv .sns li:last-child{
  margin: 0;
}

.sec-fv .bnrbox{
  position: absolute;
  right: 5%;
  bottom: 5%;
}
.sec-fv .date{
  font-size: 2.8vw;
  line-height: 1;
  text-align: right;
}
.sec-fv .date span{
  font-size: 5.4vw;
  margin-right: 1rem;
}
.sec-fv .bnr{
  gap: 1rem;
  margin-top: 1rem;
}
.sec-fv .bnr .nht-bnr{
  max-width: 190px;
}
.sec-fv .bnr .mvt-bnr{
  max-width: 150px;
}

.mvtwid{
  display: none;
}
.mvtwid > div{
  margin: 0 auto;
}

@media only screen and (max-width: 1440px) {
  .sec-fv::before {
    background-position-x: 90%;
  }
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
  .sec-fv .logo {
    left: 5%;
  }
}
@media only screen and (max-width: 820px) {
  .sec-fv .logo {
    left: 5%;
    width: 45.5%;
  }
  .sec-fv .fvnavlist {
    bottom: 27%;
  }
  .sec-fv .fvnav li {
    font-size: 1.8vw;
  }
  .sec-fv .sns li {
    width: 18px;
  }
  .sec-fv .sns li:nth-child(3) {
    width: 25px;
  }
  .sec-fv .date {
    font-size: 6.8vw;
  }
  .sec-fv .date span {
    font-size: 12.4vw;
  }

  .sec-fv::before {
    background-position-x: 80%;
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .sec-fv{
    aspect-ratio: 80 / 113;
    height: auto;
    margin-bottom: 20rem;
    margin-bottom: 40rem;
    margin-bottom: 30rem;
  }
  .sec-fv::before{
    aspect-ratio: 80 / 113;
    background: url(../images/fv/main_sp.webp) no-repeat center / contain;
    height: auto;
    width: 100%;
  }
  .sec-fv .fvnavlist{
    display: none;
  }
  .sec-fv .logo{
    position: absolute;
    top: auto;
    bottom: 18%;
    /* bottom: 2%; */
    left: 50%;
    transform: translateX(-50%);
    width: 72.26%;
  }
  .sec-fv .bnrbox {
    right: auto;
    bottom: -20rem;
    bottom: -28rem;
    /* bottom: -18rem; */
    left: 0;
    width: 100%;
  }
  .sec-fv .date{
    font-size: 3.6rem;
    text-align: center;
  }
  .sec-fv .date span{
    font-size: 6.4rem;
  }
  .sec-fv .bnr{
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  .sec-fv .bnr .nht-bnr{
    max-width: 253px;
  }
  /* .sec-fv .bnr .mvt-bnr{
    display: none;
  }
  .mvtwid{
    display: block;
  } */
}

/*****************************
  sec-trailer
*****************************/
.sec-trailer .popcontent{
  aspect-ratio: 16/9;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  max-width: 800px;
  padding: 5rem 0 0;
  height: auto;
}
.sec-trailer .mov{
  margin: 0 auto;
  width: 100%;
}
.sec-trailer .mov iframe{
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}


@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .sec-trailer{
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: fixed;
    transition: .5s;
    height: 100vh;
  }
  .sec-trailer.popopen{
    opacity: 1;
    pointer-events: all;
  }
  .sec-trailer .popbg,
  .sec-trailer .popclose{
    display: block;
  }
  .sec-trailer .popcontent{
    padding: 5rem 2rem;
    position: absolute;
    transform: translate(-50%,-50%);
    height: auto;
    width: 100%;
  }
}

/*****************************
  sec-introduction
*****************************/
.sec-introduction .imgbox{
  margin: 6rem auto 0;
  max-width: 885px;
  padding: 0 2rem;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .sec-introduction .imgbox{
    margin: 3rem auto 0;
    padding: 0 ;
  }
}

/*****************************
  sec-story
*****************************/
.sec-story .img{
  gap: 2rem;
  margin: 6rem auto 0;
  max-width: 885px;
}
.sec-story .img .fimgbox{
  width: calc(50% - 1rem);
}

@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .sec-story .img{
    gap: 1rem;
    margin: 3rem ;
  }
  .sec-story .img .fimgbox{
    width: calc(50% - .5rem);
  }
}

/*****************************
  sec-cast
*****************************/
.castlist li{
  margin-top: 6rem;
}
.castlist .fimgbox{
  width: 35%;
}
.castlist .ftxtbox{
  width: 60%;
}
.castlist .name{
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.subcast{
  gap: 1rem;
  margin-top: 6rem;
}
.subcast li{
  width: calc(100% / 4 - 1rem);
}
.subcast li p{
  font-size: 1.4rem;
  text-align: center;
}
.subcast li p span{
  font-size: 2rem;
}

@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  .subcast li {
    width: calc(100% / 3 - 1rem);
  }
  .subcast li p span{
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .castlist .fimgbox{
    margin: 0 auto;
    width: 80%;
  }
  .castlist .ftxtbox{
    width: 100%;
  }
  .castlist .name{
    font-size:min(6.4vw,2.4rem);
    margin: 1rem 0;
    text-align: center;
  }

  .subcast li {
    width: calc(100% / 2 - 1rem);
  }
  .subcast li p{
    text-align: left;
  }
  .subcast li p span{
    display: block;
    text-align: right;
  }
}

/*****************************
  sec-staff
*****************************/
.stafflist .staff{
  margin-top: 6rem;
}
.stafflist .fimgbox{
  width: 35%;
}
.stafflist .ftxtbox{
  width: 60%;
}
.stafflist .staff dt{
  font-size: 2.4rem;
  font-weight: bold;
}
.stafflist .staff .info{
  margin: 2rem 0;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .stafflist .fimgbox{
    margin: 0 auto 1rem;
    width: 80%;
  }
  .stafflist .ftxtbox{
    width: 100%;
  }
  .stafflist .staff dt{
    font-size:min(6.4vw,2.4rem);
  }
  .stafflist .staff .info {
    margin: 1rem 0;
  }
}

/*****************************
  sec-theater
*****************************/

.sec-theater input[type="radio"]{
  display: none;
}
.sec-theater .tab_area{
  gap: 1rem;
}
.sec-theater .tab_area .ftab{
  width: calc(100% / 7 - 1rem);
}
.sec-theater .tab_area label{
  cursor: pointer;
  border-radius: 3px;
  display: block;
  line-height: 1;
  padding: 1rem 0 ;
  position: relative;
  text-align: center;
  transition:  0.2s ;
  height: 100%;
  width: 100%;
}
.sec-theater .tab_panel{
  display: none;
}

.sec-theater .tab_area .areaftab1:hover label,
.sec-theater #areabtn1:checked ~ .tab_area .areaftab1 label,
.sec-theater .tab_area .areaftab2:hover label,
.sec-theater #areabtn2:checked ~ .tab_area .areaftab2 label,
.sec-theater .tab_area .areaftab3:hover label,
.sec-theater #areabtn3:checked ~ .tab_area .areaftab3 label,
.sec-theater .tab_area .areaftab4:hover label,
.sec-theater #areabtn4:checked ~ .tab_area .areaftab4 label,
.sec-theater .tab_area .areaftab5:hover label,
.sec-theater #areabtn5:checked ~ .tab_area .areaftab5 label,
.sec-theater .tab_area .areaftab6:hover label,
.sec-theater #areabtn6:checked ~ .tab_area .areaftab6 label,
.sec-theater .tab_area .areaftab7:hover label,
.sec-theater #areabtn7:checked ~ .tab_area .areaftab7 label{
  background: #4d4d4d;
}
.sec-theater #areabtn1:checked ~ .panel_area #area_panel1,
.sec-theater #areabtn2:checked ~ .panel_area #area_panel2,
.sec-theater #areabtn3:checked ~ .panel_area #area_panel3,
.sec-theater #areabtn4:checked ~ .panel_area #area_panel4,
.sec-theater #areabtn5:checked ~ .panel_area #area_panel5,
.sec-theater #areabtn6:checked ~ .panel_area #area_panel6,
.sec-theater #areabtn7:checked ~ .panel_area #area_panel7{
  display:block;
}


.sec-theater .theater-area{
  margin-top: 4rem;
}
.sec-theater .theater-area thead ,
.sec-theater .theater-area thead tr{
  background: #4d4d4d;
}
.sec-theater .theater-area thead th:first-child{
  border-radius: 3px 0 0 3px;
}
.sec-theater .theater-area thead th:last-child{
  border-radius: 0 3px 3px 0;
}
.sec-theater .theater-area a{
  text-decoration: underline;
}
.sec-theater .theater-area a:hover{
  text-decoration: none;
}
@media only screen and (max-width: 1180px) {
    
}
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 820px) {
    
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 767px) {
  .sec-theater .tab_area .ftab{
    width: calc(50% - 1rem);
  }
  .sec-theater .inner1{
    padding: 0 3rem;
  }
  .sec-theater .theater-area {
    margin-top: 4rem;
  }
}