/* ============================================================
   Beauty Circles & Badges — Re:Body 円形装飾
   ============================================================ */

/* 数値バッジ(大) */
.beauty-num-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8729A 0%, #C0527A 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(232,114,154,0.35);
}
.beauty-num-badge .num-value {
  font-size: 2rem;
  line-height: 1;
}
.beauty-num-badge .num-unit {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

/* ステップ番号バッジ(小) */
.beauty-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #E8729A;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(232,114,154,0.3);
}

/* アウトライン円(ソフト) */
.beauty-circle-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E8729A;
  border-radius: 50%;
  color: #E8729A;
  flex-shrink: 0;
}
.beauty-circle-outline-sm { width: 40px; height: 40px; }
.beauty-circle-outline-md { width: 64px; height: 64px; }
.beauty-circle-outline-lg { width: 96px; height: 96px; }

/* 二重円フレーム */
.beauty-double-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.beauty-double-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(232,114,154,0.3);
}
.beauty-double-circle::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed rgba(232,114,154,0.2);
}

/* 背景装飾円(大型・薄い) */
.beauty-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,114,154,0.12);
  pointer-events: none;
  z-index: 0;
}
.beauty-bg-circle-xl {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.beauty-bg-circle-lg {
  width: 400px;
  height: 400px;
}

/* キャンペーンバッジ(回転テキスト用) */
.beauty-campaign-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8729A 0%, #C0527A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(232,114,154,0.4);
  animation: badge-pulse 2.5s ease-in-out infinite;
}
.beauty-campaign-badge .badge-main {
  font-size: 1rem;
  line-height: 1.1;
}
.beauty-campaign-badge .badge-sub {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,114,154,0.4); transform: scale(1); }
  50%       { box-shadow: 0 4px 30px rgba(232,114,154,0.6); transform: scale(1.04); }
}

/* アイコン円形背景 */
.beauty-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F5D7D2;
  color: #E8729A;
  flex-shrink: 0;
}
.beauty-icon-circle-sm {
  width: 48px;
  height: 48px;
}

@media (max-width: 768px) {
  .beauty-bg-circle-xl { width: 300px; height: 300px; }
  .beauty-bg-circle-lg { width: 200px; height: 200px; }
}
