@charset "UTF-8";





main.detective {
  margin-top: -66px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  color: #000;
  overflow: hidden;
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  main.detective {
    margin-top: 0;
  }
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 20000;
}

.home .pageHeader .__siteName {
  background-image: url(../images/header-logo.png);
}





/* Fade */

.fade {
	opacity: 0;
	transition: 0.8s linear;
}
.fade.active {
	opacity: 1;
}
.fade-l {
	position: relative;
	opacity: 0;
	transform: translate(-4rem, 0);
	transition: 0.8s ease-out;
}
.fade-r {
	position: relative;
	opacity: 0;
	transform: translate(4rem, 0);
	transition: 0.8s ease-out;
}
.fade-b {
	position: relative;
	opacity: 0;
	transform: translate(0, 4rem);
	transition: 0.8s ease-out;
}
.fade-l.active, .fade-r.active, .fade-b.active {
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  .fade-l {
    transform: translate(-2rem, 0);
  }
  .fade-r {
    transform: translate(2rem, 0);
  }
  .fade-b {
    transform: translate(0, 2rem);
  }
}





/* MV */

.detective-mv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
	width: 100%;
	height: 800px;
  padding-bottom: 60px;
  font-family: 'Noto Sans JP', sans-serif;
  overflow: hidden;
  z-index: 2;
  h1 {
    position: relative;
    width: 640px;
    z-index: 2;
  }
  video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
  }
}
@media screen and (max-width: 1600px) {
  .detective-mv {
    aspect-ratio: 16 / 8;
    height: auto;
    h1 {
      width: 40%;
    }
    video {
      top: 0;
      left: 0;
      transform: inherit;
      aspect-ratio: 16 / 8;
      width: 100%;
      height: auto;
    }
  }
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  .detective-mv {
    aspect-ratio: 5 / 8;
    h1 {
      width: 85%;
    }
    video {
      aspect-ratio: 5 / 8;
    }
  }
}

.detective-explanation {
  position: relative;
  background: #fff338 url(../images/tape-bg.jpg) center center / 300px;
  width: calc(100% + 100px);
  margin: -60px -50px;
  padding: 30px 100px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.7);
  transform: rotate(-3deg);
  z-index: 2;
  dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    dt {
      width: 370px;
    }
    dd {
      width: calc(100% - 420px);
      font-weight: 700;
      font-size: 16px;
    }
  }
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  .detective-explanation {
    width: calc(100% + 50px);
    margin: -60px -25px;
    padding: 20px 65px;
    dl {
      display: block;
      width: 100%;
      dt {
        width: 100%;
        margin-bottom: 15px;
      }
      dd {
        width: 100%;
        font-size: 14px;
        br {
          display: none;
        }
      }
    }
  }
}





/* Gallery */

.detective-gallery {
  position: relative;
  background: #000;
  width: 100%;
  height: 900px;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  .movie-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 100px;
    z-index: 3;
    h2 {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      font-family: 'Oswald';
      font-size: 120px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.04em;
      text-align: right;
      font-feature-settings: "palt";
      color: #fe0;
    }
  }
  .movie-gallery {
    position: relative;
    width: 100%;
    height: 900px;
    z-index: 2;
    .image {
      position: relative;
      width: 506px;
      height: 900px;
      pointer-events: none;
      transition: 0.2s ease-out;
      img {
        position: relative;
        transform: scale(0.7);
        opacity: 0.5;
        z-index: 1;
        transition: 0.2s ease-out;
      }
      &.slick-center {
        pointer-events: all;
        img {
          transform: scale(1);
          opacity: 1;
        }
        &:after {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          display: block;
          background: url(../images/movie-play.png) no-repeat center center / cover;
          width: 180px;
          height: 180px;
          margin: -90px 0 0 -90px;
          opacity: 0.3;
          pointer-events: none;
          z-index: 2;
          transition: 0.2s ease-out;
        }
      }
      &:hover {
        &.slick-center {
          &:after {
            opacity: 0.8;
          }
        }
      }
    }
    .slick-arrow {
      position: absolute;
      top: 50%;
      display: block;
      background: url(../images/arrow.png) no-repeat center center / cover;
      width: 40px;
      height: 80px;
      margin-top: -40px;
      padding-top: 80px;
      font-size: 0;
      overflow: hidden;
      -webkit-transform: inherit;
      transform: inherit;
      z-index: 3;
      transition: 0.2s ease-out;
      &:before {
        display: none;
      }
      &:hover {
        opacity: 0.5;
      }
    }
    .slick-prev {
      left: inherit;
      right: calc(50% + 510px);
      transform: scale(-1, -1);
    }
    .slick-next {
      left: calc(50% + 510px);
    }
    .slick-track {
      display: flex;
      align-items: center;
    }
  }
  .movie-txt {
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100%;
    padding: 0 50px;
    z-index: 3;
    .txt-list {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 2;
      h3 {
        margin-bottom: 24px;
        font-size: 40px;
        font-weight: 800;
        line-height: 1;
        color: #fe0;
      }
      .slick-dots {
        position: absolute;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        bottom: 0;
        right: 0;
        li {
          margin: 0;
          width: 20px;
          height: 20px;
          button {
            display: block;
            border: 1px solid #fff;
            border-radius: 20px;
            width: 20px;
            height: 20px;
            padding: 18px 0 0 0;
            font-size: 0;
            overflow: hidden;
            &:before {
              display: none;
            }
          }
          &.slick-active {
            button {
              border: none;
              background-color: #fe0;
              padding: 20px 0 0 0;
            }
          }
        }
      }
    }
  }
  video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
  }
}
@media screen and (max-width: 1200px) {
  .detective-gallery {
    .movie-gallery {
      .slick-prev {
        left: inherit;
        right: 92.5%;
        transform: scale(-1, -1);
      }
      .slick-next {
        left: 92.5%;
      }
    }
  }
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  .detective-gallery {
    padding: 50px 0;
    height: auto;
    min-height: 650px;
    .movie-title {
      h2 {
        font-size: 50px;
        text-align: center;
      }
    }
    .movie-gallery {
      height: 420px;
      .image {
        width: 236px;
        height: 420px;
        img {
          transform-origin: center 100%;
          transform: scale(0.85);
        }
        &.slick-center {
          &:after {
            top: calc(50% + 30px);
            width: 90px;
            height: 90px;
            margin: -45px 0 0 -45px;
          }
        }
      }
      .slick-arrow {
        top: calc(50% + 30px);
        width: 30px;
        height: 60px;
        margin-top: -30px;
        padding-top: 60px;
      }
      .slick-prev {
        left: 20px;
        right: inherit;
      }
      .slick-next {
        left: inherit;
        right: 20px;
      }
      .slick-track {
        align-items: flex-end;
        gap: 10px;
      }
    }
    .movie-txt {
      position: relative;
      bottom: 0;
      width: 100%;
      padding: 0 20px;
      .txt-list {
        padding-top: 60px;
        font-size: 13px;
        line-height: 1.6;
        h3 {
          margin-bottom: 15px;
          font-size: 28px;
        }
        .slick-dots {
          position: absolute;
          justify-content: center;
          gap: 8px;
          width: 100%;
          bottom: inherit;
          top: 15px;
          right: 0;
        }
      }
    }
    video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      z-index: 1;
    }
  }
}





/* Project */

.detective-project {
  position: relative;
  background-color: #fff;
  width: 100%;
  padding: 80px 0 100px 0;
  clip-path: inset(0);
  overflow: hidden;
  z-index: 1;
  &:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background: #fff url(../images/main-bg.jpg) no-repeat center center / cover;
    width: 100%;
    height: 100svh;
    z-index: -1;
  }
  .project-title {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    h2 {
      margin: 0;
      font-family: 'Oswald';
      font-size: 120px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.04em;
      font-feature-settings: "palt";
      color: #000;
    }
    p {
      margin: 0;
      font-size: 24px;
      font-weight: 700;
      line-height: 1.3;
      br {
        display: none;
      }
    }
  }
  .project-contents {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 100px;
    z-index: 1;
    &:before {
      content: "";
      position: absolute;
      top: 100px;
      left: calc(-100% - 200px);
      display: block;
      background: #fff338 url(../images/tape-bg.jpg) center center / 300px;
      width: calc(100% + 200px);
      height: 180px;
      box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
      transform: rotate(-5deg);
      z-index: -1;
      transition: 0.5s ease-out;
    }
    .read {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-content: space-between;
      width: 50%;
      padding: 0 50px;
      font-size: 16px;
      line-height: 1.9;
      div {
        width: 100%;
        max-width: 500px;
        margin: 0 0 0 auto;
        h3 {
          margin-bottom: 30px;
          font-size: 45px;
          font-weight: 800;
          line-height: 1;
          text-align: right;
        }
      }
      .btn {
        width: 100%;
        max-width: 500px;
        margin: 20px 0 0 auto;
        text-align: right;
        a {
          position: relative;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          border-radius: 40px;
          background-color: #000;
          width: 200px;
          height: 40px;
          padding: 0 30px 2px 20px;
          font-family: 'Oswald';
          font-size: 18px;
          font-weight: 600;
          line-height: 1;
          text-align: center;
          text-decoration: none;
          color: #fff338;
          transition: 0.2s ease-out;
          &:after {
            content: "";
            position: absolute;
            top: 50%;
            right: 15px;
            display: block;
            background: url(../images/arrow.png) no-repeat center center / cover;
            width: 10px;
            height: 20px;
            margin-top: -10px;
            transition: 0.2s ease-out;
          }
          &:hover {
            background: #fff338 url(../images/tape-bg.jpg) center center / 200px;
            color: #000;
            &:after {
              right: 10px;
            }
          }
        }
      }
    }
    .image {
      position: relative;
      width: 50%;
      min-height: 450px;
      overflow: hidden;
      img {
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        max-width: initial;
        width: 100%;
        height: 100%;
        z-index: 1;
      }
    }
    &.rev {
      flex-direction: row;
      &:before {
        left: calc(100% + 200px);
        transform: rotate(5deg);
      }
      .read {
        div {
          margin: 0 auto 0 0;
          h3 {
            text-align: left;
          }
        }
        .btn {
          margin: 20px auto 0 0;
          text-align: left;
        }
      }
    }
    &.active {
      &:before {
        top: -60px !important;
        left: -100px !important;
      }
    }
  }
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  .detective-project {
    padding: 50px 0 60px 0;
    &:after {
      background: #fff url(../images/main-bg.jpg) no-repeat 25% center / cover;
    }
    .project-title {
      display: block;
      padding: 0 20px;
      h2 {
        font-size: 50px;
        text-align: center;
      }
      p {
        margin: 20px 0 0 0;
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        br {
          display: inherit;
        }
      }
    }
    .project-contents {
      display: block;
      padding: 0 20px;
      margin-top: 40px;
      &:before {
        top: 200px;
        left: calc(100% + 100px);
        width: calc(100% + 100px);
        height: 120px;
        transform: rotate(5deg);
      }
      .read {
        display: block;
        width: 100%;
        margin-top: 22px;
        padding: 0;
        font-size: 15px;
        line-height: 1.8;
        div {
          width: 100%;
          margin: 0;
          h3 {
            margin-bottom: 20px;
            font-size: 30px;
            text-align: left;
          }
        }
        .btn {
          margin: 20px 0 0 0 !important;
          text-align: center !important;
        }
      }
      .image {
        width: 100%;
        min-height: 190px;
      }
      &.rev {
        &:before {
          left: calc(-100% - 100px);
          transform: rotate(-5deg);
        }
      }
      &.active {
        &:before {
          top: 165px !important;
          left: -50px !important;
        }
      }
    }
  }
}





/* About */

.detective-about {
  background: #fff338 url(../images/tape-bg.jpg) center center / 300px;
  .about-contents {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    .image {
      position: relative;
      width: 50%;
      min-height: 490px;
      overflow: hidden;
      z-index: 1;
      img {
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        max-width: initial;
        width: 100%;
        height: 100%;
        z-index: 1;
      }
    }
    .read {
      position: relative;
      width: 50%;
      padding: 1px 50px;
      font-size: 14px;
      line-height: 1.8;
      z-index: 2;
      h2 {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 680px;
        margin: -10px -50px 40px -180px;
        text-align: right;
        font-size: 100px;
        line-height: 1;
        white-space: nowrap;
        .oswald {
          font-family: 'Oswald';
          font-size: 105px;
          font-weight: 600;
          letter-spacing: -0.03em;
         }
         .noto {
          font-family: 'Noto Sans JP';
          font-weight: 800;
          letter-spacing: -0.04em;
         }
      }
      p {
        margin-top: 10px;
      }
    }
  }
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  .detective-about {
    padding: 70px 20px 40px 20px;
    .about-contents {
      display: block;
      width: 100%;
      .image {
        position: static;
        width: 100%;
        min-height: inherit;
        img {
          position: relative;
          top: 0;
          left: 0;
          object-fit: inherit;
          max-width: inherit;
          width: 100%;
          height: auto;
        }
      }
      .read {
        position: static;
        width: 100%;
        margin-top: 20px;
        padding: 0;
        font-size: 13px;
        line-height: 1.7;
        h2 {
          position: absolute;
          top: -36px;
          left: 0px;
          justify-content: center;
          width: 100%;
          margin: 0;
          font-size: 45px;
          line-height: 1;
          text-align: center;
          z-index: 2;
          .oswald {
            font-size: 48px;
          }
        }
      }
    }
  }
}





/* Btn */

.detective-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px 100px 50px;
  li {
    width: 100%;
    a {
      position: relative;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
      width: 100%;
      height: 100px;
      padding: 0 40px 2px 30px;
      font-size: 24px;
      font-weight: 800;
      line-height: 1;
      text-align: center;
      text-decoration: none;
      color: #fff338;
      transition: 0.2s ease-out;
      &:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20px;
        display: block;
        background: url(../images/arrow.png) no-repeat center center / cover;
        width: 15px;
        height: 30px;
        margin-top: -15px;
        transition: 0.2s ease-out;
      }
      &:hover {
        background: #fff338 url(../images/tape-bg.jpg) center center / 200px;
        color: #000;
        &:after {
          right: 15px;
        }
      }
    }
  }
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  .detective-btn {
    display: block;
    padding: 50px 20px 60px 20px;
    li {
      width: 100%;
      margin-top: 10px;
      &:first-child {
        margin-top: 0;
      }
      a {
        height: 60px;
        padding: 0 30px 2px 20px;
        font-size: 16px;
        &:after {
          right: 15px;
          width: 10px;
          height: 20px;
          margin-top: -10px;
        }
        &:hover {
          &:after {
            right: 10px;
          }
        }
      }
    }
  }
}





/* Modal */

.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff338 url(../images/tape-bg.jpg) center center / 300px;
	width: 100%;
	height: 100%;
  opacity: 0.8;
	z-index: 20001;
}
.modal-content {
  display: none;
  position: fixed;
  background-color: #000;
  width: auto;
  height: 90svh;
  margin: 0;
  padding: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 20002;
  video {
    top: 0;
    left: 0;
    transform: inherit;
    aspect-ratio: 9 / 16;
    width: auto;
    height: 100%;
  }
  .modal-close {
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    &:before, &:after {
      content: "";
      position: absolute;
      top: 50%;
      left: -7px;
      display: block;
      border-top: 1px solid #000;
      width: 54px;
    }
    &:before {
      transform: rotate(-45deg);
    }
    &:after {
      transform: rotate(45deg);
    }
  }
}
@media screen and (min-width: 1px) and (max-width: 600px) {
  .modal-content {
    width: 85%;
    height: auto;
    video {
      width: 100%;
      height: auto;
    }
    .modal-close {
      top: -30px;
      right: 0;
      width: 30px;
      height: 30px;
      &:before, &:after {
        left: -6px;
        width: 42px;
      }
    }
  }
}