/* ============================================================
   Beauty Markers & Highlights — Re:Body 強調装飾
   ============================================================ */

/* 蛍光ペン風マーカー(ピンク) */
.beauty-marker {
  background: linear-gradient(transparent 58%, rgba(245,215,210,0.85) 58%);
  padding: 0 0.1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* 蛍光ペン風マーカー(ローズ — より濃い強調) */
.beauty-marker-rose {
  background: linear-gradient(transparent 58%, rgba(232,114,154,0.25) 58%);
  padding: 0 0.1em;
}

/* 太い下線(アクセントカラー) */
.beauty-underline {
  background: linear-gradient(transparent 90%, rgba(232,114,154,0.7) 90%);
  padding-bottom: 2px;
}

/* 手書き風下線(SVG) */
.beauty-underline-wave {
  position: relative;
  display: inline-block;
}
.beauty-underline-wave::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M5,8 Q50,2 100,8 T195,8' stroke='%23E8729A' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* 囲み枠 */
.beauty-box {
  border: 2px solid rgba(232,114,154,0.5);
  border-radius: 4px;
  padding: 0 var(--space-2);
}

/* 圏点(重要語) */
.beauty-dots {
  text-emphasis: filled circle;
  text-emphasis-color: #E8729A;
  -webkit-text-emphasis: filled circle;
  -webkit-text-emphasis-color: #E8729A;
}

/* 吹き出し */
.beauty-bubble {
  position: relative;
  background: #F5D7D2;
  border-radius: 16px 16px 16px 4px;
  padding: var(--space-4) var(--space-6);
}
.beauty-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 0; height: 0;
  border: 10px solid transparent;
  border-top-color: #F5D7D2;
  border-bottom: 0;
}

/* 大きな引用符 */
.beauty-quote::before {
  content: "\201C";
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 4rem;
  color: #E8729A;
  line-height: 0.8;
  opacity: 0.4;
  display: block;
  margin-bottom: -1rem;
}

/* リボン見出し */
.beauty-ribbon-label {
  display: inline-block;
  background: #E8729A;
  color: #fff;
  font-size: var(--text-xs, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.25rem 1.5rem;
  position: relative;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%, 12px 50%);
}

/* ラベル・バッジ */
.beauty-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #F5D7D2;
  color: #C0527A;
  font-size: var(--text-xs, 0.75rem);
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}
