/* ヤマヨシとは */

#top_about {
  padding: 100px 0;
  background-color: rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
}

.top_about_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_about_text {
  color: #fff;
}

.top_about_wrap img{
  max-width: 920px;
  width: 45%;
  margin-left: 30px;
}

.top_about_text h3 {
  font-size: 2.8rem;
  margin-bottom: 60px;
}

.top_about_text p {
  margin-bottom: 100px;
}

.top_about_text a{
  color: #fff;
}

.top_about_text .more_link::after{
  background-color: #fff;
}

@media (max-width: 767px) {
  .top_about_wrap {
    display: block;
  }
  .top_about_wrap img {
    width: 100%;
    margin: 0;
  }
  .top_about_text p {
    margin-bottom: 30px;
  }
}

/* 野菜紹介 */

#top_hv {
  background-color: #fff;
  padding: 200px;
}

.top_hv_ttl h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.top_hv_ttl p {
  margin-bottom: 40px;
}

.top_hv_wrap {
  margin: 130px 0;
}

.top_hv_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 240px;
}

.top_hv_item:last-child {
  margin-bottom: 0;
}

.top_hv_item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.top_hv_item_img{
  width: 50%;
}

.top_hv_item_text {
  width: 40%;
}

.top_hv_item_text h4 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.top_hv_item_text p {
  margin-bottom: 40px;
}

.top_hv_item_img_vege {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.top_hv_item_img_vege.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 767px) {
  #top_hv {
    padding: 60px 0;
  }
  .top_hv_wrap {
    margin: 60px 0;
  }
  .top_hv_item {
    display: block;
    margin-bottom: 70px;
  }
  .top_hv_item_text {
    width: 100%;
    margin-bottom: 30px;
  }
  .top_hv_item_img {
    width: 100%;
  }
}

/* 人参ジュース */

#top_cj {
  background-color: #fff;
  padding: 200px 0;
}

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

.top_cj_ttl {
  width: 40%;
}

.top_cj_ttl h3 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.top_cj_ttl p{
  margin-bottom: 100px;
}

.top_cj_img {
  width: 50%;
  position: relative;
  margin-left: 10%;
}

.top_cj_img01 {
  width: 100%;
}

.top_cj_img02 {
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 250px;
}

@media (max-width: 767px) {
  #top_cj {
    padding: 60px 0 250px 0;
  }
  .top_cj_wrap {
    display: block;
  }
  .top_cj_ttl {
    width: 100%;
    margin-bottom: 40px;
  }
  .top_cj_ttl p {
    margin-bottom: 40px;
  }
  .top_cj_img {
    width: 90%;
    margin-left: auto;
  }
  .top_cj_img02 {
    width: 200px;
    bottom: 0;
    top: 100px;
    left: -20px;
  }
}

/* 取り組み */

#top_philosophy {
  height: 480px;
  background: url(../img/bg_philosophy.jpg)no-repeat center;
  background-size: cover;
  position: relative;
}

#top_philosophy::after {
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
}

.top_ps_ttl {
  position: relative;
  z-index: 10;
  color: #fff;
  padding-top: 90px;
}

.top_ps_ttl h3{
  margin-bottom: 20px;
  font-size: 2.8rem;
}

.top_ps_ttl p{
  margin-bottom: 50px;
}

.top_ps_ttl .more_link{
  color: #fff;
}

.top_ps_ttl .more_link::after{
  background-color: #fff;
}

@media (max-width: 767px) {
  #top_philosophy {
    height: auto;
    padding: 60px 0;
    background-position: top 50% left 57%;
  }
  .top_ps_ttl {
    padding-top: 0;
  }
}