@charset "utf-8";
/* LPページ専用CSS */

/* 共通 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヒーローセクション */
.hero {
  padding: 100px 20px 80px;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 85, 46, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 77, 160, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #f9f9f6 0%, #ffffff 50%, #f5f8f5 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-category {
  display: block;
  font-size: 1rem;
  color: #00552E;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-title {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-subtitle {
  display: block;
  font-size: 1.3rem;
  color: #666;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-top: 20px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* セクション共通 */
section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 60px;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00552E, #004DA0);
  border-radius: 2px;
}

/* ツアーセクション */
.tours {
  background: #fff;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ツアーカード（縦型・高さ統一） */
.tour-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* 高さを統一 */
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* 画像部分 */
.tour-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0; /* 画像部分は固定サイズ */
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* コンテンツ部分（高さを揃える） */
.tour-content {
  padding: 30px 25px;
  flex: 1; /* 残りのスペースを均等に分配 */
  display: flex;
  flex-direction: column;
}

.tour-content h3 {
  margin-bottom: 20px;
  flex-shrink: 0; /* タイトル部分は固定 */
}

.tour-subtitle {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.tour-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #333;
  line-height: 1.5;
}

.tour-day{
	font-weight: normal;
	line-height: 1.5;
	margin-bottom: 12px;
}

.tour-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  flex: 1; /* 説明文で高さを調整 */
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  flex-shrink: 0; /* ハイライト部分は固定 */
}

.highlight {
  background: #f8f9fa;
  color: #555;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e9ecef;
}

.tour-cta {
  flex-shrink: 0; /* ボタン部分は固定 */
  text-align: center;
  margin-top: 20px;
}

.cta-button {
  display: inline-block; /* blockからinline-blockに変更 */
  width: auto; /* 100%からautoに変更 */
  background: linear-gradient(135deg, #00552E 0%, #004DA0 100%);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px; /* 左右のpaddingを少し増やす */
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 85, 46, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 85, 46, 0.4);
}

/* ツアー別色分け */
.tour-mindfulness .tour-badge {
  background: linear-gradient(135deg, #00552E, #004DA0);
}

.tour-mindfulness .cta-button {
  background: linear-gradient(135deg, #00552E 0%, #004DA0 100%);
}

.tour-mountain .tour-badge {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
}

.tour-mountain .cta-button {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.tour-mountain .cta-button:hover {
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.tour-kabuki .tour-badge {
  background: linear-gradient(135deg, #8B0000, #DC143C);
}

.tour-kabuki .cta-button {
  background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}

.tour-kabuki .cta-button:hover {
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

/* お問合わせ */
.contact {
  background: #f8f9fa;
}

.contact-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 20px;
border: none;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .tour-image {
    height: 200px;
  }
  
  .tour-content {
    padding: 25px 20px;
  }
  
  .tour-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 100px 15px 40px;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  section h2 {
    font-size: 1.6rem;
  }
  
  .tour-content {
    padding: 20px 15px;
  }
  
  .tour-title {
    font-size: 1.1rem;
  }
  
  .tour-description {
    font-size: 0.9rem;
  }
}

/* フッター */
footer {
  background: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  margin: 0 5px;
}

.footer-inner a:hover {
  opacity: 1;
}