.tour-empty {
  text-align: center;
  padding: 48px 16px;
  color: #666;
  font-size: 16px;
}

/* 募集ツアー列表页 */
.page-main.tour-main {
  background: #fff;
  padding: 0 0 100px;
}

/* Tabs - 下划线宽度与文字等长 */
.tour-tabs {
  display: flex;
  max-width: 966px;
  margin: 0 auto;
  justify-content: flex-start;
  gap: 40px;
}

.tour-tab {
  padding: 20px 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #9a9a9a;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

.tour-tab:hover {
  color: #666;
}

.tour-tab.active {
  color: #212121;
}

.tour-tab.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px; /* 与文字「空港送迎」等宽 */
  height: 3px;
  background: #ff3600;
  border-radius: 2px;
}

.tour-tabs-wrap {
  max-width: 966px;
  margin: 0 auto;
  padding: 0 75px;
}

.tour-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 0;
  max-width: 966px;
  margin-left: auto;
  margin-right: auto;
}

/* ツアー列表 */
.tour-list {
  max-width: 966px;
  margin: 0 auto;
  padding: 32px 75px 48px;
}

.tour-card {
  display: flex;
  align-items: stretch;
  gap: 28px;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
}

.tour-card:last-of-type {
  margin-bottom: 0;
}

.tour-card-img {
  flex-shrink: 0;
  width: 237px;
  height: 194px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
}

.tour-card-content {
  flex: 1;
}

.tour-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #212121;
  margin: 0 0 10px;
  line-height: 1.5;
}

.tour-card-vehicle {
  font-size: 15px;
  color: #737373;
  margin: 0 0 14px;
}

.tour-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tour-card-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #555;
  line-height: 1;
}

.tour-card-meta-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.tour-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.tour-card-price {
  font-size: 24px;
  font-weight: 700;
  color: #c40000;
}

.tour-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #ff3600;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.tour-card-btn:hover {
  background: #e62e00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 54, 0, 0.25);
}

.tour-card-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* 分页 */
.tour-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}

.tour-pagination a,
.tour-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-size: 15px;
  color: #2f2f2f;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tour-pagination a:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

.tour-pagination .tour-page-active {
  background: #201f1d;
  border-color: #201f1d;
  color: #fff;
  border-radius: 8px;
}

/* Prev / Next 按钮：浅灰背景，与页码区分 */
.tour-pagination-prev,
.tour-pagination-next {
  background: #f5f5f5 !important;
  border-color: #e8e8e8 !important;
  color: #555 !important;
}

.tour-pagination-prev:hover,
.tour-pagination-next:hover {
  background: #ebebeb !important;
  border-color: #ddd !important;
  color: #333 !important;
}

@media (max-width: 900px) {
  .tour-card {
    flex-direction: column;
  }

  .tour-card-img {
    width: 100%;
    height: 200px;
  }

  .tour-card-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .tour-tabs-wrap,
  .tour-list {
    padding: 0 24px;
  }

  .tour-list {
    padding: 24px 24px 40px;
  }

  .tour-tab {
    font-size: 16px;
    padding: 16px 12px;
  }
}
