@charset "utf-8";

.content-area {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
.sec-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: calc(100% - 20px);
}

/*MOVIE*/

.sec-head {
  background: linear-gradient(to right,  rgba(79,40,0,1) 0%,rgba(121,80,0,1) 50%,rgba(79,40,0,1) 100%);
  padding: 25px 0;
}
.sec-head > h2 > span {
  color: #FFF;
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.sec-head > h2 > span:first-child {
  font-size: 24px;
  font-weight: 500;
}
.sec-head > h2 > span:last-child {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .sec-head {
    padding: 35px 0;
  }
}

.sec-movie {
  padding: 100px 0;
}
.sec-movie p {
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
.movie-block h3 {
  color: #aa001e;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 80px 0;
}
.movie-list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
.movie-list .item {
  width: calc(50% - 40px);
}
.movie-list .item span {
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-top: 17px;
}
.movie-list .item small {
  font-size: 12px;
}
.movie-list .item sup {
  font-size: 10px;
  vertical-align: super;
}
.movie-list .item img {
  width: 100%;
}
.movie-list .item button {
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease-in-out;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  width: 100%;
}
.movie-list .item button:hover {
  opacity: 0.7;
}

@media screen and (max-width:767px) {
  .sec-movie {
    padding: 50px 0;
  }
  .sec-movie p {
    font-size: 14px;
    line-height: 2.2;
  }
  .movie-block h3 {
    font-size: 26px;
    margin: 60px 0;
  }
  .movie-list {
    gap: 40px;
  }
  .movie-list .item {
    width: 100%;
  }
  .movie-list .item span {
    font-size: 16px;
    letter-spacing: 0;
  }
  .movie-list .item small {
    font-size: 9px;
  }
}


/* モーダル */
.modal_box {
  position: fixed;
  z-index: 999999999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0s;
}
.modal_box.opened {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.modal_in {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100vw - 40px);
  max-width: calc((100vh - 300px)/0.5625);
  height: calc((100vw - 40px) * 0.5625);
  max-height: calc(100vh - 300px);
  transform: scale(0.95);
  opacity: 1;
  transition: all 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0.3s;
}
.modal_box .modal_bg {
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
.close_button {
  width: 60px;
  height: 60px;
  cursor: pointer;
  top: 0;
  right: 0px;
  background: #0b649a;
  position: fixed;
  transition: all 0.3s ease-in-out 0s;
}
.close_button::before, .close_button::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #fff;
  top: 29px;
  left: 10px;
}
.close_button::before {
  transform: rotate(45deg);
}
.close_button::after {
  transform: rotate(-45deg);
}
.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}