/* ===== Reset ===== */
/* Browser compatibility: viewport/unit division is calculated in wp_head JS; avoid CSS typed arithmetic here. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#smooth-wrapper {
  overflow-x: clip;
  overflow-y: visible;
}

#smooth-content {
  will-change: auto;
}

body {
  margin: 0;
  color: #fff;
}

:root {
  --sp-base: 390;
  --sp-unit: calc(100vw / var(--sp-base));
}

/* ===== 共通 ===== */
.section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== 背景 ===== */
.top-page-bg {
  position: fixed;
  inset: 0;
  background: #ef7051;
  z-index: -1;
  pointer-events: none;
}

/* ===== ローディング画面 ===== */
.loading {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.loading-logo {
  position: relative;
  width: 158px;
  aspect-ratio: 1 / 1;
}

.loading-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 上にグレー（常に全体表示） */
.loading-logo .logo-gray {
  filter: grayscale(1) brightness(1);
  opacity: 1;
}

/* 下にカラー（最初は見えない→上から下へ露出） */
.loading-logo .logo-color {
  clip-path: inset(100% 0 0 0); /* ← JS側で上書きされる前提 */
  will-change: clip-path;
}

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 1.1vw, 16px) clamp(16px, 1.6vw, 24px);
}

/* ロゴ */
.site-logo img {
  height: clamp(32px, 2.2vw, 40px);
  width: auto;
  display: block;
}

/* ===== ハンバーガーボタン ===== */
.hamburger {
  width: clamp(28px, 2.2vw, 32px);
  height: clamp(20px, 1.7vw, 24px);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  bottom: auto;
  top: 10px;
  transform: rotate(-45deg);
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(2px, 0.22vw, 3px);
  background: #f6dfff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  border-radius: 40px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ===== メニュー本体 ===== */
.hamburger-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    visibility 0s linear 0.35s;
  visibility: hidden;
  pointer-events: none;
}

.hamburger-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.35s ease,
    visibility 0s;
}

.hamburger-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.hamburger-menu li {
  margin: 16px 0;
}

.hamburger-menu a {
  color: #f6dfff;
  text-decoration: none;
  font-size: 24px;
}

/* ===== FV ===== */
:root {
  --fv-base-w: 1470px;
  --fv-base-h: 980px;

  /* 1470 x 980 の基準フレームを、画面の幅・高さの両方に収める */
  --fv-scale-x: var(--tenyo-vw-ratio-1470, 1);
  --fv-scale-y: var(--tenyo-vh-ratio-980, 1);
  --fv-scale: var(--tenyo-fv-scale, 1);

  /* 現行デザイン値 */
  --fv-door-w: 1378px;
  --fv-copy-w: 452px;
  --fv-copy-x: 294px;
  --fv-copy-y: -44px;
  --fv-buttons-right: 47px;
  --fv-buttons-bottom: 80px;
}

.fv {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  background: #1b203f url(../img/top/fv_bg.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: 10;
}

/* 2300px以上は中央寄せ */
.fv-stage {
  position: relative;
  width: 100%;
  max-width: 2300px;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
}

/* 1470 x 980 の完成レイアウトを viewport に contain させる */
.fv-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1470px;
  height: 980px;
  transform: translate(-50%, -50%) scale(var(--fv-scale));
  transform-origin: center center;
}

.door-container {
  position: absolute;
  inset: 0;
  z-index: 10;
  transform-origin: 50% 50%;
}

.door {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--fv-door-w);
  height: auto;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  z-index: 1;
}

.fv-copy-wrap {
  --reveal: 0;
  position: absolute;
  top: calc(50% + var(--fv-copy-y));
  left: calc(50% + var(--fv-copy-x));
  transform: translate(-50%, -50%);
  width: var(--fv-copy-w);
  opacity: 0;
  z-index: 30;
}

.fv-copy-inner {
  position: relative;
  width: 100%;
}

.fv-copy-base {
  display: block;
  width: 100%;
  height: auto;
}

.fv-copy-highlight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(
    135deg,
    rgba(0, 0, 0, var(--reveal)) 0%,
    rgba(0, 0, 0, var(--reveal)) 100%
  );
  mask-image: linear-gradient(
    135deg,
    rgba(0, 0, 0, var(--reveal)) 0%,
    rgba(0, 0, 0, var(--reveal)) 100%
  );
}

/* ボタンも1470基準フレーム内で配置 */
.fv-buttons {
  position: absolute;
  right: var(--fv-buttons-right);
  bottom: var(--fv-buttons-bottom);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
}

.fv-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 10px 16px;
  border: 1px solid #ef8d72;
  color: #ef8d72;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  background: transparent;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.fv-button:hover {
  color: #fff;
  background: #ef8d72;
}

.fv-frame a,
.fv-frame button {
  pointer-events: auto;
}

/* lock */
html.is-scroll-locked,
body.is-scroll-locked {
  overflow: hidden;
  height: 100%;
  touch-action: none;
  overscroll-behavior: none;
}

/* ========================================
   FV - TABLET
   PC版レイアウトを維持しつつ、幅・高さの両方に収める
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    overflow: hidden;

    /* 従来のタブレットの見え方を維持しつつ、高さ不足時は自動縮小 */
    --fv-scale: var(--tenyo-fv-tablet-scale, 1);
  }

  .fv-stage {
    position: relative;
    width: 100%;
    max-width: 2300px;
    height: 100%;
    min-height: 0;
    margin: 0 auto;
    overflow: hidden;
  }

  .fv-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1470px;
    height: 980px;
    transform: translate(-50%, -50%) scale(var(--fv-scale));
    transform-origin: center center;
  }

  /* コピー位置を少しだけ整える */
  .fv-copy-wrap {
    top: calc(50% + var(--fv-copy-y) + 8px);
    left: calc(50% + var(--fv-copy-x) - 8px);
    width: 470px;
  }

  /* CTAを少しだけ大きく、中央寄りに */
  .fv-buttons {
    right: 142px;
    bottom: 10px;
    gap: 14px;
    width: 280px;
  }

  .fv-button {
    min-height: 74px;
    padding: 12px 18px;
    font-size: 21px;
    line-height: 1.4;
  }
}

/* ===============================
   FV SP
================================ */
@media screen and (max-width: 767px) {
  .fv {
    position: relative;
    height: var(--app-height, 100vh);
    min-height: var(--app-height, 100vh);
    max-height: var(--app-height, 100vh);
    overflow: hidden;
    background-position: center top;
    background-size: cover;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: auto;
  }

  .fv-stage {
    position: relative;
    width: 100%;
    max-width: none;
    height: var(--app-height, 100vh);
    min-height: var(--app-height, 100vh);
    max-height: var(--app-height, 100vh);
    margin: 0;
    overflow: hidden;
  }

  .fv-frame {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: var(--app-height, 100vh);
    min-height: var(--app-height, 100vh);
    max-height: var(--app-height, 100vh);
    transform: none;
    overflow: hidden;
  }

  .door-container {
    position: absolute;
    inset: 0;
    z-index: 10;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .door {
    position: absolute;
    /* SP: 前回より約1割下へ戻し、ドアとコピーのバランスを調整 */
    top: 38%;
    left: 53%;
    width: 182vw;
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%) translateZ(0);
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .fv-copy-wrap {
    --reveal: 0;
    position: absolute;
    top: 66%;
    left: 50%;
    width: min(78vw, 310px);
    transform: translate(-50%, -50%) rotate(-8deg) translateZ(0);
    opacity: 0;
    z-index: 30;
    will-change: transform, opacity;
  }

  .fv-copy-inner {
    width: 100%;
  }

  .fv-copy-base,
  .fv-copy-highlight {
    width: 100%;
    height: auto;
    backface-visibility: hidden;
  }

  .fv-buttons {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: max(74px, env(safe-area-inset-bottom));
    transform: translateX(-50%) translateZ(0);
    z-index: 40;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: min(calc(100% - 32px), 330px);
    margin: 0;
  }

  .fv-button {
    flex: 1 1 0;
    min-height: 48px;
    padding: 10px 8px;
    font-size: 13px;
    line-height: 1.3;
  }
}

/* ===============================
   FV Smoke
================================ */
.fv-smoke {
  position: absolute;
  inset: 0;
  z-index: 15;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}

.fv-smoke .smoke-img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  filter: blur(2px);
  will-change: transform;
}

/* PC */
.fv-smoke.smoke-01 .smoke-img {
  width: clamp(3600px, 290vw, 6200px);
  left: -104vw;
  top: -96vh;
}

.fv-smoke.smoke-02 .smoke-img {
  width: clamp(3600px, 290vw, 6200px);
  left: -78vw;
  top: -24vh;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv-smoke.smoke-01 .smoke-img {
    width: clamp(3200px, 420vw, 5600px);
    left: -130vw;
    top: -66vh;
  }

  .fv-smoke.smoke-02 .smoke-img {
    width: clamp(3200px, 420vw, 5600px);
    left: -142vw;
    top: -10vh;
  }
}

@media screen and (max-width: 767px) {
  .fv-smoke.smoke-01 .smoke-img {
    width: clamp(2200px, 620vw, 3600px);
    left: -260vw;
    top: -65vh;
  }

  .fv-smoke.smoke-02 .smoke-img {
    width: clamp(2200px, 620vw, 3600px);
    left: -298vw;
    top: -9vh;
  }
}

/* ========================================
   水晶 基礎レイアウト
   高さは幅基準で固定
======================================== */
.crystal {
  --crystal-frame-w: 1470px;
  --crystal-frame-h: 1187px;

  /* 幅基準だけで縮小 */
  --crystal-scale: var(--tenyo-scale-1470, 1);

  /* 手以外を少し大きめ */
  --crystal-content-scale: 1.35;

  /* 上下余白も幅基準 */
  --crystal-space-top: calc(72px * var(--crystal-scale));
  --crystal-space-bottom: calc(72px * var(--crystal-scale));

  /* hand */
  --crystal-hand-lt-top: 0;
  --crystal-hand-lt-left: -10px;
  --crystal-hand-lt-w: 316px;

  --crystal-hand-rb-top: 820px;
  --crystal-hand-rb-right: 0;
  --crystal-hand-rb-bottom: auto;
  --crystal-hand-rb-w: 316px;

  /* glow */
  --crystal-glow-w: 960px;
  --crystal-glow-blur: 32px;

  /* crystal */
  --crystal-img-w: 911px;
  --crystal-img-transform: scale(1);

  /* texts */
  --crystal-texts-w: 1470px;
  --crystal-texts-h: 1187px;

  /* smoke */
  --crystal-smokes-w: 200vw;
  --crystal-smokes-opacity: 0.3;
  --crystal-smoke-opacity: 0.32;
  --crystal-smoke-img-w: clamp(1400px, 150vw, 2600px);

  position: relative;
  height: calc(
    (var(--crystal-frame-h) * var(--crystal-scale)) + var(--crystal-space-top) +
      var(--crystal-space-bottom)
  );
  min-height: calc(
    (var(--crystal-frame-h) * var(--crystal-scale)) + var(--crystal-space-top) +
      var(--crystal-space-bottom)
  );
  background: #1b203f;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 20;
  overflow: hidden;
}

.crystal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 2300px;
  margin: 0 auto;
  overflow: visible;
}

.crystal-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--crystal-frame-w);
  height: var(--crystal-frame-h);
  transform: translate(-50%, -50%) scale(var(--crystal-scale));
  transform-origin: center center;
}

/* ===== hand ===== */
.crystal .hand {
  position: absolute;
  opacity: 0;
  z-index: 2;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hand-lt {
  top: var(--crystal-hand-lt-top);
  left: var(--crystal-hand-lt-left);
  width: var(--crystal-hand-lt-w);
}

.hand-rb {
  top: var(--crystal-hand-rb-top);
  right: var(--crystal-hand-rb-right);
  bottom: var(--crystal-hand-rb-bottom);
  width: var(--crystal-hand-rb-w);
}

/* ===== glow ===== */
.crystal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--crystal-glow-w) * var(--crystal-content-scale));
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  filter: blur(var(--crystal-glow-blur));
  transition: opacity 0.4s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  background: radial-gradient(
    circle,
    rgba(62, 93, 199, 0.95) 0%,
    rgba(62, 93, 199, 0.72) 30%,
    rgba(40, 60, 142, 0.3) 68%,
    rgba(40, 60, 142, 0) 100%
  );
}

/* ===== crystal ===== */
.crystal-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--crystal-img-w) * var(--crystal-content-scale));
  transform: translate(-50%, -46%);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  will-change: opacity;
  backface-visibility: hidden;
}

.crystal-img-inner {
  display: block;
  width: 100%;
  height: auto;
  animation: crystalSpinLite 18s linear infinite;
  transform-origin: 50% 50%;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes crystalSpinLite {
  from {
    transform: var(--crystal-img-transform, none) rotate(0deg);
  }
  to {
    transform: var(--crystal-img-transform, none) rotate(360deg);
  }
}

/* ===== texts ===== */
.crystal-texts {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--crystal-texts-w);
  height: var(--crystal-texts-h);
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%) scale(var(--crystal-content-scale));
  transform-origin: center center;
}

.crystal-text {
  position: absolute;
  transform: translate(-50%, -50%);
}

.crystal-text .layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  will-change: opacity, filter;
  backface-visibility: hidden;
}

/* ========================================
   各テキスト
======================================== */

/* text01 */
.crystal-text.text01 {
  top: 230px;
  left: 760px;
  width: 337px;
}
.crystal-text.text01 .layer-red {
  transform: translate(0, 0);
  width: 190px;
}
.crystal-text.text01 .layer-base {
  transform: translate(200px, -16px);
  width: 130px;
}

/* text02 */
.crystal-text.text02 {
  top: 303px;
  left: 744px;
  width: 317px;
}
.crystal-text.text02 .layer-red {
  transform: translate(130px, -36px);
  width: 190px;
}
.crystal-text.text02 .layer-base {
  transform: translate(0, 12px);
  width: 120px;
}

/* text03 */
.crystal-text.text03 {
  top: 328px;
  left: 792px;
  width: 405px;
}

/* text04 */
.crystal-text.text04 {
  top: 460px;
  left: 570px;
  width: 430px;
}

/* text05 */
.crystal-text.text05 {
  top: 494px;
  left: 573px;
  width: 437px;
}
.crystal-text.text05 .layer-red {
  transform: translate(-2px, 50px);
  width: 380px;
}
.crystal-text.text05 .layer-base {
  transform: translate(0, 0);
  width: 310px;
}

/* text06 */
.crystal-text.text06 {
  top: 612px;
  left: 756px;
  width: 500px;
}

/* text07 */
.crystal-text.text07 {
  top: 680px;
  left: 661px;
  width: 307px;
}
.crystal-text.text07 .layer-red {
  transform: translate(110px, -4px);
  width: 232px;
}
.crystal-text.text07 .layer-base {
  transform: translate(0, 20px);
  width: 104px;
}

/* text08 */
.crystal-text.text08 {
  top: 744px;
  left: 746px;
  width: 347px;
}

/* text09 */
.crystal-text.text09 {
  top: 799px;
  left: 818px;
  width: 477px;
}
.crystal-text.text09 .layer-red {
  transform: translate(45px, 0);
  width: 167px;
}
.crystal-text.text09 .layer-base {
  transform: translate(0, 0);
  width: 484px;
}

/* text10 */
.crystal-text.text10 {
  top: 864px;
  left: 761px;
  width: 347px;
}

/* text11 */
.crystal-text.text11 {
  top: 943px;
  left: 626px;
  width: 321px;
}

/* text12 */
.crystal-text.text12 {
  top: 1021px;
  left: 616px;
  width: 157px;
}

/* ===== smoke ===== */
.crystal-smokes {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  width: var(--crystal-smokes-w);
  opacity: var(--crystal-smokes-opacity);
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.crystal-smokes .crystal-smoke {
  position: absolute;
  left: 20%;
  transform: translateX(-50%);
  opacity: var(--crystal-smoke-opacity);
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0.6) 65%,
    rgba(0, 0, 0, 0) 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0.6) 65%,
    rgba(0, 0, 0, 0) 80%
  );
}

.crystal-smokes .crystal-smoke .smoke-img {
  display: block;
  width: var(--crystal-smoke-img-w);
  height: auto;
  will-change: transform;
  backface-visibility: hidden;
  mix-blend-mode: screen;
}

.crystal-smokes .smoke-01,
.crystal-smokes .smoke-03 {
  top: -10%;
}

.crystal-smokes .smoke-02 {
  top: 10%;
}

.crystal-smokes .smoke-01 {
  transform: translateX(-50%) scale(1.2);
}
.crystal-smokes .smoke-02 {
  transform: translateX(-50%) scale(1.05);
}
.crystal-smokes .smoke-03 {
  transform: translateX(-50%) scale(1.12);
}

/* ========================================
   tablet
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .crystal {
    --crystal-scale: var(--tenyo-scale-980w, 1);
    --crystal-content-scale: 1.08;

    --crystal-hand-lt-top: 120px;
    --crystal-hand-lt-left: 210px;
    --crystal-hand-rb-top: auto;
    --crystal-hand-rb-right: 210px;
    --crystal-hand-rb-bottom: 80px;

    --crystal-smokes-w: 180vw;
    --crystal-smokes-opacity: 0.2;
    --crystal-smoke-opacity: 0.2;
    --crystal-smoke-img-w: clamp(1200px, 120vw, 2200px);
  }
}

/* ========================================
   sp
======================================== */
@media screen and (max-width: 767px) {
  .crystal {
    --crystal-scale: 1;
    --crystal-content-scale: 0.95;

    /* SP: 左上の手をglowから少し離す */
    --crystal-hand-lt-top: max(24px, env(safe-area-inset-top));
    --crystal-hand-lt-left: -3vw;
    --crystal-hand-lt-w: 35vw;

    --crystal-hand-rb-top: auto;
    --crystal-hand-rb-right: -6vw;
    /* SP: 右下の手をglowから少し離す */
    --crystal-hand-rb-bottom: -4vw;
    --crystal-hand-rb-w: 37vw;

    --crystal-glow-w: min(166vw, 620px);
    --crystal-glow-blur: 18px;

    --crystal-img-w: min(124vw, 640px);
    --crystal-img-transform: scale(1.25);

    --crystal-texts-w: 1420px;
    --crystal-texts-h: 1180px;

    --crystal-smokes-w: 180vw;
    --crystal-smokes-opacity: 0.2;
    --crystal-smoke-opacity: 0.2;
    --crystal-smoke-img-w: min(168vw, 720px);

    height: 100svh;
    min-height: 100svh;
  }

  .crystal-frame {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .crystal-texts {
    transform: translate(-50%, -50%) scale(0.52);
  }

  .crystal-text img {
    transform: scale(0.95);
    transform-origin: center;
  }

  .crystal-text.text01 {
    top: 120px;
    left: 630px;
    width: 367px;
  }
  .crystal-text.text02 {
    top: 203px;
    left: 584px;
    width: 317px;
  }
  .crystal-text.text03 {
    top: 230px;
    left: 652px;
    width: 405px;
  }
  .crystal-text.text04 {
    top: 400px;
    left: 700px;
    width: 530px;
  }
  .crystal-text.text05 {
    top: 447px;
    left: 693px;
    width: 527px;
  }
  .crystal-text.text06 {
    top: 620px;
    left: 706px;
    width: 570px;
  }
  .crystal-text.text07 {
    top: 698px;
    left: 591px;
    width: 337px;
  }
  .crystal-text.text08 {
    top: 784px;
    left: 566px;
    width: 347px;
  }
  .crystal-text.text09 {
    top: 840px;
    left: 667px;
    width: 556px;
  }
  .crystal-text.text10 {
    top: 914px;
    left: 584px;
    width: 387px;
  }
  .crystal-text.text11 {
    top: 1013px;
    left: 716px;
    width: 437px;
  }
  .crystal-text.text12 {
    top: 1121px;
    left: 706px;
    width: 208px;
  }

  .crystal-text.text01 .layer-red {
    transform: translate(0, 0);
    width: 210px;
  }
  .crystal-text.text01 .layer-base {
    transform: translate(220px, -17px);
    width: 150px;
  }

  .crystal-text.text02 .layer-red {
    transform: translate(137px, -36px);
    width: 190px;
  }
  .crystal-text.text02 .layer-base {
    transform: translate(0, 12px);
    width: 130px;
  }

  .crystal-text.text05 .layer-red {
    transform: translate(-2px, 57px);
    width: 460px;
  }
  .crystal-text.text05 .layer-base {
    transform: translate(0, 0);
    width: 360px;
  }

  .crystal-text.text07 .layer-red {
    transform: translate(120px, -4px);
    width: 252px;
  }
  .crystal-text.text07 .layer-base {
    transform: translate(0, 25px);
    width: 110px;
  }

  .crystal-text.text09 .layer-red {
    transform: translate(53px, 0);
    width: 174px;
  }
  .crystal-text.text09 .layer-base {
    transform: translate(0, -11px);
    width: 544px;
  }
}

/* ========================================
   crystal 軽量化
======================================== */
.crystal,
.crystal-inner {
  will-change: auto;
  overscroll-behavior: none;
}

.crystal-frame {
  will-change: transform;
  backface-visibility: hidden;
}

.crystal-img,
.crystal-glow,
.hand-lt,
.hand-rb {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.crystal-text .layer {
  will-change: opacity, filter;
  backface-visibility: hidden;
}

.crystal-smokes,
.crystal-smoke .smoke-img {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.crystal-inner {
  -webkit-overflow-scrolling: touch;
}

/* ===== 不思議テキスト ===== */
.fushigi {
  position: relative;
  z-index: 20;
  background: linear-gradient(
    to bottom,
    #1b203f 0%,
    #1b203f 50%,
    #ef7051 50%,
    #ef7051 100%
  );

  /* ===== 1470px 基準のスケール定義 ===== */
  --kSize: var(--tenyo-vw-ratio-1470, 1);
  --kPos: var(--tenyo-scale-1470, 1);
  --h0: 94.08px;
  --imgW0: 3400px;
  --topY0: 0;
  --bottomY0: -5px;

  /* shine に合わせて inner 全体を少し下げる */
  --innerCenterY: calc(47px * var(--kPos));

  /* pin後の余白：さらに詰める */
  --fushigi-after-space: clamp(64px, 10vh, 150px);

  /* pin 用スクロール高さ */
  height: auto;
  min-height: 0;
}

/* pinされる画面 */
.fushigi-pin {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* 背景（上：青 / 下：オレンジ） */
.fushigi-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    #1b203f 0%,
    #1b203f 50%,
    #ef7051 50%,
    #ef7051 100%
  );
}

/* ===== 中央に固定されるアニメーション本体 ===== */
.fushigi-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(var(--innerCenterY));

  width: 100%;
  height: calc(var(--h0) * var(--kPos));
  margin-top: 0 !important;
}

/* テキスト画像 */
.fushigi .fushigi-inner > img.fushigi-text {
  position: absolute;
  left: 50%;

  width: calc(var(--imgW0) * var(--kSize));
  max-width: none;
  height: auto;

  pointer-events: none;
  will-change: transform, opacity;
  opacity: 0;
  filter: none;
}

/* 上下位置と中央寄せのみ制御 */
.fushigi .fushigi-text.top {
  top: calc(var(--topY0) * var(--kPos));
  transform: translate(-50%, -50%);
}

.fushigi .fushigi-text.bottom {
  top: calc(var(--bottomY0) * var(--kPos));
  transform: translate(-50%, 50%);
}

/* shine 共通設定 */
.fushigi-shine {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--imgW0) * var(--kSize));
  max-width: none;
  height: auto;

  transform: translate(-50%, -50%);
  opacity: 0;
  filter: none;

  z-index: 3;
  pointer-events: none;
  will-change: opacity, transform;
}

/* ===== pin解除後の余白 ===== */
.fushigi::after {
  content: "";
  display: block;
  width: 100%;
  height: var(--fushigi-after-space);
  pointer-events: none;
}

.pin-spacer.pin-spacer-fushigiText {
  z-index: 20 !important;
}

/* ===============================
   fushigi SP
================================ */
@media screen and (max-width: 767px) {
  .fushigi {
    position: relative;
    height: auto;
    min-height: 0;
    z-index: 20;
    --fushigi-main-w: min(270vw, 1060px);

    /* SPも高さに応じて可変 */
    --fushigi-after-space: clamp(20px, 4.5vh, 56px);
  }

  .fushigi-pin {
    position: relative;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    z-index: 21;
    isolation: isolate;
  }

  .fushigi-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
      to bottom,
      #1b203f 0%,
      #1b203f 50%,
      #ef7051 50%,
      #ef7051 100%
    );
  }

  .fushigi-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: auto;
    margin-top: 0 !important;
    transform: translate(-50%, -50%);
  }

  .fushigi .fushigi-inner > img.fushigi-text {
    position: absolute;
    left: 50%;
    width: var(--fushigi-main-w);
    max-width: none;
    height: auto;
    pointer-events: none;
    will-change: transform, opacity;
    opacity: 0;
    filter: none;
  }

  .fushigi .fushigi-text.top {
    top: 50%;
    transform: translate(-50%, -100%);
  }

  .fushigi .fushigi-text.bottom {
    top: 50%;
    transform: translate(-50%, 0%);
  }

  .fushigi-shine {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--fushigi-main-w);
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: none;
    z-index: 3;
    pointer-events: none;
    will-change: opacity, transform;
  }
}

/* ===== 円形商品 ===== */
.lineup-gap {
  height: var(--gapH, 60px);
}

:root {
  --lineup-base-w: 1470px;
  --lineup-max-w: 2300px;

  /* 1470以下だけ縮小。1470以上は常に1 */
  --k: var(--tenyo-scale-1470, 1);
  --kDetail: var(--tenyo-scale-1470, 1);

  /* 背景円（1470px基準） */
  --lineup-circle-size: 1010px;
  --lineup-circle-top: 680px;
  --lineup-circle-left: 1260px;

  /* mask */
  --lineup-mask-top: -10px;
  --lineup-mask-left: 564px;
  --lineup-mask-w: 890px;
  --lineup-mask-h: 930px;

  /* rotator */
  --rotW0: 1160px;
  --rotH0: 1160px;
  --rotTopP0: 78%;
  --rotLeftP0: 78%;

  /* hand */
  --handW0: 430px;
  --handH0: 620px;
  --handLeft0: 320px;
  --handTop0: 320px;

  --handTopW0: 247px;
  --handTopH0: 257px;
  --handTopLeft0: 389px;
  --handTopTop0: 358px;
}

.lineup {
  position: relative;
  z-index: 1;
  --lineup-item-w: 129px;
  --lineup-item-h: 180px;
}

/* pin本体 */
.lineup-pin {
  position: relative;
  height: 100vh;
  max-height: none !important;
  overflow: visible;
  z-index: 10;
}

/* 中央寄せステージ */
.lineup-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 2300px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* GSAPがpinY / shiftXを入れる移動レイヤー */
.lineup-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(calc(var(--pinY, 0px)))
    translateX(calc(var(--shiftX, 0px)));
  transform-origin: 50% 0%;
}

/* 1470px基準の見た目レイヤー */
.lineup-frame {
  position: relative;
  width: 1470px;
  height: 100vh;
  margin: 0 auto;
  transform-origin: center top;
  pointer-events: none;
}

.lineup-stage a,
.lineup-stage button {
  pointer-events: auto;
}

.lineup-bg,
.lineup-bg-circle {
  position: absolute;
  left: 0;
  width: 1470px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.lineup-bg {
  top: -280px;
  background: url(../img/top/lineup-bg.webp) no-repeat right top;
  background-size: 100% auto;
  height: 1680px;
  clip-path: inset(0 0 100% 0);
  will-change: opacity, clip-path;
}

/* 青円 */
.lineup-bg-circle::before {
  content: "";
  position: absolute;
  width: var(--lineup-circle-size);
  height: var(--lineup-circle-size);
  border-radius: 50%;
  background: #3957cc;
  top: var(--lineup-circle-top);
  left: var(--lineup-circle-left);
  transform: translate(-50%, -50%);
}

.lineup-mask {
  position: absolute;
  top: var(--lineup-mask-top);
  left: var(--lineup-mask-left);
  width: var(--lineup-mask-w);
  height: var(--lineup-mask-h);
  overflow: hidden;
  z-index: 10;

  -webkit-clip-path: polygon(-120% 30%, 100% 2%, 60% 170%, 39% 90%, -400% 226%);
  clip-path: polygon(-120% 30%, 100% 2%, 60% 170%, 39% 90%, -400% 226%);
}

@media screen and (max-width: 767px) {
  .lineup-mask {
    clip-path: polygon(-240% -20%, 100% 2%, 70% 170%, 39% 90%, -400% 226%);
  }
}

/* 回転コンテナ */
.lineup-rotator {
  position: absolute;
  width: var(--rotW0);
  height: var(--rotH0);
  top: var(--rotTopP0);
  left: var(--rotLeftP0);
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}

/* 商品画像 */
.lineup-item {
  position: absolute;
  width: var(--lineup-item-w);
  height: var(--lineup-item-h);
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform-origin: 50% 50%;
  z-index: 1;
  display: block;
  flex: none;
}

.lineup-img-focus {
  z-index: 20;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

/* 手 */
.lineup-hand,
.lineup-hand-top {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.lineup-hand {
  width: var(--handW0);
  height: var(--handH0);
  left: var(--handLeft0);
  top: var(--handTop0);
  background-image: url(../img/top/lineup-hand.webp);
  z-index: 0;
  transform: rotate(10deg);
}

.lineup-hand-top {
  width: var(--handTopW0);
  height: var(--handTopH0);
  left: var(--handTopLeft0);
  top: var(--handTopTop0);
  background-image: url(../img/top/lineup-hand-top.webp);
  z-index: 1;
  transform: rotate(10deg);
}

/* detail */
.lineup-detail {
  position: absolute;
  top: 290px;
  left: 60px;
  width: 490px;
  z-index: 40;
  transform-origin: left top;
  pointer-events: auto;
  transform: rotate(-34deg);
}

.lineup-detail__fixed {
  position: relative;
}

.lineup-detail__heading {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

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

.lineup-detail__archive-button {
  position: absolute;
  top: 10px;
  right: -180px;
  width: 150px;
  height: 150px;
  background: url(../img/top/lineup-archive-bg.svg) center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  transform: rotate(34deg);
}

.lineup-detail__archive-button:hover {
  opacity: 0.7;
}

.lineup-detail__archive-button-text {
  font-size: 24px;
  font-weight: 700;
  color: #2056d0;
  text-align: center;
  line-height: 1.2;
}

.lineup-detail__dynamic {
  margin-top: 50px;
  padding: 0 24px;
}

.lineup-detail-content {
  color: #2056d0;
}

.lineup-detail__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.lineup-detail__description {
  margin-top: 18px;
  max-width: 440px;
  min-height: calc(15px * 1.75 * 6);
  max-height: calc(15px * 1.75 * 6);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: justify;
}

.lineup-detail__footer {
  display: grid;
  grid-template-columns: 108px 108px 190px;
  align-items: end;
  gap: 14px;
  margin-top: 28px;
}

.lineup-detail__meta {
  display: contents;
}

.lineup-detail__badge {
  flex-shrink: 0;
}

.lineup-detail__badge--new,
.lineup-detail__badge--time {
  position: relative;
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lineup-detail__badge--new {
  background: url(../img/top/lineup-new-bg.svg) center / contain no-repeat;
  color: #fff;
}

.lineup-detail__badge--time {
  background: url(../img/top/lineup-time-bg.svg) center / contain no-repeat;
  color: #f2fb7a;
  text-align: center;
}

.lineup-detail__badge-new-text {
  margin-top: 2px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #f1ffbc;
}

.lineup-detail__badge-time-label {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.lineup-detail__badge-time-value {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.lineup-detail__badge-time-unit {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

/* ========================================
   lineup demo button（塗り→枠）
======================================== */

.lineup-detail__demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-width: 170px;
  height: 62px;
  padding: 0 34px;

  /* ▼ 通常（青塗り） */
  background: #3559d8;
  color: #fff;
  border: 2px solid #3559d8;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;

  cursor: pointer;
  appearance: none;
  white-space: nowrap;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.lineup-detail__demo-button-text {
  white-space: nowrap;
  flex-shrink: 0;
}

.lineup-detail__button-wrap {
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lineup-detail__badge.is-placeholder,
.lineup-detail__button-wrap.is-placeholder {
  visibility: hidden;
  pointer-events: none;
}

/* ▼ 矢印（通常：白） */
.lineup-detail__demo-button-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

/* ▼ hover（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .lineup-detail__demo-button:hover {
    background: #fff;
    color: #3559d8;
    border-color: #3559d8;
  }

  /* ▼ 矢印も青に戻す */
  .lineup-detail__demo-button:hover .lineup-detail__demo-button-icon {
    border-left-color: #3559d8;
  }
}

/* 1470以下の見た目縮小に合わせて detail も縮小 */
@media screen and (max-width: 1470px) {
  .lineup-detail {
    transform: scale(var(--k)) rotate(-34deg);
    transform-origin: left top;
  }
}

/* 画面高さに依存させないPC用lineup高さ */
@media screen and (min-width: 1024px) {
  .lineup-pin,
  .lineup-stage,
  .lineup-canvas,
  .lineup-frame {
    height: 980px;
    min-height: 980px;
  }

  .lineup {
    margin-bottom: 260px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .lineup-gap {
    height: 0;
  }

  .lineup {
    min-height: 150vh;
    --k: 1;
    --kDetail: 1;
    --lineup-item-w: 128px;
    --lineup-item-h: 160px;
  }

  .lineup-pin {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    z-index: 10;
  }

  .lineup-stage {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
  }

  /* ★ 全体を少し縮小 */
  .lineup-canvas {
    position: relative;
    height: 100%;
    transform: translateY(calc(74 / 390 * 100vw)) scale(1);
    transform-origin: 50% 0;
  }

  .lineup-frame {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .lineup-bg,
  .lineup-bg-circle {
    transform: none;
  }

  .lineup-bg {
    position: absolute;
    top: -190px;
    left: -140px;
    width: 1360px;
    height: 1130px;
    background: url(../img/top/lineup-bg.webp) no-repeat center top;
    background-size: contain;
    clip-path: inset(0 0 100% 0);
    will-change: opacity, clip-path;
  }

  /* ★ 縮小後に円位置を補正 */
  .lineup-bg-circle {
    position: absolute;
    width: calc(390 / 390 * 100vw);
    height: calc(390 / 390 * 100vw);
    top: calc(310 / 390 * 100vw);
    left: calc(328 / 390 * 100vw);
    transform: translate(-50%, -50%);
  }

  .lineup-bg-circle::before {
    content: "";
    position: absolute;

    width: calc(380 / 390 * 100vw);
    height: calc(380 / 390 * 100vw);

    top: calc(230 / 390 * 100vw);
    left: calc(230 / 390 * 100vw);

    border-radius: 50%;
    background: #3957cc;

    transform: translate(-50%, -50%);
  }

  .lineup-mask {
    position: absolute;
    top: 210px;
    left: 60px;
    width: 800px;
    height: 600px;
    overflow: hidden;
    transform: rotate(-8deg);

    -webkit-clip-path: polygon(
      24% 18%,
      99% 0%,
      100% 78%,
      98% 128%,
      -19% 90%,
      4% 86%
    );
    clip-path: polygon(24% 5%, 99% 0%, 100% 78%, 98% 128%, -19% 90%, 4% 86%);
  }

  .lineup-rotator {
    width: calc(620 / 390 * 100vw);
    height: calc(620 / 390 * 100vw);
    top: calc(345 / 390 * 100vw);
    left: calc(370 / 390 * 100vw);
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
  }

  .lineup-hand {
    position: absolute;
    width: 250px;
    height: 360px;
    left: 418px;
    top: 257px;
    transform: rotate(10deg);
    background-size: contain;
  }

  .lineup-hand-top {
    position: absolute;
    width: 130px;
    height: 145px;
    left: 460px;
    top: 274px;
    transform: rotate(10deg);
    background-size: contain;
  }

  .lineup-detail {
    position: absolute;
    top: 0;
    left: 18px;
    width: 350px;
    z-index: 40;
    transform: rotate(-17deg) scale(1);
    transform-origin: left top;
  }

  .lineup-detail__heading {
    width: 290px;
  }

  .lineup-detail__archive-button {
    top: -10px;
    right: -72px;
    width: 108px;
    height: 108px;
    transform: rotate(17deg);
  }

  .lineup-detail__archive-button-text {
    font-size: 18px;
    line-height: 1.15;
  }

  .lineup-detail__dynamic {
    margin-top: 24px;
    padding: 0 14px;
  }

  .lineup-detail__title {
    font-size: 22px;
    line-height: 1.15;
  }

  .lineup-detail__description {
    margin-top: 14px;
    max-width: unset;
    min-height: calc(14px * 1.75 * 6);
    max-height: calc(14px * 1.75 * 6);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 1.75;
  }

  .lineup-detail__footer {
    display: grid;
    grid-template-columns: 78px 78px 156px;
    gap: 12px;
    margin-top: 18px;
    align-items: center;
  }

  .lineup-detail__meta {
    display: contents;
  }

  .lineup-detail__button-wrap {
    width: 156px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lineup-detail__demo-button {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    gap: 8px;
    border-width: 1px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .lineup-detail__demo-button-text {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .lineup-detail__demo-button-icon {
    display: inline-block;
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #fff;
  }

  .lineup-detail__badge--new,
  .lineup-detail__badge--time {
    width: 78px;
    height: 78px;
  }

  .lineup-detail__badge-new-text {
    margin-top: 4px;
    font-size: 20px;
  }

  .lineup-detail__badge-time-label {
    font-size: 8px;
  }

  .lineup-detail__badge-time-value {
    font-size: 28px;
  }

  .lineup-detail__badge-time-unit {
    font-size: 10px;
  }
}

/* ===============================
   lineup SP
================================ */
@media screen and (max-width: 767px) {
  .lineup-gap {
    height: 0;
  }

  .lineup {
    min-height: 165vh;
    --k: 1;
    --kDetail: 1;

    /* 商品画像を約5%小さく */
    --lineup-item-w: calc(78 / 390 * 100vw);
    --lineup-item-h: calc(113 / 390 * 100vw);
  }

  .lineup-pin {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    z-index: 10;
  }

  .lineup-stage {
    top: calc(34 / 390 * 100vw);
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
  }

  .lineup-canvas {
    height: 100%;
    transform: translateY(calc(74 / 390 * 100vw)) scale(1);
    transform-origin: 50% 0;
  }

  .lineup-bg,
  .lineup-bg-circle {
    transform: none;
  }

  .lineup-bg {
    position: absolute;

    top: calc(-220 / 390 * 100vw);
    left: calc(-90 / 390 * 100vw);

    width: calc(920 / 390 * 100vw);
    height: calc(830 / 390 * 100vw);

    background: url(../img/top/lineup-bg.webp) no-repeat center top;
    background-size: contain;

    clip-path: inset(0 0 100% 0);
    will-change: opacity, clip-path;
  }

  .lineup-bg-circle {
    width: calc(530 / 390 * 100vw);
    height: calc(530 / 390 * 100vw);
    top: calc(630 / 390 * 100vw);
    left: calc(258 / 390 * 100vw);
    transform: translate(-50%, -50%);
  }

  .lineup-bg-circle::before {
    content: "";
    position: absolute;
    width: calc(530 / 390 * 100vw);
    height: calc(530 / 390 * 100vw);
    top: calc(240 / 390 * 100vw);
    left: calc(310 / 390 * 100vw);
    border-radius: 50%;
    background: #3957cc;
    transform: translate(-50%, -50%);
  }

  .lineup-mask {
    top: calc(230 / 390 * 100vw);
    left: calc(-44 / 390 * 100vw);
    width: calc(560 / 390 * 100vw);
    height: calc(510 / 390 * 100vw);
    overflow: hidden;
    transform: rotate(-8deg);
  }

  .lineup-rotator {
    width: calc(780 / 390 * 100vw);
    height: calc(780 / 390 * 100vw);
    top: calc(458 / 390 * 100vw);
    left: calc(408 / 390 * 100vw);
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
  }

  .lineup-hand {
    width: calc(188 / 390 * 100vw);
    height: calc(270 / 390 * 100vw);
    left: calc(246 / 390 * 100vw);
    top: calc(182 / 390 * 100vw);
    transform: rotate(10deg);
    background-size: contain;
  }

  .lineup-hand-top {
    width: calc(98 / 390 * 100vw);
    height: calc(108 / 390 * 100vw);
    left: calc(275 / 390 * 100vw);
    top: calc(184 / 390 * 100vw);
    transform: rotate(10deg);
    background-size: contain;
  }

  .lineup-detail {
    top: calc(2 / 390 * 100vw);
    left: calc(8 / 390 * 100vw);
    width: calc(282 / 390 * 100vw);
    z-index: 40;
    transform: rotate(-17deg) scale(1);
    transform-origin: left top;
  }

  .lineup-detail__heading {
    width: calc(210 / 390 * 100vw);
  }

  .lineup-detail__archive-button {
    /* SP: 上端から離し、少し左下へ */
    top: calc(4 / 390 * 100vw);
    right: calc(-42 / 390 * 100vw);
    width: calc(82 / 390 * 100vw);
    height: calc(82 / 390 * 100vw);
    transform: rotate(17deg);
  }

  .lineup-detail__archive-button-text {
    font-size: clamp(11px, calc(13 / 390 * 100vw), 13px);
    line-height: 1.15;
  }

  .lineup-detail__dynamic {
    margin-top: calc(18 / 390 * 100vw);
    padding: 0 calc(8 / 390 * 100vw);
  }

  .lineup-detail__title {
    font-size: clamp(15px, calc(17 / 390 * 100vw), 18px);
    line-height: 1.15;
  }

  .lineup-detail__description {
    margin-top: calc(10 / 390 * 100vw);
    max-width: unset;
    min-height: calc(10px * 1.7 * 5);
    max-height: calc(10px * 1.7 * 5);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: clamp(9px, calc(10 / 390 * 100vw), 11px);
    line-height: 1.7;
  }

  .lineup-detail__footer {
    display: grid;
    grid-template-columns:
      calc(68 / 390 * 100vw)
      calc(68 / 390 * 100vw)
      minmax(0, 1fr);
    width: 100%;
    gap: calc(7 / 390 * 100vw);
    margin-top: calc(12 / 390 * 100vw);
    align-items: center;
  }

  .lineup-detail__meta {
    display: contents;
  }

  .lineup-detail__button-wrap {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: stretch;
  }

  .lineup-detail__demo-button {
    width: 100%;
    min-width: 0;
    height: calc(32 / 390 * 100vw);
    padding: 0 calc(7 / 390 * 100vw);
    gap: calc(5 / 390 * 100vw);
    border-width: 1px;
    font-size: clamp(9px, calc(10 / 390 * 100vw), 10px);
    line-height: 1;
    white-space: nowrap;
  }

  .lineup-detail__demo-button-text {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .lineup-detail__demo-button-icon {
    display: inline-block;
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-top: calc(4.5 / 390 * 100vw) solid transparent;
    border-bottom: calc(4.5 / 390 * 100vw) solid transparent;
    border-left: calc(7 / 390 * 100vw) solid #fff;
  }

  .lineup-detail__badge--new,
  .lineup-detail__badge--time {
    width: calc(68 / 390 * 100vw);
    height: calc(68 / 390 * 100vw);
  }

  .lineup-detail__badge-new-text {
    margin-top: calc(2 / 390 * 100vw);
    font-size: clamp(14px, calc(16 / 390 * 100vw), 16px);
  }

  .lineup-detail__badge-time-label {
    font-size: clamp(7px, calc(8 / 390 * 100vw), 8px);
  }

  .lineup-detail__badge-time-value {
    font-size: clamp(21px, calc(24 / 390 * 100vw), 24px);
  }

  .lineup-detail__badge-time-unit {
    font-size: clamp(8px, calc(9 / 390 * 100vw), 9px);
  }
}

/* ========================================
   ボールエリア
   1470px基準 / 1469px以下縮小 / 2300px以上中央寄せ
======================================== */
.ball-section {
  --ball-scale: var(--tenyo-scale-1470, 1);
  --ball-base-h: 500px;
  --ball-stage-w: 1470px;

  position: relative;
  overflow: visible;
  height: var(--ball-base-h);
  min-height: var(--ball-base-h);
  margin-top: 260px;
}

.ball-scale {
  position: relative;
  width: var(--ball-stage-w);
  height: var(--ball-base-h);
  margin: 0 auto;
  overflow: visible;
}

.ball-stage {
  position: relative;
  width: 1470px;
  height: var(--ball-base-h);
  margin: 0 auto;
}

.hand-left,
.hand-right {
  position: absolute;
  top: 22.6%;
  left: 0;
  width: 1470px;
  height: 100%;
}

@media screen and (max-width: 1469px) {
  .ball-section {
    height: var(--ball-base-h);
    min-height: var(--ball-base-h);
    margin-top: 260px;
  }

  .ball-stage-outer {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--ball-stage-w);
    height: var(--ball-base-h);
    transform: translateX(-50%) scale(var(--ball-scale));
    transform-origin: center top;
  }
}

.ballarea {
  position: relative;
  width: 100%;
  aspect-ratio: 1470 / 500;
  z-index: 5;
  overflow: visible;
  pointer-events: none;
}

.ball-stage a,
.ball-stage button {
  pointer-events: auto;
}

/* ===============================
   PC
================================ */
@media screen and (min-width: 1024px) {
  .ball-hand {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hand-left,
  .hand-right {
    position: absolute;
    top: 22.6%;
    left: 0;
    width: 1470px;
    height: 100%;
  }

  .ballarea .hand {
    position: absolute;
    opacity: 0;
    height: auto;
  }

  .hand01-open {
    width: 18.639%;
    top: 7%;
    left: 51.633%;
  }

  .hand01-close {
    width: 20.408%;
    top: 7%;
    left: 51.565%;
  }

  .hand02-open {
    width: 20.408%;
    top: 12%;
    left: 77.007%;
  }

  .hand02-close {
    width: 13.81%;
    top: 12%;
    left: 77.891%;
  }

  .ball-images {
    position: absolute;
    top: 50%;
    left: 84.354%;
    transform: translate(-50%, -50%);
    width: 13.605%;
    height: 40%;
  }

  .ball-img {
    position: absolute;
    opacity: 0;
  }

  .ball-img01 {
    width: 57.5%;
    top: 30%;
    left: 15%;
  }

  .ball-img02 {
    width: 77.5%;
    top: 30%;
    left: 7.5%;
  }

  .ball-img03 {
    width: 80%;
    top: 30%;
    left: 6.5%;
  }

  .ball-img04 {
    width: 77.5%;
    top: 20%;
    left: 6.5%;
  }
}

/* ========================================
   ball-section - TABLET
   PC版レイアウトベース
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ball-section {
    --ball-base-h: 500px;
    --ball-scale: var(--tenyo-scale-1360-tablet, 1);

    position: relative;
    height: 500px;
    min-height: 500px;
    margin-top: 180px;
    overflow: visible;
  }

  .ball-stage-outer {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 1470px;
    height: var(--ball-base-h);
    transform: translateX(-73%) scale(1.01);
    transform-origin: center top;
  }

  .ball-scale {
    position: relative;
    width: 1470px;
    height: var(--ball-base-h);
    margin: 0 auto;
  }

  .ball-stage {
    position: relative;
    width: 1470px;
    height: var(--ball-base-h);
    margin: 0 auto;
  }

  .ballarea {
    position: relative;
    width: 100%;
    aspect-ratio: 1470 / 500;
    z-index: 5;
    overflow: visible;
    pointer-events: none;
  }

  .ball-stage a,
  .ball-stage button {
    pointer-events: auto;
  }

  .ball-hand {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hand-left,
  .hand-right {
    position: absolute;
    top: 22.6%;
    left: 0;
    width: 1470px;
    height: 100%;
  }

  .ballarea .hand {
    position: absolute;
    opacity: 0;
    height: auto;
  }

  .hand01-open {
    width: 18.639%;
    top: 7%;
    left: 51.633%;
  }

  .hand01-close {
    width: 20.408%;
    top: 7%;
    left: 51.565%;
  }

  .hand02-open {
    width: 20.408%;
    top: 12%;
    left: 77.007%;
  }

  .hand02-close {
    width: 13.81%;
    top: 12%;
    left: 77.891%;
  }

  .ball-images {
    position: absolute;
    top: 50%;
    left: 84.354%;
    transform: translate(-50%, -50%);
    width: 13.605%;
    height: 40%;
  }

  .ball-img {
    position: absolute;
    opacity: 0;
  }

  .ball-img01 {
    width: 57.5%;
    top: 30%;
    left: 15%;
  }

  .ball-img02 {
    width: 77.5%;
    top: 30%;
    left: 7.5%;
  }

  .ball-img03 {
    width: 80%;
    top: 30%;
    left: 6.5%;
  }

  .ball-img04 {
    width: 77.5%;
    top: 20%;
    left: 6.5%;
  }
}

/* ===============================
   SP（390基準 / 767px以下）
================================ */
@media screen and (max-width: 767px) {
  .ball-section {
    position: relative;
    height: 113.513vw;
    overflow: hidden;
    transform: none;
    /* SP: lineupとの間隔を広げ、セクションを約3割下へ */
    margin-top: 30vw;
    --ball-scale: 1;
  }

  /* PCで追加したラッパーをSPでは無効化 */
  .ball-stage-outer {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .ball-scale {
    width: 100%;
    height: 100%;
    transform: none !important;
    transform-origin: 50% 0;
  }

  .ball-stage {
    top: 10%;
    left: 24%;
    width: 378.974vw;
    max-width: none;
    height: auto;

    transform: translateX(calc(-50% - 9.231vw)) translateY(30%) scale(0.5);

    transform-origin: 50% 0;
  }

  .ballarea {
    position: relative;
    width: 100%;
    aspect-ratio: 1470 / 430;
    z-index: 5;
    pointer-events: none;
  }

  .ball-hand {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hand-left,
  .hand-right {
    position: absolute;
    top: 16.279%; /* 70 / 430 */
    left: 0;
    width: 100%;
    height: 100%;
  }

  .ballarea .hand {
    position: absolute;
    opacity: 0;
  }

  .hand01-open {
    width: 18.639%;
    height: auto;
    top: 16.279%;
    left: 47.619%;
  }

  .hand01-close {
    width: 20.408%;
    height: auto;
    top: 18.14%;
    left: 47.347%;
  }

  .hand02-open {
    width: 20.408%;
    height: auto;
    top: 26.047%;
    left: 72.653%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, #000 18%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, #000 18%, #000 100%);
  }

  .hand02-close {
    width: 13.81%;
    height: auto;
    top: 26.047%;
    left: 74.014%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, #000 18%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, #000 18%, #000 100%);
  }

  .ball-images {
    position: absolute;
    top: 79.07%;
    left: 80.816%;
    transform: translate(-50%, -50%);
    width: 14.966%;
    height: 48.837%;
  }

  .ball-img {
    position: absolute;
    opacity: 0;
  }

  .ball-img01 {
    width: 49.091%;
    top: 25.714%;
    left: 12.727%;
  }

  .ball-img02 {
    width: 64.545%;
    top: 25.714%;
    left: 5.455%;
  }

  .ball-img03 {
    width: 66.364%;
    top: 25.714%;
    left: 4.545%;
  }

  .ball-img04 {
    width: 64.545%;
    top: 17.143%;
    left: 4.545%;
  }
}

/* ===============================
   アニメーション
================================ */
.hand01-open {
  animation: hand01OpenOpacity 3s linear infinite;
}

.hand01-close {
  transform: rotate(-45deg);
  transform-origin: 0% 40%;
  animation:
    hand01CloseOpacity 3s linear infinite,
    hand01CloseRotate 3s linear infinite;
}

@keyframes hand01OpenOpacity {
  0% {
    opacity: 1;
  }
  33.333% {
    opacity: 1;
  }
  33.334% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hand01CloseOpacity {
  0% {
    opacity: 0;
  }
  33.333% {
    opacity: 0;
  }
  33.334% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hand01CloseRotate {
  0%,
  33.333% {
    transform: rotate(-45deg);
  }

  60% {
    transform: rotate(-75deg);
  }

  66.666% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.hand02-close {
  animation: hand02CloseOpacity 3s linear infinite;
}

.hand02-open {
  animation: hand02OpenOpacity 3s linear infinite;
}

@keyframes hand02CloseOpacity {
  0% {
    opacity: 1;
  }
  66.666% {
    opacity: 1;
  }
  66.667% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hand02OpenOpacity {
  0% {
    opacity: 0;
  }
  66.666% {
    opacity: 0;
  }
  66.667% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* ========================================
   demo modal
======================================== */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.demo-modal.is-open {
  pointer-events: auto;
}

.demo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-modal.is-open .demo-modal-overlay {
  opacity: 1;
}

.demo-modal-body {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.demo-modal.is-open .demo-modal-body {
  opacity: 1;
}

/* ========================================
   768px以上
======================================== */
@media screen and (min-width: 768px) {
  .demo-modal {
    --demo-base-w: 1470px;
    --demo-base-h: 980px;
    --demo-scale-x: var(--tenyo-scale-1470, 1);
    --demo-scale-y: var(--tenyo-scale-vh980, 1);
    --demo-scale: var(--tenyo-demo-scale, 1);
  }

  .demo-modal-stage {
    position: relative;
    width: 100%;
    max-width: 2300px;
    height: 100%;
    margin: 0 auto;
  }

  .demo-modal-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1470px;
    height: 980px;
    transform: translate(-50%, -50%);
    transform-origin: center center;
  }

  @media screen and (max-width: 1469px) {
    .demo-modal-frame {
      transform: translate(-50%, -50%) scale(var(--demo-scale));
    }
  }

  .demo-modal-content {
    position: relative;
    width: 1320px;
    height: 860px;
    margin: 60px auto 0;
    background: url("../img/top/demo-bg.png") no-repeat center / contain;
  }

  /* 背景内に中身を収めるための内側レイアウト */
  .demo-modal-content-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 78px;
    box-sizing: border-box;
  }

  .demo-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 96px;
    padding: 0;
    border: none;
    background: none;
    color: #3d5ad6;
    font-size: 96px;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
  }

  .demo-modal-title {
    display: block;
    width: 650px;
    height: auto;
    margin: 0 0 18px;
    flex: 0 0 auto;
  }

  .demo-modal-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 0 0 auto;
  }

  .demo-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex: 0 0 auto;
  }

  .demo-arrow img {
    display: block;
    width: 40px;
    height: auto;
  }

  .demo-modal-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 660px;
    height: 533px;
    padding: 40px 60px;
    box-sizing: border-box;
    background: #263a87;
    border-radius: 115px 115px 0 0 / 113px 113px 0 0;
    flex: 0 0 auto;
  }

  .demo-modal-media {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .demo-modal-video {
    width: 100%;
  }

  .demo-modal-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
  }

  .demo-modal-info {
    display: flex;
    gap: 16px;
    margin-top: 26px;
    color: #fff;
    text-align: left;
    height: 120px;
  }

  .demo-modal-left,
  .demo-modal-description {
    flex: 1 1 0;
    min-width: 0;
  }

  .demo-modal-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }

  .demo-modal-catch {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }

  .demo-modal-item-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
  }

  .demo-modal-description {
    margin: 0;
    height: 120px;
    overflow-y: auto;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.95);
    -ms-overflow-style: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  }

  .demo-modal-description::-webkit-scrollbar {
    width: 6px;
  }

  .demo-modal-description::-webkit-scrollbar-track {
    background: transparent;
  }

  .demo-modal-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
  }

  .demo-modal-description::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.55);
  }
}

/* ===== SPは既存レイアウトを維持するため触らない ===== */
@media screen and (max-width: 767px) {
  .demo-modal {
    --demo-scale: 1;
  }

  .demo-modal-body {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .demo-modal-stage {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    margin: 0;
  }

  .demo-modal-frame {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    transform: none;
  }
}

/* ========================================
   demo-modal - TABLET
   SP版レイアウトベース
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .demo-modal {
    --demo-scale: 1;
  }

  .demo-modal-overlay {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .demo-modal-body {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100vw;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100dvh;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.97);
    transform-origin: 50% 50%;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
    background: url(../img/top/demo-bg.png) no-repeat center;
    background-size: 185%;
  }

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

  .demo-modal-stage {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    margin: 0;
  }

  .demo-modal-frame {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  .demo-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 48px 0 0;
    background: none;
  }

  .demo-modal-content-inner {
    position: static;
    inset: auto;
    display: block;
    padding: 0;
  }

  .demo-modal-close {
    position: absolute;
    top: -26px;
    right: 24px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: none;
    color: #3d5ad6;
    font-size: 44px;
    line-height: 1;
    z-index: 5;
  }

  .demo-modal-title {
    display: block;
    width: min(72vw, 420px);
    margin: 0 auto 28px;
    height: auto;
  }

  .demo-modal-carousel {
    position: relative;
    display: block;
    width: 100%;
  }

  .demo-modal-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: min(calc(100% - 120px), 620px);
    height: 620px;
    margin: 0 auto;
    padding: 54px 32px 36px;
    box-sizing: border-box;
    background: #263a87;
    border-radius: 78px 78px 0 0;
    overflow: hidden;
  }

  .demo-modal-media {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .demo-modal-video {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .demo-modal-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
  }

  .demo-modal-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 480px;
    margin: 28px auto 0;
    height: auto;
    color: #fff;
    text-align: left;
  }

  .demo-modal-left,
  .demo-modal-description {
    flex: none;
    min-width: 0;
  }

  .demo-modal-left {
    display: block;
  }

  .demo-modal-catch {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
  }

  .demo-modal-item-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
  }

  .demo-modal-description {
    margin: 0;
    height: auto;
    max-height: 190px;
    overflow-y: auto;
    padding-right: 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  }

  .demo-modal-description::-webkit-scrollbar {
    width: 6px;
  }

  .demo-modal-description::-webkit-scrollbar-track {
    background: transparent;
  }

  .demo-modal-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
  }

  .demo-arrow {
    position: absolute;
    top: 286px;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
  }

  .demo-arrow-prev {
    left: 26px;
  }

  .demo-arrow-next {
    right: 26px;
  }

  .demo-arrow img {
    display: block;
    width: 22px;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .demo-modal-overlay {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .demo-modal-body {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100vw;
    height: 100svh;
    max-width: 100vw;
    max-height: 100svh;
    opacity: 0;
    transform: scale(0.96);
    transform-origin: 50% 50%;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
    background: url(../img/top/demo-bg.png) no-repeat center;
    background-size: 300%;
  }

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

  .demo-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 122px 0 0;
  }

  .demo-modal-close {
    position: absolute;
    top: 20px;
    right: 18px;
    width: 36px;
    height: 36px;
    font-size: 36px;
    line-height: 1;
    color: #3d5ad6;
    background: none;
    border: none;
    padding: 0;
    z-index: 5;
  }

  .demo-modal-title {
    display: block;
    width: min(83vw, 322px);
    margin: 0 auto 20px;
  }

  .demo-modal-carousel {
    position: relative;
    display: block;
    width: 100%;
  }

  .demo-modal-main {
    position: relative;
    width: calc(100% - 90px);
    height: 500px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    box-sizing: border-box;
    background: #263a87;
    border-radius: 60px 60px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }

  .demo-modal-media {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .demo-modal-video {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
  }

  .demo-modal-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
  }

  .demo-modal-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px auto 0;
    width: 100%;
    max-width: 270px;
    height: auto;
    color: #fff;
    text-align: left;
  }

  .demo-modal-left,
  .demo-modal-description {
    flex: none;
    min-width: 0;
  }

  .demo-modal-left {
    display: block;
  }

  .demo-modal-catch {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }

  .demo-modal-item-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
  }

  .demo-modal-description {
    margin: 0;
    height: auto;
    max-height: 152px;
    overflow-y: auto;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    padding-right: 4px;
    scrollbar-width: none;
  }

  .demo-modal-description::-webkit-scrollbar {
    display: none;
  }

  .demo-arrow {
    position: absolute;
    top: 238px;
    z-index: 2;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
  }

  .demo-arrow-prev {
    left: 10px;
  }

  .demo-arrow-next {
    right: 10px;
  }

  .demo-arrow img {
    display: block;
    width: 16px;
    height: auto;
  }
}

/* =========================================
   ringarea
   1470px基準固定 / 1469px以下縮小 / 2300px以上も中央寄せ維持
========================================= */

:root {
  --ring-base-w: 1470px;
  --ring-scale: var(--tenyo-scale-1470, 1);
  --ring-r: 1;
}

.ringarea {
  position: relative;
  margin-top: 30vh;
  padding-bottom: 0;
  overflow: visible;
}

.ring-stage {
  position: relative;
  width: 100%;
  max-width: 2300px;
  margin: 0 auto;
  overflow: visible;
}

.ring-scale {
  position: relative;
  width: 1470px;
  margin: 0 auto;
  overflow: visible;
}

/* ===============================
   ring-step fade（PC / SP 共通）
================================ */
.ring-step {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.ring-step.is-show {
  opacity: 1;
  transform: translateY(0);
}

.ring-step .ring-bg,
.ring-step .ring-title {
  width: 100%;
  height: auto;
}

/* ===============================
   768px以上 共通土台
================================ */
@media screen and (min-width: 768px) {
  .ringarea {
    --ring-base-h: 1900px;
    position: relative;
    overflow: visible;
  }

  .ring-stage {
    overflow: visible;
  }

  .ring-scale {
    position: relative;
    width: 1470px;
    margin: 0 auto;
    overflow: visible;
  }

  .ring-spacer {
    height: var(--ring-base-h);
  }

  .ring-step {
    opacity: 0;
    position: absolute;
    transform: translateY(20px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  .ring-step.is-show {
    opacity: 1;
    transform: translate(0, 0);
  }

  .ring-step .ring-bg,
  .ring-step .ring-title {
    width: 100%;
    height: auto;
  }

  .ring-text {
    position: absolute;
    inset: 0;
    margin: auto;
    transform: translateY(20px);
    z-index: 2;
  }

  .ring-desc {
    color: #3957cc;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
  }

  /* ===============================
     step-1
  ============================== */
  .step-1 {
    width: 1300px;
    height: 734px;
    top: 0;
    left: -80px;
    transform: translate(75px, 30px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  .step-1 .ring-text {
    width: 760px;
    height: 294px;
    top: -272.3028px;
    left: 55.9041px;
  }

  .step-1 .ring-desc {
    width: 670px;
    margin-top: 40px;
    margin-left: 130px;
  }

  /* ===============================
     step-2
  ============================== */
  .step-2 {
    width: 1200px;
    height: 700px;
    top: 400px;
    left: 369.999px;
    transform: translate(-75px, 30px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  .step-2 .ring-text {
    width: 706.4967px;
    height: auto;
    top: 278.2002px;
    left: 44.7027px;
  }

  .step-2 .ring-desc {
    color: #f1ffbc;
    width: 670px;
    margin-top: 40px;
    margin-left: 50px;
  }

  /* ===============================
     step-3
  ============================== */
  .step-3 {
    width: 1540px;
    height: 600px;
    top: 1109.997px;
    left: -229.9962px;
    transform: translate(75px, 30px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  .step-3 .ring-text {
    width: 686.5047px;
    height: 294px;
    top: -66.5028px;
    left: -32.2959px;
  }

  .step-3 .ring-desc {
    width: 510px;
    margin-top: 40px;
    margin-left: 120px;
  }

  /* ===============================
     ring animation 01
  ============================== */
  .ring-animation01 {
    position: absolute;
    top: 830.0061px;
    left: 240.0069px;
    transform: translate(-50%, -50%);
    width: 599.9952px;
    height: 599.9952px;
    opacity: 0;
    pointer-events: none;
  }

  .ring-animation01.is-show {
    opacity: 1;
  }

  .ring-animation01 .ring-base {
    position: absolute;
    top: 510.0018px;
    left: 479.9991px;
    transform: translate(-50%, -50%);
    width: 360.003px;
    z-index: 2;
  }

  .ring-animation01 .hammer-wrap,
  .ring-animation01 .mask-wrap {
    position: absolute;
    top: 100.0041px;
    left: -220.0002px;
    width: 754.0071px;
    transform-origin: left bottom;
  }

  .ring-animation01 .hammer-wrap {
    z-index: 1;
  }

  .ring-animation01 .mask-wrap {
    z-index: 2;
  }

  .ring-animation01 .ring-hammer {
    position: absolute;
    top: 0;
    left: 0;
    width: 754.0071px;
    z-index: 1;
  }

  .ring-animation01 .ring-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 754.0071px;
    z-index: 3;
    pointer-events: none;
  }

  /* ===============================
     ring animation 02
  ============================== */
  .ring-animation02 {
    position: absolute;
    top: 1339.9932px;
    right: -290.0016px;
    transform: translate(-50%, -50%);
    width: 599.9952px;
    height: 599.9952px;
    opacity: 0;
    pointer-events: none;
  }

  .ring-animation02.is-show {
    opacity: 1;
  }

  .ring-animation02 .ring-base {
    position: absolute;
    top: 339.9963px;
    left: 320.0043px;
    transform: translate(-50%, -50%);
    width: 360.003px;
    z-index: 2;
  }

  .ring-animation02 .hammer-wrap,
  .ring-animation02 .mask-wrap {
    position: absolute;
    top: -30.0027px;
    left: 330.0003px;
    width: 360.003px;
    height: auto;
  }

  .ring-animation02 .hammer-wrap {
    z-index: 1;
  }

  .ring-animation02 .mask-wrap {
    z-index: 3;
    pointer-events: none;
  }

  .ring-animation02 .ring-hammer,
  .ring-animation02 .ring-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 360.003px;
    display: block;
  }

  /* ===============================
     animation controls
  ============================== */
  .ring-animation01.is-show.is-a .hammer-wrap,
  .ring-animation01.is-show.is-a .mask-wrap {
    animation: hammerRotate 2.4s ease-in-out forwards;
  }

  .ring-animation01.is-show.is-return .hammer-wrap,
  .ring-animation01.is-show.is-return .mask-wrap {
    animation: hammerReturn 3s linear forwards;
  }

  .ring-animation02.is-show.is-a .hammer-wrap,
  .ring-animation02.is-show.is-a .mask-wrap {
    animation: hammerRotate02 2.4s ease-in-out forwards;
  }

  .ring-animation02.is-show.is-return .hammer-wrap,
  .ring-animation02.is-show.is-return .mask-wrap {
    animation: hammerReturn02 3s linear forwards;
  }

  @keyframes hammerRotate {
    0% {
      transform: rotate(-15deg);
    }
    15% {
      transform: rotate(-10deg);
    }
    25% {
      transform: rotate(-15deg);
    }
    40% {
      transform: rotate(-10deg);
    }
    70% {
      transform: rotate(-20deg);
    }
    90% {
      transform: rotate(-20deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  @keyframes hammerRotate02 {
    0% {
      transform: translate(100px, -100px);
    }
    15% {
      transform: translate(60px, -60px);
    }
    25% {
      transform: translate(80px, -80px);
    }
    40% {
      transform: translate(60px, -60px);
    }
    50% {
      transform: translate(100px, -100px);
    }
    70% {
      transform: translate(100px, -100px);
    }
    90% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }

  @keyframes hammerReturn {
    0% {
      transform: rotate(0deg) translate(0, 0);
    }
    7.5% {
      transform: rotate(0deg) translate(51.9645px, -51.9645px);
    }
    10% {
      transform: rotate(0deg) translate(28.1505px, -67.914px);
    }
    12.5% {
      transform: rotate(0deg) translate(0, -73.5px);
    }
    15% {
      transform: rotate(0deg) translate(-28.1505px, -67.914px);
    }
    17.5% {
      transform: rotate(0deg) translate(-51.9645px, -51.9645px);
    }
    20% {
      transform: rotate(0deg) translate(-67.914px, -28.1505px);
    }
    22.5% {
      transform: rotate(0deg) translate(-73.5px, 0);
    }
    25% {
      transform: rotate(0deg) translate(-67.914px, 28.1505px);
    }
    27.5% {
      transform: rotate(0deg) translate(-51.9645px, 51.9645px);
    }
    30% {
      transform: rotate(0deg) translate(-28.1505px, 67.914px);
    }
    32.5% {
      transform: rotate(0deg) translate(0, 73.5px);
    }
    35% {
      transform: rotate(0deg) translate(28.1505px, 67.914px);
    }
    37.5% {
      transform: rotate(0deg) translate(51.9645px, 51.9645px);
    }
    40% {
      transform: rotate(0deg) translate(67.914px, 28.1505px);
    }
    42.5% {
      transform: rotate(0deg) translate(73.5px, 0);
    }
    45% {
      transform: rotate(0deg) translate(67.914px, -28.1505px);
    }
    47.5% {
      transform: rotate(0deg) translate(51.9645px, -51.9645px);
    }
    50% {
      transform: rotate(0deg) translate(28.1505px, -67.914px);
    }
    52.5% {
      transform: rotate(0deg) translate(0, -73.5px);
    }
    55% {
      transform: rotate(0deg) translate(-28.1505px, -67.914px);
    }
    57.5% {
      transform: rotate(0deg) translate(-51.9645px, -51.9645px);
    }
    60% {
      transform: rotate(0deg) translate(-67.914px, -28.1505px);
    }
    62.5% {
      transform: rotate(0deg) translate(-73.5px, 0);
    }
    65% {
      transform: rotate(0deg) translate(-67.914px, 28.1505px);
    }
    67.5% {
      transform: rotate(0deg) translate(-51.9645px, 51.9645px);
    }
    70% {
      transform: rotate(0deg) translate(-28.1505px, 67.914px);
    }
    72.5% {
      transform: rotate(0deg) translate(0, 73.5px);
    }
    100% {
      transform: rotate(-15deg) translate(0, 0);
    }
  }

  @keyframes hammerReturn02 {
    0% {
      transform: translate(0, 0);
    }
    7.5% {
      transform: translate(51.9645px, 51.9645px);
    }
    10% {
      transform: translate(28.1505px, 67.914px);
    }
    12.5% {
      transform: translate(0, 73.5px);
    }
    15% {
      transform: translate(-28.1505px, 67.914px);
    }
    17.5% {
      transform: translate(-51.9645px, 51.9645px);
    }
    20% {
      transform: translate(-67.914px, 28.1505px);
    }
    22.5% {
      transform: translate(-73.5px, 0);
    }
    25% {
      transform: translate(-67.914px, -28.1505px);
    }
    27.5% {
      transform: translate(-51.9645px, -51.9645px);
    }
    30% {
      transform: translate(-28.1505px, -67.914px);
    }
    32.5% {
      transform: translate(0, -73.5px);
    }
    35% {
      transform: translate(28.1505px, -67.914px);
    }
    40% {
      transform: translate(73.5px, 0);
    }
    47.5% {
      transform: translate(51.9645px, 51.9645px);
    }
    50% {
      transform: translate(28.1505px, 67.914px);
    }
    52.5% {
      transform: translate(0, 73.5px);
    }
    55% {
      transform: translate(-28.1505px, 67.914px);
    }
    57.5% {
      transform: translate(-51.9645px, 51.9645px);
    }
    60% {
      transform: translate(-67.914px, 28.1505px);
    }
    62.5% {
      transform: translate(-73.5px, 0);
    }
    65% {
      transform: translate(-67.914px, -28.1505px);
    }
    67.5% {
      transform: translate(-51.9645px, -51.9645px);
    }
    70% {
      transform: translate(-28.1505px, -67.914px);
    }
    72.5% {
      transform: translate(0, -79.38px);
    }
    100% {
      transform: translate(100px, -100px);
    }
  }
}

/* ===============================
   768-1469
================================ */
@media screen and (min-width: 768px) and (max-width: 1469px) {
  .ringarea {
    height: calc(var(--ring-base-h) * var(--ring-scale));
  }

  .ring-stage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1470px;
    max-width: none;
    margin: 0;
    transform: translateX(-50%) scale(var(--ring-scale));
    transform-origin: center top;
  }
}

/* ===============================
   Tablet optimize
================================ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ringarea {
    --ring-base-h: 1840px;
    margin-top: 180px;
    margin-bottom: 60px;
    height: calc(var(--ring-base-h) * var(--ring-scale));
    padding-bottom: 0;
    overflow: visible;
  }

  .ring-stage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1470px;
    max-width: none;
    margin: 0;
    transform: translateX(-50%) scale(var(--ring-scale));
    transform-origin: center top;
    overflow: visible;
  }

  .ring-spacer {
    height: var(--ring-base-h);
  }

  .ring-desc {
    font-size: 21px;
    line-height: 1.85;
  }

  .step-1 .ring-desc {
    width: 700px;
    margin-top: 32px;
    margin-left: 10px;
  }

  .step-2 .ring-desc {
    width: 620px;
    margin-top: 32px;
    margin-left: 50px;
  }

  .step-3 .ring-desc {
    width: 630px;
    margin-top: 32px;
    margin-left: 10px;
  }
}

/* ===============================
   ringarea SP
================================ */
@media screen and (max-width: 767px) {
  .ringarea {
    position: relative;
    margin-top: calc(56 / 390 * 100vw);
    padding-bottom: 0;
    overflow: hidden;
    height: calc(1450 / 390 * 100vw);
  }

  .ring-stage {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    overflow: visible;
  }

  .ring-scale {
    position: relative;
    width: 100%;
    height: 100%;
    transform-origin: 50% 0;
  }

  .ring-desc {
    color: #3957cc;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.8;
  }

  .ring-text {
    z-index: 2;
  }

  .ring-animation01,
  .ring-animation02 {
    opacity: 0;
    pointer-events: none;
  }

  .ring-animation01.is-show,
  .ring-animation02.is-show {
    opacity: 1;
  }

  .ring-animation01 .ring-base,
  .ring-animation02 .ring-base {
    z-index: 2;
  }

  .ring-animation01 .hammer-wrap,
  .ring-animation02 .hammer-wrap {
    z-index: 1;
  }

  .ring-animation01 .mask-wrap {
    z-index: 2;
  }

  .ring-animation02 .mask-wrap {
    z-index: 3;
    pointer-events: none;
  }

  .ring-animation01 .ring-hammer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .ring-animation01 .ring-mask {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
  }

  .ring-animation02 .ring-hammer,
  .ring-animation02 .ring-mask {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }

  .step-1 {
    position: absolute;
    width: 130%;
    height: calc(370 / 390 * 100vw);
    top: 0;
    left: calc(-112 / 390 * 100vw);
    transform: translate(calc(40 / 390 * 100vw), calc(18 / 390 * 100vw));
  }

  .step-1 .ring-text {
    position: absolute;
    width: calc(304 / 390 * 100vw);
    height: auto;
    top: 30px;
    left: 134px;
    transform: none;
  }

  .step-1 .ring-title {
    width: calc(345 / 390 * 100vw);
    height: auto;
  }

  .step-1 .ring-desc {
    width: 100%;
    margin-top: calc(22 / 390 * 100vw);
    margin-left: calc(10 / 390 * 100vw);
  }

  .step-2 {
    position: absolute;
    width: 140%;
    height: calc(352 / 390 * 100vw);
    top: calc(500 / 390 * 100vw);
    left: 0;
    transform: translate(calc(-38 / 390 * 100vw), calc(18 / 390 * 100vw));
  }

  .step-2 .ring-text {
    position: absolute;
    width: calc(304 / 390 * 100vw);
    height: auto;
    top: 100px;
    left: 30px;
    transform: none;
  }

  .step-2 .ring-title {
    width: calc(230 / 390 * 100vw);
    height: auto;
    margin-left: auto;
  }

  .step-2 .ring-desc {
    width: 100%;
    margin-top: calc(12 / 390 * 100vw);
    margin-left: calc(10 / 390 * 100vw);
    color: #f1ffbc;
  }

  .step-3 {
    position: absolute;
    width: 130%;
    height: calc(358 / 390 * 100vw);
    top: calc(1055 / 390 * 100vw);
    left: calc(-112 / 390 * 100vw);
    transform: translate(calc(40 / 390 * 100vw), calc(18 / 390 * 100vw));
  }

  .step-3 .ring-text {
    position: absolute;
    width: calc(304 / 390 * 100vw);
    height: auto;
    top: 60px;
    left: 140px;
    transform: none;
  }

  .step-3 .ring-title {
    width: calc(304 / 390 * 100vw);
    height: auto;
  }

  .step-3 .ring-desc {
    width: 100%;
    margin-top: calc(10 / 390 * 100vw);
    margin-left: calc(6 / 390 * 100vw);
  }

  .ring-animation01 {
    position: absolute;
    top: calc(310 / 390 * 100vw);
    left: calc(6 / 390 * 100vw);
    width: calc(365 / 390 * 100vw);
    height: calc(245 / 390 * 100vw);
    transform: none;
  }

  .ring-animation01 .ring-base {
    position: absolute;
    top: calc(182 / 390 * 100vw);
    left: calc(222 / 390 * 100vw);
    width: calc(153 / 390 * 100vw);
    transform: translate(-50%, -50%);
  }

  .ring-animation01 .hammer-wrap,
  .ring-animation01 .mask-wrap {
    position: absolute;
    top: calc(6 / 390 * 100vw);
    left: calc(-86 / 390 * 100vw);
    width: calc(320 / 390 * 100vw);
    transform-origin: left bottom;
  }

  .ring-animation01 .ring-hammer,
  .ring-animation01 .ring-mask {
    width: calc(320 / 390 * 100vw);
  }

  .ring-animation02 {
    position: absolute;
    top: calc(848 / 390 * 100vw);
    right: calc(-4 / 390 * 100vw);
    width: calc(250 / 390 * 100vw);
    height: calc(250 / 390 * 100vw);
    transform: none;
  }

  .ring-animation02 .ring-base {
    position: absolute;
    top: calc(170 / 390 * 100vw);
    left: calc(78 / 390 * 100vw);
    width: calc(155 / 390 * 100vw);
    transform: translate(-50%, -50%);
  }

  .ring-animation02 .hammer-wrap,
  .ring-animation02 .mask-wrap {
    position: absolute;
    top: calc(-3 / 390 * 100vw);
    left: calc(68 / 390 * 100vw);
    width: calc(152 / 390 * 100vw);
  }

  .ring-animation02 .ring-hammer,
  .ring-animation02 .ring-mask {
    width: calc(152 / 390 * 100vw);
  }

  .ring-animation01.is-show.is-a .hammer-wrap,
  .ring-animation01.is-show.is-a .mask-wrap {
    animation: hammerRotate 2.4s ease-in-out forwards;
  }

  .ring-animation01.is-show.is-return .hammer-wrap,
  .ring-animation01.is-show.is-return .mask-wrap {
    animation: hammerReturn 3s linear forwards;
  }

  .ring-animation02.is-show.is-a .hammer-wrap,
  .ring-animation02.is-show.is-a .mask-wrap {
    animation: hammerRotate02 2.4s ease-in-out forwards;
  }

  .ring-animation02.is-show.is-return .hammer-wrap,
  .ring-animation02.is-show.is-return .mask-wrap {
    animation: hammerReturn02 3s linear forwards;
  }

  @keyframes hammerRotate {
    0% {
      transform: rotate(-15deg);
    }
    15% {
      transform: rotate(-10deg);
    }
    25% {
      transform: rotate(-15deg);
    }
    40% {
      transform: rotate(-10deg);
    }
    70% {
      transform: rotate(-20deg);
    }
    90% {
      transform: rotate(-20deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  @keyframes hammerRotate02 {
    0% {
      transform: translate(42px, -42px);
    }
    15% {
      transform: translate(25px, -25px);
    }
    25% {
      transform: translate(34px, -34px);
    }
    40% {
      transform: translate(25px, -25px);
    }
    50% {
      transform: translate(42px, -42px);
    }
    70% {
      transform: translate(42px, -42px);
    }
    90% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }

  @keyframes hammerReturn {
    0% {
      transform: rotate(0deg) translate(0, 0);
    }
    7.5% {
      transform: rotate(0deg) translate(22px, -22px);
    }
    10% {
      transform: rotate(0deg) translate(12px, -29px);
    }
    12.5% {
      transform: rotate(0deg) translate(0, -31px);
    }
    15% {
      transform: rotate(0deg) translate(-12px, -29px);
    }
    17.5% {
      transform: rotate(0deg) translate(-22px, -22px);
    }
    20% {
      transform: rotate(0deg) translate(-29px, -12px);
    }
    22.5% {
      transform: rotate(0deg) translate(-31px, 0);
    }
    25% {
      transform: rotate(0deg) translate(-29px, 12px);
    }
    27.5% {
      transform: rotate(0deg) translate(-22px, 22px);
    }
    30% {
      transform: rotate(0deg) translate(-12px, 29px);
    }
    32.5% {
      transform: rotate(0deg) translate(0, 31px);
    }
    35% {
      transform: rotate(0deg) translate(12px, 29px);
    }
    37.5% {
      transform: rotate(0deg) translate(22px, 22px);
    }
    40% {
      transform: rotate(0deg) translate(29px, 12px);
    }
    42.5% {
      transform: rotate(0deg) translate(31px, 0);
    }
    45% {
      transform: rotate(0deg) translate(29px, -12px);
    }
    47.5% {
      transform: rotate(0deg) translate(22px, -22px);
    }
    50% {
      transform: rotate(0deg) translate(12px, -29px);
    }
    52.5% {
      transform: rotate(0deg) translate(0, -31px);
    }
    55% {
      transform: rotate(0deg) translate(-12px, -29px);
    }
    57.5% {
      transform: rotate(0deg) translate(-22px, -22px);
    }
    60% {
      transform: rotate(0deg) translate(-29px, -12px);
    }
    62.5% {
      transform: rotate(0deg) translate(-31px, 0);
    }
    65% {
      transform: rotate(0deg) translate(-29px, 12px);
    }
    67.5% {
      transform: rotate(0deg) translate(-22px, 22px);
    }
    70% {
      transform: rotate(0deg) translate(-12px, 29px);
    }
    72.5% {
      transform: rotate(0deg) translate(0, 31px);
    }
    100% {
      transform: rotate(-15deg) translate(0, 0);
    }
  }

  @keyframes hammerReturn02 {
    0% {
      transform: translate(0, 0);
    }
    7.5% {
      transform: translate(22px, 22px);
    }
    10% {
      transform: translate(12px, 29px);
    }
    12.5% {
      transform: translate(0, 31px);
    }
    15% {
      transform: translate(-12px, 29px);
    }
    17.5% {
      transform: translate(-22px, 22px);
    }
    20% {
      transform: translate(-29px, 12px);
    }
    22.5% {
      transform: translate(-31px, 0);
    }
    25% {
      transform: translate(-29px, -12px);
    }
    27.5% {
      transform: translate(-22px, -22px);
    }
    30% {
      transform: translate(-12px, -29px);
    }
    32.5% {
      transform: translate(0, -31px);
    }
    35% {
      transform: translate(12px, -29px);
    }
    40% {
      transform: translate(31px, 0);
    }
    47.5% {
      transform: translate(22px, 22px);
    }
    50% {
      transform: translate(12px, 29px);
    }
    52.5% {
      transform: translate(0, 31px);
    }
    55% {
      transform: translate(-12px, 29px);
    }
    57.5% {
      transform: translate(-22px, 22px);
    }
    60% {
      transform: translate(-29px, 12px);
    }
    62.5% {
      transform: translate(-31px, 0);
    }
    65% {
      transform: translate(-29px, -12px);
    }
    67.5% {
      transform: translate(-22px, -22px);
    }
    70% {
      transform: translate(-12px, -29px);
    }
    72.5% {
      transform: translate(0, -34px);
    }
    100% {
      transform: translate(42px, -42px);
    }
  }
}
/* ===== ラッパー ===== */
.info-hex-bg-wrap {
  --info-scale: var(--tenyo-scale-1470, 1);
  position: relative;
  overflow: visible;
  min-height: calc(1240px * var(--info-scale));
}

/* ===== 共通背景 ===== */
.info-hex-bg {
  position: absolute;
  top: calc(130px * var(--info-scale));
  left: calc(50% - 495px * var(--info-scale));
  width: calc(1560px * var(--info-scale));
  height: calc(1388px * var(--info-scale));
  background: url(../img/top/information-bg.png) no-repeat top center;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}

/* ===== 各セクションは前面に ===== */
.information,
.hexagonarea {
  position: relative;
  z-index: 1;
}

/* ===============================
   information
================================ */
.information {
  position: relative;
  height: auto;
  min-height: 1040px;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .information {
    min-height: 1040px;
  }
}

/* 1470基準の中央ステージ */
.information-stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1470px;
  height: 1040px;
  transform: translateX(-50%);
  transform-origin: center top;
  z-index: 1;
  overflow: visible;
}

/* 1470px以下だけ縮小 + 高さを詰める */
@media screen and (max-width: 1469px) {
  .information-stage {
    width: 1470px;
    height: 1040px;
    transform: translateX(-50%) scale(var(--info-scale));
  }
}

.information-heading {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 760px;
  margin: 0;
  transform: translateX(-50%);
  z-index: 2;
}

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

/* coverはステージ外ではみ出し維持 */
.information-cover {
  position: absolute;
  top: calc(-205px * var(--info-scale));
  left: calc(50% - 1184px * var(--info-scale));
  width: calc(2132px * var(--info-scale));
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}

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

/* カルーセル */
.information-carousel {
  position: absolute;
  top: 400px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
}

/* 1470px未満のPCではカルーセルだけ親の縮小を打ち消す。
   Splideが実寸を正しく計測できるため、リサイズ後も継ぎ目が跳ねない。 */
@media screen and (min-width: 1024px) and (max-width: 1469px) {
  .information-carousel {
    width: 100vw;
    transform: translateX(-50%) scale(calc(1 / var(--info-scale)));
    transform-origin: center top;
  }
}

.information-carousel .splide__track {
  width: 100%;
  overflow: hidden;
}

.information-carousel .splide__list {
  align-items: stretch;
}

.information-carousel .splide__slide {
  width: 323.4px !important; /* 22vw @ 1470 */
}

.splide__slide img {
  width: 100%;
  height: auto;
}

.information-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f2f2f2;
  border: 10px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #3957cc;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.information-card:hover {
  opacity: 0.85;
}

.information-card__thumb {
  aspect-ratio: 1 / 1;
  background: #d9d9d9;
  overflow: hidden;
}

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

.information-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 22px;
}

.information-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #3957cc;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.information-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.information-card__category,
.information-card__date {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: #3957cc;
}

.information-card__meta-label,
.information-card__meta-value {
  display: inline;
}

/* 中央ボタン */
.information-more {
  position: absolute;
  left: 50%;
  bottom: 62px;
  transform: translateX(-50%);
  margin: 0;
  width: auto;
}

/* ========================================
   information more button（反転）
======================================== */

.information-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  /* ▼ 通常（青塗り） */
  background: #3957cc;
  color: #fff;
  border: 1px solid #3957cc;

  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* ▼ hover（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .information-more a:hover {
    background: #fff;
    color: #3957cc;
    border-color: #3957cc;
  }
}

/* -------------------------------
   矢印（もしある場合）
-------------------------------- */

/* SVGタイプ */
.information-more a svg {
  stroke: currentColor;
}

/* hover時も連動 */
@media (hover: hover) and (pointer: fine) {
  .information-more a:hover svg {
    stroke: currentColor;
  }
}

/* ===============================
   Splide arrows custom
================================ */
.information-arrows {
  position: absolute;
  right: 52px;
  bottom: 74px;
  display: flex;
  gap: 10px;
}

.information-carousel > .splide__arrows {
  display: none;
}

/* 本体 */
.information-arrows .splide__arrow {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #000;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: none;
}

/* ========================================
   information arrows button（反転）
======================================== */

.information-arrows__btn {
  width: 44px;
  height: 44px;

  border: 1px solid #000;
  border-radius: 999px;

  /* ▼ 通常 */
  background: #000;
  color: #f6ffad;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* ▼ hover（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .information-arrows__btn:hover {
    background: #f6ffad;
    color: #000;
    border-color: #f6ffad;
  }
}

.information-arrows__btn svg {
  width: 30px;
  height: 30px;
}

.information-arrows .splide__arrow:hover {
  opacity: 0.7;
}

.splide__arrow--prev,
.splide__arrow--next {
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
}

/* カルーセルの縮小を打ち消す中間幅では、操作エリアをカード下へ送る。 */
@media screen and (min-width: 1024px) and (max-width: 1469px) {
  .information-more {
    top: calc(1744px - 54vw);
    bottom: auto;
  }

  .information-arrows {
    top: calc(1753px - 54vw);
    bottom: auto;
  }
}

/* ========================================
   information - TABLET
   SPレイアウトをベースに拡張
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .info-hex-bg {
    position: absolute;
    top: 90px;
    left: 30px;
    width: 1560px;
    height: 1388px;
    background: url(../img/top/information-bg.png) no-repeat top center;
    background-size: 100% auto;
    z-index: 0;
    pointer-events: none;
  }

  .information {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 320px 0 120px;
    overflow: hidden;
  }

  .information-cover {
    position: absolute;
    top: 28px;
    left: -432px;
    width: 1300px;
    height: auto;
    z-index: 10;
    pointer-events: none;
  }

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

  /* PC用stageを通常レイアウト化 */

  .information-stage {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 500px;
    transform: none !important;
    overflow: visible;
  }

  .information-heading {
    position: relative;
    top: auto;
    left: auto;
    width: min(440px, calc(100% - 80px));
    margin: 0 auto 44px;
    transform: none;
  }

  .information-carousel {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    z-index: 1;
    padding-top: 0;
    overflow: visible;
  }

  .information-carousel .splide__track {
    overflow: visible;
    padding: 0 0 0 120px;
  }

  .information-carousel .splide__list {
    align-items: stretch;
  }

  .information-carousel .splide__slide {
    width: 250px !important;
  }

  .information-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-width: 8px;
    border-radius: 8px;
  }

  .information-card__body {
    gap: 12px;
    padding: 16px 16px 18px;
  }

  .information-card__title {
    font-size: 16px;
    line-height: 1.5;
  }

  .information-card__category,
  .information-card__date {
    font-size: 12px;
    line-height: 1.5;
  }

  /* ------------------------
     SP版寄せの下部配置
  ------------------------ */
  .information-more {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    margin: 70px auto 0;
    padding: 0;
    width: 240px;
    height: 55px;
    z-index: 3;
    text-align: left;
  }

  .information-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 54px;
    padding: 12px 22px;
    font-size: 18px;
    line-height: 1.3;
  }

  .information-arrows {
    position: absolute;
    right: 80px;
    top: auto;
    bottom: 3px;
    left: auto;
    margin: 0;
    padding: 0;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
  }

  .information-arrows__btn {
    width: 48px;
    height: 48px;
  }

  .information-arrows__btn svg {
    width: 28px;
    height: 28px;
  }
}

/* ===============================
   information SP
================================ */
@media screen and (max-width: 767px) {
  .information {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 254px 0 118px;
    overflow: hidden;
  }

  .information-cover {
    position: absolute;
    top: 72px;
    left: -370px;
    width: 920px;
    height: auto;
    z-index: 10;
    pointer-events: none;
  }

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

  /* 追加：PC用stageをSPでは通常レイアウト化 */
  .information-stage {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: auto;
    transform: none;
    transform-origin: initial;
    z-index: 1;
    overflow: visible;
  }

  .information-heading {
    position: relative;
    top: auto;
    left: auto;
    width: min(280px, calc(100% - 64px));
    margin: 0 auto 32px;
    transform: none;
  }

  .information-carousel {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    z-index: 1;
    padding-top: 0;
    overflow: visible;
  }

  .information-carousel .splide__track {
    overflow: visible;
    padding: 0 0 0 96px;
  }

  .information-carousel .splide__list {
    align-items: stretch;
  }

  .information-carousel .splide__slide {
    width: 205px !important;
  }

  .information-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-width: 7px;
    border-radius: 8px;
  }

  .information-card__body {
    gap: 10px;
    padding: 14px 14px 16px;
  }

  .information-card__title {
    font-size: 14px;
    line-height: 1.5;
  }

  .information-card__category,
  .information-card__date {
    font-size: 10px;
    line-height: 1.5;
  }

  .information-more {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 90px 0 0;
    padding: 0 39px;
    width: auto;
    z-index: 2;
  }

  .information-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    min-height: 46px;
    padding: 10px 18px;
    font-size: 16px;
    line-height: 1.3;
  }

  .information-arrows {
    position: absolute;
    right: 34px;
    bottom: 66px;
    top: auto;
    left: auto;
    gap: 8px;
    z-index: 2;
  }

  .information-arrows .splide__arrow,
  .information-arrows__btn {
    width: 40px;
    height: 40px;
  }

  .information-arrows .splide__arrow svg,
  .information-arrows__btn svg {
    width: 16px;
    height: 16px;
  }

  /* ===== ラッパー ===== */
  .info-hex-bg-wrap {
    --info-scale: var(--tenyo-scale-1470, 1);
    position: relative;
    overflow: visible;
    min-height: calc(100vh + 260px * var(--info-scale));
  }

  /* ===== 共通背景 ===== */
  .info-hex-bg {
    position: absolute;
    top: calc(20 * var(--sp-unit));
    left: calc(-140 * var(--sp-unit));
    width: calc(1250 * var(--sp-unit));
    height: calc(1250 * var(--sp-unit));
    background: url(../img/top/information-bg.png) no-repeat top center;
    background-size: 100% auto;
    z-index: 0;
    pointer-events: none;
  }
}

@media screen and (max-width: 374px) {
  .information-more {
    margin-top: 70px;
    padding: 0 20px;
    text-align: center;
  }

  .information-more a {
    min-width: 190px;
  }

  .information-arrows {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    width: max-content;
    margin: 18px auto 0;
  }
}

/* ===============================
   ヘキサゴンエリア
================================ */
.hexagonarea {
  position: relative;
  width: 100%;
  height: 17.687vw;
  min-height: 260px;
  overflow: hidden;
  margin-top: 140px;
  margin-bottom: 260px;
}

/* ---------- 手 ---------- */
.hexagon-hands {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.497vw;
  height: 17.687vw;
  min-width: 610px;
  min-height: 260px;
  pointer-events: none;
}

.hex-hand {
  position: absolute;
  right: -8.163vw;
  top: 0;
  opacity: 0;
  display: block;
}

.hex-hand.hand1 {
  width: 34.014vw;
}

.hex-hand.hand2 {
  width: 41.497vw;
}

.hex-hand.active {
  opacity: 1;
}

/* ---------- ヘキサゴン ---------- */
.hexagon-row {
  position: absolute;
  left: -5.442vw;
  top: 50%;
  width: 66.667vw;
  height: 12.245vw;
  min-width: 980px;
  min-height: 180px;
  transform: translateY(-50%);
}

.hexagon {
  position: absolute;
  width: 12.245vw;
  height: auto;
  display: block;
}

/* 横並び（absolute） */
.hex-1 {
  left: 0;
}

.hex-2 {
  left: 18.231vw;
}

.hex-3 {
  left: 36.054vw;
}

.hex-4 {
  left: 54.422vw;
}

/* ===============================
   ヘキサゴンエリア SP
================================ */
@media screen and (max-width: 767px) {
  .hexagonarea {
    height: auto;
    min-height: 0;
    margin-top: calc(28 / 390 * 100vw);
    margin-bottom: calc(48 / 390 * 100vw);
    overflow: visible;
    padding: 0 0 calc(180 / 390 * 100vw);
  }

  /* ---------- 手 ---------- */
  .hexagon-hands {
    position: absolute;
    top: calc(106 / 390 * 100vw);
    right: calc(-48 / 390 * 100vw);
    width: calc(385 / 390 * 100vw);
    height: calc(180 / 390 * 100vw);
    min-width: 0;
    min-height: 0;
    pointer-events: none;
  }

  .hex-hand {
    top: 0;
    right: 0;
  }

  .hex-hand.hand1 {
    width: calc(315 / 390 * 100vw);
    right: calc(-12 / 390 * 100vw);
  }

  .hex-hand.hand2 {
    width: calc(405 / 390 * 100vw);
    right: calc(-12 / 390 * 100vw);
  }

  /* ---------- ヘキサゴン ---------- */
  .hexagon-row {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: calc(390 / 390 * 100vw);
    height: calc(78 / 390 * 100vw);
    min-width: 0;
    min-height: 0;
    margin: 0 auto;
    transform: none;
  }

  .hexagon {
    width: calc(78 / 390 * 100vw);
  }

  .hex-1,
  .hex-2,
  .hex-3,
  .hex-4 {
    left: auto;
  }

  .hex-1 {
    left: calc(16 / 390 * 100vw);
    top: 0;
  }

  .hex-2 {
    left: calc(109 / 390 * 100vw);
    top: 0;
  }

  .hex-3 {
    left: calc(202 / 390 * 100vw);
    top: 0;
  }

  .hex-4 {
    left: calc(295 / 390 * 100vw);
    top: 0;
  }
}

/* ===== フッター ===== */
/* footer */
.footer {
  padding: 5.442vw 0;
  text-align: center;
}

.footer img {
  width: 20.408vw;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* ========================================
   Demo Store Modal - Top
======================================== */
.p-top .p-demo-store-modal {
  padding: 24px;
}

.p-top .p-demo-store-modal__overlay {
  background: rgba(242, 220, 255, 0.72);
  backdrop-filter: blur(6px);
}

.p-top .p-demo-store-modal__dialog {
  width: min(930px, calc(100% - 48px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow-y: auto;
  background: #f7f2f8;
  border: 7px solid #3d5ad6;
  border-radius: 56px;
  box-shadow: 0 18px 50px rgba(61, 90, 214, 0.18);
}

.p-top .p-demo-store-modal__inner {
  position: relative;
  padding: 34px 42px 42px;
}

.p-top .p-demo-store-modal__close {
  position: absolute;
  top: 18px;
  right: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #3d5ad6;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
}

.p-top .p-demo-store-modal__title {
  margin: 0;
  padding: 0 56px 18px;
  border-bottom: 5px solid #3d5ad6;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  color: #3d5ad6;
}

.p-top .p-demo-store-modal__description {
  margin-top: 32px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  color: #111;
}

.p-top .p-demo-store-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  margin-top: 28px;
  align-items: start;
}

.p-top .p-demo-store-modal__info {
  display: grid;
  gap: 16px;
}

.p-top .p-demo-store-modal__row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.p-top .p-demo-store-modal__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #3d5ad6;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.p-top .p-demo-store-modal__value {
  min-height: 38px;
  padding-top: 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #111;
  word-break: break-word;
}

.p-top .p-demo-store-modal__value a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.p-top .p-demo-store-modal__dealer-image {
  width: 128px;
  margin-bottom: 10px;
}

.p-top .p-demo-store-modal__dealer-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top .p-demo-store-modal__dealer-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.p-top .p-demo-store-modal__map {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.p-top .p-demo-store-modal__map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 340px;
  padding: 24px;
  background: #e8e8e8;
  color: #3d5ad6;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-top .p-demo-store-modal {
    padding: 20px;
  }

  .p-top .p-demo-store-modal__dialog {
    width: min(720px, calc(100% - 40px));
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    border-width: 6px;
    border-radius: 40px;
  }

  .p-top .p-demo-store-modal__inner {
    padding: 28px 28px 32px;
  }

  .p-top .p-demo-store-modal__close {
    top: 14px;
    right: 18px;
    width: 40px;
    height: 40px;
    font-size: 48px;
  }

  .p-top .p-demo-store-modal__title {
    padding: 0 44px 14px;
    border-bottom-width: 4px;
    font-size: 24px;
  }

  .p-top .p-demo-store-modal__description {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.7;
  }

  .p-top .p-demo-store-modal__body {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 22px;
  }

  .p-top .p-demo-store-modal__row {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 12px;
  }

  .p-top .p-demo-store-modal__label {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 15px;
  }

  .p-top .p-demo-store-modal__value {
    min-height: 34px;
    padding-top: 4px;
    font-size: 16px;
  }

  .p-top .p-demo-store-modal__dealer-image {
    width: 120px;
  }

  .p-top .p-demo-store-modal__dealer-name {
    font-size: 16px;
  }

  .p-top .p-demo-store-modal__map-link {
    min-height: 240px;
    font-size: 16px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .p-top .p-demo-store-modal {
    padding: 13px;
  }

  .p-top .p-demo-store-modal__dialog {
    width: calc(100% - 26px);
    max-height: calc(100vh - 26px);
    margin: 13px auto;
    border-width: 5px;
    border-radius: 28px;
  }

  .p-top .p-demo-store-modal__inner {
    padding: 20px 16px 22px;
  }

  .p-top .p-demo-store-modal__close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 42px;
  }

  .p-top .p-demo-store-modal__title {
    padding: 0 28px 12px;
    border-bottom-width: 3px;
    font-size: 18px;
    line-height: 1.4;
  }

  .p-top .p-demo-store-modal__description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }

  .p-top .p-demo-store-modal__body {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .p-top .p-demo-store-modal__info {
    gap: 10px;
  }

  .p-top .p-demo-store-modal__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .p-top .p-demo-store-modal__label {
    min-height: 28px;
    padding: 4px 10px;
    font-size: 12px;
  }

  .p-top .p-demo-store-modal__value {
    min-height: 0;
    padding-top: 0;
    font-size: 13px;
    line-height: 1.7;
  }

  .p-top .p-demo-store-modal__dealer-image {
    width: 104px;
    margin-bottom: 8px;
  }

  .p-top .p-demo-store-modal__dealer-name {
    font-size: 13px;
  }

  .p-top .p-demo-store-modal__map-link {
    min-height: 152px;
    padding: 16px;
    font-size: 13px;
  }
}

#smooth-wrapper,
#smooth-content {
  background: transparent;
}

.lineup,
.info-hex-bg-wrap,
.recommend {
  position: relative;
  z-index: 0;
  background: #ef7051;
}

.fushigi {
  position: relative;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    #1b203f 0%,
    #1b203f 50%,
    #ef7051 50%,
    #ef7051 100%
  );
}

.crystal,
.fushigi,
.lineup,
.info-hex-bg-wrap,
.trump {
  position: relative;
}

.crystal,
.fushigi,
.lineup,
.trump {
  overflow: visible;
}

.crystal,
.fushigi,
.fushigi-pin,
.information,
.lineup,
.lineup-pin,
.trump {
  overflow: visible;
}

.pin-spacer {
  background: transparent !important;
  z-index: auto !important;
}

.crystal,
.fushigi-pin,
.lineup-pin,
.info-hex-bg-wrap,
.trump {
  position: relative;
  z-index: 1;
}

/* ========================================
   TOP SHOP
======================================== */
.shop {
  --shop-scale: var(--tenyo-scale-1470, 1);

  position: relative;
  background: #faefff;
  overflow: hidden;
  padding: 100px 0;
}

.shop-shell {
  --shop-scale: var(--tenyo-scale-1470, 1);

  position: relative;
  width: 150vw;
  min-height: calc(1200px * var(--shop-scale));
  margin-left: 50%;
  transform: translateX(-50%);
  padding: calc(120px * var(--shop-scale)) 0 calc(260px * var(--shop-scale));
  background: #f6dfff;
  border-radius: 50%;
}

/* 中身の表示領域 */
.shop-inner {
  position: relative;
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 1470px基準の固定ステージを縮小 */
.shop-stage {
  width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;

  transform-origin: top center !important;
  transform: scale(var(--tenyo-scale-1470, 1)) !important;
}

/* scaleで潰れる高さを補正 */
.shop-content {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.shop-inner {
  position: relative;
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
  box-sizing: border-box;

  /* 常に連続値 */
  height: calc(1400px * var(--tenyo-scale-1470, 1));
}

/* -------------------------------
   共通タイトル
-------------------------------- */
.shop-block__title {
  margin: 0;
  text-align: center;
}

.shop-block__title img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* SHOP */
.shop-block__title--shop img {
  width: 400px;
}

/* DEMONSTRATION at SHOP */
.shop-block__title--demo img {
  width: 1242px;
}

/* 見出し */
.shop-block__heading {
  margin: 52px 0 0;
  color: #3957cc;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* 説明 */
.shop-block__lead {
  margin-top: 24px;
}

.shop-block__lead p {
  margin: 0;
  color: #3957cc;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

/* -------------------------------
   shop links
-------------------------------- */
.shop-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 950px;
  margin: 56px auto 0;
}

/* ========================================
   shop links（反転：逆パターン）
======================================== */

.shop-links__item {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 116px;
  padding: 18px 20px;

  text-decoration: none;

  /* ▼ 通常（青塗り） */
  background: #3957cc;
  color: #fff;
  border: 1px solid #3957cc;

  /* ▼ opacity削除 → 色制御 */
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* ▼ hover（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .shop-links__item:hover {
    background: #fff;
    color: #3957cc;
    border-color: #3957cc;
  }

  .shop-links__item:hover * {
    color: #3957cc;
  }
}

.shop-links__label {
  display: block;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

.shop-links__label .shop-links__main {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.shop-links__label .shop-links__sub {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* -------------------------------
   SHOP LIST title
-------------------------------- */
.shop-list-head {
  margin-top: 58px;
  text-align: center;
}

.shop-list-head__tag {
  display: inline-block;
  line-height: 0;
  overflow: visible;
}

.shop-list-head__tag img {
  display: block;
  width: 443px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* -------------------------------
   demo store list
-------------------------------- */
.top-demo-store-list {
  width: min(100%, 1280px);
  margin: 56px auto 0;
}

.top-demo-store-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}

.top-demo-store-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding: 18px 0;
  border-bottom: 1px solid #7f8cff;
}

.top-demo-store-list__shopname {
  margin: 0;
  color: #3957cc;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

/* ========================================
   demo store button（反転：逆パターン）
======================================== */

.top-demo-store-list__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 132px;
  min-height: 44px;
  padding: 0 18px;

  /* ▼ 通常（青塗り） */
  background: #3957cc;
  color: #fff;
  border: 1px solid #3957cc;

  font-size: 14px;
  font-weight: 500;
  line-height: 1;

  cursor: pointer;

  /* ▼ opacity削除 → 色制御 */
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* ▼ hover（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .top-demo-store-list__button:hover {
    background: #fff;
    color: #3957cc;
    border-color: #3957cc;
  }
}

/* ========================================
   SHOP more button（反転：逆パターン）
======================================== */

.shop-block__more {
  margin-top: 82px;
  text-align: center;
}

.shop-block__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: min(100%, 1280px);
  min-height: 100px;
  padding: 20px 32px;

  /* ▼ 通常（青塗り） */
  background: #3957cc;
  color: #fff;
  border: 2px solid #3957cc;

  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* ▼ hoverで白反転（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .shop-block__more a:hover {
    background: #fff;
    color: #3957cc;
    border-color: #3957cc;
  }
}

/* ========================================
   Demo Store Modal - TOP
======================================== */
.p-demo-store-modal {
  padding: 24px;
}

.p-demo-store-modal__overlay {
  background: rgba(242, 220, 255, 0.94);
  backdrop-filter: blur(6px);
}

.p-demo-store-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(930px, calc(100% - 48px));
  max-height: calc(100vh - 48px);
  margin: 0;
  overflow-y: auto;
  background: #fff;
  border: 8px solid #3d5ad6;
  border-radius: 56px;
  transform: translate(-50%, -50%) translateY(24px);
}

.p-demo-store-modal.is-open .p-demo-store-modal__dialog {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.p-demo-store-modal__inner {
  position: relative;
  padding: 34px;
}

.p-demo-store-modal__close {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #3d5ad6;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.p-demo-store-modal__title {
  margin: 0;
  padding: 0 56px 16px;
  border-bottom: 4px solid #3d5ad6;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  color: #3d5ad6;
}

.p-demo-store-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 28px;
  margin-top: 34px;
  align-items: start;
}

.p-demo-store-modal__info {
  display: grid;
  gap: 30px;
}

.p-demo-store-modal__description {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
  text-align: justify;
  text-spacing-trim: trim-start;
  font-feature-settings: "palt";
}

.p-demo-store-modal__info-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 16px;
  align-items: start;
}

.p-demo-store-modal__info-text {
  display: grid;
  gap: 12px;
}

.p-demo-store-modal__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.p-demo-store-modal__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #3d5ad6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.p-demo-store-modal__label--dealer {
  width: 100%;
}

.p-demo-store-modal__value {
  min-height: 32px;
  padding-top: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  word-break: break-word;
}

.p-demo-store-modal__value a {
  color: #000;
  text-decoration: none;
}

.p-demo-store-modal__dealer {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.p-demo-store-modal__dealer-image {
  width: 144px;
}

.p-demo-store-modal__dealer-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-demo-store-modal__dealer-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  text-align: center;
}

.p-demo-store-modal__map {
  display: block;
}

.p-demo-store-modal__map-embed {
  overflow: hidden;
  background: #e5e5e5;
}

.p-demo-store-modal__map-embed iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

/* PC: align the bottom of the map with the store information. */
@media screen and (min-width: 1024px) {
  .p-demo-store-modal__body {
    align-items: stretch;
  }

  .p-demo-store-modal__map {
    display: flex;
    align-items: stretch;
  }

  .p-demo-store-modal__map-embed {
    width: 100%;
  }

  .p-demo-store-modal__map-embed iframe {
    height: 100%;
    min-height: 240px;
  }

  .p-demo-store-modal__dealer {
    position: relative;
    left: -12px;
  }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-demo-store-modal {
    padding: 20px;
  }

  .p-demo-store-modal__dialog {
    width: min(720px, calc(100% - 40px));
    max-height: calc(100vh - 40px);
    margin: 0;
  }

  .p-demo-store-modal__inner {
    padding: 30px 36px;
  }

  .p-demo-store-modal__close {
    top: 27px;
    right: 24px;
    width: 40px;
    height: 40px;
    font-size: 36px;
  }

  .p-demo-store-modal__title {
    padding: 0 40px 14px;
    font-size: 32px;
  }

  .p-demo-store-modal__body {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 22px;
  }

  .p-demo-store-modal__description {
    font-size: 15px;
  }

  .p-demo-store-modal__info-main {
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 16px;
  }

  .p-demo-store-modal__row {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .p-demo-store-modal__label {
    min-height: 30px;
    font-size: 13px;
  }

  .p-demo-store-modal__value {
    min-height: 30px;
    font-size: 14px;
  }

  .p-demo-store-modal__dealer-image {
    width: 128px;
  }

  .p-demo-store-modal__map-embed iframe {
    height: 240px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .p-demo-store-modal {
    padding: 0;
  }

  .p-demo-store-modal__dialog {
    top: calc(50% + 48px);
    width: calc(100% - 26px);
    max-height: calc(100vh - 160px);
    border-width: 5px;
    border-radius: 30px;
  }

  .p-demo-store-modal__inner {
    padding: 30px 20px;
  }

  .p-demo-store-modal__close {
    position: fixed;
    top: calc(50% - (100vh - 120px) / 2 - -15px);
    right: 21px;
    width: 26px;
    height: 26px;
    font-size: 36px;
    color: #3d5ad6;
  }

  .p-demo-store-modal__title {
    padding: 0 26px 10px;
    border-bottom-width: 3px;
    font-size: 24px;
    line-height: 1.4;
  }

  .p-demo-store-modal__body {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 16px;
  }

  .p-demo-store-modal__info {
    gap: 20px;
  }

  .p-demo-store-modal__description {
    font-size: 14px;
    line-height: 1.85;
  }

  .p-demo-store-modal__info-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p-demo-store-modal__info-text {
    gap: 14px;
  }

  .p-demo-store-modal__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .p-demo-store-modal__label {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .p-demo-store-modal__label--dealer {
    width: 100%;
  }

  .p-demo-store-modal__value {
    min-height: 0;
    padding-top: 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .p-demo-store-modal__dealer {
    justify-items: stretch;
  }

  .p-demo-store-modal__dealer-image {
    width: 104px;
    margin: 0 auto;
  }

  .p-demo-store-modal__dealer-name {
    font-size: 14px;
  }

  .p-demo-store-modal__map-embed iframe {
    height: 180px;
  }
}

/* ========================================
   SHOP - TABLET
   SPレイアウトをベースに拡張
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .shop {
    position: relative;
    padding: 88px 0 96px;
    overflow: hidden;
  }

  .shop-shell {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    transform: none;
    padding: 72px 0 84px;
    border-radius: 72% / 16%;
  }

  /* PCの固定高さを解除 */
  .shop-inner {
    position: relative;
    width: min(100% - 64px, 920px);
    height: auto !important;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }

  /* PCのscale前提を解除して通常レイアウト化 */
  .shop-stage {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    transform: none !important;
    transform-origin: initial !important;
  }

  .shop-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  /* -------------------------------
     title
  -------------------------------- */
  .shop-block__title--shop img {
    width: 260px;
  }

  .shop-block__title--demo img {
    width: min(100%, 520px);
    max-width: 100%;
  }

  /* -------------------------------
     online shop links
  -------------------------------- */
  .shop-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 360px;
    margin: 26px auto 0;
  }

  .shop-links__item {
    min-height: 78px;
    padding: 14px 18px;
  }

  .shop-links__label .shop-links__main {
    font-size: 18px;
    line-height: 1.4;
  }

  .shop-links__label .shop-links__sub {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
  }

  /* -------------------------------
     demonstration heading / lead
  -------------------------------- */
  .shop-block__heading {
    margin-top: 28px;
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
  }

  .shop-block__lead {
    width: min(100%, 760px);
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .shop-block__lead p {
    font-size: 14px;
    line-height: 1.95;
  }

  /* -------------------------------
     shop list title
  -------------------------------- */
  .shop-list-head {
    margin-top: 40px;
    text-align: center;
  }

  .shop-list-head__tag img {
    width: 280px;
    max-width: 100%;
  }

  /* -------------------------------
     demo store list
  -------------------------------- */
  .top-demo-store-list {
    margin-top: 22px;
  }

  .top-demo-store-list__grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .top-demo-store-list__item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    min-height: unset;
  }

  .top-demo-store-list__shopname {
    font-size: 18px;
    line-height: 1.6;
  }

  .top-demo-store-list__button {
    min-width: 100px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  /* -------------------------------
     more button
  -------------------------------- */
  .shop-block__more {
    margin-top: 32px;
    text-align: center;
  }

  .shop-block__more a {
    width: min(100%, 360px);
    min-height: 66px;
    padding: 12px 22px;
    font-size: 16px;
    line-height: 1.4;
  }
}

/* ========================================
   TOP SHOP - SP
======================================== */
@media screen and (max-width: 767px) {
  .shop {
    position: relative;
    padding: calc(68 * var(--sp-unit)) 0 calc(72 * var(--sp-unit));
    overflow: hidden;
  }

  .shop-shell {
    width: 100%;
    min-height: auto;
    padding: calc(60 * var(--sp-unit)) 0;
    border-radius: 72% / 16%;
  }

  /* PCの固定高さを解除 */
  .shop-inner {
    position: relative;
    width: 100%;
    height: auto !important;
    max-width: none;
    margin: 0 auto;
    padding: 0 calc(20 * var(--sp-unit));
    box-sizing: border-box;
  }

  /* 追加されたstageをSPでは通常レイアウト化 */
  .shop-stage {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    transform: none !important;
    transform-origin: initial !important;
  }

  .shop-content {
    display: flex;
    flex-direction: column;
    gap: calc(46 * var(--sp-unit));
  }

  /* -------------------------------
     title
  -------------------------------- */
  .shop-block__title--shop img {
    width: calc(210 * var(--sp-unit));
  }

  .shop-block__title--demo img {
    width: calc(270 * var(--sp-unit));
    max-width: 100%;
  }

  /* -------------------------------
     shop links
  -------------------------------- */
  .shop-links {
    grid-template-columns: 1fr;
    gap: calc(10 * var(--sp-unit));
    max-width: calc(245 * var(--sp-unit));
    margin: calc(18 * var(--sp-unit)) auto 0;
  }

  .shop-links__item {
    min-height: calc(64 * var(--sp-unit));
    padding: calc(10 * var(--sp-unit)) calc(12 * var(--sp-unit));
  }

  .shop-links__label .shop-links__main {
    font-size: clamp(13px, calc(14 * var(--sp-unit)), 16px);
    line-height: 1.35;
  }

  .shop-links__label .shop-links__sub {
    margin-top: calc(2 * var(--sp-unit));
    font-size: clamp(9px, calc(10 * var(--sp-unit)), 12px);
    line-height: 1.3;
  }

  /* -------------------------------
     demonstration heading / lead
  -------------------------------- */
  .shop-block__heading {
    margin-top: calc(24 * var(--sp-unit));
    font-size: clamp(18px, calc(20 * var(--sp-unit)), 22px);
    line-height: 1.45;
  }

  .shop-block__lead {
    margin-top: calc(14 * var(--sp-unit));
    margin-left: auto;
    margin-right: auto;
    width: 89%;
  }

  .shop-block__lead p {
    font-size: clamp(12px, calc(14 * var(--sp-unit)), 15px);
    line-height: 1.9;
    text-align: left;
  }

  /* -------------------------------
     shop list title
  -------------------------------- */
  .shop-list-head {
    margin-top: calc(36 * var(--sp-unit));
  }

  .shop-list-head__tag img {
    width: calc(240 * var(--sp-unit));
  }

  /* -------------------------------
     demo store list
  -------------------------------- */
  .top-demo-store-list {
    margin-top: calc(18 * var(--sp-unit));
  }

  .top-demo-store-list__grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .top-demo-store-list__item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: calc(12 * var(--sp-unit));
    align-items: center;
    padding: calc(16 * var(--sp-unit)) 0;
    min-height: unset;
  }

  .top-demo-store-list__shopname {
    font-size: clamp(14px, calc(16 * var(--sp-unit)), 16px);
    line-height: 1.6;
  }

  .top-demo-store-list__button {
    min-width: calc(72 * var(--sp-unit));
    min-height: calc(28 * var(--sp-unit));
    padding: 0 calc(10 * var(--sp-unit));
    font-size: clamp(11px, calc(13 * var(--sp-unit)), 13px);
  }

  /* -------------------------------
     more button
  -------------------------------- */
  .shop-block__more {
    margin-top: calc(26 * var(--sp-unit));
    text-align: center;
  }

  .shop-block__more a {
    width: 70%;
    min-height: calc(64 * var(--sp-unit));
    padding: calc(10 * var(--sp-unit)) calc(18 * var(--sp-unit));
    font-size: clamp(14px, calc(15 * var(--sp-unit)), 16px);
    line-height: 1.4;
  }
}

/* ========================================
   TOP Information
   背景はフル幅 / 中身は1469px未満で縮小
======================================== */
.top-information {
  background-color: #fff;
  background-image: url(../img/information/page-bg.png);
  background-repeat: repeat;
  background-position: center top;
}

.top-information__inner {
  --info-scale: var(--tenyo-scale-1469, 1);

  position: relative;
  width: 100%;
  height: calc(950px * var(--info-scale));
  box-sizing: border-box;
  overflow: hidden;
}

/* 固定幅ステージを中央配置してから縮小 */
.top-information__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1200px;
  padding: 120px 44.5px;
  box-sizing: border-box;
  transform-origin: center top;
  transform: translateX(-50%) scale(var(--info-scale));
}

/* -------------------------------
   title
-------------------------------- */
.top-information__title {
  width: 566px;
  margin: 0 auto 90px;
}

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

/* -------------------------------
   list
-------------------------------- */
.top-information-list {
  display: flex;
  flex-direction: column;
}

.top-information-list__empty {
  margin: 0;
  padding: 40px 0;
  color: #3957cc;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

/* -------------------------------
   card
-------------------------------- */
.top-information-card {
  border-bottom: 1px dotted #3957cc;
  transition: border-color 0.3s ease;
}

.top-information-card:first-child {
  border-top: 1px dotted #3957cc;
}

.top-information-card__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px;
  gap: 40px;
  align-items: center;
  padding: 24px 20px;
  color: #3957cc;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* ▼ hover背景 */
.top-information-card__link:hover {
  background: #3957cc;
}

/* ▼ 点線も白に */
.top-information-card__link:hover .top-information-card {
  border-color: #fff;
}

.top-information-card__content {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-width: 0;
}

.top-information-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 130px;
  flex-shrink: 0;
}

/* -------------------------------
   text
-------------------------------- */
.top-information-card__date {
  color: #3957cc;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.top-information-card__title {
  min-width: 0;
  margin: 0;
  color: #3957cc;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

/* ▼ hoverで白 */
.top-information-card__link:hover .top-information-card__date,
.top-information-card__link:hover .top-information-card__title {
  color: #fff;
}

/* -------------------------------
   category
-------------------------------- */
.top-information-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  min-height: 35px;
  margin-top: 12px;
  padding: 4px 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  background: #3957cc;
  border-radius: 8px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

/* ▼ hoverで反転 */
.top-information-card__link:hover .top-information-card__category {
  background: #fff;
  color: #3957cc;
}

/* -------------------------------
   arrow
-------------------------------- */
.top-information-card__arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 1px solid #3957cc;
  color: #3957cc;
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}

.top-information-card__arrow-circle svg {
  width: 15px;
  height: 15px;
  display: block;
}

/* ▼ hoverで白 */
.top-information-card__link:hover .top-information-card__arrow-circle {
  border-color: #fff;
  color: #fff;
}

/* ========================================
   TOP Information more button（反転仕様）
======================================== */

.top-information__more {
  margin-top: 90px;
  display: flex;
  justify-content: center;
}

.top-information__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 288px;
  height: 83px;

  background: transparent;
  color: #3957cc;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;

  border: 1px solid #3957cc;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* hover（PCのみ想定） */
@media (hover: hover) and (pointer: fine) {
  .top-information__more a:hover {
    background: #3957cc;
    color: #fff;
  }

  .top-information__more a:hover svg {
    stroke: currentColor;
  }
}

/* ▼ hoverで反転 */
.top-information__more a:hover {
  background: #3957cc;
  color: #fff;
  border-color: #3957cc;
}

/* -------------------------------
   矢印アイコン（c-link-arrow対応）
-------------------------------- */

/* 通常：青 */
.top-information__more a svg,
.top-information__more a .c-link-arrow__icon {
  color: #3957cc;
  transition: color 0.3s ease;
}

/* hover：白 */
.top-information__more a:hover svg,
.top-information__more a:hover .c-link-arrow__icon {
  color: #fff;
}

/* SVG path対策（念のため） */
.top-information__more a:hover svg path {
  stroke: currentColor;
}

/* ========================================
   TOP Information - TABLET
   SPレイアウトをベースに拡張
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .top-information {
    background-color: #fff;
    background-image: url(../img/information/page-bg.png);
    background-repeat: repeat;
    background-position: center top;
    overflow: hidden;
  }

  /* PCの固定高さ・縮小レイアウトを解除してSP側へ寄せる */
  .top-information__inner {
    position: relative;
    width: min(100% - 64px, 900px);
    height: auto !important;
    margin: 0 auto;
    padding: 96px 0 110px;
    box-sizing: border-box;
    overflow: visible;
  }

  .top-information__stage {
    position: relative;
    top: auto;
    left: auto;
    width: 100% !important;
    padding: 0;
    box-sizing: border-box;
    transform: none !important;
    transform-origin: initial !important;
  }

  .top-information__title {
    width: min(420px, 100%);
    margin: 0 auto 42px;
  }

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

  .top-information-list {
    display: flex;
    flex-direction: column;
  }

  .top-information-list__empty {
    padding: 32px 0;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
  }

  .top-information-card__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 16px;
    align-items: center;
    padding: 22px 0;
  }

  .top-information-card__content {
    display: block;
    min-width: 0;
  }

  .top-information-card__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: auto;
    min-width: 0;
    margin-bottom: 10px;
  }

  .top-information-card__date {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .top-information-card__category {
    width: auto;
    min-height: 30px;
    margin-top: 0;
    padding: 4px 14px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 6px;
    white-space: nowrap;
  }

  .top-information-card__title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .top-information-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-information-card__arrow-circle {
    width: 44px;
    height: 44px;
  }

  .top-information-card__arrow-icon {
    width: 14px;
    height: 14px;
  }

  .top-information__more {
    margin-top: 56px;
    text-align: center;
  }

  .top-information__more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    min-height: 68px;
    padding: 14px 24px;
    font-size: 18px;
    line-height: 1.4;
  }
}

/* ========================================
   TOP Information SP
======================================== */
@media screen and (max-width: 767px) {
  .top-information {
    background-color: #fff;
    background-image: url(../img/information/page-bg.png);
    background-repeat: repeat;
    background-position: center top;
    overflow: hidden;
  }

  /* PCの固定高さを解除 */
  .top-information__inner {
    position: relative;
    width: 89.0667%;
    height: auto !important;
    margin: 0 auto;
    padding: calc(72 * var(--sp-unit)) 0;
    box-sizing: border-box;
    overflow: visible;
  }

  /* 追加されたstageをSPでは通常レイアウト化 */
  .top-information__stage {
    position: relative;
    top: auto;
    left: auto;
    width: 100% !important;
    padding: 0;
    box-sizing: border-box;
    transform: none !important;
    transform-origin: initial !important;
  }

  .top-information__title {
    width: min(calc(287 * var(--sp-unit)), 100%);
    margin: 0 auto calc(30 * var(--sp-unit));
  }

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

  .top-information-list {
    display: flex;
    flex-direction: column;
  }

  .top-information-list__empty {
    padding: calc(28 * var(--sp-unit)) 0;
    font-size: clamp(13px, calc(14 * var(--sp-unit)), 16px);
    line-height: 1.8;
  }

  .top-information-card__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) calc(44 * var(--sp-unit));
    gap: calc(12 * var(--sp-unit));
    align-items: center;
    padding: calc(18 * var(--sp-unit)) 0;
  }

  .top-information-card__content {
    display: block;
    min-width: 0;
  }

  .top-information-card__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: calc(10 * var(--sp-unit));
    width: auto;
    min-width: 0;
    margin-bottom: calc(8 * var(--sp-unit));
  }

  .top-information-card__date {
    flex-shrink: 0;
    font-size: clamp(13px, calc(14 * var(--sp-unit)), 16px);
    line-height: 1.45;
  }

  .top-information-card__category {
    width: auto;
    min-height: calc(26 * var(--sp-unit));
    margin-top: 0;
    padding: calc(3 * var(--sp-unit)) calc(10 * var(--sp-unit));
    font-size: clamp(10px, calc(11 * var(--sp-unit)), 12px);
    line-height: 1.4;
    border-radius: calc(6 * var(--sp-unit));
    white-space: nowrap;
  }

  .top-information-card__title {
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(14px, calc(15 * var(--sp-unit)), 16px);
    line-height: 1.7;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .top-information-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-information-card__arrow-circle {
    width: calc(36 * var(--sp-unit));
    height: calc(36 * var(--sp-unit));
  }

  .top-information-card__arrow-circle svg {
    width: calc(11 * var(--sp-unit));
    height: calc(11 * var(--sp-unit));
  }

  .top-information__more {
    margin-top: calc(30 * var(--sp-unit));
    text-align: center;
  }

  .top-information__more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(10 * var(--sp-unit)) calc(16 * var(--sp-unit));
    width: calc(180 * var(--sp-unit));
    height: calc(53 * var(--sp-unit));

    font-size: clamp(12px, calc(14 * var(--sp-unit)), 16px);
    line-height: 1.4;
    text-align: center;
  }
}

/* ========================================
   TOP FAQ
   背景はフル幅 / 中身は1470px以下で縮小
======================================== */
.top-faq {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: #ef7051;
  overflow: hidden;
}

.top-faq__inner {
  --faq-scale: var(--tenyo-scale-1470, 1);

  position: relative;
  z-index: 1;
  width: 100%;
  height: 0; /* JSで上書き */
  box-sizing: border-box;
}

.top-faq__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1200px;
  padding: 120px 44.5px;
  box-sizing: border-box;
  transform-origin: center top;
  transform: translateX(-50%) scale(var(--faq-scale));
}

.top-faq__title {
  margin: 0;
  text-align: center;
}

.top-faq__title img {
  display: block;
  width: 100%;
  max-width: 243px;
  height: auto;
  margin: 0 auto;
}

.top-faq__lead {
  margin: 80px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: #f3ff97;
  text-align: center;
}

.top-faq__list {
  margin-top: 40px;
  text-align: left;
}

.top-faq-item {
  border-bottom: 1px solid #f3ff97;
}

.top-faq-item:first-child {
  border-top: 1px solid #f3ff97;
}

.top-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 30px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.top-faq-item__question-text {
  display: block;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  color: #f3ff97;
}

.top-faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.top-faq-item__icon::before,
.top-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #f3ff97;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.top-faq-item__icon::before {
  width: 24px;
  height: 1px;
}

.top-faq-item__icon::after {
  width: 1px;
  height: 24px;
}

.top-faq-item.is-open .top-faq-item__icon::after {
  opacity: 0;
}

.top-faq-item__answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    height 0.5s ease,
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.top-faq-item.is-open .top-faq-item__answer {
  opacity: 1;
  visibility: visible;
}

.top-faq-item__answer-inner {
  margin: 0 0 30px;
  padding: 30px 40px;
  background: #f5ffa4;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.8;
  color: #df775a;
}

.top-faq__contact {
  margin-top: 50px;
  text-align: center;
}

.top-faq__contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 56px;
  padding: 16px 32px;
  border: 1px solid #f3ff97;
  color: #f3ff97;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.top-faq__contact-button:hover {
  background: #f3ff97;
  color: #ef7051;
}

.top-faq__contact-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.75;
  color: #f3ff97;
  text-align: center;
}

/* ========================================
   TOP FAQ - TABLET
   SPレイアウトをベースに拡張
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .top-faq {
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .top-faq__inner {
    position: relative;
    width: 100%;
    height: auto !important;
    min-height: 0;
    overflow: visible;
  }

  .top-faq__stage {
    position: relative;
    top: auto;
    left: auto;
    width: 100% !important;
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 32px 130px;
    box-sizing: border-box;
    transform: none !important;
    transform-origin: initial !important;
  }

  .top-faq__title {
    width: min(160px, 100%);
    margin: 0 auto;
  }

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

  .top-faq__lead {
    margin: 22px auto 0;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
  }

  .top-faq__list {
    margin-top: 34px;
  }

  .top-faq-item__question {
    gap: 16px;
    padding: 26px 0;
  }

  .top-faq-item__question-text {
    font-size: 18px;
    line-height: 1.7;
  }

  .top-faq-item__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .top-faq-item__icon::before {
    width: 20px;
    height: 1px;
  }

  .top-faq-item__icon::after {
    width: 1px;
    height: 20px;
  }

  .top-faq-item__answer {
    font-size: 14px;
    line-height: 1.85;
  }

  .top-faq-item__answer-inner {
    margin: 0 0 24px;
    padding: 24px 28px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.9;
    background: #f5ffa4;
    color: #df775a;
    text-align: justify;
  }

  .top-faq__contact {
    margin-top: 34px;
    text-align: center;
  }

  .top-faq__contact-button,
  .top-faq__contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(280px, 100%);
    min-height: 56px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
  }

  .top-faq__contact-note {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
  }
}

/* ========================================
   TOP FAQ - SP
======================================== */
@media screen and (max-width: 767px) {
  .top-faq {
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  /* PCの固定高さを解除 */
  .top-faq__inner {
    position: relative;
    width: 100%;
    height: auto !important;
    min-height: 0;
    overflow: visible;
  }

  /* stageをSPでは通常レイアウト化 */
  .top-faq__stage {
    position: relative;
    top: auto;
    left: auto;
    width: 100% !important;
    padding: calc(72 * var(--sp-unit)) calc(20 * var(--sp-unit))
      calc(120 * var(--sp-unit));
    box-sizing: border-box;
    transform: none !important;
    transform-origin: initial !important;
  }

  .top-faq__title {
    width: min(calc(120 * var(--sp-unit)), 100%);
    margin: 0 auto;
  }

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

  .top-faq__lead {
    margin: calc(16 * var(--sp-unit)) auto 0;
    font-size: clamp(12px, calc(13 * var(--sp-unit)), 14px);
    line-height: 1.9;
    text-align: center;
  }

  .top-faq__list {
    margin-top: calc(26 * var(--sp-unit));
  }

  .top-faq-item__question {
    gap: calc(12 * var(--sp-unit));
    padding: calc(24 * var(--sp-unit)) 0;
  }

  .top-faq-item__question-text {
    font-size: clamp(14px, calc(16 * var(--sp-unit)), 16px);
    line-height: 1.7;
  }

  .top-faq-item__icon {
    width: calc(18 * var(--sp-unit));
    height: calc(18 * var(--sp-unit));
    flex-shrink: 0;
  }

  .top-faq-item__icon::before {
    width: 18px;
    height: 1px;
  }

  .top-faq-item__icon::after {
    width: 1px;
    height: 18px;
  }

  .top-faq-item__answer {
    font-size: clamp(11px, calc(12 * var(--sp-unit)), 13px);
    line-height: 1.85;
  }

  .top-faq-item__answer-inner {
    margin: 0 0 calc(24 * var(--sp-unit));
    padding: calc(20 * var(--sp-unit));
    border-radius: calc(5 * var(--sp-unit));
    font-size: clamp(11px, calc(12 * var(--sp-unit)), 12px);
    background: #f5ffa4;
    line-height: 1.8;
    color: #df775a;
    text-align: justify;
  }

  .top-faq__contact {
    margin-top: calc(26 * var(--sp-unit));
    text-align: center;
  }

  .top-faq__contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(calc(220 * var(--sp-unit)), 100%);
    min-height: calc(46 * var(--sp-unit));
    padding: calc(10 * var(--sp-unit)) calc(16 * var(--sp-unit));
    font-size: clamp(14px, calc(15 * var(--sp-unit)), 16px);
    line-height: 1.4;
    text-align: center;
  }

  /* 下のカード画像 */
  .top-faq::after,
  .top-faq__cards,
  .top-faq__image {
    pointer-events: none;
  }

  .top-faq__cards,
  .top-faq__image {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(108vw, 520px);
    max-width: none;
    transform: translateX(-50%);
    z-index: 0;
  }

  .top-faq__cards img,
  .top-faq__image img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* ========================================
   Recommend Voice
======================================== */
.recommend-voice {
  --rv-scale: var(--tenyo-scale-1470, 1);
  --rv-stage-h: 1080px;

  position: relative;
  overflow: hidden;
  padding-bottom: 260px;
}

@media screen and (max-width: 1469px) {
  .recommend-voice {
    height: calc(var(--rv-stage-h) * var(--rv-scale));
    padding-bottom: 0;
  }
}

.recommend-voice-bg-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.recommend-voice-bg {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 1760px;
  height: 1500px;
  transform: translateX(-50%);
  transform-origin: center bottom;
  background: url(../img/top/recommend-voice-bg.webp) no-repeat center bottom;
  background-size: 100% auto;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  opacity: 0;
  will-change: opacity, clip-path, transform;
  pointer-events: none;
  z-index: 0;
}

@media screen and (max-width: 1469px) {
  .recommend-voice-bg {
    bottom: calc(40px * var(--rv-scale));
    transform: translateX(-50%) scale(var(--rv-scale));
  }
}

.recommend-voice-stage {
  position: relative;
  width: 100%;
  max-width: 2300px;
  margin: 0 auto;
  z-index: 1;
}

@media screen and (max-width: 1469px) {
  .recommend-voice-stage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1470px;
    min-height: var(--rv-stage-h);
    transform: translateX(-50%) scale(var(--rv-scale));
    transform-origin: center top;
  }
}

.recommend-voice__inner {
  width: 1380px;
  margin: 0 auto;
  padding-top: 140px;
  position: relative;
  z-index: 1;
}

/* タイトル */
.recommend-voice__title {
  position: relative;
  z-index: 2;
  margin: 0 auto -40px;
  text-align: center;
}

.recommend-voice__title img {
  display: block;
  width: 1060px;
  height: auto;
  margin: 0 auto;
}

/* パネル */
.recommend-voice__panel {
  position: relative;
  padding: 90px 30px 70px;
  border-radius: 80px 80px 0 0;
  background: linear-gradient(180deg, #3957cc 0%, #2343c6 100%);
  overflow: hidden;
  isolation: isolate;
}

.recommend-voice__panel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 710px;
  pointer-events: none;
  z-index: 0;
  background: url(../img/top/recommend-voice__panel_bg.webp) no-repeat center
    bottom / contain;
}

.recommend-voice__panel > * {
  position: relative;
  z-index: 1;
}

/* ========================================
   Selector Area
======================================== */
.recommend-voice__selector-wrap {
  margin-bottom: 120px;
  position: relative;
  margin-inline: -30px;
  overflow: hidden;
}

.recommend-voice__selectors {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: max-content;
  will-change: transform;
  transition: transform 0.45s ease;
}

.recommend-voice__selectors.is-moving .recommend-voice__selector {
  pointer-events: none;
}

.recommend-voice__selectors.is-moving
  .recommend-voice__selector:hover
  .recommend-voice__card {
  transform: rotateY(0deg);
}

.recommend-voice__selectors::-webkit-scrollbar {
  display: none;
}

.recommend-voice__selector {
  position: relative;
  flex: 0 0 200px;
  width: 200px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.recommend-voice__selector:hover {
  opacity: 1;
}

.recommend-voice__selector.is-active {
  box-shadow: none;
}

.recommend-voice__selector-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 360 / 500;
  perspective: 1000px;
  overflow: hidden;
  background: transparent;
}

.recommend-voice__card {
  position: absolute;
  inset: 0;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.recommend-voice__selector:hover .recommend-voice__card {
  transform: rotateY(360deg);
}

.recommend-voice__card-face {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.recommend-voice__card-face--front,
.recommend-voice__card-face--back {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.recommend-voice__card-face--front {
  transform: rotateY(0deg);
}

.recommend-voice__card-face--back {
  transform: rotateY(180deg);
}

.recommend-voice__card-face--front img,
.recommend-voice__card-face--back img {
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center;
}

/* ========================================
   Detail Area
======================================== */
.recommend-voice__detail-wrap {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  gap: 26px;
}

.recommend-voice__nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
}

.recommend-voice__nav--prev {
  grid-column: 1;
}

.recommend-voice__detail {
  grid-column: 2;
  position: relative;
  min-height: 540px;
  min-width: 0;
}

.recommend-voice__nav--next {
  grid-column: 3;
}

.recommend-voice__nav::before {
  content: "";
  display: block;
  width: 16px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease;
}

.recommend-voice__nav--prev::before {
  background-image: url(../img/top/recommend-voice__nav--prev.svg);
  transform: translateX(-2px);
}

.recommend-voice__nav--next::before {
  background-image: url(../img/top/recommend-voice__nav--next.svg);
  transform: translateX(2px);
}

.recommend-voice__nav:hover {
  background: #3957cc;
}

.recommend-voice__nav--prev:hover::before {
  background-image: url(../img/top/recommend-voice__nav--prev-hover.svg);
}

.recommend-voice__nav--next:hover::before {
  background-image: url(../img/top/recommend-voice__nav--next-hover.svg);
}

.recommend-voice__nav:disabled {
  opacity: 0.4;
  cursor: default;
}

.recommend-voice__detail-inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  opacity: 0;
  transition: opacity 0.35s ease;
  min-height: 500px;
}

.recommend-voice__detail-inner.is-active {
  opacity: 1;
}

.recommend-voice__image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  min-width: 0;
}

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

.recommend-voice__content {
  min-width: 0;
  padding-top: 18px;
  color: #f3ff97;
}

.recommend-voice__name {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.recommend-voice__lead {
  margin: 28px 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.recommend-voice__text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #fff8b5;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 8px;
}

.recommend-voice__text p {
  margin: 0;
}

.recommend-voice__text p + p {
  margin-top: 14px;
}

.recommend-voice__text-en {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 181, 0.38);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
}

.recommend-voice__text::-webkit-scrollbar {
  width: 6px;
}

.recommend-voice__text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}

.recommend-voice__text::-webkit-scrollbar-track {
  background: transparent;
}

/* ========================================
   Recommend Voice - TABLET
   PCレイアウト維持
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .recommend-voice {
    height: 737px;
    padding-bottom: 80px;
  }

  /* PCと同じく stage 縮小方式を維持 */
  .recommend-voice-stage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1470px;
    min-height: var(--rv-stage-h);
    transform: translateX(-50%) scale(var(--rv-scale));
    transform-origin: center top;
  }

  .recommend-voice__inner {
    width: 1300px;
    padding-top: 128px;
  }

  .recommend-voice__title {
    margin: 0 auto -34px;
  }

  .recommend-voice__title img {
    width: 980px;
    height: auto;
  }

  .recommend-voice__panel {
    padding: 80px 30px 62px;
    border-radius: 64px 64px 0 0;
  }

  .recommend-voice__panel::after {
    height: 660px;
    background-size: contain;
  }

  .recommend-voice__selector-wrap {
    margin-bottom: 72px;
  }

  .recommend-voice__selector {
    flex: 0 0 180px;
    width: 180px;
  }

  .recommend-voice__selector-image {
    aspect-ratio: 180 / 250;
  }

  .recommend-voice__detail-wrap {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 40px;
    align-items: center;
  }

  .recommend-voice__nav {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  /* ここが重要：1カラム化をやめてPC構造へ戻す */
  .recommend-voice__detail-inner {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    min-height: 460px;
  }

  .recommend-voice__image {
    width: 100%;
    max-width: 240px;
    margin: 0;
  }

  .recommend-voice__content {
    padding-top: 14px;
  }

  .recommend-voice__name {
    font-size: 42px;
    line-height: 1.2;
  }

  .recommend-voice__lead {
    margin-top: 22px;
    font-size: 32px;
    line-height: 1.45;
  }

  .recommend-voice__text {
    margin-top: 18px;
    max-height: 320px;
    padding-right: 6px;
    font-size: 21px;
    line-height: 1.9;
  }
}

/* ========================================
   Recommend Voice SP override
   stage / bg-clip 追加後のSP最適化
======================================== */
@media screen and (max-width: 767px) {
  .recommend-voice {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 92px 0 70px;
    overflow: hidden;
  }

  /* PC用clipラッパーをSPでは普通の背景レイヤー化 */
  .recommend-voice-bg-clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }

  .recommend-voice-bg {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 268vw;
    height: 205vw;
    min-width: 640px;
    max-width: none;
    transform: translateX(-50%);
    transform-origin: center bottom;
    background: url(../img/top/recommend-voice-bg.webp) no-repeat center
      bottom / contain;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  /* 追加されたstageをSPでは通常コンテナ化 */
  .recommend-voice-stage {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    max-width: none;
    margin: 0;
    transform: none;
    transform-origin: initial;
    z-index: 1;
  }

  .recommend-voice__inner {
    width: calc(100% - calc(32 / 390 * 100vw));
    margin: 0 auto;
    padding-top: 0;
  }

  .recommend-voice__title {
    margin: 0 auto calc(-18 / 390 * 100vw);
  }

  .recommend-voice__title img {
    width: calc(300 / 390 * 100vw);
    max-width: 300px;
    height: auto;
  }

  .recommend-voice__panel {
    padding: calc(54 / 390 * 100vw) calc(6 / 390 * 100vw) calc(60 / 390 * 100vw);
    border-radius: calc(32 / 390 * 100vw) calc(32 / 390 * 100vw) 0 0;
  }

  .recommend-voice__selector-wrap {
    margin-bottom: calc(30 / 390 * 100vw);
  }

  .recommend-voice__selectors {
    gap: 0;
  }

  .recommend-voice__selector {
    flex: 0 0 calc(90 / 390 * 100vw);
    width: calc(90 / 390 * 100vw);
  }

  .recommend-voice__selector-image {
    aspect-ratio: 140 / 195;
  }

  .recommend-voice__detail-wrap {
    position: relative;
    display: block;
    padding: 0 calc(30 / 390 * 100vw);
  }

  .recommend-voice__detail {
    min-height: auto;
  }

  .recommend-voice__detail-inner {
    width: 100%;
    min-height: unset;
    grid-template-columns: 1fr;
    gap: calc(18 / 390 * 100vw);
  }

  .recommend-voice__image {
    position: relative;
    width: calc(100% - calc(24 / 390 * 100vw));
    max-width: calc(180 / 390 * 100vw);
    margin: 0 auto;
  }

  .recommend-voice__nav {
    position: absolute;
    top: calc(105 / 390 * 100vw);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(48 / 390 * 100vw);
    height: calc(48 / 390 * 100vw);
    padding: 0;
    border: none;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    line-height: 1;
    transform: translateY(-50%);
    box-shadow: none;
  }

  .recommend-voice__nav--prev {
    left: calc(4 / 390 * 100vw);
  }

  .recommend-voice__nav--next {
    right: calc(4 / 390 * 100vw);
  }

  .recommend-voice__content {
    margin-top: calc(18 / 390 * 100vw);
    max-height: calc(200 / 390 * 100vw);
    overflow-y: auto;
    padding-right: calc(6 / 390 * 100vw);
  }

  .recommend-voice__name {
    font-size: clamp(16px, calc(18 / 390 * 100vw), 20px);
  }

  .recommend-voice__lead {
    margin-top: calc(12 / 390 * 100vw);
    font-size: clamp(14px, calc(16 / 390 * 100vw), 18px);
  }

  .recommend-voice__text {
    margin-top: calc(10 / 390 * 100vw);
    font-size: clamp(11px, calc(12 / 390 * 100vw), 14px);
    line-height: 1.8;
  }

  .recommend-voice__panel::after {
    height: calc(420 / 390 * 100vw);
    background: url(../img/top/sp/recommend-voice__panel_bg.webp) no-repeat
      center bottom / contain;
  }
}

/* ===== trump ===== */
.gradient-wrap {
  background: linear-gradient(to bottom, #ef7051 0%, #3957cc 100%);
}

/*
 * Trump
 * - section 自体でスクロール距離を確保
 * - .trump-inner を sticky にして1画面固定
 * - ScrollTrigger の pin / pin-spacer に高さを依存しない
 */
.trump {
  position: relative;
  height: 190vh;
  height: 190dvh;
  min-height: 190vh;
  min-height: 190dvh;
  overflow: visible;

  --trump-base-w: 1470;
  --trump-base-h: 1030;

  --trump-stage-w: min(100vw, 2300px);
  --trump-k-w: calc(var(--trump-stage-w) / (var(--trump-base-w) * 1px));
  --trump-k-h: calc(100vh / (var(--trump-base-h) * 1px));
  --trump-k: min(var(--trump-k-w), var(--trump-k-h));
}

.trump-inner {
  position: sticky;
  top: 0;
  width: var(--trump-stage-w);
  max-width: 2300px;
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.trump-inner img {
  position: absolute;
  max-width: none;
  height: auto;
}

/* 背景 */
.trump-bg {
  z-index: 0;
  width: calc(2070px * var(--trump-k));
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 中央 */
.trump-center {
  z-index: 1;
  width: calc(540px * var(--trump-k));
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* テキスト */
.trump-text {
  z-index: 3;
  width: calc(420px * var(--trump-k));
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: none;
}

/* 左右カード */
.trump-left {
  z-index: 2;
  width: calc(1230px * var(--trump-k));
  left: calc(80px * var(--trump-k));
  top: 50%;
  transform: translateY(-50%);
}

.trump-right {
  z-index: 2;
  width: calc(1230px * var(--trump-k));
  right: calc(80px * var(--trump-k));
  top: 50%;
  transform: translateY(-50%);
}

/* ========================================
   trump - TABLET
======================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .trump {
    height: 180vh;
    height: 180dvh;
    min-height: 180vh;
    min-height: 180dvh;
  }

  .trump-inner {
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    margin: 0 auto;
    overflow: hidden;
  }

  .trump-bg {
    width: 1320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .trump-center {
    width: 430px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .trump-text {
    width: 310px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .trump-left {
    width: 760px;
    left: -250px;
    top: 40%;
    transform: translateY(-50%);
  }

  .trump-right {
    width: 840px;
    right: -250px;
    top: 55%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .trump {
    height: 175vh;
    height: 175dvh;
    min-height: 175vh;
    min-height: 175dvh;
  }

  .trump-inner {
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .trump-bg {
    width: 962px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .trump-center {
    width: 328px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .trump-text {
    width: 240px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .trump-left {
    width: 540px;
    left: -220px;
    top: 39%;
    transform: translateY(-50%);
  }

  .trump-right {
    width: 620px;
    right: -220px;
    top: 61%;
    transform: translateY(-50%);
  }
}

/* ========================================
   TOP用フッター
======================================== */
.l-footer {
  background: #3957cc;
}

/* ========================================
   SP only: will-change 最適化
   常時確保をやめて、必要時だけ有効化
======================================== */
@media screen and (max-width: 767px) {
  .door,
  .fv-copy-wrap,
  .fv-smoke,
  .fv-smoke .smoke-img,
  .crystal .hand,
  .crystal-glow,
  .crystal-img,
  .crystal-img-inner,
  .crystal-text .layer,
  .crystal-smokes,
  .crystal-smoke,
  .crystal-smoke .smoke-img {
    will-change: auto;
  }

  .fv.is-animating .door,
  .fv.is-animating .fv-copy-wrap,
  .fv.is-animating .fv-smoke,
  .fv.is-animating .fv-smoke .smoke-img,
  .crystal.is-animating .hand,
  .crystal.is-animating .crystal-glow,
  .crystal.is-animating .crystal-img,
  .crystal.is-animating .crystal-img-inner,
  .crystal.is-animating .crystal-smokes,
  .crystal.is-animating .crystal-smoke,
  .crystal.is-animating .crystal-smoke .smoke-img {
    will-change: transform, opacity;
  }

  .crystal.is-animating .crystal-text .layer {
    will-change: opacity, filter;
  }
}


/* ===============================
   FV Scroll Guide
================================ */
.fv-scroll-guide {
  --fv-scroll-travel: 29px;
  position: absolute;
  left: 50%;
  bottom: max(46px, env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ef8d72;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  animation: fv-scroll-guide-reveal 0.8s ease 4.2s forwards;
}

.fv-scroll-guide__label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  text-shadow: 0 0 12px rgba(239, 141, 114, 0.32);
}

.fv-scroll-guide__track {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(239, 141, 114, 0.28);
}

.fv-scroll-guide__track::before {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 1px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #ef8d72;
  border-bottom: 1px solid #ef8d72;
  transform: rotate(45deg);
}

.fv-scroll-guide__track::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 15px;
  background: linear-gradient(to bottom, rgba(239, 141, 114, 0), #ef8d72);
  animation: fv-scroll-guide-line 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes fv-scroll-guide-reveal {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fv-scroll-guide-line {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  20%, 75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(var(--fv-scroll-travel));
  }
}

@media screen and (max-width: 767px) {
  .fv-scroll-guide {
    --fv-scroll-travel: 20px;
    bottom: max(26px, env(safe-area-inset-bottom));
    gap: 5px;
  }

  .fv-scroll-guide__label {
    font-size: 8px;
  }

  .fv-scroll-guide__track {
    height: 30px;
  }

  .fv-scroll-guide__track::after {
    height: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fv-scroll-guide {
    opacity: 1;
    transform: translateX(-50%);
    animation: none;
  }

  .fv-scroll-guide__track::after {
    opacity: 1;
    transform: translateY(14px);
    animation: none;
  }
}


/* ===============================
   FV Topics
================================ */
.fv-topics {
  position: absolute;
  left: clamp(32px, 5vw, 76px);
  bottom: max(46px, env(safe-area-inset-bottom));
  z-index: 42;
  display: flex;
  align-items: stretch;
  width: clamp(350px, 31vw, 460px);
  height: 56px;
  color: #f7f1eb;
  background: transparent;
  border-top: 1px solid rgba(239, 141, 114, 0.68);
  border-bottom: 1px solid rgba(239, 141, 114, 0.38);
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  pointer-events: auto;
  transform: translateY(8px);
  animation: fv-topics-reveal 0.8s ease 4.2s forwards;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.fv-topics__label {
  position: relative;
  flex: 0 0 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef8d72;
  border-right: 1px solid rgba(239, 141, 114, 0.34);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
}

.fv-topics__label::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin-right: 9px;
  background: #ef8d72;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(239, 141, 114, 0.72);
}

.fv-topics__viewport,
.fv-topics__list {
  position: relative;
  min-width: 0;
  width: 100%;
  height: 100%;
}

.fv-topics__viewport {
  flex: 1 1 auto;
  overflow: hidden;
}

.fv-topics__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fv-topics__item {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  color: #f7f1eb;
  font-size: 15px;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fv-topics__link {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .fv-topics__link:hover {
    opacity: 0.72;
  }
}

.fv-topics__item.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
}

.fv-topics__item.is-leaving {
  z-index: 1;
  opacity: 0;
  transform: translateY(-12px);
}

/* Reload/restoration below the page top: the intro is already complete, so FV helpers must not wait for their reveal delay. */
.fv.is-post-intro-state .fv-topics,
.fv.is-post-intro-state .fv-scroll-guide {
  opacity: 1;
  animation: none !important;
}

.fv.is-post-intro-state .fv-topics {
  transform: translateY(0);
}

.fv.is-post-intro-state .fv-scroll-guide {
  transform: translate(-50%, 0);
}

@keyframes fv-topics-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv-topics {
    left: 24px;
    width: min(42vw, 360px);
  }

  .fv-topics__label {
    flex-basis: 84px;
  }

  .fv-topics__item {
    padding: 0 16px;
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .fv-topics {
    top: max(92px, calc(env(safe-area-inset-top) + 78px));
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    height: 44px;
  }

  .fv-topics__label {
    flex-basis: 76px;
    font-size: 8px;
    letter-spacing: 0.16em;
    text-indent: 0.16em;
  }

  .fv-topics__label::before {
    width: 3px;
    height: 3px;
    margin-right: 6px;
  }

  .fv-topics__item {
    padding: 0 12px;
    font-size: 12px;
    line-height: 42px;
    letter-spacing: 0.02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fv-topics {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .fv-topics__item {
    transition: none;
  }
}


/* ===============================
   FV SP Controls Cleanup
================================ */
@media screen and (max-width: 767px) {
  .fv-buttons {
    display: none;
  }

  .fv-topics {
    top: max(80px, calc(env(safe-area-inset-top) + 66px));
    bottom: auto;
  }

  .fv-scroll-guide {
    bottom: max(44px, calc(env(safe-area-inset-bottom) + 36px));
  }
}


/* ===============================
   Performance Layer Optimization
   見た目は維持し、描画中の要素だけGPUレイヤーを確保
================================ */
.fv-copy-highlight {
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 0;
  will-change: opacity;
}

.door {
  will-change: auto;
}

.door.is-transitioning {
  will-change: opacity;
}

.crystal:not(.is-performance-active) .crystal-smokes,
.crystal:not(.is-performance-active) .crystal-smokes .smoke-img,
.crystal:not(.is-performance-active) .crystal-frame,
.crystal:not(.is-performance-active) .hand,
.crystal:not(.is-performance-active) .crystal-glow,
.crystal:not(.is-performance-active) .crystal-img,
.crystal:not(.is-performance-active) .crystal-img-inner,
.crystal:not(.is-performance-active) .crystal-text .layer,
.fushigi:not(.is-performance-active) .fushigi-text,
.fushigi:not(.is-performance-active) .fushigi-shine,
.lineup:not(.is-performance-active) .lineup-bg,
.recommend-voice:not(.is-performance-active) .recommend-voice-bg,
.recommend-voice:not(.is-performance-active) .recommend-voice__selectors {
  will-change: auto !important;
}


/* ===============================
   Performance Layer Optimization 2
   画面外のCSSアニメーションと完了済みレイヤーを停止
================================ */
.fv.is-door-complete .fv-copy-highlight {
  will-change: auto;
}

.fv:not(.is-performance-active) *,
.crystal:not(.is-performance-active) *,
.fushigi:not(.is-performance-active) *,
.hexagonarea:not(.is-performance-active) *,
.lineup:not(.is-performance-active) *,
.recommend-voice:not(.is-performance-active) * {
  animation-play-state: paused !important;
}


/* ===============================
   Overscroll Canvas Background
   本編の背景色は変更せず、上下端の余白だけ黒に固定
================================ */
html,
body.home {
  background: #000;
}

html,
body {
  overscroll-behavior-y: none;
}


/* ===============================
   PC Lineup Position
   狭いPCでは右端の見切れを補正し、1471px以上は1470px基準の中央配置を保つ
================================ */
@media screen and (min-width: 1024px) and (max-width: 1470px) {
  .lineup-mask {
    left: calc(72vw - 374.4px);
  }
}

@media screen and (min-width: 1471px) {
  .lineup-mask {
    left: var(--lineup-mask-left);
  }
}


/* ===============================
   PC Lineup Focus Overlay
   選択中の商品だけ斜めマスクの外へ描画し、上端の見切れを防止
================================ */
@media screen and (min-width: 1024px) {
  .lineup-focus-overlay {
    position: absolute;
    z-index: 20;
    overflow: visible;
    clip-path: none;
    pointer-events: none;
  }

  .lineup-focus-overlay-rotator {
    z-index: 1;
  }

  .lineup-focus-overlay-thumb {
    z-index: 2;
  }

  .lineup-focus-overlay-rotator,
  .lineup-focus-overlay-img,
  .lineup-focus-overlay-thumb {
    pointer-events: none;
  }
}


/* ===============================
   PC Lineup Carousel Exit Fade
   カードが回転して表示領域を抜ける下端・右端を段階的に透明化
================================ */
@media screen and (min-width: 1024px) {
  .lineup-card-exit-fade {
    position: absolute;
    inset: 0;
    overflow: visible;
    pointer-events: none;
    -webkit-mask-image:
      linear-gradient(
        to bottom,
        #000 0%,
        #000 60%,
        rgba(0, 0, 0, 0.92) 68%,
        rgba(0, 0, 0, 0.58) 77%,
        rgba(0, 0, 0, 0.2) 85%,
        transparent 91%
      ),
      linear-gradient(
        to right,
        #000 0%,
        #000 72%,
        rgba(0, 0, 0, 0.92) 79%,
        rgba(0, 0, 0, 0.58) 86%,
        rgba(0, 0, 0, 0.2) 93%,
        transparent 100%
      );
    mask-image:
      linear-gradient(
        to bottom,
        #000 0%,
        #000 60%,
        rgba(0, 0, 0, 0.92) 68%,
        rgba(0, 0, 0, 0.58) 77%,
        rgba(0, 0, 0, 0.2) 85%,
        transparent 91%
      ),
      linear-gradient(
        to right,
        #000 0%,
        #000 72%,
        rgba(0, 0, 0, 0.92) 79%,
        rgba(0, 0, 0, 0.58) 86%,
        rgba(0, 0, 0, 0.2) 93%,
        transparent 100%
      );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

/* Recommend Voice: profession / affiliation */
.recommend-voice__role {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #fff;
  opacity: 0.78;
}

.recommend-voice__role + .recommend-voice__lead {
  margin-top: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .recommend-voice__role {
    margin-top: 8px;
    font-size: 18px;
  }

  .recommend-voice__role + .recommend-voice__lead {
    margin-top: 18px;
  }
}

@media screen and (max-width: 767px) {
  .recommend-voice__role {
    margin-top: calc(4 / 390 * 100vw);
    font-size: clamp(10px, calc(11 / 390 * 100vw), 12px);
    line-height: 1.4;
  }

  .recommend-voice__role + .recommend-voice__lead {
    margin-top: calc(9 / 390 * 100vw);
  }
}


/* Recommend Voice: portrait frames with undistorted photos */
.recommend-voice__card-face--front img {
  object-fit: cover;
  object-position: center top;
}

.recommend-voice__image {
  aspect-ratio: 3 / 4;
  height: auto;
  align-self: start;
  overflow: hidden;
}

.recommend-voice__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


/* Recommend Voice: rounded corners */
.recommend-voice__card-face img {
  border-radius: clamp(4px, 0.55vw, 8px);
}

/* Recommend Voice: rounded corners */
.recommend-voice__card-face img {
  border-radius: clamp(4px, 0.55vw, 8px);
}
/* Recommend Voice: detail image and text alignment */
.recommend-voice__image,
.recommend-voice__image img {
  border-radius: clamp(4px, 0.55vw, 8px);
}

.recommend-voice__content {
  padding-top: 0;
}

/* ===============================
   SP QA: M-29 / M-30 / M-31
================================ */
@media screen and (max-width: 767px) {
  /* M-31: Chromeの下部UIが表示中でもFVとスクロールガイドを画面内へ収める。 */
  .fv,
  .fv-stage,
  .fv-frame {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
  }

  .fv-scroll-guide {
    bottom: max(64px, calc(env(safe-area-inset-bottom) + 52px));
  }

  /* M-29: Safariの可変表示領域いっぱいまでステートメント背景を伸ばす。 */
  .crystal {
    height: 100dvh;
    min-height: 100dvh;
  }

  /* M-30: 商品デモの閉じるボタンを常にブラウザUI・セーフエリア内へ置く。 */
  .demo-modal,
  .demo-modal-body {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
  }

  .demo-modal-content {
    box-sizing: border-box;
    height: 100%;
  }

  .demo-modal-close {
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    right: 12px;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
  }
}

.recommend-voice__lead {
  white-space: pre-line;
}

.recommend-voice__text p:last-child {
  margin-bottom: 36px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .recommend-voice__text p:last-child {
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 767px) {
  .recommend-voice__text p:last-child {
    margin-bottom: calc(20 / 390 * 100vw);
  }
}


/* Hand/background alignment and compact transition to the next section. */
@media screen and (min-width: 1024px) {
  .ball-section {
    --ball-align-y: min(-200px, calc(25vw - 496px));
    height: calc(var(--ball-base-h) * min(1, var(--ball-scale)) + var(--ball-align-y));
    min-height: 0;
  }

  .ball-section .ball-stage-outer {
    translate: 0 var(--ball-align-y);
  }

  .ball-section + .ringarea {
    margin-top: clamp(64px, 8vh, 96px);
  }
}

/* Recommend Voice: flow from left to right. */
.recommend-voice__selectors {
  animation-direction: reverse !important;
}
