@charset "UTF-8";
/* ========================================
Foundation
======================================== */
/* ========================================
Reset
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

address {
  font-style: normal;
}

/* ========================================
   Variables
======================================== */
/* Color */
/* Font */
/* Layout */
/* Breakpoint */
/* ========================================
   Mixins
======================================== */
/* 768px以下 */
/* 1024px以下 */
/* 1200px以下 */
/* 1440px以下 */
/* ========================================
   Animation Keyframes
======================================== */
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ========================================
   Scroll Fade
======================================== */
.js-scroll-fade {
  opacity: 0;
  transform: translateY(3vh);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ========================================
Base
======================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  overscroll-behavior-y: none;
}

body {
  position: relative;
  z-index: 0;
  color: #fff;
  background-color: #000;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  overscroll-behavior-y: none;
}

.bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

main {
  overflow-x: hidden;
  overflow-y: visible;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* スクロールでフェードアウト・フェードイン */
.js-fade-section {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.js-fade-section.is-visible {
  opacity: 1;
}

/* ========================================
Layout
======================================== */
/* ----------------------------------------
   Hamburger Menu
---------------------------------------- */
.header-menu-button {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header-menu-button {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10.5px;
    width: 66px;
    height: 60px;
    padding: 0;
    background: #000;
  }
}

.header-menu-button__line {
  display: block;
  width: 31px;
  height: 2px;
  background: #fff;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* メニュー展開時は中央線だけ残す */
.header-menu-button.is-open .header-menu-button__line:first-child {
  opacity: 0;
  transform: translateY(12.5px);
}
.header-menu-button.is-open .header-menu-button__line:nth-child(2) {
  opacity: 1;
}
.header-menu-button.is-open .header-menu-button__line:last-child {
  opacity: 0;
  transform: translateY(-12.5px);
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 999;
}
@media screen and (max-width: 1200px) {
  .header {
    height: 60px;
    background: transparent;
  }
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: clamp(16px, 2vw, 30px);
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding: 0;
  }
}

/* ----------------------------------------
   Lower Page Title Logo
---------------------------------------- */
.header__title {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  height: 100%;
  max-height: 119px;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .header__title {
    position: absolute;
    top: 0;
    left: 0;
    width: 108px;
    height: 60px;
    margin: 0;
  }
}

.header__title-img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .header__title-img {
    width: 100%;
    height: 100%;
    -o-object-position: left top;
       object-position: left top;
  }
}

/* ----------------------------------------
   Menu Panel
---------------------------------------- */
.header-menu-panel {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .header-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    width: 75.64%;
    max-width: 295px;
    height: 100svh;
    padding: 12vh 4% 6vh;
    background: #000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
  .header-menu-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
  }
}
@media screen and (max-width: 768px) {
  .header-menu-panel {
    padding: 12vh 12% 6vh;
  }
}

/* ----------------------------------------
   Navigation
---------------------------------------- */
.header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header--sub-page .header-nav {
  transform: translateX(-68%);
}
@media screen and (max-width: 1200px) {
  .header-nav {
    position: static;
    width: 100%;
    transform: none;
  }
  .header--sub-page .header-nav {
    transform: translateX(0);
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
}
@media screen and (max-width: 1200px) {
  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4vh;
    padding-inline: 0;
  }
}

.header-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: color 0.3s, text-shadow 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__link:hover {
    color: rgba(183, 245, 255, 0.8);
    text-shadow: 0 0 8px rgba(97, 190, 232, 0.8);
  }
}
@media screen and (max-width: 1200px) {
  .header-nav__link {
    align-items: flex-start;
    text-align: left;
  }
}

/* .header-nav__ja {
  font-size: 1.4rem;
  line-height: 1.2;
} */
.header-nav__en {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header-nav__en {
    font-size: 2.4rem;
  }
}

/* ----------------------------------------
   Share
---------------------------------------- */
.header-share {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .header-share {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3vh;
    width: 100%;
    margin: auto 0 0;
  }
}

/* SHAREボタンのみ */
.header-share > .header-share__btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.57vw;
  width: 100px;
  padding: 2px 5px;
  color: #fff;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 50vw;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header-share > .header-share__btn {
    gap: 8%;
    width: 100%;
    aspect-ratio: 216/32;
    max-width: none;
  }
}
.header-share > .header-share__btn {
  /* 右から入る白い背景 */
}
.header-share > .header-share__btn .header-share__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.05em;
}
.header-share > .header-share__btn img {
  flex-shrink: 0;
  width: 1.04vw;
  max-width: 20px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header-share > .header-share__btn img {
    width: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-share > .header-share__btn:hover {
    color: #000;
    background-color: #fff;
  }
  .header-share > .header-share__btn:hover img {
    filter: brightness(0);
  }
}

/* ----------------------------------------
SNS
---------------------------------------- */
.header-sns {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .header-sns {
    gap: 24px;
  }
}

.header-sns .header-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* YouTube */
.header-share__btn-YouTube img {
  width: 35px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header-share__btn-YouTube img:hover {
    transform: scale(0.9);
  }
}

/* X */
.header-share__btn-x img {
  width: 24px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header-share__btn-x img:hover {
    transform: scale(0.9);
  }
}

/* ========================================
   Footer
======================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 40px 0 clamp(24px, 1.8vw, 34px);
  background: #192131;
  transform: translateZ(0);
  /* &::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 10vw;
    background: linear-gradient(180deg,
        rgba(v.$color-bg-navy, 0) 0%,
        v.$color-bg-navy 70%,
        v.$color-bg-navy 100%);
    pointer-events: none;
  } */
}
@media screen and (max-width: 768px) {
  .footer {
    box-sizing: border-box;
    padding: 6.75svh 8.97% 10svh;
    background: #192131;
  }
  .footer::before {
    display: none;
  }
}

.footer__inner {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    width: 100%;
    margin: 0;
  }
}

.footer__main {
  display: flex;
  justify-content: center;
  align-items: center;
  /* 1920px幅で103px */
  gap: 5.365vw;
}
@media screen and (max-width: 768px) {
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 4vh;
  }
}

.footer__logo {
  /* 1920px幅で437px */
  width: 22.76vw;
  max-width: 437px;
  flex-shrink: 0;
  margin-left: -10vw;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 92.5%;
    max-width: none;
    margin-left: 0;
  }
}

.footer__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    display: block;
    width: 100%;
  }
}

/* ----------------------------------------
   Store
---------------------------------------- */
.footer-store {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.08vw, 40px);
}
@media screen and (max-width: 768px) {
  .footer-store {
    gap: 16px;
  }
}

.footer-store__link {
  display: block;
  transition: filter 0.3s, transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-store__link:hover {
    filter: drop-shadow(0 0 5px rgba(97, 190, 232, 0.8));
  }
}

.footer-store__link:first-child {
  width: 164px;
}
@media screen and (max-width: 768px) {
  .footer-store__link:first-child {
    width: 140px;
  }
}

.footer-store__link:last-child {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .footer-store__link:last-child {
    width: 170px;
  }
}

/* ----------------------------------------
   Info
---------------------------------------- */
.footer__info {
  line-height: 2.286;
  font-size: clamp(12px, 0.73vw, 14px);
}
@media screen and (max-width: 768px) {
  .footer__info {
    line-height: 2;
  }
}

.footer__info p {
  margin: 0;
}

/* ----------------------------------------
   Bottom
---------------------------------------- */
.footer__bottom {
  margin-top: 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin-top: 55px;
  }
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 2.08vw, 40px);
}
@media screen and (max-width: 768px) {
  .footer-nav__list {
    flex-direction: column;
    gap: 12px;
  }
}

.footer-nav__link {
  color: #fff;
  transition: opacity 0.3s;
  font-size: clamp(12px, 0.73vw, 14px);
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav__link:hover {
    opacity: 0.7;
  }
}

.footer__copyright {
  margin-top: 12px;
  color: #a3a3a3;
  font-size: clamp(12px, 0.73vw, 14px);
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 46px;
    color: #fff;
    text-align: left;
    margin-bottom: 40px;
  }
}

.footer__copyright small {
  font-size: inherit;
}

/* ========================================
   Sub Page
======================================== */
.body--sub::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100svh;
  background: url("../img/kv-bg.webp") center top/cover no-repeat;
  pointer-events: none;
}

.sub-page {
  position: relative;
  z-index: 0;
  min-height: 67.5vw;
  padding: 9.06vw 0 6vw;
  overflow: hidden;
}
.sub-page::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .sub-page {
    min-height: 100svh;
    padding: 12vh 0 10vh;
  }
}

.sub-page__inner {
  width: 100%;
}

.sub-page__header {
  width: 52.08%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sub-page__header {
    width: 80.51%;
  }
}

.sub-page__title {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sub-page__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

/* ----------------------------------------
   Content
---------------------------------------- */
.sub-page__content {
  box-sizing: border-box;
  width: 59.375%;
  margin: 4.11vw auto 0;
  padding: 4.17vw 4.69vw;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .sub-page__content {
    width: 93.33%;
    margin-top: 4.62vw;
    padding: 9.23vw 7.18vw;
    border-radius: 10px;
  }
}

.sub-page__section + .sub-page__section {
  margin-top: 4.17vw;
}
@media screen and (max-width: 768px) {
  .sub-page__section + .sub-page__section {
    margin-top: 8vh;
  }
}

.sub-page__heading {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.429;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sub-page__heading {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.458;
  }
}

.sub-page__block {
  margin-top: 1.46vw;
}
@media screen and (max-width: 768px) {
  .sub-page__block {
    margin-top: 7.18vw;
  }
}

.sub-page__block + .sub-page__block {
  margin-top: 2.5vw;
}
@media screen and (max-width: 768px) {
  .sub-page__block + .sub-page__block {
    margin-top: 6vh;
  }
}

.sub-page__subheading {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.409;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sub-page__subheading {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.444;
  }
}

.sub-page__text {
  margin: 0.73vw 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: #000;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .sub-page__text {
    margin-top: 4.1vw;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.714;
  }
}

/* ----------------------------------------
   Clauses (項のレイアウト用)
---------------------------------------- */
.sub-page__clauses {
  margin-top: 0.73vw;
}
@media screen and (max-width: 768px) {
  .sub-page__clauses {
    margin-top: 4.1vw;
  }
}

.sub-page__clause + .sub-page__clause {
  margin-top: 1.46vw;
}
@media screen and (max-width: 768px) {
  .sub-page__clause + .sub-page__clause {
    margin-top: 5.13vw;
  }
}

.sub-page__clause .sub-page__text {
  display: grid;
  grid-template-columns: 2.5em minmax(0, 1fr);
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  margin-top: 0;
}

.sub-page__clause-number {
  display: block;
  white-space: nowrap;
}

.sub-page__clause-body {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* ----------------------------------------
   Items (号のレイアウト用)
---------------------------------------- */
.sub-page__items {
  margin-top: 0.73vw;
  padding-left: 2.75em;
}
@media screen and (max-width: 768px) {
  .sub-page__items {
    margin-top: 3.08vw;
    padding-left: 1.5em;
  }
}

.sub-page__item {
  display: grid;
  grid-template-columns: 3em minmax(0, 1fr);
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sub-page__item {
    grid-template-columns: 3.25em minmax(0, 1fr);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.714;
  }
}

.sub-page__item + .sub-page__item {
  margin-top: 0.4em;
}

.sub-page__item-number {
  display: block;
  white-space: nowrap;
}

.sub-page__item-body {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* ----------------------------------------
   List
---------------------------------------- */
.sub-page__list {
  margin: 0.73vw 0 0;
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .sub-page__list {
    margin-top: 4.1vw;
  }
}

.sub-page__list li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: #000;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .sub-page__list li {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.714;
  }
}

.sub-page__list li + li {
  margin-top: 0.4em;
}

/* ----------------------------------------
   Text Link
---------------------------------------- */
.sub-page__text a,
.sub-page__list a {
  color: inherit;
  text-decoration: underline;
  word-break: break-all;
}
.sub-page__text a:hover,
.sub-page__list a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
   Spacing
---------------------------------------- */
.sub-page__heading + .sub-page__text,
.sub-page__heading + .sub-page__list,
.sub-page__heading + .sub-page__subheading {
  margin-top: 0.73vw;
}
@media screen and (max-width: 768px) {
  .sub-page__heading + .sub-page__text,
  .sub-page__heading + .sub-page__list,
  .sub-page__heading + .sub-page__subheading {
    margin-top: 4.1vw;
  }
}

.sub-page__subheading + .sub-page__text,
.sub-page__subheading + .sub-page__list {
  margin-top: 0.73vw;
}
@media screen and (max-width: 768px) {
  .sub-page__subheading + .sub-page__text,
  .sub-page__subheading + .sub-page__list {
    margin-top: 4.1vw;
  }
}

/* ----------------------------------------
   Group (カテゴリ見出しとリストの囲い)
---------------------------------------- */
.sub-page__group {
  margin-top: 1.46vw;
}
@media screen and (max-width: 768px) {
  .sub-page__group {
    margin-top: 5.13vw;
  }
}

.sub-page__group + .sub-page__group {
  margin-top: 1.46vw;
}
@media screen and (max-width: 768px) {
  .sub-page__group + .sub-page__group {
    margin-top: 5.13vw;
  }
}

.sub-page__group-heading {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sub-page__group-heading {
    font-size: 1.4rem;
    line-height: 1.714;
  }
}

.sub-page__group-heading + .sub-page__items {
  margin-top: 0.36vw;
}
@media screen and (max-width: 768px) {
  .sub-page__group-heading + .sub-page__items {
    margin-top: 2.05vw;
  }
}

/* ----------------------------------------
   Document Footer
---------------------------------------- */
.sub-page__document-footer {
  margin-top: 4.17vw;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .sub-page__document-footer {
    margin-top: 8vh;
  }
}
.sub-page__document-footer .sub-page__text {
  margin-top: 0;
  text-align: right;
}

/* ========================================
Component
======================================== */
/* ========================================
Button
======================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------
   Page Top
---------------------------------------- */
.page-top {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-top {
    position: fixed;
    right: clamp(16px, 1.56vw, 30px);
    bottom: clamp(16px, 2.87vw, 31px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(96px, 6.87vw, 132px);
    aspect-ratio: 132/138;
    background: url("../../assets/images/pagetop-bg.webp") center center/contain no-repeat;
    text-align: center;
    color: #fff;
    line-height: 1.75;
    letter-spacing: 0;
    text-decoration: none;
    transition: filter 0.3s, transform 0.3s, background-image 0.3s;
    font-size: clamp(12px, 0.83vw, 16px);
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .page-top:hover {
    background-image: url("../../assets/images/pagetop-bg-h.webp");
    transform: translateY(-4px);
  }
}

/* ========================================
Section Title
======================================== */
/* ========================================
Swiper
======================================== */
.swiper {
  overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

/* ========================================
   Modal
======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal__content {
  position: absolute;
  top: 33.15vh;
  left: 50%;
  z-index: 1;
  width: 37.5%;
  aspect-ratio: 16/9;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .modal__content {
    top: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
  }
}

.modal.is-open .modal__content {
  opacity: 1;
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: -3.24vh;
  right: 0;
  z-index: 2;
  width: 1.0417vw;
  aspect-ratio: 1;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.modal__close img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .modal__close {
    top: -5vh;
    width: 5.13vw;
  }
}

.modal__body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.modal__video {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -o-object-fit: contain;
     object-fit: contain;
}

/* モーダル表示中はページをスクロールさせない */
body.is-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__content {
    transition: none;
  }
}
/* ========================================
Project
======================================== */
/* ========================================
   First View
======================================== */
.fv {
  position: relative;
  overflow: visible;
}
.fv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 413px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}
.fv::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22%;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100.13vw;
    /* 透明から黒へ。  multiplyを使わず、通常のレイヤーとして重ねる。 */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 20%, #000 55%, rgb(0, 0, 0) 82%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    z-index: 4;
  }
}

.fv__inner {
  position: relative;
  min-height: 67.5vw;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    min-height: 850px;
  }
}

/* ----------------------------------------
   タイトル
---------------------------------------- */
.fv__title {
  position: absolute;
  top: 27.315vh;
  left: 27.396%;
  z-index: 998;
  width: 45.208%;
  margin: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .fv__title {
    top: 32.109svh;
    left: 3.077%;
    z-index: 998;
    width: 93.846%;
  }
}

.fv__title-img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv__title-img {
    aspect-ratio: 198/110;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* ----------------------------------------
   事前登録近日開始
---------------------------------------- */
.fv__comingSoon {
  position: absolute;
  top: calc(27.315vh + 25.1175648% + 150px);
  left: 50%;
  z-index: 998;
  width: 32%;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.fv__comingSoon .fv__comingSoon-img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv__comingSoon {
    top: calc(32.109svh + 198px);
    left: 50%;
    width: calc(100% - 66px);
    max-width: 325px;
    height: 97px;
    transform: translateX(-50%);
  }
}

/* ----------------------------------------
   キャッチコピー
---------------------------------------- */
.fv__catch {
  position: absolute;
  top: 15%;
  right: clamp(16px, 8vw, 180px);
  width: clamp(100px, 9vw, 174px);
}
@media screen and (max-width: 768px) {
  .fv__catch {
    width: 80px;
  }
}

/* ----------------------------------------
  Fixed Store
---------------------------------------- */
.fixed-store {
  /* PC：画面右下に固定 */
  /* 
  //PC：事前登録開始後～コメント解除
  */
  position: fixed;
  right: 0.94vw;
  bottom: -2.31vh;
  z-index: 1001;
  width: min(19.06vw, 366px);
  aspect-ratio: 366/262;
  background: url("../img/store-bg.png") center/contain no-repeat;
  /* 
  //PC：事前登録開始前
  */
  /* SP：FV内の絶対位置に配置 */
}
@media screen and (max-width: 768px) {
  .fixed-store {
    /*
      SP初期位置
      comingSoon:
      top 415px + height 97px = 512px
      512 ÷ 844 = 60.664svh
      360 ÷ 390 = 92.308%
    */
    position: absolute;
    top: calc(32.109svh + 198px + 97px + 20px);
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: 998;
    display: block;
    width: 92.308%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 360/90;
    transform: translateX(-50%);
    background: url("../img/store-bg-sp.png") center/100% 100% no-repeat;
    transition: opacity 0.3s ease, transform 0.3s ease;
    /*
    JavaScriptで付与される固定クラス
    */
    /* JSでスクロール後に付与 */
  }
  .fixed-store.is-fixed {
    position: fixed;
    top: auto;
    right: auto;
    bottom: calc(2svh + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 今すぐ事前登録 */
.fixed-store__title {
  position: absolute;
  top: 30.31%;
  left: 13.66%;
  width: 72.4%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fixed-store__title {
    display: none;
  }
}

/* ストアバッジ */
.fixed-store__badges {
  position: absolute;
  top: 53.21%;
  left: 6.01%;
  display: flex;
  align-items: center;
  gap: 3.28%;
  width: 87.7%;
}
@media screen and (max-width: 768px) {
  .fixed-store__badges {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 87.7%;
    margin: 0;
    gap: 4%;
    top: 21%;
  }
}

.fixed-store__badge {
  display: block;
  flex-shrink: 0;
  transition: filter 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .fixed-store__badge:hover {
    filter: drop-shadow(0 0 5px rgba(97, 190, 232, 0.8));
  }
}
.fixed-store__badge {
  /* App Store */
}
.fixed-store__badge:first-child {
  width: 43.44%;
}
@media screen and (max-width: 768px) {
  .fixed-store__badge:first-child {
    width: 42.5%;
  }
}
.fixed-store__badge {
  /* Google Play */
}
.fixed-store__badge:last-child {
  width: 53.13%;
}
@media screen and (max-width: 768px) {
  .fixed-store__badge:last-child {
    width: 53.5%;
  }
}
.fixed-store__badge img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fixed-store__badge img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 768px) {
  .fixed-store__badge {
    flex-shrink: 0;
  }
}

/* WEBストアバナー */
.fixed-store__banner {
  position: absolute;
  top: 58.78%;
  left: 6.01%;
  width: 87.43%;
  transition: filter 0.3s, transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .fixed-store__banner:hover {
    filter: drop-shadow(0 0 5px rgba(97, 190, 232, 0.8));
  }
}
@media screen and (max-width: 768px) {
  .fixed-store__banner {
    position: static;
    order: 1;
    width: 82.32%;
    margin: 0;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .fixed-store__banner .fixed-banner__link {
    display: block;
    width: 100%;
  }
}
.fixed-store__banner img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fixed-store__banner img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 256/68;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* ----------------------------------------
   リード文
---------------------------------------- */
.fv__lead {
  position: absolute;
  top: clamp(980px, 67.5vw, 1300px);
  left: 50%;
  transform: translateX(-50%);
  width: min(756px, 100% - 32px);
  text-align: center;
  font-size: clamp(2.8rem, 2.08vw, 4rem);
  font-weight: 600;
  line-height: 2;
  white-space: nowrap;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .fv__lead {
    top: max(99.17svh, 67.5vw);
  }
}
@media screen and (max-width: 1024px) {
  .fv__lead {
    top: max(73svh, 67.5vw);
  }
}
@media screen and (max-width: 768px) {
  .fv__lead {
    /* 390px幅で260px 260 / 390 = 66.67% */
    width: 66.67%;
    /* FVの下端付近に配置。 デザイン上はtop: 837pxなので、 844px高に対して約99.17% */
    top: calc(59.17svh + 337.6px + 3svh);
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
    z-index: 2;
  }
}

/* ========================================
   Campaign
======================================== */
.campaign {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: rgba(0, 0, 0, 0.8);
  padding-top: clamp(120px, 12vh, 186px);
}
@media screen and (max-width: 768px) {
  .campaign {
    padding-top: 100px;
    z-index: 3;
  }
}

/* .campaign::before {
    content: "";

    position: absolute;
    inset: 0;

} */
.campaign__inner {
  position: relative;
  overflow: visible;
  /* 1920px時、背景の四角い部分だけの高さ */
  height: clamp(540px, 44.8vw, 860px);
}

.campaign__image {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.campaign__img-pc {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .campaign__img-pc {
    display: none;
  }
}

.campaign__img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .campaign__img-sp {
    display: block;
  }
}

/* ========================================
   Campaign / Introduction Gradient
======================================== */
.campaign-introduction-gradient {
  display: none;
}
@media screen and (max-width: 768px) {
  .campaign-introduction-gradient {
    position: absolute;
    z-index: 0;
    display: block;
    width: 100%;
    height: min(55.38vw, 216px);
    margin-top: max(43.31vw, 41%);
    margin-bottom: max(-27.69vw, -108px);
    background: linear-gradient(180deg, rgba(24, 39, 64, 0) 0%, #182740 61%, rgba(24, 39, 64, 0) 100%);
    pointer-events: none;
  }
}

/* ========================================
   Introduction
======================================== */
.introduction {
  position: relative;
  width: 100%;
  min-height: max(150svh, 56.46vw);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../img/bg-introduction.webp") center center/cover no-repeat;
  z-index: -1;
}
.introduction::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 45.73%;
  background: rgba(10, 15, 38, 0.7);
}
.introduction {
  /* 1440px以下 */
}
@media screen and (max-width: 1440px) {
  .introduction::before {
    width: 52%;
  }
}
.introduction {
  /* 1200px以下 */
}
@media screen and (max-width: 1200px) {
  .introduction::before {
    width: 58%;
  }
}
.introduction {
  /* 1024px以下 */
}
@media screen and (max-width: 1024px) {
  .introduction::before {
    width: 64%;
  }
}
@media screen and (max-width: 768px) {
  .introduction {
    margin-top: 77%;
    min-height: 100svh;
    /* 右寄りの部分を表示 */
    background-position: 65% center;
    background-size: cover;
  }
  .introduction::before {
    width: 100%;
  }
}
.introduction::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: linear-gradient(180deg, #182740 0%, #182740 20%, rgba(24, 39, 64, 0) 100%), linear-gradient(180deg, rgba(24, 39, 64, 0) 0%, #182740 50%, #182740 100%);
  background-position: center top, center bottom;
  background-size: 100% 63.56%, 100% 36.44%;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .introduction::after {
    /* SPは下グラデーションのみ */
    background-image: linear-gradient(transparent, transparent), linear-gradient(180deg, rgba(24, 39, 64, 0) 0%, #182740 50%, #182740 100%);
    background-position: center top, center bottom;
    background-size: 100% 63.56%, 100% 36.44%;
  }
}

.introduction__inner {
  position: relative;
  width: 45.73vw;
  z-index: 3;
  /* 1440px以下 */
}
@media screen and (max-width: 1440px) {
  .introduction__inner {
    width: 52vw;
  }
}
.introduction__inner {
  /* 1200px以下 */
}
@media screen and (max-width: 1200px) {
  .introduction__inner {
    width: 58vw;
  }
}
.introduction__inner {
  /* 1024px以下 */
}
@media screen and (max-width: 1024px) {
  .introduction__inner {
    width: 64vw;
  }
}
@media screen and (max-width: 768px) {
  .introduction__inner {
    width: 100%;
  }
}

.introduction__body {
  width: 65.6%;
  margin-left: 15.03%;
  /* 1440px以下 */
}
@media screen and (max-width: 1440px) {
  .introduction__body {
    width: 80%;
    margin-left: 10%;
  }
}
.introduction__body {
  /* 1200px以下 */
}
@media screen and (max-width: 1200px) {
  .introduction__body {
    width: 84%;
    margin-left: 8%;
  }
}
.introduction__body {
  /* 1024px以下 */
}
@media screen and (max-width: 1024px) {
  .introduction__body {
    width: 88%;
    margin-left: 6%;
  }
}
@media screen and (max-width: 768px) {
  .introduction__body {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-inline: 10.256%;
  }
}

.introduction .section-title {
  width: 52.08%;
}
@media screen and (max-width: 768px) {
  .introduction .section-title {
    /* 162 / 310 */
    width: 52.26%;
  }
}

.introduction .section-title__img,
.introduction__copy-img {
  display: block;
}

.introduction__copy {
  margin-top: 72.5px;
}
@media screen and (max-width: 768px) {
  .introduction__copy {
    /*
      見出し下端 1941px
      コピー上端 2001px
      差分60px
      60 / 310 = 19.35%
    */
    margin-top: 19.35%;
  }
}

.introduction__copy-img {
  width: 91.67%;
}
@media screen and (max-width: 768px) {
  .introduction__copy-img {
    /* 298 / 310 */
    width: 96.13%;
  }
}

.introduction__content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: min(541px, 100%);
  margin: 63px auto 0;
  font-size: clamp(1.6rem, 1.13vw, 2rem);
  line-height: 2.22;
  white-space: nowrap;
  /* 1440px以下 */
}
@media screen and (max-width: 1440px) {
  .introduction__content {
    /*
    * 幅が足りない場合に折り返す。
    * HTML内のbrによる改行も維持される。
    */
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
.introduction__content {
  /* 1200px以下 */
}
@media screen and (max-width: 1200px) {
  .introduction__content {
    gap: 1.8em;
    line-height: 2.1;
  }
}
.introduction__content {
  /* 1024px以下 */
}
@media screen and (max-width: 1024px) {
  .introduction__content {
    width: 100%;
    margin-top: 12.9%;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    white-space: normal;
    overflow-wrap: normal;
  }
}
@media screen and (max-width: 768px) {
  .introduction__content {
    width: 100%;
    /*
      コピー下端 2025px
      本文上端 2065px
      差分40px
      40 / 310 = 12.9%
    */
    margin-top: 12.9%;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    white-space: normal;
  }
}

.introduction__content p {
  margin: 0;
}

/* ========================================
   Character / Prologue Gradient
======================================== */
.character-prologue-gradient {
  --prologue-gradient-y: 0px;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(320px, 30vw, 560px);
  margin-top: clamp(-280px, -15vw, -160px);
  margin-bottom: clamp(-280px, -15vw, -160px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 22%, #000 38%, #182740 68%, rgba(24, 39, 64, 0.75) 82%, rgba(24, 39, 64, 0) 100%);
  transform: translate3d(0, var(--prologue-gradient-y), 0);
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
  /* 1024px以下 */
}
@media screen and (max-width: 1024px) {
  .character-prologue-gradient {
    height: clamp(300px, 30vw, 560px);
  }
}
@media screen and (max-width: 768px) {
  .character-prologue-gradient {
    z-index: 1;
    height: clamp(400px, 62svh, 540px);
    margin-top: clamp(-270px, -31svh, -200px);
    margin-bottom: clamp(-270px, -31svh, -200px);
  }
}

/* ========================================
   Prologue Outer Section
======================================== */
.prologue {
  position: relative;
  width: 100%;
  min-height: 141svh;
  overflow: hidden;
  padding: 20vh 0 0;
  background: #0a0f26;
}
@media screen and (max-width: 768px) {
  .prologue {
    min-height: auto;
    padding: 11vh 0 0;
  }
}

/* ========================================
   Prologue Background (Parallax Layer)
======================================== */
.prologue__bg {
  --prologue-bg-y: 0px;
  position: absolute;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  top: 70px;
  height: calc(90% - 20px);
  background: url("../img/bg-prologue.webp") center top/cover no-repeat;
  transform: translate3d(0, var(--prologue-bg-y), 0);
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
  /* 1440px以下 */
}
@media screen and (max-width: 1440px) {
  .prologue__bg {
    top: 60px;
    height: calc(90% + 0px);
    background-position: 82% top;
  }
}
.prologue__bg {
  /* 1200px以下 */
}
@media screen and (max-width: 1200px) {
  .prologue__bg {
    background-position: 62% top;
  }
}
.prologue__bg {
  /* 1024px以下 */
}
@media screen and (max-width: 1024px) {
  .prologue__bg {
    background-position: 52% top;
  }
}
@media screen and (max-width: 768px) {
  .prologue__bg {
    top: 100px;
    height: calc(74% + 280px);
    background-position: 42% bottom;
  }
}

/* ========================================
   Prologue Content Inner
======================================== */
.prologue__inner {
  position: relative;
  z-index: 2;
  width: 47%;
  margin-left: 48%;
  padding-block: 7vh;
}
@media screen and (max-width: 768px) {
  .prologue__inner {
    position: relative;
    box-sizing: border-box;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 10vh 8.205%;
  }
}

.prologue__title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4.9%;
  width: 50.72%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .prologue__title {
    width: 36.25%;
    margin-left: 2.5%;
    gap: 0;
  }
}

.prologue .section-title__img {
  display: block;
  flex-shrink: 0;
  width: 61%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .prologue .section-title__img {
    width: 100%;
  }
}

.prologue__title-ja {
  flex-shrink: 0;
  font-size: clamp(1.6rem, 1.04vw, 2rem);
  font-weight: 600;
  line-height: 2;
  white-space: nowrap;
}

.prologue__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2vh;
  width: 100%;
  margin-top: 4.5vh;
  font-size: clamp(1.6rem, 1.041667vw, 2rem);
  font-weight: 500;
  line-height: 2.22;
}
@media screen and (max-width: 768px) {
  .prologue__content {
    margin-top: 19.49vw;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.prologue__paragraph {
  margin: 0;
}

/* ========================================
   Accessibility (Reduced Motion)
======================================== */
@media (prefers-reduced-motion: reduce) {
  .prologue__bg,
  .character-prologue-gradient {
    transform: none;
    will-change: auto;
  }
}
/* ========================================
   Character
======================================== */
.character {
  position: relative;
  /* z-index: 1; ← 親要素のz-indexを削除してグループ化を解除 */
  overflow: hidden;
  background: #000;
  margin-top: -1px;
}

/* ----------------------------------------
   導入エリア
---------------------------------------- */
.character-intro {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("../img/character-bg1.webp") center top/1920px 420px no-repeat;
}
@media screen and (max-width: 768px) {
  .character-intro {
    height: 72.05vw;
    /*
      SPでは元画像の左側を表示する。
      390px幅のとき約281pxの高さ。
    */
    background-position: left top;
    background-size: auto 100%;
  }
}

/* ----------------------------------------
   テキスト
---------------------------------------- */
.character-intro__text {
  position: absolute;
  top: clamp(48px, 4.22vw, 81px);
  left: clamp(32px, 5.16vw, 99px);
  width: min(30vw, 576px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .character-intro__text {
    top: 12.46%;
    left: 10.256%;
    width: 79.488%;
  }
}

.character__title {
  width: clamp(180px, 12.45vw, 239px);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .character__title {
    width: 41.61%;
  }
}

.character__copy {
  width: clamp(260px, 20.52vw, 394px);
  margin-top: clamp(32px, 4.43vw, 80px);
}
@media screen and (max-width: 768px) {
  .character__copy {
    width: 84.84%;
    margin-top: 10.97%;
  }
}

.character__copy-img {
  display: block;
  width: 100%;
  height: auto;
}

.character__lead {
  width: clamp(320px, 30vw, 576px);
  margin-top: clamp(24px, 2.083vw, 40px);
  line-height: 2;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
}

.character__lead span {
  color: #C3BD8F;
}

/* ----------------------------------------
   サムネイルスライダー
---------------------------------------- */
.character-thumb {
  position: absolute;
  right: 12.5vw;
  z-index: 3;
  top: 21.43%;
  left: 44.63%;
  height: 60.48%;
}

.character-thumb__slider {
  width: 100%;
  height: 254px;
  overflow: hidden;
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%);
}

.character-thumb__list {
  display: flex;
  align-items: center;
}

.character-thumb__item {
  flex-shrink: 0;
  width: 10.26vw;
  max-width: 197px;
  aspect-ratio: 197/254;
  /* JSで付与される両端クラス。確実に暗くするためスライド全体に指定 */
}
.character-thumb__item.is-edge {
  filter: brightness(0.45);
}

.character-thumb__button {
  display: block;
  padding: 15px;
  transition: filter 0.3s;
  width: 100%;
  height: 100%;
}
.character-thumb__button .character-thumb__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s;
}
.character-thumb__button.is-active {
  filter: drop-shadow(0 0 10px rgba(97, 190, 232, 0.65));
}
.character-thumb__button {
  /* ホバー時のスタイル */
}
@media (hover: hover) and (pointer: fine) {
  .character-thumb__button:hover {
    filter: drop-shadow(0 0 6px rgba(97, 190, 232, 0.55));
    /* 少しだけ拡大 */
  }
}

/* ----------------------------------------
   前後ボタン
---------------------------------------- */
.character-thumb__prev,
.character-thumb__next {
  position: absolute;
  top: 93px;
  z-index: 5;
  width: 40px;
  height: 67px;
  padding: 0;
  transition: filter 0.3s, transform 0.3s;
}
.character-thumb__prev img,
.character-thumb__next img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.character-thumb__prev {
  left: 78px;
}

.character-thumb__next {
  right: 78px;
}

/* ----------------------------------------
   SPスライダー
---------------------------------------- */
@media screen and (max-width: 768px) {
  .character-thumb {
    top: 50.18%;
    right: 0;
    left: 0;
    width: 100%;
    height: 25.9vw;
  }
  .character-thumb__slider {
    width: 90%;
    height: 100%;
    margin-inline: auto;
    overflow: hidden;
  }
  .character-thumb__list {
    align-items: center;
    height: 100%;
  }
  .character-thumb__item {
    flex-shrink: 0;
    /* 390px幅で78px */
    width: 20vw;
    max-width: none;
    /* 78 × 101 の比率 */
    aspect-ratio: 78/101;
  }
  .character-thumb__button {
    width: 100%;
    height: 100%;
    /* 15pxあるとサムネ画像が小さくなる */
    padding: 0;
  }
  .character-thumb__img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .character-thumb__prev,
  .character-thumb__next {
    top: 50%;
    /* 390px幅で25 × 42px */
    width: 6.41vw;
    height: 10.77vw;
    padding: 0;
    transform: translateY(-50%);
  }
  .character-thumb__prev {
    /* 390px幅で左44px */
    left: 11.28%;
  }
  .character-thumb__next {
    right: 11.28%;
  }
}
/* ----------------------------------------
   キャラクター表示背景
---------------------------------------- */
.character-stage {
  position: relative;
  overflow: hidden;
  min-height: clamp(820px, 61vw, 1171px);
  padding: clamp(80px, 6vw, 120px) 0 clamp(80px, 7vw, 140px);
}
@media screen and (max-width: 768px) {
  .character-stage {
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
    padding: 0 0 10vw;
    /* ← SPの下部余白を少し広げてグラデーションとの余白を確保 */
    overflow: visible;
  }
}

.character-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/character-bg2.webp") center center/cover no-repeat;
  pointer-events: none;
}

.character-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ----------------------------------------
   キャラクター表示エリア
---------------------------------------- */
.character-view {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
  /* --- 読み込み状態の切り替え --- */
}
.character-view.is-loading .character-view__spine,
.character-view.is-loading .character-view__body {
  opacity: 0;
}
.character-view.is-loading .character-view__image::after {
  opacity: 1;
}
.character-view.is-loaded .character-view__spine,
.character-view.is-loaded .character-view__body {
  opacity: 1;
}
.character-view {
  /* 1024px以下 */
}
@media screen and (max-width: 768px) {
  .character-view {
    flex-direction: column;
    gap: 4vh;
    width: 100%;
    margin-top: 0;
  }
}
.character-view {
  /* --- キャラクター画像枠 --- */
}
.character-view__image {
  position: relative;
  flex: 1;
  min-height: clamp(560px, 44.5vw, 855px);
  overflow: visible;
  isolation: isolate;
  /* 読込中ローダー */
}
.character-view__image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 32px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: character-loading 0.8s linear infinite;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 768px) {
  .character-view__image {
    flex: none;
    width: 100%;
    height: 122.05vw;
    min-height: 0;
  }
}
.character-view {
  /* --- 属性背景 --- */
}
.character-view__bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(300px, 25vw, 481px);
  aspect-ratio: 481/855;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}
@media screen and (max-width: 768px) {
  .character-view__bg {
    top: 0;
    bottom: auto;
    width: 68.46%;
    height: auto;
    aspect-ratio: 267/476;
    background-position: center;
    background-size: contain;
  }
}
.character-view {
  /* --- Spineアニメーション枠 --- */
}
.character-view__spine {
  position: absolute;
  left: 50%;
  bottom: var(--spine-bottom, 0px);
  z-index: 2;
  width: var(--spine-width, 100%);
  height: var(--spine-height, 855px);
  transform: translateX(-50%) scale(var(--spine-responsive-scale, 1));
  transform-origin: center bottom;
  overflow: visible;
  opacity: 1;
  transition: opacity 0.35s ease;
}
@media screen and (max-width: 768px) {
  .character-view__spine {
    top: auto;
    bottom: var(--spine-bottom-sp, 0);
    width: var(--spine-width-sp, 100%);
    height: var(--spine-height-sp, 100%);
    transform: translateX(-50%) scale(1);
  }
}
.character-view {
  /* --- 前後ボタン --- */
}
.character-view__prev, .character-view__next {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: block;
  width: 2.083vw;
  max-width: 40px;
  aspect-ratio: 40/66;
  padding: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .character-view__prev, .character-view__next {
    top: 25%;
    width: 6.41%;
  }
  .character-view__prev img, .character-view__next img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.character-view__prev {
  left: calc((100vw - 100%) / -2 + 5.208vw);
}
@media screen and (max-width: 768px) {
  .character-view__prev {
    left: 5%;
  }
}
.character-view__next {
  right: calc((100vw - 100%) / -2 + 5.208vw);
}
@media screen and (max-width: 768px) {
  .character-view__next {
    right: 5%;
  }
}
.character-view {
  /* ----------------------------------------
     キャラクタープロフィール
  ---------------------------------------- */
}
.character-view__body {
  flex: none;
  width: min(28.59vw, 549px);
  min-height: 0;
  margin-right: 4%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.35s ease;
  /* 1440px以下 */
}
@media screen and (max-width: 1440px) {
  .character-view__body {
    margin-right: 10%;
  }
}
.character-view__body {
  /* 1200px以下 */
}
@media screen and (max-width: 1200px) {
  .character-view__body {
    width: min(34vw, 549px);
  }
}
@media screen and (max-width: 768px) {
  .character-view__body {
    box-sizing: border-box;
    width: 83.59%;
    min-width: 0;
    margin-inline: auto;
    padding: 0;
    overflow: visible;
  }
}

/* --- ローダーアニメーション定義 --- */
@keyframes character-loading {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* --- アニメーション視覚効果の低減設定 --- */
@media (prefers-reduced-motion: reduce) {
  .character-view__spine,
  .character-view__body,
  .character-view__bg {
    transition: none;
  }
  .character-view__image::after {
    animation: none;
  }
}
.character-view__wrap {
  display: block;
}

.character-view__name {
  width: 100%;
  margin: 0;
  font-size: clamp(3.6rem, 2.75vw, 6rem);
  font-weight: 600;
  line-height: 1.433;
  color: #C4DFFF;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .character-view__name {
    width: 100%;
    font-size: clamp(3.2rem, 2.75vw, 6rem);
    min-width: 0;
    line-height: 1.4;
    text-align: center;
    overflow-wrap: anywhere;
  }
}

.character-view__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0.42vw;
  width: 100%;
  margin-top: 2.6vw;
}
@media screen and (max-width: 768px) {
  .character-view__specs {
    grid-template-columns: 1fr;
    row-gap: 1.5vw;
    margin-top: 6vw;
  }
}

.character-view__spec {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  height: 1.72vw;
  min-height: 33px;
}
@media screen and (max-width: 768px) {
  .character-view__spec {
    height: 8.46vw;
    min-height: 0;
  }
}

.character-view__label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44.09%;
  min-width: 0;
  height: 100%;
  margin-right: -8%;
  background: #fff;
  border: 1px solid #fff;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.77;
  text-align: center;
  color: #182740;
}
@media screen and (max-width: 768px) {
  .character-view__label {
    font-size: 1.1rem;
  }
}

.character-view__value {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63.44%;
  height: 100%;
  padding-left: 2%;
  border: 0;
  background: #fff;
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.44;
  text-align: center;
  color: #fff;
  /* 内側の背景 */
}
.character-view__value::before {
  content: "";
  position: absolute;
  z-index: -1;
  /*
    白い外枠を1px程度残す
  */
  inset: 1px;
  background: #182740;
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%);
}
.character-view__value {
  /* 1200px以下 */
}
@media screen and (max-width: 1200px) {
  .character-view__value {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .character-view__value {
    font-size: 1.2rem;
  }
}

.character-view__value--icon {
  padding-left: 2%;
}

.character-view__icon {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1.3vw, 25px);
  height: auto;
  aspect-ratio: 25/24;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .character-view__icon {
    width: 6.41vw;
    max-width: 25px;
    height: auto;
    padding: 0;
  }
}

.character-view__text {
  box-sizing: border-box;
  width: 100%;
  min-height: 9.64vw;
  margin: 3.28vw 0 0;
  padding: 1.72vw 1.61vw;
  background: rgba(30, 39, 53, 0.51);
  border: 1px solid #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .character-view__text {
    width: 100%;
    min-width: 0;
    min-height: auto;
    height: auto;
    margin-top: 6vw;
    padding: 5vw 4.5%;
    font-size: 1.4rem;
    overflow: visible;
    overflow-wrap: anywhere;
  }
}

/* ========================================
Game System
======================================== */
.system {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 59.375vw;
  overflow: hidden;
}
.system::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  /* $color-bg-navyを不透明度61%で重ねる */
  background: rgba(25, 33, 49, 0.41);
  /* XDの背景ぼかし「量：17」相当 */
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .system {
    min-height: 100svh;
  }
}

.system__title {
  position: relative;
  z-index: 3;
  width: 9.375%;
  margin: 0;
  padding-top: 6.61%;
  margin-left: 16.51%;
}
.system__title .section-title__img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .system__title {
    width: 38%;
    margin-left: 10.256%;
    padding-top: 10vh;
  }
}

/* ----------------------------------------
   Slider
---------------------------------------- */
.system-slider {
  position: relative;
  width: 100%;
  min-height: 34.43vw;
  margin-top: 2.34vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .system-slider {
    min-height: 123.08vw;
    margin-top: 8vh;
  }
}

.system-slider__swiper {
  position: relative;
  width: 100vw;
  height: 34.43vw;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .system-slider__swiper {
    height: 123.08vw;
  }
}

.system-slider__list {
  align-items: center;
}

/* ----------------------------------------
   Slide
---------------------------------------- */
/* 中央カードの基準サイズ */
.system-slider__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 1920px幅で372px */
  width: 19.375vw;
  /* 372 × 661 */
  aspect-ratio: 372/661;
  height: auto;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .system-slider__slide {
    width: 59.23vw;
    aspect-ratio: 219/389;
  }
}

.system-slider__card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  isolation: isolate;
  transform: scale(var(--system-slide-scale, 1));
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .system-slider__card {
    transform: scale(0.7);
  }
}

.system-slider__slide.swiper-slide-active {
  z-index: 5;
}
.system-slider__slide.swiper-slide-active .system-slider__card {
  transform: scale(1);
}

.system-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
  中央以外を暗くするレイヤー。
  opacityの値はsystem.jsから変更する。
*/
.system-slider__card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #000;
  border-radius: inherit;
  opacity: var(--system-slide-darkness, 0);
  pointer-events: none;
}

/* 中央画像を前面へ */
.system-slider__slide.swiper-slide-active {
  z-index: 5;
}

/* ----------------------------------------
   Navigation
---------------------------------------- */
.system-slider__prev,
.system-slider__next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 2.97vw;
  aspect-ratio: 57/95;
  padding: 0;
  transform: translateY(-50%);
}
.system-slider__prev img,
.system-slider__next img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .system-slider__prev,
  .system-slider__next {
    width: 8.5%;
  }
}

.system-slider__prev {
  left: 5.573%;
}
@media screen and (max-width: 768px) {
  .system-slider__prev {
    left: 7%;
  }
}

.system-slider__next {
  right: 5.573%;
}
@media screen and (max-width: 768px) {
  .system-slider__next {
    right: 7%;
  }
}

/* ========================================
Utility
======================================== */
/* ========================================
   Utility
======================================== */
/* ----------------------------------------
   Display
---------------------------------------- */
.u-hidden-pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-hidden-pc {
    display: block;
  }
}

.u-hidden-sp {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

/* ----------------------------------------
   Break
---------------------------------------- */
.spBr {
  display: none;
}
@media screen and (max-width: 768px) {
  .spBr {
    display: block;
  }
}

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

/* ----------------------------------------
   Text Align
---------------------------------------- */
.u-ta-center {
  text-align: center;
}

.u-ta-left {
  text-align: left;
}

.u-ta-right {
  text-align: right;
}

/* ----------------------------------------
   Margin
---------------------------------------- */
.u-mx-auto {
  margin-inline: auto;
}/*# sourceMappingURL=style.css.map */