@charset "utf-8";
/* ========================================
   ツアーポイントセクション用CSS - point.css（全文）
   要望反映：
   - h3を小さく調整
   - PC(1025px以上)は3カラム固定
   - アイコン配色はそのまま（色は変更なし）
======================================== */

/* セクション全体 */
.point-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9));
  border: 2px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 15px;
  padding: 3rem 2rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.point-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent), var(--accent2), #FF69B4, var(--accent));
  border-radius: 15px;
  z-index: -1;
  opacity: 0.3;
  animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.point-container {
  position: relative;
  z-index: 1;
}

/* ヘッダー */
.point-header {
  text-align: center;
  margin-bottom: 3rem;
}

.point-title {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 900;
  text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  border-left: none !important;
  padding-left: 0 !important;
}

.point-title .point-icon {
  font-size: 1.5rem;
  color: var(--accent2);
  text-shadow: 0 0 15px rgba(var(--accent2-rgb), 0.6);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* グリッド */
.point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* PC時は3カラム固定 */
@media (min-width: 1025px){
  .point-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* カード */
.point-item {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 12px;

  /* 余白を微調整（h3小さくした分、間延びしないように） */
  padding: 1.6rem;

  display: flex;
  align-items: flex-start;
  gap: 1.2rem;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.point-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.1), transparent);
  transition: left 0.5s ease;
}

.point-item:hover::before { left: 100%; }

.point-item:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.6);
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.2);
}

/* ハイライト */
.point-item.highlight {
  border: 2px solid var(--accent2);
  background: linear-gradient(135deg, rgba(var(--accent2-rgb), 0.1), rgba(0, 0, 0, 0.9));
}

.point-item.highlight:hover {
  border-color: var(--accent2);
  box-shadow: 0 10px 30px rgba(var(--accent2-rgb), 0.3);
}

/* アイコン */
.point-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #00FF88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
}

.point-item.highlight .point-icon-wrapper {
  background: linear-gradient(135deg, var(--accent2), #FFD700);
  box-shadow: 0 0 20px rgba(var(--accent2-rgb), 0.4);
}

.point-icon-wrapper i {
  font-size: 1.35rem;
  color: #000000;
}

/* コンテンツ */
.point-content {
  flex: 1;
  text-align: center;
  margin: 0 auto;
}

/* PCは読みやすく左寄せ（必要なければ削除OK） */
@media (min-width: 1025px){
  .point-content{ text-align: left; }
}

/* h3（要望：小さく） */
.point-content h3 {
  font-size: 1.25rem;     /* PC基準で小さめ */
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 0.6rem;
  font-weight: 700;
  border-left: none !important;
  padding-left: 0 !important;
  text-shadow: none !important;
}

.point-item.highlight .point-content h3 {
  color: var(--accent2);
  text-shadow: 0 0 10px rgba(var(--accent2-rgb), 0.5);
}

.point-content p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.point-content .note {
  font-size: 0.85em;
  color: #FF69B4;
  font-style: italic;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .point-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  /* h3を少しだけ下げる */
  .point-content h3 { font-size: 1.15rem; }
}

@media (max-width: 768px) {
  .point-section {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  .point-title {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .point-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .point-item {
    padding: 1.5rem;
    gap: 1rem;
  }

  .point-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .point-icon-wrapper i {
    font-size: 1.2rem;
  }

  .point-content h3 {
    font-size: 1.05rem;  /* スマホ基準でさらに小さく */
    text-align: center;
  }
}

@media (max-width: 480px) {
  .point-section { padding: 1.5rem 1rem; }
  .point-title { font-size: 1.4rem; }

  .point-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center !important;
    gap: 1rem;
  }

  .point-icon-wrapper { align-self: center; }
}

@media (max-width: 360px) {
  .point-item { padding: 0.95rem; }
}

/* 表示アニメーション */
.point-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.point-item:nth-child(1) { animation-delay: 0.1s; }
.point-item:nth-child(2) { animation-delay: 0.2s; }
.point-item:nth-child(3) { animation-delay: 0.3s; }
.point-item:nth-child(4) { animation-delay: 0.4s; }
.point-item:nth-child(5) { animation-delay: 0.5s; }
.point-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
