body {
  font-family: 'Noto Sans JP', 'YuGothic', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', sans-serif;
  /* padding: 0; */
  margin: 0;
  color: #222;
  line-height: 1.7;
  background-color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin: 0 0 48px;
}

/* ===== Hero ===== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-image: url("../images/ferment-craft/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-label {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 36px;
  font-weight: bold;
}

.hero-title-main {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  line-height: 1.3;
}

.hero-down {
  position: absolute;
  bottom: 40px;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
}

/* ===== About section ===== */

.about {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.about-images {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-images img {
  width: 60%;
  height: 200px;
  height: auto;
  object-fit: cover;
}

/* 1枚目（about-01）は左寄せ */
.about-images img:first-child {
  align-self: flex-start;
}

/* 2枚目（about-02）は右寄せ */
.about-images img:last-child {
  align-self: flex-end;
}

.about-text {
  flex: 1 1 55%;
  font-size: 0.95rem;
}

.about-heading {
  font-size: 2.2rem;
  line-height: 1.5;
  margin: 0 0 24px;
}

.about-heading span {
  /* font-size: 1.7rem; */
  font-weight: 700;
}

/* ===== How to Enjoy ===== */

.enjoy {
  max-width: 1120px;
  margin: 0 auto;
}

.enjoy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.enjoy-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}

.enjoy-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enjoy-card-title {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 12px;
  text-align: center;
}

.enjoy-card-text {
  font-size: 0.85rem;
  margin: 0;
}

/* ===== Program link ===== */

.program {
  padding: 60px 20px 100px;
  text-align: center;
}

.program-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px 30px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: #fff;
  background-image: url("../images/ferment-craft/button-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.program-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

/* ===== Responsive ===== */

@media (max-width: 960px) {
  .about {
    flex-direction: column;
  }

  .about-images,
  .about-text {
    flex-basis: auto;
  }

  .enjoy-grid {
    grid-template-columns: 1fr;
  }

  .hero-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 16px;
  }

  .hero-label {
    font-size: 0.85rem;
  }

  .hero-title-main {
    font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  }

  .hero-down {
    font-size: 0.85rem;
    bottom: 124px;
  }

  .about-images img {
    width: 100%;
  }
}
