/* ツアーポイントセクション */
.tour-points {
  padding: 20px 0;
  background: linear-gradient(135deg, #faf0e6 0%, #fff8dc 50%, #f5f5dc 100%);
  position: relative;
  overflow: hidden;
}

/* 背景装飾 */
.tour-points::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(220, 38, 127, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 182, 193, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.tour-points .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* セクションヘッダー */
.tour-points .section-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.tour-points .section-title {
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #006B3E;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.tour-points .title-accent {
  color: #ffd700;
  font-size: 0.8em;
  animation: sparkle 2s ease-in-out infinite;
}

.tour-points .section-subtitle {
  font-family: 'Kiwi Maru', serif;
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 25px;
  font-weight: 400;
}

.tour-points .lead {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Kiwi Maru', serif;
}

/* ポイントグリッド - 1列に変更 */
.tour-points .points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

/* ポイントカード */
.tour-points .point-card {
  background: linear-gradient(145deg, #ffffff, #faf8f3);
  border-radius: 25px;
  padding: 25px 30px;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  min-height: 160px;
  width: 100%;
  box-sizing: border-box;
}

/* カードの装飾ボーダー */
.tour-points .point-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ffd700, #006B3E, #ffd700);
  border-radius: 25px 25px 0 0;
}

/* ホバー効果 */
.tour-points .point-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

.tour-points .point-card:focus {
  outline: 3px solid #ffd700;
  outline-offset: 3px;
}

/* ポイント番号 - 左側に移動 */
.tour-points .point-number {
  position: absolute;
  top: 25px;
  left: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #006B3E 0%, #00582d 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(173, 0, 45, 0.3);
  font-family: 'Kaisei Decol', serif;
}

/* コンテンツ */
.tour-points .content {
  position: relative;
  z-index: 2;
  padding-left: 85px;
  padding-top: 0;
}

/* ツアーポイント専用のh3スタイル - より具体的なセレクタで上書き */
section.tour-points .tour-point-title {
  font-size: 1.6rem !important;
  font-family: 'Kaisei Decol', serif;
  font-weight: 600;
  color: #006B3E !important;
  margin-bottom: 12px !important;
  margin-top: 0.5rem !important; /* 上マージンを小さく */
  padding-left: 0 !important; /* 左パディングを削除 */
  border-left: none !important; /* 左ラインを削除 */
  line-height: 1.4;
  position: relative;
}

.tour-points .point-desc {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-family: 'Kiwi Maru', serif;
}

/* 特別なカード効果 */
.tour-points .point-card--featured {
  position: relative;
}

.tour-points .point-card--featured::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #006B3E, #ffd700, #006B3E);
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-points .point-card--featured:hover::after {
  opacity: 0.3;
}

/* アニメーション */
@keyframes sparkle {
  0%, 100% { 
    opacity: 0.7; 
    transform: scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.1); 
  }
}

/* フォントサイズユーティリティ */
.tour-points .fs-60 {
  font-size: 0.6em;
}

.tour-points .fs-80 {
  font-size: 0.8em;
  color: #777;
}

/* 重要日程情報 */
.tour-points .important-dates {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.tour-points .date-item {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f3 100%);
  border-radius: 20px;
  padding: 25px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  min-width: 280px;
  max-width: 100%;
  box-sizing: border-box;
}

/* 出発日のスタイル */
.tour-points .date-item--departure {
  border-color: #006B3E;
}

.tour-points .date-item--departure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #006B3E, #00582d);
  border-radius: 20px 20px 0 0;
}

/* 募集締切のスタイル */
.tour-points .date-item--deadline {
  border-color: #ffd700;
}

.tour-points .date-item--deadline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ffd700, #ffb347);
  border-radius: 20px 20px 0 0;
}

/* ホバー効果 */
.tour-points .date-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-points .date-label {
  display: block;
  font-family: 'Kaisei Decol', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}

.tour-points .date-value {
  display: block;
  font-family: 'Kaisei Decol', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #006B3E;
  line-height: 1.3;
  word-wrap: break-word;
}

.tour-points .date-item--deadline .date-value {
  color: #e67e00;
}

/* 緊急感を演出するアニメーション（締切日のみ） */
.tour-points .date-item--deadline {
  animation: urgentPulse 3s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%, 100% { 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
  }
  50% { 
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); 
  }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .tour-points {
    padding: 80px 0;
  }
  
  .tour-points .points-grid {
    gap: 30px;
    max-width: 700px;
  }
  
  .tour-points .point-card {
    padding: 25px 30px;
  }
  
  section.tour-points .tour-point-title {
    font-size: 1.3rem !important; /* サイズそのまま */
  }
  
  .tour-points .point-desc {
    font-size: 1.2rem;
  }
  
  .tour-points .section-header {
    margin-bottom: 60px;
  }
  
  .tour-points .important-dates {
    gap: 30px;
    padding: 0 15px;
  }
  
  .tour-points .date-item {
    min-width: 250px;
    padding: 22px 30px;
  }
  
  .tour-points .date-label {
    font-size: 1.05rem;
  }
  
  .tour-points .date-value {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .tour-points {
    padding: 20px 0;
  }
  
  .tour-points .points-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: none;
    margin: 0;
  }
  
  .tour-points .point-card {
    padding: 20px 25px;
    border-radius: 20px;
    min-height: auto;
  }
  
  .tour-points .point-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    top: 20px;
    left: 25px;
  }
  
  .tour-points .content {
    padding-left: 80px;
  }
  
  section.tour-points .tour-point-title {
    font-size: 1.3rem !important; /* サイズそのまま */
    margin-bottom: 12px !important;
    margin-top: 0.3rem !important; /* モバイルではさらに小さく */
  }
  
  .tour-points .point-desc {
    font-size: 1rem;
  }
  
  .tour-points .section-header {
    margin-bottom: 40px;
  }
  
  .tour-points .section-subtitle {
    font-size: 1.2rem;
  }
  
  .tour-points .lead {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .tour-points .important-dates {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .tour-points .date-item {
    min-width: auto;
    width: 100%;
    max-width: 100%;
    padding: 20px 25px;
  }
  
  .tour-points .date-label {
    font-size: 1rem;
  }
  
  .tour-points .date-value {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .tour-points .wrap {
    padding: 0 15px;
  }
  
  .tour-points .point-card {
    padding: 18px 20px;
  }
  
  .tour-points .point-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    top: 18px;
    left: 20px;
  }
  
  .tour-points .content {
    padding-left: 70px;
  }
  
  section.tour-points .tour-point-title {
    font-size: 1.3rem !important; /* サイズそのまま */
    margin-top: 0.2rem !important;
  }
  
  .tour-points .point-desc {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .tour-points .important-dates {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .tour-points .date-item {
    padding: 18px 20px;
    border-radius: 15px;
  }
  
  .tour-points .date-label {
    font-size: 0.9rem;
  }
  
  .tour-points .date-value {
    font-size: 1.1rem;
  }
}

/* 超小型デバイス対応 */
@media (max-width: 360px) {
  .tour-points .point-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    top: 15px;
    left: 15px;
  }
  
  .tour-points .content {
    padding-left: 60px;
  }
  
  section.tour-points .tour-point-title {
    font-size: 1.3rem !important; /* サイズそのまま */
  }
  
  .tour-points .important-dates {
    padding: 0 10px;
  }
  
  .tour-points .date-item {
    padding: 15px 18px;
  }
  
  .tour-points .date-label {
    font-size: 0.85rem;
  }
  
  .tour-points .date-value {
    font-size: 1rem;
  }
}