body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(to right, rgba(14, 124, 21, 0.55), rgba(235, 239, 174, 0.55));"
  flex-direction: column; /* 縦方向にレイアウト */
}

.container {
  position: relative;
  text-align: center;
}

.title {
  position: relative;
  z-index: 10; /* タイトルを最前面に表示 */
  margin-top: 0px;
  margin-bottom: 150px; /* アニメーションとタイトルの間隔を広げる */
}

.orbit {
  position: relative;
  width: 200px; /* 円のサイズ */
  height: 200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  animation: spin 35s infinite linear;
}

.icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: 0 100px; /* 回転の中心をアイコンの下部に */
  transform: rotate(calc(360deg / 30 * var(--i))) translateY(-100px); /* 各アイコンを円上に配置 */
  transition: transform 0.3s ease;
}

.icon img {
  display: block;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.speech-bubble {
  position: relative;
  display: inline-block;
  background-color: #f0f0f0;
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 300px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Adjust based on the size of the triangle */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f0f0f0; /* Match the bubble's color */
}
.s-ft{
  font-size: 10px;
}