html,
body {
  font-family: "Cutive Mono", monospace;
  font-style: normal;
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  transition: all 1.6s ease 0s;
  background-color: #fff;
}
html.active,
body.active {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

a {
  display: block;
  text-decoration: none;
  color: #000;
}
a[href=""] {
  pointer-events: none;
}
a[href=""] span {
  text-decoration: none !important;
  font-size: 10px !important;
}

#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

.fv {
  height: 100dvh;
  position: relative;
}
.fv .fv_slider {
  height: 100dvh;
  width: 100%;
}
.fv .fv_slider li {
  display: block;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100dvh;
  position: relative;
}
.fv .fv_slider li:nth-child(1) {
  background-image: url(../images/sp1.jpg);
}
.fv .fv_slider li:nth-child(2) {
  background-image: url(../images/sp2.jpg);
}
.fv .fv_slider li:nth-child(3) {
  background-image: url(../images/sp3.jpg);
}

.fv_tit {
  position: absolute;
  max-width: 240px;
  min-width: 180px;
  width: 18%;
  transform: translate(-50%, calc(-50% + 15px));
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
  transition-delay: 0.8s;
  top: 47%;
  left: 50%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .fv_tit {
    width: 48%;
    top: 81%;
    left: 29%;
  }
}

.fv_logo {
  position: absolute;
  transform: translateX(-50%) translateY(15px);
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
  transition-delay: 0.8s;
  left: 50%;
  max-width: 100px;
  top: 91%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .fv_logo {
    width: 22%;
    top: 91%;
    left: 84%;
  }
}

.inview.is-show.fv_tit {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.inview.is-show.fv_logo {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.pc_fv {
  position: relative;
  width: 100%;
  height: 100vh;
}

.scroll_wrap {
  padding: 50px 0 40px;
  text-align: center;
  font-size: 14px;
}
.scroll_wrap .line {
  background-color: #000;
  width: 1px;
  height: 40px;
  margin: 10px auto 0;
}

.code_wrapper {
  width: 94.6666666667%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.code_wrapper li a {
  position: relative;
}

@keyframes fade1 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
    border-radius: 10px;
  }
  50% {
    opacity: 1;
    border-radius: 10px;
  }
  60% {
    opacity: 0;
    border-radius: 0;
  }
}
@keyframes fade2 {
  0% {
    border-radius: 0;
  }
  10% {
    border-radius: 10px;
  }
  50% {
    border-radius: 10px;
  }
  60% {
    border-radius: 0;
  }
}
.hover_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.hover_box p {
  color: #fff;
}
.hover_box:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  background-image: url(../images/focus.png);
  background-size: cover;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 100;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.modal_container {
  width: clamp(350px, 93.3333333333vw, 365px);
  margin: 0 auto;
}

[class*=modal-swiper] {
  width: 100%;
  max-width: 365px;
  position: relative;
  margin: 0 0 0 auto;
}
[class*=modal-swiper] [class*=thumb] .swiper-wrapper {
  width: 20%;
  position: absolute;
  z-index: 100;
  top: 0;
  left: -20%;
  display: grid;
  grid-template-columns: 1fr;
}
[class*=modal-swiper] [class*=thumb] .swiper-wrapper [class*=swiper-slide] {
  cursor: pointer;
  filter: brightness(70%);
}
[class*=modal-swiper] [class*=thumb] .swiper-wrapper [class*=swiper-slide] img {
  transition: all 1s;
}
[class*=modal-swiper] [class*=thumb] .swiper-wrapper [class*=swiper-slide][class*=swiper-slide-thumb-active] {
  filter: brightness(100%);
}
[class*=modal-swiper] [class*=thumb] .swiper-wrapper [class*=swiper-slide][class*=swiper-slide-thumb-active] img {
  border-radius: 10px 0 0 10px;
  transition: all 1s;
}

.close {
  cursor: pointer;
  width: 30px;
  height: 100px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 101;
  font-size: 12px;
}

footer .all_item {
  width: 250px;
  text-align: center;
  margin: 80px auto 0;
  border: 1px solid #000;
  padding: 10px 0;
  transition: all 0.4s;
}
footer .all_item:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.4s;
}
footer .logo {
  width: 160px;
  margin: 150px auto 20px;
}
footer .copy {
  font-size: 10px;
  text-align: center;
  padding: 0 0 40px;
}

.credit li:not(li:last-child) {
  margin-bottom: 10px;
}
.credit a {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.credit a span {
  text-decoration: underline;
  display: block;
}
.credit a p {
  display: contents;
}

@media screen and (max-width: 768px) {
  .code_wrapper li.look .hover_box,
  .code_wrapper li.look .hover_box:before {
    animation: fade1 5s;
  }
  .credit {
    margin: 30px auto 120px;
    width: fit-content;
    min-width: 230px;
    font-size: 12px;
  }
  .pc_flex {
    padding-top: 100px;
  }
}
@media screen and (min-width: 769px) {
  .fv {
    position: relative;
  }
  .fv .fv_slider {
    width: 100%;
    height: 100vh;
    position: absolute;
    background-image: url(../images/pc1.jpg);
    background-position: top;
    background-size: cover;
    inset: 0;
  }
  .code_wrapper {
    width: 70.3125%;
    max-width: 1920px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .code_wrapper li a {
    transition: all 1s;
  }
  .code_wrapper li a img,
  .code_wrapper li a .hover_box {
    transition: all 1s;
  }
  .code_wrapper li a:hover img {
    transition: all 1s;
    border-radius: 20px;
  }
  .code_wrapper li a:hover .hover_box {
    transition: all 1s;
    border-radius: 20px;
    opacity: 1;
  }
  .modal {
    overflow: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
  }
  .pc_flex {
    padding-top: 0;
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    width: min(880px, 98.8764044944vw);
    align-items: center;
    margin-bottom: 130px;
  }
  .pc_flex:after {
    content: "";
    position: absolute;
    right: 0;
    width: 400px;
    height: 487px;
    border: #000 solid;
    border-width: 1px 1px 1px 0;
    z-index: -1;
  }
  .number {
    position: absolute;
    transform: translateX(-50%);
    left: 75%;
    bottom: 15.9722222222vh;
  }
  .modal_container {
    margin: 0 auto;
    width: min(880px, 98.8764044944vw);
  }
  [class*=modal-swiper] {
    margin: 0 0 0 75px;
  }
  .credit {
    margin: 0 auto;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */