@charset "UTF-8";

/* ========== common ========== */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  --primary-green: #459522;
  --primary-green-80: rgba(71, 151, 37, 0.75);
  --primary-lightGreen: #6bae4f;
  --primary-red: #d23b2e;
  --primary-white: #fff;
  --primary-black: #513519;
  --contentWidth: 88.8vw;
  --contentPadding: 5.5vw;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-rounded: "Zen Maru Gothic", sans-serif;
  --font-price: "Bebas Neue", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  color: var(--primary-black);
  background-color: #fff;
}

.container {
  padding: 0 var(--contentPadding);
}

.container__inner {
  margin: 0 auto;
  max-width: var(--contentWidth);
}

h1,
h2,
h3,
.rounded {
  font-family: var(--font-rounded);
  line-height: 1;
}

h2 {
  text-align: center;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
}

.highlight {
  color: var(--primary-red);
}

/* ========== mv ========== */

.mv {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.mv__backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.mv__backgrounds img.mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 3s ease;
  transform: scale(1); /* 初期値を一応指定 */
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.mv__backgrounds img.mv__bg.active {
  opacity: 1; /*.active クラスがつくと見える(フェードイン・アウト）*/
  animation: zoomIn 4s ease-in-out forwards; /* 拡大 */
}

.mv__wrapper {
  position: relative;
  z-index: 10; /*背景の上にのる*/
  width: 33%;
  min-width: 300px;
  height: 100%;
}

.mv__inner {
  background-color: var(--primary-green-80);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 15.5%;
  padding: clamp(20px, 2.64vw, 38px);
}

.mv__logo {
  display: block;
  width: 21%;
  min-width: 60px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.mv__title {
  writing-mode: vertical-rl;
  font-feature-settings: "vert" on;
  font-size: clamp(2.3rem, 2.5vw, 3.5rem);
  line-height: 1.7;
  text-shadow: 0 0 0.03em currentColor;
  color: var(--primary-white);
}

.mv__farmer {
  width: clamp(120px, 11.5vw, 170px);
  text-align: center;
}

.mv__farmer--1 {
  position: absolute;
  bottom: 30%;
  left: 10%;
}

.mv__farmer--2 {
  position: absolute;
  bottom: 5%;
  right: 10%;
}

.mv__farmerPhoto {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.mv__farmer p {
  color: var(--primary-white);
  font-size: clamp(14px, 1.86vw, 24px);
  font-weight: 500;
  display: inline-block;
  margin-top: 5px;
}

@media (min-width: 1440px) {
  .mv__wrapper {
    width: 476px;
  }
}

@media (max-width: 768px) {
  .mv__wrapper {
    width: 100%;
  }

  .mv__inner {
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 5vw, 20px);
    padding: 10px 10px 30px;
    height: 250px;
  }

  .mv__logo {
    width: 60px;
  }

  .mv__title {
    writing-mode: horizontal-tb;
    text-align: center;
    font-feature-settings: normal;
  }

  .mv__farmers {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: auto;
    padding-bottom: 10px;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  .mv__farmer {
    width: clamp(150px, 15vw, 170px);
  }
  .mv__farmer--1,
  .mv__farmer--2 {
    position: relative; /* 親にzindex10きかせてるからstaticにしない*/
    bottom: auto;
    left: auto;
    right: auto;
  }
  .mv__farmer--1 p,
  .mv__farmer--2 p {
    position: relative;
    border-radius: 16px;
    padding: 4px 8px;
    z-index: 1;
    overflow: hidden;
  }

  .mv__farmer--1 p::before,
  .mv__farmer--2 p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-green-80);
    border-radius: 16px;
    filter: blur(10px);
    z-index: -1;
  }
}

@media (max-width: 480px) {
  .mv__farmer {
    width: clamp(100px, 13vw, 170px);
  }
}

/* ========== nav ========== */

.nav {
  height: 80px;
  background: url(../images/background.png) repeat;
  position: relative;
}

.nav__list {
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5.2vw;
}

.nav__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary-black);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 2.5rem;
}

.nav__item span {
  color: var(--primary-green);
  font-size: clamp(1.12rem, 1.6vw, 1.6rem);
  font-weight: 700;
  line-height: 2.5rem;
  letter-spacing: 0.8px;
}

/*  モバイル   */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  background-image: url(../images/background.png);
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 15px 15px 10px 25px;
  border-radius: 30px 0 0 30px;
  box-shadow: 2px 2px 4px 2px rgba(101, 97, 29, 0.2);
  border-right: none;
}

.hamburger span:not(:last-child) {
  width: 24px;
  height: 1px;
  background: #333;
}

.mobile__nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 70vw;
  height: 65vh;
  background: rgba(255, 255, 255, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1001;
  border-radius: 16px 0 0 16px;
}

.mobile__nav-list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
}

.mobile__nav-item {
  font-size: 1.8rem;
  font-weight: 700;
}
.mobile__nav-item span {
  color: var(--primary-green);
  font-size: 1.4rem;
}

.mobile__close {
  position: absolute;
  top: 20px;
  right: 0px;
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 100;
  color: #333;
  cursor: pointer;
  z-index: 1100;
  background-image: url(../images/background.png);
  padding: 6px 14px 10px 23px;
  border-radius: 30px 0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.mobile__closeTxt {
  font-size: 1.2rem;
  color: var(--primary-green);
  font-weight: 500;
}
@media (min-width: 769px) {
  .nav__item span {
    position: relative;
  }

  .nav__item span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 2px;
    background-color: var(--primary-green);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav__item a:hover span::after {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .nav {
    background: none;
  }
  .nav__list {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .mobile__nav.active {
    display: flex;
  }
}
/* ========== concept ========== */

.concept__inner {
  display: flex;
  gap: 6vw;
  padding: 160px 0;
  align-items: center;
  max-width: 1440px;
}

.concept__left,
.concept__right {
  flex: 1;
}

.concept__left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.concept__left img {
  width: clamp(15rem, 25vw, 34.8rem);
}

.concept__right {
  color: var(--primary-black);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .concept__inner {
    flex-direction: column;
    text-align: center;
    padding: 0 0 80px;
  }

  .concept__left,
  .concept__right {
    width: 100%;
  }

  .concept__left {
    margin-bottom: 30px;
  }

  .concept__right {
    font-size: 1.4rem;
  }
}

/* ========== reason ========== */

.reason__list {
  width: 100%;
  display: flex;
  gap: 2.7vw;
  margin: 80px 0 160px;
}

.reason__item {
  flex: 1;
  position: relative;
}
.reason__txt {
  background-color: var(--primary-white);
  padding: 20px 0 0 20px;
  width: 92%;
  margin-left: 8.2%;
  transform: translateY(clamp(-2.2rem, -2.222vw, -3.2rem));
}

.reason__txt p {
  margin-top: 30px;
  font-size: clamp(1.4rem, 2.1vw, 1.6rem);
}

.reason__item img {
  object-fit: cover;
  aspect-ratio: 20 / 13;
}

.tomato {
  width: 4.8vw;
  aspect-ratio: 51 / 49;
  object-fit: contain;
  position: absolute;
  top: -20px;
  left: -15px;
  overflow: visible;
}

@media (max-width: 768px) {
  .reason__list {
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 80px;
  }
  .tomato {
    width: 6rem;
  }
}
/* ========== trial ========== */

.trial {
  width: 100vw;
  aspect-ratio: 16 / 9;
  background: url(../images/trial-background.png) right bottom /
      clamp(300px, 56vw, 700px) auto no-repeat,
    url(../images/background.png) repeat;
  padding: 80px 0;
  position: relative;
}

.trial__ribbon {
  position: absolute;
  top: 0;
  left: 20%;
  background-color: var(--primary-red);
  color: var(--primary-white);
  padding: 9px 18px 25px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}

.trial__subTitle {
  text-align: center;
  font-size: clamp(13.5px, 2.5vw, 24px);
  font-weight: 350;
  line-height: 1;
  margin-top: 24px;
}
.trial__wrapper {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trial__list {
  width: fit-content;
  margin-top: 24px;
  background-color: var(--primary-white);
  box-shadow: 5px 5px 2px 0px #e5cb97;
}

.trial__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 32px 35px 90px;
  position: relative;
  gap: 5.6vw;
}

.trial__item:not(:last-child) {
  position: relative;
}

.trial__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: var(--primary-black);
}

.trial__description {
  display: inline-block;
  background-color: var(--primary-lightGreen);
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--primary-white);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

.trial__farm-info {
  margin-top: 14px;
  display: flex;
  gap: 3.2rem;
  align-items: center;
}

.trial__farm-name {
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: 500;
}

.trial__farm-location {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

.trial__product-name {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  margin-top: 10px;
}

.trial__right {
  padding-top: 32px;
}

.trial__price {
  color: var(--primary-red);
  font-family: var(--font-price);
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 400;
  display: block;
}

.trial__tax-shipping {
  display: block;
  font-size: 12px;
  text-align: right;
}

.trial__img {
  width: clamp(40px, 17vw, 146px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: solid clamp(0.3px, 0.6vw, 0.7rem) var(--primary-white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: clamp(80px, 3vw, 95px);
  border-radius: 64px;
  background: linear-gradient(180deg, #ffb48d 0%, #f97837 100%);
  box-shadow: 5px 5px 0px 0px #de7039;
  margin: 14px auto 0;
  color: var(--primary-white);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  padding: 25px 4.2vw;
  transition: opacity 0.2s ease;
}

.btn:hover {
  filter: brightness(1.1) !important;
}

.btn:active {
  box-shadow: none !important;
  transform: translateY(5px) !important;
  transition: none !important;
}

.fa-solid {
  position: absolute;
  right: 10%;
  font-size: 1em;
  line-height: 1;
}

.angled-text {
  position: relative;
  display: inline-block;
  padding: 0 10rem;
}

.angled-text::before,
.angled-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background-color: var(--primary-black);
  transform-origin: center;
}

.angled-text::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.angled-text::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}
@media (min-width: 1440px) {
  .trial {
    aspect-ratio: auto;
    height: 800px;
  }
}
@media (max-width: 768px) {
  .trial {
    padding: 80px 0;
  }

  .trial__list {
    width: fit-content;
    padding: 0 clamp(10px, 4vw, 20px);
  }
  .trial__ribbon {
    padding: 4px 9px 17px;
  }

  .trial__item {
    display: block;
    padding: 20px clamp(3px, 2vw, 13px);
    text-align: center;
  }

  .trial__farm-info {
    justify-content: center;
  }
  .trial__right {
    display: flex;
    align-items: end;
    justify-content: center;
    padding-top: 16px;
  }
  .trial__farm-info {
    gap: 1.2rem;
  }

  .trial__tax-shipping {
    transform: translateY(-9px);
  }
  .trial__description {
    transform: translateX(15px);
    padding: 6px 10px;
  }

  .trial__img {
    width: clamp(40px, 13vw, 146px);
    position: absolute;
    top: 20%;
    left: -6%;
    transform: translate(-50%, -50%);
  }
  .angled-text {
    padding: 0 3.5rem;
  }
  .angled-text::before,
  .angled-text::after {
    width: 30px;
    height: 1.5px;
  }
  .trial__item:not(:last-child)::after {
    left: 6px;
    right: 6px;
    height: 1px;
  }
}
@media (max-width: 480px) {
  .trial__img {
    width: clamp(60px, 13vw, 146px);
    left: -1.8%;
  }
}
/* ========== guarantee ========== */

.guarantee__inner {
  text-align: center;
  margin-top: 160px;
  position: relative;
  padding: 50px 5.5vw 50px;
  max-width: 1440px;
}

.guarantee__info {
  font-size: clamp(16px, 2.5vw, 24px);
  margin-top: 70px;
}

.guarantee__info span {
  font-size: clamp(24px, 4vw, 35px);
}

.guarantee__desc {
  text-align: center;
  font-size: clamp(14px, 2vw, 20px);
  margin-top: 30px;
}

.guarantee__img {
  width: 12%;
  aspect-ratio: auto;
  object-fit: contain;
  min-width: 71px;
}

.guarantee__img1 {
  position: absolute;
  top: 0;
  left: 0;
}

.guarantee__img2 {
  position: absolute;
  top: 0;
  right: 0;
}

.guarantee__img3 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.guarantee__img4 {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1046px) {
  .guarantee__info,
  .guarantee__desc {
    text-align: left;
  }
  .guarantee__info .sp-br {
    display: inline;
  }
}

@media (max-width: 768px) {
  .guarantee__inner {
    margin-top: 80px;
  }
  .guarantee__info {
    margin-top: 35px;
  }
  .guarantee__desc {
    margin-top: 15px;
  }
}
/* ========== farmers ========== */

.farmers {
  margin: 160px auto 0;
  max-width: 1440px;
}

.farmers__inner {
  margin-top: 80px;
  display: flex;
  height: auto;
  padding: 50px 5.2vw;
  position: relative;
  overflow: visible;
}

.farmers__inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: calc(100% - 20px);
  height: 100%;
  background: url(../images/background.png) center / contain;
  z-index: -1;
}

.farmers__innerLeft,
.farmers__innerRight {
  flex: 1;
}

.farmers__info {
  display: flex;
  align-items: center;
  gap: 1.7vw;
  margin-top: 32px;
}

.farmers__message {
  color: var(--primary-green);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
}

.farmers__location {
  font-size: clamp(14px, 3vw, 16px);
  border: solid 1px var(--primary-black);
  padding: 5px;
  background-color: var(--primary-white);
}

.farmers__name {
  font-size: clamp(18px, 3vw, 24px);
}

.farmers__desc {
  font-size: clamp(16px, 3vw, 18px);
  margin-top: 32px;
}

.farmers__img {
  width: 44%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .farmers {
    margin-top: 80px;
  }
  .farmers__inner {
    display: block;
    padding: 20px;
    margin-top: 40px;
    height: 100%;
    background: url(../images/background.png) center / contain;
  }
  .farmers__innerLeft {
    height: 230px;
  }

  .farmers__info,
  .farmers__desc {
    margin-top: 16px;
  }
  .farmers__img {
    width: 100%;
    height: 226px;
  }
  .farmers__inner::after {
    display: none;
  }
}
/* ========== voice ========== */

.voice {
  margin-top: 160px;
}

.voice__list {
  display: flex;
  margin-top: 80px;
}

.voice__item {
  padding: 0 2.77vw;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.voice__item:not(:last-of-type) {
  border-right: solid 1px rgba(85, 85, 85, 0.5);
}

.voice__title,
.voice__text,
.voice__image {
  margin-top: 14px;
}

.voice__title {
  margin-top: 24px;
}

.voice__text {
  flex-grow: 1;
}
.sp-br {
  display: none;
}

@media (max-width: 906px) {
  .sp-br {
    display: inline;
  }
}

@media (max-width: 768px) {
  .voice {
    margin-top: 80px;
  }

  .voice__list {
    display: block;
    margin-top: 40px;
  }
  .voice__user,
  .voice__text {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  }
  .voice__item:not(:last-of-type) {
    border-right: none;
    border-bottom: solid 1px rgba(85, 85, 85, 0.5);
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
/* ========== faq ========== */

.faq {
  position: relative;
  overflow: hidden;
  background: url(../images/faq-background.png) center / cover no-repeat;
  width: 100%;
  padding: 80px 0;
  margin-top: 160px;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(107, 106, 106, 0.5);
  z-index: 0;
}

.faq > * {
  position: relative;
  z-index: 1;
}

.faq h2 {
  color: var(--primary-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.faq__item {
  max-width: 67vw;
  margin: 0 auto;
}

.faq__item:first-of-type {
  margin-top: 80px;
}

.faq__item:not(:first-of-type) {
  margin-top: 20px;
}

.faq__question {
  background-color: var(--primary-lightGreen);
  max-width: 650px;
  color: var(--primary-white);
  font-size: clamp(16px, 2.3vw, 20px);
  font-weight: 500;
  padding: 20px 3.9vw;
}

.faq__question p,
.faq__answer-lead {
  display: flex;
  gap: 1em;
}

.faq__answer {
  background-color: var(--primary-white);
  padding: 30px 3.9vw;
}

.faq__answer-lead {
  font-size: clamp(16px, 2.3vw, 20px);
  font-weight: 500;
}

.faq__answer-text {
  margin-top: 20px;
  font-size: clamp(14px, 1.8vw, 16px);
}

@media (max-width: 768px) {
  .faq {
    margin-top: 80px;
  }
  .faq__item:first-of-type {
    margin-top: 40px;
  }
  .faq__item {
    max-width: var(--contentWidth);
  }
}
/* ========== footer ========== */

footer {
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.footer__logo {
  width: clamp(100px, 20vw, 150px);
}

.footer__copyright {
  color: #91806c;
  text-align: center;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 3rem;
  }
  footer {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
