/* ===============================
   PAGE2 SUNRISE LIGHT
=============================== */

#page2{
  overflow: hidden;
}

.sunrise-light{
  position: absolute;
  top: 50%;
  left: 50%;

  width: 140%;
  height: 220px;

  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255,180,100,0.35),
    rgba(255,140,80,0.18),
    rgba(0,0,0,0)
  );

  filter: blur(40px);
  opacity: 0;

  animation: sunriseGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sunriseGlow{
  0%{
    opacity: 0;
    transform: translate(-50%, -40%) scaleX(0.8);
  }
  50%{
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1);
  }
  100%{
    opacity: 0;
    transform: translate(-50%, -60%) scaleX(1.1);
  }
}

.keyword-orbit{
  position: relative;
  width: 100%;
  height: 420px;

}

/* ===============================
   円（キーワード）基本
================================ */
.keyword-circle{
  width: 160px;
  height: 160px;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: #fff;
  text-align: center;

  box-shadow: 
    0 0 30px rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);

  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease,
    opacity 0.6s ease;
}

/* ===============================
   円内グラデーション（確定版）
================================ */

/* 真心 */
.keyword-circle:nth-child(1){
  background-image: linear-gradient(
    90deg,
    rgba(255, 0, 165, 0.9),
    rgba(191, 233, 255, 0.9)
  );
}

/* 調和 */
.keyword-circle:nth-child(2){
  background-image: linear-gradient(
    90deg,
    rgba(65, 164, 253, 0.9),
    rgba(14, 244, 255, 0.9)
  );
}

/* 感謝 */
.keyword-circle:nth-child(3){
  background-image: linear-gradient(
    90deg,
    rgba(253, 219, 146, 0.9),
    rgba(209, 253, 254, 0.9)
  );
}

/* おもてなし */
.keyword-circle:nth-child(4){
  background-image: linear-gradient(
    90deg,
    rgba(89, 248, 57, 0.9),
    rgba(97, 94, 48, 0.9)
  );
}

/* 和の心 */
.keyword-circle:nth-child(5){
  background-image: linear-gradient(
    90deg,
    rgba(103, 126, 250, 0.9),
    rgba(142, 84, 219, 0.9)
  );
}
