body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}


/* ヒーロー（PC） */
.hero {
  background-image: url('shiosaba.jpg');
  background-size: cover;
  background-position: center 20%;

  height: 70vh;
  min-height: 400px;
  max-height: 700px;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .hero {
    background-image: url('shiosabatate1.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 60vh;
    height: auto;
  }

}

/* 文字（PC・スマホ共通） */
.hero-inner h1,
.hero-inner h2,
.hero-inner p {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* 中央固定 */
.hero-inner {
  width: 100%;
  max-width: 800px;
  text-align: center;
  color: white;
transform: translateY(-20px);

}

/* 文字 */
.hero-inner h1 {
  font-size: 2em;
  margin: 0;
}

.open-title {
  font-size: 1.5em;
  margin-top: 15px;
}

.lead {
  margin-top: 15px;
}

/* ボタン */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: black;
  color: white;
  text-decoration: none;
}

/* セクション */
.section {
  padding: 60px 20px;
  text-align: center;
  margin: 0 auto;
}

/* 交互レイアウト */
.feature {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-text {
  flex: 1;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* 左右反転 */
.feature.reverse {
  flex-direction: row-reverse;
}

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

  .feature.reverse {
    flex-direction: column;
  }
}
.section-wide {
  background: #f5f3ef;
  padding: 60px 20px;
}


.section-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

footer {
  text-align: center;
  padding: 30px 0;
  font-size: 0.9em;
  color: #666;
}