@charset "UTF-8";
/* --------------------------------------------------
	section size
-------------------------------------------------- */
body {
  background: #fff;
}

/* common overide start */
.btn_wrap {
  display: flex;
  justify-content: center;
  margin: 1rem 0 0 0;
  text-align: center;
}
.btn_wrap .arrow {
  text-align: center;
}
.btn_wrap.list {
  margin-top: 4rem;
}
.btn_wrap.list a {
  width: 100%;
  max-width: 60rem;
}
.btn_wrap.more .arrow::after {
  rotate: 90deg;
}
@media screen and (max-width: 767px) {
  .btn_wrap .c-title02 {
    margin-bottom: 4rem;
  }
}

/* common overide end */
.page-movie {
  /* sec-movie
  ---------------------------------------------------------------------------- */
}
.page-movie .sec-movie {
  padding: 0 0 9.6rem 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page-movie .sec-movie {
    padding: 0 0 4.8rem 0;
  }
}

.c-construction_area {
  padding-top: 0;
}

/* movie-list
---------------------------------------------------------------------------- */
.movie-ttl {
  position: relative;
  font-size: 2.6rem;
  line-height: 1.5769230769;
  letter-spacing: 0.00002em;
  font-weight: 700;
  color: #1D2E4F;
  margin-bottom: 4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .movie-ttl {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-direction: column-reverse;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.6rem;
    min-height: 2.2rem;
  }
}

.movie-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.movie-list-item .movie-item-detail {
  display: flex;
  gap: 2rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .movie-list-item .movie-item-detail {
    flex-direction: column;
    justify-content: center;
  }
}
.movie-list-item .movie-item-detail .detail-item {
  max-width: 300px;
  width: calc((100% - 2rem) / 3);
  flex: 1;
}
.movie-list-item .movie-item-detail .detail-item__title {
  display: block;
  padding: 0.5rem;
  background-color: #e7effa;
}
.movie-list-item .movie-item-detail .detail-item__movie-wrap {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .movie-list-item .movie-item-detail .detail-item__movie-wrap {
    aspect-ratio: auto;
  }
}
.movie-list-item .movie-item-detail .detail-item__movie-wrap img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .movie-list-item .movie-item-detail .detail-item {
    max-width: 100%;
    width: 100%;
  }
  .movie-list-item .movie-item-detail .detail-item:nth-child(3) {
    display: none;
  }
}

/* 動画埋め込み用のスタイル
---------------------------------------------------------------------------- */
.js-movie-wrap {
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: block;
  /* クリック前のサムネイル画像にプレイボタンアイコンを表示 */
  /* iframe設置後はプレイボタンを非表示 */
}
.js-movie-wrap:hover {
  opacity: 0.8;
}
.js-movie-wrap:hover::after {
  opacity: 1;
}
.js-movie-wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.js-movie-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem 2.4rem;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.js-movie-wrap:has(iframe)::after {
  display: none;
}

.detail-item__video {
  display: block;
  max-width: 100%;
  height: auto;
}/*# sourceMappingURL=worksite.css.map */