
.triple-circle {
  position: relative;
  width: min(90vw, 500px);
  aspect-ratio: 1 / 1;
  margin: 60px auto;
}

/* 共通設定 */
.circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #454444;
  font-weight: bold;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  transition: transform 0.3s ease;
  ;
}

.circle:hover {
  transform: scale(1.05);
}

/* 上の丸（小さめ） */
.circle.top {
  width: 50%;
  aspect-ratio: 1 / 1;
  top: 7%;                    /* 少し下げることで接点を自然に */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right,
    rgba(75, 177, 250, 0.95) 0%,
    rgba(244, 243, 243, 0.95) 50%,
    rgba(245, 161, 5, 0.95) 100%);
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  z-index: 3;    /* 上の丸を手前に出す（かぶさり効果） */
 mix-blend-mode: multiply;  /* ← 追加 */
  opacity: 1;              /* ← 少し透過させると自然 */
}

/* 左下の丸（少し離す） */
.circle.left {
  width: 50%;
  aspect-ratio: 1 / 1;
  bottom: 4%;
  left: 45%;
  background: linear-gradient(145deg, #f5a105, #e07800);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  z-index: 2;
  mix-blend-mode: multiply;  /* ← 追加 */
  opacity: 0.9;              /* ← 少し透過させると自然 */
}


/* 右下の丸（少し離す） */
.circle.right {
  width: 50%;
  aspect-ratio: 1 / 1;
  bottom: 4%;
  right: 45%;
  background: linear-gradient(145deg,#4bb1fa, #357fd3);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  z-index: 2;
  mix-blend-mode: multiply;  /* ← 追加 */
  opacity: 0.9;              /* ← 少し透過させると自然 */
}

/* 円内のテキスト */
.circle p {
  margin: 0;
  padding: 0 8%;
}



 
 
/* 見出し */
.paragraph-1 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #023b5a;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.paragraph-2 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #023b5a;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.hub-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 50vh;
  margin: 0 auto;         /* 横方向の余白をリセットし中央寄せ */
  padding: 0 5%;          /* 画面端に少し余白を確保 */
  text-align: center;
  max-width: 1200px;      /* 全体幅の上限を設定（調整可） */
  box-sizing: border-box; /* パディングを含めて幅計算 */
}

/* スマホ版 */
@media (max-width: 800px) {
  .triple-circle {
    width: 90vw; /* 大きさだけ調整（重なりには影響しない） */
  }

  /* ← 円の位置・サイズはPCと同じにする */
  .circle.top,
  .circle.left,
  .circle.right {
    width: 50%;
    aspect-ratio: 1 / 1;
  }
  /* スマホでは <br> を消す */
  br {
    display: none;
  }
}


