* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;

  color: #222;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}




.section {
  min-height: 70vh;

  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section h2 {
  margin: 0 0 16px;

  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.08em;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  padding: 70px 32px 42px;

  background: #243746;

  color: #ffffff;
}

.site-footer__inner {
  width: min(1100px, 100%);

  margin: 0 auto;

  text-align: center;
}

.site-footer__logo {
  display: block;

  width: auto;
  height: 70px;

  margin: 0 auto 36px;

  object-fit: contain;
}

.footer-nav {
  display: flex;

  justify-content: center;
  flex-wrap: wrap;

  gap: 16px 30px;
}

.footer-nav a {
  font-size: 11px;

  letter-spacing: 0.08em;

  opacity: 0.72;

  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.site-footer__copyright {
  margin: 42px 0 0;

  font-size: 10px;

  letter-spacing: 0.14em;

  opacity: 0.5;
}

@media (max-width: 768px) {

  .site-footer {
    padding:
      60px
      20px
      36px;
  }

  .site-footer__logo {
    height: 58px;
  }

  .footer-nav {
    flex-direction: column;

    gap: 14px;
  }

}

@media (max-width: 768px) {

  .site-header__inner {
    height: 64px;
    padding: 0 20px;
  }

  .section {
    padding: 96px 20px;
  }
}

/* ========================================
   GLOBAL IMAGE / LAYOUT SAFETY
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.hero__image,
.character-visual__image,
.character-archive-card__image,
.character-detail__image,
.story-category__visual img {
  object-fit: contain;
}

/* ========================================
   HEADER
======================================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.90);

  border-bottom: 1px solid rgba(40, 70, 90, 0.10);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  width: 100%;
  height: 72px;

  padding: 0 18px 0 12px;

  display: flex;
  align-items: center;

  gap: 28px;
}


/* ========================================
   HEADER LOGO
======================================== */

.site-logo {
  display: flex;

  align-items: center;

  flex-shrink: 0;
}

.site-logo__image {
  display: block;

  width: auto;
  height: 54px;

  object-fit: contain;
}


/* ========================================
   GLOBAL NAV
======================================== */

.global-nav {
  display: flex;

  align-items: center;

  gap: clamp(18px, 2vw, 36px);

  margin-left: auto;
}

.global-nav__link {
  position: relative;

  display: flex;
  flex-direction: column;

  align-items: center;

  padding: 12px 0 9px;

  color: #243746;

  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.global-nav__link span {
  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.10em;
}

.global-nav__link small {
  margin-top: 2px;

  font-size: 9px;
  font-weight: 400;

  letter-spacing: 0.08em;

  opacity: 0.55;
}

.global-nav__link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 3px;

  width: 0;
  height: 1px;

  background: #7aa6c2;

  transform: translateX(-50%);

  transition: width 0.25s ease;
}

.global-nav__link:hover {
  color: #628fae;
}

.global-nav__link:hover::after {
  width: 100%;
}


/* ========================================
   HEADER ACTIONS
======================================== */

.header-actions {
  display: flex;

  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}


/* ========================================
   GAME START
======================================== */

.header-play {
  min-width: 128px;
  height: 52px;

  padding: 0 18px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  background: #d9e6f3;

  border: 1px solid rgba(70, 110, 140, 0.18);

  color: #385469;

  cursor: default;
}

.header-play span {
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.header-play small {
  margin-top: 2px;

  font-size: 8px;

  letter-spacing: 0.12em;

  opacity: 0.65;
}


/* ========================================
   MENU BUTTON
======================================== */

.menu-button {
  display: none;

  width: 46px;
  height: 46px;

  padding: 11px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 100%;
  height: 1px;

  margin: 6px 0;

  background: #243746;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


/* ========================================
   MOBILE MENU
======================================== */

.mobile-menu {
  display: none;
}


/* ========================================
   MOBILE HEADER
======================================== */

@media (max-width: 900px) {

  .site-header__inner {
    display: flex;
    align-items: center;

    width: 100%;

    padding:
      0
      12px;
  }

  .site-logo {
    margin-right: auto;
  }

  .header-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
  }

  .site-logo__image {
    height: 45px;
  }

  .global-nav {
    display: none;
  }

  .header-play {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
    flex-shrink: 0;
  }
  .mobile-menu {
    position: fixed;

    top: 64px;
    left: 0;

    width: 100%;
    height: calc(100svh - 64px);

    padding: 42px 28px;

    display: flex;
    flex-direction: column;

    background:
      linear-gradient(
        180deg,
        rgba(239, 247, 252, 0.98),
        rgba(255, 255, 255, 0.98)
      );

    opacity: 0;
    visibility: hidden;

    transform: translateY(-12px);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .mobile-menu a {
    display: flex;

    align-items: baseline;

    gap: 14px;

    padding: 18px 4px;

    border-bottom: 1px solid rgba(60, 90, 110, 0.12);
  }

  .mobile-menu a span {
    font-size: 22px;
    font-weight: 500;

    letter-spacing: 0.08em;
  }

  .mobile-menu a small {
    font-size: 11px;

    opacity: 0.55;
  }

  .mobile-menu__play {
    margin-top: 32px;

    padding: 18px;

    text-align: center;

    background: #d9e6f3;

    color: #385469;
  }

  .mobile-menu__play span {
    display: block;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.12em;
  }

  .mobile-menu__play small {
    display: block;

    margin-top: 4px;

    font-size: 9px;

    letter-spacing: 0.14em;
  }

}


/* ========================================
   MENU OPEN STATE
======================================== */

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
======================================== */

.hero {
  position: relative;

  width: 100%;
  height: 100svh;
  min-height: 600px;

  padding-top: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background-color: #d9e6f3;
}

.hero__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}


/* ========================================
   HERO SCROLL
======================================== */

.hero__scroll {
  position: absolute;

  z-index: 2;

  left: 50%;
  bottom: 18px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 7px;

  color: #fff;

  font-size: 10px;

  letter-spacing: 0.25em;

  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}

.hero__scroll-line {
  display: block;

  width: 1px;
  height: 35px;

  background: currentColor;
}


/* ========================================
   INTRODUCTION
======================================== */

.introduction {
  position: relative;

  padding: 130px 32px;

  background: #fff;

  text-align: center;
}

.introduction__inner {
  max-width: 900px;

  margin: 0 auto;
}

.introduction__label {
  margin: 0 0 26px;

  font-size: 12px;

  letter-spacing: 0.35em;

  opacity: 0.55;
}

.introduction__title {
  margin: 0;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(50px, 7vw, 92px);
  font-weight: 500;

  line-height: 1.15;

  letter-spacing: 0.04em;
}

.introduction__title span {
  display: block;

  margin-top: 12px;

  font-size: 0.30em;
  font-weight: 400;

  letter-spacing: 0.3em;
}

.introduction__catchcopy {
  margin: 48px 0 0;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(18px, 2vw, 26px);

  letter-spacing: 0.12em;
}

.introduction__genre {
  margin: 28px auto 0;

  width: fit-content;
  max-width: 100%;

  font-size: clamp(12px, 1.2vw, 14px);

  line-height: 1.8;
  letter-spacing: 0.10em;

  text-align: center;

  opacity: 0.7;
}

/* ========================================
   LOGO
======================================== */

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo__image {
  display: block;

  width: auto;
  height: 52px;

  object-fit: contain;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  .hero {
    width: 100%;

    height: auto;
    min-height: 0;

    padding-top: 64px;

    display: block;

    overflow: hidden;

    background: #d9e6f3;
  }


  .hero__image {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;

    object-fit: contain;
    object-position: center;

    transform: none;
  }


  .hero__scroll {
    display: none;
  }

  .site-logo__image {
    height: 42px;
  }

  .introduction {
    padding: 90px 24px;
  }

  .introduction__label {
    margin-bottom: 20px;
  }

  .introduction__title span {
    margin-top: 10px;
  }

  .introduction__catchcopy {
    margin-top: 38px;
  }

}

.introduction__genre {
  max-width: 320px;

  font-size: 12px;

  line-height: 1.9;
}

/* ========================================
   NEWS
======================================== */

.news-section {
  padding: 120px 32px;

  background: #f5f9fc;
}

.news-section__inner {
  width: min(1100px, 100%);

  margin: 0 auto;
}


/* 見出し */

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  margin-bottom: 48px;
}

.section-heading__sub {
  margin: 0 0 6px;

  color: #748b9c;

  font-size: 12px;

  letter-spacing: 0.16em;
}

.section-heading__title {
  margin: 0;

  color: #263d4d;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.06em;
}

.section-heading__more {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 0;

  color: #56758a;

  font-size: 11px;

  letter-spacing: 0.16em;

  border-bottom: 1px solid rgba(86, 117, 138, 0.35);

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.section-heading__more:hover {
  color: #294d66;

  border-color: #294d66;
}


/* NEWS一覧 */

.news-list {
  border-top: 1px solid rgba(64, 94, 113, 0.18);
}

.news-item {
  min-height: 88px;

  padding: 22px 10px;

  display: grid;

  grid-template-columns:
    110px
    90px
    1fr
    30px;

  align-items: center;

  gap: 18px;

  border-bottom: 1px solid rgba(64, 94, 113, 0.18);

  transition: background-color 0.2s ease;
}

a.news-item:hover {
  background: rgba(217, 230, 243, 0.42);
}

.news-item__date {
  color: #728695;

  font-size: 12px;

  letter-spacing: 0.08em;
}

.news-item__category {
  padding: 5px 8px;

  color: #58798f;

  font-size: 9px;

  letter-spacing: 0.12em;

  text-align: center;

  border: 1px solid rgba(88, 121, 143, 0.35);
}

.news-item__title {
  margin: 0;

  color: #263d4d;

  font-size: 14px;

  line-height: 1.7;
}

.news-item__arrow {
  color: #66899f;

  font-size: 18px;

  text-align: right;
}

.news-item--coming {
  opacity: 0.38;
}


/* NEWS スマートフォン */

@media (max-width: 768px) {

  .news-section {
    padding: 90px 20px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading__more {
    font-size: 9px;
  }

  .news-item {
    min-height: 100px;

    padding: 18px 4px;

    grid-template-columns:
      88px
      1fr;

    gap:
      8px
      14px;
  }

  .news-item__date {
    grid-column: 1;
    grid-row: 1;
  }

  .news-item__category {
    grid-column: 2;
    grid-row: 1;

    justify-self: start;
  }

  .news-item__title {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .news-item__arrow {
    display: none;
  }

}

/* ========================================
   CHARACTER
======================================== */

.character-section {
  padding: 120px 32px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #edf5fa 100%
    );
}

.character-section__inner {
  width: min(1200px, 100%);

  margin: 0 auto;
}


/* ========================================
   CHARACTER SHOWCASE
======================================== */

.character-showcase {
  position: relative;

  min-height: 650px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.85fr);

  align-items: center;

  gap: clamp(30px, 5vw, 80px);
}


/* ========================================
   CHARACTER VISUAL
======================================== */

.character-visual {
  position: relative;

  width: 100%;
  height: min(65vh, 620px);

  min-height: 420px;
}

.character-visual__frame {
  position: absolute;
  inset: 0;

  overflow: hidden;
}


/* キャラ画像 */

.character-visual__image {
  position: absolute;

  left: 50%;
  bottom: 0;

  display: block;

  width: auto;
  max-width: 100%;

  height: 100%;
  max-height: 100%;

  object-fit: contain;

  transform:
    translateX(-50%)
    translate(
      var(--character-x, 0%),
      var(--character-y, 0%)
    )
    scale(var(--character-scale, 1));

  transform-origin:
    center bottom;

  transition: none;
  animation: none;
}



/* ========================================
   CHARACTER INFO
======================================== */

.character-info {
  position: relative;

  z-index: 2;

  padding: 40px 0;
}

.character-info__class {
  display: inline-block;

  margin: 0 0 18px;

  padding: 6px 12px;

  color: #55768c;

  font-size: 11px;

  letter-spacing: 0.14em;

  border: 1px solid rgba(85, 118, 140, 0.35);
}

.character-info__number {
  margin: 0 0 8px;

  color: #7b93a3;

  font-size: 10px;

  letter-spacing: 0.20em;
}

.character-info__name {
  margin: 0;

  color: #263d4d;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;

  line-height: 1.15;
}

.character-info__reading {
  margin: 10px 0 0;

  color: #8095a4;

  font-size: 11px;

  letter-spacing: 0.18em;
}

.character-info__copy {
  margin: 38px 0 0;

  color: #39576b;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(17px, 1.8vw, 23px);

  line-height: 1.9;
}

.character-info__description {
  max-width: 480px;

  margin: 24px 0 0;

  color: #4f6472;

  font-size: 14px;

  line-height: 2;
}

.character-info__more {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-top: 34px;

  padding-bottom: 7px;

  color: #55778e;

  font-size: 11px;

  letter-spacing: 0.16em;

  border-bottom: 1px solid rgba(85, 119, 142, 0.4);
}


/* ========================================
   CHARACTER ARROWS
======================================== */

.character-nav {
  position: absolute;

  z-index: 10;

  top: 50%;

  width: 48px;
  height: 70px;

  border: 0;

  background: rgba(255, 255, 255, 0.62);

  color: #54768d;

  font-size: 38px;
  font-weight: 300;

  cursor: pointer;

  transform: translateY(-50%);

  backdrop-filter: blur(6px);

}

.character-nav:hover {
  background: rgba(255, 255, 255, 0.9);
}

.character-nav--prev {
  left: -12px;
}

.character-nav--next {
  right: -12px;
}


/* ========================================
   CHARACTER DOTS
======================================== */

.character-dots {
  display: flex;

  justify-content: center;

  gap: 10px;

  margin-top: 20px;
}

.character-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: #b9cad5;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.character-dot.is-active {
  background: #597b91;

  transform: scale(1.45);
}

.character-mobile-gallery {
  display: none;
}

/* ========================================
   MOBILE CHARACTER GALLERY
======================================== */

.character-mobile-gallery {
  display: none;
}

@media (max-width: 768px) {

  .character-showcase,
  .character-dots {
    display: none !important;
  }

  .character-section {
    padding:
      26px
      0
      30px !important;
  }

  .character-section .section-heading {
    padding:
      0
      14px;

    margin-bottom:
      12px;
  }

  .character-mobile-gallery {
    display: flex;

    width: 100%;

    height: 55svh;
    min-height: 330px;
    max-height: 500px;

    padding:
      0
      10px;

    gap: 0;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type:
      x proximity;

    -webkit-overflow-scrolling:
      touch;

    scrollbar-width: none;
  }

  .character-mobile-gallery::-webkit-scrollbar {
    display: none;
  }


  .character-mobile-card {
    position: relative;

    flex:
      0 0
      calc((100vw - 20px) / 3);

    height: 100%;

    overflow: hidden;

    scroll-snap-align: start;

    border-right:
      1px solid
      rgba(70, 100, 120, 0.20);

    background:
      linear-gradient(
        180deg,
        #e8f2f8,
        #f7fafc
      );
  }

  .character-mobile-card:first-child {
    border-left:
      1px solid
      rgba(70, 100, 120, 0.20);
  }


  .character-mobile-card__visual {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
  }


  .character-mobile-card__image {
    position: absolute;

    left: 50%;
    bottom: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position:
      center top;

    transform:
      translateX(-50%)
      translate(
        var(--mobile-top-x, 0%),
        var(--mobile-top-y, 0%)
      )
      scale(
        var(--mobile-top-scale, 1)
      );

    transform-origin:
      center top;
  }

}

/* ========================================
   STORY
======================================== */

.story-section {
  position: relative;

  padding: 130px 32px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #eef6fb 0%,
      #ffffff 55%,
      #f4f8fb 100%
    );
}

.story-section__inner {
  width: min(1200px, 100%);

  margin: 0 auto;
}


/* ========================================
   STORY LAYOUT
======================================== */

.story-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  align-items: center;

  gap: clamp(50px, 7vw, 100px);
}


/* ========================================
   STORY COPY
======================================== */

.story-copy {
  position: relative;

  z-index: 2;
}

.story-copy__lead {
  margin: 0;

  color: #345266;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(18px, 2.5vw, 22px);

  line-height: 1.8;

  letter-spacing: 0.08em;
}

.story-copy__text {
  margin: 32px 0 0;

  color: #536a79;

  font-size: 13px;

  line-height: 2.1;
}

.story-copy__text__sub {
  margin: 32px 0 0;

  color: #536a79;

  font-size: 11px;

  line-height: 2.1;
}



/* ========================================
   STORY VISUAL
======================================== */

.story-visual {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 10;
}

/* ========================================
   STORY SLIDER
======================================== */

.story-slider {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  background: #d9e6f3;

  box-shadow:
    0 18px 45px
    rgba(55, 82, 100, 0.12);
}

.story-slider__image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  opacity: 0;

  transform: scale(1.02);

  transition:
    opacity 1.2s ease,
    transform 6s ease;
}

.story-slider__image.is-active {
  opacity: 1;

  transform: scale(1);
}


/* 下部グラデーション */

.story-slider::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 65%,
      rgba(31, 55, 70, 0.15) 100%
    );
}


/* ========================================
   STORY DOTS
======================================== */

.story-slider__dots {
  position: absolute;

  z-index: 5;

  left: 50%;
  bottom: 18px;

  transform: translateX(-50%);

  display: flex;

  gap: 10px;
}

.story-slider__dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  box-shadow:
    0 1px 4px
    rgba(0, 0, 0, 0.25);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.story-slider__dot.is-active {
  background: #fff;

  transform: scale(1.3);
}


/* ========================================
   STORY MOBILE
======================================== */

@media (max-width: 768px) {

  .story-section {
    padding: 90px 20px;
  }

  .story-layout {
    grid-template-columns: 1fr;

    gap: 46px;
  }

  .story-copy__lead {
    font-size: 22px;
  }

  .story-copy__text {
    font-size: 13px;
  }

  .story-visual {
    aspect-ratio: 4 / 3;
  }

}

/* ========================================
   SYSTEM
======================================== */

.system-section {
  position: relative;

  padding: 130px 32px;

  background: #ffffff;
}

.system-section__inner {
  width: min(1200px, 100%);

  margin: 0 auto;
}


/* ========================================
   SYSTEM INTRO
======================================== */

.system-intro {
  max-width: 720px;

  margin-bottom: 70px;
}

.system-intro__lead {
  margin: 0;

  color: #345266;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(22px, 2.6vw, 34px);

  line-height: 1.7;

  letter-spacing: 0.08em;
}

.system-intro__text {
  margin: 22px 0 0;

  color: #607684;

  font-size: 14px;

  line-height: 2;
}


/* ========================================
   SYSTEM GRID
======================================== */

.system-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 42px;
}


/* ========================================
   SYSTEM CARD
======================================== */

.system-card {
  overflow: hidden;

  background: #f7fafc;

  border: 1px solid rgba(72, 105, 126, 0.12);
}

.system-card__visual {
  position: relative;

  aspect-ratio: 16 / 9;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  color: #7993a5;

  background:
    linear-gradient(
      135deg,
      #e2eef5,
      #f6fafc
    );
}

.system-card__visual span {
  position: absolute;

  top: 18px;
  left: 22px;

  color: rgba(67, 101, 123, 0.16);

  font-size: 48px;
  font-weight: 300;

  letter-spacing: 0.04em;
}

.system-card__visual p {
  margin: 0;

  font-size: 11px;

  letter-spacing: 0.25em;

  opacity: 0.65;
}

.system-card__body {
  padding: 30px 32px 34px;
}

.system-card__number {
  margin: 0 0 7px;

  color: #8097a6;

  font-size: 9px;

  letter-spacing: 0.18em;
}

.system-card__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 28px;
  font-weight: 500;

  letter-spacing: 0.08em;
}

.system-card__text {
  margin: 18px 0 0;

  color: #5a707e;

  font-size: 13px;

  line-height: 1.9;
}


/* ========================================
   SYSTEM MOBILE
======================================== */

@media (max-width: 768px) {

  .system-section {
    padding:
      30px
      14px;
  }

  .system-intro {
    margin-bottom:
      18px;
  }

  .system-intro__lead {
    font-size:
      17px;

    line-height:
      1.45;
  }

  .system-intro__text {
    margin-top:
      10px;

    font-size:
      10px;

    line-height:
      1.55;
  }

  .system-grid {
    grid-template-columns:
      1fr;

    gap:
      14px;
  }

  .system-card__body {
    padding:
      14px
      14px
      16px;
  }

  .system-card__number {
    margin-bottom:
      4px;

    font-size:
      7px;
  }

  .system-card__title {
    font-size:
      20px;

    line-height:
      1.3;
  }

  .system-card__text {
    margin-top:
      8px;

    font-size:
      10px;

    line-height:
      1.55;
  }

}

/* ========================================
   GAME INFO
======================================== */

.game-info-section {
  padding: 130px 32px;

  background: #f4f8fb;
}

.game-info-section__inner {
  width: min(1000px, 100%);

  margin: 0 auto;
}

.game-info-card {
  padding: 20px 42px;

  background: rgba(255, 255, 255, 0.82);

  border:
    1px solid
    rgba(72, 105, 126, 0.12);
}

.game-info-list {
  margin: 0;
}

.game-info-list__row {
  display: grid;

  grid-template-columns:
    180px
    1fr;

  gap: 28px;

  padding: 24px 0;

  border-bottom:
    1px solid
    rgba(72, 105, 126, 0.12);
}

.game-info-list__row:last-child {
  border-bottom: 0;
}

.game-info-list dt {
  color: #7890a0;

  font-size: 11px;

  letter-spacing: 0.12em;
}

.game-info-list dd {
  margin: 0;

  color: #2c4658;

  font-size: 14px;

  line-height: 1.8;
}


/* ========================================
   LINKS
======================================== */

.links-section {
  padding: 120px 32px;

  background: #ffffff;
}

.links-section__inner {
  width: min(1100px, 100%);

  margin: 0 auto;
}

.official-links {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.official-link {
  position: relative;

  min-height: 110px;

  padding: 26px 56px 26px 28px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  border:
    1px solid
    rgba(70, 105, 128, 0.14);

  background: #f8fbfd;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.official-link:hover {
  transform: translateY(-3px);

  background: #edf5fa;
}

.official-link__name {
  color: #29485c;

  font-size: 18px;
  font-weight: 600;

  letter-spacing: 0.08em;
}

.official-link__desc {
  margin-top: 8px;

  color: #78909e;

  font-size: 11px;

  letter-spacing: 0.06em;
}

.official-link__arrow {
  position: absolute;

  right: 26px;
  top: 50%;

  color: #69899d;

  font-size: 20px;

  transform: translateY(-50%);
}


/* ========================================
   GAME INFO / LINKS MOBILE
======================================== */

@media (max-width: 768px) {

  .game-info-section,
  .links-section {
    padding: 90px 20px;
  }

  .game-info-card {
    padding: 10px 22px;
  }

  .game-info-list__row {
    grid-template-columns: 1fr;

    gap: 8px;

    padding: 20px 0;
  }

  .official-links {
    grid-template-columns: 1fr;
  }

}

/* ========================================
   CHARACTER ARCHIVE PAGE
======================================== */

.character-page {
  padding-top: 72px;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 400px
    );
}


/* PAGE HERO */

.character-page__hero {
  padding:
    110px
    32px
    80px;

  text-align: center;
}

.character-page__sub {
  margin: 0 0 12px;

  color: #718a9b;

  font-size: 12px;

  letter-spacing: 0.22em;
}

.character-page__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(52px, 8vw, 100px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.08em;
}

.character-page__description {
  margin: 28px 0 0;

  color: #6c8392;

  font-size: 13px;

  letter-spacing: 0.08em;
}


/* ARCHIVE */

.character-archive {
  width: min(1300px, 100%);

  margin: 0 auto;

  padding:
    20px
    32px
    130px;
}

.character-archive__grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 26px;
}


/* CARD */

.character-archive-card {
  overflow: hidden;

  background: #f8fbfd;

  border:
    1px solid
    rgba(69, 104, 127, 0.12);
}

.character-archive-card__visual {
  position: relative;

  width: 100%;

  height: auto;

  aspect-ratio: 3 / 4;

  overflow: hidden;
}

.character-archive-card__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center top;

  transform:
    translate(
      var(--archive-x, 0%),
      var(--archive-y, 0%)
    )
    scale(var(--archive-scale, 1));

  transform-origin: center top;
}

.character-archive-card__body {
  padding: 22px 22px 26px;
}

.character-archive-card__class {
  display: inline-block;

  margin: 0 0 12px;

  padding: 4px 8px;

  color: #608097;

  font-size: 9px;

  letter-spacing: 0.12em;

  border:
    1px solid
    rgba(96, 128, 151, 0.3);
}

.character-archive-card__number {
  margin: 0 0 7px;

  color: #8aa0ae;

  font-size: 8px;

  letter-spacing: 0.18em;
}

.character-archive-card__name {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 26px;

  font-weight: 500;
}

.character-archive-card__reading {
  margin: 7px 0 0;

  color: #8096a5;

  font-size: 9px;

  letter-spacing: 0.13em;
}

.character-archive-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* TABLET */

@media (max-width: 1050px) {

  .character-archive__grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 700px) {

  .character-page {
    padding-top: 64px;
  }

  .character-page__title {
    font-size: clamp(34px, 11vw, 52px);

    line-height: 1.1;

    letter-spacing: 0.04em;

    white-space: nowrap;
  }

  .character-page__hero {
    width: 100%;

    padding:
      70px
      16px
      50px;

    overflow: hidden;
  }

  .character-archive {
    padding:
      10px
      18px
      90px;
  }

  .character-archive__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 12px;
  }

  .character-archive-card__visual {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .character-archive-card__body {
    padding:
      16px
      14px
      20px;
  }

  .character-archive-card__name {
    font-size: 20px;
  }

}

.character-archive-card {
  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.character-archive-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 18px 36px
    rgba(52, 78, 95, 0.10);
}

@media (max-width: 768px) {

  .character-archive-card__image {
    object-position: center top;

    transform:
      translate(
        var(--archive-x, 0%),
        var(--archive-y, 0%)
      )
      scale(
        var(--archive-scale, 1)
      );

    transform-origin: center top;
  }

}

/* ========================================
   CHARACTER DETAIL PAGE
   PC：1画面完結
======================================== */

.character-detail-page {
  height: 100svh;
  min-height: 720px;

  padding:
    90px
    32px
    18px;

  display: grid;

  grid-template-rows:
    auto
    minmax(0, 6.5fr)
    minmax(0, 3.5fr)
    auto;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 70%
    );
}


/* 戻る */

.character-detail__back {
  display: block;

  width: min(1200px, 100%);

  margin: 0 auto 8px;

  color: #718b9c;

  font-size: 9px;

  letter-spacing: 0.18em;

  flex-shrink: 0;
}


/* ========================================
   上部 6.5
======================================== */

.character-detail-upper {
  width: min(1200px, 100%);
  height: 100%;

  min-height: 0;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.4fr)
    minmax(0, 0.6fr);

  align-items: center;

  gap: clamp(30px, 5vw, 75px);
}


/* イラスト */

.character-detail__visual {
  position: relative;

  width: 100%;
  height: 100%;

  min-height: 0;

  overflow: hidden;
}

.character-detail__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center top;

  transform:
    translate(
      var(--detail-x, 0),
      var(--detail-y, 0)
    )
    scale(var(--detail-scale, 1));

  transform-origin: center top;

  transition: none;
  animation: none;
}


/* 右側情報 */

.character-detail__info {
  padding: 10px 0;
}

.character-detail__class {
  display: inline-block;

  margin: 0 0 10px;

  padding: 4px 9px;

  color: #55768c;

  font-size: 9px;

  letter-spacing: 0.14em;

  border:
    1px solid
    rgba(85, 118, 140, 0.35);
}

.character-detail__number {
  margin: 0 0 5px;

  color: #8096a5;

  font-size: 8px;

  letter-spacing: 0.20em;
}

.character-detail__name {
  margin: 0;

  color: #263d4d;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(40px, 4.3vw, 68px);

  font-weight: 500;

  line-height: 1.05;
}

.character-detail__reading {
  margin: 7px 0 0;

  color: #8095a4;

  font-size: 9px;

  letter-spacing: 0.18em;
}

.character-detail__copy {
  margin: 22px 0 0;

  color: #39576b;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(15px, 1.5vw, 21px);

  line-height: 1.7;
}

.character-detail__description {
  max-width: 560px;

  margin: 12px 0 0;

  color: #526978;

  font-size: 12px;

  line-height: 1.75;
}


/* ========================================
   下部 PROFILE 3.5
======================================== */

.character-profile {
  width: min(1200px, 100%);
  height: 100%;

  min-height: 0;

  margin: 0 auto;

  padding: 10px 0 0;

  border-top:
    1px solid
    rgba(73, 105, 126, 0.16);
}

.character-profile__heading {
  margin-bottom: 8px;
}

.character-profile__heading p {
  display: none;
}

.character-profile__heading h2 {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 22px;

  font-weight: 500;

  letter-spacing: 0.08em;
}


.character-profile__grid {
  display: grid;

  grid-template-columns:
    repeat(12, minmax(0, 1fr));

  grid-template-rows:
    0.8fr
    1.1fr
    1.1fr;

  height:
    calc(100% - 32px);

  margin: 0;

  border-top:
    1px solid
    rgba(73, 105, 126, 0.14);

  border-left:
    1px solid
    rgba(73, 105, 126, 0.14);
}


/* 1行目：4分割 */

.character-profile__item--small {
  grid-column: span 3;

  min-height: 0;
}


/* 2・3行目：2分割 */

.character-profile__item--wide {
  grid-column: span 6;

  min-height: 0;
}


.character-profile__item {
  padding: 9px 16px;

  overflow: hidden;

  border-right:
    1px solid
    rgba(73, 105, 126, 0.14);

  border-bottom:
    1px solid
    rgba(73, 105, 126, 0.14);
}

.character-profile__item dt {
  margin-bottom: 4px;

  color: #8398a6;

  font-size: 8px;

  letter-spacing: 0.12em;
}

.character-profile__item dd {
  margin: 0;

  color: #324e60;

  font-size: 11px;

  line-height: 1.45;
}


/* ========================================
   PREV / LIST / NEXT
======================================== */

.character-detail-navigation {
  width: min(1200px, 100%);

  margin: 7px auto 0;

  padding-top: 7px;

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  border-top:
    1px solid
    rgba(73, 105, 126, 0.12);
}

.character-detail-navigation__button,
.character-detail-navigation__list {
  color: #658396;

  font-size: 8px;

  letter-spacing: 0.16em;
}

#detail-next {
  text-align: right;
}


@media (max-width: 768px) {

  .character-detail-page {
    height: auto;
    min-height: 100svh;

    padding:
      84px
      20px
      70px;

    display: block;

    overflow: visible;
  }

  .character-detail__back {
    margin-bottom: 20px;
  }

  .character-detail-upper {
    height: auto;

    grid-template-columns: 1fr;

    gap: 15px;
  }

  .character-detail__visual {
    width: 100%;

    aspect-ratio: 1 / 1;

    height: auto;
    min-height: 0;

    overflow: hidden;
  }

.character-detail__image {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center bottom;

  transform:
    translate(
      var(--detail-x, 0%),
      var(--detail-y, 0%)
    )
    scale(var(--detail-scale, 1));

  transform-origin: center bottom;
}

 .character-detail__info {
    padding:
      4px
      0
      20px;
  }


  .character-detail__name {
    font-size:
      clamp(32px, 10vw, 44px);
  }


  .character-detail__copy {
    margin-top: 14px;

    font-size:
      clamp(14px, 4vw, 17px);

    line-height: 1.55;
  }


  .character-detail__description {
    margin-top: 8px;

    font-size: 11px;

    line-height: 1.6;
  }


  .character-profile {
    margin-top: 8px;

    padding-top: 20px;
  }


  .character-profile__heading {
    margin-bottom: 12px;
  }


  .character-profile__heading h2 {
    font-size: 22px;
  }


  .character-profile__item {
    padding: 12px;
  }


  .character-profile__item--small,
  .character-profile__item--wide {
    min-height: 76px;
  }


  .character-profile__item {
    padding: 18px;
  }

  .character-profile__item dt {
    font-size: 9px;
  }

  .character-profile__item dd {
    font-size: 13px;
  }

  .character-detail-navigation {
    margin-top: 35px;

    padding-top: 18px;
  }

}

@media (max-width: 768px) {

  .character-detail__image {
    object-position: center top;

    transform:
      translate(
        var(--detail-x, 0%),
        var(--detail-y, 0%)
      )
      scale(
        var(--detail-scale, 1)
      );

    transform-origin: center top;
  }

}

/* ========================================
   NEWS ARCHIVE
======================================== */

.news-page {
  min-height: 100vh;

  padding-top: 72px;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 420px
    );
}


.news-page__hero {
  padding:
    110px
    32px
    75px;

  text-align:
    center;
}


.news-page__sub {
  margin:
    0 0 12px;

  color:
    #718a9b;

  font-size:
    12px;

  letter-spacing:
    0.22em;
}


.news-page__title {
  margin:
    0;

  color:
    #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(52px, 8vw, 100px);

  font-weight:
    500;

  line-height:
    1;

  letter-spacing:
    0.08em;
}


.news-page__description {
  margin:
    28px 0 0;

  color:
    #6c8392;

  font-size:
    13px;

  letter-spacing:
    0.08em;
}


/* NEWS LIST */

.news-archive {
  width:
    min(1100px, 100%);

  margin:
    0 auto;

  padding:
    10px
    32px
    130px;
}


.news-archive__list {
  border-top:
    1px solid
    rgba(73, 105, 126, 0.15);
}


.news-archive-item {
  min-height:
    110px;

  padding:
    25px
    10px;

  display:
    grid;

  grid-template-columns:
    120px
    110px
    minmax(0, 1fr)
    30px;

  align-items:
    center;

  gap:
    20px;

  color:
    inherit;

  text-decoration:
    none;

  border-bottom:
    1px solid
    rgba(73, 105, 126, 0.15);

  transition:
    background-color 0.2s ease;
}


.news-archive-item:hover {
  background:
    rgba(222, 237, 246, 0.35);
}


.news-archive-item__date {
  color:
    #8197a6;

  font-size:
    11px;

  letter-spacing:
    0.12em;
}


.news-archive-item__category {
  justify-self:
    start;

  padding:
    5px
    9px;

  color:
    #607f93;

  font-size:
    9px;

  letter-spacing:
    0.12em;

  border:
    1px solid
    rgba(96, 127, 147, 0.3);
}


.news-archive-item__title {
  margin:
    0;

  color:
    #365568;

  font-size:
    14px;

  line-height:
    1.8;
}


.news-archive-item__arrow {
  color:
    #7992a2;

  font-size:
    17px;

  text-align:
    right;
}


.news-archive__empty {
  padding:
    70px 0;

  color:
    #8297a5;

  text-align:
    center;

  font-size:
    13px;
}


/* MOBILE */

@media (max-width: 768px) {

  .news-page {
    padding-top:
      64px;
  }


  .news-page__hero {
    padding:
      80px
      20px
      55px;
  }


  .news-archive {
    padding:
      0
      20px
      90px;
  }


  .news-archive-item {
    position:
      relative;

    min-height:
      130px;

    padding:
      22px
      35px
      22px
      4px;

    grid-template-columns:
      auto
      1fr;

    gap:
      10px
      15px;
  }


  .news-archive-item__date {
    grid-column:
      1;
  }


  .news-archive-item__category {
    grid-column:
      2;
  }


  .news-archive-item__title {
    grid-column:
      1 / 3;

    font-size:
      13px;
  }


  .news-archive-item__arrow {
    position:
      absolute;

    right:
      6px;

    top:
      50%;

    transform:
      translateY(-50%);
  }

}

/* ========================================
   NEWS DETAIL
======================================== */

.news-detail-page {
  min-height: 100vh;

  padding:
    140px
    32px
    120px;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 420px
    );
}


.news-detail {
  width:
    min(900px, 100%);

  margin:
    0 auto;
}


.news-detail__back {
  display:
    inline-block;

  margin-bottom:
    60px;

  color:
    #78909f;

  font-size:
    10px;

  letter-spacing:
    0.18em;
}


/* HEADER */

.news-detail__header {
  padding-bottom:
    44px;

  border-bottom:
    1px solid
    rgba(73, 105, 126, 0.15);
}


.news-detail__meta {
  display:
    flex;

  align-items:
    center;

  gap:
    20px;

  margin-bottom:
    24px;
}


.news-detail__date {
  color:
    #849aa8;

  font-size:
    11px;

  letter-spacing:
    0.14em;
}


.news-detail__category {
  padding:
    5px
    10px;

  color:
    #607f93;

  font-size:
    9px;

  letter-spacing:
    0.14em;

  border:
    1px solid
    rgba(96, 127, 147, 0.30);
}


.news-detail__title {
  margin:
    0;

  color:
    #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(
      28px,
      4vw,
      46px
    );

  font-weight:
    500;

  line-height:
    1.5;
}


/* BODY */

.news-detail__body {
  padding:
    54px
    0
    70px;

  color:
    #4e6574;

  font-size:
    14px;

  line-height:
    2.2;
}


.news-detail__body p {
  margin:
    0
    0
    28px;
}


.news-detail__body p:last-child {
  margin-bottom:
    0;
}


/* NAVIGATION */

.news-detail__navigation {
  padding-top:
    26px;

  display:
    grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items:
    center;

  border-top:
    1px solid
    rgba(73, 105, 126, 0.15);
}


.news-detail__nav-button,
.news-detail__nav-list {
  color:
    #668497;

  font-size:
    10px;

  letter-spacing:
    0.16em;
}


.news-detail__nav-button--next {
  text-align:
    right;
}


/* MOBILE */

@media (max-width: 768px) {

  .news-detail-page {
    padding:
      105px
      20px
      80px;
  }


  .news-detail__back {
    margin-bottom:
      40px;
  }


  .news-detail__header {
    padding-bottom:
      32px;
  }


  .news-detail__title {
    font-size:
      28px;
  }


  .news-detail__body {
    padding:
      38px
      0
      50px;

    font-size:
      13px;
  }

}

/* ========================================
   SUPPORT PAGE
======================================== */

.support-page {
  padding-top: 72px;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 480px
    );
}


.support-page__hero {
  padding:
    120px
    32px
    100px;

  text-align: center;
}


.support-page__sub {
  margin: 0 0 12px;

  color: #718a9b;

  font-size: 12px;

  letter-spacing: 0.22em;
}


.support-page__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(52px, 8vw, 100px);

  font-weight: 500;

  letter-spacing: 0.08em;
}


.support-page__lead {
  margin: 28px 0 0;

  color: #607987;

  font-size: 14px;
}


/* ABOUT */

.support-about {
  padding:
    90px
    32px
    110px;
}


.support-about__inner {
  width: min(760px, 100%);
  margin: 0 auto;

  text-align: center;
}


.support-about__label,
.support-fanbox__label {
  margin: 0 0 14px;

  color: #8599a7;

  font-size: 10px;

  letter-spacing: 0.2em;
}


.support-about__title,
.support-fanbox__title {
  margin: 0 0 38px;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(28px, 4vw, 44px);

  font-weight: 500;
}


.support-about__text {
  margin:
    0 0
    24px;

  color: #506877;

  font-size: 14px;

  line-height: 2.1;
}


/* FANBOX */

.support-fanbox {
  padding:
    100px
    32px
    130px;

  background:
    #edf5fa;
}


.support-fanbox__inner {
  width: min(760px, 100%);
  margin: 0 auto;

  text-align: center;
}


.support-fanbox__text {
  margin:
    0 auto
    40px;

  max-width:
    620px;

  color: #506877;

  font-size: 14px;

  line-height: 2;
}


.support-fanbox__button {
  display: inline-flex;

  align-items: center;

  gap: 25px;

  padding:
    18px
    34px;

  color: #ffffff;

  background: #50758d;

  font-size: 12px;

  letter-spacing: 0.12em;

  text-decoration: none;
}


/* ========================================
   SUPPORT PAGE MOBILE
======================================== */

@media (max-width: 768px) {

  .support-page {
    padding-top:
      64px;
  }

  .support-page__hero {
    padding:
      30px
      14px
      24px;
  }

  .support-page__sub {
    margin-bottom:
      6px;

    font-size:
      7px;
  }

  .support-page__title {
    font-size:
      32px;

    line-height:
      1.05;
  }

  .support-page__lead {
    margin-top:
      12px;

    font-size:
      10px;

    line-height:
      1.55;
  }


  .support-about {
    padding:
      32px
      14px
      36px;
  }

  .support-about__label,
  .support-fanbox__label {
    margin-bottom:
      7px;

    font-size:
      7px;
  }

  .support-about__title,
  .support-fanbox__title {
    margin-bottom:
      16px;

    font-size:
      22px;

    line-height:
      1.35;
  }

  .support-about__text {
    margin-bottom:
      14px;

    font-size:
      10px;

    line-height:
      1.65;
  }


  .support-fanbox {
    padding:
      34px
      14px
      40px;
  }

  .support-fanbox__text {
    margin-bottom:
      20px;

    font-size:
      10px;

    line-height:
      1.65;
  }

  .support-fanbox__button {
    gap:
      12px;

    padding:
      11px
      20px;

    font-size:
      9px;
  }

}

/* ========================================
   STORY PAGE
======================================== */

.story-page {
  padding-top: 72px;
  background: #ffffff;
}


.story-page__hero {
  padding: 110px 32px 90px;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 100%
    );
}


.story-page__sub {
  margin: 0 0 12px;

  color: #718a9b;

  font-size: 12px;

  letter-spacing: 0.22em;
}


.story-page__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(52px, 8vw, 100px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.08em;
}


.story-page__description {
  margin: 28px 0 0;

  color: #6c8392;

  font-size: 13px;

  letter-spacing: 0.08em;
}


/* OVERVIEW */

.story-intro {
  padding: 100px 32px 120px;
}


.story-intro__inner {
  width: min(800px, 100%);
  margin: 0 auto;

  text-align: center;
}


.story-intro__label {
  margin: 0 0 14px;

  color: #8096a5;

  font-size: 10px;

  letter-spacing: 0.2em;
}


.story-intro__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(30px, 4vw, 48px);

  font-weight: 500;
}


.story-intro__text {
  margin: 38px 0 0;

  color: #506877;

  font-size: 14px;

  line-height: 2.3;
}


/* STORY CATEGORY */

.story-category {
  width: min(1200px, 100%);
  margin: 0 auto;

  padding: 90px 32px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  align-items: center;

  gap:
    clamp(40px, 7vw, 100px);
}


.story-category__visual {
  overflow: hidden;

  aspect-ratio: 16 / 10;

  background: #edf5fa;
}


.story-category__visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.story-category__number {
  margin: 0 0 8px;

  color: #98a9b4;

  font-size: 9px;

  letter-spacing: 0.18em;
}


.story-category__label {
  margin: 0 0 10px;

  color: #6e8797;

  font-size: 11px;

  letter-spacing: 0.14em;
}


.story-category__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(34px, 5vw, 62px);

  font-weight: 500;

  line-height: 1.15;
}


.story-category__text {
  margin: 30px 0 0;

  color: #506877;

  font-size: 14px;

  line-height: 2;
}


@media (max-width: 768px) {

  .story-page {
    padding-top: 64px;
  }


  .story-page__hero {
    padding:
      80px
      20px
      65px;
  }


  .story-intro {
    padding:
      75px
      20px
      90px;
  }

  .story-category {
    display: flex;
    flex-direction: column;

    padding:
      60px
      20px;

    gap: 30px;
  }


  .story-category__body {
    order: 1;

    width: 100%;
  }


  .story-category__visual {
    order: 2;

    width: 100%;

    aspect-ratio:
      16 / 10;
  }


  .story-category__visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

}

/* ========================================
   SYSTEM PAGE
======================================== */

.system-page {
  padding-top: 72px;
  background: #ffffff;
}


.system-page__hero {
  padding: 110px 32px 90px;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 100%
    );
}


.system-page__sub {
  margin: 0 0 12px;

  color: #718a9b;

  font-size: 12px;

  letter-spacing: 0.22em;
}


.system-page__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(52px, 8vw, 100px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.08em;
}


.system-page__description {
  margin: 28px 0 0;

  color: #6c8392;

  font-size: 13px;

  letter-spacing: 0.08em;
}


/* OVERVIEW */

.system-intro {
  padding: 100px 32px 120px;
}


.system-intro__inner {
  width: min(800px, 100%);
  margin: 0 auto;

  text-align: center;
}


.system-intro__label {
  margin: 0 0 14px;

  color: #8096a5;

  font-size: 10px;

  letter-spacing: 0.2em;
}


.system-intro__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(30px, 4vw, 48px);

  font-weight: 500;
}


.system-intro__text {
  margin: 38px 0 0;

  color: #506877;

  font-size: 14px;

  line-height: 2.3;
}


/* system CATEGORY */

.system-category {
  width: min(1200px, 100%);
  margin: 0 auto;

  padding: 90px 32px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  align-items: center;

  gap:
    clamp(40px, 7vw, 100px);
}


.system-category__visual {
  overflow: hidden;

  aspect-ratio: 16 / 10;

  background: #edf5fa;
}


.system-category__visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.system-category__number {
  margin: 0 0 8px;

  color: #98a9b4;

  font-size: 9px;

  letter-spacing: 0.18em;
}


.system-category__label {
  margin: 0 0 10px;

  color: #6e8797;

  font-size: 11px;

  letter-spacing: 0.14em;
}


.system-category__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(34px, 5vw, 62px);

  font-weight: 500;

  line-height: 1.15;
}


.system-category__text {
  margin: 30px 0 0;

  color: #506877;

  font-size: 14px;

  line-height: 2;
}


@media (max-width: 768px) {

  .system-page {
    padding-top: 64px;
  }


  .system-page__hero {
    padding:
      80px
      20px
      65px;
  }


  .system-intro {
    padding:
      75px
      20px
      90px;
  }

  .system-category {
    display: flex;

    flex-direction: column;

    gap: 20px;

    padding:
      42px
      18px;
  }


  .system-category__visual {
    order: 1;

    width: 100%;
    aspect-ratio: 16 / 10;
  }


  .system-category__body {
    order: 2;

    width: 100%;
  }


  .system-category__visual {
    aspect-ratio: 16 / 9;

    overflow: hidden;
  }


  .system-category__visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
  }

}

/* ========================================
   TOP SUPPORT
======================================== */

.top-support {
  padding: 110px 32px;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #f7fbfd 100%
    );

  text-align: center;

  border-top:
    1px solid
    rgba(73, 105, 126, 0.08);

  border-bottom:
    1px solid
    rgba(73, 105, 126, 0.08);
}


.top-support__inner {
  width: min(760px, 100%);
  margin: 0 auto;
}


.top-support__label {
  margin: 0 0 14px;

  color: #7f98a8;

  font-size: 10px;

  letter-spacing: 0.24em;
}


.top-support__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(28px, 4vw, 46px);

  font-weight: 500;

  line-height: 1.5;

  letter-spacing: 0.06em;
}


.top-support__text {
  max-width: 560px;

  margin:
    30px auto 0;

  color: #526b7a;

  font-size: 14px;

  line-height: 2;

  letter-spacing: 0.04em;
}


.top-support__link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 24px;

  min-width: 190px;

  margin-top: 38px;

  padding:
    16px
    28px;

  color: #ffffff;

  background: #55778d;

  font-size: 11px;

  letter-spacing: 0.18em;

  text-decoration: none;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}


.top-support__link:hover {
  opacity: 0.82;

  transform:
    translateY(-2px);
}


.top-support__link span {
  font-size: 16px;
}


@media (max-width: 768px) {

  .top-support {
    padding:
      80px
      20px;
  }


  .top-support__title {
    font-size: 28px;
  }


  .top-support__text {
    margin-top: 24px;

    font-size: 13px;
  }


  .top-support__link {
    width: 100%;
    max-width: 280px;

    margin-top: 32px;
  }

}

.subpage-home-link {
  position: relative;
  z-index: 2;

  display: block;

  width: min(1200px, 100%);
  margin: 0 auto;

  padding: 26px 32px 0;

  color: #718b9c;

  font-size: 9px;

  letter-spacing: 0.18em;

  text-decoration: none;
}

@media (max-width: 768px) {

  .subpage-home-link {
    padding:
      20px
      20px
      0;
  }

}

/* ========================================
   LEGAL PAGES
======================================== */

.legal-page {
  min-height: 100vh;
  padding-top: 72px;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 420px
    );
}


.legal-page__hero {
  padding:
    80px
    32px
    70px;

  text-align: center;
}


.legal-page__sub {
  margin: 0 0 14px;

  color: #718a9b;

  font-size: 11px;

  letter-spacing: 0.18em;
}


.legal-page__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(42px, 7vw, 78px);

  font-weight: 500;

  line-height: 1.2;

  letter-spacing: 0.06em;
}


.legal-content {
  width: min(900px, 100%);

  margin: 0 auto;

  padding:
    20px
    32px
    130px;
}


.legal-section {
  padding:
    42px 0;

  border-bottom:
    1px solid
    rgba(73, 105, 126, 0.13);
}


.legal-section:first-child {
  border-top:
    1px solid
    rgba(73, 105, 126, 0.13);
}


.legal-section h2 {
  margin:
    0 0
    24px;

  color: #345568;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 20px;

  font-weight: 500;
}


.legal-section p {
  margin:
    0 0
    18px;

  color: #506877;

  font-size: 13px;

  line-height: 2.1;
}


.legal-section p:last-child {
  margin-bottom: 0;
}


.legal-section ul {
  margin: 0;

  padding-left: 1.5em;

  color: #506877;

  font-size: 13px;

  line-height: 2.1;
}


.legal-update {
  margin:
    45px 0 0;

  color: #8497a4;

  font-size: 11px;

  text-align: right;
}


@media (max-width: 768px) {

  .legal-page {
    padding-top: 64px;
  }


  .legal-page__hero {
    padding:
      65px
      20px
      50px;
  }


  .legal-content {
    padding:
      0
      20px
      90px;
  }


  .legal-section {
    padding:
      34px 0;
  }


  .legal-section h2 {
    font-size: 18px;
  }


  .legal-section p,
  .legal-section ul {
    font-size: 12px;
  }

}

/* ========================================
   CREDITS
======================================== */

.credit-page {
  min-height: 100vh;

  padding-top: 72px;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 420px
    );
}


.credit-page__hero {
  padding:
    80px
    32px
    80px;

  text-align: center;
}


.credit-page__sub {
  margin:
    0 0
    12px;

  color:
    #718a9b;

  font-size:
    11px;

  letter-spacing:
    0.2em;
}


.credit-page__title {
  margin: 0;

  color:
    #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(48px, 8vw, 86px);

  font-weight:
    500;

  letter-spacing:
    0.08em;
}


.credit-page__description {
  max-width:
    620px;

  margin:
    28px auto 0;

  color:
    #627b8b;

  font-size:
    13px;

  line-height:
    2;

  letter-spacing:
    0.04em;
}


.credit-content {
  width:
    min(900px, 100%);

  margin:
    0 auto;

  padding:
    20px
    32px
    130px;
}


.credit-section {
  padding:
    50px 0;

  border-top:
    1px solid
    rgba(73, 105, 126, 0.14);
}


.credit-section:last-child {
  border-bottom:
    1px solid
    rgba(73, 105, 126, 0.14);
}


.credit-section__en {
  margin:
    0 0
    8px;

  color:
    #8da0ad;

  font-size:
    9px;

  letter-spacing:
    0.2em;
}


.credit-section__title {
  margin:
    0 0
    32px;

  color:
    #345568;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    23px;

  font-weight:
    500;
}


.credit-entry {
  padding:
    22px 0;
}


.credit-entry + .credit-entry {
  border-top:
    1px solid
    rgba(73, 105, 126, 0.08);
}


.credit-entry__role {
  margin:
    0 0
    8px;

  color:
    #879ba8;

  font-size:
    10px;

  letter-spacing:
    0.12em;
}


.credit-entry__name {
  margin:
    0;

  color:
    #405f72;

  font-size:
    15px;

  line-height:
    1.7;
}


.credit-entry__detail {
  margin:
    7px 0 0;

  color:
    #667d8c;

  font-size:
    12px;

  line-height:
    1.7;
}


.credit-section__empty {
  margin:
    0;

  color:
    #9baab3;

  font-size:
    11px;

  letter-spacing:
    0.14em;
}


@media (max-width: 768px) {

  .credit-page {
    padding-top:
      64px;
  }


  .credit-page__hero {
    padding:
      65px
      20px
      55px;
  }


  .credit-content {
    padding:
      0
      20px
      90px;
  }


  .credit-section {
    padding:
      38px 0;
  }


  .credit-section__title {
    margin-bottom:
      24px;

    font-size:
      20px;
  }

}

/* ========================================
   CONTACT
======================================== */

.contact-page {
  min-height: 100vh;

  padding-top: 72px;

  background:
    linear-gradient(
      180deg,
      #edf5fa 0%,
      #ffffff 420px
    );
}


.contact-page__hero {
  padding:
    80px
    32px
    70px;

  text-align: center;
}


.contact-page__sub {
  margin: 0 0 12px;

  color: #718a9b;

  font-size: 11px;

  letter-spacing: 0.2em;
}


.contact-page__title {
  margin: 0;

  color: #29485c;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size:
    clamp(48px, 8vw, 86px);

  font-weight: 500;

  letter-spacing: 0.08em;
}


.contact-page__description {
  max-width: 620px;

  margin: 26px auto 0;

  color: #627b8b;

  font-size: 13px;

  line-height: 2;
}


.contact-content {
  width: min(760px, 100%);

  margin: 0 auto;

  padding:
    0
    32px
    130px;
}


.contact-box {
  padding:
    50px
    45px;

  text-align: center;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid
    rgba(73,105,126,.14);
}


.contact-box__label {
  margin: 0 0 10px;

  color: #8da0ad;

  font-size: 9px;

  letter-spacing: .2em;
}


.contact-box__title {
  margin: 0;

  color: #345568;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 24px;

  font-weight: 500;
}


.contact-box__text {
  margin: 28px auto 0;

  max-width: 520px;

  color: #667d8c;

  font-size: 13px;

  line-height: 1.9;
}


.contact-box__mail {
  display: inline-block;

  margin-top: 30px;

  color: #527287;

  font-size: 13px;

  letter-spacing: .06em;
}


@media (max-width: 768px) {

  .contact-page {
    padding-top: 64px;
  }

  .contact-page__hero {
    padding:
      52px
      18px
      38px;
  }

  .contact-page__title {
    font-size:
      clamp(38px, 13vw, 54px);
  }

  .contact-page__description {
    margin-top: 18px;

    font-size: 12px;

    line-height: 1.7;
  }

  .contact-content {
    padding:
      0
      16px
      70px;
  }

  .contact-box {
    padding:
      34px
      20px;
  }

  .contact-box__title {
    font-size: 20px;
  }

  .contact-box__text {
    margin-top: 20px;

    font-size: 12px;

    line-height: 1.75;
  }

}


/* ========================================
   CHARACTER ARCHIVE - MOBILE COMPACT
======================================== */

@media (max-width: 700px) {

  .character-archive {
    padding:
      4px
      10px
      60px;
  }

  .character-archive__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 8px;
  }


  .character-archive-card__visual {
    height: auto;

    aspect-ratio: 4 / 5;
  }


  .character-archive-card__body {
    padding:
      9px
      9px
      11px;
  }


  .character-archive-card__class {
    margin-bottom: 5px;

    padding:
      2px
      5px;

    font-size: 7px;
  }


  .character-archive-card__number {
    margin-bottom: 3px;

    font-size: 6px;

    letter-spacing: .08em;
  }


  .character-archive-card__name {
    font-size:
      clamp(15px, 4.5vw, 18px);

    line-height: 1.15;
  }


  .character-archive-card__reading {
    margin-top: 3px;

    font-size: 7px;

    line-height: 1.3;

    letter-spacing: .05em;
  }

}

/* ========================================
   FINAL MOBILE LAYOUT
   スマホ版 最終統合
======================================== */

@media (max-width: 768px) {

  /* =====================================
     BASE
  ===================================== */

  body {
    font-size: 10px;
  }

  main {
    line-height: 1.5;
  }

  p {
    line-height: 1.55;
  }


  /* =====================================
     共通見出し
  ===================================== */

  .section-heading {
    margin-bottom: 12px !important;
    gap: 10px;
  }

  .section-heading__sub {
    margin: 0 0 3px !important;

    font-size: 7px !important;
    letter-spacing: 0.12em;
  }

  .section-heading__title {
    margin: 0;

    font-size: 27px !important;

    line-height: 1;
  }

  .section-heading__more {
    padding: 5px 0;

    font-size: 7px !important;
  }


  /* =====================================
     INTRODUCTION
  ===================================== */

  .introduction {
    padding:
      28px
      14px !important;
  }

  .introduction__label {
    margin-bottom:
      6px !important;

    font-size:
      7px !important;
  }

  .introduction__title {
    font-size:
      29px !important;

    line-height:
      1.05;
  }

  .introduction__title span {
    margin-top:
      5px !important;
  }

  .introduction__catchcopy {
    margin-top:
      12px !important;

    font-size:
      12px !important;

    line-height:
      1.45;
  }

  .introduction__genre {
    margin-top:
      8px !important;

    font-size:
      8px !important;

    line-height:
      1.4;
  }


  /* =====================================
     HOME NEWS
  ===================================== */

  .news-section {
    padding:
      30px
      14px !important;
  }

  .news-item {
    min-height:
      0 !important;

    padding:
      10px
      2px !important;

    grid-template-columns:
      70px
      1fr;

    gap:
      5px
      8px;
  }

  .news-item__date {
    font-size:
      8px !important;
  }

  .news-item__category {
    padding:
      3px
      5px;

    font-size:
      6px !important;
  }

  .news-item__title {
    font-size:
      10px !important;

    line-height:
      1.45;
  }


  /* =====================================
     HOME CHARACTER
  ===================================== */

  .character-section {
    padding:
      28px
      0
      30px !important;
  }

  .character-section__inner {
    width: 100%;
  }

  .character-section .section-heading {
    padding:
      0
      14px;
  }

  .character-showcase,
  .character-dots {
    display:
      none !important;
  }

  .character-mobile-gallery {
    display:
      flex !important;

    width:
      100%;

    height:
      52svh;

    min-height:
      300px;

    max-height:
      440px;

    padding:
      0
      8px;

    gap:
      0;

    overflow-x:
      auto;

    overflow-y:
      hidden;

    scroll-snap-type:
      x proximity;

    scrollbar-width:
      none;

    -webkit-overflow-scrolling:
      touch;
  }

  .character-mobile-gallery::-webkit-scrollbar {
    display:
      none;
  }

  .character-mobile-card {
    position:
      relative;

    flex:
      0 0
      calc((100vw - 16px) / 3);

    height:
      100%;

    overflow:
      hidden;

    border-right:
      1px solid
      rgba(70, 100, 120, 0.20);

    scroll-snap-align:
      start;
  }

  .character-mobile-card:first-child {
    border-left:
      1px solid
      rgba(70, 100, 120, 0.20);
  }

  .character-mobile-card__visual {
    position:
      relative;

    width:
      100%;

    height:
      100%;

    overflow:
      hidden;
  }

  .character-mobile-card__image {
    position: absolute;

    left: 50%;
    top: 0;
    bottom: auto;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center top;

    transform:
      translateX(-50%)
      translate(
        var(--mobile-top-x, 0%),
        var(--mobile-top-y, 0%)
      )
      scale(
        var(--mobile-top-scale, 1)
      );

    transform-origin: center top;
  }


  /* =====================================
     HOME STORY
  ===================================== */

  .story-section {
    padding:
      30px
      14px !important;
  }

  .story-layout {
    gap:
      18px !important;
  }

  .story-copy__lead {
    font-size:
      17px !important;

    line-height:
      1.45;
  }

  .story-copy__text {
    margin-top:
      10px !important;

    font-size:
      9px !important;

    line-height:
      1.55;
  }


  /* =====================================
     HOME SYSTEM
  ===================================== */

  .system-section {
    padding:
      30px
      14px !important;
  }

  .system-intro {
    margin-bottom:
      18px !important;
  }

  .system-intro__lead {
    font-size:
      17px !important;

    line-height:
      1.45;
  }

  .system-intro__text {
    margin-top:
      10px !important;

    font-size:
      9px !important;

    line-height:
      1.55;
  }

  .system-grid {
    gap:
      12px !important;
  }

  .system-card__body {
    padding:
      14px
      14px
      16px !important;
  }

  .system-card__number {
    font-size:
      6px !important;
  }

  .system-card__title {
    font-size:
      19px !important;
  }

  .system-card__text {
    margin-top:
      8px !important;

    font-size:
      9px !important;

    line-height:
      1.5;
  }


  /* =====================================
     HOME SUPPORT
  ===================================== */

  .top-support {
    padding:
      30px
      14px !important;
  }

  .top-support__label {
    margin-bottom:
      6px !important;

    font-size:
      7px !important;
  }

  .top-support__title {
    font-size:
      21px !important;

    line-height:
      1.4;
  }

  .top-support__text {
    margin-top:
      12px !important;

    font-size:
      9px !important;

    line-height:
      1.55;
  }

  .top-support__link {
    width:
      auto !important;

    min-width:
      145px;

    margin-top:
      16px !important;

    padding:
      10px
      18px;

    font-size:
      8px !important;
  }


  /* =====================================
     GAME INFO
  ===================================== */

  .game-info-section {
    padding:
      30px
      14px !important;
  }

  .game-info-card {
    padding:
      6px
      14px !important;
  }

  .game-info-list__row {
    grid-template-columns:
      90px
      1fr !important;

    gap:
      10px !important;

    padding:
      10px
      0 !important;
  }

  .game-info-list dt {
    font-size:
      7px !important;
  }

  .game-info-list dd {
    font-size:
      9px !important;

    line-height:
      1.45;
  }


  /* =====================================
     LINKS
  ===================================== */

  .links-section {
    padding:
      30px
      14px !important;
  }

  .official-links {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;

    gap:
      7px !important;
  }

  .official-link {
    min-height:
      65px !important;

    padding:
      11px
      30px
      11px
      12px !important;
  }

  .official-link__name {
    font-size:
      11px !important;
  }

  .official-link__desc {
    margin-top:
      3px !important;

    font-size:
      7px !important;
  }

  .official-link__arrow {
    right:
      10px;

    font-size:
      14px;
  }


  /* =====================================
     CHARACTER ARCHIVE PAGE
  ===================================== */

  .character-page__hero {
    padding:
      26px
      14px
      20px !important;
  }

  .character-page__title {
    font-size:
      30px !important;
  }

  .character-page__description {
    margin-top:
      8px !important;

    font-size:
      9px !important;

    line-height:
      1.45 !important;
  }

  .character-archive {
    padding:
      3px
      10px
      40px !important;
  }


  /* =====================================
     STORY DETAIL
     現在の良い状態を維持
  ===================================== */

  .story-page__hero {
    padding:
      32px
      14px
      24px !important;
  }

  .story-page__title {
    font-size:
      32px !important;
  }

  .story-page__description {
    margin-top:
      10px !important;

    font-size:
      9px !important;

    line-height:
      1.5 !important;
  }

  .story-intro {
    padding:
      32px
      14px
      38px !important;
  }

  .story-intro__title {
    font-size:
      22px !important;
  }

  .story-intro__text {
    margin-top:
      12px !important;

    font-size:
      10px !important;

    line-height:
      1.6 !important;
  }

  .story-category {
    display:
      flex !important;

    flex-direction:
      column !important;

    padding:
      30px
      14px !important;

    gap:
      16px !important;
  }

  .story-category__visual {
    order:
      1 !important;

    width:
      100% !important;
  }

  .story-category__body {
    order:
      2 !important;

    width:
      100% !important;
  }

  .story-category__number {
    font-size:
      7px !important;
  }

  .story-category__title {
    margin-top:
      5px !important;

    font-size:
      22px !important;
  }

  .story-category__text {
    margin-top:
      10px !important;

    font-size:
      10px !important;

    line-height:
      1.6 !important;
  }


/* ==============================
   NEWS DETAIL
============================== */

.news-detail-page {
  padding:
    80px
    16px
    44px !important;
}

.news-detail__back {
  margin-bottom:
    18px !important;

  font-size:
    9px !important;
}

.news-detail__header {
  padding-bottom:
    20px !important;
}

.news-detail__meta {
  gap:
    10px !important;

  margin-bottom:
    14px !important;
}

.news-detail__date {
  font-size:
    10px !important;
}

.news-detail__category {
  padding:
    4px
    7px !important;

  font-size:
    8px !important;
}

.news-detail__title {
  font-size:
    22px !important;

  line-height:
    1.45 !important;
}

.news-detail__body {
  padding:
    24px
    0
    32px !important;

  font-size:
    13px !important;

  line-height:
    1.85 !important;
}

.news-detail__body p {
  margin-bottom:
    18px !important;
}

.news-detail__nav-button,
.news-detail__nav-list {
  font-size:
    9px !important;
}

}

/* ========================================
   TABLET / iPad IMAGE FIX
======================================== */

@media (min-width: 769px) and (max-width: 1180px) {

  /* TOP CHARACTER */
  .character-mobile-card__image {
    top: 0;
    bottom: auto;

    object-position: center top;
    transform-origin: center top;
  }

  /* CHARACTER ARCHIVE */
  .character-archive-card__image {
    object-position: center top;
    transform-origin: center top;
  }

  /* CHARACTER DETAIL */
  .character-detail__image {
    object-position: center top;
    transform-origin: center top;
  }

}