/* 싸이월드風ミニルームレイアウト - スマホ対応版 */

.miniroom {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
  background-color: #fefefe;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
}

/* 背景画像 */
.room-bg {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* キャラクター配置 */
.character {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6vw; /* 画面幅に応じて調整 */
}



/* メディアクエリでPC表示時の調整 */
@media screen and (min-width: 768px) {
  .character {
    font-size: 40px;
  }

  .speech-bubble {
    font-size: 16px;
    padding: 10px 20px;
  }

  .avatar {
    width: 80px;
  }
}

