/* ===============================
   FRONT PAGE ONLY
   ※ ロゴ・ヘッダー・ハンバーガーには一切触らない
================================ */

/* =================================
   MAIN（トップページ専用）
================================= */
body.home main.home {
  padding: 0;
}

/* =================================
   HERO
================================= */
.intro-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.4rem;
  text-align: center;
  color: #d8c9ff;
}

.hero-sub {
  display: block;
  font-size: 1rem;
  margin-top: 12px;
  opacity: 0.85;
}

.hero-description {
  text-align: center;
  margin-top: 30px;
  line-height: 2;
}

.hero-description strong {
  display: block;
  margin: 16px 0;
  color: #ffd87a;
}

/* =================================
   RELAX CARD（2 → 3 レイアウト）
================================= */
.relax-pair {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas:
    "brain brain brain sleep sleep sleep"
    "eye eye stress stress lift lift";
  gap: 40px;
}

.relax-brain  { grid-area: brain; }
.relax-sleep  { grid-area: sleep; }
.relax-eye    { grid-area: eye; }
.relax-stress { grid-area: stress; }
.relax-lift   { grid-area: lift; }

.relax-box {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 35, 0.88),
    rgba(10, 10, 20, 0.88)
  );
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;

  border: 1px solid rgba(220, 200, 255, 0.28);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.75),
    inset 0 0 35px rgba(255, 255, 255, 0.06);
}

.relax-box h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: #e6dcff;
  letter-spacing: 0.08em;
}

.relax-box p {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}

/* =================================
   CTA（予約エリア）
================================= */
.reserve-cta {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.reserve-cta p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.reserve-button {
  display: inline-block;
  margin: 10px 0 6px;
  padding: 18px 56px;
  border-radius: 999px;
  background: linear-gradient(135deg,#fff2b2,#ffd87a);
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.reserve-cta small {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* QRコード：※の直下 */
.cta-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
}

.cta-icons img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 768px) {

  .hero-title {
    font-size: 1.9rem;
  }

  .relax-pair {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
}
/* TOP News：安心感のある文章（本文のみ） */
/* TOP News：安心感をはっきり出す本文 */
body.home .effect-card-section .news-item .news-content p {
  text-align: center;
  line-height: 2.3;
  margin: 0;
}


body.home .effect-card-section .news-item .news-content p em {
  color: rgba(180, 205, 255, 0.9);
  font-style: normal;
  text-shadow:
    0 0 10px rgba(170, 200, 255, 0.6);
}
/* 1文目：グランドオープン告知 */
body.home .news-content .news-lead {
  display: block;
  color: #ffd87a;
  letter-spacing: 0.12em;
  text-shadow: 0 0 8px rgba(255,216,122,0.45);
  margin-bottom: 12px;
}

/* 2文目：安心感のある説明 */
body.home .news-content .news-main {
  display: block;
  color: rgba(190,210,255,0.9);
  letter-spacing: 0.08em;
  text-shadow: 0 0 6px rgba(160,190,255,0.35);
  margin-bottom: 10px;
}

/* 3文目：締め */
body.home .news-content .news-end {
  display: block;
  color: rgba(210,225,255,0.75);
  font-size: 0.95em;
}
body.home .news-content p:first-line {
  color: #ffd87a;
  letter-spacing: 0.12em;
}
/* モバイル微調整（崩れ防止） */
@media (max-width: 768px) {
  body.home .effect-card-section .news-item .news-content p {
    line-height: 2;
  }
}