

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  background: #000;
}

html,
body,
#wrapper {
  background-color: #000;  overflow-x: hidden;
}

html {
  color-scheme: dark;
  /* iOSが余白を黒で塗るようヒントを与える */
}

/* ヒーロー本体 */
#hero.hero {
  position: relative;
  height: 100vh;
  isolation: isolate;
  z-index: 14 !important;
  
}

.hero_backimg {
  position: fixed;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  z-index:2;
}

.hero_backimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: -10;
}

.snslist {
  position: absolute;
  width: 10%;
  margin: 0 auto;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.snslist li {
  float: left;
  width: 15%;
  margin-right: 6%;
}

.snslist li:last-child {
  margin-right: -20%;
}


@media (max-width: 1050px) {
  .snslist {
    position: relative;
    width: 18%;
    margin: 0 auto;
  }

  .snslist li {
    float: left;
    width: 45%;
    margin-right: 10%;
  }

  .snslist li:last-child {
    margin-right: -20%;
  }

  .hero_backimg img {
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: initial;
  }
}

#hero.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .7) 100%);
  pointer-events: none;
}


:root {
  --gnav-h: 50px;
  --yellow: #9A752E;
  --txt: #777;
  --glass: rgba(10, 10, 10, 0);
}




.gnav {
  position: absolute;
  inset: 0 0 auto 0;
  height: var(--gnav-h);
  background: var(--glass);
  z-index: 1000;
}

.gnav__inner {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.gnav__brand {
  position: absolute;
  align-items: center;
  margin-top: 15px;
  right:130px;
  text-decoration: none;
}

.gnav__brand img {
  display: block;
  width: 80%;
  height: auto;
}

.gnav__right {
  position: absolute;
  right:20px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 100;
}

.gnav__menu {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;

}

.gnav__menu li {
  position: relative;
  padding-right: 10px;

}

.gnav__menu li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  /* 縦罫線 */
  padding-left: 20px;
  /* 線と文字の間隔 */
}

.gnav__menu a {
  color: var(--txt);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.gnav__menu a:hover {
  color: var(--yellow);
  transition: all 0.3s;
}

/* 言語切替（JPアクティブ＝黄色ピル、ENGは枠線） */
.gnav__lang {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;

}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  font-weight: 800;
  height: 28px;
  padding: 0 10px;
  font-size: 16px;
  text-decoration: none;
  color: var(--txt);
  border: 1.5px solid #444;
  background: transparent;
  transition: filter .2s ease, opacity .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.lang-btn:hover {
  opacity: .85;
}

.lang-btn.is-active {
  background: var(--yellow);
  color: #0b0b0b;
  border-color: transparent;
}


@media (max-width: 1050px) {
  .gnav__lang {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;

}

.gnav__brand {
  position: relative;
  right:auto;
    width: 35vw;
    margin: 20px auto;
  text-decoration: none;
    display: block;
    transform: translateX(10%); 
    margin-bottom: 0;
}
  .hero_backimg {
    position: fixed;
    width: 140%;
    height: 40vh;
    margin-left: -19vw;
    overflow: visible;
    /* はみ出した部分を隠す */
  }
}



.btn-lineup {
  --skew: -18deg;
  --bg: #9A752E;
  --bg-hover: #0086C5;
  position: relative;
  display: inline-block;
  transform: skewX(var(--skew));
  background: var(--bg);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .35));
  transition: background-color .4s ease, color .4s ease;
  width: clamp(220px, 20vw, 420px);
}

.btn-lineup::before {
  content: "";
  display: block;
  height: 58px;
  width: 100%;
}

.btn-lineup > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: skewX(calc(-1 * var(--skew)));
  font-weight: 900;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: .06em;
  color: #0b0b0b;
}


/* ロゴ群（中央寄せ） */
.hero-logos {
  position: fixed;
  inset: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding-inline: 3vw;
}

.hero-logos__stack {
  display: grid;
  gap: 0.3rem;
  align-items: center;
  justify-items: center;
  transform: translateY(-12%);
}
.hero-logos__stack img {
	 filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .35));
}

.hero-logos__icon {
  width: 8vw;
  height: auto;
  margin-bottom: 0;
  opacity: 0;
}

.hero-logos__main {
  width: 40vw;
  height: auto;
  margin-bottom: 0;
  opacity: 0
}


.logo-sub-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-logos__sub {
  display: block;
  width: 70vw;
  height: auto;
  margin: 0 auto;
  transform: translateY(120%);
  opacity: 0;
}


.hero-logos__lower {
  margin-top: 0.5vw;
  width: 35vw;
  height: auto;
  opacity: 0;
}

.hero-logos__lower__lower {
  position: relative;
  display: block;
  width: 100%;
  margin: 15% auto;
  margin-bottom: 0;
}

@media (max-width: 1050px) {
 #hero.hero {
    height: 100vh;
  }
  .hero_backimg {
    height: auto;
  }

  .hero_backimg img {
    width: 130%;
    margin-left: -15%;
    height: auto;
    object-fit: unset;
  }

  .hero-logos {
    position: absolute;
    inset: auto;
    display: block;
    min-height: auto;
    margin: 0 auto;
    text-align: center;
  }

  .hero-logos__stack {
    transform: none;
    margin-top:0;
    
    padding-top:20vw;
    
  }

  .hero-logos__lower {
    width: 90vw;
    height: auto;
  }

  .hero-logos__lower__lower {
    width: 80vw;
    margin-top: 30px;
    height: auto;
  }
    .hero-logos__lower__spbnr {
    width: 80vw;
    margin-top: 30px;
    height: auto;
      opacity:0;
  }
}

@media (max-width: 768px) {
  .hero-logos__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;   
    height: 100vh;    
    width: 100%;
    margin: 0;
    padding: 0;
  transform: translate(1.3%, -5%);
    
  }
}

/* タブレット（769px〜1050px） */
@media (min-width: 769px) and (max-width: 1050px) {
  .hero-logos__stack {
    transform: translate(2%, -8%); /* iPad用に微調整 */
  }
}

/* LINE UP BUTTON */
.btn-lineup {
  --skew: -18deg;
  --bg: #808052;
  --bg-hover: #0086C5;

  position: relative;
  display: inline-block;
  transform: skewX(var(--skew));
  background: var(--bg);
  margin-top: 20px;
  padding: 0;
  border: none;
  text-decoration: none;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .35));
  transition: background-color 0.4s ease;
}

.btn-lineup::before {
  content: "";
  display: block;
  height: 58px;
  width: clamp(220px, 30vw, 320px);
}

.btn-lineup > span {
  position: absolute;
  inset: 0;
  display: grid;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  place-items: center;
  transform: skewX(calc(-1 * var(--skew)));
  font-weight: 900;

  color: #0b0b0b;
}

/* Hover/Focus */
.btn-lineup:hover {
  background: var(--bg-hover);

}

.btn-lineup:hover > span {
  color: #fff;
  /* ホバー時は文字が白 */
}

.btn-lineup:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}


.hero-banners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 335;

}

.hero-banner {
  position: fixed;
  pointer-events: auto;
  display: grid;
  place-items: center;


}

.hero-banner__left {
  left: 2vw;
  bottom: 3vh;
  width: min(30vw, 250px);
}

.hero-banner__right {
  right: -5px;
  bottom: 0;
  width: min(30vw, 400px);
  z-index: 200 !important;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner--left .play {
  position: absolute;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  display: grid;
  place-items: center;
}

.hero-banner--left .play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.hero-watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: rgba(255, 255, 255, .06);
  font-size: clamp(48px, 10vw, 160px);
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
  user-select: none;
}



.scroll_down {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  letter-spacing: .2em;
  opacity: 0;
  z-index: 200;
}

.scroll-text {
  display: block;
  margin-bottom: 8px;
}

.scroll-line {
  display: block;
  width: 2px;
  height: 60px;
  margin: 0 auto;
  background: #fff;
  transform: scaleY(0);
  transform-origin: top;
  animation: sdl01 2.5s ease-in-out infinite;
}

/* フェードイン */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ラインアニメーション */
@keyframes sdl01 {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}



.section-after-hero {
  position: relative;
  color: #fff;
  width: 100%;
  height: auto;
  min-height: 53vw;
  margin-bottom: 0%;
  padding-top: 0;
  padding-bottom:6%;
  z-index: 320!important;
  background: rgba(0,0,0,0.5); 
  backdrop-filter: blur(8px);  
  -webkit-backdrop-filter: blur(8px); 
border-top:1px solid #888;
}



.intro-copies__stack {
  position: relative;
  width: 60%;
  margin: 0 auto;
  padding-top: 2%;
  z-index: 100;
  display: grid;
  gap: 1vw;
  /* 各段の間隔 */
}

/* 1枚ごとにマスクを持つラッパー */
.stack-wrapper {
  position: relative;
  overflow: hidden;
  /* 水平線以下を隠す */
}

.intro-logo__heading {
  position: relative;
  width: 25%;
  margin-top: 0;
  padding-top:5vw;
  margin-left: 37.4vw;
  filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, .9));
  z-index: 15;
}

/* 画像の初期状態（下に潜らせる） */
.stack-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0px 3px rgba(0, 0, 0, .6));
}
@media (min-width: 1051px) {
  
  .stack-wrapper img {
    transform: translateY(120%);
    opacity: 0;
  }
}

@media (max-width: 1050px) {
  .scroll_down {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  letter-spacing: .2em;
  opacity: 0;
  z-index: 200;
}
  .scroll-text {
  display: block;
  margin-bottom: 8px;
}

.scroll-line {
  display: block;
  width: 2px;
  height: 110px;
  margin: 0 auto;
  background: #fff;
  transform: scaleY(0);
  transform-origin: top;
  animation: sdl01 2.5s ease-in-out infinite;
}
  .stack-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 6px rgba(0,0,0,.6));
  }

  
      .hero-logos__lower__spbnr {
    width: 80vw;
    margin-top: 50px;
    height: auto;
      opacity:0;
  }
  .intro-logo__heading {
    position: absolute;
    width: 42%;
    margin-top: 0%;
    margin-left: 4vw;
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .9));
    z-index: 15;
  }

  .section-after-hero {
    background-size: 130%;
    background-repeat: no-repeat;
    background-position: center top;
    color: #fff;
    background-position: left -60px top;
    width: 100%;
    padding-top: 0%;
    padding-bottom: 0%;
    background: rgba(0,0,0,0.6); 
  }


  .intro-copies__stack {
    position: relative;
    width: 72%;
    margin: inherit;
    padding-top: 50%;
		margin-left: 5%;
    z-index: 100;
    display: grid;
    gap: 1vw;
    filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .6));
  }

  .hero-banners {
    position: relative;
    margin: 0% 0;
    pointer-events: none;
  }

  .hero-banner {
    position: relative;
    pointer-events: auto;
    display: grid;
    place-items: center;


  }

  .hero-banner {
    width: min(44vw, 320px);
  }

  .hero-logos__icon {
    width: min(52vw, 130px);
  }

  .hero-banner__left {
    left: 3vw;
    bottom: 3vh;
  }

  .hero-banner__right {
    right: 30vw;
    bottom: 3vh;
    width: min(100vw, 250px);
  }

  .hero-logos__main {
    width: min(67vw, 860px);
  }

  .hero-logos__sub {
    width: min(64vw, 700px);
    transform: translateY(30%);
  }
}

@media (max-height: 600px) {
  .scroll_down {
    display: none;
  }
}

.hero-banner__y {
  position: absolute;
  right: 1.2vw;
  bottom: 0;
  width: min(30vw, 401px);
  z-index: 80;
}

.hero-banner__b {
  position: absolute;
  right: 2vw;
  bottom: 0;
  width: min(30vw, 401px);
}


:root {
  --yellow: #d6b059;
  /* 既存の変数を使う場合は var(--yellow) に置換 */
}

/* コンテナ（横並び＋NEWの重なり分の左余白） */
.badge-update {
  position: relative;
  right: 0;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 8px;
  padding-left: 150px;
  opacity: 0;
  z-index: 10;
}


/* 「LINEUP UPDATE」ピル */
.badge-update__label {
  display: inline-block;
  padding: 3px 12px;
  /* ピルの高さと横幅感 */
  background: var(--yellow);
  color: #0b0b0b;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

/* 日付 */
.badge-update__date {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.badge-update__new {
  position: absolute;
  left: 49px;
  top: -17px;
  /* 少し持ち上げ（調整可） */
  width: 90px !important;
  /* ← ここで必ずサイズ固定 */
  height: auto !important;
  max-width: none !important;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.hero-banner {
  text-decoration: none !important;
  /* ← これが本命 */
  color: inherit;

}


.section-after-intro {
  position: relative;
  color: #fff;
  width: 100%;
  height: auto;
  min-height: 53vw;
  margin-bottom: 0%;
  padding-top: 4%;
  padding-bottom:6%;
border-top:1px solid #888;
}

.intro-sideimg_a {
  position: absolute;
  margin-top: 5vw;
  left: -5vw;
  width: 30vw;
  z-index: 50;
}

.intro-sideimg_b {
  position: absolute;
  
  margin-top: -2vw;
  right: -4vw;
  width: 30vw;
  max-width: 40vw;
  z-index: 50;
}

@media (max-width: 1050px) {
  .section-after-intro {
  position: relative;
  color: #fff;
  width: 100%;
  height: auto;
  min-height: 53vw;
  margin-bottom: 0%;
  padding-top: 10%;
  padding-bottom:10%;
border-top:1px solid #888;
}
  .intro-sideimg_a {
    position: absolute;
    margin-top: 13vw;
    left: -7vw;
    width: 30vw;
    z-index: 50;
  }

  .intro-sideimg_b {
    position: absolute;
    margin-top: 5vw;
    right: -10vw;
    width: 30vw;
    max-width: 400px;
    z-index: 50;
  }
}


.ftwrp {
  position: relative;
  height: auto;
	padding:80px 0 50px 0;
   background: #000;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  z-index: 319;
}

.grad-bar {
  width: 100%;
  height: 0px;
  background: linear-gradient(to right, #009EFF, #FFCC00);
}

.grad-bar_key {
  position: relative;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  z-index: 100;
}


.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 27900;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;

}


.badge-image {
  opacity: 0;
}

.trigger_1 {
  position: absolute;
  width: 50px;
  right: 0;
  height: 100px;
  z-index: 100;
}

#intro_detail {
  padding-bottom: 10%;
}

.txt_area_intro_lead {
  position: relative;
  color: #fff;
  width: 100%;
  margin-left: 0%;
  font-weight: 500;
  line-height: 1.8;
  z-index: 100;
	text-align: center;
  letter-spacing: 0.05em;
  font-size: min(1vw, 19px);
  z-index: 100;
}
.txt_area_intro_lead span {
	font-size: 130%;
	font-weight: 800;
}

@media (max-width: 1050px) {
	.ftwrp {
  position: relative;
  height: auto;
	padding:50px 10px 50px 10px;
   background: #000;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  z-index: 100;
}
  .txt_area_intro_lead {
  position: relative;
  color: #fff;
  width: 100%;
  margin-left: 0%;
  font-weight: 500;
  line-height: 1.7;
  z-index: 100;
	text-align: left;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  z-index: 100;
  }
	.txt_area_intro_lead span {
	font-size: 140%;
	font-weight: 800;
		line-height: 1.5em;
		display: inline-block;   /* 行内でブロック扱いに */
  margin-bottom: 0.5em; 

}

}

.intro-copies_sp {
  position: relative;
  margin-top: 20vw;
  width: 70%;
  margin-left: 4%;
  z-index: 100;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .9));
}

.txt_subheading {
  text-align: center;
  font-weight: 800;
  font-size: 1.5vw;
}
.txt_desc {
  margin-top: 0.5em;
    text-align: center;
  font-weight: 400;
  font-size: 0.8vw;
}

.halfgrad {
  position: absolute;
  margin-top: -27vw;
  width: 100%;
  height: 400px;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 34%);
  z-index: 10;
}

@media (max-width: 1050px) {
  .txt_subheading {
  text-align: center;
  font-weight: 800;
  font-size: 4.5vw;
}
  .txt_desc {
    text-align: center;
  font-weight: 600;
  font-size: 3vw;
		margin-bottom: 10vw;
}
  .halfgrad {
    position: absolute;
    width: 100%;
    height: 400px;
    margin-top: -45vw;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 34%);
    z-index: 10;
  }
}
.textarea_credit {
	text-align: center;
  margin-top: 10px;
}

.trigger_3 {
    position: absolute;
  width: 50px;
  margin-top: 20%;
  right: 0;
  height: 100px;
  z-index: 100;
}

.prism {
  position: absolute;
  margin-top: -10vw;
  margin-left: 42.5vw;
  width: 40%;
  z-index: 10!important;
  mix-blend-mode: screen; 
}


.marquee {
  margin-top: 2.6vw;
  overflow: hidden;
  white-space: nowrap;
   filter: drop-shadow(0 8px 5px rgba(0, 0, 0, .9));
}

.marquee__inner {
  display: flex;
  will-change: transform; /* GPU最適化 */
}

.marquee__inner img {
  flex-shrink: 0;
  width: clamp(100px, 15vw, 250px);
  margin-right: 0;
  height: auto; 
  object-fit: cover;
}

@media (max-width: 1050px) {
	.marquee {
  margin-top: 5vw;
  overflow: hidden;
  white-space: nowrap;
   filter: drop-shadow(0 8px 5px rgba(0, 0, 0, .9));
}
  .marquee__inner img {
    width: clamp(120px, 35vw, 220px);
    margin-right: 0.3vw;
  }
}


.teaser-wrap {
  display: flex;
  align-items: center; 
  gap: 16px; 
  justify-content: center;
  margin: 60px auto; 
  margin-bottom: 10px;
}

.teaser-item img {
  display: block;
  height: auto;
  max-height: 80px;     /* 高さを揃える（調整可） */
}
@media (max-width: 1050px) {
	.prism {
  position: absolute;
  margin-top: 9vw;
  margin-left: 8vw;
  width: 70%;
  z-index: 10!important;
  mix-blend-mode: screen; 
}
  .teaser-wrap {
    flex-direction: column; 
    gap: 14px; 
    margin: 10px auto;    
  }

  .teaser-item img {
    max-height: none;         /* 高さ制限を解除 */
    width: 80%;              /* 横幅いっぱいに */
    height: auto;  
    margin: 0 auto;/* アスペクト比維持 */
  }
}



.hero_backimg_sp {
     position: fixed;
  margin-top: 90vw;
    width: 100%;
    height: 100vh;
  z-index: 0;
}
.intro_img__side_a {
  position: absolute;
  width: 22.6vw;
}

.intro_img__side_c {
  position: absolute;
  right:0;
  width: 22.8vw;
}

.intro_img__hero {
  position: absolute;
  left:28vw;
  width: 9vw;
}

.shutter {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 300;
  pointer-events: none;
  transform: scaleX(1);      /* 初期は全体を覆う */
  transform-origin: right;
  will-change: transform;    /* GPU最適化 */
}
.next {
  position: relative; /* shutter を中に閉じ込めるため必須 */
  overflow: hidden;   /* はみ出し防止 */
}
.ft_logo {
	position: relative;
	text-align: center;
}

.ft_bnr {
	width: 30%;
	margin: 0 auto;
	margin-bottom: 50px;
}
.ft_bnr img {
	border:1px solid #555;
}

.golodenline {
	position: relative;
	width: 100%;
	height: 30px;
	margin-bottom: 0;
	background: linear-gradient(90deg,rgba(154, 117, 46, 1) 20%, rgba(240, 217, 131, 1) 50%, rgba(154, 117, 46, 1) 81%);
	z-index: 330;
}

.intro_img__bottom_l {
	  position: absolute;
	bottom:-2vw;
  width: 18vw;
}

.intro_img__bottom_r {
	  position: absolute;
	bottom:-1vw;
	right:0;
  width: 22vw;
}

.trigger_4 {
  position: absolute;
  width: 100%;
  bottom:0;
  height: 50px;
  z-index: 1100!important;
}

.intro_img_bottom {
  position: absolute;
  width: 7%;
  bottom:0;
  z-index:100!important;
   left: 50%;  
  transform: translateX(-50%);
}

.gnav__snklogo {
  position: fixed;
}

.spbr {
	display: none;
}

@media (max-width: 1050px) {
	.gnav__snklogo {
  position: fixed;
		width: 35%;
}
	.ft_bnr {
	width: 85%;
	margin: 0 auto;
	margin-bottom: 50px;
}
	.intro_img_bottom {
  position: relative;
		margin-top: 8vw;
  width: 20%;
  bottom:0;
  z-index:100!important;
   left: 50%;  
  transform: translateX(-50%);
}
	.intro_img__side_c {
  position: absolute;
  right:0;
  width: 58vw;
}
	.pcbr {
	display:none;
}

	.spbr {
	display: block;
}
	
.rspnsv {
	width:100%;
}
}

.section_ttl {
  position: relative;
	width: 30%;
	margin: 0 auto;
    filter: drop-shadow(0 6px 5px rgba(0, 0, 0, .9));
  z-index: 100;
}
.section_ttl2 {
	width: 40%;
	margin: 0 auto;
	margin-bottom: 3%;
    filter: drop-shadow(0 6px 5px rgba(0, 0, 0, .9));
}



.game-list{
  position: relative;
	border-top:1px solid #fff;
	padding-top:40px;
  max-width: 1300px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 
repeat(3, minmax(0, 1fr)); 
  gap:30px;
  z-index: 150!important;
}

.game-card{
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
	background-color: rgba(0,0,0,0.4);
  box-shadow: 0 10px 24px rgba(0,0,0,.5);
	border:1px solid #777;
}
.game-card.no-hover:hover .game-thumb img {
  transform: none;    
}

.game-thumb{ display:block; overflow:hidden; }
.game-thumb img{
  width: 100%;
  display: block;
  transition: transform .35s ease;
}
@media (hover:hover){
  .game-card:hover .game-thumb img{ transform: scale(1.03); }
}

.game-title {
  margin: 20px 16px 0;
  font-size: clamp(14px, 2vw, 18px);
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  min-height: 3.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-btn {
  margin: 25px 30px 30px;
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #19FF00;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  margin-top: 5%;
}
.game-btn.is-disabled{
  background: #444;
  color: #bbb;
  pointer-events: none;
}

@media (max-width:1050px) {
  .golodenline {
	position: relative;
	width: 100%;
	height: 15px;
	margin-bottom: 0;
	background: linear-gradient(90deg,rgba(154, 117, 46, 1) 20%, rgba(240, 217, 131, 1) 50%, rgba(154, 117, 46, 1) 81%);
	z-index: 330;
}
  .game-title {
  margin: 20px 16px 0;
  font-size: clamp(13px, 2vw, 14px);
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  min-height: 3.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .section_ttl2 {
	width: 80%;
	margin: 8% auto;
	margin-bottom: 8%;
}
	.game-btn{
  margin: 25px 15px 30px;
  display: block;
  text-align: center;
  padding: 8px 16px;
  border-radius: 999px;
  background:#19ff00 ;
  color: #000;
  font-weight: 800;
  text-decoration: none;
}
	.section_ttl {
	width: 60%;
	margin: 5% auto;
}
  .game-list {
		border-top:0px solid #fff;
    display: flex;            
    overflow-x: auto; 
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
		 width: 100vw; 
  margin-left: -0rem; 
  padding: 0 1rem;  
		 padding-bottom: 20px; 
  background-clip: content-box;
  }
  .game-card {
    min-width: 55%; 
    scroll-snap-align: start;

    box-shadow: none;     
  }
	  .game-card:last-child {
    margin-right: 60px; 
  }
	.game-list::after {
  content: "";
  flex: 0 0 0.1px; /* 右側の余白分 */
}
	
	.game-list-wrapper {
  position: relative;

}

.overlay-hint {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  pointer-events: none; 
}
.hint-icon {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  opacity: 0;
	 display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;   
}

.hint-icon img {
  width: 60%;
  height: auto;
}
}


.game-list {
  scrollbar-width: thin; 
  scrollbar-color: #19ff00 transparent;
}

.game-list::-webkit-scrollbar {
  height: 6px; 
}

.game-list::-webkit-scrollbar-track {
  background: transparent;
}

.game-list::-webkit-scrollbar-thumb {
  background: #19ff00;   
  border-radius: 3px;
}

.section-after-lineup {
  position: relative;
  color: #fff;
  width: 100%;
  height: auto;
  padding-top: 4%;
  padding-bottom: 6%;
  z-index: 10!important;

  background:
    url(../img/common/03.png) left top / auto repeat fixed,
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) center / cover no-repeat fixed,
    url(../img/main/key_img--back.jpg) center / cover no-repeat fixed;
}

.key_wrap {
	padding:4% 5%;
	border-radius: 20px;
	margin-bottom: 55px;
	border:1px solid #777;
	background: #4d4d4d;
background: linear-gradient(221deg,rgba(77, 77, 77, 0.7) 0%, rgba(0, 0, 0, 1) 100%);
}

.key_ttl {
	border-bottom:1px solid #fff;
	padding-bottom:10px;
	   filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .8));
}


.features {
  display: flex;
  justify-content: space-between;
  gap: 24px;
 
  margin: 20px auto;
  max-width: 1300px;
  padding: 0 0 0px;
}

.feature-box {
  flex: 1; 
  color: #fff;
  text-align: center;

}

.feature-box img {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
	border:1px solid #777;
	
}

.feature-box h3 {
  font-size: 1.2rem;
  margin: 0 0 2px;
  color: #00e066;
}

.feature-box p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.key_subheading {
	margin-top: 1%;
	font-weight: 600;
	font-size: 1.3rem;
text-align: center;
}

@media (max-width: 1050px) {
  
.section-after-lineup {
  position: relative;
  color: #fff;
  width: 100%;
  height: auto;
  padding-top: 10%;
  padding-bottom: 8%;
  z-index: 10!important;
  
 background:
      linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) center / cover no-repeat fixed;
}
  
	.feature-box {
  flex: 1; 
  color: #fff;
  text-align: center;
margin-bottom: 20px;
}
	.key_wrap {
	padding:8% 7% 2% 7%;
	border-radius: 13px;
	margin-top: 25px;
	border:1px solid #777;
	background: #4d4d4d;
 background: linear-gradient(230deg, rgba(77,77,77,0.5) 10%, rgba(0,0,0,1) 30%);
      
}
	.key_ttl {
	border-bottom:1px solid #fff;
	padding-bottom:20px;
}
	.key_subheading {
	margin-top: 4%;
	font-weight: 600;
	font-size: 1.1rem;
    text-align: left;
}

  .features {
    flex-direction: column; 
  }
	.feature-box h3 {
  font-size: 1.6rem;
  margin: 0 0 2px;
  color: #00e066;
}

.feature-box p {
  font-size: 1.0rem;
  line-height: 1.6;
}

}


.key_label {
	position: absolute;
	width: 25%;
	margin-top: -7.5%;
	margin-left: -2%;
}
.key_label_v {
	position: absolute;
	width: 25%;
	margin-top: -23.5vw;
	margin-left: -2%;
}


.visual-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
		background: #4d4d4d;
background: linear-gradient(221deg,rgba(77, 77, 77, 0.8) 0%, rgba(0, 0, 0, 1) 100%);
	padding:4% 5%;
	border-radius: 20px;
	margin-bottom: 55px;
	border:1px solid #777;
}


.visual-img {
  flex: 1 1 70%;
	border:1px solid #777;
	  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .8));
	
}
.visual-img img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-text {
  flex: 1 1 50%;
	  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .8));
  margin-bottom: 5%;
}
.visual-text h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  margin-bottom: 16px;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
.visual-text p {
  font-size: 0.95rem;
  line-height: 1.7;
}


@media (max-width: 1050px) {
  .key_label_v {
	position: absolute;
	width: 50%;
	margin-top: -15%;
	margin-left: -45%;
}
	.key_label {
	position: absolute;
	width:50%;
	margin-top: -15%;
	margin-left: -4%;
}
  .visual-block {
    flex-direction: column; 
    text-align: center;
    padding-top:7%;
    padding-left:6%;
    padding-right:6%;
   background: linear-gradient(230deg, rgba(77,77,77,0.5) 10%, rgba(0,0,0,1) 30%);
    border-radius: 13px;
  }
  .visual-text h2 {
    border-bottom: none; 
  }
  .visual-text h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  margin-bottom: 16px;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
  .visual-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}
}


.overlay {
	position: fixed;
	background-image: url(../img/common/01.png);
	background-repeat: repeat;
	width: 100vw;
	height: 100vh;
	z-index: 101!important;
}



.activeimg {
	opacity: 0;
  transform: translateY(40px);
}


.wire-logo {
  position: fixed;
  top: 0;
  width: 18vw;
  height: 100vh;
  pointer-events: none;
  z-index: 13; 
  opacity: 0.7;
  mix-blend-mode: lighten; 
}

#wire-left {
  left: 0;
  transform: translateY(0);
}

#wire-right {
  right: 0;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .wire-logo {
   display: none;
  }
}

.pagetop {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  pointer-events: auto;
  z-index: 1320!important;
  cursor:pointer; 
}

.pagetop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 背景スタック全体を画面固定。イベントは透過 */
#bg-stack{
  position: fixed;
  inset: 0;
  z-index: 1;          /* 必要に応じて調整。UIより下に置くなら小さめ */
  pointer-events: none;
}

/* 各レイヤー共通（全画面フィル） */
#bg-stack > div{
  position: absolute;
  inset: 0;
}

/* 下：写真（cover / no-repeat / fixed 相当）*/
.bg-photo{
  background: url(../img/main/lineup_img--back.jpg) center / cover no-repeat;
}

/* 中：黒の半透明（linear-gradient 相当）*/
.bg-dim{
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)) center / cover no-repeat;
}

/* 上：ノイズ（repeat / fixed 相当）*/
.bg-noise{
  background: url(../img/common/01.png) left top / auto repeat;
  opacity: 2;  /* 必要なら薄く 0.6 などに調整 */
}



/* Menu code starts here */

#menuToggle
{
  display: block;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 25px;
  left: 28px;
  
  z-index: 11000!important;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #fff;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #10C6F6;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 1px;
  margin-bottom: 5px;
  position: relative;
  
  background: #fff;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}



#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 600%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, 7px);
}


@media screen and (min-width:320px) and (max-width:1050px) {
  .global_btn {
	position: absolute;
	width: 30px;
    right:0px;
	margin-top: 0px;
	z-index: 2500;
	-webkit-filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, .8));
	filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, .8));
}
 #menuToggle span
{
  display: block;
  width: 53px;
  height: 1px;
  margin-bottom: 7px;
  position: relative;
  
  background: #cdcdcd;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 18% 1000%;
}

  #menuToggle input
{
  display: block;
  width: 50px;
  height: 52px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}
 
}



/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #000;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  border-right:1px solid #555;
  border-bottom:1px solid #555;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 30px;
     font-weight: 600;
	font-family: "barlow-condensed", sans-serif;
font-weight: 600;
font-style: normal;
  color:#fff;
}

#menu li label
{
  cursor: pointer;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}



.menu-link {
 font-weight: 600; 
  font-size: 1.5rem;
}

.menuimg {
  position: absolute;
  right:5px;
  margin-top: -14vw;
  width:50%;
  opacity:0.6;
  z-index: 10!important;
}

.menuback {
  position: fixed;
  width: 70px;
  height: 37px;
  background-color: rgba(0,0,0,0.5);
  top:15px;
  left:20px;
  z-index: 500!important;
}
