img {
  display: block;
}

.pageMv__container {
  padding-bottom: 15rem;
}
.container {
  max-width: 960px;
}

@media screen and (max-width: 767px) {
  .pageMv {
    height: 39.7175rem;
  }
  .pageMv__container {
    margin-top: 3rem;
    padding-bottom: 4.5rem;
  }
  .pageMv__title-jp {
    margin-top: 1rem;
  }
  .bg-gradation-wrapper {
    margin-top: -5rem;
  }
}

/* ================ */
/* 佐々木製茶の生産体制 */
/* ================ */
.system {
  margin-top: 1.25rem;
  margin-bottom: 6.25rem;
}
.system__contents {
  margin-top: 4.5rem;
}
.system__text {
  font-size: var(--16);
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 0.08rem;
}
.system__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 4rem;
  padding-block: 1.375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.systemCard {
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem 3rem 1rem;
}
.systemCard:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.systemCard__flex {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 1rem;
}
.systemCard__title {
  font-size: var(--16);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08rem;
}
.systemCard__number {
  color: #fff;
  font-size: var(--48);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.12rem;
}
.systemCard__unit {
  color: #fff;
  font-size: var(--16);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.04rem;
}
.system__notes {
  font-family: var(--familyNotoSans);
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  font-size: var(--12);
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 1.167;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .system {
    margin-top: 0;
    margin-bottom: 5rem;
  }
  .system__text {
    line-height: 2.2;
  }
  .system__contents {
    margin-top: 2.5rem;
  }
  .system__cards {
    grid-template-columns: 1fr 1fr;
    padding-block: 0.875rem;
    margin-top: 3.5rem;
    padding-bottom: 0;
  }
  .systemCard {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
  .systemCard:nth-of-type(1) {
    height: 9.3125rem;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .systemCard:nth-of-type(2) {
    height: 9.3125rem;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    border-right: none;
  }
  .systemCard:nth-of-type(3) {
    height: 9.3125rem;
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    margin-top: 1rem;
  }
}

/* ================ */
/* 製茶プロセス */
/* ================ */
.process {
  padding-top: 5.5rem;
}
.process__contents {
  margin-top: 5rem;
}
.processContent__details {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.processContent:nth-of-type(2n) .processContent__details {
  flex-direction: row-reverse;
}
.process__grid {
  display: grid;
  gap: 4rem;
  margin-top: 6rem;
}
.processContent__left {
  flex: 1;
}
.processContent__image {
  flex: 0 1 33.3%;
  img {
    width: 100%;
  }
}
.processContent__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.processContent__head-img {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1 0 80px;
}
.processContent__head-img::after {
  content: "";
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.3);
  height: 1px;
  flex: 1;
}
.processContent__head-en {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--12);
  font-family: var(--familyNotoSans);
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.06rem;
  flex-wrap: nowrap;
}
.processContent__flex {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}
.processContent__title {
  font-size: var(--28);
  font-weight: 500;
  line-height: 4.5rem;
  letter-spacing: 0.2em;
}
.processContent__text {
  font-family: var(--familyNotoSans);
  font-size: var(--14);
  line-height: 2.4;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .process {
    padding-top: 5rem;
  }
  .process__contents {
    margin-top: 2.5rem;
  }
  .processContent__details,
  .processContent:nth-of-type(2n) .processContent__details {
    flex-direction: column;
    gap: 3rem;
  }
  .processContent__title {
    line-height: 1.75rem;
    letter-spacing: 0.2em;
    padding-left: 1.25rem;
    margin-top: 0.25em;
  }
  .processContent__head-img {
    flex: 1 0 4rem;
    img {
      width: 4rem;
    }
  }
  .processContent__flex {
    margin-top: 1rem;
    gap: 1.75rem;
  }
  .process__grid {
    gap: 3.85rem;
  }
}

/* ================ */
/* 品質・安全性 */
/* ================ */
.quality {
  margin-top: var(--section-margin);
}
.quality__contents {
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.qualityCard {

}
.qualityCard__image {
  img {
    width: 100%;
  }
}
.qualityCard__title {
  font-size: var(--20);
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.1rem;
  margin-top: 2rem;
}
.qualityCard__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--13);
  font-weight: 400;
  line-height: 240%;
  letter-spacing: 0.0975rem;
  margin-top: 1rem;
  text-align: justify;
}
.quality__button {
  margin-left: auto;
  margin-top: 3.5rem;
  width: 20rem;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .quality {
    margin-top: 4rem;
  }
  .quality__button {
    margin-top: 2.5rem;
  }
  .quality__contents {
    grid-template-columns: 1fr;
    padding-top: 4rem;
    gap: 4rem;
  }
  .qualityCard__title {
    letter-spacing: 0.09rem;
    margin-top: 1.5rem;
  }
  .qualityCard__text {
    letter-spacing: 0.09rem;
  }
}

/* ================ */
/* お取引をご検討のお客様へ */
/* ================ */
.partners {
  margin-top: var(--gradation-margin);
}
.partners__bg {
  display: block;
  padding: 10rem 3.5rem 3rem 3.5rem;
  background: url(../../images/pages/process/bg-partners-pc.webp) no-repeat center center / cover;
  width: 100%;
  height: 100%;
  position: relative;

  &::before {
    content: "";
    background: linear-gradient(0deg, rgba(25, 30, 24, 0.70) 0%, rgba(25, 30, 24, 0.00) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    transition: all .3s;
  }
}

.partners__titles {
  position: relative;
  z-index: 2;
}
.partners__title-en {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--12);
  font-family: var(--familyNotoSans);
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.06rem;
}
.partners__title-ja {
  display: block;
  font-size: var(--26);
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.13rem;
  margin-top: 0.5rem;
}
.partners__text {
  font-size: var(--14);
  font-family: var(--familyNotoSans);
  line-height: 200%;
  letter-spacing: 0.07rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}
@media (hover:hover) {
  .partners__bg:hover::before {
    backdrop-filter: blur(6px);
  }
}

@media screen and (max-width: 767px) {
  .partners {
    margin-top: 6rem;
  }
  .partners__bg {
    padding: 10rem 2rem 3rem 2rem;
  }
  .partners__bg.dotted--white::after {
    right: 1.5rem;
    bottom: 2rem;
  }
  .partners__text {
    text-align: justify;
    letter-spacing: 0.0325rem;
  }
}