@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "Helvetica";
  src: url(../assets/font/HelveticaNeueLight.otf);
}
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Helvetica";
}

img,
video,
object {
  width: 100%;
  border: none;
  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タグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
.fv {
  margin-bottom: 40cqi;
  position: relative;
  z-index: 20;
  background-color: #fff;
}

.title_wrap {
  position: absolute;
  translate: -50% 0;
  left: 50%;
  width: 86.6666666667cqi;
  z-index: 99;
  bottom: 10cqi;
}
.title_wrap p {
  font-size: 2.2666666667cqi;
  text-align: center;
  color: #fff;
  padding-top: 3.2cqi;
}

.sticky {
  pointer-events: none;
  z-index: 3;
  position: sticky;
  top: 0;
  margin: 0 auto;
  left: initial;
  bottom: inherit;
  margin-top: -100vh;
  translate: initial;
  padding-top: 10cqi;
  mix-blend-mode: difference;
}
.sticky p {
  color: #2e5081;
}

#app {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .fv {
    height: 100svh; /* フォールバック */
    height: calc(var(--vh, 1vh) * 100);
  }
  .fv .pcNone figure {
    height: 100svh; /* フォールバック */
    height: calc(var(--vh, 1vh) * 100);
    max-height: 800px;
  }
  .fv .pcNone figure img {
    height: 100%;
    object-fit: cover;
    object-position: 10%;
    animation: position 4s 1s ease forwards;
  }
}
@media screen and (min-width: 769px) {
  .fv {
    height: 100vh;
    margin-bottom: 19.0972222222vw;
    min-height: 800px;
  }
  .fv .spNone figure {
    height: 100vh;
    min-height: 800px;
  }
  .fv .spNone figure img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .title_wrap {
    width: 38.1944444444vw;
    bottom: 4.8611111111vw;
  }
  .title_wrap p {
    font-size: 0.9722222222vw;
    padding-top: 1.3888888889vw;
  }
  .title_wrap.sticky {
    width: 22.9166666667vw;
    top: 2.0833333333vw;
    padding-bottom: 0;
    height: calc(100vh - 2.0833333333vw);
    padding-top: 0;
  }
  .title_wrap.sticky p {
    font-size: 0.4166666667vw;
    padding-top: 0.8333333333vw;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

@keyframes grayscale {
  0% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}
@keyframes position {
  0% {
    object-position: 10% 0%;
  }
  100% {
    object-position: 90% 0%;
  }
}
/*--------------------------------------*
* セクション共通
*--------------------------------------*/
.code_wrapper {
  display: grid;
  gap: 20cqi;
  container-type: inline-size;
  overflow: hidden;
  padding-top: 100vh;
  background-color: #fff;
}

.code_container {
  position: relative;
}

.plus {
  position: absolute;
  z-index: 99;
  padding: 3.3333333333cqi;
  bottom: 0;
  right: 0;
  width: 5.3333333333cqi;
  height: 5.3333333333cqi;
  transition: all 0.4s;
}
.plus span {
  background-color: #fff;
  width: 1px;
  height: 5.3333333333cqi;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.plus span:nth-child(2) {
  rotate: 90deg;
}
.plus.active {
  rotate: 45deg;
}
.plus.active span {
  background-color: #fff;
}

.slide2 img {
  width: 200%;
}
.slide2.active img {
  transform: translateX(-50%);
  transition: transform 6s linear;
}

.credit_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0, 0, 0, 0.65);
}
.credit_bg .credit_inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  font-size: 2.8cqi;
}

.credit {
  display: grid;
  gap: 1.3333333333cqi;
}

.credit a {
  color: #fff;
  letter-spacing: 0.025em;
}
.credit a:has(.nolink) {
  opacity: 0.6;
}

#code2,
#code3,
#code5,
#code8,
#code10,
#code13,
#code14,
#code16,
#code17,
#code19 {
  pointer-events: none;
}
#code2 .plus,
#code3 .plus,
#code5 .plus,
#code8 .plus,
#code10 .plus,
#code13 .plus,
#code14 .plus,
#code16 .plus,
#code17 .plus,
#code19 .plus {
  display: none;
}

#code1 .code_container,
#code2 .code_container,
#code3 .code_container,
#code14 .code_container,
#code18 .code_container,
#code19 .code_container,
#code20 .code_container {
  margin-inline: auto;
}

#code2 .code_container,
#code3 .code_container,
#code19 .code_container,
#code20 .code_container {
  width: 46.6666666667cqi;
}

#code1 .code_container,
#code4 .code_container,
#code5 .code_container,
#code11 .code_container,
#code12 .code_container,
#code18 .code_container {
  width: 84cqi;
}

#code7 .code_container {
  width: 91.3333333333cqi;
}

#code8 .grid {
  display: grid;
  grid-template-columns: repeat(2, 46.6666666667cqi);
  justify-content: center;
  gap: 1.3333333333cqi;
}

#code9 .code_container {
  width: 74.6666666667cqi;
}

#code14 .code_container {
  width: 64cqi;
}

#code3,
#code5,
#code12,
#code20 {
  margin-top: -16cqi;
}

#code5 {
  margin-bottom: 13.3333333333cqi;
}
#code5 .code_container {
  margin: 0 0 0 auto;
}

#code6,
#code13,
#code14 {
  margin-bottom: 20cqi;
}

#code8,
#code10,
#code12 {
  margin-bottom: 16cqi;
}

#code9 {
  margin-bottom: 13.3333333333cqi;
}

#code11 .code_container {
  margin: 0 0 0 auto;
}

#code16,
#code17 {
  margin-top: -20cqi;
}

#code18 {
  margin: 20cqi 0;
}

footer {
  min-height: 100vh;
  display: grid;
  place-content: center;
}
footer .footer_container .staff_credit {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
}
footer .footer_container .link_wrap {
  margin: 150px auto 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
footer .footer_container .link_wrap li {
  width: 40px;
}
footer .footer_container .logo {
  width: 200px;
  margin: 0 auto;
}
footer .footer_container .copy {
  font-size: 10px;
  padding-top: 40px;
  text-align: center;
  color: #000;
}

@media screen and (max-width: 768px) {
  footer .footer_container .staff_credit {
    font-size: 11px;
  }
  footer .footer_container .logo {
    width: 150px;
  }
  footer .footer_container .copy {
    font-size: 10px;
    padding: 25px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .code_wrapper {
    padding-top: 0;
    margin: 0 auto;
    width: 52.0833333333vw;
    gap: 10.4166666667vw 0;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    align-items: center;
  }
  .code_wrapper .code {
    grid-column: 1/3;
  }
  #code4,
  #code5 {
    grid-row: 4/5;
  }
  #code15 {
    grid-row: 14/16;
  }
  #code4,
  #code15 {
    margin-left: -17.7083333333vw;
  }
  #code5 {
    margin: 0;
  }
  #code5 .code_container {
    width: 43.75vw;
    margin-left: 7.6388888889vw;
  }
  #code10,
  #code12,
  #code13 {
    margin-left: -5.2083333333vw;
  }
  #code12 {
    margin-bottom: 0;
  }
  #code13 {
    margin-right: -5.2083333333vw;
  }
  #code4,
  #code15,
  #code19 {
    grid-column: 1/2;
  }
  #code5,
  #code16,
  #code17,
  #code20 {
    grid-column: 2/3;
  }
  #code5 .code_container,
  #code16 .code_container,
  #code17 .code_container {
    width: 29.1666666667vw;
  }
  #code6 {
    margin-top: 6.9444444444vw;
  }
  #code6 .code_container {
    width: 52.0833333333vw;
  }
  #code7 .code_container {
    width: 38.8888888889vw;
  }
  #code8 .grid {
    justify-content: inherit;
    gap: 3.4722222222vw;
  }
  #code16 {
    grid-row: 14/15;
    margin: auto 0 -10.4166666667vw 7.6388888889vw;
  }
  #code16 .code_container {
    margin-top: auto;
  }
  #code17 {
    grid-row: 15/16;
    margin: 0 0 auto 7.6388888889vw;
  }
  #code19 .code_container {
    margin: 0 1.7361111111vw 0 auto;
  }
  #code20 {
    margin: 0 auto 0 1.7361111111vw;
  }
}/*# sourceMappingURL=style.css.map */