.hoterich-card{
  display:flex;
  gap:14px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  padding:14px;
  background:#fff;
}
.hoterich-card__image{
  flex:0 0 130px;
}
.hoterich-card__image img{
  width:130px;
  height:98px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}
.hoterich-card__body{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.hoterich-title{
  font-size:16px;
  font-weight:800;
  line-height:1.35;
}
.hoterich-title a{
  color:#111;
  text-decoration:none;
}
.hoterich-title a:hover{ text-decoration:underline; }
.hoterich-address{
  font-size:12px;
  color:#666;
}
.hoterich-address__link{
  display:inline-block;
  margin-left:6px;
  padding:1px 8px;
  border-radius:999px;
  background:rgba(0,0,0,.06);
  color:#333;
  font-size:11px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}
.hoterich-address__link:hover{
  background:rgba(0,0,0,.1);
}
.hoterich-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:12px;
  color:#444;
}
.hoterich-meta__review{ color:#f5a623; font-weight:700; }
.hoterich-meta__count{ color:#888; font-weight:600; }
.hoterich-meta__price{ color:#e53e3e; font-weight:800; }
.hoterich-buttons{
  margin-top:6px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:8px;
}
.hoterich-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 8px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  color:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,.12);
}
.hoterich-btn--rakuten{ background:#76ae25; }
.hoterich-btn--jalan{ background:#ff7a15; }
.hoterich-btn--yahoo{ background:#ff0033; }
@media (max-width: 600px){
  .hoterich-card{ flex-direction:column; }
  .hoterich-card__image{ flex:0 0 auto; }
  .hoterich-card__image img{ width:100%; height:180px; }
  .hoterich-buttons{ grid-template-columns:1fr; }
}

