@charset "UTF-8";

/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  margin: 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 998;
  opacity: 1;
  transition: opacity 1s ease;
}

.modal.is-hide {
  opacity: 0;
  pointer-events: none; 
}

.modal-close {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 38px;
  cursor: pointer;
}

.modal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1300px;
}

.modal-ifrm {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
}

.modal-ifrm iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube{
  margin: 0 auto;
  width: 50%;
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 1 / 0.48;
  -o-object-fit: cover;
  object-fit: cover;
  height: unset;
}

.pc02 img {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .youtube {
        width: 85%;
    }
  }
/*# sourceMappingURL=style.css.map */