.bubble-subtitle {
  color: #9c500d; /* やわらかいオレンジ（濃度を下げて見やすく） */
  font-size: 1.8em;
  text-align: left;
  margin: 60px 0 20px 0;
  padding-bottom: 10px;
  position: relative;
  font-weight: bold;
  /* max-width: 650px; */
}

.bubble-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, #ffd1a0, #ffecdf);
}

.bubble-wrapper {
  list-style: none;
  padding: 0;
  /* width: 100%; */
  /* max-width: 1000px; */
  margin: 0;
  margin-left: 10px;
}

.bubble-wrapper p {
  margin: 0;
  display: inline-block;
  background: linear-gradient(to right, #ffd1a0, #ffe1ba);
  color: #2b150c;
  padding: 4px 10px;
  border-radius: 20px;
  /* font-size: 0.92em; */
  font-weight: bold;
  margin-bottom: 12px;
  /* box-shadow: 0 2px 5px rgba(255, 165, 100, 0.18); */
  position: absolute;
  top: -18px;
  left: 18px;
  z-index: 3;
  border: 1px solid #ffe0c0;
  letter-spacing: 0.03em;
  font-size: 1rem;
}

/* 吹き出しデザイン（全て左揃え） */
.bubble-item {
  background: #fcf9f6; /* ほんのりオレンジの薄いベージュ */
  /* border-radius: 16px 16px 16px 6px; */
  border-radius: 10px;
  padding: 12px 18px;
  margin: 15px 0;
  position: relative;
  /* max-width: 85%; */
  /* box-shadow: 0 3px 10px rgba(255, 165, 100, 0.08); */
  color: #2b150c; /* 濃い茶色で読みやすく */
  font-size: 1.02em;
  line-height: 1.6;
  border: 1px solid #ffe0c0;
  transition: all 0.2s ease;
  margin-bottom: 40px;

  padding-top: 24px;
}

/* 左側の吹き出し先 */
.bubble-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11px;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  /* border: 2px solid #ffe0c0; */
  border-right: 10px solid #ffe0c0;
  z-index: 2;

  /* top: 28px; */
}
