/**
 * morinon.css
 * モリのん専用スタイル
 * 
 * 使い方：
 * - .character-morinon：投稿カードにアイコン追加
 * - .speech-morinon：吹き出しスタイル
 * - .morinon-icon：タイトル横のアイコン調整
 * - レスポンシブも最低限対応済み
 */

/* ▼ 投稿カード：モリのん用装飾ベース */
.character-morinon {
  border: 2px solid #cce9da;
  background-color: #f7fffb;
  padding: 16px;
  border-radius: 12px;
  position: relative;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px rgba(0, 128, 96, 0.1);
}

/* ▼ アイコン：タイトル横配置 */
.morinon-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 50%;
  object-fit: cover;
}

/* ▼ タイトル（flexで整列） */
.morinon-title {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #247f5c;
  margin-bottom: 12px;
}

/* ▼ 吹き出し本体 */
.speech-morinon {
  position: relative;
  background: #e6f8f0;
  padding: 12px 16px;
  margin-top: 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #2a5a4b;
  max-width: 90%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

/* ▼ 吹き出しの三角形部分 */
.speech-morinon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  border: 10px solid transparent;
  border-bottom-color: #e6f8f0;
}

/* ▼ 小画面調整 */
@media (max-width: 600px) {
  .morinon-title {
    font-size: 1.1rem;
  }

  .morinon-icon {
    width: 24px;
    height: 24px;
  }

  .speech-morinon {
    font-size: 13px;
    padding: 10px 14px;
  }

  .speech-morinon::before {
    left: 14px;
  }
}