/* 記事ブロック */
article {
  background: #fff0f5;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* ホテルの画像 */
article img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}

/* ホテル名 */
article h2 {
  font-size: 2rem;
  color: #ff69b4;
  margin: 0 0 1rem 0;
  text-align: center;
}

/* 説明・口コミ */
article > p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* 最初のp（説明文など）だけちょっと太く */
article > p:first-of-type {
  font-weight: bold;
}

/* 住所・評価・価格のまとまり */
article div {
  background: #fffafc;
  border: 0.0625rem dashed #ffb6c1; /* 1px -> 0.0625rem */
  padding: 1rem;
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
}

/* 地図リンク */
article div a {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  color: #0077cc;
  text-decoration: underline;
}

/* 最後のp（価格）だけピンク強調 */
article div p:last-of-type {
  color: #e91e63;
  font-weight: bold;
}

/* 楽天トラベルへのリンク（目立たせる！） */
article > p:last-of-type a {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ff69b4, #ffb6c1);
  color: white;
  padding: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 0.5rem 1rem rgba(255, 105, 180, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* ホバーでふわっと浮く */
article > p:last-of-type a:hover {
  transform: scale(1.05);
  box-shadow: 0 0.75rem 1.5rem rgba(255, 105, 180, 0.6);
}
