@charset "utf-8";
/* 全体 */
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #222;
  line-height: 1.8;
}

/* ファーストビュー */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;              /* PCではしっかり見せる */
  min-height: 500px;
  background-image: url("/bus/img/hero_winter_scenery_japan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

/* 白文字を読みやすくするための暗幕 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* 中身 */
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* 見出し */
.hero h1 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/* リード文 */
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* 導入文 */
.intro {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  color: #555;
}

/* ツアー一覧 */
.tours {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.tour {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}

.tour-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 6px;
}

.tour-image {
  width: 420px;
  flex-shrink: 0;
}


.tour-text h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.tour-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.tour-point {
  color: #555;
  margin-bottom: 10px;
}

.tour-data {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 10px 26px;
  border: 1px solid #222;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #222;
  color: #fff;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .tour {
    flex-direction: column;
  }

  .tour-image img {
    max-width: 100%;
  }
	
.tour-item {
    flex-direction: column;
  }
	
}
