/* モバイル用修正CSS */
@media (max-width: 768px) {
  /* 吹き出しコンテナのflex方向を変更 */
  .speech-bubble-container,
  div[style*="display: flex"][style*="align-items: center"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    max-width: 95% !important;
    margin: 20px auto !important;
  }
  
  /* 吹き出し本体のスタイル */
  .speech-bubble,
  div[style*="background: white"][style*="border: 1px solid"] {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 15px !important;
    position: relative !important;
  }
  
  /* 人物アイコンのスタイル */
  .person-icon,
  div[style*="width: 70px"][style*="height: 70px"] {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
  }
  
  /* 吹き出し内のテキストサイズ調整 - 削除して元のサイズを使用 */
  
  /* また、この診断は セクションを中央揃え */
  .benefit-list {
    text-align: center !important;
  }
  
  .benefit-list p,
  .benefit-item,
  p[style*="お金が戻るか"],
  p[style*="債務整理"],
  p[style*="誰に相談"] {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .recommendation {
    text-align: center !important;
  }
  
  /* 吹き出しのレイアウト修正 */
  .speech-bubble-container {
    display: block !important;
    max-width: 90% !important;
    margin: 2rem auto !important;
  }
  
  .speech-bubble {
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    padding: 2rem !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
  }
  
  .speech-bubble p {
    margin: 0 !important;
    font-size: 1.8rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
    text-align: left !important;
  }
  
  .speech-bubble-title {
    font-size: 2rem !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
    text-align: left !important;
  }
  
  .speech-bubble-subtitle {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
    text-align: left !important;
  }
  
  .person-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .person-icon img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }
  
  /* 診断後は〜 のテキストサイズを大きく */
  .example__desc p:first-child {
    font-size: 2.8rem !important;
  }
}