@charset "UTF-8";
/* カエレバ風商品ボックス（完全版） */
.kaereba-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  background-color: #fff;
  display: block;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

/* PC表示：左右レイアウト */
@media (min-width: 601px) {
  .kaereba-box {
    display: flex;
    align-items: center;
  }
  .kaereba-image {
    width: 150px;
    flex-shrink: 0;
    margin-right: 15px;
    text-align: center;
  }
  .kaereba-info {
    flex: 1;
  }
  .kaereba-buttons {
    display: flex;
    gap: 8px;
  }
  .kaereba-btn {
    flex: 1;
  }
}

/* 共通タイトル・画像・ボタン基本スタイル */
.kaereba-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.kaereba-title {
  font-weight: bold;
  font-size: 1.05em;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
}
.kaereba-btn {
  display: block;
  width: 100%;
  padding: 8px 4px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 0.75em;
  border-radius: 4px;
  box-sizing: border-box;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.kaereba-btn:hover {
  opacity: 0.85;
}

/* 各ショップのカラー */
.kaereba-btn.amazon { background-color: #f08804; }
.kaereba-btn.rakuten { background-color: #bf0000; }
.kaereba-btn.yahoo { background-color: #ff0033; }

/* スマホ表示：縦並び */
@media (max-width: 600px) {
  .kaereba-image {
    width: 100%;
    margin: 0 0 12px 0;
    text-align: center;
  }
  .kaereba-info {
    width: 100%;
  }
  .kaereba-buttons {
    display: block !important;
    width: 100%;
  }
  .kaereba-btn {
    display: block !important;
    width: 100% !important;
    margin-bottom: 6px !important;
  }
  .kaereba-btn:last-child {
    margin-bottom: 0 !important;
  }
}