@charset "UTF-8";
/* --------------------------
works
--------------------------- */
.works-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px 28px;
}
@media screen and (max-width: 1140px) {
  .works-list {
    justify-content: center;
  }
}

.works-list-item {
  width: calc(25% - 21px);
  height: auto;
}
@media screen and (max-width: 1140px) {
  .works-list-item {
    width: 236px;
  }
}

.works-link {
  display: block;
  position: relative;
}
.works-link:hover {
  opacity: 1 !important;
}
.works-link:hover .works-thumb-wrap::after {
  opacity: 0.6;
}
.works-link:hover .works-thumb {
  scale: 1.1;
}
.works-link:hover .works-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  opacity: 0.8;
}

.works-new {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 20px;
  z-index: 5;
  opacity: 0.9;
}

.works-thumb-wrap {
  position: relative;
  overflow: hidden;
}
.works-thumb-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: 0.3s;
}

.works-thumb {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
  transition: 0.3s;
}

.works-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  margin: auto;
  color: #fff;
  font-size: 20px;
  z-index: 2;
  text-align: center;
  line-height: 1.6;
  transition: 0.3s;
  opacity: 0;
}

/* single
--------------------------- */
.single-works {
  background-color: #fff;
}

.single-works .main-raised {
  border: none;
  box-shadow: none;
  margin: 0;
  padding-top: 0px;
}

#works-single-imgs {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#works-single-imgs .slick-prev {
  left: 35px;
  z-index: 5;
  width: 38px;
  height: 65px;
  box-shadow: none;
  background-color: #999;
}
@media screen and (max-width: 767px) {
  #works-single-imgs .slick-prev {
    left: 20px;
  }
}
#works-single-imgs .slick-next {
  right: 35px;
  z-index: 5;
  width: 38px;
  height: 65px;
  box-shadow: none;
  background-color: #999;
}
@media screen and (max-width: 767px) {
  #works-single-imgs .slick-next {
    right: 20px;
  }
}
#works-single-imgs .slick-prev:before,
#works-single-imgs .slick-next:before {
  color: rgba(0, 0, 0, 0.5);
  font-size: 30px;
}
#works-single-imgs .slick-prev:before {
  content: "〈";
  position: relative;
  right: 9px;
}
#works-single-imgs .slick-next:before {
  content: "〉";
  position: relative;
  left: 9px;
}

/* Slick 内部を領域いっぱいにして、中央寄せ */
#works-single-imgs .slick-list,
#works-single-imgs .slick-track,
#works-single-imgs .slick-slide {
  height: 100%;
}

#works-single-imgs .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#works-single-imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  #works-single-imgs img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.menu-btn .box p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  position: relative;
  z-index: 11;
}

.drawer-menu .drawer-menu-inner {
  padding: 0 15px;
}
.drawer-menu .drawer-menu-inner p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 15px;
}

.works-logo {
  z-index: 5;
}