/* =========================================================
   RESET
========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
/* =========================================================
   THEME RESET
========================================================= */
.home .entry-title,
.home .page-title,
.home .entry-header,
.home .page-header,
.home .single-page-header,
.home .c-pageTitle,
.home .p-pageTitle,
.home .l-mainContent__inner > header,
.home .site-name,
.home .site-name-text,
.home .site-description {
  display: none !important;
}
.home .site-content,
.home .site-main,
.home main,
.home article,
.home .content-area,
.home .main-content,
.home .entry-content,
.home .page-content,
.home .container,
.home .inner,
.home .wrap,
.home .l-mainContent__inner {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  background: transparent !important;
}
/* =========================================================
   HERO WRAP
========================================================= */
.fv-wrap {
  position: relative;
  width: 100%;
}
/* =========================================================
   HERO TITLE FADE IN
========================================================= */
.fv-hero-title {
  opacity: 0;
  transform: translateY(50px);
  animation: hero-fade 1.0s ease forwards;
  animation-delay: 0.6s;
}
@keyframes hero-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================================
   HERO
========================================================= */
.fv-hero {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}
.fv-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.fv-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: px;
  text-align: center;
  transform: translateY(12%);
}
.fv-hero-title {
  margin: 0;
  color: #fff;
  font-size: 50px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 255, 255, 0.25),
    0 0 40px rgba(255, 255, 255, 0.15),
    0 3px 12px rgba(0, 0, 0, 0.5);
}
/* =========================================================
   HERO SPACER
========================================================= */
.fv-spacer {
  height: 100vh;
}
/* =========================================================
   EXPERIENCE FEATURE
========================================================= */
.experience-feature {
  position: relative;
  z-index: 2;
  background: #e9e6df;
  padding: 50px 0;
  overflow: hidden;
}
.experience-feature__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
/* =========================================================
   EXPERIENCE TEXT
========================================================= */
.experience-feature__content {
  min-width: 0;
  width: 100%;
  text-align: left;
  justify-self: start;
}
.experience-feature__subtitle,
.experience-feature__lead,
.experience-feature__text {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
/* =========================================================
   EXPERIENCE TITLE（1行・左揃え・大サイズ）
========================================================= */
.experience-feature h2.experience-feature__title {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 32px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  font-size: clamp(44px, 5.5vw, 7px) !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  color: #c9a96a !important;

  max-width: none !important;
  white-space: nowrap;
  text-align: left !important;
  left: 0 !important;
}

.experience-feature h2.experience-feature__title::before {
  display: none !important;
}

.experience-feature__title {
  position: relative;
  margin: 0 0 32px;
  padding-left: 0;

  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;

  color: #d4af37;
  white-space: nowrap;
  max-width: none;

  text-shadow:
    0 0 6px rgba(212, 175, 55, 0.45),
    0 0 14px rgba(212, 175, 55, 0.35),
    0 0 28px rgba(212, 175, 55, 0.25);

  animation: gold-glow 1.8s ease-in-out infinite alternate;
}
/* =========================================================
   GOLD GLOW ANIMATION
========================================================= */
@keyframes gold-glow {
  0% {
    opacity: 0.78;
    text-shadow:
      0 0 4px rgba(212, 175, 55, 0.22),
      0 0 8px rgba(212, 175, 55, 0.18),
      0 0 16px rgba(212, 175, 55, 0.12);
  }

  100% {
    opacity: 1;
    text-shadow:
      0 0 8px rgba(212, 175, 55, 0.6),
      0 0 18px rgba(212, 175, 55, 0.45),
      0 0 34px rgba(212, 175, 55, 0.35);
  }
}



.experience-feature__lead {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.5;
  color: #2d2d2d;
}

.experience-feature__text {
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 2;
  color: #555;
}

.experience-feature__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.experience-feature__btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.experience-feature__btn--primary {
  background: #111;
  color: #fff;
  border: 1px solid #111;
}

.experience-feature__btn--primary:hover {
  background: #333;
  border-color: #333;
}

.experience-feature__btn--secondary {
  background: transparent;
  color: #111;
  border: 1px solid #111;
}

.experience-feature__btn--secondary:hover {
  background: #111;
  color: #fff;
}


/* =========================================================
   EXPERIENCE VISUAL
========================================================= */
.experience-feature__visual {
  position: relative;
  min-width: 0;
}

.experience-feature__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8d1c5;
}

.experience-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-feature__roulette {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 120px;
  z-index: 2;
}

.experience-feature__roulette img {
  width: 100%;
  height: auto;
}

.experience-feature__caption {
  margin: 12px 0 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #8b7d67;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
  .experience-feature {
    padding: 80px 0;
  }

  .experience-feature__inner {
    gap: 32px;
  }

  .experience-feature__title {
    font-size: clamp(28px, 4vw, 42px);
  }

  .experience-feature__lead {
    font-size: 16px;
  }

  .experience-feature__roulette {
    width: 96px;
    right: 12px;
    bottom: 12px;
  }
}


/* =========================================================
   EXPERIENCE TITLE BOX RESET
========================================================= */
.experience-feature__title,
.experience-feature__title-box,
.experience-feature__headline {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* =========================================================
   TOP RANKING 置き換え
========================================================= */
.top-ranking {
  position: relative;
  z-index: 2;
  background: #111;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 70px 0 80px;
}

.top-ranking__inner {
  max-width: 120px;
  margin: 0 auto;
  padding: 0 10px;
}

/* =========================================================
   TOP RANKING（タイトル）
========================================================= */
.top-ranking__sub {
  text-align: center;
  color: #c9a96a;
}


.top-ranking__title {
  text-align: center;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 auto 16px;

  color: #fff;
}

.top-ranking__lead {
  text-align: center;
  color: #aaa;
  margin-bottom: 48px;
}

/* =========================================================
   TOP RANKING（グリッド）
========================================================= */
.top-ranking__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =========================================================
   TOP RANKING（カード）
========================================================= */
.top-ranking__card {
  display: block;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s ease;
  transform: translateY(20px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 浮き上がり */
.top-ranking__card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* =========================================================
   画像
========================================================= */
.top-ranking__image-wrap {
  position: relative;
}

.top-ranking__image-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ランキング番号 */
.top-ranking__rank {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c9a96a;
  color: #111;
  font-weight: bold;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   カード中身
========================================================= */
.top-ranking__content {
  padding: 20px;
}

.top-ranking__content h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.top-ranking__content p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
}

/* =========================================================
   CARD HOVER（強化版）
========================================================= */
.top-ranking__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー時 */
.top-ranking__card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6) !important;
  z-index: 3;
}
/* =========================================================
   CARD HOVER GLOW
========================================================= */
.top-ranking__card:hover::after {
  box-shadow:
    0 0 30px rgba(201,169,106,0.2),
    0 0 60px rgba(201,169,106,0.15);
}
/* =========================================================
   ボタン
========================================================= */
.top-ranking__btn {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #c9a96a;
  color: #c9a96a;
  border-radius: 999px;
  font-size: 13px;
  transition: 0.3s;
}

.top-ranking__card:hover .top-ranking__btn {
  background: #c9a96a;
  color: #111;
}

/* =========================================================
   TOP RANKING CARD TEXT（中央・白）
========================================================= */
.top-ranking__content {
  text-align: center;
}

.top-ranking__content h3 {
  color: #fff;
}

/* =========================================================
   TOP RANKING GOLD BORDER（全カード）
========================================================= */
.top-ranking__card {
  border: 1px solid rgba(201,169,106,0.3);
  position: relative;
}

/* ほんのり光 */
.top-ranking__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;

  box-shadow:
    0 0 20px rgba(201,169,106,0.08),
    0 0 40px rgba(201,169,106,0.05);
}

/* =========================================================
   MOBILE FIX
========================================================= */
@media (max-width: 767px) {

  /* =========================
     HERO
  ========================= */
  .fv-hero {
    height: 10svh;
  }

  .fv-spacer {
    height: 10svh;
  }

  .fv-hero-content {
    padding: 16px;
    transform: translateY(6%);
  }

  .fv-hero-title {
    font-size: 22px;
    line-height: 1.6;
    text-align: center;
  }


  /* =========================
     RANKING
  ========================= */
  .top-ranking {
    padding: 72px 0 100px;
  }

  .top-ranking__inner {
    padding: 0 16px;
  }

  .top-ranking__sub,
  .top-ranking__title,
  .top-ranking__lead {
    text-align: center;
  }

  .top-ranking__title {
    font-size: 28px;
    line-height: 1.4;
  }
	

  .top-ranking__lead {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .top-ranking__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow: visible;
  }

  .top-ranking__card,
  .top-ranking__card:first-child {
    transform: none !important;
    scale: 1 !important;
  }

  .top-ranking__image-wrap img {
    height: 220px;
  }

  .top-ranking__content {
    padding: 18px 16px;
  }

  .top-ranking__content h3 {
    font-size: 18px;
  }

  .top-ranking__content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .top-ranking__footer {
    display: flex;
    justify-content: center;
  }

  .top-ranking__btn {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  .top-ranking::after {
    width: 220px;
    height: 220px;
    top: -10px;
    right: -40px;
    opacity: 0.06;
  }
}
.top-ranking__title {
  color: #000;
  font-weight: 700;
  letter-spacing: 0.08em;
}


/* =========================================================
   TOP RANKING MORE 置き換え
========================================================= */
.top-ranking__more {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.top-ranking__more-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid #c9a96a;
  color: #c9a96a;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s ease;
}

.top-ranking__more-btn:hover {
  background: #c9a96a;
  color: #111;
  transform: translateY(-3px);
}

/* =========================================================
   TOP RANKING 横幅制限 解除版
========================================================= */

/* セクション自体を画面いっぱいに広げる */
.top-ranking {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* inner の制限をかなり広げる */
.top-ranking__inner {
  width: min(1800px, 96vw) !important;
  max-width: min(1800px, 96vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* カード3枚を自由サイズで並べる */
.top-ranking__grid {
  display: grid !important;
  grid-template-columns: repeat(3, auto) !important;
  justify-content: center !important;
  gap: 82px !important;
}

/* カードサイズを大きくする */
.top-ranking__card {
  width: 1060px !important;
  max-width: 460px !important;
}

/* 画像も大きく */
.top-ranking__image-wrap img {
  height: 280px !important;
}

/* -----------------------------------------
   SP
----------------------------------------- */
@media (max-width: 991px) {
  .top-ranking__inner {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .top-ranking__grid,
  .top-ranking__more,
  .top-ranking__side {
    grid-column: 1 / -1;
  }

  .top-ranking__grid {
    grid-template-columns: 1fr;
  }

  .top-ranking__card:first-child {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .top-ranking__card:first-child .top-ranking__image-wrap img {
    min-height: 260px;
  }

  .top-ranking__card:first-child .top-ranking__content {
    padding: 24px 20px;
  }

  .top-ranking__more {
    text-align: center;
  }

  .top-ranking__side {
    position: static;
    padding-top: 0;
  }
}

/* =========================================================
   ANCHOR POSITION FIX
========================================================= */
#casino-guide,
#vietnam-guide {
  scroll-margin-top: 0;
}
/* =========================================================
   GUIDE TOP COVER FIX
========================================================= */
#casino-guide,
#vietnam-guide {
  position: relative;
  z-index: 5;
  background: #f5f1e8;
}

/* =========================================================
   CASINO TEXT COLOR
========================================================= */
#casino-guide .guide-title {
  color: #fff;
}

#casino-guide .guide-text {
  color: rgba(255,255,255,0.7);
}

#casino-guide .guide-sub {
  color: rgba(255,255,255,0.8);
}

/* -------------------------
   アンカー位置のズレ防止
------------------------- */
#casino-guide,
#vietnam-guide {
  margin-top: 0 !important;
  top: 0 !important;
  scroll-margin-top: 0 !important;
}


/* =========================================================
   REAL RESULT
========================================================= */
.real-result {
  position: relative;
  z-index: 3;
  padding: 100px 20px;
  background: #161616;
  color: #fff;
}

.real-result__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.real-result__sub {
  margin: 0 0 12px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #c9a96a;
}

.real-result__title {
  margin: 0 0 16px;
  text-align: center;
  color: #fff;
}

.real-result__lead {
  margin: 0 0 40px;
  text-align: center;
  color: rgba(255,255,255,0.72);
}

.real-result__summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.real-result__card {
  padding: 24px;
  border: 1px solid rgba(201,169,106,0.28);
  background: #1a1a1a;
  border-radius: 16px;
  text-align: center;
}

.real-result__label {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
}

.real-result__value {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #c9a96a;
}

.real-result__chart-box {
  position: relative;
  width: 100%;
  height: 220px;
  margin: 0 0 28px;
  border-radius: 16px;
  background: #1a1a1a;
  border: 1px solid rgba(201,169,106,0.16);
}

.real-result__actions {
  text-align: center;
}

.real-result__btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #c9a96a;
  border-radius: 999px;
  color: #c9a96a;
}

@media (max-width: 767px) {
  .real-result__summary {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   REAL RESULT
========================================================= */
.real-result {
  position: relative;
  z-index: 3;
  padding: 100px 20px;
  background: linear-gradient(180deg, #111 0%, #161616 100%);
  color: #fff;
  overflow: hidden;
}

.real-result__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.real-result__sub {
  margin: 0 0 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #c9a96a;
}

.real-result__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.3;
  font-weight: 700;
  color: #161616;
}

.real-result__lead {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #161616;
}

.real-result__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.real-result__card {
  padding: 10px 24px;
  background: #1f2933;
  border: 1px solid rgba(201, 169, 106, 0.24);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(6px);
  text-align: center;
}

.real-result__label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.56);
}

.real-result__value {
  margin: 0;
  font-size: clamp(34px, 2vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #f9fafb;
  text-shadow: 0 0 18px rgba(224, 187, 114, 0.14);
	 filter: drop-shadow(0 0 15px rgba(255,255,255,0.55)) !important;
}

.real-result__chart {
  margin-bottom: 4px;
}

.real-result__chart-box {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 22px;
  background: #1f2933;
  border: 1px solid rgba(201, 169, 106, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.real-result__actions {
  text-align: center;
}

.real-result__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 15px 28px;
  border: 1px solid #c9a96a;
  border-radius: 999px;
  background: transparent;
  color: #c9a96a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.real-result__btn:hover {
  background: #c9a96a;
  color: #111;
  transform: translateY(-2px);
}

/* 線 */
.real-result__chart-box path[stroke] {
  stroke: #ffffff !important;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.45)) !important;
}

/* 塗り（エリアがある場合） */
.real-result__chart-box path[fill] {
  fill: rgba(255,255,255,0.12) !important;
}

/* 点 */
.real-result__chart-box circle {
  fill: #ffffff !important;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.55)) !important;
}


/* =========================================================
   REAL RESULT MOBILE
========================================================= */
@media (max-width: 767px) {
  .real-result {
    padding: 76px 16px;
  }

  .real-result__lead {
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.8;
  }

  .real-result__summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .real-result__card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .real-result__chart-box {
    height: 200px;
    border-radius: 18px;
  }

  .real-result__btn {
    width: 100%;
    min-width: 0;
  }
}



/* =========================================================
   EXPERIENCE / RANKING PARENT LAYOUT RESET
========================================================= */
.story-stack,
.story-sticky {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.experience-feature,
.top-ranking {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.experience-feature__inner,
.top-ranking__inner {
  max-width: 1120px !important;
  margin: 0 auto !important;
}


/* =========================================================
   LABEL CENTER
========================================================= */
.casino-games__label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px;
}

/* =========================================================
   LABEL POSITION DOWN
========================================================= */
.casino-games__label {
  margin-top: 20px;   /* ← 下げる量（調整OK） */
}

/* =========================================================
   NIGHT ARTICLES STRONG
========================================================= */
.night-articles {
  position: relative;
  z-index: 3;
  padding: 120px 20px;
  overflow: hidden;
  color: #fff;
  background: #0f1014;
  transition:
    background 0.55s ease,
    box-shadow 0.55s ease;
}

.night-articles__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}

/* =========================================================
   BACKGROUND
========================================================= */
.night-articles__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.night-articles::before,
.night-articles::after,
.night-articles__bg::before,
.night-articles__bg::after {
  content: "";
  position: absolute;
  transition:
    opacity 0.6s ease,
    transform 0.7s ease,
    background 0.6s ease;
}

/* default */
.night-articles::before {
  top: -160px;
  left: -140px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.36;
}

.night-articles::after {
  right: -180px;
  bottom: -180px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.28;
}

.night-articles__bg::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  opacity: 1;
}

.night-articles__bg::after {
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.02) 100%);
  opacity: 1;
}

/* =========================================================
   THEME : WIN
========================================================= */
.night-articles--win {
  background: linear-gradient(180deg, #16120c 0%, #0e0b08 100%);
}

.night-articles--win::before {
  background: radial-gradient(circle, rgba(214,168,74,0.34) 0%, transparent 72%);
}

.night-articles--win::after {
  background: radial-gradient(circle, rgba(120,78,12,0.24) 0%, transparent 72%);
}
/* =========================================================
   TAB
========================================================= */
.night-articles__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.night-articles__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.night-articles__tab:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(201,169,106,0.34);
}

.night-articles__tab.is-active {
  background: linear-gradient(135deg, #d4af37 0%, #e6c55a 100%);
  color: #111;
  border-color: #d4af37;
  box-shadow: 0 14px 34px rgba(212,175,55,0.24);
}

/* =========================================================
   VIEWPORT / PANEL
========================================================= */
.night-articles__viewport {
  position: relative;
  overflow: hidden;
}

.night-articles__track {
  position: relative;
  min-height: 560px;
}

.night-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(120px) scale(0.98);
  transition:
    opacity 0.58s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.night-panel.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.night-panel.is-leaving-left {
  opacity: 0;
  transform: translateX(-120px) scale(0.98);
}

.night-panel.is-leaving-right {
  opacity: 0;
  transform: translateX(120px) scale(0.98);
}

/* =========================================================
   INTRO
========================================================= */
.night-panel__intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.night-panel__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.52);
}

.night-panel__heading {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
}

.night-panel__copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
}

/* =========================================================
   GRID
========================================================= */
.night-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* =========================================================
   CARD
========================================================= */
.night-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 30px 24px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(34px);
}

.night-panel.is-active .night-card {
  animation: nightCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.night-panel.is-active .night-card:nth-child(2) {
  animation-delay: 0.08s;
}

.night-panel.is-active .night-card:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes nightCardIn {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.night-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(201,169,106,0.34);
  box-shadow:
    0 28px 64px rgba(0,0,0,0.42),
    0 0 0 1px rgba(201,169,106,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.night-card--featured {
  border-color: rgba(201,169,106,0.26);
  box-shadow:
    0 24px 58px rgba(0,0,0,0.34),
    0 0 0 1px rgba(201,169,106,0.06),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.night-card__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201,169,106,0.12);
  border: 1px solid rgba(201,169,106,0.2);
  color: #d8b77b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.night-card__title {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
}

.night-card__text {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.74);
  flex-grow: 1;
}

.night-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 138px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid #c9a96a;
  color: #c9a96a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.night-card:hover .night-card__btn {
  background: #c9a96a;
  color: #111;
}

/* =========================================================
   MOBILE 置き換え
========================================================= */
@media (max-width: 767px) {
  .top-ranking {
    padding: 72px 0 72px;
  }

  .quick-nav {
    padding: 72px 16px;
  }

  .area-map {
    padding: 72px 16px;
  }

  .article-hero {
    margin: 0;
    padding: 56px 18px 44px;
    border-radius: 22px;
  }
}
/* =========================================================
   CARD CENTER ALIGN
========================================================= */

/* カード全体を中央寄せ */
.night-card {
  align-items: center;
  text-align: center;
}

/* 英語ラベル */
.night-card__meta {
  align-self: center;
}

/* ボタン */
.night-card__btn {
  align-self: center;
}
/* =========================================================
   CARD HOVER GLOW（STRONG）
========================================================= */

/* 光のレイヤー */
.night-card::before {
  content: "";
  position: absolute;
  inset: -0.1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.35), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* もう一層の光（エッジ強調） */
.night-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 90%, rgba(212,175,55,0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* ホバー時 */
.night-card:hover::before {
  opacity: 1;
}

.night-card:hover::after {
  opacity: 1;
}

/* カード本体 */
.night-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: rgba(212,175,55,0.6);

  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(212,175,55,0.25),
    0 0 30px rgba(212,175,55,0.25),
    0 0 60px rgba(212,175,55,0.15);
}

/* 中身を前に出す（光より上） */
.night-card > * {
  position: relative;
  z-index: 2;
}

/* ボタンも光らせる */
.night-card:hover .night-card__btn {
  background: linear-gradient(135deg, #d4af37 0%, #e6c55a 100%);
  color: #111;
  box-shadow: 0 0 16px rgba(212,175,55,0.6);
}

/* 英語ラベルも少し強調 */
.night-card:hover .night-card__meta {
  background: rgba(212,175,55,0.25);
  border-color: rgba(212,175,55,0.5);
  color: #f5d88b;
}
/* =========================================================
   SIDE CUT FIX
========================================================= */

/* 光と拡大分の逃がしを作る */
.night-articles__viewport {
  position: relative;
  overflow: hidden;
  padding: 24px 32px 40px;
  margin: -24px -32px -40px;
}

/* グリッドの左右にも少し余白 */
.night-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0 8px;
}
.night-panel.is-active {
  animation: panelZoom 0.5s ease;
}

@keyframes panelZoom {
  from {
    transform: scale(0.98);
  }
  to {
    transform: scale(1);
  }
}
.night-articles__tab {
  transition: all 0.2s ease;
}

.night-articles__tab:active {
  transform: scale(0.96);
}
.night-card {
  transition: transform 0.4s ease;
}

.night-card:hover {
  transform: translateY(-8px) scale(1.02);
}
/* =========================================================
   ARTICLE HERO 置き換え
========================================================= */
.article-hero {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 72px 24px 56px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #151515 0%, #101010 100%);
  color: #fff;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.article-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* =========================================================
   BACKGROUND
========================================================= */
.article-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.article-hero__bg::before {
  content: "";
  position: absolute;
  inset: -15%;
  background-image: url("https://vietnam-casino-log.com/wp-content/uploads/2026/03/トランプ-removebg-preview-1.png");
  background-repeat: repeat;
  background-size: 180px;
  opacity: 0.035;
  transform: rotate(-8deg) scale(1.08);
  animation: articleTrumpFlowA 44s linear infinite;
}

.article-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,169,106,0.14) 0%, transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(255,255,255,0.05) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.18) 100%);
  opacity: 1;
}

/* =========================================================
   TEXT
========================================================= */
.article-hero__sub,
.article-hero__lead,
.article-hero__meta-item,
.article-hero__scroll-text {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.article-hero__sub {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #c9a96a;
}

.article-hero__lead {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 12px;
  line-height: 2;
  color: rgba(255,255,255,0.82);
}

.article-hero__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.article-hero__meta-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,106,0.22);
  background: rgba(255,255,255,0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.76);
}

/* =========================================================
   SCROLL SIGN
========================================================= */
.article-hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.article-hero__scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(201,169,106,0.0) 0%, rgba(201,169,106,0.9) 50%, rgba(201,169,106,0.0) 100%);
  animation: articleScrollLine 1.8s ease-in-out infinite;
}

.article-hero__scroll-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.52);
}

/* =========================================================
   ANIMATION
========================================================= */
@keyframes articleTrumpFlowA {
  from {
    transform: rotate(-8deg) translate3d(0, 0, 0) scale(1.08);
  }
  to {
    transform: rotate(-8deg) translate3d(-160px, -110px, 0) scale(1.08);
  }
}

@keyframes articleScrollLine {
  0% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .article-hero {
    margin: 28px 0 42px;
    padding: 56px 18px 44px;
    border-radius: 22px;
  }

  .article-hero__bg::before {
    background-size: 130px;
    opacity: 0.025;
  }

  .article-hero__lead {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .article-hero__meta {
    gap: 8px;
    margin-bottom: 28px;
  }

  .article-hero__meta-item {
    font-size: 10px;
    letter-spacing: 0.10em;
    padding: 7px 10px;
  }

  .article-hero__scroll-line {
    height: 42px;
  }
}
.article-hero {
  min-height: 1vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =========================================================
   REAL RESULT SPLIT
========================================================= */
.real-result__split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
}

.real-result__visual,
.real-result__story {
  min-width: 0;
}

/* =========================================================
   LEFT / RIGHT ANIMATION
========================================================= */
.real-result__visual,
.real-result__story {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.real-result__visual {
  transform: translateX(-48px);
}

.real-result__story {
  transform: translateX(48px);
}

.real-result.is-active .real-result__visual,
.real-result.is-active .real-result__story {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   STORY SIDE
========================================================= */
.real-result__story {
  position: relative;
  padding: 34px 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(201,169,106,0.16);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.real-result__story::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,106,0.16) 0%, transparent 72%);
  filter: blur(30px);
  opacity: 0.9;
  pointer-events: none;
}

.real-result__story-kicker,
.real-result__story-title,
.real-result__story-text,
.real-result__story-num,
.real-result__story-copy {
  background: #161616
  border: none !important;
  box-shadow: none !important;
}

.real-result__story-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #c9a96a;
}

.real-result__story-title {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.4;
  font-weight: 700;
  color: #161616;
}

.real-result__story-text {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.95;
  color: #161616;
}



/* =========================================================
   STORY LIST
========================================================= */
.real-result__story-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
}

.real-result__story-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
}

.real-result.is-active .real-result__story-item {
  opacity: 1;
  transform: translateY(0);
}

.real-result.is-active .real-result__story-item:nth-child(1) {
  transition-delay: 0.28s;
}

.real-result.is-active .real-result__story-item:nth-child(2) {
  transition-delay: 0.4s;
}

.real-result.is-active .real-result__story-item:nth-child(3) {
  transition-delay: 0.52s;
}

.real-result__story-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,106,0.32);
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 16px 32px rgba(0,0,0,0.24),
    0 0 0 1px rgba(201,169,106,0.08);
}

.real-result__story-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid rgba(201,169,106,0.22);
  color: #161616;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.real-result__story-copy {
  padding-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #161616;
}

.real-result__value {
  transform: translateY(px);
}

/* =========================================================
   REAL RESULT 横幅制限解除 + 右ストーリー調整
========================================================= */

/* セクション左右の余白を減らす */
.real-result {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* inner の最大幅を広げて、サイド余白も使う */
.real-result__inner {
  width: min(1600px, 96vw) !important;
  max-width: min(1600px, 96vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px;
  padding-right: 20px;
}

/* 左右比率を調整 */
.real-result__split {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) !important;
  gap: 40px;
}

/* 右カード自体の制限を外す */
.real-result__story {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
}

/* =========================================================
   CSS：REAL RESULT DARK LUXURY
   ※ 一番最後に追加
========================================================= */

/* ----------------------------------------
   セクション全体
---------------------------------------- */
.real-result {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(80,140,255,0.10) 0%, transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(212,175,55,0.10) 0%, transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.05) 0%, transparent 34%),
    linear-gradient(180deg, #0d1219 0%, #111722 48%, #0d131d 100%) !important;
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

/* 背景の光1 */
.real-result::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,145,255,0.16) 0%, transparent 70%);
  filter: blur(70px);
  opacity: 0.85;
  pointer-events: none;
  animation: rrGlowFloatA 9s ease-in-out infinite;
}

/* 背景の光2 */
.real-result::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 72%);
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
  animation: rrGlowFloatB 10s ease-in-out infinite;
}

.real-result__inner {
  position: relative;
  z-index: 2;
}

/* ----------------------------------------
   見出し
---------------------------------------- */
.real-result__sub {
  color: #d2ac62 !important;
  letter-spacing: 0.28em;
}

.real-result__title {
  color: #ffffff !important;
  text-shadow:
    0 0 18px rgba(255,255,255,0.08),
    0 0 34px rgba(255,255,255,0.04);
}

.real-result__lead {
  color: rgba(255,255,255,0.74) !important;
}

/* ----------------------------------------
   数字カード
---------------------------------------- */
.real-result__card {
  position: relative;
  overflow: hidden;
  border-radius: 26px !important;
  background:
    linear-gradient(180deg,
      rgba(24,36,51,0.98) 0%,
      rgba(17,27,40,0.98) 55%,
      rgba(12,20,31,1) 100%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow:
    0 24px 54px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.03),
    0 0 0 1px rgba(90,150,255,0.04) !important;
}

/* カード上部のテカり */
.real-result__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 58%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.03) 46%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
}

/* 斜めの反射 */
.real-result__card::after {
  content: "";
  position: absolute;
  top: -24%;
  left: -32%;
  width: 48%;
  height: 170%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(18deg);
  filter: blur(4px);
  opacity: 0.75;
  pointer-events: none;
}

.real-result__label {
  color: rgba(255,255,255,0.60) !important;
}

.real-result__value {
  color: #ffffff !important;
  text-shadow:
    0 0 12px rgba(255,255,255,0.24),
    0 0 28px rgba(255,255,255,0.10),
    0 0 56px rgba(100,150,255,0.12);
}

/* ----------------------------------------
   グラフボックス
---------------------------------------- */
.real-result__chart-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg,
      rgba(24,36,51,0.99) 0%,
      rgba(15,24,36,1) 100%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(255,255,255,0.03) !important;
}

/* グラフ上のうっすら光 */
.real-result__chart-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(95,155,255,0.14) 0%, transparent 28%),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06) 0%,
      rgba(255,255,255,0.02) 44%,
      rgba(255,255,255,0) 100%
    );
  pointer-events: none;
  z-index: 0;
}

/* グラフの反射が流れる */
.real-result__chart-box::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -38%;
  width: 32%;
  height: 180%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(18deg);
  filter: blur(6px);
  opacity: 0.8;
  pointer-events: none;
  animation: rrChartShine 5.8s ease-in-out infinite;
}

.real-result__chart-box svg {
  position: relative;
  z-index: 1;
}

.real-result__chart-box path[stroke] {
  stroke: #ffffff !important;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.30)) !important;
}

.real-result__chart-box circle {
  fill: #ffffff !important;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.36)) !important;
}

.real-result__chart-box path[fill] {
  fill: rgba(255,255,255,0.14) !important;
}

/* ----------------------------------------
   右カード
---------------------------------------- */
.real-result__story {
  position: relative;
  overflow: hidden;
  border-radius: 30px !important;
  background:
    linear-gradient(180deg,
      rgba(246,243,236,0.96) 0%,
      rgba(233,229,221,0.96) 100%) !important;
  border: 1px solid rgba(255,255,255,0.46) !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.82),
    inset 0 -1px 0 rgba(0,0,0,0.03) !important;
}

/* 右カードの光 */
.real-result__story::before {
  content: "";
  position: absolute;
  top: -14%;
  right: -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, transparent 72%);
  filter: blur(22px);
  opacity: 0.85;
  pointer-events: none;
}

/* 右カードのうっすら反射 */
.real-result__story::after {
  content: "";
  position: absolute;
  top: -16%;
  left: -22%;
  width: 42%;
  height: 170%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(18deg);
  filter: blur(5px);
  opacity: 0.55;
  pointer-events: none;
}

.real-result__story-kicker {
  color: #c69d48 !important;
}

.real-result__story-title {
  color: #181818 !important;
}

.real-result__story-text {
  color: rgba(20,20,20,0.76) !important;
}

.real-result__story-item {
  background: rgba(0,0,0,0.04) !important;
  border: 1px solid rgba(0,0,0,0.03) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
}

.real-result__story-num {
  background: rgba(255,255,255,0.76) !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
  color: #747474 !important;
}

.real-result__story-copy {
  color: #262626 !important;
}

/* ----------------------------------------
   ボタン
---------------------------------------- */
.real-result__btn {
  box-shadow:
    0 12px 28px rgba(212,175,55,0.26),
    0 0 24px rgba(212,175,55,0.10),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

/* ----------------------------------------
   アニメーション
---------------------------------------- */
@keyframes rrGlowFloatA {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(18px, 12px, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes rrGlowFloatB {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(-16px, -12px, 0) scale(1.04);
    opacity: 0.78;
  }
}

@keyframes rrChartShine {
  0%, 100% {
    left: -38%;
    opacity: 0;
  }
  18% {
    opacity: 0;
  }
  42% {
    opacity: 0.85;
  }
  58% {
    opacity: 0.55;
  }
  82% {
    left: 108%;
    opacity: 0;
  }
}

/* ----------------------------------------
   SP
---------------------------------------- */
@media (max-width: 767px) {
  .real-result {
    padding-top: 84px !important;
    padding-bottom: 84px !important;
  }

  .real-result__card,
  .real-result__chart-box,
  .real-result__story {
    border-radius: 20px !important;
  }

  .real-result::before,
  .real-result::after {
    filter: blur(48px);
  }
}

/* =========================================================
   REAL RESULT：紺ガラス＋テカテカ背景
========================================================= */

/* --- セクション背景（紺＋光の層） --- */
.real-result {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 500px at 12% 18%, rgba(120,170,255,0.18) 0%, transparent 55%),
    radial-gradient(900px 600px at 88% 12%, rgba(212,175,55,0.16) 0%, transparent 60%),
    linear-gradient(180deg, #0a1630 0%, #0e1f45 45%, #0a1734 100%) !important;
}

/* 背景のゆっくり動く光 */
.real-result::before,
.real-result::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.real-result::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(120,170,255,0.22) 0%, transparent 70%);
  animation: rrNavyFloatA 10s ease-in-out infinite;
}

.real-result::after {
  right: -180px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 72%);
  animation: rrNavyFloatB 12s ease-in-out infinite;
}

/* --- セクション上にうっすら反射ライン --- */
.real-result::marker { content: ""; } /* セーフティ（影響なし） */

.real-result .rr-top-shine {
  position: absolute;
  top: -40px;
  left: -20%;
  width: 140%;
  height: 120px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(12px);
  opacity: 0.6;
  transform: rotate(-6deg);
  pointer-events: none;
  animation: rrTopShine 6.5s ease-in-out infinite;
}

/* --- 数字カード：濃紺ガラス＋強めテカり --- */
.real-result__card {
  background:
    linear-gradient(180deg,
      rgba(22,36,70,0.92) 0%,
      rgba(16,28,58,0.95) 60%,
      rgba(12,22,48,0.98) 100%) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(120,170,255,0.06) !important;
}

/* 上の強いテカり */
.real-result__card::before {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 42%,
    rgba(255,255,255,0) 100%
  );
}

/* 斜めの光（ゆっくり流れる） */
.real-result__card::after {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.16) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: rrCardShine 7.2s ease-in-out infinite;
}

/* 数字をより主役に */
.real-result__value {
  text-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 30px rgba(120,170,255,0.22),
    0 0 60px rgba(120,170,255,0.12);
}

/* --- グラフボックスも紺ガラスに統一 --- */
.real-result__chart-box {
  background:
    linear-gradient(180deg,
      rgba(22,36,70,0.95) 0%,
      rgba(14,26,54,0.98) 100%) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow:
    0 30px 64px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(255,255,255,0.04) !important;
}

/* グラフに流れる反射 */
.real-result__chart-box::after {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: rrChartShineNavy 6.8s ease-in-out infinite;
}

/* --- 右カードとの統一感を少し強化 --- */
.real-result__story {
  box-shadow:
    0 26px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(0,0,0,0.04);
}

/* --- アニメーション --- */
@keyframes rrNavyFloatA {
  0%,100% { transform: translate3d(0,0,0); opacity: 0.8; }
  50% { transform: translate3d(20px,14px,0); opacity: 1; }
}

@keyframes rrNavyFloatB {
  0%,100% { transform: translate3d(0,0,0); opacity: 0.6; }
  50% { transform: translate3d(-18px,-12px,0); opacity: 0.85; }
}

@keyframes rrTopShine {
  0%,100% { opacity: 0; }
  40% { opacity: 0.7; }
  60% { opacity: 0.4; }
}

@keyframes rrCardShine {
  0%,100% { opacity: 0; transform: translateX(0) rotate(18deg); }
  40% { opacity: 0.9; }
  60% { opacity: 0.6; }
  100% { transform: translateX(140%) rotate(18deg); }
}

@keyframes rrChartShineNavy {
  0%,100% { left: -40%; opacity: 0; }
  45% { opacity: 0.85; }
  70% { opacity: 0.4; }
  100% { left: 110%; }
}

/* =========================================================
   REAL RESULT 背景だけ上書き
   ※ 一番最後に追加
========================================================= */

body.home section#real-result.real-result {
  background: linear-gradient(
    180deg,
    #081224 0%,
    #0c1c3d 50%,
    #09152d 100%
  ) !important;
}
/* =========================================================
   REAL RESULT タイトルの枠を完全削除
========================================================= */

body.home section#real-result.real-result .real-result__title,
body.home section#real-result.real-result .real-result__sub,
body.home section#real-result.real-result .real-result__lead,
body.home section#real-result.real-result h2,
body.home section#real-result.real-result p {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.real-result__value {
  font-weight: 700;
  letter-spacing: 0.04em;

  text-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 30px rgba(120,170,255,0.25),
    0 0 60px rgba(120,170,255,0.15);

  transform: scale(1.05);
}

.real-result {
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.real-result__value {
  font-size: 2.8rem;
  font-weight: 700;

  text-shadow:
    0 0 10px rgba(255,255,255,0.6),
    0 0 30px rgba(120,170,255,0.4),
    0 0 60px rgba(120,170,255,0.25);
}



/* =========================================================
   BUTTON
========================================================= */
.real-result__actions {
  position: relative;
  z-index: 1;
  text-align: left;
}

/* =========================================================
   COUNT EMPHASIS
========================================================= */
.real-result__value.is-counted {
  transform: scale(1.05);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 991px) {
  .real-result__split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .real-result__story {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .real-result__story-title {
    font-size: 28px;
  }

  .real-result__actions {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .real-result__story-text {
    font-size: 14px;
    line-height: 1.85;
  }

  .real-result__story-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .real-result__story-num {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .real-result__story-copy {
    padding-top: 6px;
    font-size: 13px;
    line-height: 1.65;
  }
}
.real-result {
  opacity: 1 !important;
}
.real-result__visual,
.real-result__story {
  opacity: 1;
  transform: none;
}
/* =========================================================
   REAL RESULT BUTTON FIX（サイズ統一＋余白）
========================================================= */
.real-result__actions {
  display: flex;
  gap: 14px;          /* ← 間隔 */
  margin-top: 20px;
  flex-wrap: wrap;    /* ← スマホでも崩れない */
}

/* 共通ボタン */
.real-result__btn {
  flex: 1;                     /* ← 横幅揃える */
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* メイン（収支） */
.real-result__btn.main {
  background: linear-gradient(135deg, #d6a11d, #f2d27a);
  color: #000;
  box-shadow: 0 6px 16px rgba(214,161,29,0.25);
}

/* サブ（記事） */
.real-result__btn.sub {
  background: rgba(255,255,255,0.06);
  color: #161616;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ホバー */
.real-result__btn:hover {
  transform: translateY(-2px);
}
/* =========================================================
   REAL RESULT BUTTON CENTER FIX
========================================================= */
.real-result__actions {
  display: flex;
  flex-direction: column;
  align-items: center; /* ← 中央寄せ */
  gap: 12px;
  margin-top: 24px;
}

.real-result__btn {
  width: 70%;          /* ← 幅を絞る（ここ調整OK） */
  max-width: 320px;    /* ← 広がりすぎ防止 */
  text-align: center;
}
.real-result__value.is-counted {
  transform: scale(1.08);
  transition: transform .2s ease;
}
.real-result__chart-box svg {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
/* =========================================================
   REAL RESULT RANDOM ENTRY（完成版・強め）
========================================================= */
.real-result {
  overflow: hidden;
}

/* 対象 */
.real-result .real-result__card,
.real-result .real-result__chart,
.real-result .real-result__story,
.real-result .real-result__story-item,
.real-result .real-result__actions {
  will-change: transform, opacity;
}

/* 初期状態（JS後） */
.real-result.rr-ready .real-result__card,
.real-result.rr-ready .real-result__chart,
.real-result.rr-ready .real-result__story,
.real-result.rr-ready .real-result__story-item,
.real-result.rr-ready .real-result__actions {
  opacity: 0 !important;

  transform:
    translate3d(var(--rr-x, 0px), var(--rr-y, 0px), 0)
    scale(var(--rr-scale, 0.9))
    rotate(var(--rr-rot, 0deg)) !important;

  transition:
    transform 1.2s cubic-bezier(0.18, 1, 0.28, 1),
    opacity 0.9s ease;

  transition-delay: var(--rr-delay, 0s);
}

/* 入場 */
.real-result.rr-in .real-result__card,
.real-result.rr-in .real-result__chart,
.real-result.rr-in .real-result__story,
.real-result.rr-in .real-result__story-item,
.real-result.rr-in .real-result__actions {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}

/* ホバー崩れ防止 */
.real-result.rr-in .real-result__story-item:hover {
  transform: translateY(-4px) !important;
}

/* モバイル軽減 */
@media (max-width: 767px) {
  .real-result.rr-ready .real-result__card,
  .real-result.rr-ready .real-result__chart,
  .real-result.rr-ready .real-result__story,
  .real-result.rr-ready .real-result__story-item,
  .real-result.rr-ready .real-result__actions {
    transform:
      translate3d(var(--rr-x-mobile, 0px), var(--rr-y-mobile, 0px), 0)
      scale(var(--rr-scale, 0.92))
      rotate(var(--rr-rot-mobile, 0deg)) !important;
  }
}
/* =========================================================
   REAL RESULT GRAPH LINE DRAW
========================================================= */
.real-result__chart-box svg path,
.real-result__chart-box svg polyline,
.real-result__chart-box svg line {
  vector-effect: non-scaling-stroke;
}

.real-result__chart-box .rr-line-draw {
  opacity: 1;
}

.real-result__chart-box .rr-line-draw.is-drawing {
  animation: none;
}

.real-result__chart-box .rr-point-fade {
  opacity: 0;
  transform: scale(0.7);
  transform-origin: center;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.real-result__chart-box .rr-point-fade.is-visible {
  opacity: 1;
  transform: scale(1);
}



/* =========================================================
   HEADING
========================================================= */
.quick-nav__sub,
.quick-nav__title,
.quick-nav__lead,
.quick-nav__card-title,
.quick-nav__card-text {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.quick-nav__sub {
  margin: 0 0 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #c9a96a;
}

.quick-nav__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.quick-nav__lead {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
}

/* =========================================================
   GRID
========================================================= */
.quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* =========================================================
   CARD
========================================================= */
.quick-nav__card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 30px 26px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #1c1c1c 0%, #161616 100%);
  border: 1px solid rgba(201,169,106,0.18);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.quick-nav__card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,106,0.34);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.48),
    0 0 0 1px rgba(201,169,106,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.quick-nav__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201,169,106,0.12);
  border: 1px solid rgba(201,169,106,0.22);
  color: #d8b77b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.quick-nav__card-title {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
}

.quick-nav__card-text {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.74);
  flex-grow: 1;
}

.quick-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 164px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #c9a96a;
  color: #c9a96a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.quick-nav__card:hover .quick-nav__btn {
  background: #c9a96a;
  color: #111;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .quick-nav {
    padding: 80px 16px;
  }

  .quick-nav__lead {
    margin-bottom: 34px;
    font-size: 14px;
    line-height: 1.8;
  }

  .quick-nav__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quick-nav__card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .quick-nav__card-title {
    font-size: 22px;
  }

  .quick-nav__card-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .quick-nav__btn {
    min-width: 0;
  }
}
/* =========================================================
   FULL SECTION（共通）
========================================================= */
.section-full {
  min-height: auto;
  display: block;
  padding: 0;
}

/* =========================================================
   QUICK NAV（白ベース）
========================================================= */
.quick-nav {
  background: #f7f7f5;
  color: #111;
}

.quick-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* =========================================================
   TEXT
========================================================= */
.quick-nav__sub {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #b89b5e;
  margin-bottom: 10px;
}

.quick-nav__title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.quick-nav__lead {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 50px;
}

/* =========================================================
   GRID
========================================================= */
.quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* =========================================================
   CARD
========================================================= */
.quick-nav__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  min-height: 200px;
}

.quick-nav__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* =========================================================
   LABEL
========================================================= */
.quick-nav__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #b89b5e;
  margin-bottom: 10px;
}

/* =========================================================
   TITLE
========================================================= */
.quick-nav__card-title {
  font-size: 20px;
  line-height: 1.4;
}

/* =========================================================
   BUTTON
========================================================= */
.quick-nav__btn {
  margin-top: 20px;
  font-size: 13px;
  color: #b89b5e;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 768px) {
  .quick-nav__grid {
    grid-template-columns: 1fr;
  }

  .section-full {
    padding: 60px 16px;
  }
}
/* QUICK NAV 文字色修正 */
.quick-nav {
  color: #111;
}

.quick-nav__title {
  color: #111;
}

.quick-nav__card-title {
  color: #111;
}

.quick-nav__lead,
.quick-nav__card-text {
  color: #666;
}
/* =========================================================
   QUICK NAV 中央寄せ
========================================================= */

/* セクション全体 */
.quick-nav {
  text-align: center;
}

/* カードの中身 */
.quick-nav__card {
  align-items: center;
  text-align: center;
}

/* ボタン中央 */
.quick-nav__btn {
  align-self: center;
}
/* =========================================================
   QUICK NAV ラベル中央寄せ修正（BEST / AREA / GAME）
========================================================= */
.quick-nav__label {
  align-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex;
  justify-content: center;
}
/* =========================================================
   AREA MAP NAV
========================================================= */
.area-map {
  position: relative;
  background: #f7f5f0;
  color: #111;
  overflow: hidden;
}

.area-map__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.area-map__heading {
  text-align: center;
  margin-bottom: 34px;
}

.area-map__sub {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #b89b5e;
}

.area-map__title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
  color: #111;
}

.area-map__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

/* =========================================================
   STAGE
========================================================= */
.area-map__stage {
  position: relative;
  width: 100%;
  min-height: 640px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(184,155,94,0.08) 0%, transparent 28%),
    radial-gradient(circle at 80% 78%, rgba(184,155,94,0.06) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.88) 100%);
  border: 1px solid rgba(184,155,94,0.12);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.5);
  overflow: hidden;
}


/* =========================================================
   AREA MAP BG
========================================================= */
.area-map__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("https://vietnam-casino-log.com/wp-content/uploads/2026/04/98eadf79-ff20-4639-9217-8d6824ccecc1.png")
    center / 70% auto no-repeat;
  opacity: 1;
  filter: none;
  pointer-events: none;
}
/* =========================================================
   SPOT COMMON
========================================================= */
.area-map__spot {
  position: absolute;
  z-index: 2;
  display: block;
  padding: 2px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(184,155,94,0.14);
  box-shadow:
    0 16px 30px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  backdrop-filter: blur(4px);
}

.area-map__spot:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.96);
  border-color: rgba(184,155,94,0.28);
  box-shadow:
    0 22px 36px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.area-map__name {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.25;
  color: #111;
}

.area-map__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}

/* =========================================================
   HANOI MAIN
========================================================= */
.area-map__spot--hanoi {
  top: 14%;
  left: 8%;
  width: 34%;
  min-height: 250px;
  padding: 3px 2px;
  background: linear-gradient(180deg, #1e2430 0%, #171b24 100%);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
  box-shadow:
    0 22px 48px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.area-map__spot--hanoi .area-map__name {
  font-size: clamp(34px, 4vw, 56px);
  color: #fff;
}

.area-map__spot--hanoi .area-map__text {
  max-width: 360px;
  color: rgba(255,255,255,0.76);
}

.area-map__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #d7bc82;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.area-map__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-width: 170px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ecd8a3 0%, #d8b86d 52%, #b58d43 100%);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: hidden;
  box-shadow:
    0 12px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.area-map__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s ease;
}

.area-map__spot--hanoi:hover .area-map__btn::before {
  left: 120%;
}
/* =========================================================
   FULL SECTION（共通）
========================================================= */
.section-full {
  min-height: auto;
  display: block;
  padding: 0;
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
  .area-map__stage {
    min-height: 880px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .area-map {
    padding: 60px 16px;
  }

  .area-map__heading {
    margin-bottom: 24px;
  }

  .area-map__stage {
    min-height: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .area-map__bg {
    display: none;
  }

  .area-map__spot {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: auto;
  }

  .area-map__spot--hanoi {
    width: 100%;
  }

  .area-map__spot--hanoi .area-map__name {
    font-size: 38px;
  }
}
/* =========================================================
   AREA MAP IMAGE
========================================================= */
.area-map__stage {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.area-map__bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  max-width: 360px;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

/* カード類を地図より前に出す */
.area-map__spot {
  position: absolute;
  z-index: 2;
}
/* =========================================================
   AREA MAP 背景固定修正
========================================================= */
.area-map {
  position: relative;
  z-index: 3;
  background: #f7f5f0 !important;
  overflow: hidden;
}

.area-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f7f5f0;
  z-index: 0;
}

.area-map__inner {
  position: relative;
  z-index: 1;
}

/* ステージ自体にも面を作る */
.area-map__stage {
  position: relative;
  min-height: 640px;
  border-radius: 28px;
  background: rgba(247, 245, 240, 0.92);
  border: 1px solid rgba(184,155,94,0.12);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.5);
  overflow: hidden;
}
.area-map__stage {
  overflow: visible;
}

/* 地図は背景面より前 */
.area-map__bg-image {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 50%;
  max-width: 600px;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}

/* カードは最前面 */
.area-map__spot {
  z-index: 2;
}
/* =========================================================
   AREA MAP 位置調整版
========================================================= */

/* ハノイ */
.area-map__spot--hanoi {
  top: 1%;
  left: 1%;
  width: 34%;
  min-height: 250px;
}

/* ホーチミン */
.area-map__spot--hochiminh {
  bottom: 1%;
  left: 20%;
  width: 20%;
}

/* フーコック */
.area-map__spot--phuquoc {
  bottom: 28%;
  left: 20%;
  width: 18%;
}

/* ダナン */
.area-map__spot--danang {
  top: 35%;
  right: 15%;
  width: 18%;
}

/* ニャチャン */
.area-map__spot--nhatrang {
  top: 62%;
  right: 15%;
  width: 18%;
}
.area-map {
  position: relative;
  z-index: 5;
}
.area-map {
  position: relative;
  z-index: 5;
}
/* =========================================================
   AREA MAP サイズ調整
========================================================= */

/* 共通カード */
.area-map__spot {
  padding: 15px 15px;
  border-radius: 20px;
}

/* タイトルサイズ */
.area-map__name {
  font-size: 10px;
}

/* 説明 */
.area-map__text {
  font-size: 12px;
  line-height: 1.5;
}

/* ハノイ（主役） */
.area-map__spot--hanoi {
  width: 36;
  padding: 3px 28px;
}

/* ハノイ文字 */
.area-map__spot--hanoi .area-map__name {
  font-size: 25px;
}

/* 他エリア少しコンパクト */
.area-map__spot--hochiminh,
.area-map__spot--phuquoc,
.area-map__spot--danang,
.area-map__spot--nhatrang {
  width: 19%;
}
/* =========================================================
   他カードの文字サイズ
========================================================= */

/* タイトル（ダナン・フーコックなど） */
.area-map__spot:not(.area-map__spot--hanoi) .area-map__name {
  font-size: 15px;
}

/* 説明文 */
.area-map__spot:not(.area-map__spot--hanoi) .area-map__text {
  font-size: 13px;
}
/* =========================================================
   他カード タイトル強制変更
========================================================= */

.area-map__spot:not(.area-map__spot--hanoi) .area-map__name {
  font-size: 20px !important;
}
/* =========================================================
   HANOI HOVER FIX
========================================================= */
.area-map__spot--hanoi:hover {
  background: linear-gradient(180deg, #1e2430 0%, #171b24 100%) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow:
    0 22px 48px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.area-map__spot--hanoi:hover .area-map__name,
.area-map__spot--hanoi:hover .area-map__text,
.area-map__spot--hanoi:hover .area-map__kicker {
  color: #fff !important;
}

.area-map__spot--hanoi:hover .area-map__text {
  color: rgba(255,255,255,0.76) !important;
}
.area-map__spot:hover {
  box-shadow:
    0 20px 40px rgba(0,0,0,0.1),
    0 0 0 1px rgba(184,155,94,0.4),
    0 0 20px rgba(184,155,94,0.2);
}
/* =========================================================
   MAP PIN
========================================================= */
.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #d7bc82;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(215,188,130,0.4);
  animation: pinPulse 1.6s infinite;
}

@keyframes pinPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
/* =========================================================
   MAP PIN POSITION
========================================================= */
.map-pin--hanoi {
  top: 20%;
  left: 50%;
}

.map-pin--danang {
  top: 48%;
  left: 56%;
}

.map-pin--nhatrang {
  top: 68%;
  left: 60%;
}

.map-pin--hochiminh {
  top: 78%;
  left: 52%;
}

.map-pin--phuquoc {
  top: 80%;
  left: 44%;
}
/* =========================================================
   MAP PIN HOVER
========================================================= */
.area-map__spot--hanoi:hover ~ .map-pin--hanoi,
.area-map__spot--danang:hover ~ .map-pin--danang,
.area-map__spot--nhatrang:hover ~ .map-pin--nhatrang,
.area-map__spot--hochiminh:hover ~ .map-pin--hochiminh,
.area-map__spot--phuquoc:hover ~ .map-pin--phuquoc {
  opacity: 1;
  transform: scale(1);
}
/* =========================================================
   MAP PIN RED VERSION
========================================================= */
.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #e53935; /* 赤 */
  border-radius: 80%;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 4;
  pointer-events: none;
  box-shadow:
    0 0 0 4px rgba(229,57,53,0.18),
    0 0 18px rgba(229,57,53,0.6);
}

/* 外側リング */
.map-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(229,57,53,0.45);
  animation: pinPulse 1.4s ease-out infinite;
}

/* アニメーション */
@keyframes pinPulse {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ホバーで出現 */
.area-map__spot--hanoi:hover ~ .map-pin--hanoi,
.area-map__spot--danang:hover ~ .map-pin--danang,
.area-map__spot--nhatrang:hover ~ .map-pin--nhatrang,
.area-map__spot--hochiminh:hover ~ .map-pin--hochiminh,
.area-map__spot--phuquoc:hover ~ .map-pin--phuquoc {
  opacity: 1;
  transform: scale(1);
}
/* =========================================================
   TITLE BACKGROUND REMOVE
========================================================= */
.area-map__title {
  background: transparent !important;
}

/* =========================================================
   TITLE WHITE BACKGROUND REMOVE
========================================================= */
.game-nav__title,
.game-nav__title span,
.game-nav__sub {
  background: transparent !important;
}
/* =========================================================
   FULL SECTION（共通）置き換え
========================================================= */
.section-full {
  min-height: auto;
  display: block;
  padding: 0;
}
/* =========================================================
   MOBILE｜FULL SECTION（共通）
========================================================= */
@media (max-width: 767px) {
  .section-full {
    padding: 0;
  }
}
/* =========================================================
   FULL SECTION
========================================================= */
.section-full {
  min-height: auto;
  display: block;
  padding: 0;
}

@media (max-width: 768px) {
  .section-full > .area-map,
  .section-full > .quick-nav {
    padding: 60px 16px;
  }
}

/* =========================================================
   TOP RANKING
========================================================= */
.top-ranking {
  position: relative;
  z-index: 2;
  background: #111;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 70px 0 80px;
}

/* =========================================================
   MORE BUTTON
========================================================= */
.top-ranking__more {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
/* =========================================================
   SECTION GAP FIX（HTML構造に合わせた最終版）
========================================================= */

/* 1) quick-nav / area-map / game-nav は section-full そのものなので、
      外側ラッパーの余白をここで止める */
section.quick-nav.section-full,
section.area-map.section-full,
section.game-nav.section-full {
  min-height: auto !important;
  display: block !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* 2) 実際の余白は各セクション自身に持たせる */
.quick-nav {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.area-map {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.game-nav {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* 3) ランキング下の空きを直接詰める */
.top-ranking {
  padding-bottom: 80px !important;
}

.top-ranking__more {
  margin-top: 40px !important;
  margin-bottom: 0 !important;
}

/* 4) story-stack / story-sticky の余白を止める */
.story-stack,
.story-sticky {
  margin: 0 !important;
  padding: 0 !important;
}

/* 5) セクション先頭・末尾の margin はみ出しを止める */
.quick-nav > :first-child,
.area-map > :first-child,
.game-nav > :first-child,
.top-ranking > :first-child {
  margin-top: 0 !important;
}

.quick-nav > :last-child,
.area-map > :last-child,
.game-nav > :last-child,
.top-ranking > :last-child {
  margin-bottom: 0 !important;
}

/* 6) モバイルも同じ考え方で止める */
@media (max-width: 767px) {
  section.quick-nav.section-full,
  section.area-map.section-full,
  section.game-nav.section-full {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .quick-nav,
  .area-map,
  .game-nav {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .top-ranking {
    padding-bottom: 72px !important;
  }

  .top-ranking__more {
    margin-top: 32px !important;
  }
}
/
/* ===============================
   セクション間の隙間完全削除
=============================== */
.experience-feature,
.top-ranking,
.story-section,
.guide-section,
.real-result,
.casino-games,
.quick-nav,
.night-articles {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* =========================================================
   SECTION BORDER GAP KILL
========================================================= */
section {
  margin: 0 !important;
}

section + section {
  margin-top: 0 !important;
}

/* =========================================================
   AREA MAP 上端かぶせ FIX
========================================================= */
.area-map {
  position: relative !important;
  z-index: 30 !important;
  margin-top: 30px !important;
  padding-top: 40px !important;
  background: #f3f1ed !important;
}

/* =========================================================
   AREA MAP
   左：地図 / 右：プレビュー
========================================================= */
.area-map__inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */
.area-map__heading {
  max-width: 760px;
  margin: 0 auto 5px;
  text-align: center;
}

.area-map__sub,
.area-map__title,
.area-map__lead {
  margin-top: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.area-map__sub {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #d4af37;
  text-transform: uppercase;
}

.area-map__title {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f7f7f7;
}

.area-map__lead {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   LAYOUT
========================================================= */
.area-map__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}
/* =========================================================
   MAP POINT
========================================================= */
.area-map__point {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #f4f4f4;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  transition: transform 0.22s ease;
}

.area-map__point:hover,
.area-map__point:focus-visible,
.area-map__point.is-active {
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

.area-map__point-pin {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow:
    0 0 0 0 rgba(212, 175, 55, 0.42),
    0 0 14px rgba(212, 175, 55, 0.55),
    0 2px 10px rgba(0,0,0,0.35);
}

.area-map__point-pin::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.30);
  animation: areaMapPulse 2.2s ease-out infinite;
}

.area-map__point-pin::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  animation: areaMapPulse 2.2s ease-out infinite 0.35s;
}

.area-map__point-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.58);
  border: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f5f5f5;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.area-map__point:hover .area-map__point-label,
.area-map__point:focus-visible .area-map__point-label,
.area-map__point.is-active .area-map__point-label {
  background: rgba(28, 28, 28, 0.82);
  border-color: rgba(212, 175, 55, 0.52);
  color: #fff8e3;
  box-shadow:
    0 16px 36px rgba(0,0,0,0.26),
    0 0 18px rgba(212, 175, 55, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* =========================================================
   RIGHT : PREVIEW
========================================================= */
.area-map__preview {
  position: relative;
  min-width: 0;
  min-height: 720px;
}

.area-map__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.42s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.area-map__panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  position: relative;
}

.area-map__panel-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.area-map__panel-image-wrap {
  position: relative;
  width: 100%;
  min-height: 720px;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #1f1f1f;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.area-map__panel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: brightness(0.74) saturate(0.92) contrast(1.05);
  transition:
    transform 0.8s ease,
    filter 0.45s ease;
}

.area-map__panel-link:hover .area-map__panel-image {
  transform: scale(1.07);
  filter: brightness(0.80) saturate(0.98) contrast(1.05);
}

.area-map__panel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,22,22,0.16) 0%, rgba(22,22,22,0.22) 24%, rgba(22,22,22,0.70) 72%, rgba(22,22,22,0.92) 100%),
    linear-gradient(90deg, rgba(20,20,20,0.40) 0%, rgba(20,20,20,0.10) 42%, rgba(20,20,20,0.18) 100%);
  z-index: 1;
}

.area-map__panel-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(212, 175, 55, 0.16) 0%, transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(255,255,255,0.06) 0%, transparent 20%);
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   PANEL CONTENT
========================================================= */
.area-map__panel-content {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 40px;
  z-index: 2;
  max-width: 560px;
}

.area-map__panel-kicker,
.area-map__panel-title,
.area-map__panel-copy,
.area-map__panel-text,
.area-map__panel-casino {
  margin-top: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.area-map__panel-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14) !important;
  border: 1px solid rgba(212, 175, 55, 0.26) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #f0d78a;
  text-transform: uppercase;
}

.area-map__panel-title {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-shadow: 0 6px 16px rgba(0,0,0,0.28);
}

.area-map__panel-copy {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

.area-map__panel-text {
  max-width: 30em;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.84);
  text-shadow: 0 4px 14px rgba(0,0,0,0.24);
}

.area-map__panel-casino {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(20,20,20,0.42);
  border: 1px solid rgba(212, 175, 55, 0.34);
  backdrop-filter: blur(7px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f4d57c;
  box-shadow:
    0 14px 32px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* =========================================================
   HOVER GLOW
========================================================= */
.area-map__panel-link:hover .area-map__panel-casino {
  border-color: rgba(212, 175, 55, 0.54);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.24),
    0 0 18px rgba(212, 175, 55, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* =========================================================
   ANIMATION
========================================================= */
@keyframes areaMapPulse {
  0% {
    opacity: 0.95;
    transform: scale(0.86);
  }
  80% {
    opacity: 0;
    transform: scale(1.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1100px) {
  .area-map__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .area-map__preview,
  .area-map__stage,
  .area-map__panel-image-wrap {
    min-height: 620px;
  }

  .area-map__panel-content {
    left: 32px;
    right: 32px;
    bottom: 32px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .area-map {
    padding: 80px 16px;
  }

  .area-map__heading {
    margin-bottom: 34px;
  }

  .area-map__title {
    font-size: 30px;
  }

  .area-map__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .area-map__layout {
    gap: 18px;
  }

  .area-map__stage {
    min-height: 460px;
    border-radius: 22px;
  }

  .area-map__bg-image {
    padding: 26px 18px;
  }

  .area-map__point {
    gap: 8px;
  }

  .area-map__point-pin {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .area-map__point-label {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 11px;
  }

  .area-map__preview,
  .area-map__panel-image-wrap {
    min-height: 460px;
  }

  .area-map__panel-image-wrap {
    border-radius: 22px;
  }

  .area-map__panel-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }

  .area-map__panel-kicker {
    margin-bottom: 12px;
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .area-map__panel-title {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .area-map__panel-copy {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.28;
  }

  .area-map__panel-text {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .area-map__panel-casino {
    padding: 10px 13px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}
/* =========================================================
   AREA MAP FIX
   地図を主役にして、左の枠感を消す
========================================================= */

/* 全体バランスを少し左強めに */
.area-map__layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) !important;
  gap: 30px !important;
  align-items: stretch !important;
}

/* -----------------------------------------
   左：地図エリア
----------------------------------------- */
.area-map__map {
  min-width: 0;
  display: flex;
}

.area-map__stage {
  position: relative;
  min-height: 700px !important;
  width: 100%;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* 地図を左エリアいっぱいに大きく使う */
.area-map__bg-image {
  position: absolute;
  top: 50%;
  left: 30%;

  transform: translate(-50%, -50%) scale(1.2);

  width: auto;
  height: 100%;

  object-fit: contain;
}

/* 装飾レイヤーを消す */
.area-map__stage::before,
.area-map__stage::after {
  display: none !important;
}

/* -----------------------------------------
   ピンと地名
----------------------------------------- */
.area-map__point {
  gap: 8px !important;
  transform: none !important;
}

.area-map__point:hover,
.area-map__point:focus-visible,
.area-map__point.is-active {
  transform: translateY(-1px) !important;
}

.area-map__point-pin {
  width: 14px !important;
  height: 14px !important;
  flex: 0 0 14px !important;
  background: #d4af37 !important;
  box-shadow:
    0 0 14px rgba(212, 175, 55, 0.4),
    0 0 28px rgba(212, 175, 55, 0.14) !important;
}

.area-map__point-label {
  min-height: 36px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: rgba(26, 26, 26, 0.84) !important;
  border: 1px solid rgba(212, 175, 55, 0.24) !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
}

.area-map__point:hover .area-map__point-label,
.area-map__point:focus-visible .area-map__point-label,
.area-map__point.is-active .area-map__point-label {
  border-color: rgba(212, 175, 55, 0.46) !important;
  background: rgba(20, 20, 20, 0.92) !important;
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.08) !important;
}

/* -----------------------------------------
   右：プレビュー
----------------------------------------- */
.area-map__preview {
  min-height: 70px !important;
}

.area-map__panel-image-wrap {
  min-height: 730px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  border: 1px solid rgba(212, 175, 55, 0.16) !important;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

/* 画像を少し強く見せる */
.area-map__panel-image {
  transform: scale(1.06) !important;
  filter: brightness(0.62) saturate(0.9) contrast(1.04) !important;
}

.area-map__panel-link:hover .area-map__panel-image {
  transform: scale(1.1) !important;
  filter: brightness(0.68) saturate(0.96) contrast(1.04) !important;
}

/* オーバーレイを少し締める */
.area-map__panel-overlay {
  background:
    linear-gradient(180deg, rgba(20,20,20,0.08) 0%, rgba(20,20,20,0.14) 24%, rgba(20,20,20,0.62) 70%, rgba(20,20,20,0.9) 100%),
    linear-gradient(90deg, rgba(20,20,20,0.5) 0%, rgba(20,20,20,0.16) 44%, rgba(20,20,20,0.1) 100%) !important;
}

/* 文字まわりを少し上品に */
.area-map__panel-content {
  left: 44px !important;
  right: 44px !important;
  bottom: 4px !important;
  max-width: 520px !important;
}

.area-map__panel-kicker {
  margin-bottom: 14px !important;
}

.area-map__panel-title {
  margin-bottom: 6px !important;
  font-size: clamp(26px, 3vw, 40px) !important;
}

.area-map__panel-copy {
  margin-bottom: 10px !important;
  font-size: clamp(32px, 4vw, 54px) !important;
  line-height: 1.08 !important;
}

.area-map__panel-text {
  margin-bottom: 16px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.82) !important;
}

.area-map__panel-casino {
  padding: 10px 14px !important;
  font-size: 12px !important;
  background: rgba(18,18,18,0.48) !important;
}

/* -----------------------------------------
   地図上の位置調整
   ※今回の画像に合わせて少し整理
----------------------------------------- */
.area-map__point--hanoi {
  top: 25% !important;
  left: 102% !important;
}

.area-map__point--danang {
  top: 48% !important;
  left: 108% !important;
}

.area-map__point--nhatrang {
  top: 66% !important;
  left: 111% !important;
}

.area-map__point--hochiminh {
  top: 81% !important;
  left: 101% !important;
}

.area-map__point--phuquoc {
  top: 75% !important;
  left: 95% !important;
}

/* -----------------------------------------
   タブレット
----------------------------------------- */
@media (max-width: 1100px) {
  .area-map__layout {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .area-map__stage,
  .area-map__preview,
  .area-map__panel-image-wrap {
    min-height: 620px !important;
  }

  .area-map__panel-content {
    left: 32px !important;
    right: 32px !important;
    bottom: 30px !important;
  }

  .area-map__panel-copy {
    font-size: clamp(28px, 5vw, 44px) !important;
  }
}

/* -----------------------------------------
   スマホ
----------------------------------------- */
@media (max-width: 767px) {
  .area-map__stage,
  .area-map__preview,
  .area-map__panel-image-wrap {
    min-height: 460px !important;
  }

  .area-map__point-label {
    font-size: 11px !important;
    padding: 6px 10px !important;
  }

  .area-map__panel-content {
    left: 20px !important;
    right: 20px !important;
    bottom: 20px !important;
  }

  .area-map__panel-copy {
    font-size: 30px !important;
    line-height: 1.12 !important;
  }
}
.area-map__stage {
  background: #2b2b2b !important;
}
/* 地図エリアの背景を統一 */
.area-map__stage {
  background: transparent !important;
}
.area-map__bg-image {
  filter: brightness(1.05) contrast(1.05);
}
.area-map__bg-image {
  filter: brightness(1.1) contrast(1.1);
  opacity: 0.9;
}
.area-map__bg-image {
  filter:
    drop-shadow(0 20px 40px rgba(0,0,0,0.4))
    brightness(1.1)
    contrast(1.1);
}
.area-map__bg-image {
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,0.5))
    brightness(1.08)
    contrast(1.15);
}
/* タイトル見えるようにする */
.area-map__title {
  color: #1a1a1a !important;
}

.area-map__sub {
  color: #8a6b2f !important; /* ゴールド寄り */
}

.area-map__lead {
  color: #555 !important;
}
/* =========================================================
   AREA MAP PANEL SWITCH ANIMATION
========================================================= */
.area-map__preview {
  position: relative;
  overflow: hidden;
}

.area-map__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.55s;
  z-index: 1;
}

.area-map__panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
  z-index: 2;
}

.area-map__panel:not(.is-active) .area-map__panel-image {
  opacity: 0.75;
  transform: scale(1.02);
}

.area-map__panel.is-active .area-map__panel-image {
  opacity: 1;
  transform: scale(1.06);
}

/* 文字も少し遅れて入る */
.area-map__panel-content {
  transition:
    opacity 0.45s ease 0.08s,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.area-map__panel:not(.is-active) .area-map__panel-content {
  opacity: 0;
  transform: translateY(18px);
}

.area-map__panel.is-active .area-map__panel-content {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================================
   AREA MAP PANEL SWITCH ANIMATION
========================================================= */
.area-map__preview {
  position: relative;
  overflow: hidden;
}

.area-map__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.55s;
  z-index: 1;
}

.area-map__panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
  z-index: 2;
}

/* 画像も少しだけ変化を感じさせる */
.area-map__panel-image {
  transition:
    transform 0.9s ease,
    filter 0.55s ease,
    opacity 0.55s ease;
}
/* 画像の幅を調整する */
.area-map__panel-image-wrap {
  width: 180% !important;
  max-width: none !important;
}
/* 画像を移動させる*/
.area-map__panel-image-wrap {
  transform: translateX(-10%) !important;
}

.area-map__panel:not(.is-active) .area-map__panel-image {
  opacity: 0.75;
  transform: scale(1.02);
}

.area-map__panel.is-active .area-map__panel-image {
  opacity: 1;
  transform: scale(1.06);
}

/* 文字も少し遅れて入る */
.area-map__panel-content {
  transition:
    opacity 0.45s ease 0.08s,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.area-map__panel:not(.is-active) .area-map__panel-content {
  opacity: 0;
  transform: translateY(18px);
}

.area-map__panel.is-active .area-map__panel-content {
  opacity: 1;
  transform: translateY(0);
}
.area-map__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-map__button {
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1.2;
  border-radius: 999px;
}
/* コンテナ */
.area-map__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ボタン本体 */
.area-map__buttons {
  display: flex;
  justify-content: center;
  gap: 25px; /* ボタン間の余白 */
}
.area-map__button {
  position: relative;
  padding: 5px 14px;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: #d4af37; /* ゴールド */
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}
.area-map__button {
  min-width: 120px; /* ←統一サイズ */
  text-align: center;
  padding: 8px 0; /* 横paddingを消して縦だけにする */
}
.area-map__button {
  min-width: 150px;
  padding: 15px 0;
  font-size: 14px;
}
.area-map__buttons {
  margin-bottom: 40px;
}

/* 光沢ライン */
.area-map__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(212, 175, 55, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ホバー */
.area-map__button:hover {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.area-map__button:hover::before {
  opacity: 1;
}

/* アクティブ（選択中） */
.area-map__button.is-active {
  color: #111;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  border-color: #d4af37;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
}
/* 通常ピン */
.area-map__point {
  position: absolute;
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    z-index 0.25s ease;
}

/* 選択中ピンを最前面に */
.area-map__point.is-active {
  z-index: 20;
  transform: translate(-50%, -50%) scale(1.18);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.45));
}

/* 発光リング */
.area-map__point.is-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(212, 175, 55, 0.65);
  box-shadow:
    0 0 0 6px rgba(212, 175, 55, 0.10),
    0 0 18px rgba(212, 175, 55, 0.35);
  animation: area-pin-pulse 1.8s ease-out infinite;
  pointer-events: none;
}

/* 選択中ラベル */
.area-map__point.is-active .area-map__point-label {
  color: #fff;
  background: rgba(18, 18, 18, 0.92);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.28),
    0 0 12px rgba(212, 175, 55, 0.18);
  transform: translateY(-2px);
}

/* ピン本体があるなら強調 */
.area-map__point.is-active .area-map__point-dot,
.area-map__point.is-active .area-map__point-pin,
.area-map__point.is-active .area-map__point-core {
  background: linear-gradient(180deg, #f5d76e 0%, #d4af37 100%);
  box-shadow:
    0 0 0 3px rgba(20, 20, 20, 0.9),
    0 0 14px rgba(212, 175, 55, 0.45);
}

@keyframes area-pin-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.9;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
  }
}
/* 右側パネルを重ねる準備 */
.area-map__panels {
  position: relative;
}

/* 各パネルを重ねて非表示スタート */
.area-map__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

/* 選択中だけフェードイン */
.area-map__panel.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* 画像を少しだけズームしながら出す（高級感） */
.area-map__panel img {
  transform: scale(1.06);
  transition: transform 0.7s ease;
}

.area-map__panel.is-active img {
  transform: scale(1);
}
/* =========================================================
   AREA MAP PANEL FADE LUXURY
========================================================= */

/* 右側パネル全体 */
.area-map__panels {
  position: relative;
  min-height: 100%;
}

/* 各パネルを重ねる */
.area-map__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;

  transform: translateY(10px);
  filter: blur(10px);

  transition:
    opacity 0.45s ease,
    transform 0.55s ease,
    filter 0.55s ease,
    visibility 0s linear 0.55s;
}

/* 表示中 */
.area-map__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;

  transform: translateY(0);
  filter: blur(0);

  transition:
    opacity 0.45s ease,
    transform 0.55s ease,
    filter 0.55s ease,
    visibility 0s linear 0s;
}

/* 画像 */
.area-map__panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.05);
  transition:
    transform 0.8s ease,
    filter 0.6s ease;
}

/* 表示時に少しだけ寄る */
.area-map__panel.is-active img {
  transform: scale(1);
  filter: brightness(1.02);
}

/* テキスト類も少し遅れて出す */
.area-map__panel-title,
.area-map__panel-subtitle,
.area-map__panel-text,
.area-map__panel-desc,
.area-map__panel-button,
.area-map__panel-link {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.area-map__panel.is-active .area-map__panel-title,
.area-map__panel.is-active .area-map__panel-subtitle,
.area-map__panel.is-active .area-map__panel-text,
.area-map__panel.is-active .area-map__panel-desc,
.area-map__panel.is-active .area-map__panel-button,
.area-map__panel.is-active .area-map__panel-link {
  opacity: 1;
  transform: translateY(0);
}

/* 少し時間差をつける */
.area-map__panel.is-active .area-map__panel-title,
.area-map__panel.is-active .area-map__panel-subtitle {
  transition-delay: 0.12s;
}

.area-map__panel.is-active .area-map__panel-text,
.area-map__panel.is-active .area-map__panel-desc {
  transition-delay: 0.18s;
}

.area-map__panel.is-active .area-map__panel-button,
.area-map__panel.is-active .area-map__panel-link {
  transition-delay: 0.24s;
}
.area-map__map {
  transition: filter 0.3s ease;
}

.area-map__map.is-focus {
  filter: brightness(0.85) saturate(0.9);
}

.area-map__point.is-active {
  filter: brightness(1.2) saturate(1.2);
}
.area-map__button.is-active {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #111;
  box-shadow:
    0 0 12px rgba(212,175,55,0.4),
    0 4px 12px rgba(0,0,0,0.3);
}

.area-map__button.is-active::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.4);
}
/* =========================================================
   SECTION SIZE SYSTEM
========================================================= */

/* 全セクション共通 */
section {
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding: 80px 0;
}
/* =========================================================
   SECTION SIZE TUNING
========================================================= */

/* ヒーローはそのまま（触らない） */


/* エリアマップ（主役） */
.area-map {
  min-height: 100vh;
}


/* ランキング（決断） */
.top-ranking {
  min-height: 90vh;
}


/* 体験談（ストーリー） */
.experience-feature {
  min-height: 100vh;
}


/* 夜記事（回遊） */
.night-articles {
  min-height: 80vh;
}


/* 収支（補助） */
.real-result {
  min-height: 85vh;
}
/* =========================================================
   MOBILE FIX
========================================================= */

@media (max-width: 768px) {
  section {
    min-height: auto;
    padding: 60px 0;
  }

  .area-map,
  .top-ranking,
  .experience-feature,
  .night-articles,
  .real-result {
    min-height: auto;
  }
}
/* =========================================================
   WHITE BASE SYSTEM（完全版）
========================================================= */

/* 全体 */
html, body {
  background: #ffffff;
  color: #111111;
}

/* ヒーロー以外のセクションは全部白で塗る */
section:not(.fv):not(.hero):not(.first-view) {
  background: #f5f5f3 !important;
}

/* 念のためよく使ってるセクションを明示 */
.area-map,
.top-ranking,
.experience-feature,
.night-articles,
.real-result,
.story-section,
.guide-section,
.quick-nav {
  background: #f5f5f3 !important;
}

/* セクションの重なり対策 */
section {
  position: relative;
  z-index: 2;
}

/* ヒーローは下に固定（背景として扱う） */
.hero,
.fv,
.first-view {
  position: relative;
  z-index: 1;
}
/* -----------------------------------------
   横はみ出しを許可
----------------------------------------- */
.area-map__preview,
.area-map__panel,
.area-map__layout {
  overflow: visible !important;
}
/* =========================================================
   ROULETTE LAYER FINAL
   既存背景は触らない / 数字はコンテンツの下
========================================================= */

/* =========================
   調整用
========================= */
.ranking-experience-wrap {
  --roulette-top: 54%;
  --roulette-left: 50%;
  --roulette-width: 1500px;
  --roulette-height: 1500px;

  --roulette-opacity: 0.16;
  --roulette-blur: 0px;

  --roulette-outer-radius: 520px;
  --roulette-inner-radius: 380px;

  --roulette-outer-size: 36px;
  --roulette-inner-size: 24px;

  --roulette-outer-speed: 34s;
  --roulette-inner-speed: 24s;

  --roulette-outer-tilt: -10deg;
  --roulette-inner-tilt: 8deg;

  --roulette-red: #b51f2b;
  --roulette-black: #111111;
  --roulette-zero: #111111;

  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* =========================
   数字レイヤー本体
   背景より上 / 中身より下
========================= */
.roulette-layer {
  position: absolute;
  top: var(--roulette-top);
  left: var(--roulette-left);
  width: var(--roulette-width);
  height: var(--roulette-height);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: var(--roulette-opacity);
  filter: blur(var(--roulette-blur));
}

/* =========================
   既存中身を数字より上へ
========================= */
.top-ranking__inner,
.experience-feature__inner {
  position: relative;
  z-index: 2;
}

/* 念のため主要要素も上へ */
.top-ranking__card,
.top-ranking__more,
.experience-feature__content,
.experience-feature__visual,
.experience-feature__photo,
.experience-feature__actions,
.experience-feature__caption {
  position: relative;
  z-index: 2;
}

/* =========================
   リング
========================= */
.roulette-layer__ring {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
}

.roulette-layer__ring--outer {
  animation: rouletteOuterSpin var(--roulette-outer-speed) linear infinite;
}

.roulette-layer__ring--inner {
  animation: rouletteInnerSpin var(--roulette-inner-speed) linear infinite;
}

/* =========================
   各数字
========================= */
.roulette-layer__item {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  white-space: nowrap;
  transform-origin: 0 0;
}

.roulette-layer__num {
  display: block;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  user-select: none;
  text-shadow:
    0 0 10px rgba(255,255,255,0.03),
    0 0 18px rgba(0,0,0,0.08);
}

.roulette-layer__ring--outer .roulette-layer__num {
  font-size: var(--roulette-outer-size);
}

.roulette-layer__ring--inner .roulette-layer__num {
  font-size: var(--roulette-inner-size);
}

.roulette-layer__num.is-red {
  color: var(--roulette-red);
}

.roulette-layer__num.is-black {
  color: var(--roulette-black);
}

.roulette-layer__num.is-zero {
  color: var(--roulette-zero);
}

/* =========================
   回転
========================= */
@keyframes rouletteOuterSpin {
  from {
    transform: rotate(var(--roulette-outer-tilt)) rotate(0deg);
  }
  to {
    transform: rotate(var(--roulette-outer-tilt)) rotate(360deg);
  }
}

@keyframes rouletteInnerSpin {
  from {
    transform: rotate(var(--roulette-inner-tilt)) rotate(0deg);
  }
  to {
    transform: rotate(var(--roulette-inner-tilt)) rotate(-360deg);
  }
}

/* =========================
   SP
========================= */
@media (max-width: 991px) {
  .ranking-experience-wrap {
    --roulette-top: 53%;
    --roulette-width: 1100px;
    --roulette-height: 1100px;

    --roulette-outer-radius: 360px;
    --roulette-inner-radius: 260px;

    --roulette-outer-size: 24px;
    --roulette-inner-size: 17px;

    --roulette-opacity: 0.13;
  }
}

@media (max-width: 767px) {
  .ranking-experience-wrap {
    --roulette-top: 52%;
    --roulette-left: 50%;
    --roulette-width: 760px;
    --roulette-height: 760px;

    --roulette-outer-radius: 250px;
    --roulette-inner-radius: 180px;

    --roulette-outer-size: 16px;
    --roulette-inner-size: 12px;

    --roulette-opacity: 0.10;
    --roulette-blur: 0px;
  }
}
/* =========================================================
   ROULETTE ORBIT / HTML + CSS ONLY
   experience-feature に置いて上へはみ出させる安定版
========================================================= */

.experience-feature {
  --ro-top: -900px;
  --ro-left: 100%;

  --ro-width: 1200px;
  --ro-height: 1200px;

  --ro-opacity: 0.14;
  --ro-blur-outer: 2px;
  --ro-blur-inner: 3px;

  --ro-outer-radius: 550px;
  --ro-inner-radius: 500px;

  --ro-outer-size: 82px;
  --ro-inner-size: 26px;

  --ro-outer-speed: 60s;
  --ro-inner-speed: 50s;

  --ro-outer-tilt: 0deg;
  --ro-inner-tilt: 0deg;

  --ro-red: #b51f2b;
  --ro-black: #111111;
  --ro-zero: #00a651;
}

.experience-feature {
  position: relative !important;
  overflow: hidden !important;
  z-index: 3 !important;
}

/* ルーレット本体 */
.roulette-orbit {
  position: absolute;
  top: var(--ro-top);
  left: var(--ro-left);
  width: var(--ro-width);
  height: var(--ro-height);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: var(--ro-opacity);
  filter: blur(var(--ro-blur));
}

/* 既存コンテンツを前面へ */
.experience-feature__inner {
  position: relative;
  z-index: 2;
}

.experience-feature__content,
.experience-feature__visual,
.experience-feature__photo,
.experience-feature__caption,
.experience-feature__actions {
  position: relative;
  z-index: 2;
}

/* リング */
.roulette-orbit__ring {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
}

.roulette-orbit__ring--outer {
  animation: rouletteOrbitOuter var(--ro-outer-speed) linear infinite;
}

.roulette-orbit__ring--inner {
  animation: rouletteOrbitInner var(--ro-inner-speed) linear infinite;
}

/* 数字 */
.roulette-orbit__num {
  --step: 9.7297297297deg; /* 360 / 37 */

  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transform-origin: 50% 50%;
  user-select: none;
  text-shadow:
    0 0 8px rgba(0,0,0,0.08),
    0 0 14px rgba(255,255,255,0.03);
}

.roulette-orbit__num.is-red {
  color: var(--ro-red);
}

.roulette-orbit__num.is-black {
  color: var(--ro-black);
}

.roulette-orbit__num.is-zero {
  color: var(--ro-zero);
}

/* 回転 */
@keyframes rouletteOrbitOuter {
  from {
    transform: rotate(var(--ro-outer-tilt)) rotate(0deg);
  }
  to {
    transform: rotate(var(--ro-outer-tilt)) rotate(360deg);
  }
}

@keyframes rouletteOrbitInner {
  from {
    transform: rotate(var(--ro-inner-tilt)) rotate(0deg);
  }
  to {
    transform: rotate(var(--ro-inner-tilt)) rotate(-360deg);
  }
}

/* タブレット */
@media (max-width: 991px) {
  .experience-feature {
    --ro-top: -130px;
    --ro-width: 920px;
    --ro-height: 920px;
    --ro-outer-radius: 330px;
    --ro-inner-radius: 240px;
    --ro-outer-size: 24px;
    --ro-inner-size: 16px;
    --ro-opacity: 0.12;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .experience-feature {
    --ro-top: -90px;
    --ro-width: 660px;
    --ro-height: 660px;
    --ro-outer-radius: 235px;
    --ro-inner-radius: 170px;
    --ro-outer-size: 16px;
    --ro-inner-size: 11px;
    --ro-opacity: 0.09;
  }
}

/* =========================================================
   RANKING ONLY
========================================================= */
.roulette-orbit--ranking .roulette-orbit__ring--outer .roulette-orbit__num {
  font-size: var(--ro-outer-size);
  filter: blur(var(--ro-blur-outer-ranking, 2px)) !important;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--step) * var(--i)))
    translateY(calc(var(--ro-outer-radius) * -1));
}

.roulette-orbit--ranking .roulette-orbit__ring--inner .roulette-orbit__num {
  font-size: var(--ro-inner-size);
  filter: blur(var(--ro-blur-inner-ranking, 3px)) !important;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--step) * var(--i)))
    translateY(calc(var(--ro-inner-radius) * -1));
}
/* =========================================================
   RANKING ORBIT（experienceと完全同期）
========================================================= */

.top-ranking {
  position: relative;
  overflow: hidden;

  /* ▼ここは experience と同じ値をコピー */
  --ro-width: 1200px;
  --ro-height: 1200px;

  --ro-opacity: 0.14;
  --ro-blur-outer: 2px;
  --ro-blur-inner: 3px;

  --ro-outer-radius: 550px;
  --ro-inner-radius: 500px;

  --ro-outer-size: 82px;
  --ro-inner-size: 26px;

  --ro-outer-speed: 60s;
  --ro-inner-speed: 50s;

  --ro-outer-tilt: 0deg;
  --ro-inner-tilt: 0deg;
	
	  --ro-red: #b51f2b;
  --ro-black: #111111;
  --ro-zero: #00a651;
}


/* ランキング用ルーレット */
.roulette-orbit--ranking {
  position: absolute;

  /* ▼ここだけ調整ポイント */
  top: 3%;
  left: 100%;

  width: var(--ro-width);
  height: var(--ro-height);

  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: var(--ro-opacity);
}

/* カードを前面に */
.top-ranking__inner,
.top-ranking__card,
.top-ranking__content,
.top-ranking__image-wrap,
.top-ranking__more {
  position: relative;
  z-index: 2;
}

/* 外側リング */
.roulette-orbit--ranking .roulette-orbit__ring--outer {
  animation: rouletteOrbitOuter var(--ro-outer-speed) linear infinite;
}

/* 内側リング */
.roulette-orbit--ranking .roulette-orbit__ring--inner {
  animation: rouletteOrbitInner var(--ro-inner-speed) linear infinite;
}
/* =========================================================
   EXPERIENCE ONLY
========================================================= */
.experience-feature .roulette-orbit:not(.roulette-orbit--ranking) .roulette-orbit__ring--outer .roulette-orbit__num {
  font-size: var(--ro-outer-size);
  filter: blur(var(--ro-blur-outer-exp, 2px)) !important;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--step) * var(--i)))
    translateY(calc(var(--ro-outer-radius) * -1));
}

.experience-feature .roulette-orbit:not(.roulette-orbit--ranking) .roulette-orbit__ring--inner .roulette-orbit__num {
  font-size: var(--ro-inner-size);
  filter: blur(var(--ro-blur-inner-exp, 3px)) !important;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--step) * var(--i)))
    translateY(calc(var(--ro-inner-radius) * -1));
}

/* =========================================================
   EXPERIENCE ARC CAROUSEL
   ※ experience-feature の中に載せる版
========================================================= */
.experience-feature {
  position: relative;
}

.experience-arc {
  position: relative;
  z-index: 2;
  padding: 110px 20px;
  background: transparent;
}

.experience-arc__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.experience-arc__heading {
  text-align: center;
  margin-bottom: 46px;
}

.experience-arc__sub,
.experience-arc__title,
.experience-arc__lead,
.experience-arc__meta,
.experience-arc__card-title,
.experience-arc__text {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.experience-arc__sub {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #b78f42;
}

.experience-arc__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  font-weight: 700;
  color: #181818;
}

.experience-arc__lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(24, 24, 24, 0.66);
}

.experience-arc__stage {
  position: relative;
  min-height: 680px;
  perspective: 1800px;
}

.experience-arc__carousel {
  position: relative;
  width: 100%;
  height: 680px;
  transform-style: preserve-3d;
}

.experience-arc__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34vw, 360px);
  aspect-ratio: 0.72 / 1;
  display: block;
  text-decoration: none;
  color: inherit;
  transform-style: preserve-3d;
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    filter 0.7s ease;
  will-change: transform, opacity, filter;
}

.experience-arc__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #1c1c1c;
  border: 1px solid rgba(201,169,106,0.20);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.experience-arc__image-wrap {
  position: absolute;
  inset: 0;
}

.experience-arc__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s ease;
}

.experience-arc__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,20,0.06) 0%, rgba(20,20,20,0.18) 24%, rgba(20,20,20,0.72) 78%, rgba(20,20,20,0.92) 100%);
}

.experience-arc__content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
}

.experience-arc__meta {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #d8b77b;
}

.experience-arc__card-title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
}

.experience-arc__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.experience-arc__card-inner--ghost {
  background:
    linear-gradient(180deg, rgba(170,170,170,0.45) 0%, rgba(142,142,142,0.30) 42%, rgba(122,122,122,0.22) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 20px 44px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.26);
  backdrop-filter: blur(8px);
}

.experience-arc__ghost-face {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.35) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 34%, rgba(255,255,255,0.02) 100%);
  filter: blur(2px);
}

.experience-arc__card.is-center {
  z-index: 5;
  opacity: 1;
  filter: brightness(1);
  transform:
    translate3d(-50%, -50%, 240px)
    rotateY(0deg)
    scale(1.08);
}

.experience-arc__card.is-center .experience-arc__image-wrap img {
  transform: scale(1.08);
}

.experience-arc__card.is-left {
  z-index: 4;
  opacity: 0.98;
  filter: brightness(0.90);
  transform:
    translate3d(calc(-50% - 280px), calc(-50% + 12px), 70px)
    rotateY(48deg)
    scale(0.88);
}

.experience-arc__card.is-right {
  z-index: 4;
  opacity: 0.98;
  filter: brightness(0.90);
  transform:
    translate3d(calc(-50% + 280px), calc(-50% + 12px), 70px)
    rotateY(-48deg)
    scale(0.88);
}

.experience-arc__card.is-far-left {
  z-index: 2;
  opacity: 0.62;
  filter: brightness(0.82) blur(1px);
  transform:
    translate3d(calc(-50% - 470px), calc(-50% + 32px), -180px)
    rotateY(74deg)
    scale(0.64);
}

.experience-arc__card.is-far-right {
  z-index: 2;
  opacity: 0.62;
  filter: brightness(0.82) blur(1px);
  transform:
    translate3d(calc(-50% + 470px), calc(-50% + 32px), -180px)
    rotateY(-74deg)
    scale(0.64);
}

.experience-arc__nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(201,169,106,0.34);
  border-radius: 999px;
  background: rgba(20,20,20,0.86);
  color: #f4d57c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.experience-arc__nav span {
  font-size: 34px;
  line-height: 1;
  transform: translateY(-2px);
}

.experience-arc__nav:hover {
  background: rgba(20,20,20,0.96);
  border-color: rgba(201,169,106,0.56);
  box-shadow:
    0 22px 40px rgba(0,0,0,0.22),
    0 0 18px rgba(201,169,106,0.14);
}

.experience-arc__nav--prev {
  left: 20px;
}

.experience-arc__nav--next {
  right: 20px;
}

.experience-arc__carousel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(72vw, 860px);
  height: 120px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.12) 34%, rgba(255,255,255,0) 72%);
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .experience-arc {
    padding: 96px 18px;
  }

  .experience-arc__stage,
  .experience-arc__carousel {
    min-height: 600px;
    height: 600px;
  }

  .experience-arc__card {
    width: min(42vw, 320px);
  }

  .experience-arc__card.is-left {
    transform:
      translate3d(calc(-50% - 220px), calc(-50% + 10px), 40px)
      rotateY(44deg)
      scale(0.84);
  }

  .experience-arc__card.is-right {
    transform:
      translate3d(calc(-50% + 220px), calc(-50% + 10px), 40px)
      rotateY(-44deg)
      scale(0.84);
  }

  .experience-arc__card.is-far-left {
    transform:
      translate3d(calc(-50% - 360px), calc(-50% + 24px), -130px)
      rotateY(70deg)
      scale(0.56);
  }

  .experience-arc__card.is-far-right {
    transform:
      translate3d(calc(-50% + 360px), calc(-50% + 24px), -130px)
      rotateY(-70deg)
      scale(0.56);
  }
}

@media (max-width: 767px) {
  .experience-arc {
    padding: 72px 16px 76px;
  }

  .experience-arc__heading {
    margin-bottom: 28px;
  }

  .experience-arc__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .experience-arc__stage,
  .experience-arc__carousel {
    min-height: 480px;
    height: 480px;
  }

  .experience-arc__card {
    width: min(64vw, 250px);
  }

  .experience-arc__content {
    left: 18px;
    right: 18px;
    bottom: 16px;
  }

  .experience-arc__card-title {
    font-size: 18px;
  }

  .experience-arc__text {
    display: none;
  }

  .experience-arc__card.is-center {
    transform:
      translate3d(-50%, -50%, 120px)
      rotateY(0deg)
      scale(1.02);
  }

  .experience-arc__card.is-left {
    transform:
      translate3d(calc(-50% - 120px), calc(-50% + 6px), 10px)
      rotateY(52deg)
      scale(0.78);
  }

  .experience-arc__card.is-right {
    transform:
      translate3d(calc(-50% + 120px), calc(-50% + 6px), 10px)
      rotateY(-52deg)
      scale(0.78);
  }

  .experience-arc__card.is-far-left {
    transform:
      translate3d(calc(-50% - 190px), calc(-50% + 12px), -80px)
      rotateY(74deg)
      scale(0.42);
    opacity: 0.34;
  }

  .experience-arc__card.is-far-right {
    transform:
      translate3d(calc(-50% + 190px), calc(-50% + 12px), -80px)
      rotateY(-74deg)
      scale(0.42);
    opacity: 0.34;
  }

  .experience-arc__nav {
    width: 46px;
    height: 46px;
  }

  .experience-arc__nav span {
    font-size: 26px;
  }

  .experience-arc__nav--prev {
    left: 4px;
  }

  .experience-arc__nav--next {
    right: 4px;
  }
}
/* =========================================================
   EXPERIENCE ARC TUNING 01
   中央主役化 / 左右を少し抑える / 反射強化
========================================================= */

/* セクション全体にうっすら空気感 */
.experience-arc {
  position: relative;
}

.experience-arc::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 18%, rgba(212, 175, 55, 0.00) 42%);
  z-index: 0;
}

.experience-arc__inner {
  position: relative;
  z-index: 1;
}

/* 中央カードの後ろに光を追加 */
.experience-arc__carousel {
  position: relative;
}

.experience-arc__carousel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 53%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.08) 22%, rgba(212, 175, 55, 0.00) 60%);
  filter: blur(34px);
  opacity: 0.95;
  z-index: 0;
}

/* カードを光より前へ */
.experience-arc__card {
  z-index: 2;
}

/* 中央をもう少し前に */
.experience-arc__card.is-center {
  filter: brightness(1.03) saturate(1.02);
  transform:
    translate3d(-50%, -50%, 270px)
    rotateY(0deg)
    scale(1.11);
}

.experience-arc__card.is-center .experience-arc__card-inner {
  box-shadow:
    0 34px 80px rgba(0,0,0,0.32),
    0 0 0 1px rgba(201,169,106,0.10),
    0 0 30px rgba(201,169,106,0.10),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* 左右は少しだけ暗くして主役差を出す */
.experience-arc__card.is-left,
.experience-arc__card.is-right {
  filter: brightness(0.78) saturate(0.92);
}

.experience-arc__card.is-left .experience-arc__card-inner,
.experience-arc__card.is-right .experience-arc__card-inner {
  box-shadow:
    0 20px 44px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* far はもう少し存在を薄く */
.experience-arc__card.is-far-left,
.experience-arc__card.is-far-right {
  opacity: 0.42;
  filter: brightness(0.72) saturate(0.74) blur(1.6px);
}

/* 下の反射・床感を少し強くする */
.experience-arc__carousel::after {
  width: min(78vw, 980px);
  height: 150px;
  bottom: 8px;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.16) 30%, rgba(255,255,255,0.00) 72%);
  filter: blur(22px);
  opacity: 0.9;
}

/* 中央タイトルの見え方を少し強める */
.experience-arc__card.is-center .experience-arc__card-title {
  text-shadow:
    0 4px 14px rgba(0,0,0,0.30),
    0 0 14px rgba(255,255,255,0.06);
}

/* SPはやりすぎない */
@media (max-width: 767px) {
  .experience-arc__carousel::before {
    width: 280px;
    height: 280px;
    top: 55%;
    opacity: 0.75;
  }

  .experience-arc__card.is-center {
    transform:
      translate3d(-50%, -50%, 130px)
      rotateY(0deg)
      scale(1.04);
  }

  .experience-arc__card.is-left,
  .experience-arc__card.is-right {
    filter: brightness(0.82) saturate(0.92);
  }

  .experience-arc__card.is-far-left,
  .experience-arc__card.is-far-right {
    opacity: 0.28;
  }

  .experience-arc__carousel::after {
    height: 110px;
    opacity: 0.72;
  }
}
/* =========================================================
   EXPERIENCE ARC HOVER
========================================================= */

/* ===== 中央カードホバー ===== */
.experience-arc__card.is-center:hover {
  transform:
    translate3d(-50%, -50%, 310px)
    rotateY(0deg)
    scale(1.14);
  filter: brightness(1.08) saturate(1.05);
}

.experience-arc__card.is-center:hover .experience-arc__card-inner {
  box-shadow:
    0 40px 100px rgba(0,0,0,0.36),
    0 0 0 1px rgba(201,169,106,0.18),
    0 0 40px rgba(201,169,106,0.22),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

/* 画像ズーム */
.experience-arc__card.is-center:hover .experience-arc__image-wrap img {
  transform: scale(1.14);
}

/* ===== 左右カードホバー ===== */
.experience-arc__card.is-left:hover,
.experience-arc__card.is-right:hover {
  filter: brightness(0.92) saturate(1);
}

/* 左 */
.experience-arc__card.is-left:hover {
  transform:
    translate3d(calc(-50% - 280px), calc(-50% + 6px), 110px)
    rotateY(42deg)
    scale(0.92);
}

/* 右 */
.experience-arc__card.is-right:hover {
  transform:
    translate3d(calc(-50% + 280px), calc(-50% + 6px), 110px)
    rotateY(-42deg)
    scale(0.92);
}

/* ===== ホバー時に少し光を足す ===== */
.experience-arc__card.is-center:hover::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 30px;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(201,169,106,0.18) 0%, rgba(201,169,106,0.08) 30%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

/* ===== スマホはホバー無効 ===== */
@media (hover: none) {
  .experience-arc__card:hover {
    transform: none !important;
    filter: none !important;
  }
}
/* =========================================================
   SMOOTH ROTATION
========================================================= */
.experience-arc__card {
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease,
    filter 0.8s ease;
}
/* =========================================================
   ROTATION FEEL
========================================================= */

.experience-arc__carousel.is-rotating {
  transform: scale(0.985);
  transition: transform 0.2s ease;
}
.top-ranking {
  margin-bottom: 0 !important;
  padding-bottom: 0px;
}

.experience-feature {
  margin-top: 0 !important;
}

.experience-arc {
  padding-top: 0px !important;
}
/* =========================================================
   GAP FIX（確実に詰める）
========================================================= */

/* 上のセクション */
.top-ranking {
  margin-bottom: 0 !important;
  padding-bottom: 0px; /* ←ここで調整 */
}

/* 体験談 */
.experience-feature {
  margin-top: 0 !important;
  padding-top: 0px !important; /* ←ここで微調整 */
}
/* ===============================
   SPLIT TRANSITION
=============================== */
.split-transition {
  position: relative;
  z-index: 3;
  background: #111;
  overflow: hidden;
}

.split-transition__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 440px;
}

/* ===============================
   LEFT : MEDIA
=============================== */
.split-transition__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #000;
}

.split-transition__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.split-transition__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease, transform 5.5s ease;
}

.split-transition__img.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.split-transition__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.38) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.42) 100%);
}

/* ===============================
   RIGHT : COPY
=============================== */
.split-transition__copy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  padding: 40px 48px;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,169,106,0.08) 0%, transparent 28%),
    linear-gradient(180deg, #171717 0%, #101010 100%);
  color: #fff;
}

.split-transition__copy-inner {
  width: 100%;
  max-width: 360px;
}

.split-transition__sub {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #c9a96a;
}

.split-transition__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ===============================
   TABLET
=============================== */
@media (max-width: 991px) {
  .split-transition__inner {
    grid-template-columns: 1fr;
  }

  .split-transition__media {
    min-height: 320px;
  }

  .split-transition__copy {
    min-height: auto;
    padding: 40px 24px 48px;
  }

  .split-transition__copy-inner {
    max-width: none;
    text-align: center;
  }
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 767px) {
  .split-transition__media {
    min-height: 260px;
  }

  .split-transition__copy {
    padding: 32px 20px 38px;
  }

  .split-transition__sub {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .split-transition__title {
    font-size: 28px;
  }
}
/* ===============================
   EXPERIENCE ARC / TRUMP DECORATION
=============================== */
.experience-arc {
  position: relative;
}

.experience-arc::before {
  content: "";
  position: absolute;
  top: -100px;          /* 位置調整 */
  left: 20px;         /* 位置調整 */
  width: 600px;       /* サイズ調整 */
  height: 640px;      /* サイズ調整 */
  background: url("https://vietnam-casino-log.com/wp-content/uploads/2026/03/トランプ-removebg-preview-1.png") no-repeat center / contain;
  opacity: 0.18;      /* 濃さ調整 */
  z-index: 5;
  pointer-events: none;
}
/* =========================================================
   NIGHT ARTICLES / 1画面に収める微調整
   ※ CSSのいちばん最後に追加
========================================================= */

/* セクション全体 */
.night-articles {
  min-height: 100vh !important;
  padding: 64px 20px 56px !important;
  display: flex;
  align-items: center;
}

/* 中身全体 */
.night-articles__inner {
  width: 100%;
  max-width: 1080px;
}

/* 上部テキスト */
.night-articles__sub {
  margin: 0 0 10px;
  font-size: 11px;
}

.night-articles__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.28;
  text-align: center;
}

.night-articles__lead {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  color: rgba(255,255,255,0.72);
}

/* タブ */
.night-articles__nav {
  gap: 12px;
  margin-bottom: 28px;
}

.night-articles__tab {
  min-width: 160px;
  padding: 13px 20px;
  font-size: 13px;
}

/* ビューポートまわり */
.night-articles__viewport {
  padding: 16px 20px 24px;
  margin: -16px -20px -24px;
}

.night-articles__track {
  min-height: auto !important;
}

/* パネル紹介文 */
.night-panel__intro {
  max-width: 700px;
  margin: 0 auto 24px;
}

.night-panel__kicker {
  margin: 0 0 8px;
  font-size: 11px;
}

.night-panel__heading {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
}

.night-panel__copy {
  font-size: 14px;
  line-height: 1.8;
}

/* カード3枚 */
.night-panel__grid {
  gap: 18px;
  padding: 0;
}

.night-card {
  min-height: 255px;
  padding: 22px 18px;
  border-radius: 20px;
}

.night-card__meta {
  margin: 0 0 10px;
  padding: 5px 10px;
  font-size: 10px;
}

.night-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.4;
}

.night-card__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.75;
}

.night-card__btn {
  min-width: 124px;
  padding: 10px 16px;
  font-size: 12px;
}

/* 下部導線 */
.night-panel__more {
  margin-top: 22px;
  text-align: center;
}

.night-panel__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,106,0.48);
  color: #c9a96a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.night-panel__more-link:hover {
  background: #c9a96a;
  color: #111;
  transform: translateY(-2px);
}

/* 画面高さが少し低いPC向け */
@media (max-height: 900px) {
  .night-articles {
    padding: 52px 20px 48px !important;
  }

  .night-articles__lead {
    margin-bottom: 22px;
  }

  .night-articles__nav {
    margin-bottom: 22px;
  }

  .night-panel__intro {
    margin-bottom: 18px;
  }

  .night-card {
    min-height: 230px;
    padding: 20px 16px;
  }

  .night-card__title {
    font-size: 18px;
  }

  .night-card__text {
    font-size: 13px;
    line-height: 1.7;
  }

  .night-panel__more {
    margin-top: 18px;
  }
}

/* タブレット */
@media (max-width: 991px) {
  .night-articles {
    min-height: auto !important;
    padding: 72px 20px 64px !important;
    display: block;
  }

  .night-panel__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .night-card {
    min-height: auto;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .night-articles {
    padding: 64px 16px 56px !important;
  }

  .night-articles__title {
    font-size: 26px;
  }

  .night-articles__lead {
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.8;
  }

  .night-articles__nav {
    gap: 10px;
    margin-bottom: 22px;
  }

  .night-articles__tab {
    width: 100%;
    min-width: 0;
  }

  .night-panel__intro {
    margin-bottom: 20px;
  }

  .night-panel__heading {
    font-size: 24px;
  }

  .night-panel__copy {
    font-size: 13px;
  }

  .night-card {
    padding: 20px 16px;
  }

  .night-card__title {
    font-size: 18px;
  }

  .night-card__text {
    font-size: 13px;
  }

  .night-panel__more-link {
    width: 100%;
    max-width: 260px;
  }
}
/* =========================================================
   NIGHT ARTICLES 視認性 & 中央寄せ 調整
========================================================= */

/* 英語ラベル中央 */
.night-articles__sub {
  text-align: center;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}

/* タイトル強化 */
.night-articles__title {
  text-shadow:
    0 2px 12px rgba(0,0,0,0.5),
    0 0 24px rgba(0,0,0,0.4);
}

/* 説明文 少し強く */
.night-articles__lead {
  color: rgba(255,255,255,0.85);
}

/* パネル上部 */
.night-panel__kicker {
  color: rgba(201,169,106,0.9);
}

.night-panel__heading {
  text-shadow:
    0 2px 10px rgba(0,0,0,0.5);
}

.night-panel__copy {
  color: rgba(255,255,255,0.82);
}

/* =========================
   カード視認性アップ
========================= */
.night-card {
  background: rgba(18,18,20,0.65);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(201,169,106,0.25);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    inset 0 0 0.5px rgba(255,255,255,0.1);
}

/* ホバー時ちょっと浮く */
.night-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.7),
    0 0 20px rgba(201,169,106,0.15);
}

/* テキスト強化 */
.night-card__title {
  color: #ffffff;
}

.night-card__text {
  color: rgba(255,255,255,0.82);
}

/* ボタン */
.night-card__btn {
  background: rgba(201,169,106,0.12);
  border: 1px solid rgba(201,169,106,0.4);
  color: #e6c27a;
}

/* ホバー */
.night-card:hover .night-card__btn {
  background: #c9a96a;
  color: #111;
}


/* =========================================================
   SECTION : 空気感の格上げ
========================================================= */
.night-articles {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 12% 16%, rgba(112, 146, 214, 0.12) 0%, transparent 58%),
    radial-gradient(760px 420px at 84% 18%, rgba(212, 175, 55, 0.10) 0%, transparent 58%),
    radial-gradient(900px 600px at 50% 100%, rgba(255, 255, 255, 0.035) 0%, transparent 56%),
    linear-gradient(180deg, #0a0d12 0%, #0c1017 38%, #090c12 100%) !important;
}

.night-articles::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.01) 18%, rgba(0,0,0,0) 42%),
    linear-gradient(120deg, rgba(255,255,255,0.03) 0%, transparent 24%, transparent 76%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.night-articles::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  height: 240px;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.025) 22%, transparent 70%);
  filter: blur(24px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.night-articles__inner {
  position: relative;
  z-index: 2;
}

/* =========================================================
   TOP TEXT : 上品に中央
========================================================= */
.night-articles__sub {
  margin: 0 0 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: rgba(214, 186, 121, 0.88);
  text-shadow:
    0 0 12px rgba(212,175,55,0.16),
    0 1px 2px rgba(0,0,0,0.45);
}

.night-articles__title {
  margin: 0 0 18px;
  text-align: center;
  color: #f8f6f1;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.46),
    0 0 34px rgba(255,255,255,0.05);
}

.night-articles__lead {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  color: rgba(244, 239, 232, 0.78);
  text-shadow: 0 1px 10px rgba(0,0,0,0.28);
}

/* =========================================================
   TAB : 普段は控えめ / 選択時だけ格上
========================================================= */
.night-articles__nav {
  position: relative;
  z-index: 2;
  gap: 14px;
  margin-bottom: 34px;
}

.night-articles__tab {
  position: relative;
  min-width: 320px;
  padding: 24px 22px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(214, 186, 121, 0.15);
  color: rgba(248, 243, 236, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 20px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
}

.night-articles__tab::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.015) 42%, rgba(255,255,255,0) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.night-articles__tab:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 186, 121, 0.28);
  color: rgba(255,255,255,0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 14px 28px rgba(0,0,0,0.34),
    0 0 18px rgba(212,175,55,0.06);
}

.night-articles__tab.is-active {
  background:
    linear-gradient(180deg, rgba(226, 194, 128, 0.92) 0%, rgba(196, 154, 73, 0.96) 100%);
  color: #16120d;
  border-color: rgba(255, 227, 171, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -1px 0 rgba(126, 88, 28, 0.28),
    0 18px 34px rgba(0,0,0,0.34),
    0 0 24px rgba(212,175,55,0.18);
}

.night-articles__tab.is-active::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.08) 46%, rgba(255,255,255,0) 100%);
  opacity: 1;
}

/* =========================================================
   PANEL INTRO
========================================================= */
.night-panel__intro {
  margin: 0 auto 28px;
}

.night-panel__kicker {
  color: rgba(221, 192, 131, 0.92);
  text-shadow:
    0 0 12px rgba(212,175,55,0.15),
    0 1px 2px rgba(0,0,0,0.4);
}

.night-panel__heading {
  color: #fbf8f3;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.44),
    0 0 28px rgba(255,255,255,0.05);
}

.night-panel__copy {
  color: rgba(244, 239, 232, 0.78);
  text-shadow: 0 1px 8px rgba(0,0,0,0.22);
}

/* =========================================================
   GRID
========================================================= */
.night-panel__grid {
  gap: 22px;
}

/* =========================================================
   CARD : 最上級ラグジュアリー
========================================================= */
.night-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg,
      rgba(23, 26, 32, 0.88) 0%,
      rgba(14, 17, 23, 0.92) 52%,
      rgba(10, 12, 17, 0.96) 100%) !important;
  border: 1px solid rgba(215, 185, 122, 0.22);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.44),
    0 8px 18px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(14px);
}

/* ガラスの上部反射 */
.night-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 54%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.14) 0%,
    rgba(255,255,255,0.05) 30%,
    rgba(255,255,255,0.015) 54%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* 斜めの艶 */
.night-card::after {
  content: "";
  position: absolute;
  top: -16%;
  left: -28%;
  width: 42%;
  height: 170%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(18deg);
  filter: blur(5px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.7s ease, opacity 0.45s ease;
}

.night-card > * {
  position: relative;
  z-index: 2;
}

/* 上質な細枠 */
.night-card {
  box-shadow:
    0 24px 48px rgba(0,0,0,0.46),
    0 0 0 1px rgba(214,186,121,0.04),
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(255,255,255,0.02);
}

/* ホバーは“光る”より“艶が走る” */
.night-card:hover {
  transform: translateY(-8px) scale(1.015) !important;
  border-color: rgba(226, 196, 133, 0.42);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.56),
    0 0 0 1px rgba(214,186,121,0.09),
    0 0 28px rgba(212,175,55,0.10),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.03);
}

.night-card:hover::after {
  transform: translateX(150%) rotate(18deg);
  opacity: 0.72;
}

/* featured を一段格上げ */
.night-card--featured {
  border-color: rgba(226, 196, 133, 0.36);
  background:
    linear-gradient(180deg,
      rgba(28, 24, 18, 0.90) 0%,
      rgba(18, 16, 13, 0.94) 52%,
      rgba(11, 10, 9, 0.97) 100%) !important;
  box-shadow:
    0 28px 56px rgba(0,0,0,0.52),
    0 0 0 1px rgba(214,186,121,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.025),
    0 0 34px rgba(212,175,55,0.10);
}

.night-card--featured::before {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.17) 0%,
    rgba(255,234,191,0.07) 32%,
    rgba(255,255,255,0.015) 54%,
    rgba(255,255,255,0) 100%
  );
}

/* =========================================================
   CARD TEXT
========================================================= */
.night-card__meta {
  background: rgba(214, 186, 121, 0.08);
  border: 1px solid rgba(214, 186, 121, 0.20);
  color: #dfc18a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 10px rgba(0,0,0,0.12);
}

.night-card__title {
  color: #fcfaf6;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.34);
}

.night-card__text {
  color: rgba(241, 235, 226, 0.76);
}

.night-card__btn {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(214,186,121,0.10) 0%, rgba(214,186,121,0.05) 100%);
  border: 1px solid rgba(214,186,121,0.34);
  color: #e2c58a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 16px rgba(0,0,0,0.16);
}

.night-card__btn::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 40%;
  height: 180%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(18deg);
  opacity: 0;
  transition: all 0.45s ease;
}

.night-card:hover .night-card__btn {
  background:
    linear-gradient(180deg, #e2c58a 0%, #c99d4f 100%);
  color: #17120d;
  border-color: rgba(255,230,179,0.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.36),
    0 12px 24px rgba(0,0,0,0.26),
    0 0 18px rgba(212,175,55,0.14);
}

.night-card:hover .night-card__btn::before {
  left: 140%;
  opacity: 1;
}

/* =========================================================
   MORE LINK
========================================================= */
.night-panel__more {
  margin-top: 24px;
}

.night-panel__more-link {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(214,186,121,0.28);
  color: #e0c286;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 18px rgba(0,0,0,0.18);
}

.night-panel__more-link::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -28%;
  width: 38%;
  height: 180%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(18deg);
  opacity: 0;
  transition: all 0.45s ease;
}

.night-panel__more-link:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, #e2c58a 0%, #c99d4f 100%);
  color: #17120d;
  border-color: rgba(255,230,179,0.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.34),
    0 14px 24px rgba(0,0,0,0.26),
    0 0 18px rgba(212,175,55,0.12);
}

.night-panel__more-link:hover::before {
  left: 140%;
  opacity: 1;
}

/* =========================================================
   VIEWPORT / 余裕を持たせて高級感を保つ
========================================================= */
.night-articles__viewport {
  overflow: hidden;
  padding: 18px 24px 28px;
  margin: -18px -24px -28px;
}

/* =========================================================
   低めの画面でも破綻しにくく
========================================================= */
@media (max-height: 900px) {
  .night-articles {
    padding-top: 54px !important;
    padding-bottom: 48px !important;
  }

  .night-articles__lead {
    margin-bottom: 26px;
  }

  .night-articles__nav {
    margin-bottom: 26px;
  }

  .night-card {
    min-height: 238px;
  }

  .night-card__title {
    font-size: 19px;
  }

  .night-card__text {
    font-size: 13px;
    line-height: 1.72;
  }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
  .night-articles__grid,
  .night-panel__grid {
    gap: 16px;
  }

  .night-card {
    border-radius: 22px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .night-articles {
    background:
      radial-gradient(420px 260px at 16% 10%, rgba(112,146,214,0.12) 0%, transparent 62%),
      radial-gradient(360px 220px at 86% 16%, rgba(212,175,55,0.10) 0%, transparent 60%),
      linear-gradient(180deg, #0a0d12 0%, #0b0f15 100%) !important;
  }

  .night-articles__sub {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .night-articles__title {
    font-size: 26px;
    line-height: 1.35;
  }

  .night-articles__lead {
    font-size: 13px;
    line-height: 1.8;
  }

  .night-articles__tab {
    width: 100%;
    min-width: 0;
  }

  .night-card {
    min-height: auto;
    padding: 20px 16px;
  }

  .night-card__title {
    font-size: 18px;
  }

  .night-card__text {
    font-size: 13px;
  }
}
/* =========================================================
   LUXURY TEXT CONTRAST（内外で色分け）
========================================================= */

/* =========================
   カード外（暗くする）
========================= */
.night-articles__sub,
.night-articles__title,
.night-articles__lead,
.night-panel__kicker,
.night-panel__heading,
.night-panel__copy {
  color: #1a1a1a !important;
}

/* 英語だけ少しゴールド寄せ */
.night-articles__sub,
.night-panel__kicker {
  color: #8c6a2f !important;
}

/* =========================
   カード内（明るくする）
========================= */
.night-card__meta {
  color: #d6ba79 !important;
}

.night-card__title {
  color: #f8f6f0 !important;
}

.night-card__text {
  color: rgba(235, 228, 215, 0.78) !important;
}

.night-card__btn {
  color: #e2c58a !important;
}

/* featuredはさらに格上 */
.night-card--featured .night-card__title {
  color: #fffaf2 !important;
}

.night-card--featured .night-card__text {
  color: rgba(245, 238, 226, 0.85) !important;
}

/* =========================
   高級感の微調整（影）
========================= */

/* 外側テキストは影なしで締める */
.night-articles__title,
.night-panel__heading {
  text-shadow: none !important;
}

/* カード内はほんのり影で浮かせる */
.night-card__title {
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.night-card__text {
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
/* =========================================================
   TAB / MORE LINK 視認性UP
   ※ 一番最後に追加
========================================================= */

/* -------------------------
   未選択タブ
------------------------- */
.night-articles__tab {
  background: linear-gradient(180deg, #f4efe7 0%, #e7dfd3 100%) !important;
  border: 1px solid rgba(140, 106, 47, 0.22) !important;
  color: #4a3a22 !important;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.75) !important;
}

/* 未選択タブのホバー */
.night-articles__tab:hover {
  background: linear-gradient(180deg, #f2eadc 0%, #e3d6c0 100%) !important;
  border-color: rgba(140, 106, 47, 0.34) !important;
  color: #2f2416 !important;
}

/* 選択中タブは今の高級感を維持 */
.night-articles__tab.is-active {
  color: #1a140d !important;
}

/* -------------------------
   下部リンク
------------------------- */
.night-panel__more-link {
  background: linear-gradient(180deg, #f1e7d4 0%, #dfc28c 100%) !important;
  border: 1px solid rgba(140, 106, 47, 0.34) !important;
  color: #3a2c18 !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.65) !important;
}

/* ホバー */
.night-panel__more-link:hover {
  background: linear-gradient(180deg, #eddcae 0%, #c99d4f 100%) !important;
  color: #1a140d !important;
  border-color: rgba(140, 106, 47, 0.46) !important;
}
/* =========================================================
   CARD LAYOUT（均等3枚）
========================================================= */

/* コンテナを広げる */
.night-articles__inner {
  max-width: 1200px !important;
}

/* 3枚均等 */
.night-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* カードのサイズ安定 */
.night-card {
  width: 100%;
  height: 100%;
}

/* 余白を少しだけ詰める */
.night-articles {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* featuredの強調をリセット */
.night-card--featured {
  transform: none !important;
  box-shadow: inherit !important;
}

/* PC広め画面でさらに余裕 */
@media (min-width: 1400px) {
  .night-articles__inner {
    max-width: 1580px !important;
  }

  .night-panel__grid {
    gap: 28px;
  }
}

/* タブレット以下 */
@media (max-width: 991px) {
  .night-panel__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* =========================================================
   切り替わりエリアの外枠
   ※ .night-panel を触らず、viewport を囲う安全版
========================================================= */

.night-articles__viewport {
  position: relative;
  padding: 36px 28px 32px !important;
  margin-top: 18px;
  border: 2px solid rgba(201, 169, 106, 0.34);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

/* 左側アクセントライン */
.night-articles__viewport::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 18px;
  width: 4px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d6ba79 0%, #8c6a2f 100%);
  box-shadow: 0 0 10px rgba(201,169,106,0.16);
  pointer-events: none;
}

/* track の高さを少し安定させる */
.night-articles__track {
  min-height: 560px;
}

/* タイトルまわりを少し整える */
.night-panel__intro {
  margin-bottom: 28px;
}

/* スマホ */
@media (max-width: 767px) {
  .night-articles__viewport {
    padding: 24px 16px 22px !important;
    border-radius: 22px;
  }

  .night-articles__viewport::before {
    top: 34px;
    left: 10px;
    width: 3px;
    height: 40px;
  }
}
/* =========================================================
   NIGHT ARTICLES VIEWPORT THEME
========================================================= */

.night-articles__viewport {
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

/* WIN */
.night-articles__viewport.theme-win {
  background: linear-gradient(
    180deg,
    rgba(18, 31, 58, 0.76) 0%,
    rgba(12, 22, 42, 0.82) 52%,
    rgba(8, 15, 30, 0.88) 100%
  ) !important;
}

/* PLAY */
.night-articles__viewport.theme-play {
  background: linear-gradient(
    180deg,
    rgba(52, 24, 40, 0.76) 0%,
    rgba(40, 18, 31, 0.82) 52%,
    rgba(26, 12, 22, 0.88) 100%
  ) !important;
}

/* FIRST */
.night-articles__viewport.theme-first {
  background: linear-gradient(
    180deg,
    rgba(248, 242, 232, 0.76) 0%,
    rgba(236, 227, 214, 0.82) 52%,
    rgba(223, 211, 194, 0.88) 100%
  ) !important;
}
/* =========================================================
   SAFE FINAL POLISH
   ※ .night-panel は触らない安全版
========================================================= */

/* 念のため、前回の崩れる装飾を無効化 */
.night-panel::before,
.night-panel::after {
  content: none !important;
  display: none !important;
}

/* ---------------------------------------------------------
   viewport 外側だけに光を出す
--------------------------------------------------------- */
.night-articles__viewport {
  position: relative;
  overflow: hidden;
}

/* 共通の上ツヤ */
.night-articles__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 16%,
    rgba(255,255,255,0.02) 30%,
    rgba(255,255,255,0) 52%
  );
}

/* 斜めの反射 */
.night-articles__viewport::after {
  content: "";
  position: absolute;
  top: -18%;
  left: -24%;
  width: 38%;
  height: 170%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.14) 48%,
    rgba(255,255,255,0.00) 100%
  );
  transform: rotate(18deg);
  filter: blur(10px);
  opacity: 0.32;
}

/* 中身を前に */
.night-articles__viewport > * {
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   WIN：外側の青光
--------------------------------------------------------- */
.night-articles__viewport.theme-win {
  box-shadow:
    0 24px 60px rgba(0,0,0,0.34),
    0 0 40px rgba(78, 118, 210, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

/* ---------------------------------------------------------
   PLAY：外側の赤光
--------------------------------------------------------- */
.night-articles__viewport.theme-play {
  box-shadow:
    0 24px 60px rgba(0,0,0,0.34),
    0 0 40px rgba(148, 52, 78, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

/* ---------------------------------------------------------
   FIRST：光は控えめ
--------------------------------------------------------- */
.night-articles__viewport.theme-first {
  box-shadow:
    0 20px 48px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.38) !important;
}

/* ---------------------------------------------------------
   紺・赤テーマの説明文字だけ補正
   ※ カード内は触らない
--------------------------------------------------------- */
.night-articles__viewport.theme-win .night-panel__kicker,
.night-articles__viewport.theme-play .night-panel__kicker {
  color: #e0c98a !important;
}

.night-articles__viewport.theme-win .night-panel__heading,
.night-articles__viewport.theme-play .night-panel__heading {
  color: #ffffff !important;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.45),
    0 0 20px rgba(255,255,255,0.05) !important;
}

.night-articles__viewport.theme-win .night-panel__copy,
.night-articles__viewport.theme-play .night-panel__copy {
  color: rgba(245,240,230,0.86) !important;
}

.night-articles__viewport.theme-win .night-panel__more-link,
.night-articles__viewport.theme-play .night-panel__more-link {
  color: #f0d392 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
/* =========================================================
   LUXURY BOOST（光 強化版）
========================================================= */

/* 光を強くする（でも上品に） */
.night-articles__viewport.theme-win {
  box-shadow:
    0 28px 70px rgba(0,0,0,0.40),
    0 0 60px rgba(90, 140, 255, 0.28),   /* 青の光 強化 */
    0 0 120px rgba(90, 140, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.10) !important;
}

.night-articles__viewport.theme-play {
  box-shadow:
    0 28px 70px rgba(0,0,0,0.40),
    0 0 60px rgba(190, 70, 100, 0.26),   /* 赤の光 強化 */
    0 0 120px rgba(190, 70, 100, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.10) !important;
}

/* 上のツヤも少し強化 */
.night-articles__viewport::before {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.26) 0%,
      rgba(255,255,255,0.12) 10%,
      rgba(255,255,255,0.05) 20%,
      rgba(255,255,255,0.00) 50%
    );
}

/* 斜め光も強化 */
.night-articles__viewport::after {
  opacity: 0.5;
  filter: blur(12px);
}

/* =========================================================
   BUTTON（ベージュ→高級ボタン）
========================================================= */

/* 共通：形と質感 */
.night-panel__more-link {
  border-radius: 999px !important;
  padding: 12px 22px !important;
  font-weight: 600;
  letter-spacing: 0.04em;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

/* -------------------------
   WIN：紺 × ゴールドボタン
------------------------- */
.night-articles__viewport.theme-win .night-panel__more-link {
  background: linear-gradient(
    180deg,
    #d6ba79 0%,
    #b8964e 100%
  ) !important;

  color: #1a1f2e !important;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.30),
    0 0 18px rgba(214,186,121,0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* -------------------------
   PLAY：赤 × ゴールド寄り
------------------------- */
.night-articles__viewport.theme-play .night-panel__more-link {
  background: linear-gradient(
    180deg,
    #e0b86a 0%,
    #b8873a 100%
  ) !important;

  color: #2a1618 !important;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.30),
    0 0 18px rgba(180,80,90,0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* =========================================================
   MORE LINK BUTTON COLOR FORCE OVERRIDE
   ※ 一番最後
========================================================= */

/* 共通でグラデーションや影響をいったん消す */
.night-articles .night-panel__more-link,
.night-articles__viewport .night-panel__more-link,
.night-articles__viewport.theme-win .night-panel__more-link,
.night-articles__viewport.theme-play .night-panel__more-link,
.night-articles__viewport.theme-first .night-panel__more-link {
  background: none !important;
  background-image: none !important;
}

/* WIN */
.night-articles__viewport.theme-win .night-panel__more-link {
  background-color: #3a465f !important;
  color: #ffffff !important;
  border: 1px solid #3a465f !important;
}

/* PLAY */
.night-articles__viewport.theme-play .night-panel__more-link {
  background-color: #5a2f3a !important;
  color: #ffffff !important;
  border: 1px solid #5a2f3a !important;
}

/* FIRST */
.night-articles__viewport.theme-first .night-panel__more-link {
  background-color: #7d6848 !important;
  color: #ffffff !important;
  border: 1px solid #7d6848 !important;
}

/* hoverも固定 */
.night-articles__viewport.theme-win .night-panel__more-link:hover {
  background-color: #465372 !important;
  color: #ffffff !important;
  border-color: #465372 !important;
}

.night-articles__viewport.theme-play .night-panel__more-link:hover {
  background-color: #6a3946 !important;
  color: #ffffff !important;
  border-color: #6a3946 !important;
}

.night-articles__viewport.theme-first .night-panel__more-link:hover {
  background-color: #927a56 !important;
  color: #ffffff !important;
  border-color: #927a56 !important;
}
/* =========================================================
   TOP TAB BUTTON COLOR（上の3ボタン）
========================================================= */

/* ベース（非アクティブ） */
.night-articles__tab {
  background: #e5e0d6 !important;
  color: #333333 !important;
  border: 1px solid #e5e0d6 !important;
}

/* =========================
   勝ちに行く夜（アクティブ）
========================= */
.night-articles__tab[data-night="win"].is-active {
  background: #2f3e5f !important;
  color: #ffffff !important;
  border-color: #2f3e5f !important;
}

/* =========================
   遊ぶ夜（アクティブ）
========================= */
.night-articles__tab[data-night="play"].is-active {
  background: #5a2a34 !important;
  color: #ffffff !important;
  border-color: #5a2a34 !important;
}

/* =========================
   初めての夜（アクティブ）
========================= */
.night-articles__tab[data-night="first"].is-active {
  background: #7a6543 !important;
  color: #ffffff !important;
  border-color: #7a6543 !important;
}
/* =========================================================
   TOP TAB FINAL POLISH
========================================================= */

/* ベース（非アクティブ） */
.night-articles__tab {
  background: rgba(255,255,255,0.65) !important;
  color: #3a3328 !important;
  border: 1px solid rgba(180,160,120,0.35) !important;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition:
    all 0.25s ease;
}

/* ホバー（軽く浮く） */
.night-articles__tab:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.15);
}

/* =========================
   勝ち（紺）
========================= */
.night-articles__tab[data-night="win"].is-active {
  background: linear-gradient(
    180deg,
    #3a4c74 0%,
    #1f2c48 100%
  ) !important;

  color: #ffffff !important;

  box-shadow:
    0 12px 28px rgba(0,0,0,0.30),
    0 0 16px rgba(80,120,220,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* =========================
   遊ぶ（赤）
========================= */
.night-articles__tab[data-night="play"].is-active {
  background: linear-gradient(
    180deg,
    #7a3442 0%,
    #4a1f27 100%
  ) !important;

  color: #ffffff !important;

  box-shadow:
    0 12px 28px rgba(0,0,0,0.30),
    0 0 16px rgba(180,70,90,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* =========================
   初めて（落ち着き）
========================= */
.night-articles__tab[data-night="first"].is-active {
  background: linear-gradient(
    180deg,
    #8a734f 0%,
    #5f4d32 100%
  ) !important;

  color: #ffffff !important;

  box-shadow:
    0 12px 28px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.20);
}

/* =========================
   アクティブ時だけ少し押し込む
========================= */
.night-articles__tab.is-active {
  transform: translateY(-1px);
}/* =========================================================
   HEAVY LUXURY FIX（軽さを消す）
========================================================= */

/* 明るすぎる演出を抑える */
.night-articles::before {
  opacity: 0.4 !important;
}

.night-articles__viewport::before {
  opacity: 0.5 !important;
}

/* 斜めの光を弱く（これが軽さの原因） */
.night-articles__viewport::after {
  opacity: 0.18 !important;
  filter: blur(10px);
}

/* =========================
   WIN：もっと重く
========================= */
.night-articles__viewport.theme-win {
  background:
    linear-gradient(
      180deg,
      #3a4355 0%,
      #2c3444 60%,
      #1f2633 100%
    ) !important;

  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    0 0 30px rgba(70,100,160,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

/* =========================
   PLAY：赤も重く
========================= */
.night-articles__viewport.theme-play {
  background:
    linear-gradient(
      180deg,
      #4a2c32 0%,
      #352026 60%,
      #24171c 100%
    ) !important;

  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    0 0 26px rgba(120,50,60,0.10),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
}
/* =========================================================
   締め
========================================================= */
/* =========================================================
   SITE MAP FINAL
========================================================= */
.site-map-final {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 110px 20px 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(120,170,255,0.08) 0%, transparent 38%),
    radial-gradient(circle at 80% 10%, rgba(212,175,55,0.08) 0%, transparent 36%),
    linear-gradient(
      180deg,
      #0b0f1a 0%,
      #0f1726 40%,
      #0a1220 100%
    );
  color: #fff;
}

/* 背景のうっすら光 */
.site-map-final::before,
.site-map-final::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.site-map-final::before {
  top: -120px;
  left: -100px;
  width: 340px;
  height: 340px;
  background: rgba(120,170,255,0.12);
  opacity: 0.7;
}

.site-map-final::after {
  right: -140px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  background: rgba(212,175,55,0.10);
  opacity: 0.55;
}

.site-map-final__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

/* =========================================================
   HEADING
========================================================= */
.site-map-final__heading {
  text-align: center;
  margin-bottom: 56px;
}

.site-map-final__sub {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #c9a96a;
}

.site-map-final__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 0 18px rgba(255,255,255,0.06),
    0 0 34px rgba(255,255,255,0.04);
}

/* =========================================================
   GRID
========================================================= */
.site-map-final__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 72px;
}

.site-map-final__column {
  position: relative;
  padding: 30px 24px 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
}

.site-map-final__column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201,169,106,0) 0%,
    rgba(201,169,106,0.75) 50%,
    rgba(201,169,106,0) 100%
  );
  opacity: 0.95;
}

/* =========================================================
   COLUMN TITLE
========================================================= */
.site-map-final__col-title {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

/* =========================================================
   LIST
========================================================= */
.site-map-final__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-map-final__list li + li {
  margin-top: 14px;
}

.site-map-final__list a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-map-final__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #c9a96a;
  transition: width 0.25s ease;
}

.site-map-final__list a:hover {
  color: #fff;
  transform: translateX(4px);
}

.site-map-final__list a:hover::after {
  width: 100%;
}

/* =========================================================
   BOTTOM
========================================================= */
.site-map-final__bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.site-map-final__logo {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
}

.site-map-final__copy {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.46);
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
  .site-map-final {
    padding: 90px 20px 64px;
  }

  .site-map-final__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}
/* =========================================================
  最後
========================================================= */
/* SITE GUIDE の白背景上書きを止める */
section.site-map-final,
section.site-map-final.section-full {
  background: linear-gradient(
    180deg,
    #0b0f1a 0%,
    #0f1726 40%,
    #0a1220 100%
  ) !important;
  color: #fff !important;
}

/* 白ベースの一括指定を無効化するための明示上書き */
section.site-map-final:not(.fv):not(.hero):not(.first-view),
section.site-map-final.section-full:not(.fv):not(.hero):not(.first-view) {
  background: linear-gradient(
    180deg,
    #0b0f1a 0%,
    #0f1726 40%,
    #0a1220 100%
  ) !important;
}

/* 光はそのまま使う */
section.site-map-final::before,
section.site-map-final::after,
section.site-map-final.section-full::before,
section.site-map-final.section-full::after {
  display: block !important;
}
/* =========================================================
   SITE MAP FINAL
   グラデーション + 光演出
========================================================= */
section.site-map-final,
section.site-map-final.section-full {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(104, 224, 255, 0.34) 0%, rgba(104, 224, 255, 0.16) 12%, rgba(104, 224, 255, 0) 32%),
    radial-gradient(circle at 66% 68%, rgba(226, 63, 214, 0.40) 0%, rgba(226, 63, 214, 0.18) 18%, rgba(226, 63, 214, 0) 42%),
    radial-gradient(circle at 92% 82%, rgba(255, 180, 120, 0.20) 0%, rgba(255, 180, 120, 0.10) 14%, rgba(255, 180, 120, 0) 34%),
    linear-gradient(135deg, #0870b6 0%, #0a3f87 20%, #10296e 42%, #2a1d67 62%, #4f235d 76%, #7f5c4b 100%) !important;
  color: #ffffff !important;
}

/* =========================================================
   INNER
========================================================= */
.site-map-final__inner {
  position: relative !important;
  z-index: 3 !important;
}

/* =========================================================
   LEFT TOP CYAN GLOW
========================================================= */
section.site-map-final::before,
section.site-map-final.section-full::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;

  top: -220px !important;
  left: -220px !important;
  width: 640px !important;
  height: 640px !important;
  border-radius: 50% !important;

  background:
    radial-gradient(circle,
      rgba(144, 242, 255, 0.72) 0%,
      rgba(92, 210, 255, 0.32) 18%,
      rgba(52, 167, 255, 0.14) 32%,
      rgba(52, 167, 255, 0) 62%) !important;

  filter: blur(42px) !important;
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

/* =========================================================
   WHITE ARC LIGHT
========================================================= */
section.site-map-final::after,
section.site-map-final.section-full::after {
  content: "" !important;
  position: absolute !important;
  z-index: 1 !important;
  pointer-events: none !important;

  top: -16% !important;
  right: 10% !important;
  width: 560px !important;
  height: 1200px !important;
  border-radius: 50% !important;

  border: 16px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.12),
    0 0 52px rgba(255, 255, 255, 0.10),
    0 0 90px rgba(255, 255, 255, 0.08) !important;

  filter: blur(4px) !important;
  transform: rotate(22deg) !important;
  opacity: 0.95 !important;
}

/* =========================================================
   EXTRA LIGHT LAYERS
========================================================= */
.site-map-final__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 60% 58%, rgba(255, 70, 220, 0.18) 0%, rgba(255, 70, 220, 0.08) 16%, transparent 34%),
    radial-gradient(circle at 8% 12%, rgba(180, 255, 255, 0.12) 0%, transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 24%, rgba(0,0,0,0.06) 100%);
}

/* =========================================================
   TEXT
========================================================= */
.site-map-final__sub {
  color: #d8b36a !important;
  letter-spacing: 0.18em !important;
}

.site-map-final__title,
.site-map-final__col-title,
.site-map-final__logo {
  color: #ffffff !important;
}

.site-map-final__list a,
.site-map-final__copy {
  color: rgba(255, 255, 255, 0.80) !important;
}

/* =========================================================
   COLUMN
========================================================= */
.site-map-final__column {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(4px) !important;
}

/* =========================================================
   CONTENT TO FRONT
========================================================= */
.site-map-final__heading,
.site-map-final__grid,
.site-map-final__bottom,
.site-map-final__column {
  position: relative !important;
  z-index: 2 !important;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  section.site-map-final::before,
  section.site-map-final.section-full::before {
    top: -180px !important;
    left: -180px !important;
    width: 420px !important;
    height: 420px !important;
    filter: blur(34px) !important;
  }

  section.site-map-final::after,
  section.site-map-final.section-full::after {
    right: -40px !important;
    top: -8% !important;
    width: 260px !important;
    height: 760px !important;
    border-width: 10px !important;
    opacity: 0.72 !important;
  }
}
/* ========================================
   SITE GUIDE カード枠削除
======================================== */
.site-map-final__column {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

/* 内側ももし枠っぽく見えてたら消す */
.site-map-final__column * {
  box-shadow: none !important;
}
/* SITE GUIDE の線・枠・疑似要素を全部消す */
.site-map-final,
.site-map-final__inner,
.site-map-final__grid,
.site-map-final__column,
.site-map-final__bottom {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* 残る線の正体を消す */
.site-map-final::before,
.site-map-final::after,
.site-map-final__inner::before,
.site-map-final__inner::after,
.site-map-final__grid::before,
.site-map-final__grid::after,
.site-map-final__column::before,
.site-map-final__column::after,
.site-map-final__bottom::before,
.site-map-final__bottom::after {
  content: none !important;
  display: none !important;
}

/* 下の区切り線も消す */
.site-map-final__bottom {
  border-top: none !important;
}
/* 二重 section 対策 */
section.site-map-final {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
/* ========================================
SITE GUIDE：見出しの箱を消す
======================================== */

/* 上の白い帯 */
.site-map-final__title {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
}

/* タイトルまわり全体 */
.site-map-final__heading {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* 各カラム見出しの白枠 */
.site-map-final__col-title {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
}
/* ========================================
新着記事：中央・シンプル版
======================================== */
/* まず文字を見えるようにする最優先FIX */
.home-news,
.home-news * {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
}

.home-news a,
.home-news a * {
  color: #fff !important;
}

.home-news img,
.home-news figure,
.home-news .cat-label,
.home-news .entry-card-thumb,
.home-news .new-entry-card-thumb {
  display: none !important;
}

.home-news ul,
.home-news ol {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.home-news li {
  margin: 0 0 12px !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

.home-news__sub {
  color: #d4af37 !important;
  margin: 0 0 8px !important;
}

.home-news__title {
  color: #fff !important;
  margin: 0 0 24px !important;
}
/* ========================================
News：中央配置 × 左揃え × 暗めテキスト
======================================== */

/* セクション中央 */
.home-news {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* NEW */
.home-news__sub {
  color: #c9a96a;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

/* タイトル */
.home-news__title {
  font-size: 26px;
  color: #e5e5e5;
  margin-bottom: 30px;
}

/* リスト */
.home-news ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 1行 */
.home-news li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* リンク */
.home-news a {
  color: #d0d0d0 !important;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

/* 日付 */
.home-news .post-date,
.home-news time {
  color: rgba(255,255,255,0.45) !important;
  font-size: 12px;
  margin-right: 10px;
}

/* ホバー */
.home-news a:hover {
  color: #ffffff !important;
}

/* 画像削除 */
.home-news img {
  display: none !important;
}
/* ========================================
News：暗めテキストに修正（背景が明るい用）
======================================== */

.home-news,
.home-news * {
  color: #222 !important;
}

/* タイトル */
.home-news__title {
  color: #111 !important;
}

/* NEW */
.home-news__sub {
  color: #c9a96a !important;
}

/* リンク */
.home-news a {
  color: #333 !important;
}

/* 日付 */
.home-news .post-date,
.home-news time {
  color: #888 !important;
}

/* ホバー */
.home-news a:hover {
  color: #000 !important;
}
/* とにかく全部暗くする */
.home-news,
.home-news * {
  color: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* リンクも強制 */
.home-news a,
.home-news a * {
  color: #000 !important;
}

/* 日付だけ少し薄く */
.home-news time,
.home-news .post-date {
  color: #666 !important;
}

/* 画像は消す */
.home-news img {
  display: none !important;
}
/* News本体 */
.home-news {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 56px 20px 72px !important;
}

.home-news__sub {
  margin: 0 0 8px !important;
  color: #c9a96a !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
}

.home-news__title {
  margin: 0 0 26px !important;
  color: #111 !important;
  font-size: 28px !important;
  line-height: 1.3 !important;
}

/* new_list 全体 */
.home-news .new-entry-cards {
  margin: 0 !important;
  padding: 0 !important;
}

/* 各記事 */
.home-news .new-entry-card {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* 各記事リンクを1行ブロック化 */
.home-news .new-entry-card-link {
  display: block !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid #cfcfcf !important;
  text-decoration: none !important;
}

/* 最後の線だけ消す */
.home-news .new-entry-card:last-child .new-entry-card-link {
  border-bottom: none !important;
}

/* 画像を消す */
.home-news .new-entry-card-thumb,
.home-news .new-entry-card-snippet {
  display: none !important;
}

/* 中身 */
.home-news .new-entry-card-content {
  display: block !important;
  padding: 0 !important;
}

/* 日付を出す */
.home-news .new-entry-card-date {
  display: inline-block !important;
  margin: 0 14px 0 0 !important;
  color: #777 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
  vertical-align: top !important;
}

/* タイトル */
.home-news .new-entry-card-title {
  display: inline !important;
  color: #222 !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

/* ホバー */
.home-news .new-entry-card-link:hover .new-entry-card-title {
  color: #000 !important;
}
/* ========================================
新着記事：タイトル位置調整
======================================== */

.home-news {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 56px 20px 72px !important;
}

.home-news__sub {
  margin: 0 0 10px !important;
  text-align: left !important;
}

.home-news__title {
  margin: 0 0 28px !important;
  padding: 0 !important;
  text-align: left !important;
  line-height: 1.3 !important;
}
/* ========================================
新着記事：ホバー反応
======================================== */

.home-news .new-entry-card-link {
  transition: background-color 0.25s ease, transform 0.25s ease !important;
}

.home-news .new-entry-card-link:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  transform: translateX(4px) !important;
}

.home-news .new-entry-card-link:hover .new-entry-card-title {
  color: #000 !important;
}

.home-news .new-entry-card-link {
  cursor: pointer !important;
}
/* タイトルを記事一覧の左端に合わせる */
.home-news__sub,
.home-news__title {
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: left !important;
  padding-left: 115px !important;
  box-sizing: border-box !important;
}

.home-news__sub {
  margin-bottom: 8px !important;
}

.home-news__title {
  margin-bottom: 28px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
/* 最後のSITE GUIDEだけ共通sectionルールから外す */
section.site-map-final,
section.site-map-final.section-full {
  display: block !important;
  min-height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: stretch !important;
}

/* 実際の余白はinnerだけに持たせる */
.site-map-final__inner {
  padding: 80px 20px 70px !important;
}

/* 新着記事の下に少しだけ重ねる */
.home-news {
  position: relative !important;
  z-index: 5 !important;
  margin-bottom: -55px !important;
}

.site-map-final.section-full {
  position: relative !important;
  z-index: 2 !important;
}
/* ========================================
   SITE GUIDEの背景を上に張り出して
   新着記事との隙間を埋める
======================================== */
section.site-map-final,
section.site-map-final.section-full {
  position: relative !important;
  margin-top: -33px !important;
  padding-top: 230px !important;
  overflow: visible !important;
  z-index: 10 !important;
}

/* 上にはみ出す背景を作る */
section.site-map-final::before,
section.site-map-final.section-full::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: -10px !important;
  height: 50px !important;
  z-index: 0 !important;
  pointer-events: none !important;

  background:
    radial-gradient(circle at 20% 20%, rgba(120,170,255,0.08) 0%, transparent 38%),
    radial-gradient(circle at 80% 10%, rgba(212,175,55,0.08) 0%, transparent 36%),
    linear-gradient(
      180deg,
      #0b0f1a 0%,
      #0f1726 40%,
      #0a1220 100%
    ) !important;
}

/* 中身は前に出す */
.site-map-final__inner {
  position: relative !important;
  z-index: 2 !important;
}
/* =========================================================
   AREA MAP｜画像の上に地図を重ねる一体型
   ※ 一番最後に追加
========================================================= */
@media (min-width: 992px) {

  /* 全体 */
  .area-map {
    position: relative;
    overflow: hidden;
  }

  .area-map__layout {
    position: relative;
    display: block !important;
    min-height: 760px;
  }

  /* 画像を全体ステージ化 */
  .area-map__preview {
    position: relative !important;
    width: 100%;
    min-height: 760px;
    z-index: 1;
  }

  .area-map__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.01);
    transition:
      opacity 0.45s ease,
      transform 0.65s ease;
  }

  .area-map__panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
  }

  .area-map__panel-link,
  .area-map__panel-image-wrap {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 760px;
  }

  .area-map__panel-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow:
      0 30px 80px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.06);
  }

  .area-map__panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: brightness(0.72) saturate(0.92) contrast(1.02);
  }

  .area-map__panel-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7,15,28,0.10) 0%, rgba(8,16,30,0.22) 38%, rgba(7,14,24,0.72) 100%),
      radial-gradient(circle at 18% 28%, rgba(88,126,255,0.16) 0%, transparent 26%),
      radial-gradient(circle at 72% 76%, rgba(214,179,106,0.10) 0%, transparent 24%);
  }

  /* テキストを主役に */
  .area-map__panel-content {
    position: absolute;
    left: 48px;
    right: auto;
    bottom: 42px;
    width: min(520px, 42%);
    z-index: 4;
    padding: 0;
  }

  .area-map__panel-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(214,179,106,0.14);
    border: 1px solid rgba(214,179,106,0.22);
    color: #d8b66f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
  }

  .area-map__panel-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1.02;
    letter-spacing: 0.04em;
    text-shadow:
      0 0 18px rgba(255,255,255,0.10),
      0 0 40px rgba(0,0,0,0.18);
  }

  .area-map__panel-copy {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.98);
    font-size: clamp(26px, 3.2vw, 52px);
    line-height: 1.18;
    font-weight: 700;
    text-shadow:
      0 0 18px rgba(255,255,255,0.08),
      0 0 32px rgba(0,0,0,0.16);
  }

  .area-map__panel-text {
    margin: 0 0 16px;
    color: rgba(236,242,248,0.82);
    font-size: 15px;
    line-height: 1.9;
  }

  .area-map__panel-casino {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(10,18,30,0.68);
    border: 1px solid rgba(214,179,106,0.20);
    color: #e2c98f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    backdrop-filter: blur(8px);
  }

  /* 地図レイヤー */
  .area-map__map {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }

  .area-map__stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 760px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .area-map__stage::before,
  .area-map__stage::after {
    display: none !important;
  }

  /* 地図はうっすら */
  .area-map__bg-image {
    position: absolute !important;
    top: 50% !important;
    right: 9% !important;
    left: auto !important;
    width: 31% !important;
    max-width: none !important;
    transform: translateY(-50%) !important;
    opacity: 0.11 !important;
    filter:
      grayscale(0.15)
      saturate(0.72)
      brightness(1.08)
      contrast(0.96)
      blur(0.6px)
      drop-shadow(0 0 18px rgba(88,126,255,0.10)) !important;
    pointer-events: none;
    z-index: 1 !important;
  }

  /* ピンは見せる */
  .area-map__point {
    position: absolute;
    z-index: 5;
    pointer-events: auto;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
  }

  .area-map__point:hover,
  .area-map__point:focus-visible,
  .area-map__point.is-active {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 18px rgba(214,179,106,0.24));
    outline: none;
  }

  .area-map__point-pin {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 35% 35%, #fff6d8 0%, #e0bc61 42%, #a3771f 100%);
    box-shadow:
      0 0 0 8px rgba(214,179,106,0.08),
      0 0 22px rgba(214,179,106,0.34),
      0 0 44px rgba(88,126,255,0.10);
  }

  .area-map__point-pin::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(214,179,106,0.22);
    animation: areaMapPulseOverlay 2.4s ease-out infinite;
  }

  .area-map__point-label {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(9,17,30,0.78);
    border: 1px solid rgba(214,179,106,0.20);
    color: rgba(255,255,255,0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }

  @keyframes areaMapPulseOverlay {
    0% {
      transform: scale(0.75);
      opacity: 0.82;
    }
    100% {
      transform: scale(1.9);
      opacity: 0;
    }
  }

  /* 上のボタン */
  .area-map__buttons {
    position: relative;
    z-index: 10;
    margin-bottom: 28px;
  }

  .area-map__button {
    background: rgba(12,18,28,0.92) !important;
    color: #d7b96f !important;
    border: 1px solid rgba(214,179,106,0.26) !important;
    box-shadow:
      0 12px 24px rgba(0,0,0,0.10),
      inset 0 1px 0 rgba(255,255,255,0.05);
  }

  .area-map__button.is-active {
    background: linear-gradient(135deg, #d7b14f 0%, #efcf67 100%) !important;
    color: #151515 !important;
    border-color: rgba(214,179,106,0.78) !important;
    box-shadow:
      0 14px 28px rgba(214,179,106,0.22),
      0 0 18px rgba(214,179,106,0.14);
  }
}
/* ========================================
   地図を白ラインっぽく見せる
======================================== */
@media (min-width: 992px) {

  .area-map__bg-image {
    opacity: 0.28 !important;

    filter:
      brightness(2.4)
      contrast(0.7)
      grayscale(1)
      saturate(0)
      blur(0.4px)
      drop-shadow(0 0 18px rgba(255,255,255,0.15)) !important;
  }

}
/* ========================================
   地図を大きくする
======================================== */
@media (min-width: 992px) {

  .area-map__bg-image {
    width: 45% !important;   /* ←ここがサイズ */
    right: -24% !important;    /* 少し中央寄せ */
    top: 52% !important;

    transform: translateY(-50%) scale(1.05) !important;
  }
/* =========================================================
   AREA MAP｜1画面に収める
   ※ 一番最後に追加
========================================================= */
@media (min-width: 992px) {

  .area-map {
    min-height: 100vh !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    display: flex;
    align-items: center;
  }

  .area-map__inner {
    width: min(1400px, 94vw);
    margin: 0 auto;
  }

  /* 見出しとボタンの高さを少し圧縮 */
  .area-map__heading {
    margin-bottom: 16px !important;
  }

  .area-map__sub {
    margin-bottom: 1px !important;
  }

  .area-map__title {
    margin-bottom: 1px !important;
    font-size: clamp(28px, 3.2vw, 48px) !important;
  }

  .area-map__lead {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .area-map__buttons {
    margin-bottom: 18px !important;
    gap: 10px !important;
  }

  .area-map__button {
    padding: 10px 16px !important;
    min-width: 118px !important;
    font-size: 12px !important;
  }

  /* 本体を1画面内に収める高さへ */
  .area-map__layout {
    min-height: calc(100vh - 250px) !important;
  }

  .area-map__preview,
  .area-map__stage,
  .area-map__panel-link,
  .area-map__panel-image-wrap {
    min-height: calc(100vh - 300px) !important;
    height: calc(10vh - 250px) !important;
  }

  /* テキストも少し圧縮 */
  .area-map__panel-content {
    left: 40px !important;
    bottom: 30px !important;
    width: min(500px, 44%) !important;
  }

  .area-map__panel-kicker {
    margin-bottom: 12px !important;
    padding: 7px 14px !important;
    font-size: 10px !important;
  }

  .area-map__panel-title {
    font-size: clamp(34px, 4.2vw, 60px) !important;
    margin-bottom: 8px !important;
  }

  .area-map__panel-copy {
    font-size: clamp(22px, 2.5vw, 38px) !important;
    margin-bottom: 10px !important;
  }

  .area-map__panel-text {
    font-size: 14px !important;
    line-height: 1.75 !important;
    margin-bottom: 12px !important;
  }

  .area-map__panel-casino {
    font-size: 12px !important;
    padding: 9px 14px !important;
  }
}
}
/* =========================================================
   AREA MAP｜通常は光らせない
   選択時だけ光らせて文字も大きくする
========================================================= */
@media (min-width: 992px) {

  /* -------------------------
     通常時：光らせない
  ------------------------- */
  .area-map__point-pin {
    position: relative;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    background:
      radial-gradient(circle at 35% 35%, #f8d978 0%, #d4a62c 55%, #9a6a10 100%) !important;
    box-shadow: none !important;
    filter: none !important;
    transform: scale(1) !important;
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      filter 0.28s ease,
      background 0.28s ease;
  }

  .area-map__point-pin::before,
  .area-map__point-pin::after {
    display: none !important;
  }

  /* ラベル通常時 */
  .area-map__point-label {
    margin-top: 10px !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    background: rgba(9,17,30,0.84) !important;
    border: 1px solid rgba(214,179,106,0.14) !important;
    color: rgba(255,255,255,0.90) !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.14) !important;
    transform: scale(1) !important;
    transform-origin: center left;
    transition:
      transform 0.28s ease,
      font-size 0.28s ease,
      padding 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease,
      color 0.28s ease;
  }

  /* -------------------------
     選択時：ここだけ強く光らせる
  ------------------------- */
  .area-map__point.is-active {
    z-index: 20 !important;
  }

  .area-map__point.is-active .area-map__point-pin {
    width: 22px !important;
    height: 22px !important;
    transform: scale(1.08) !important;
    background:
      radial-gradient(circle at 35% 35%, #fff8dc 0%, #ffd86e 22%, #e1b33a 52%, #ad7613 78%, #7e520b 100%) !important;
    box-shadow:
      0 0 0 10px rgba(214,179,106,0.16),
      0 0 0 22px rgba(214,179,106,0.08),
      0 0 28px rgba(255,220,132,0.72),
      0 0 58px rgba(214,179,106,0.54),
      0 0 88px rgba(86,124,255,0.18) !important;
    filter: brightness(1.08) !important;
    animation: areaMapActivePinGlow 1.8s ease-in-out infinite;
  }

  .area-map__point.is-active .area-map__point-pin::before {
    display: block !important;
    content: "";
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,223,145,0.56);
    animation: areaMapActivePinPulse 1.8s ease-out infinite;
  }

  .area-map__point.is-active .area-map__point-pin::after {
    display: block !important;
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    box-shadow:
      0 0 10px rgba(255,255,255,0.88),
      0 0 18px rgba(255,245,210,0.62);
  }

  @keyframes areaMapActivePinGlow {
    0%, 100% {
      filter: brightness(1.02);
    }
    50% {
      filter: brightness(1.18);
    }
  }

  @keyframes areaMapActivePinPulse {
    0% {
      transform: scale(0.84);
      opacity: 1;
    }
    70% {
      transform: scale(2.0);
      opacity: 0;
    }
    100% {
      transform: scale(2.0);
      opacity: 0;
    }
  }

  /* -------------------------
     選択時：文字を大きくする
  ------------------------- */
  .area-map__point.is-active .area-map__point-label {
    margin-top: 12px !important;
    padding: 8px 16px !important;
    font-size: 25px !important;
    font-weight: 700 !important;
    color: #fffdf8 !important;
    border-color: rgba(255,223,145,0.42) !important;
    box-shadow:
      0 14px 28px rgba(0,0,0,0.22),
      0 0 20px rgba(214,179,106,0.12) !important;
    transform: scale(1.08) !important;
  }

  /* -------------------------
     ホバーは弱くする
  ------------------------- */
  .area-map__point:hover .area-map__point-pin,
  .area-map__point:focus-visible .area-map__point-pin {
    transform: scale(1.04);
  }

  .area-map__point:hover .area-map__point-label,
  .area-map__point:focus-visible .area-map__point-label {
    transform: scale(1.03);
  }
}
.area-map__point-label {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;

  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.area-map__point-label {
  font-family: "Noto Serif JP", serif !important;
}
/* ========================================
   白背景でも効く左光
======================================== */
@media (min-width: 992px) {

  .area-map::before {
    content: "";
    position: absolute;
    left: -10%;
    top: 0;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    border-radius: 10%;
    pointer-events: none;
    z-index: 1;

    background:
      radial-gradient(
        circle,
        rgba(214,179,106,0.22) 7%,   /* ゴールド */
        rgba(86,124,255,0.18) 88%,  /* ブルー */
        rgba(86,124,255,0.08) 46%,
        transparent 70%
      );

    filter: blur(60px);
    opacity: 0.9;
  }

  .area-map::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;

    background:
      linear-gradient(
        100deg,
        rgba(214,179,106,0.10) 0%,
        rgba(255,255,255,0) 20%,
        rgba(86,124,255,0.08) 35%,
        rgba(255,255,255,0) 55%
      );

    mix-blend-mode: multiply; /* ←ここが重要 */
  }

  .area-map__inner {
    position: relative;
    z-index: 2;
  }
}
/* =========================================================
   AREA MAP｜白背景でもしっかり見える左光
   ※ 一番最後に追加
========================================================= */
@media (min-width: 992px) {

  .area-map {
    position: relative;
    overflow: hidden;
  }

  /* 左上から入る大きい色光 */
  .area-map::before {
    content: "";
    position: absolute;
    left: -18%;
    top: -10%;
    width: 92vw;
    height: 92vw;
    max-width: 1100px;
    max-height: 1100px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;

    background:
      radial-gradient(
        circle,
        rgba(214,179,106,0.42) 0%,
        rgba(214,179,106,0.24) 16%,
        rgba(86,124,255,0.28) 34%,
        rgba(86,124,255,0.12) 50%,
        rgba(255,255,255,0) 72%
      );

    filter: blur(72px);
    opacity: 1;
    transform: rotate(-8deg);
  }

  /* 左から右へ流れる斜めの差し込み光 */
  .area-map::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;

    background:
      linear-gradient(
        110deg,
        rgba(214,179,106,0.00) 0%,
        rgba(214,179,106,0.18) 8%,
        rgba(255,245,220,0.12) 14%,
        rgba(86,124,255,0.12) 22%,
        rgba(255,255,255,0.00) 34%
      );

    mix-blend-mode: multiply;
    opacity: 1;
  }

  /* 中身を前に */
  .area-map__inner {
    position: relative;
    z-index: 2;
  }
}
/* ========================================
   スマホ：地図削除＋画像縮小
======================================== */
@media (max-width: 991px) {

  /* 地図を完全に消す */
  .area-map__map {
    display: none !important;
  }

  /* レイアウトを縦に */
  .area-map__layout {
    display: block !important;
  }

  /* カードを通常化 */
  .area-map__preview {
    position: relative !important;
    width: 100%;
    margin: 0;
  }

  .area-map__panel {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
  }

  /* 画像を小さくする（ここ重要） */
  .area-map__panel-image-wrap {
    height: 220px !important;
    min-height: 220px !important;
    border-radius: 16px;
  }

  .area-map__panel-image {
    object-fit: cover;
  }

  /* テキストを下に */
  .area-map__panel-content {
    position: relative;
    padding: 16px 12px;
  }

  /* タイトルサイズ調整 */
  .area-map__panel-title {
    font-size: 26px !important;
  }

  .area-map__panel-copy {
    font-size: 18px !important;
  }

  .area-map__panel-text {
    font-size: 13px !important;
    line-height: 1.7;
  }

}
/* ========================================
   スマホ：エリアボタン 2×3レイアウト
======================================== */
@media (max-width: 991px) {

  .area-map__buttons {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    gap: 10px;
    margin: 16px 0 20px;
  }

  .area-map__button {
    width: 100%;
    padding: 10px 8px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
    min-width: auto !important;

    /* 押しやすさ確保 */
    min-height: 42px;

    /* 見た目を軽く */
    background: rgba(15, 20, 30, 0.9) !important;
    border: 1px solid rgba(214,179,106,0.2) !important;
    color: rgba(255,255,255,0.85) !important;
  }

  /* 選択中 */
  .area-map__button.is-active {
    background: linear-gradient(135deg, #d7b14f 0%, #efcf67 100%) !important;
    color: #111 !important;
    border-color: rgba(214,179,106,0.6) !important;
  }

}
/* ========================================
   スマホ：画像も削除
======================================== */
@media (max-width: 991px) {

  /* 画像全体消す */
  .area-map__panel-image-wrap {
    display: none !important;
  }

  /* 画像リンクも消す */
  .area-map__panel-link {
    display: none !important;
  }

  /* 高さリセット */
  .area-map__panel {
    min-height: auto !important;
    height: auto !important;
  }

  /* テキストだけ表示 */
  .area-map__panel-content {
    position: relative;
    padding: 10px 12px !important;
  }

}
/* ========================================
   スマホ：空白の完全除去（本命）
======================================== */
@media (max-width: 991px) {

  /* セクション全体 */
  .area-map {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
  }

  /* 内側 */
  .area-map__inner {
    padding-bottom: 0 !important;
  }

  /* レイアウト */
  .area-map__layout {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* プレビュー（ここが犯人の可能性高い） */
  .area-map__preview {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* パネル */
  .area-map__panel {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* リンク */
  .area-map__panel-link {
    min-height: auto !important;
    height: auto !important;
  }

  /* 画像削除（念のため） */
  .area-map__panel-image-wrap {
    display: none !important;
  }

  /* テキストも詰める */
  .area-map__panel-content {
    padding: 8px 12px !important;
  }

  /* ボタン下も詰める */
  .area-map__buttons {
    margin-bottom: 4px !important;
  }

}
/* ========================================
   スマホ：おすすめカジノ3選をコンパクト化
======================================== */
@media (max-width: 767px) {

  /* グリッドの間隔 */
  .top-ranking__grid {
    gap: 10px !important;
  }

  /* カード全体 */
  .top-ranking__card {
    padding: 12px 10px !important;
    border-radius: 14px !important;
  }

  /* 画像を小さく（ここが一番効く） */
  .top-ranking__image {
    height: 120px !important;
    border-radius: 10px !important;
  }

  /* ランク表示 */
  .top-ranking__rank {
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }

  /* タイトル */
  .top-ranking__title {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }

  /* 説明 */
  .top-ranking__text {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

}
/* ========================================
   スマホ：おすすめカジノ3選を横長の小型カード化
   1画面で3カード見えるサイズ感
======================================== */
@media (max-width: 767px) {

  .top-ranking {
    padding: 44px 0 32px !important;
  }

  .top-ranking__inner {
    padding: 0 12px !important;
  }

  .top-ranking__lead {
    margin-bottom: 18px !important;
  }

  .top-ranking__grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .top-ranking__card {
    display: grid !important;
    grid-template-columns: 96px 1fr !important;
    align-items: stretch !important;
    width: 100% !important;
    min-height: 92px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .top-ranking__image-wrap {
    height: 100% !important;
    min-height: 92px !important;
  }

  .top-ranking__image-wrap img {
    width: 100% !important;
    height: 100% !important;
    min-height: 92px !important;
    object-fit: cover !important;
  }

  .top-ranking__rank {
    top: 6px !important;
    left: 6px !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 11px !important;
  }

  .top-ranking__content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 10px 10px 10px 10px !important;
    text-align: left !important;
  }

  .top-ranking__content h3 {
    margin: 0 0 4px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .top-ranking__content p {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    color: #bbb !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .top-ranking__footer {
    display: none !important;
  }

  .top-ranking__btn {
    display: none !important;
  }

  .top-ranking__more {
    margin-top: 14px !important;
  }

  .top-ranking__more-btn {
    font-size: 13px !important;
    padding: 10px 18px !important;
  }
}
.top-ranking__card {
  grid-template-columns: 84px 1fr !important;
  min-height: 82px !important;
}

.top-ranking__image-wrap,
.top-ranking__image-wrap img {
  min-height: 82px !important;
}
@media (max-width: 767px) {

  /* 体験談カードだけ小さくする */
  .experience-arc__card,
  .experience-arc__card.is-center,
  .experience-arc__card.is-left,
  .experience-arc__card.is-right,
  .experience-arc__card.is-far-left,
  .experience-arc__card.is-far-right {
    width: 62% !important;
    max-width: 62% !important;
    min-width: 62% !important;
  }

  /* カード全体の縦横バランスを少し詰める */
  .experience-arc__card {
    aspect-ratio: 0.8 / 1 !important;
  }

  /* カードの角丸を少しだけ小さく */
  .experience-arc__card-inner {
    border-radius: 18px !important;
  }
}
@media (max-width: 767px) {

  /* タイトルブロック全体の下余白を詰める */
  .experience-arc__heading {
    margin-bottom: 10px !important;
  }

  /* タイトル単体の下余白も詰める */
  .experience-arc__title {
    margin-bottom: 6px !important;
  }

  /* リード文があるなら、そこも少しだけ詰める */
  .experience-arc__lead {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {

  /* 横スクロールは維持 */
  .experience-arc {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 16px 8px !important;
    scrollbar-width: none;
  }

  .experience-arc::-webkit-scrollbar {
    display: none;
  }

  /* 横並びを維持 */
  .experience-arc__list,
  .experience-arc__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  /* カードを横長にする */
  .experience-arc__card,
  .experience-arc__card.is-center,
  .experience-arc__card.is-left,
  .experience-arc__card.is-right,
  .experience-arc__card.is-far-left,
  .experience-arc__card.is-far-right {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    flex: 0 0 88% !important;
    width: 92% !important;
    max-width: 92% !important;
    min-width: 92% !important;
    aspect-ratio: 1.3 / 1 !important;
    scroll-snap-align: center;
  }

  /* 中身も横長カード向けに少し調整 */
  .experience-arc__card-inner {
    padding: 10px !important;
    border-radius: 18px !important;
  }

  .experience-arc__image {
    aspect-ratio: 16 / 9 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }

  .experience-arc__body {
    padding-top: 10px !important;
  }
}
@media (max-width: 767px) {

  /* セクション全体を少しだけ詰める */
  .experience-arc {
    padding: 40px 0 56px !important;
  }

  /* タイトルまわり */
  .experience-arc__heading {
    margin-bottom: 8px !important;
    padding: 0 16px !important;
  }

  /* 高さ固定を解除 */
  .experience-arc__stage {
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .experience-arc__carousel {
    position: relative !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 8px 16px 12px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: none !important;
  }

  .experience-arc__carousel::-webkit-scrollbar {
    display: none;
  }

  /* 矢印はスマホでは消す */
  .experience-arc__nav {
    display: none !important;
  }

  /* absolute と 3D transform を完全解除 */
  .experience-arc__card,
  .experience-arc__card.is-center,
  .experience-arc__card.is-left,
  .experience-arc__card.is-right,
  .experience-arc__card.is-far-left,
  .experience-arc__card.is-far-right {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    flex: 0 0 84% !important;
    width: 84% !important;
    min-width: 84% !important;
    max-width: 84% !important;
    aspect-ratio: 1.12 / 1 !important;
    scroll-snap-align: center !important;
    will-change: auto !important;
  }

  /* カードの見た目をスマホ向けに少しだけ整える */
  .experience-arc__card-inner {
    border-radius: 18px !important;
  }

  .experience-arc__content {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .experience-arc__meta {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }

  .experience-arc__card-title {
    font-size: 16px !important;
    line-height: 1.45 !important;
    margin-bottom: 0 !important;
  }

  .experience-arc__text {
    display: none !important;
  }

  /* 下の疑似影も少し抑える */
  .experience-arc__carousel::after {
    width: 78% !important;
    height: 56px !important;
    bottom: 2px !important;
    filter: blur(12px) !important;
    opacity: 0.38 !important;
  }
}
@media (max-width: 767px) {

  .real-result {
    padding: 36px 12px 40px !important;
  }

  .real-result__inner {
    max-width: 100% !important;
  }

  .real-result__split {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    align-items: start !important;
  }

  .real-result__visual,
  .real-result__story {
    width: 100% !important;
    min-width: 0 !important;
  }

  .real-result__sub {
    margin-bottom: 6px !important;
    font-size: 10px !important;
  }

  .real-result__title {
    font-size: 24px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  .real-result__lead {
    font-size: 13px !important;
    line-height: 1.7 !important;
    margin: 0 auto 16px !important;
  }

  .real-result__summary {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  .real-result__card {
    padding: 14px 10px !important;
    border-radius: 14px !important;
  }

  .real-result__label {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }

  .real-result__value {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .real-result__chart {
    margin-bottom: 10px !important;
  }

  .real-result__chart-box {
    height: 140px !important;
    border-radius: 14px !important;
  }

  .real-result__story-kicker {
    margin-bottom: 6px !important;
    font-size: 10px !important;
  }

  .real-result__story-title {
    font-size: 20px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }

  .real-result__story-text {
    font-size: 12px !important;
    line-height: 1.7 !important;
    margin-bottom: 12px !important;
  }

  .real-result__story-list {
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .real-result__story-item {
    padding: 10px 12px !important;
  }

  .real-result__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .real-result__btn {
    min-width: 0 !important;
    width: 100% !important;
    padding: 10px 12px !important;
    font-size: 12px !important;
  }
}
@media (max-width: 767px) {

  /* ---------------------------------
     まず、real-result の散らし演出を止める
  --------------------------------- */
  .real-result.rr-ready .real-result__card,
  .real-result.rr-ready .real-result__chart,
  .real-result.rr-ready .real-result__story,
  .real-result.rr-ready .real-result__story-item,
  .real-result.rr-ready .real-result__actions,
  .real-result.rr-in .real-result__card,
  .real-result.rr-in .real-result__chart,
  .real-result.rr-in .real-result__story,
  .real-result.rr-in .real-result__story-item,
  .real-result.rr-in .real-result__actions {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  /* 左右から入る演出も止める */
  .real-result__visual,
  .real-result__story,
  .real-result.is-active .real-result__visual,
  .real-result.is-active .real-result__story {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* story-item の下から出る演出も止める */
  .real-result__story-item,
  .real-result.is-active .real-result__story-item,
  .real-result__story-item:hover {
    opacity: 1 !important;
    transform: none !important;
  }

  /* ---------------------------------
     レイアウトをスマホで普通に整列
  --------------------------------- */
  .real-result {
    padding: 36px 14px 40px !important;
    overflow: hidden !important;
  }

  .real-result__split {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    align-items: start !important;
  }

  .real-result__summary {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  .real-result__card {
    margin: 0 !important;
    padding: 14px 10px !important;
    border-radius: 14px !important;
  }

  .real-result__chart {
    margin: 0 0 12px !important;
  }

  .real-result__chart-box {
    height: 150px !important;
    min-height: 150px !important;
    border-radius: 14px !important;
  }

  .real-result__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .real-result__btn {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }
}
@media (max-width: 767px) {

  /* 記事カードエリア全体 */
  .night-panel__grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  /* カードを横長・低めに */
  .night-card {
    min-height: auto !important;
    padding: 14px 14px !important;
    border-radius: 16px !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  /* ラベル */
  .night-card__meta {
    align-self: flex-start !important;
    margin: 0 0 6px !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
  }

  /* タイトル */
  .night-card__title {
    margin: 0 0 6px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  /* 本文 */
  .night-card__text {
    margin: 0 0 10px !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  /* ボタン */
  .night-card__btn {
    align-self: flex-start !important;
    min-width: 0 !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 767px) {

  /* 右側全体 */
  .real-result__story {
    padding: 0 !important;
  }

  /* 見出しまわり */
  .real-result__story-kicker {
    margin: 0 0 6px !important;
    font-size: 10px !important;
  }

  .real-result__story-title {
    margin: 0 0 8px !important;
    font-size: 22px !important;
    line-height: 1.35 !important;
  }

  .real-result__story-text {
    margin: 0 0 12px !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
  }

  /* 記事カード一覧 */
  .real-result__story-list {
    display: grid !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  /* 記事カード本体を小さく・横長に */
  .real-result__story-item {
    display: grid !important;
    grid-template-columns: 32px 1fr !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    min-height: 58px !important;
    border-radius: 12px !important;
  }

  /* 番号 */
  .real-result__story-num {
    font-size: 14px !important;
    line-height: 1 !important;
  }

  /* テキスト */
  .real-result__story-copy {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  /* 下のボタン */
  .real-result__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .real-result__btn {
    width: 100% !important;
    min-width: 0 !important;
    padding: 10px 12px !important;
    font-size: 12px !important;
  }
}
@media (max-width: 767px) {

  .real-result__value {
    font-size: 20px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

}
@media (max-width: 767px) {

  /* =========================
     体験談セクションを詰める
  ========================= */
  .experience-feature {
    padding: 20px 0 10px !important;
    min-height: auto !important;
  }

  .experience-arc {
    padding: 20px 12px 24px !important;
  }

  .experience-arc__inner {
    padding: 0 !important;
  }

  .experience-arc__heading {
    margin-bottom: 4px !important;
  }

  .experience-arc__sub {
    margin-bottom: 4px !important;
  }

  .experience-arc__title {
    margin-bottom: 2px !important;
  }

  .experience-arc__lead {
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
  }

  .experience-arc__stage {
    margin-top: 0 !important;
    min-height: auto !important;
    height: auto !important;
  }

  .experience-arc__carousel {
    padding-top: 2px !important;
    padding-bottom: 4px !important;
  }

  /* =========================
     収支セクションを詰める
  ========================= */
  .real-result {
    padding: 20px 12px 24px !important;
    min-height: auto !important;
  }

  .real-result__sub {
    margin-bottom: 4px !important;
  }

  .real-result__title {
    margin-bottom: 4px !important;
  }

  .real-result__lead {
    margin: 0 0 8px !important;
    line-height: 1.6 !important;
  }

  .real-result__split {
    gap: 10px !important;
  }

  .real-result__summary {
    margin-bottom: 8px !important;
    gap: 8px !important;
  }

  .real-result__chart {
    margin-bottom: 8px !important;
  }

  .real-result__story-text {
    margin-bottom: 8px !important;
  }

  .real-result__story-list {
    margin-bottom: 8px !important;
    gap: 6px !important;
  }
}
@media (max-width: 767px) {

  .night-articles__nav {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;

    /* 横スクロール系を完全停止 */
    overflow: visible !important;
  }

  .night-articles__tab {
    width: 100% !important;
    min-width: 0 !important;
    padding: 10px 6px !important;
    font-size: 11px !important;
  }

}
@media (max-width: 767px) {

  /* 新着記事全体 */
  .home-news {
    max-width: 100% !important;
    padding: 40px 16px 48px !important;
  }

  /* 見出しは中央 */
  .home-news__sub,
  .home-news__title {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  /* 記事一覧そのものを中央基準に戻す */
  .home-news .new-entry-cards,
  .home-news ul.new-entry-cards,
  .home-news ul,
  .home-news ol {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .home-news .new-entry-card,
  .home-news li.new-entry-card,
  .home-news ul li,
  .home-news ol li {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  /* 1記事ごとの横幅を中央で固定 */
  .home-news .new-entry-card-link {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 12px 0 !important;
    box-sizing: border-box !important;
  }

  .home-news .new-entry-card-content {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 767px) {

  /* 新着記事の下余白を削る */
  .home-news {
    padding-bottom: 8px !important;
    margin-bottom: 0 !important;
  }

  /* SiteGuide の上余白が大きすぎるので詰める */
  section.site-map-final,
  section.site-map-final.section-full {
    padding-top: 24px !important;
    margin-top: 0 !important;
  }

  /* 内側見出しの上余白も念のため消す */
  .site-map-final__heading {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
@media (max-width: 767px) {

  /* ========================================
     1. セクション全体のリズムを統一
  ======================================== */
  .experience-feature {
    padding: 20px 0 10px !important;
    min-height: auto !important;
  }

  .experience-arc {
    padding: 20px 12px 24px !important;
  }

  .real-result {
    padding: 20px 12px 24px !important;
    min-height: auto !important;
  }

  .night-articles {
    min-height: auto !important;
    padding: 28px 16px 32px !important;
    display: block !important;
  }

  .home-news {
    padding: 32px 16px 8px !important;
    margin-bottom: 0 !important;
  }

  section.site-map-final,
  section.site-map-final.section-full {
    padding: 24px 16px 36px !important;
    margin-top: 0 !important;
    min-height: auto !important;
  }

  /* ========================================
     2. タイトルサイズを統一
  ======================================== */
  .experience-arc__title,
  .real-result__title,
  .night-articles__title,
  .home-news__title,
  .site-map-final__title {
    font-size: 24px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.02em !important;
  }

  .experience-arc__sub,
  .real-result__sub,
  .night-articles__sub,
  .home-news__sub,
  .site-map-final__sub,
  .real-result__story-kicker,
  .night-panel__kicker {
    font-size: 10px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.16em !important;
  }

  /* 見出し下の余白も揃える */
  .experience-arc__heading,
  .site-map-final__heading {
    margin-bottom: 8px !important;
  }

  .real-result__title,
  .night-articles__title,
  .home-news__title,
  .site-map-final__title {
    margin-bottom: 8px !important;
  }

  .real-result__lead,
  .night-articles__lead {
    font-size: 13px !important;
    line-height: 1.7 !important;
    margin-bottom: 12px !important;
  }

  /* ========================================
     3. ボタンサイズを統一
  ======================================== */
  .real-result__btn,
  .night-card__btn,
  .top-ranking__more-btn,
  .area-map__button,
  .top-ranking__btn,
  .night-panel__more-link {
    min-width: 0 !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    border-radius: 999px !important;
  }

  .night-card__btn,
  .top-ranking__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* real-result の2ボタン */
  .real-result__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .real-result__btn {
    width: 100% !important;
  }

  /* ========================================
     4. Night セクションの仕上げ
  ======================================== */
  .night-articles__inner {
    max-width: 100% !important;
  }

  .night-panel__intro {
    margin: 0 auto 14px !important;
    text-align: center !important;
  }

  .night-panel__heading {
    font-size: 20px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  .night-panel__copy {
    font-size: 12px !important;
    line-height: 1.7 !important;
    text-align: center !important;
  }

  .night-panel__grid {
    gap: 10px !important;
    padding: 0 !important;
  }

  .night-card {
    min-height: auto !important;
    padding: 14px 14px !important;
    border-radius: 16px !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .night-card__meta {
    align-self: flex-start !important;
    margin: 0 0 6px !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
  }

  .night-card__title {
    margin: 0 0 6px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  .night-card__text {
    margin: 0 0 10px !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  /* ========================================
     5. 新着記事の最終整理
  ======================================== */
  .home-news__sub,
  .home-news__title {
    text-align: center !important;
    padding-left: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-news .new-entry-cards,
  .home-news ul.new-entry-cards,
  .home-news ul,
  .home-news ol {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .home-news .new-entry-card,
  .home-news li.new-entry-card,
  .home-news ul li,
  .home-news ol li {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .home-news .new-entry-card-link,
  .home-news .new-entry-card-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* ========================================
     6. SiteGuide をスマホで見やすく
  ======================================== */
  .site-map-final__inner {
    max-width: 100% !important;
  }

  .site-map-final__heading {
    text-align: center !important;
    padding: 0 !important;
  }

  .site-map-final__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .site-map-final__col,
  .site-map-final__block {
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-map-final__list li + li {
    margin-top: 10px !important;
  }

  .site-map-final__list a {
    display: inline-block !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  .site-map-final__bottom {
    padding-top: 18px !important;
    margin-top: 18px !important;
  }

  .site-map-final__logo {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .site-map-final__copy {
    font-size: 10px !important;
    line-height: 1.6 !important;
  }
}
/* Jetpack 購読ボタンを完全削除 */
.wp-block-jetpack-subscriptions,
.wp-block-jetpack-subscriptions form,
.wp-block-jetpack-subscriptions button {
  display: none !important;
}
@media (max-width: 767px) {

  /* ========================================
     1. 横スクロール系を気持ちよくする
  ======================================== */
  .experience-arc__carousel,
  .area-map__buttons {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .experience-arc__carousel::-webkit-scrollbar,
  .area-map__buttons::-webkit-scrollbar {
    display: none;
  }

  /* ========================================
     2. セクションの見出し位置を少し安定させる
  ======================================== */
  .experience-arc,
  .real-result,
  .night-articles,
  .home-news,
  .site-map-final {
    scroll-margin-top: 12px;
  }

  /* ========================================
     3. テキストの行間をスマホで少し揃える
  ======================================== */
  .experience-arc__lead,
  .real-result__lead,
  .real-result__story-text,
  .night-panel__copy,
  .night-card__text,
  .home-news .new-entry-card-content,
  .site-map-final__list a {
    line-height: 1.65 !important;
  }

  /* ========================================
     4. タップ時のズーム感を減らす
  ======================================== */
  .area-map__button,
  .real-result__btn,
  .night-card__btn,
  .top-ranking__btn,
  .top-ranking__more-btn,
  .new-entry-card-link,
  .site-map-final a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  /* ========================================
     5. カードやボタンの揺れを減らす
  ======================================== */
  .night-card,
  .real-result__card,
  .experience-arc__card,
  .top-ranking__card {
    will-change: auto !important;
    backface-visibility: hidden;
  }

  /* ========================================
     6. 下端の詰まり感を少し改善
  ======================================== */
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
