.bubble-section {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}

.bubble-container {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

/* 各行 */
.bubble-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bubble-row{
  margin-top: 2.5rem;
}
.bubble-row:first-child{
  margin-top: 0rem;
}

/* 左側画像 */
.bubble-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex: 0 0 auto;
}

/* 吹き出しテキスト */
.bubble-text {
  position: relative;
  background-color: #ffffff; /* 背景色白 */
  padding: 1rem;
  border-radius: 1rem;
  flex: 1;                   /* 残りの横幅を自動で使用 */
}

/* 吹き出しの三角形 */
.bubble-text::before {
  content: "";
  position: absolute;
  top: 50%;             
  left: -10px;           
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
}

/* レスポンシブ対応 */
@media (max-width: 920px) {
  .bubble-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .bubble-image {
    order: 2; /* 画像を下に */
    margin-top: 0.5rem;
  }

  .bubble-text {
    order: 1; /* 吹き出しを上に */
    width: 100%; /* 横幅は100%に */
  }

  .bubble-text::before {
    left: 50%; 
    transform: translateX(-50%);
    top: auto;
    bottom: -10px;        /* 下向きに */
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    border-left: 10px solid transparent;
    border-bottom: none;
