@charset "utf-8";

.page-hero--experience {
  background-image: url(../images/experience-top.webp);
}
.description--white {
  color: var(--color-secondary);
}
.experience__description {
}
.attention__description {
  font-size: 1.2rem;
  line-height: 2.4;
  letter-spacing: 0.06em;
  margin: 0;
}

/* 
farm
*/
.section--farm {
}
.farm__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 0 40px 0;
}
.farm__item {
  display: flex;
  align-items: center;
  background-color: var(--background-secondary);
  color: var(--color-secondary);

  position: relative;
  height: 800px;
}
.farm__item--reverse {
  flex-direction: row-reverse;
}
.farm__image {
  width: 50%;
  height: 800px;
  overflow: hidden;
}
.farm__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.farm__content-txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 70px 80px 40px;
}
.farm__content-sub-topic {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin: 0;
}
.farm__content-topic {
  margin: 5px 0 30px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.farm__content-btn {
  font-family: var(--font-family-ja);
  font-size: 1.8rem;
  border: solid 1px var(--point-secondary);
  display: inline-block;
  text-align: center;
  vertical-align: top;
  font-weight: 500;
  line-height: 1;
  padding: 10px 20px;
  margin-top: 40px;

  overflow: hidden;
  background-color: var(--background-primary);

  background: linear-gradient(
    90deg,
    rgba(248, 247, 242, 1) 0%,
    rgba(248, 247, 242, 1) 50%,
    rgba(248, 247, 242, 0) 50%,
    rgba(248, 247, 242, 0) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.5s ease;
}
.farm__content-btn::after {
  content: "";
  display: inline-block;
  background-image: url(../images/btn-arrow-yellow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 21px;
  margin-left: 15px;
}
.farm__content-btn:hover {
  color: var(--color-tertiary);
  background-position: 0 0;
  transition: background-position 0.5s ease;
}
.farm__content-btn:hover::after {
  background-image: url(../images/btn-arrow-green.svg);
}
.farm__image {
}
.experience__slider {
}
.btn--farm {
  text-align: center;
  margin-top: 100px;
}
.btn--farm .btn--big {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .farm__content-topic {
    font-size: 2.4rem;
  }
  .farm__content-sub-topic {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .farm__list {
    display: flex;
    flex-direction: column;
    margin: 40px 0 0;
    padding: 0;
  }
  .farm__item {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .farm__item--reverse {
    flex-direction: column;
  }
  .farm__image {
    width: 100%;
    height: 400px;
  }
  .farm__content-txt {
    width: 100%;
    padding: 40px 30px 60px 30px;
  }
  .farm__content-txt--reverse {
    width: 100%;
    padding: 40px 30px 60px 30px;
  }
  .farm__content-sub-topic {
    font-size: 1.2rem;
  }
  .farm__content-topic {
    margin: 5px 0 20px;
    font-size: 1.8rem;
  }
  .btn--farm {
    margin-top: 40px;
  }
  .farm__content-btn {
    font-size: 1.6rem;
    padding: 8px 20px;
    margin-top: 20px;
  }
  .farm__content-btn::after {
    width: 18px;
    height: 18px;
  }
}
