@charset "utf-8";
/* CSS Document */

/* スタイリッシュ ツアーポイントセクション */
.retro-points {
  width: 100%;
  padding: 40px 0;
  background: #f8f9fa;
  position: relative;
  margin-top: -20px;
}

.tour-points {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* タイトル */
.tp-title.retro-section-title {
  font-size: 2rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--retro-primary) !important;
  font-family: "Hiragino Sans", sans-serif;
  position: relative;
  padding: 0;
}

/* グリッドレイアウト - 1列縦並び */
.retro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* カード */
.retro-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.retro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--retro-primary);
}

.retro-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* カード番号 */
.card-number {
  position: absolute;
  top: -15px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: var(--retro-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  border: 3px solid white;
  box-shadow: 0 6px 20px rgba(0, 61, 130, 0.4);
  z-index: 2;
}

/* カードタイトル */
.retro-card .tp-card-title {
  margin: 20px 0 20px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--retro-primary) !important;
  text-align: center;
  line-height: 1.8;
  font-family: "Hiragino Sans", sans-serif;
  background: none;
  padding: 0;
}

/* VIPカード */
.retro-card.featured {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  position: relative;
}

.retro-card.featured::before {
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.retro-card.featured .card-number {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
}

/* カード本文 */
.retro-card .tp-card-body {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
}

/* 注記 */
.retro-card .note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 15px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #db4c2f;
}

/* 区切り線 */
.retro-divider {
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--retro-primary), transparent);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* 白抜き見出し */
.tp-card-midashi {
  background-color: var(--retro-primary);
  font-weight: bold;
  color: #FFFFFF !important;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* VIPプラングリッド */
.vip-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 20px 0;
}

.vip-plan-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ffd700;
  text-align: center;
}

.vip-plan-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--retro-primary);
  margin: 0 0 8px 0;
}

.vip-plan-desc {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* VIP特典 */
.vip-benefits {
  margin: 20px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.benefits-left,
.benefits-right {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-left li,
.benefits-right li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.4;
}

.benefits-left li::before,
.benefits-right li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd700;
  font-weight: bold;
}

/* アニメーション */
@keyframes retro-card-appear {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.retro-card {
  animation: retro-card-appear 0.6s ease-out forwards;
}

.retro-card:nth-child(1) { animation-delay: 0.1s; }
.retro-card:nth-child(2) { animation-delay: 0.15s; }
.retro-card:nth-child(3) { animation-delay: 0.2s; }
.retro-card:nth-child(4) { animation-delay: 0.25s; }

/* レスポンシブ */
@media (max-width: 768px) {
  .vip-plans-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .vip-plan-item {
    padding: 12px;
  }
  
  .vip-plan-title {
    font-size: 1rem;
  }
  
  .vip-plan-desc {
    font-size: 0.9rem;
  }
  
  .benefits-left li,
  .benefits-right li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .retro-grid {
    padding: 0 10px;
    gap: 12px;
  }
  
  .retro-card {
    padding: 18px;
  }
  
  .card-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    top: -8px;
    left: 18px;
  }
  
  .retro-card .tp-card-title {
    font-size: 1.1rem;
  }
}