#vege_anchor {
  background-color: #ECF9E9;
  padding: 70px 0;
}

#vege_anchor h2{
  font-size: 3rem;
  margin-bottom: 25px;
}

#vege_anchor p{
  margin-bottom: 100px;
}

#vege_anchor ul{
  display: flex;
  justify-content: space-between;
}

#vege_anchor ul li{
  width: 20%;
}

#vege_anchor ul li a{
  font-size: 2.4rem;
  color: #000;
  padding-bottom: 20px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #000;
  position: relative;
}

#vege_anchor ul li a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 8px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 10px;
}

@media (max-width: 767px) {
  #vege_anchor h2{
    font-size: 2.4rem;
  }
  #vege_anchor ul {
    flex-wrap: wrap;
    gap: 2%;
  }
  #vege_anchor ul li {
    width: 48%;
    margin-bottom: 20px;
  }
  #vege_anchor ul li a {
    font-size: 2rem;
    padding-bottom: 10px;
  }
}

/* 野菜紹介 */

#vege_conts {
  padding: 130px 0;
}

.vege_item {
  margin-bottom: 200px;
}

.vege_item_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.vege_item_text {
  width: 40%;
}

.vege_item_text h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.vege_item_img {
  width: 50%;
}

.vege_item ul {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  #vege_conts {
    padding: 60px 0;
  }
  .vege_item {
    margin-bottom: 60px;
  }
  .vege_item_wrap {
    display: block;
  }
  .vege_item_text {
    width: 100%;
    margin-bottom: 30px;
  }
  .vege_item_img {
    width: 100%;
  }
}

/* 取り組み */

#vege_attempt {
  padding: 130px 0;
}

#vege_attempt h2 {
  font-size: 3rem;
}

.attempt_wrap {
  display: flex;
  justify-content: space-between;
}

.attempt_ttl {
  width: 30%;
}

.attempt_conts {
  width: 65%;
}

.attempt_item {
  margin-bottom: 80px;
}

.attempt_item_ttl {
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.attempt_item h3{
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.attempt_item_text {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  
}

.attempt_item_text span{
  width: 130px;
  flex-shrink: 0;
  margin-left: 20px;
}

@media (max-width: 767px) {
  #vege_attempt {
    padding-bottom: 0;
  }
  #vege_attempt h2 {
    font-size: 2.4rem;
  }
  .attempt_wrap {
    display: block;
  }
  .attempt_item h3 {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
  .attempt_ttl {
    width: 100%;
    margin-bottom: 30px;
  }
  .attempt_conts {
    width: 100%;
  }
  .attempt_item_text {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .attempt_item_text span {
    width: 50%;
    margin: 20px auto;
  }
}

/* CTA */

#vege_cta {
  padding: 130px 0;
  background-color: #ECF9E9;
}

.vege_cta_wrap {
  display: flex;
  gap: 30px;
  justify-content: center;
}