.hotel-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.hotel-table th {
  background: #f8f9fa;
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
  font-weight: 600;
}

.hotel-table td {
  padding: 0;
  border-bottom: 1px solid #dee2e6;
  height: 120px;
}

.hotel-table tr:hover .hotel-link {
  opacity: 0.9;
}

.hotel-link {
  display: block;
  padding: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: opacity 0.5s ease;
  height: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hotel-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
  transition: background 0.5s ease;
}

.hotel-link:hover::before {
  background: rgba(0, 0, 0, 0.8);
}

.hotel-name {
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* 標準プロパティ */
  word-break: break-word;
}

.detail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 12px;
  color: #007bff;
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease;
}

.detail-link:hover {
  background: #D96932;
  color: #fff;
}

.category-section {
  margin: 40px 0;
}