@charset "utf-8";


* {
  box-sizing: border-box;
}


/* モーダルCSS */
.modalArea, .modalArea_2, .modalArea_3 {
  display: none;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg, .modalBg_2, .modalBg_3 {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.95);
}

.modalWrapper, .modalWrapper_2, .modalWrapper_3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  aspect-ratio: 16 / 9;
  width: 80%;
  background-color: transparent;
}
@media only screen and (max-width: 428px) {
  .modalWrapper, .modalWrapper_2, .modalWrapper_3 {
    width: 95%;
  }
}


.closeModal, .closeModal_2, .closeModal_3 {
  position: absolute;
  top: -30px;
  right: 20px;
  cursor: pointer;
  color: #fff;
  font-family: "Lato" ;
  font-weight: 100;
  font-size: 100px;
  font-style: normal;
}


button {
  cursor: pointer;
}

/*#openModal {
}*/

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

