/* 全体 */
body {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  background-color: #f6f1e9;
  color: #5a4a42;
}

/* ヘッダー */
.hero {
  position: relative;
  height: 100vh;
  background-color: #efe4d6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
}

/* ギャラリーリンク */
.gallery-link {
  position: absolute;
  top: 30px;
  right: 40px;
  padding: 12px 26px;
  background-color: #e6d7c3;
  color: #5a4a42;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95rem;
}

/* メイン */
main {
  padding: 80px 10%;
}

/* スポット */
.spot {
  display: flex;
  gap: 40px;
  margin-bottom: 120px;
  align-items: center;
}

/* 写真 */
.photo {
  width: 260px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ddd0c2;
  flex-shrink: 0;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト */
.text h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.text p {
  line-height: 1.9;
}

/* フェードイン（初期状態だけCSSで定義） */
.fade-in {
  opacity: 0;
}

/* スマホ */
@media (max-width: 768px) {
  .spot {
    flex-direction: column;
    text-align: center;
  }
}
