/* ========== ヒーロー画像 ========== */
.hero {
  width: 100%;
  height: calc(100vh - 90px);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ========== 農場理念 ========== */
.philosophy__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ===== 画像サイズ ===== */
.philosophy__image {
  width: 40%;
}

.philosophy__image img {
  width: 100%;
}

  /* ===== カード内テキスト ===== */
.philosophy__content {
  padding: 0.5px 0;
  width: 60%;
}

.philosophy__title {
  margin-bottom: 1rem;
}

/* カードflex */
.philosophy__card {
  display: flex;
  gap: 32px;
  align-items: center;
}
.philosophy__card--reverse {
  flex-direction: row-reverse;
}

.philosophy__content--reverse {
  text-align: right;
}

/* ========== 生産物 ========== */
.product__title {
  padding: 0 0 1.5rem;
  text-align: center;
}
.product__title--processed {
  padding-top: 2rem;
}


.product__list {
  display: grid;
  gap: 20px 12px;
}

.product__card {
  flex: 1 1 calc(33.333% - 12px);
  box-sizing: border-box;
  text-align: center;
}

.product__card-image img {
  width: 100%;
  object-fit: cover;
}

/* ===== 農作物 ===== */
.product__group--fresh .product__list {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== 加工品 ===== */
.product__group--processed .product__list {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

/* ========== Instagram ========== */
.top-instagram .instagram-content {
  display: flex;
  justify-content: center;
}

/* ========== GoogleMap ========== */
.map-container {
  display: flex;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
}


/* ===========================
   レスポンシブ（～767px）
=========================== */
@media (max-width: 767px) {
  /* ========== 農業理念 ========== */

  /* ===== Flex解除 ===== */
  .philosophy__card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .philosophy__card--reverse {
    flex-direction: column;
  }

  .philosophy__content--reverse {
    text-align: center;
  }

  .philosophy__image,
  .philosophy__content {
    width: 100%;
  }

  /* ========== 生産物 ========== */

  /* ===== 農作物 ===== */
  .product__group--fresh .product__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }

  /* ===== 加工品 ===== */
  .product__group--processed .product__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 450px;
    margin: 0 auto;
  }

  /* ========== Instagram ========== */

  /* ========== GoogleMap ========== */
  .map-container {
    height: 200px;
  }
}
