/* ===== メインビジュアル ===== */
#visual {
  padding: 0;
  background: #f3f7f8;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  align-items: stretch; /* 高さを揃える */
}

/* 左側画像セクション */
.hero-image-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* 上揃えに変更 */
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 1000px;
  object-fit: contain; /* cover から contain に変更 */
  object-position: top; /* 画像の上部を基準に */
}

.image-caption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  font-size: 11px;
}

/* 右側コンテンツセクション */
.hero-content-section {
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}

.title-logo-container {
  text-align: center;
  flex-shrink: 0;
}

.main-title {
  margin: 0;
}

.main-title img {
  width: 300px;
  height: auto;
  max-width: 100%;
}

/* 情報カード */
.hero-info-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
  justify-content: center;
  margin: 30px 0;
}

.info-card {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 18px 22px;
}

.info-card:hover {
  background: #fafafa;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.card-value {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

/* 特別な強調（価格カード） */
.info-card--price .card-value {
  color: #e74c3c;
  font-size: 18px;
  font-weight: 700;
}

/* CTAボタン */
.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.hero-btn {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.hero-btn--primary {
  background: #e74c3c;
}

.hero-btn--primary:hover {
  background: #c0392b;
}

.hero-btn--secondary {
  background: #3498db;
}

.hero-btn--secondary:hover {
  background: #2980b9;
}

/* ツアーポイント */
.tour-points {
  background: #f8f9fa;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.point-card {
  background: white;
  padding: 25px 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.point-card:hover {
  background: #fafafa;
}

.point-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #3498db);
}

.point-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 12px;
  line-height: 1;
}

.point-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .hero-content-section {
    padding-left: 10px;
  }
  
  .main-title img {
    width: 280px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 60px 20px 40px;
    align-items: center;
  }
  
  .hero-content-section {
    padding-left: 0;
  }
  
  .hero-content {
    min-height: auto;
  }
  
  .hero-image-section {
    align-items: center; /* タブレット以下では中央配置に戻す */
  }
  
  .hero-image-wrapper {
    max-width: 350px;
  }
  
  .hero-image {
    max-height: 500px;
  }
  
  .main-title img {
    width: 250px;
  }
  
  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 40px 15px 30px;
    gap: 25px;
  }
  
  .hero-image-wrapper {
    max-width: 280px;
  }
  
  .hero-image {
    max-height: 400px;
  }
  
  .main-title img {
    width: 220px;
  }
  
  .hero-btn {
    min-width: auto;
    flex: none;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .points-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .info-card {
    padding: 15px 18px;
  }
  
  .card-value {
    font-size: 16px;
  }
  
  .point-card {
    padding: 20px;
  }
  
  .point-number {
    font-size: 2.3rem;
  }
  
  .point-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 30px 15px 20px;
  }
  
  .hero-image-wrapper {
    max-width: 220px;
  }
  
  .hero-image {
    max-height: 320px;
  }
  
  .main-title img {
    width: 240px;
  }
  
  .info-card {
    padding: 12px 15px;
  }
  
  .card-label {
    font-size: 12px;
  }
  
  .card-value {
    font-size: 15px;
  }
  
  .hero-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .point-card {
    padding: 18px;
  }
  
  .point-number {
    font-size: 2rem;
  }
  
  .point-title {
    font-size: 0.95rem;
  }
}

/* 縦向きデバイス専用の調整 */
@media (max-height: 800px) and (orientation: portrait) {
  #visual {
    min-height: auto; /* 固定高さを解除 */
    padding: 20px 0;
  }
  
  .hero-container {
    padding: 70px 20px 30px;
    min-height: auto;
  }
  
  .hero-image {
    max-height: 60vh; /* ビューポート高さの60%に制限 */
  }
  
  .hero-content {
    min-height: auto;
  }
}

/* 非常に小さな画面での調整 */
@media (max-height: 600px) {
  #visual {
    min-height: auto;
    padding: 10px 0;
  }
  
  .hero-container {
    padding: 20px 15px;
  }
  
  .hero-image {
    max-height: 50vh;
  }
}

.sr-only{
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0,0,0,0);
white-space:nowrap;
border:0;
}