/* ===============================
   楽天ホテルカード 共通スタイル
   =============================== */
.rakuten-hotel-card {
  width: 90%;
  max-width: 700px;
  margin: 20px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 16px;
  line-height: 1.6;
  color: #333;
  font-family: "Segoe UI", sans-serif;
}

/* ホテル名 */
.rakuten-hotel-header {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}
.rakuten-hotel-header a {
  text-decoration: none;
  color: #0073e6;
}
.rakuten-hotel-header a:hover {
  text-decoration: underline;
}

/* テーブル */
.rakuten-hotel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 12px;
}
.rakuten-hotel-table th,
.rakuten-hotel-table td {
  padding: 6px 8px;
  border: 1px solid #ddd;
  text-align: left;
}
.rakuten-hotel-table th {
  background: #f0f8ff;
  width: 20%;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}
.rakuten-hotel-table td {
  background: #fff;
}

/* 画像レイアウト */
.rakuten-hotel-images {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}
.rakuten-hotel-images.three-images .rakuten-img-box {
  width: calc((100% - 24px) / 3);
}
.rakuten-hotel-images.two-images {
  justify-content: center;
}
.rakuten-hotel-images.two-images .rakuten-img-box {
  width: calc((100% - 12px) / 2);
}
.rakuten-img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rakuten-img-box a {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;   /* 画像比率を一定に */
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.rakuten-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rakuten-caption {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
  text-align: center;
}

/* ボタン部分（グラデーション） */
.rakuten-link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}
.rakuten-link-buttons a {
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(45deg, #ff4b2b, #ff8c00);
  font-size: 13px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: 0.2s;
}
.rakuten-link-buttons a:hover {
  opacity: 0.85;
}

/* ===============================
   スマホ用調整
   =============================== */
@media (max-width: 768px) {
  .rakuten-hotel-card {
    width: 95%;
    padding: 12px;
  }
  .rakuten-hotel-header {
    font-size: 20px;
  }
  .rakuten-hotel-images {
    flex-direction: column;
    align-items: center;
  }
  .rakuten-hotel-images .rakuten-img-box {
    width: 100% !important;
  }
  .rakuten-img-box a {
    aspect-ratio: 16/9;   /* スマホは横長にして迫力を出す */
  }
  .rakuten-hotel-table th,
  .rakuten-hotel-table td {
    font-size: 12px;
    padding: 4px;
  }
  .rakuten-link-buttons a {
    font-size: 12px;
    padding: 5px 12px;
  }
}