@charset "utf-8";

.mincho { font-family: "Zen Old Mincho", serif; }
.en-work, .en-play { font-family: "Geologica", sans-serif; }

.front-wrapper {
  background: url(../images/common/bg-camouflage.svg) top center repeat, #ffffff;
}

@media screen and (max-width: 768px) {
  .Content {
      margin: 0;
  }
}

/* ------------------------------------
kv
------------------------------------ */
.kv {
  position: relative;
}
.kv .visual-wrap {
  display: flex;
  flex-wrap: wrap;
}
.kv .visual-wrap figure {
  width: 50%;
}
.kv .visual-wrap figure img {
  width: 100%;
}
.kv .ttl {
  width: 34%;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.kv .ttl img {
  width: 100%;
}

/* ------------------------------------
intro
------------------------------------ */
.intro {
  margin: 80px auto 120px;
}
.intro .lead {
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.intro .lead + .txt {
  margin-top: 48px;
  font-size: 1.6rem;
  letter-spacing: .25rem;
  line-height: 2.4;
  text-align: center;
}

/* ------------------------------------
tab-scene
------------------------------------ */
.tab-scene {
  display: flex;
  margin: 64px 0 0;
  padding: 0 5% 160px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.tab-scene.bottom {
  margin-top: 120px;
}
.tab-scene .tab {
  width: calc((100% - 24px)/2);
  max-width: 600px;
  background-color: #000000;
  text-align: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.tab-scene .tab::before {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid #d7d7d7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: .4s;
  z-index: 2;
}
.tab-scene .tab.current::before {
  content: "";
}
.tab-scene .tab div {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.tab-scene .tab div .en-work,
.tab-scene .tab div .en-play {
  font-size: 7.2rem;
  line-height: 1;
  letter-spacing: 0;
  transition: .6s;
}
.tab-scene .tab div .en-work {
  font-size: 6.2rem;
}
.tab-scene .tab div .mincho {
  font-size: 2.2rem;
  transition: .2s;
}
.tab-scene .tab div .arrow {
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: .2s;
  transition: .2s;
  opacity: .75;
}
.tab-scene.bottom .tab div .arrow,
.tab-scene.bottom .tab.current div .arrow {
  transform: translateX(-50%) rotate(180deg);
}
.tab-scene .tab div .arrow::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(135deg) translate(-20%, -80%);
}
.tab-scene .tab .bg {
  position: relative;
  z-index: 1;
  opacity: 0.5;
  transition: .4s;
}
.tab-scene .tab:hover .bg,
.tab-scene .tab.current .bg {
  opacity: 0.65;
}
.tab-scene .tab .bg img {
  transition: .4s;
}
.tab-scene .tab:hover .bg img,
.tab-scene .tab.current .bg img {
  transform: scale(1.06);
}
.tab-scene .tab.current {
  pointer-events: none;
}

/* ------------------------------------
gsap
------------------------------------ */
.gsap-wrapper {
  background: #000000;
  position: relative;
}
.gsap-scroller {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transform: none !important;
}
.gsap-panel {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent !important;
  box-sizing: border-box;
}
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  z-index: 0;
  pointer-events: none;
  display: block !important;
}
.panel-bg {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  background-size: 100%;
  background-repeat: no-repeat;
  will-change: opacity;
  z-index: 1;
}
.work .panel-bg.bg-1 { 
  background-image: url(../images/scene/new/bg_work_main_pc.webp);
}
.work .panel-bg.bg-2 {
  background-image: url(../images/scene/new/bg_work_sec01_pc.webp);
}
.work .panel-bg.bg-3 {
  background-image: url(../images/scene/new/bg_work_sec02_pc.webp);
}
.work .panel-bg.bg-4 {
  background-image: url(../images/scene/new/bg_work_sec03_pc.webp);
}
.play .panel-bg.bg-1 { 
  background-image: url(../images/scene/new/bg_play_main_pc.webp);
}
.play .panel-bg.bg-2 {
  background-image: url(../images/scene/new/bg_play_sec01_pc.webp);
}
.play .panel-bg.bg-3 {
  background-image: url(../images/scene/new/bg_play_sec02_pc.webp);
}
.play .panel-bg.bg-4 {
  background-image: url(../images/scene/new/bg_play_sec03_pc.webp);
}

.scene-dots-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.scene-dots-nav.is-visible {
  opacity: 1;
  visibility: visible;
}
.scene-dots-nav li {
  width: 2px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.scene-dots-nav li.is-active {
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .scene-dots-nav {
    right: 12px;
    gap: 8px;
  }
  .scene-dots-nav li {
    width: 2px;
    height: 24px;
  }
}


/* ------------------------------------
cont-scene
------------------------------------ */
.cont-scene {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.cont-scene.show {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
}
.cont-scene .panel-bg .f-en {
  display: none;
  color: #fff;
  font-size: clamp(80px, 8vw, 150px);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  mix-blend-mode: lighten;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .25;
}
.cont-scene .panel:nth-child(n+2) {
  margin-top: 12vh;
}
.cont-scene .panel .panel-content {
  width: 100%;
  height: auto;
  z-index: 2;  
  padding: 8vh 0 24vh;
}
.cont-scene .panel:nth-child(1) .panel-content {
  display: flex;
  height: 100vh;
  padding: 0;
  align-items: center;
}
.cont-scene .panel:nth-child(n+2) .panel-content {
  margin-top: 10%;
}
.cont-scene .panel:nth-child(1) .panel-bg {
  position: absolute;
}
.cont-scene .panel .panel-content .txtwrap .catch-lead {
  font-size: 4.2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.15em;
}
.cont-scene .panel .panel-content .inner {
  width: 100%;
  max-width: 1680px;
  padding: 0 4%;
}
.cont-scene .panel .flexbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cont-scene .panel .flexbox.reserve {
  flex-flow: row-reverse;
}
.cont-scene .panel .txtwrap {
  position: sticky;
  top: 220px;
  height: fit-content;
  width: 42%;
  color: #ffffff;
}
.cont-scene .panel .txtwrap.wide {
  width: 100%;
}
.cont-scene .panel .txtwrap h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .25rem;
  position: relative;
}
.cont-scene .panel .txtwrap h3 .f-en {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 200;
  line-height: 0.8;
  letter-spacing: 0;
  opacity: .15;
  position: absolute;
  top: -42px;
  left: -8px;
}
.cont-scene .panel .txtwrap .txt {
  margin-top: 36px;
  font-size: 1.6rem;
  line-height: 2.8;
  letter-spacing: .25rem;
}
.cont-scene .panel .txtwrap .img-sub {
  margin-top: 48px;
}
.cont-scene .panel .img-main {
  width: 52%;
}
.cont-scene .panel .img-main figure + figure {
  margin-top: 24px;
}
.cont-scene .endro {
  margin-top: 80px;
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: center;
}


/* ------------------------------------
scroll
------------------------------------ */
.scroll {
  color: #ffffff;
  font-size: 1.8rem;
  position: absolute;
  top: 10%;
  left: 50%;
  writing-mode: vertical-rl;
  z-index: 3;
}
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #ffffff;
  bottom: -95px;
  content: "";
  height: 80px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
.scroll::after {
  background-color: #888888;
  bottom: -95px;
  content: "";
  height: 80px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}


/* ------------------------------------
series-wrap
------------------------------------ */
.series-wrap {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 120px;
  padding: 36px 3%;
  background: #ffffff;
}
.series-wrap .ttl-series {
  font-size: 3.6rem;
  font-style: italic;
  font-weight: 200;
  line-height: 1;
  text-align: center;
}
.series-wrap .lead-series {
  font-size: 2.4rem;
  text-align: center;
}
.series-wrap .series-list {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.series-wrap .series-list li {
  width: calc((100% - 96px)/4);
}
.series-wrap .series-list li .name-series {
  margin-top: 12px;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width:768px) {
  /* ------------------------------------
  kv
  ------------------------------------ */
  .kv .ttl {
    width: 84%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .kv .visual-wrap figure {
    width: 100%;
  }

  /* ------------------------------------
  intro
  ------------------------------------ */
  .intro {
    margin: 48px auto;
  }
  .intro .lead {
    font-size: 2.0rem;
    letter-spacing: -.02rem;
  }
  .intro .lead + .txt {
    margin-top: 24px;
    font-size: 1.4rem;
  }

  /* ------------------------------------
  tab-scene
  ------------------------------------ */
  .tab-scene {
    margin: 64px 0 0;
    padding: 0 5% 80px;
    gap: 16px;
  }
  .tab-scene.bottom {
    margin-top: 64px;
  }
  .tab-scene .tab {
    width: 100%;
  }
  .tab-scene .tab::before {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
  .tab-scene .tab div {
    top: 40%;
  }
  .tab-scene .tab div .en-work,
  .tab-scene .tab div .en-play {
    font-size: 4.2rem;
  }
  .tab-scene .tab div .en-work {
    font-size: 3.4rem;
  }
  .tab-scene .tab div .mincho {
    font-size: 1.6rem;
  }
  .tab-scene .tab div .arrow {
    width: 20px;
    height: 20px;
    bottom: -32px;
  }
  .tab-scene .tab:hover div .arrow, .tab-scene .tab.current div .arrow {
    transform: translate(-50%, 0%);
  }
  .tab-scene .tab div .arrow::before {
    width: 8px;
    height: 8px;
    transform: rotate(135deg) translate(-20%, -80%);
  }

  /* ------------------------------------
  gsap
  ------------------------------------ */
  .gsap-panel {
    padding-bottom: 60px;
    min-height: 100svh;
    height: auto !important;
  }

  .work .panel-bg.bg-1 { 
    background-image: url(../images/scene/new/bg_work_main_sp.webp);
  }
  .work .panel-bg.bg-2 {
    background-image: url(../images/scene/new/bg_work_sec01_sp.webp);
  }
  .work .panel-bg.bg-3 {
    background-image: url(../images/scene/new/bg_work_sec02_sp.webp);
  }
  .work .panel-bg.bg-4 {
    background-image: url(../images/scene/new/bg_work_sec03_sp.webp);
  }
  .play .panel-bg.bg-1 { 
    background-image: url(../images/scene/new/bg_play_main_sp.webp);
  }
  .play .panel-bg.bg-2 {
    background-image: url(../images/scene/new/bg_play_sec01_sp.webp);
  }
  .play .panel-bg.bg-3 {
    background-image: url(../images/scene/new/bg_play_sec02_sp.webp);
  }
  .play .panel-bg.bg-4 {
    background-image: url(../images/scene/new/bg_play_sec03_sp.webp);
  }

  .gsap-wrapper,
  .gsap-scroller,
  .gsap-panel,
  .panel-content,
  .panel-bg {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  /* ------------------------------------
  cont-scene
  ------------------------------------ */
  .cont-scene .panel-bg .f-en {
    font-size: clamp(60px, 8vw, 70px);
    text-align: left;
    top: 20%;
    left: 5%;
    transform: translate(0);
    mix-blend-mode: normal !important;
    opacity: 0.15 !important;
  }
  .cont-scene .panel:nth-child(n+2) {
    margin-top: 5vh;
  }
  .cont-scene .panel .panel-content {
    padding: 8vh 0 0;
  }
  .cont-scene .panel:nth-child(n+2) .panel-content {
    margin-top: 10%;
  }
  .cont-scene .panel .panel-content .txtwrap .catch-lead {
    font-size: 2.2rem;
    letter-spacing: 0rem;
  }
  .scene-work .main-catch h2 .f-en span {
    font-size: 5.6rem;
    transform: translate(-50%, -75%);
  }
  .cont-scene .panel .panel-content .inner {
    padding: 10% 8%;
  }
  .cont-scene .panel .flexbox,
  .cont-scene .panel .flexbox.reserve {
    flex-wrap: wrap;
  }
  .cont-scene .panel .txtwrap {
    width: 100%;
    position: static;
  }
  .cont-scene .panel .txtwrap h3 {
    font-size: clamp(18px, 5.3vw, 22px);
    letter-spacing: 0;
  }
  .cont-scene .panel .txtwrap .txt {
    margin-top: 24px;
    font-size: clamp(13px, 3.46vw, 14px);
    line-height: 2.4;
    letter-spacing: .05rem;
  }
  .cont-scene .panel .img-main {
    width: 100%;
    margin-top: 48px;
  }
  .cont-scene .panel .img-main figure + figure {
    margin-top: 16px;
  }
  .cont-scene .endro {
    margin-top: 48px;
    font-size: 1.5rem;
    line-height: 2.2;
  }

  /* ------------------------------------
  scroll
  ------------------------------------ */
  .scroll {
    font-size: 1.4rem;
  }
  .scroll::before {
    bottom: -75px;
    height: 60px;
  }
  .scroll::after {
    bottom: -75px;
    content: "";
    height: 60px;
  }

  /* ------------------------------------
  series-wrap
  ------------------------------------ */
  .series-wrap {
    margin: 0 auto 80px;
    padding: 24px 5%;
  }
  .series-wrap .ttl-series {
    font-size: 1.4rem;
  }
  .series-wrap .lead-series {
    font-size: 1.8rem;
    text-align: center;
  }
  .series-wrap .series-list {
    display: flex;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
  }
  .series-wrap .series-list li {
    width: calc((100% - 16px)/2);
  }
  .series-wrap .series-list li .name-series {
    margin-top: 8px;
    font-size: 1.2rem;
    letter-spacing: 0;
    text-align: center;
  }
}