/* ツアーポイントセクション */
#tour-point {
  padding: 60px 0;
  background: #fafafa;
  position: relative;
}

#tour-point .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクションヘッダー */
.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.title-accent {
  color: #a0522d;
  font-size: 0.8em;
}

/* ポイントグリッド - 1列 */
.points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px; /* 25px → 15px に縮小 */
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ポイントカード - コンパクト版 */
.point-card {
  background: #ffffff;
  border-radius: 8px; /* 12px → 8px に縮小 */
  padding: 1rem 1.5rem; /* 上下1rem、左右1.5rem */
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08); /* シャドウを軽く */
  border: 1px solid #b8860b;
  position: relative;
  display: block;
  /* min-heightを削除して内容に応じた高さに */
}

/* ポイント番号 - 小さく */
.point-number {
  position: absolute;
  top: -8px; /* -12px → -8px */
  left:  15px; /* 20px → 15px */
  width: 36px; /* 48px → 36px */
  height: 36px; /* 48px → 36px */
  background: #2c3e50;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem; /* 1.2rem → 1rem */
  border: 2px solid #b8860b;
}

/* コンテンツ - パディング削除 */
.content {
  padding-top: 8px; /* 15px → 8px */
}

.point-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem; /* 1.2rem → 1.1rem */
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px; /* 12px → 6px */
  line-height: 1.3;
}

.point-desc {
  font-size: 0.85rem; /* 0.9rem → 0.85rem */
  color: #555;
  line-height: 1.4; /* 1.6 → 1.4 */
  margin: 0;
}

.point-desc small {
  color: #777;
  font-size: 0.75em; /* 0.8em → 0.75em */
  line-height: 1.3;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  #tour-point {
    padding: 40px 0;
  }
  
  .points-grid {
    gap: 12px; /* さらに縮小 */
  }
  
  .point-card {
    padding: 0.8rem 1.2rem; /* モバイルでさらに縮小 */
  }
  
  .point-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    top: -6px;
    right: 12px;
  }
  
  .point-title {
    font-size: 1rem;
  }
  
  .point-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  #tour-point .wrap {
    padding: 0 15px;
  }
  
  .point-card {
    padding: 0.7rem 1rem; /* さらに縮小 */
  }
  
  .point-title {
    font-size: 0.95rem;
  }
  
  .point-desc {
    font-size: 0.75rem;
  }

  .point-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}