/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 26 2025 | 04:39:42 */
.headline {
  font-family: 'Montserrat', 'BIZ UDPGothic', sans-serif;
  font-weight: 700;
  color: #FFB400;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  animation: sunriseFadeIn 1.5s ease-out forwards;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap; /* 全デバイスで改行させない */
}

.word-shine {
  font-size: 4rem;
  letter-spacing: -0.5px;
  display: inline;
}

.word-rest {
  font-size: 3rem;
  letter-spacing: -0.5px;
  display: inline;
  /* ↓ 不要な隙間を防ぐため margin 削除 */
}

.subtext {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #555555;
  margin-top: 0rem;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(10px);
  animation: sunriseFadeIn 1.5s ease-out forwards;
  animation-delay: 0.4s;
  text-align: center;
  margin-bottom: 0;
}

/* アニメーション */
@keyframes sunriseFadeIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* タブレット */
@media (max-width: 1024px) {
  .word-shine {
    font-size: 3rem;
  }

  .word-rest {
    font-size: 2.3rem;
  }

  .subtext {
    font-size: 1.2rem;
  }
}

/* スマホ（改行させないまま） */
@media (max-width: 768px) {
  .word-shine {
    font-size: 2rem;
  }

  .word-rest {
    font-size: 1.5rem;
  }

  .subtext {
    font-size: 1rem;
  }

  .headline {
    white-space: nowrap; /* ← スマホでも改行させない */
  }
}
