@charset "UTF-8";
:root {
  --inner-scale: 1;
  --vw-base: calc(1540 / var(--inner-scale));
  --inner: 980;
  --inner-1920: 1920;
  --inner-1484: 1484;
  --inner-1200: 1200;
  --fz-ratio: 1;
}
@media screen and (max-width: 999px) {
  :root {
    --vw-base: 768;
    --inner-scale: 1;
    --inner: 688;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --vw-base: 390;
    --inner-scale: 1;
    --inner: 350;
  }
}

/* ===============================
  肥料事業
=============================== */
/*------------------------------
about
------------------------------*/
.about {
  padding-top: min( 116 * 100vw / var(--vw-base) , 116/var(--vw-base) * 1540px );
}
@media (max-width: 767px) {
  .about {
    padding-top: 12%;
  }
}

.about__items {
  margin-top: calc(32 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .about__items {
    margin-top: 7%;
  }
}

.about__image {
  width: 46.5%;
}
@media (max-width: 999px) {
  .about__image {
    width: calc(350 / var(--inner) * 100%);
  }
}
@media (max-width: 767px) {
  .about__image {
    width: 100%;
  }
}

.about__item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.about__item:nth-child(2) {
  flex-direction: row-reverse;
}
.about__item:nth-child(n+2) {
  margin-top: min( 40 * 100vw / var(--vw-base) , 40/var(--vw-base) * 1540px );
}
@media (max-width: 999px) {
  .about__item:nth-child(n+2) {
    margin-top: calc(80 / var(--inner) * 100%);
  }
}
@media (max-width: 767px) {
  .about__item {
    display: block;
  }
  .about__item:nth-child(n+2) {
    margin-top: calc(40 / var(--inner) * 100%);
  }
}

.about__body {
  width: 48.5%;
}
@media (max-width: 999px) {
  .about__body {
    width: calc(298 / var(--inner) * 100%);
  }
}
@media (max-width: 767px) {
  .about__body {
    width: 100%;
    margin-top: calc(16 / var(--inner) * 100%);
  }
}

.about__heading {
  font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1540px );
  font-weight: 400;
  line-height: 1.5;
}

.about__descripiton {
  font-size: min( (15 * 100vw / var(--vw-base)) * var(--fz-ratio) , 15/var(--vw-base) * 1540px );
  font-weight: 300;
  line-height: 2;
  margin-top: 2em;
}
@media (max-width: 999px) {
  .about__descripiton {
    font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1540px );
    margin-top: 1.5em;
  }
}
@media (max-width: 767px) {
  .about__descripiton {
    margin-top: 1em;
  }
}

.about__figure {
  margin-top: calc(40 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .about__figure {
    margin-top: calc(32 / var(--inner) * 100%);
  }
}

/*------------------------------
features
------------------------------*/
.features {
  padding-top: min( 116 * 100vw / var(--vw-base) , 116/var(--vw-base) * 1540px );
}

.features__items {
  margin-top: calc(30 / var(--inner) * 100%);
}

.features__item {
  padding: 5%;
  padding-bottom: 4%;
  border-radius: min( 36 * 100vw / var(--vw-base) , 36/var(--vw-base) * 1540px );
  border: 1px solid #ACA197;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.features__item:first-child {
  background: #FAF8F5;
}
.features__item:nth-child(2) {
  background: #F7F0E4;
  transform: translateY(min( 16 * 100vw / var(--vw-base) , 16/var(--vw-base) * 1540px ));
}
.features__item:nth-child(3) {
  background: #EAE3D6;
  transform: translateY(calc(min( 16 * 100vw / var(--vw-base) , 16/var(--vw-base) * 1540px ) * 2));
}
.features__item:nth-child(n+2) {
  margin-top: 1%;
}
@media screen and (max-width: 999px) {
  .features__item {
    aspect-ratio: 688/644;
  }
  .features__item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .features__item {
    position: relative;
    top: unset;
    left: unset;
    padding: calc(24 / var(--inner) * 100%);
    border-radius: min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1540px );
  }
}

.features__item-header {
  display: none;
}
@media (max-width: 999px) {
  .features__item-header {
    align-items: center;
    display: flex;
  }
}

.features__item-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .features__item-wrapper {
    flex-direction: column-reverse;
    margin-top: -3.5%;
  }
}
@media (max-width: 767px) {
  .features__item-wrapper {
    margin-top: 4%;
  }
}

.features__content {
  width: 52.7%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .features__content {
    width: 100%;
  }
}

.features__icon {
  width: min( 95 * 100vw / var(--vw-base) , 95/var(--vw-base) * 1540px );
}
@media (max-width: 999px) {
  .features__icon {
    width: min( 80 * 100vw / var(--vw-base) , 80/var(--vw-base) * 1540px );
  }
}

@media (max-width: 999px) {
  .features__body {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .features__body {
    margin-top: min( 16 * 100vw / var(--vw-base) , 16/var(--vw-base) * 1540px );
  }
}

.features__heading {
  font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1540px );
  font-weight: 400;
  line-height: 1.8;
  color: #ACA197;
}
@media (max-width: 999px) {
  .features__heading {
    margin-left: 1em;
  }
}
@media (max-width: 767px) {
  .features__heading {
    margin-left: 0.4em;
  }
}

.features__description {
  font-size: min( (15 * 100vw / var(--vw-base)) * var(--fz-ratio) , 15/var(--vw-base) * 1540px );
  font-weight: 300;
  line-height: 2;
  margin-top: 1.6em;
  padding-bottom: 1.5em;
}
@media (max-width: 999px) {
  .features__description {
    margin-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .features__description {
    letter-spacing: 0.06em;
    line-height: 2.1;
  }
}

.featurees__image {
  width: 41.1%;
}
@media (max-width: 999px) {
  .featurees__image {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .featurees__image img {
    margin-top: 2.3%;
  }
}
@media (max-width: 767px) {
  .featurees__image img {
    margin-top: 0;
  }
}

.features__page-count {
  display: block;
  text-align: right;
  font-size: min( (14 * 100vw / var(--vw-base)) * var(--fz-ratio) , 14/var(--vw-base) * 1540px );
  font-weight: 400;
  line-height: 2.2142857143;
  font-family: "Questrial", sans-serif;
  color: #ACA197;
}
@media screen and (max-width: 999px) {
  .features__page-count {
    padding-right: 1em;
  }
}
@media (max-width: 767px) {
  .features__page-count {
    padding-right: 0;
  }
}

/*------------------------------
flow
------------------------------*/
.flow {
  padding-top: min( 140 * 100vw / var(--vw-base) , 140/var(--vw-base) * 1540px );
}

.flow__step {
  margin-top: calc(30 / var(--inner) * 100%);
}

.flow__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flow__item:nth-child(n+2) {
  margin-top: calc(40 / var(--inner) * 100%);
}
@media screen and (max-width: 999px) {
  .flow__item:nth-child(n+2) {
    margin-top: calc(16 / var(--inner) * 100%);
  }
}
@media (max-width: 767px) {
  .flow__item {
    position: relative;
    background: #fff;
  }
}

.flow__header {
  position: relative;
  width: min( 120 * 100vw / var(--vw-base) , 120/var(--vw-base) * 1540px );
  aspect-ratio: 1/1;
  border: 1px solid #ACA197;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ACA197;
  background: #fff;
}
@media (max-width: 999px) {
  .flow__header {
    width: calc(140 / var(--inner) * 100%);
  }
}
@media (max-width: 767px) {
  .flow__header {
    width: calc(96 / var(--inner) * 100%);
  }
}

.flow__header-number {
  display: block;
  font-size: min( (14 * 100vw / var(--vw-base)) * var(--fz-ratio) , 14/var(--vw-base) * 1540px );
  font-weight: 400;
  font-family: "Questrial", sans-serif;
}

.flow__header-label {
  display: block;
  font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1540px );
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.6em;
  text-indent: 0.5em;
}
@media (max-width: 767px) {
  .flow__header-label {
    line-height: 1.3;
  }
}

.flow__header-label--no-spacing {
  letter-spacing: 0;
  text-indent: 0;
}

.flow__header-border {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 1px;
  height: min( 332 * 100vw / var(--vw-base) , 332/var(--vw-base) * 1540px );
}
.flow__header-border::before, .flow__header-border::after {
  content: "";
  position: absolute;
  background: #ACA197;
  transition: transform 1.5s linear;
  left: 50%;
  top: 50%;
}
.flow__header-border::after {
  transform: translate(0%, -50%) scaleY(0);
  transform-origin: top center;
  width: 100%;
  height: 100%;
}
.flow__header-border::before {
  transition-delay: 0.75s;
  transform: translate(0%, -50%) scaleX(0);
  transform-origin: left center;
  width: min( 200 * 100vw / var(--vw-base) , 200/var(--vw-base) * 1540px );
  height: 1px;
}
@media screen and (max-width: 999px) {
  .flow__header-border {
    height: min( 478 * 100vw / var(--vw-base) , 478/var(--vw-base) * 1540px );
  }
  .flow__header-border::before {
    top: 33%;
    width: min( 300 * 100vw / var(--vw-base) , 300/var(--vw-base) * 1540px );
    transition-delay: 0.495s;
  }
}
@media screen and (max-width: 999px) {
  .flow__header-border {
    height: min( 478 * 100vw / var(--vw-base) , 478/var(--vw-base) * 1540px );
  }
  .flow__header-border::before {
    top: 18%;
    width: min( 300 * 100vw / var(--vw-base) , 300/var(--vw-base) * 1540px );
    transition-delay: 0.27s;
  }
}

.flow__header-border--last {
  height: calc(min( 332 * 100vw / var(--vw-base) , 332/var(--vw-base) * 1540px ) / 2);
}
.flow__header-border--last::after {
  transition-duration: 0.75s;
}
.flow__header-border--last::before {
  top: 100%;
  transition-delay: 0.75s;
}
@media screen and (max-width: 999px) {
  .flow__header-border--last {
    height: calc(min( 478 * 100vw / var(--vw-base) , 478/var(--vw-base) * 1540px ) / 2);
  }
}
@media (max-width: 767px) {
  .flow__header-border--last {
    height: calc(min( 478 * 100vw / var(--vw-base) , 478/var(--vw-base) * 1540px ) * 0.18);
  }
  .flow__header-border--last::after {
    transition-duration: 0.27s;
  }
  .flow__header-border--last::before {
    top: 100%;
    transition-delay: 0.27s;
  }
}

.act .flow__header-border::after {
  transform: translate(0%, -50%) scaleY(1);
}
.act .flow__header-border::before {
  transform: translate(0%, -50%) scaleX(1);
}

.flow__content {
  margin-top: calc(160 / var(--inner) * 100%);
  width: calc(820 / var(--inner) * 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 999px) {
  .flow__content {
    width: calc(435 / var(--inner) * 100%);
    margin-top: calc(164 / var(--inner) * 100%);
    display: block;
  }
}
@media (max-width: 767px) {
  .flow__content {
    width: calc(240 / var(--inner) * 100%);
    margin-top: calc(112 / var(--inner) * 100%);
  }
}

.flow__image {
  width: 47.2%;
}
@media (max-width: 999px) {
  .flow__image {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .flow__image {
    border-radius: min( 56 * 100vw / var(--vw-base) , 56/var(--vw-base) * 1540px );
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    overflow: hidden;
  }
}

.flow__description {
  width: 47.8%;
  font-size: min( (15 * 100vw / var(--vw-base)) * var(--fz-ratio) , 15/var(--vw-base) * 1540px );
  font-weight: 300;
  line-height: 2;
}
@media (max-width: 999px) {
  .flow__description {
    width: 100%;
    font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1540px );
    margin-top: 1em;
  }
}
@media (max-width: 767px) {
  .flow__description {
    margin-top: 0.3em;
  }
}

/*------------------------------
works
------------------------------*/
.works {
  padding: min( 230 * 100vw / var(--vw-base) , 230/var(--vw-base) * 1540px ) 0 min( 70 * 100vw / var(--vw-base) , 70/var(--vw-base) * 1540px );
}
@media screen and (max-width: 999px) {
  .works {
    padding: min( 100 * 100vw / var(--vw-base) , 100/var(--vw-base) * 1540px ) 0 min( 70 * 100vw / var(--vw-base) , 70/var(--vw-base) * 1540px );
  }
}

.works__wrapper {
  margin-top: 3.3%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 999px) {
  .works__wrapper {
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .works__wrapper {
    display: block;
    margin-top: calc(32 / var(--inner) * 100%);
  }
}

.works__image {
  width: 46.5%;
}
@media (max-width: 999px) {
  .works__image {
    width: calc(364 / var(--inner) * 100%);
  }
}
@media (max-width: 767px) {
  .works__image {
    width: 100%;
  }
}

.works__body {
  width: 48.5%;
}
@media (max-width: 999px) {
  .works__body {
    width: calc(284 / var(--inner) * 100%);
  }
}
@media (max-width: 767px) {
  .works__body {
    width: 100%;
    margin-top: calc(16 / var(--inner) * 100%);
  }
}

.works__heading {
  font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1540px );
  font-weight: 400;
  line-height: 1.5;
  color: #ACA197;
}
@media (max-width: 767px) {
  .works__heading {
    font-weight: 500;
  }
}

.works__message {
  font-size: min( (15 * 100vw / var(--vw-base)) * var(--fz-ratio) , 15/var(--vw-base) * 1540px );
  font-weight: 300;
  line-height: 2;
  margin-top: 2em;
}
@media (max-width: 999px) {
  .works__message {
    font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1540px );
    margin-top: 1.5em;
  }
}
@media (max-width: 767px) {
  .works__message {
    margin-top: 1em;
  }
}

/*------------------------------
yudetarou
------------------------------*/
.yudetarou__bg {
  width: 100%;
  aspect-ratio: 1920/300;
}
.yudetarou__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 999px) {
  .yudetarou__bg {
    aspect-ratio: 768/400;
  }
}
@media (max-width: 767px) {
  .yudetarou__bg {
    aspect-ratio: 390/224;
  }
}

.yudetarou__content {
  position: relative;
  margin-top: calc(min( 153 * 100vw / var(--vw-base) , 153/var(--vw-base) * 1540px ) * -1);
  background: #fff;
  border-radius: min( 60 * 100vw / var(--vw-base) , 60/var(--vw-base) * 1540px ) 0 0 0;
  padding: 3.4% 5%;
}
@media (max-width: 999px) {
  .yudetarou__content {
    margin-top: calc(min( 200 * 100vw / var(--vw-base) , 200/var(--vw-base) * 1540px ) * -1);
    padding: calc(32 / var(--inner) * 100%) 0;
  }
}
@media (max-width: 767px) {
  .yudetarou__content {
    margin-top: -23%;
    padding: 6% 0;
  }
}

.yudetarou__message {
  font-size: min( (15 * 100vw / var(--vw-base)) * var(--fz-ratio) , 15/var(--vw-base) * 1540px );
  font-weight: 300;
  line-height: 2;
  text-align: center;
}
@media (max-width: 999px) {
  .yudetarou__message {
    font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1540px );
  }
}

.yudetarou__logo {
  width: min( 224 * 100vw / var(--vw-base) , 224/var(--vw-base) * 1540px );
  margin: 0 auto;
  margin-top: min( 40 * 100vw / var(--vw-base) , 40/var(--vw-base) * 1540px );
}
@media screen and (max-width: 999px) {
  .yudetarou__logo {
    width: 40%;
    margin-top: 2%;
  }
}
@media (max-width: 767px) {
  .yudetarou__logo {
    width: min( 200 * 100vw / var(--vw-base) , 200/var(--vw-base) * 1540px );
  }
}

/*------------------------------
products
------------------------------*/
.products {
  padding: min( 116 * 100vw / var(--vw-base) , 116/var(--vw-base) * 1540px ) 0 min( 70 * 100vw / var(--vw-base) , 70/var(--vw-base) * 1540px );
}
@media screen and (max-width: 999px) {
  .products {
    padding: min( 130 * 100vw / var(--vw-base) , 130/var(--vw-base) * 1540px ) 0 min( 70 * 100vw / var(--vw-base) , 70/var(--vw-base) * 1540px );
  }
}
@media (max-width: 767px) {
  .products {
    padding: min( 135 * 100vw / var(--vw-base) , 135/var(--vw-base) * 1540px ) 0 min( 55 * 100vw / var(--vw-base) , 55/var(--vw-base) * 1540px );
  }
}

.products__list {
  margin-top: calc(40 / var(--inner) * 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 calc(72 / var(--inner) * 100%);
}
@media (max-width: 999px) {
  .products__list {
    gap: 0 calc(32 / var(--inner) * 100%);
    margin-top: 4%;
  }
}

.products-slider {
  margin-top: calc(32 / var(--inner) * 100%);
  position: relative;
}
.products-slider .swiper-button-prev,
.products-slider .swiper-button-next {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  height: auto;
  width: auto;
  position: absolute;
  background: url(../img/arrow2.svg) no-repeat center center/100%;
  aspect-ratio: 1/1;
  width: 14%;
  top: 42%;
}
.products-slider .swiper-button-prev::after,
.products-slider .swiper-button-next::after {
  display: none;
}
.products-slider .swiper-button-prev {
  left: 0.4%;
  transform: translate(0%, -50%) scale(-1, 1);
}
.products-slider .swiper-button-next {
  right: 0.4%;
  transform: translate(0%, -50%);
}
@media (max-width: 767px) {
  .products-slider .swiper-button-prev,
.products-slider .swiper-button-next {
    top: 27.5%;
  }
}

@media (max-width: 767px) {
  .productsSwiper {
    overflow: hidden;
  }
  .productsSwiper .swiper-slide {
    padding: 0 12%;
  }
}

.products__item {
  width: calc(33.3% - (72 / var(--inner) * 100%) * 2 / 3);
}
@media (max-width: 999px) {
  .products__item {
    width: calc(33.3% - (32 / var(--inner) * 100%) * 2 / 3);
  }
}

.products__name {
  font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1540px );
  font-weight: 400;
  color: #ACA197;
  text-align: center;
  margin-top: 0.5em;
  white-space: nowrap;
  padding-bottom: 0.7em;
  border-bottom: 1px solid #ACA197;
}
@media (max-width: 999px) {
  .products__name {
    height: calc(2lh + 0.7em);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .products__name {
    margin-top: 0.2em;
    line-height: 1.2;
    padding-bottom: 0;
  }
}

.products__description {
  font-size: min( (15 * 100vw / var(--vw-base)) * var(--fz-ratio) , 15/var(--vw-base) * 1540px );
  font-weight: 300;
  line-height: 2;
  margin-top: 1em;
}
@media (max-width: 999px) {
  .products__description {
    font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1540px );
  }
}
@media (max-width: 767px) {
  .products__description {
    line-height: 1.5;
  }
}

.products__banner {
  width: calc(487 / var(--inner) * 100%);
  margin: 0 auto;
  margin-top: calc(38 / var(--inner) * 100%);
}
@media (max-width: 999px) {
  .products__banner {
    width: calc(328 / var(--inner) * 100%);
    margin-top: 11%;
  }
}
@media (max-width: 767px) {
  .products__banner {
    margin-top: 9%;
    width: 100%;
  }
}
/*# sourceMappingURL=soba.css.map */