/* 共通 */
@charset "utf-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #fa7922;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", 'Yu Gothic Medium', '游ゴシック Medium', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
  line-height: 1.7;
  color: #333333;
  background-image: url(../images/bg.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  text-align: center;
}

.wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

section {
  margin: 80px auto;
}

main {
  margin: 0 5%;
}



/* ヘッダー */
header {
  background-color: #04840D;
  padding: 20px;
}

.logo-message {
  color: #fff;
}

.logo-box {
  display: flex;
  gap: 20px;
}



/* メイン */
.bunner .carrot {
  text-align: center;
}

.carrot-info {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  background: #fff;
}

.veg-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  background-color: #fff;

}

.farm-flex {
  display: flex;
  gap: 80px;
  border: 10px solid #F9934E;
  border-radius: 30px;
  padding: 40px;
  background: #fff;

}

.farm-point-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.farm-point-text P {
  font-size: 1.2rem;
}

.farm-point-images {
  width: 30%;
}

/* アコーディオンメニュー */
.accordion-001 {
  max-width: 100%;
  background-color: #f2f2f2;
}

.accordion-001:not([open]) {
  margin-bottom: 7px;
}

.accordion-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border-radius: 5px;
  background-color: #2c7312;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
  display: none;
}

.accordion-001 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
  transition: transform .3s;
}

.accordion-001[open] summary::after {
  transform: rotate(225deg);
}

.accordion-001 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 2em 2em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
  transform: none;
  opacity: 1;
}

.QA {
  font-size: 2rem;
  margin-bottom: 20px;
  background-color: #fff;
  text-align: center;
}

.QA span {
  color: #333333;
}

summary,
.accordion-001 P {
  font-size: 1.2rem;
}

/* フッター */

.top {
  display: flex;
  justify-content: right;
  padding-right: 50px;
}

.top img {
  width: 80px;
}

.top a {
  text-decoration: none;
}

.footer {
  background-color: #04840D;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.f-logo-message {
  font-size: 0.9rem;
}

.f-logo-box {
  display: flex;
  text-align: left;
  align-items: center;
}

.tel {
  color: #fff;
  font-size: 1.5rem;
}


/* スマホ対応 */
@media (max-width: 767px) {


  header {
    padding: 10px;
  }


  img {
    display: inline-block;
    text-align: center;
  }

  section {
    margin: 60px auto;
  }

  .logo img {
    width: 200px;
  }

  .logo-message {
    color: #fff;
  }

  .logo-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-right: 30px;
  }

  main {
    margin: 0 3%;
  }

  .carrot-info {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .veg-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    background-color: #fff;

  }

  .farm-flex {
    display: block;
    gap: 40px;
    border: 5px solid #F9934E;
    border-radius: 30px;
    padding: 40px;
    background: #fff;

  }

  .farm-point-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .farm-point-text P {
    font-size: 1rem;
  }

  .farm-point-images {
    width: 100%;
    text-align: center;
  }

  .farm-point-images img {
    margin-top: 20px;
  }

  .QA {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }


  summary,
  .accordion-001 P {
    font-size: 1rem;
  }

  .top img {
    width: 40px
  }

  .footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
  }

  .f-logo {
    width: 200px;
  }

  .f-logo-message {
    font-size: 0.9rem;
  }

  .f-logo-box {
    display: block;
    text-align: left;
    align-items: center;
  }

  .f-logo img {
    width: 150px;
  }

  .tel {
    color: #fff;
    font-size: 1rem;
    width: 50%;
  }

}