body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #fff;
}

.works_container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
}
.works_container .works_container_inner {
  margin: 0 auto;
  max-width: 1280px;
  margin-top: 70px;
}

.works-header {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  margin: -40px -20px 60px;
  padding: 40px 10%;
  color: #000;
  align-items: flex-end;
}
.works-header .header-content .header-main h1 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}
.works-header .header-content .header-main p {
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 32px;
  letter-spacing: 0.05em;
}
.works-header .header-content .project-description {
  max-width: 600px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.works-header .header-credit {
  text-align: left;
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.03em;
}
.works-header .header-credit span {
  border: 1px solid #9c9c9c;
  padding: 0 4px;
  margin-right: 4px;
}
@media (max-width: 767px) {
  .works-header {
    flex-direction: column;
    padding: 30px 5%;
    margin: auto;
  }
  .works-header .header-content {
    margin-bottom: 30px;
  }
  .works-header .header-content .project-description {
    max-width: 100%;
  }
  .works-header .header-credit {
    text-align: left;
  }
}

.main-visual {
  margin: -40px -20px 30px;
  padding: 40px 20px;
  background-color: #fff;
  color: #000;
}
.main-visual .device-frames {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vh 0;
  max-width: 1080px;
  margin: 0 auto;
}
.main-visual .device-frames .pc-frame {
  width: 90%;
  max-width: 1080px;
  position: relative;
  z-index: 1;
  margin-right: 10%;
  aspect-ratio: 900/510;
  left: 5%;
}
.main-visual .device-frames .pc-frame .video-container {
  position: absolute;
  width: 76.67%;
  height: 89.22%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.main-visual .device-frames .pc-frame .video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual .device-frames .pc-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-visual .device-frames .sp-frame {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  right: 5%;
  width: 20.6vw;
  max-width: 206px;
  aspect-ratio: 206/410;
  z-index: 3;
}
@media (max-width: 767px) {
  .main-visual .device-frames .sp-frame {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    width: 60%;
  }
}
.main-visual .device-frames .sp-frame .video-container {
  position: absolute;
  width: 88.35%;
  height: 95.12%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 3;
}
.main-visual .device-frames .sp-frame .video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.main-visual .device-frames .sp-frame img {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .main-visual {
    padding: 20px;
  }
  .main-visual .pc-frame {
    display: none;
  }
  .main-visual .device-frames {
    padding: 20px 0;
  }
}

.works_movie .video-container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: 150px auto;
}
.works_movie .video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_gallery_container {
  background-color: #272727;
  padding-top: 100px;
  padding-bottom: 100px;
}

.gallery {
  max-width: 1280px;
  margin-bottom: 80px;
  margin: 0 auto;
  padding: 0 2.5%;
}
.gallery .gallery-item.large {
  margin-top: 24px;
  margin-bottom: 24px;
}
.gallery .gallery-item.large img {
  width: 100%;
  height: auto;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery .gallery-grid img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease-out;
}
.gallery .gallery-grid img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-button {
  margin: 60px 0;
  text-align: center;
}
.back-button a {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #111111;
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: 0.3s ease-out;
}
.back-button a:hover {
  background-color: #fff;
  color: #000;
}

.other-projects {
  max-width: 90%;
  margin: auto;
}
.other-projects h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 40px;
  text-align: left;
  letter-spacing: 0.05em;
  color: #272727;
}
.other-projects .project-list {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .other-projects .project-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .other-projects .project-list {
    grid-template-columns: 1fr;
  }
}
.other-projects .project-item {
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease-out;
}
.other-projects .project-item:hover {
  transform: scale(1.05);
}
.other-projects .project-item .project-thumb {
  margin-bottom: 16px;
}
.other-projects .project-item .project-thumb img {
  width: 100%;
  height: auto;
}
.other-projects .project-item .project-info {
  color: #272727;
}
.other-projects .project-item .project-info h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}
.other-projects .project-item .project-info p {
  font-size: 12px;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.03em;
}

.web-site-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 40px;
  display: inline-block;
  border: 1px solid #272727;
  border-radius: 10px;
  padding: 2px 10px 4px 10px;
}
.web-site-link a {
  text-decoration: none;
  color: #272727;
}/*# sourceMappingURL=works.css.map */