@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+Antique:wght@700&family=Zen+Maru+Gothic:wght@500;700;900&display=swap");
/*
  *  変数
  */
:root {
  --color-bg: #ffffff;
  --color-main: #31302f;
  --color-orange: #b84a00;
  --color-lightgreen: #74a920;
  --color-green: #0e6335;
  --color-darkgreen: #004700;
  --color-yellow: #f1cb30;
  --color-dullyellow: #ecd959;
  --color-text: #333333;
}

/*
  *  mixin
  */
@media screen and (min-width: 769px) {
  .agri-pc-only {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .agri-pc-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .agri-sp-only {
    display: block !important;
  }
}
@media screen and (min-width: 769px) {
  .agri-sp-only {
    display: none !important;
  }
}
#cntsWrap {
  padding-top: 0 !important;
}

.mainObi,
.breadcrumb,
footer {
  display: none !important;
}

.agriWrap {
  font-family: "Noto Sans JP", "Zen Kaku Gothic Antique", "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding-top: 80px;
}
@media screen and (max-width: 1000px) {
  .agriWrap {
    padding-top: 60px;
  }
}
.agriWrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.agriWrap ul {
  list-style: none;
}
.agriWrap a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.agriWrap img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  vertical-align: bottom;
}
.agriWrap .clipSvg {
  position: absolute;
  width: 0;
  height: 0;
}
.agriWrap a.rounded {
  display: block;
  background-color: #fff;
  color: var(--color-darkgreen);
  border-radius: 50px;
  border: 2px solid var(--color-darkgreen);
  padding: 10px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.agriWrap a.rounded .arrow {
  display: flex;
  width: 1em;
  height: 1em;
  background-color: var(--color-darkgreen);
  color: white;
  border-radius: 50px;
}
.agriWrap a.rounded .arrow:before {
  content: "";
  width: 30%;
  height: 30%;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg) translate(110%, 15%);
}
@media screen and (max-width: 768px) {
  .agriWrap a.rounded .arrow:before {
    transform: rotate(45deg) translate(90%, 15%);
  }
}
.agriWrap a.rounded.yellow {
  background-color: var(--color-dullyellow);
}
.agriWrap a.rounded.yellow .arrow:before {
  border-color: var(--color-dullyellow);
}
.agriWrap a.rounded:hover {
  background-color: var(--color-darkgreen);
  color: white;
}
.agriWrap a.rounded:hover .arrow {
  background-color: white;
}
.agriWrap a.rounded:hover .arrow:before {
  border-color: var(--color-darkgreen);
}
.agriWrap a.rounded.yellow:hover {
  color: var(--color-dullyellow);
}
.agriWrap a.rounded.yellow:hover .arrow {
  background-color: var(--color-dullyellow);
}
.agriWrap a.rounded.yellow:hover .arrow:before {
  border-color: var(--color-darkgreen);
}
.agriWrap .agriHeader {
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
}
@media screen and (max-width: 1000px) {
  .agriWrap .agriHeader {
    height: 60px;
  }
}
.agriWrap .agriHeader:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  bottom: 5px;
  border-top: 2px dotted #ab9c6d;
  z-index: 1;
}
.agriWrap .agriHeader_inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 1000px) {
  .agriWrap .agriHeader_inner {
    height: 60px;
    padding: 0;
  }
}
.agriWrap .agriHeader_logo {
  margin-left: 20px;
  margin-bottom: 6px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .agriWrap .agriHeader_logo {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap .agriHeader_logo {
    margin-bottom: 5px;
  }
}
.agriWrap .agriHeader_logo a {
  display: block;
  width: 200px;
  max-width: 200px;
  background-position: center bottom 5px;
}
@media screen and (max-width: 1400px) {
  .agriWrap .agriHeader_logo a {
    width: 150px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap .agriHeader_logo a {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap .agriHeader_logo a {
    width: 130px;
  }
}
.agriWrap .agriHeader_logo .logoBusinesstxt {
  position: absolute;
  right: -110px;
  bottom: 7px;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .agriWrap .agriHeader_logo .logoBusinesstxt {
    right: -95px;
    bottom: 3px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap .agriHeader_logo .logoBusinesstxt {
    right: -105px;
    bottom: 3px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap .agriHeader_logo .logoBusinesstxt {
    right: -80px;
    font-size: 12px;
  }
}
.agriWrap .agriHeader .navs {
  display: flex;
  align-items: center;
  gap: 0px;
}
.agriWrap .agriHeader .navs .pcnavs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1400px) {
  .agriWrap .agriHeader .navs .pcnavs {
    gap: 0.8vw;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap .agriHeader .navs .pcnavs {
    display: none;
  }
}
.agriWrap .agriHeader .navs .pcnavs li a {
  font-size: 1em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .agriWrap .agriHeader .navs .pcnavs li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .agriWrap .agriHeader .navs .pcnavs li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .agriWrap .agriHeader .navs .pcnavs li a {
    font-size: 12px;
  }
}
.agriWrap .agriHeader .navs .pcnavs li a:not(.rounded) {
  margin-right: 10px;
  color: var(--color-darkgreen);
}
@media screen and (max-width: 1400px) {
  .agriWrap .agriHeader .navs .pcnavs li a:not(.rounded) {
    margin-right: 0;
  }
}
.agriWrap .agriHeader .navs .pcnavs li a:not(.rounded):hover {
  color: var(--color-lightgreen);
}
.agriWrap .agriHeader .navs .pcnavs li a.rounded {
  border-radius: 50px;
  padding: 10px 15px;
  border: 1px solid var(--color-darkgreen);
}
.agriWrap .agriHeader .navs .hamburger {
  background-color: #5a8416;
  color: white;
  width: 60px;
  height: 60px;
  display: none;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .agriWrap .agriHeader .navs .hamburger {
    display: block;
  }
}
.agriWrap .agriHeader .navs .hamburger p {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  width: 100%;
  position: absolute;
  bottom: 9px;
  left: 0;
}
.agriWrap .agriHeader .navs .hamburger .bar span {
  height: 2px;
  width: 30px;
  display: block;
  margin: 10px auto;
  background-color: white;
  border-radius: 0px;
  transition: 0.4s;
  position: absolute;
  left: 15px;
}
.agriWrap .agriHeader .navs .hamburger .bar span:nth-of-type(1) {
  top: 3px;
  transition: top 0.3s ease, transform 0.3s ease-out;
}
.agriWrap .agriHeader .navs .hamburger .bar span:nth-of-type(2) {
  top: 12px;
  transition: top 0.3s ease, opacity 0.3s ease, transform 0.3s ease-out;
}
.agriWrap .agriHeader .navs .hamburger .bar span:nth-of-type(3) {
  top: 21px;
  transition: top 0.3s ease, opacity 0.3s ease, transform 0.3s ease-out;
}
.agriWrap .contentInner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .agriWrap .contentInner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 600px;
  }
}
.agriWrap section {
  padding: 5vw 0;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .agriWrap section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap section {
    padding: 100px 0;
  }
}
.agriWrap section.bgBeige {
  background: url("/img/agri-sim/bg-beige.webp") repeat center center;
  background-size: 26vw;
}
.agriWrap section.bgGreen {
  background: url("/img/agri-sim/bg-green.webp") repeat center center;
  background-size: 26vw;
}
.agriWrap section.bgBlue {
  background: url("/img/agri-sim/bg-blue.webp") repeat center center;
  background-size: 26vw;
}
.agriWrap section.bgDarkblue {
  background: url("/img/agri-sim/bg-darkblue.webp") repeat center center;
  background-size: 26vw;
}
.agriWrap section .sectionHeader {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3vw;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .agriWrap section .sectionHeader {
    padding: 0;
    margin-bottom: 50px;
  }
}
.agriWrap section .sectionHeader:before {
  content: "";
  display: block;
  width: 63px;
  height: 32px;
  background: url(/img/agri-sim/icon-radio-animate.gif) no-repeat center center/contain;
  margin: 0 auto 0px;
}
.agriWrap section .sectionHeader h2 {
  color: var(--color-green);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 52px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1400px) {
  .agriWrap section .sectionHeader h2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap section .sectionHeader h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap section .sectionHeader h2 {
    font-size: 35px;
  }
}
.agriWrap section .sectionHeader p {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
}
.agriWrap section .sectionHeader p.centered {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .agriWrap section .sectionHeader p.sp-alignleft {
    text-align: justify;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap section .sectionHeader p {
    font-size: 1.6923076923vw;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap section .sectionHeader p {
    font-size: 16px;
    line-height: 1.7;
  }
}
.agriWrap section .sectionBottomNav {
  position: relative;
  margin: 2vw auto 0;
  width: 80%;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .agriWrap section .sectionBottomNav {
    width: 100%;
  }
}
.agriWrap section .sectionBottomNav:before {
  content: "";
  display: block;
  width: 135px;
  height: 138px;
  background: url(/img/agri-sim/bottomnav_icon.png) no-repeat center center/contain;
  margin: 0 auto 0px;
  position: absolute;
  bottom: 20px;
  left: -115px;
}
@media screen and (max-width: 1400px) {
  .agriWrap section .sectionBottomNav:before {
    width: 130px;
    left: -90px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap section .sectionBottomNav:before {
    width: 130px;
    left: -90px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap section .sectionBottomNav:before {
    position: relative;
    width: 130px;
    height: 150px;
    top: 0;
    left: 0;
    margin: 0 auto;
  }
}
.agriWrap section .sectionBottomNav p {
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  color: var(--color-darkgreen);
  font-size: 23px;
  padding: 30px;
  display: flex;
  gap: 0px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
@media screen and (max-width: 1400px) {
  .agriWrap section .sectionBottomNav p {
    font-size: 1.9230769231vw;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap section .sectionBottomNav p {
    gap: 10px;
    font-size: 17px;
    padding: 10px;
    margin-bottom: 10px;
  }
}
.agriWrap section .sectionBottomNav p:before {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  border-left: 3px solid var(--color-darkgreen);
  transform-origin: bottom right;
  transform: rotate(-30deg);
}
@media screen and (max-width: 1400px) {
  .agriWrap section .sectionBottomNav p:before {
    height: 65px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap section .sectionBottomNav p:before {
    height: 50px;
  }
}
.agriWrap section .sectionBottomNav p:after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  border-left: 3px solid var(--color-darkgreen);
  transform-origin: bottom left;
  transform: rotate(30deg);
}
@media screen and (max-width: 1400px) {
  .agriWrap section .sectionBottomNav p:after {
    height: 65px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap section .sectionBottomNav p:after {
    height: 50px;
  }
}
.agriWrap section .sectionBottomNav ul {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .agriWrap section .sectionBottomNav ul {
    flex-direction: column;
    align-items: center;
  }
}
.agriWrap section .sectionBottomNav ul li {
  width: 100%;
}
.agriWrap section .sectionBottomNav ul li a {
  padding: 0.5em;
  font-weight: 700;
  font-size: 28px;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .agriWrap section .sectionBottomNav ul li a {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap section .sectionBottomNav ul li a {
    font-size: 1.5em;
  }
}
@keyframes droneMove {
  0% {
    offset-distance: 0;
  }
  100% {
    offset-distance: 100%;
  }
}
.agriWrap #mv {
  width: 100%;
  height: 630px;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 3vw;
  padding-bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv {
    height: 520px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv {
    padding-top: 20px;
    height: 420px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    height: auto;
  }
}
.agriWrap #mv .bottomBorder {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  transform: translate(0px, 99%);
  z-index: 0;
}
.agriWrap #mv .bottomBorder img {
  width: 100%;
  height: auto;
}
.agriWrap #mv .contentInner {
  width: 1350px;
  padding: 0;
  max-width: none;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .contentInner {
    padding: 0;
    width: 1300px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .contentInner {
    width: 1150px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .contentInner {
    width: 100%;
    padding: 0;
  }
}
.agriWrap #mv .drone {
  position: absolute;
  width: 160px;
  top: 0;
  right: 0;
  z-index: 6;
  offset-path: ellipse(10% 10% at right 15% top 20%);
  motion-offset: 100%;
  offset-rotate: 10deg;
  offset-distance: 0;
  animation: droneMove 5s linear infinite;
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .drone {
    width: 120px;
    offset-path: ellipse(10% 10% at right 15% top 20%);
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .drone {
    width: 17%;
    offset-path: ellipse(15% 5% at right 25% top 60%);
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #mv .drone {
    offset-path: ellipse(15% 5% at right 25% top 52%);
  }
}
.agriWrap #mv .drone img {
  width: 100%;
  height: auto;
}
.agriWrap #mv .info {
  position: relative;
  z-index: 1;
  height: 630px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url(/img/agri-sim/mv-base.svg) no-repeat left center;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .info {
    padding-top: 30px;
    height: 600px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info {
    height: 480px;
    background-size: auto 480px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .info {
    padding-top: 0;
    width: 100%;
    height: 500px;
    background: url(/img/agri-sim/mv-base-sp.svg) no-repeat center center;
    background-size: auto 500px;
  }
}
@media screen and (max-width: 480px) {
  .agriWrap #mv .info {
    height: 420px;
    background-size: auto 420px;
  }
}
.agriWrap #mv .info .baloon {
  position: absolute;
  top: -20px;
  left: 80px;
  z-index: 5;
  width: 128px;
  height: 128px;
  border-radius: 100px;
  background-color: var(--color-darkgreen);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  font-size: 27px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--color-dullyellow);
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .info .baloon {
    width: 120px;
    height: 120px;
    left: 100px;
    font-size: 25px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .baloon {
    top: 10px;
    left: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .info .baloon {
    top: -10px;
    left: calc(50% - 250px);
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #mv .info .baloon {
    width: 90px;
    height: 90px;
    font-size: 18px;
  }
}
@media screen and (max-width: 573px) {
  .agriWrap #mv .info .baloon {
    top: -20px;
    left: 20px;
  }
}
.agriWrap #mv .info .texts {
  width: 600px;
  padding-left: 100px;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .info .texts {
    width: 600px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .texts {
    width: 550px;
    padding-left: 110px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .info .texts {
    margin: 70px auto auto;
    padding: 0 30px;
    max-width: 500px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .agriWrap #mv .info .texts {
    margin-top: 40px;
  }
}
.agriWrap #mv .info .texts .icon {
  width: 119px;
  height: 62px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .info .texts .icon {
    /*width: 80px;
    height: 50px;
    margin-bottom: 5px;*/
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .texts .icon {
    width: 60px;
    height: 40px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .info .texts .icon {
    width: 80px;
    height: 50px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .agriWrap #mv .info .texts .icon {
    width: 50px;
    height: 30px;
  }
}
.agriWrap #mv .info .texts .icon img {
  width: 100%;
  height: auto;
}
.agriWrap #mv .info .texts .catch {
  font-size: 25px;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .info .texts .catch {
    font-size: 25px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .texts .catch {
    font-size: 23px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .info .texts .catch {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .agriWrap #mv .info .texts .catch {
    font-size: 16px;
  }
}
.agriWrap #mv .info .texts h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 105px;
  color: white;
  line-height: 1;
  margin-bottom: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .info .texts h1 {
    font-size: 105px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .texts h1 {
    font-size: 90px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .info .texts h1 {
    font-size: 68px;
  }
}
@media screen and (max-width: 480px) {
  .agriWrap #mv .info .texts h1 {
    font-size: 58px;
  }
}
.agriWrap #mv .info .texts .desc {
  text-align: justify;
  font-size: 20px;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .info .texts .desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .texts .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .info .texts .desc {
    display: none;
  }
}
.agriWrap #mv .info .texts .infoNav {
  display: flex;
  gap: 10px;
  margin: 30px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .texts .infoNav {
    justify-content: flex-start;
    margin: 15px 0 0;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .info .texts .infoNav {
    display: none;
  }
}
.agriWrap #mv .info .texts .infoNav li {
  flex-grow: 1;
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .texts .infoNav li {
    flex-grow: 0;
  }
}
.agriWrap #mv .info .texts .infoNav li a {
  padding: 15px 20px;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .info .texts .infoNav li a {
    padding: 10px 15px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #mv .info .texts .infoNav li a {
    font-size: 18px;
  }
}
.agriWrap #mv .info .texts .infoNav li a .arrow:before {
  transform: rotate(45deg) translate(90%, 15%);
}
.agriWrap #mv .visual {
  position: absolute;
  z-index: 5;
  width: 700px;
  bottom: -100px;
  right: 0;
  pointer-events: none;
}
.agriWrap #mv .visual .agri-pc-only {
  display: block;
}
.agriWrap #mv .visual .agri-sp-only {
  display: none;
}
@media screen and (max-width: 1600px) {
  .agriWrap #mv .visual {
    width: 650px;
    bottom: 0px;
    right: 0px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #mv .visual {
    width: 550px;
    bottom: -20px;
    right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .visual {
    position: relative;
    max-width: 600px;
    margin: auto;
    width: 100%;
    padding: 0 5%;
    bottom: auto;
    right: auto;
    margin-top: -220px;
  }
  .agriWrap #mv .visual .agri-pc-only {
    display: none !important;
  }
  .agriWrap #mv .visual .agri-sp-only {
    display: block !important;
  }
}
.agriWrap #mv .sp-texts {
  padding: 20px 30px;
  max-width: 600px;
  margin: auto;
  display: none;
}
@media screen and (max-width: 1000px) {
  .agriWrap #mv .sp-texts {
    display: block;
  }
}
.agriWrap #mv .sp-texts .desc {
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.7;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
}
.agriWrap #mv .sp-texts .infoNav {
  width: 80%;
  margin: 0 auto;
}
.agriWrap #mv .sp-texts .infoNav li {
  margin-bottom: 10px;
}
.agriWrap #mv .sp-texts .infoNav a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
}
.agriWrap #about {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media screen and (max-width: 1400px) {
  .agriWrap #about {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #about {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about {
    padding-top: 20vw;
    padding-bottom: 25vw;
  }
}
.agriWrap #about .borderIcon1 {
  position: absolute;
  text-align: center;
  bottom: 0vw;
  right: 10%;
  width: 200px;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .agriWrap #about .borderIcon1 {
    width: 150px;
    right: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #about .borderIcon1 {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about .borderIcon1 {
    width: 100px;
    bottom: 10px;
  }
}
.agriWrap #about .borderIcon1 img {
  width: 100%;
  height: auto;
}
.agriWrap #about .borderIcon2 {
  position: absolute;
  text-align: center;
  bottom: -140px;
  right: calc(50% - 400px);
  width: 145px;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .agriWrap #about .borderIcon2 {
    bottom: -130px;
    width: 120px;
    right: 15%;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #about .borderIcon2 {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about .borderIcon2 {
    width: 70px;
    bottom: -70px;
    right: calc(50% - 170px);
  }
}
.agriWrap #about .borderIcon2 img {
  width: 100%;
  height: auto;
}
.agriWrap #about .borderIcon3 {
  position: absolute;
  text-align: center;
  bottom: -160px;
  left: calc(50% - 330px);
  width: 87px;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .agriWrap #about .borderIcon3 {
    bottom: -120px;
    width: 70px;
    left: 20%;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #about .borderIcon3 {
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about .borderIcon3 {
    width: 50px;
    left: calc(50% - 170px);
    bottom: -40px;
  }
}
.agriWrap #about .borderIcon3 img {
  width: 100%;
  height: auto;
}
.agriWrap #about .benefitList {
  display: flex;
  gap: 20px;
  padding-top: 2vw;
}
@media screen and (max-width: 768px) {
  .agriWrap #about .benefitList {
    flex-direction: column;
    gap: 50px;
    max-width: 350px;
    margin: 0 auto;
  }
}
.agriWrap #about .benefitList .benefitItem {
  position: relative;
  text-align: center;
  padding: 50px 2.5vw 3vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .agriWrap #about .benefitList .benefitItem {
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about .benefitList .benefitItem {
    padding: 30px 40px 30px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.agriWrap #about .benefitList .benefitItem .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
.agriWrap #about .benefitList .benefitItem .index {
  font-size: 90px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  color: var(--color-lightgreen);
  position: absolute;
  top: -10px;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1400px) {
  .agriWrap #about .benefitList .benefitItem .index {
    font-size: 6.9230769231vw;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about .benefitList .benefitItem .index {
    top: 0;
    font-size: 70px;
    font-weight: 700;
  }
}
.agriWrap #about .benefitList .benefitItem h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: var(--color-darkgreen);
  margin-bottom: 10px;
  margin-top: 10px;
  white-space: nowrap;
}
.agriWrap #about .benefitList .benefitItem h3 strong {
  font-size: 1.7em;
  line-height: 0;
  padding: 0 3px;
}
.agriWrap #about .benefitList .benefitItem h3 small {
  font-size: 0.6em;
}
@media screen and (max-width: 1400px) {
  .agriWrap #about .benefitList .benefitItem h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #about .benefitList .benefitItem h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about .benefitList .benefitItem h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.agriWrap #about .benefitList .benefitItem .ph {
  margin-bottom: 1vw;
}
.agriWrap #about .benefitList .benefitItem .ph img {
  max-width: 95px;
}
@media screen and (max-width: 1400px) {
  .agriWrap #about .benefitList .benefitItem .ph img {
    width: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #about .benefitList .benefitItem .ph img {
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about .benefitList .benefitItem .ph img {
    width: 100px;
  }
}
.agriWrap #about .benefitList .benefitItem p {
  font-weight: 400;
  text-align: justify;
  font-size: 16px;
  padding: 0 0px;
  display: block;
  margin: auto;
}
@media screen and (max-width: 1400px) {
  .agriWrap #about .benefitList .benefitItem p {
    padding: 0 5px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #about .benefitList .benefitItem p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #about .benefitList .benefitItem p {
    margin: 0;
    padding: 0;
    font-size: 16px;
  }
}
.agriWrap #usecase {
  margin-top: -50px;
  padding-top: 70px;
  padding-bottom: 12vw;
}
@media screen and (max-width: 1000px) {
  .agriWrap #usecase {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #usecase {
    padding-top: 50px;
  }
}
.agriWrap #usecase .sectionHeader {
  margin-bottom: 0;
}
.agriWrap #usecase .sceneList {
  display: flex;
  gap: 50px;
  padding-bottom: 3vw;
  margin-top: -2vw;
}
@media screen and (max-width: 768px) {
  .agriWrap #usecase .sceneList {
    flex-direction: column;
    margin: 0 auto;
    gap: 20px;
    max-width: 350px;
  }
}
.agriWrap #usecase .sceneList .sceneItem {
  position: relative;
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 2;
}
.agriWrap #usecase .sceneList .sceneItem .ph {
  position: relative;
}
.agriWrap #usecase .sceneList .sceneItem .ph img {
  width: 100%;
  height: auto;
}
.agriWrap #usecase .sceneList .sceneItem .ph:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3vw;
  height: 5vw;
  transform: translate(-50%, 80%);
}
@media screen and (max-width: 768px) {
  .agriWrap #usecase .sceneList .sceneItem .ph:after {
    display: none;
  }
}
.agriWrap #usecase .sceneList .sceneItem:nth-child(1) .ph:after {
  background: url(/img/agri-sim/fukidashi-left.svg) no-repeat center center/contain;
}
.agriWrap #usecase .sceneList .sceneItem:nth-child(2) {
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  .agriWrap #usecase .sceneList .sceneItem:nth-child(2) {
    margin-top: 0;
  }
}
.agriWrap #usecase .sceneList .sceneItem:nth-child(2) .ph:after {
  background: url(/img/agri-sim/fukidashi-center.svg) no-repeat center center/contain;
}
.agriWrap #usecase .sceneList .sceneItem:nth-child(3) .ph:after {
  background: url(/img/agri-sim/fukidashi-right.svg) no-repeat center center/contain;
}
.agriWrap #usecase .cloudIcon {
  position: absolute;
  bottom: 9vw;
  right: calc(50% - 700px);
  width: 233px;
  height: auto;
}
.agriWrap #usecase .cloudIcon img {
  width: 100%;
  height: auto;
}
.agriWrap #plan {
  padding: 0 0 3vw;
}
.agriWrap #plan .sectionHeader {
  padding-top: 5vw;
}
.agriWrap #plan .sectionHeader::before {
  margin-top: -70px;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .sectionHeader::before {
    margin-top: -70px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .sectionHeader::before {
    margin-top: 0px;
  }
}
.agriWrap #plan .upperBorder {
  position: absolute;
  top: 0;
  transform: translate(0px, -99%);
  z-index: 0;
  width: 100%;
}
.agriWrap #plan .upperBorder img {
  width: 100%;
  height: auto;
}
.agriWrap #plan .borderIcon1 {
  position: absolute;
  text-align: center;
  top: -7vw;
  left: 8vw;
  width: 100px;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .borderIcon1 {
    width: 80px;
    top: -90px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .borderIcon1 {
    width: 70px;
    top: -80px;
  }
}
.agriWrap #plan .borderIcon1 img {
  width: 100%;
  height: auto;
}
.agriWrap #plan .borderIcon2 {
  position: absolute;
  text-align: center;
  top: -9vw;
  right: 8vw;
  width: 150px;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .borderIcon2 {
    width: 120px;
    top: -120px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .borderIcon2 {
    width: 100px;
    top: -100px;
  }
}
.agriWrap #plan .borderIcon2 img {
  width: 100%;
  height: auto;
}
.agriWrap #plan .bottomBorder {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translate(0px, 99%);
  z-index: 1;
}
.agriWrap #plan .bottomBorder img {
  width: 100%;
  height: auto;
}
.agriWrap #plan .planList {
  display: flex;
  gap: 2vw;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList {
    flex-direction: column;
    gap: 20px;
  }
}
.agriWrap #plan .planList .planItem {
  border-radius: 3vw;
  background-color: #8da7d7;
  padding: 2vw;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .planItem {
    width: 100%;
    padding: 20px;
  }
}
.agriWrap #plan .planList .planItem .catch {
  color: #333333;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 1vw;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .planItem .catch {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .planItem .catch {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .planItem .catch {
    margin-bottom: 10px;
  }
}
.agriWrap #plan .planList .planItem .title {
  background-color: #fff;
  border-radius: 2vw;
  filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.3));
  padding: 1.5vw;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .planItem .title {
    padding: 15px 5px;
    filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.3));
    margin-bottom: 20px;
  }
}
.agriWrap #plan .planList .planItem .title h3 {
  color: #0041a0;
  font-size: 35px;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .planItem .title h3 {
    font-size: 35px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .planItem .title h3 {
    font-size: 25px;
  }
}
.agriWrap #plan .planList .planItem .title h3 strong {
  padding: 0 10px;
  font-weight: 600;
  color: white;
}
.agriWrap #plan .planList .planItem .title h3 span {
  font-size: 1.2em;
  padding: 5px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.agriWrap #plan .planList .planItem .title h3 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.12em;
  width: 1.5em;
  height: 1.5em;
  background-color: #0041a0;
  z-index: -1;
  border-radius: 100px;
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .planItem .title h3 span::before {
    left: -0.05em;
    top: 0.1em;
  }
}
.agriWrap #plan .planList .planItem .title h3 small {
  font-size: 0.7em;
}
.agriWrap #plan .planList .planItem .title p {
  font-size: 17px;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .planItem .title p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .planItem .title p {
    font-size: 14px;
  }
}
.agriWrap #plan .planList .planItem .graph {
  background-color: #cad5e8;
  position: relative;
  height: 0;
  padding-top: 60%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .planItem .graph {
    margin-bottom: 30px;
  }
}
.agriWrap #plan .planList .planItem .graph .graphInner {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.agriWrap #plan .planList .planItem .graph .baloon {
  position: absolute;
  width: 130px;
  height: 130px;
  top: 5%;
  left: 5%;
  text-align: center;
  color: white;
  background-color: #0041a0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .planItem .graph .baloon {
    width: 100px;
    height: 100px;
    font-size: 20px;
  }
}
.agriWrap #plan .planList .planItem .graph .baloon .text {
  padding-bottom: 0.2em;
}
.agriWrap #plan .planList .planItem .graph .baloon small {
  font-size: 0.7em;
  display: inline-block;
}
.agriWrap #plan .planList .planItem .graph .baloon span {
  color: var(--color-dullyellow);
  font-size: 1.2em;
}
.agriWrap #plan .planList .planItem .graph .bars {
  display: flex;
  gap: 10px;
  height: 100%;
  margin-right: -10px;
  padding: 10px 10px 0;
}
.agriWrap #plan .planList .planItem .graph .bars .bar {
  height: 100%;
  width: calc(16.6666666667% - 10px);
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.agriWrap #plan .planList .planItem .graph .bars .bar p {
  font-weight: 800;
  text-align: center;
  margin-bottom: 5px;
  font-size: 16px;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .planItem .graph .bars .bar p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .planItem .graph .bars .bar p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .planItem .graph .bars .bar p {
    font-size: 11px;
  }
}
.agriWrap #plan .planList .planItem .graph .bars .bar p small {
  font-weight: 400;
  font-size: 0.7em;
  padding-left: 2px;
}
.agriWrap #plan .planList .planItem .graph .bars .bar .barInner {
  background-color: #0041a0;
}
.agriWrap #plan .planList .planItem .graph .bars .bar .legend {
  position: absolute;
  bottom: -1.5em;
  right: 0;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .planItem .graph .bars .bar .legend {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .planItem .graph .bars .bar .legend {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .planItem .graph .bars .bar .legend {
    font-size: 11px;
  }
}
.agriWrap #plan .planList .planItem .graph .bars .bar .legend small {
  font-size: 0.8em;
}
.agriWrap #plan .planList .planItem.teigaku {
  background-color: var(--color-dullyellow);
}
.agriWrap #plan .planList .planItem.teigaku .title h3 {
  color: #664838;
}
.agriWrap #plan .planList .planItem.teigaku .title h3 strong span:before {
  background-color: #664838;
}
.agriWrap #plan .planList .planItem.teigaku .graph {
  margin-bottom: 3em;
  position: relative;
  background-color: #eae6da;
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .planItem.teigaku .graph {
    margin-bottom: 20px;
  }
}
.agriWrap #plan .planList .planItem.teigaku .graph .baloon {
  background-color: #664838;
  left: 50%;
  transform: translateX(-50%);
}
.agriWrap #plan .planList .planItem.teigaku .graph .arrow {
  position: absolute;
  width: calc(100% - 40px);
  height: 20px;
  bottom: 40%;
  left: 0;
  background-color: #664838;
  z-index: 2;
}
.agriWrap #plan .planList .planItem.teigaku .graph .arrow:before {
  content: "";
  position: absolute;
  right: -39px;
  top: 10px;
  width: 40px;
  height: 40px;
  background-color: #664838;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 3;
}
.agriWrap #plan .planList .planItem.teigaku .graph:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(40% + 10px);
  bottom: 0;
  left: 0;
  background-color: #ab9c6d;
  z-index: 1;
}
.agriWrap #plan .planList .planItem.teigaku .graph p {
  position: absolute;
  bottom: 13%;
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 27px;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .planItem.teigaku .graph p {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .planItem.teigaku .graph p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .planItem.teigaku .graph p {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .agriWrap #plan .planList .planItem.teigaku .graph p {
    font-size: 20px;
  }
}
.agriWrap #plan .planList .planItem.teigaku .priceList dl.recommended .osusume {
  background: url("/img/agri-sim/osusume-teigaku.svg") no-repeat center center/contain;
}
.agriWrap #plan .planList .planItem.teigaku .priceList dl dt {
  background-color: #866e62;
}
.agriWrap #plan .planList .planItem.teigaku .priceList dl dt:after {
  background-color: #866e62;
}
.agriWrap #plan .planList .planItem.teigaku .priceList dl dd {
  background-color: #d8d0ba;
}
.agriWrap #plan .planList .planItem.teigaku .priceList dl:nth-child(even) dt {
  background-color: #a39188;
}
.agriWrap #plan .planList .planItem.teigaku .priceList dl:nth-child(even) dt:after {
  background-color: #a39188;
}
.agriWrap #plan .planList .planItem.teigaku .priceList dl:nth-child(even) dd {
  background-color: #eae6da;
}
.agriWrap #plan .planList .priceList {
  margin-bottom: 10px;
}
.agriWrap #plan .planList .priceList dl {
  display: flex;
  width: 100%;
  position: relative;
}
.agriWrap #plan .planList .priceList dl.recommended .osusume {
  position: absolute;
  right: -60px;
  top: calc(50% - 40px);
  width: 106px;
  height: 80px;
  background: url("/img/agri-sim/osusume-juryo.svg") no-repeat center center/contain;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .priceList dl.recommended .osusume {
    width: 150px;
    height: 80px;
    right: -80px;
    top: calc(50% - 40px);
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .priceList dl.recommended .osusume {
    width: 120px;
    height: 60px;
    right: -60px;
    top: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .priceList dl.recommended .osusume {
    width: 110px;
    height: 50px;
    right: -60px;
    top: calc(50% - 25px);
  }
}
.agriWrap #plan .planList .priceList dl dt {
  width: 40%;
  background-color: #0041a0;
  padding: 10px;
  color: white;
  text-align: right;
  font-weight: 700;
  font-size: 30px;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .priceList dl dt {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .priceList dl dt {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .priceList dl dt {
    padding: 5px 10px;
  }
}
.agriWrap #plan .planList .priceList dl dt:after {
  position: absolute;
  right: calc(-15% + 1px);
  bottom: 0;
  content: "";
  display: block;
  width: 15%;
  height: 100%;
  background-color: #0041a0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.agriWrap #plan .planList .priceList dl dt small {
  font-size: 0.7em;
}
.agriWrap #plan .planList .priceList dl dd {
  background-color: #cad5e8;
  width: 60%;
  text-align: right;
  padding: 10px 15% 10px;
  font-size: 30px;
  font-weight: 800;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .agriWrap #plan .planList .priceList dl dd {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan .planList .priceList dl dd {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #plan .planList .priceList dl dd {
    padding: 5px 15% 5px 10px;
  }
}
.agriWrap #plan .planList .priceList dl dd small {
  font-size: 0.7em;
  font-weight: 400;
}
.agriWrap #plan .planList .priceList dl:nth-child(even) dt {
  background-color: #668dd3;
}
.agriWrap #plan .planList .priceList dl:nth-child(even) dt:after {
  background-color: #668dd3;
}
.agriWrap #plan .planList .priceList dl:nth-child(even) dd {
  background-color: #acbedf;
}
.agriWrap #plan p.note {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .agriWrap #plan p.note {
    font-size: 12px;
  }
}
.agriWrap #plan p.note.centered {
  text-align: center;
}
.agriWrap #plan p.note.centered a {
  color: #0072ce;
  text-decoration: underline;
}
.agriWrap #plan p.note.centered a:hover {
  text-decoration: none;
}
.agriWrap #case .sectionBottomNavWrap,
.agriWrap #service .sectionBottomNavWrap,
.agriWrap #support .sectionBottomNavWrap {
  padding: 0 50px;
}
@media screen and (max-width: 1000px) {
  .agriWrap #case .sectionBottomNavWrap,
  .agriWrap #service .sectionBottomNavWrap,
  .agriWrap #support .sectionBottomNavWrap {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #case .sectionBottomNavWrap .sectionBottomNav,
  .agriWrap #service .sectionBottomNavWrap .sectionBottomNav,
  .agriWrap #support .sectionBottomNavWrap .sectionBottomNav {
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .sectionBottomNavWrap {
    padding: 0 30px;
  }
}
.agriWrap #case {
  padding-top: 12vw;
  padding-bottom: 20vw;
}
@media screen and (max-width: 768px) {
  .agriWrap #case {
    padding-top: 20vw;
    padding-bottom: 30vw;
  }
}
.agriWrap #case .borderIcon1 {
  position: absolute;
  text-align: center;
  top: 200px;
  right: calc(50% - 500px);
  width: 180px;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .agriWrap #case .borderIcon1 {
    bottom: -150px;
    width: 150px;
    right: 13%;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #case .borderIcon1 {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #case .borderIcon1 {
    width: 75px;
    top: 50px;
    bottom: auto;
    right: 5%;
  }
}
.agriWrap #case .borderIcon1 img {
  width: 100%;
  height: auto;
}
.agriWrap #case .cloudIcon {
  position: absolute;
  top: 200px;
  left: calc(50% - 600px);
  width: 233px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .agriWrap #case .cloudIcon {
    width: 100px;
    top: 50px;
    bottom: auto;
    left: 5%;
  }
}
.agriWrap #case .cloudIcon img {
  width: 100%;
  height: auto;
}
.agriWrap #case .contentInner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1000px) {
  .agriWrap #case .contentInner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #case .sectionHeader {
    margin-bottom: 0;
  }
  .agriWrap #case .sectionHeader p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #case .caseItem {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #service {
    padding-top: 60px;
  }
}
.agriWrap #service .upperBorder {
  position: absolute;
  top: 0;
  width: 100%;
  transform: translate(0px, -99%);
  z-index: 0;
}
.agriWrap #service .upperBorder img {
  width: 100%;
  height: auto;
}
.agriWrap #service .borderIcon {
  position: absolute;
  text-align: center;
  top: -13vw;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .agriWrap #service .borderIcon {
    top: -20vw;
  }
}
.agriWrap #service .borderIcon img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1400px) {
  .agriWrap #service .borderIcon img {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #service .borderIcon img {
    width: 80%;
    max-width: 400px;
  }
}
.agriWrap #service .contentInner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1000px) {
  .agriWrap #service .contentInner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.agriWrap #service .sectionHeader {
  max-width: none;
}
@media screen and (max-width: 768px) {
  .agriWrap #service .sectionHeader {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #service .sectionHeader p {
    margin-bottom: 0;
  }
}
.agriWrap #service .swiper-pagination-bullet {
  background-color: #c0c0c0;
}
.agriWrap #service .swiper-pagination-bullet-active {
  background-color: var(--color-darkgreen);
}
@media screen and (max-width: 768px) {
  .agriWrap #service .caseItem {
    width: 100%;
  }
}
.agriWrap .case-swiper {
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 40px;
  height: 550px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .agriWrap .case-swiper {
    max-width: 600px;
    height: auto;
    padding-bottom: 80px;
  }
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide.swiper-slide-next .caseItem .ph {
  transform: scale(1.2);
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .agriWrap .case-swiper .swiper-wrapper .swiper-slide.swiper-slide-next .caseItem .ph {
    transform: none;
    margin-bottom: 20px;
  }
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide.swiper-slide-next .caseItem h3 {
  font-size: 31px;
}
@media screen and (max-width: 1000px) {
  .agriWrap .case-swiper .swiper-wrapper .swiper-slide.swiper-slide-next .caseItem h3 {
    font-size: 21px;
  }
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide.swiper-slide-next .caseItem p {
  padding: 0;
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide .caseItem {
  padding: 20px;
}
@media screen and (max-width: 1400px) {
  .agriWrap .case-swiper .swiper-wrapper .swiper-slide .caseItem {
    padding: 20px;
  }
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide .caseItem .ph {
  margin-bottom: 20px;
  transition: 0.5s;
  transform-origin: center center;
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide .caseItem .ph img {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 1000px) {
  .agriWrap .case-swiper .swiper-wrapper .swiper-slide .caseItem {
    width: 80%;
    padding: 0 10px;
    margin: 0 auto;
  }
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 0.2em;
  color: var(--color-darkgreen);
}
@media screen and (max-width: 1000px) {
  .agriWrap .case-swiper .swiper-wrapper .swiper-slide h3 {
    font-size: 20px;
  }
}
.agriWrap .case-swiper .swiper-wrapper .swiper-slide p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  line-height: 1.6;
  padding: 0 10px;
}
@media screen and (max-width: 1000px) {
  .agriWrap .case-swiper .swiper-wrapper .swiper-slide p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap .case-swiper .swiper-wrapper .swiper-slide p {
    font-size: 14px;
    padding: 0px;
  }
}
.agriWrap .case-swiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
.agriWrap .case-swiper .swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
}
.agriWrap .case-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-darkgreen);
}
.agriWrap .swiper-outer {
  position: relative;
  z-index: 1;
  padding: 0px;
}
@media screen and (max-width: 1400px) {
  .agriWrap .swiper-outer {
    padding: 0 40px;
  }
}
.agriWrap .swiper-outer .swiper-button-next,
.agriWrap .swiper-outer .swiper-button-prev {
  top: 24%;
  width: 38px;
  height: 38px;
}
@media screen and (max-width: 1600px) {
  .agriWrap .swiper-outer .swiper-button-next,
  .agriWrap .swiper-outer .swiper-button-prev {
    top: 29%;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap .swiper-outer .swiper-button-next,
  .agriWrap .swiper-outer .swiper-button-prev {
    top: 22%;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap .swiper-outer .swiper-button-next,
  .agriWrap .swiper-outer .swiper-button-prev {
    top: 30%;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap .swiper-outer .swiper-button-next,
  .agriWrap .swiper-outer .swiper-button-prev {
    top: 20%;
    width: 30px;
    height: 30px;
  }
}
.agriWrap .swiper-outer .swiper-button-prev {
  left: -40px;
  background: url("/img/agri-sim/prevbt.svg") no-repeat center center/contain;
}
@media screen and (max-width: 1400px) {
  .agriWrap .swiper-outer .swiper-button-prev {
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap .swiper-outer .swiper-button-prev {
    left: 0px;
  }
}
.agriWrap .swiper-outer .swiper-button-next {
  right: -40px;
  background: url("/img/agri-sim/nextbt.svg") no-repeat center center/contain;
}
@media screen and (max-width: 1400px) {
  .agriWrap .swiper-outer .swiper-button-next {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap .swiper-outer .swiper-button-next {
    right: 0px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #support {
    padding-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .upperBorder,
  .agriWrap #support .bottomBorder {
    display: block !important;
  }
}
.agriWrap #support .upperBorder img,
.agriWrap #support .bottomBorder img {
  width: 100%;
  height: auto;
}
.agriWrap #support .upperBorder {
  margin-bottom: -1px;
}
.agriWrap #support .bottomBorder {
  margin-top: -1px;
}
.agriWrap #support .contentInner {
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .contentInner {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}
.agriWrap #support .sectionHeader {
  margin-bottom: 0;
  padding-top: 30px;
}
@media screen and (max-width: 1400px) {
  .agriWrap #support .sectionHeader {
    padding-top: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .sectionHeader {
    margin-top: -15vw;
    margin-bottom: 15px;
    max-width: 500px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1400px) {
  .agriWrap #support .sectionHeader p {
    margin-bottom: 0;
  }
}
.agriWrap #support .bgBlock {
  background: url(/img/agri-sim/base-support.svg) no-repeat center top/contain;
  padding: 35px 0;
  height: 800px;
}
@media screen and (max-width: 1400px) {
  .agriWrap #support .bgBlock {
    height: 750px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .bgBlock {
    background: #b3c407;
    position: relative;
    padding: 30px 0;
    height: auto;
  }
}
.agriWrap #support .supportList {
  display: flex;
  gap: 20px;
  width: 983px;
  margin: auto;
}
@media screen and (max-width: 1400px) {
  .agriWrap #support .supportList {
    width: 950px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .supportList {
    width: 100%;
    padding: 0 30px;
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #support .supportList {
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: auto;
    margin-bottom: -15vw;
    padding: 0;
  }
}
.agriWrap #support .supportList .supportItem {
  position: relative;
  height: 500px;
  height: 450px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .supportList .supportItem {
    padding: 0;
    height: 375px;
    width: 350px;
    margin: auto;
  }
}
.agriWrap #support .supportList .supportItem:first-child {
  background: url(/img/agri-sim/base-support-child1.svg) no-repeat center top/contain;
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .supportList .supportItem:first-child {
    background-image: url(/img/agri-sim/base-support-child1-sp.svg);
  }
}
.agriWrap #support .supportList .supportItem:last-child {
  background: url(/img/agri-sim/base-support-child2.svg) no-repeat center top/contain;
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .supportList .supportItem:last-child {
    background-image: url(/img/agri-sim/base-support-child2-sp.svg);
  }
}
.agriWrap #support .supportList .supportItem h3 {
  writing-mode: vertical-rl;
  color: var(--color-darkgreen);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 28px;
  position: absolute;
  top: 50px;
  right: 80px;
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .supportList .supportItem h3 {
    top: 40px;
    right: 50px;
    font-size: 22px;
  }
}
.agriWrap #support .supportList .supportItem p {
  font-weight: 400;
  text-align: justify;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .supportList .supportItem p {
    font-size: 14px;
    padding: 0 20px;
    width: 80%;
    margin: 0 auto;
  }
}
.agriWrap #support .supportList .supportItem .ph {
  width: 220px;
  height: auto;
  margin-bottom: 1vw;
}
@media screen and (max-width: 1000px) {
  .agriWrap #support .supportList .supportItem .ph {
    width: 160px;
    margin-left: 40px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}
.agriWrap #support .supportList .supportItem .ph img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.agriWrap #support .sectionBottomNav {
  padding-left: 30px;
  padding-right: 30px;
}
.agriWrap #hojokin {
  padding: 3vw 0;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .agriWrap #hojokin {
    padding: 50px 0;
  }
}
.agriWrap #hojokin:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 2px dashed #AB9C6D;
}
.agriWrap #hojokin:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 2px dashed #AB9C6D;
}
.agriWrap #hojokin .spIcon {
  position: absolute;
  top: -40px;
  left: calc(50% - 25px);
  width: 50px;
  z-index: 2;
}
.agriWrap #hojokin .spIcon img {
  width: 100%;
  height: auto;
}
.agriWrap #hojokin .sectionHeader:before {
  display: none;
}
@media screen and (max-width: 768px) {
  .agriWrap #hojokin .sectionHeader {
    margin-bottom: 1em;
  }
}
.agriWrap #hojokin .sectionHeader h2 {
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1400px) {
  .agriWrap #hojokin .sectionHeader h2 {
    font-size: 25px;
  }
}
.agriWrap #hojokin .sectionHeader h2 strong {
  color: #664838;
  font-weight: normal;
}
.agriWrap #hojokin .hojokinColumn {
  background-color: #e3f2d6;
  padding: 2vw 2.5vw;
  border-radius: 20px;
  max-width: 550px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 1400px) {
  .agriWrap #hojokin .hojokinColumn {
    padding: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .agriWrap #hojokin .hojokinColumn {
    padding: 30px;
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #hojokin .hojokinColumn {
    padding: 20px 25px;
    padding-bottom: 80px;
    margin-bottom: 50px;
  }
}
.agriWrap #hojokin .hojokinColumn .ph1 {
  position: absolute;
  top: 20px;
  left: -120px;
  width: 92px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .agriWrap #hojokin .hojokinColumn .ph1 {
    width: 80px;
    left: -100px;
  }
}
.agriWrap #hojokin .hojokinColumn .ph2 {
  position: absolute;
  bottom: 20px;
  right: -160px;
  width: 181px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .agriWrap #hojokin .hojokinColumn .ph2 {
    width: 150px;
    right: -140px;
  }
}
@media screen and (max-width: 768px) {
  .agriWrap #hojokin .hojokinColumn .ph2 {
    width: 150px;
    right: calc(50% - 75px);
    bottom: -50px;
  }
}
.agriWrap #hojokin .hojokinColumn img {
  width: 100%;
  height: auto;
}
.agriWrap #news {
  padding: 3vw 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .agriWrap #news {
    padding-bottom: 50px;
  }
}
.agriWrap #news .sectionBottomNav {
  margin-bottom: 5vw;
}
@media screen and (max-width: 768px) {
  .agriWrap #news .sectionHeader {
    padding-top: 30px;
    margin-bottom: 15px;
  }
}
.agriWrap #news .sectionHeader:before {
  display: none;
}
.agriWrap #news .sectionHeader h2 {
  font-size: 40px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .agriWrap #news .sectionHeader h2 {
    font-size: 30px;
    letter-spacing: 0;
  }
}
.agriWrap #news .newsList {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.agriWrap #news .newsList .newsItem:last-child a {
  border-bottom: none;
}
.agriWrap #news .newsList .newsItem a {
  padding: 1vw 2vw;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 3em;
}
@media screen and (max-width: 768px) {
  .agriWrap #news .newsList .newsItem a {
    flex-direction: column;
    gap: 0;
    border-bottom-color: #000;
  }
}
.agriWrap #news .newsList .newsItem a:hover {
  background-color: #ab9c6d;
}
.agriWrap #news .newsList .newsItem a:hover .newsTitle::before {
  color: #fff;
}
.agriWrap #news .newsList .newsItem a .newsDate {
  padding: 10px;
  color: #333;
  font-size: 15px;
  position: relative;
  top: 0.1em;
  white-space: nowrap;
  width: 7em;
  min-width: 7em;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .agriWrap #news .newsList .newsItem a .newsDate {
    border-right: none;
    width: auto;
  }
}
.agriWrap #news .newsList .newsItem a .newsTitle {
  padding: 10px 10px 10px 10px;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  position: relative;
  text-indent: -0.65em;
  padding-left: 1em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .agriWrap #news .newsList .newsItem a .newsTitle {
    width: auto;
    text-indent: -0.7em;
    padding-top: 0;
    padding-left: 2em;
  }
}
.agriWrap #news .newsList .newsItem a .newsTitle:before {
  content: "●";
  display: inline-block;
  color: #ab9c6d;
  transition: 0.5s;
  margin-right: 5px;
}
.agriWrap #news .listpage {
  font-family: "Zen kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.agriWrap #news .listpage a {
  color: var(--color-darkgreen);
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .agriWrap #news .listpage a {
    font-size: 12px;
  }
}
.agriWrap #news .listpage a:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url("/img/agri-sim/ic-listpage.svg") no-repeat center center/contain;
  transition: 0.5s;
}
.agriWrap #news .listpage a:hover:before {
  transform: translateX(5px);
}
.agriWrap .agriFooter {
  padding: 30px;
}
.agriWrap .agriFooter .contentInner {
  padding: 0;
}
.agriWrap .agriFooter .footerLogo {
  margin-bottom: 10px;
  position: relative;
}
.agriWrap .agriFooter .footerLogo a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center bottom 5px;
  gap: 10px;
}
.agriWrap .agriFooter .footerLogo a img {
  width: 160px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .agriWrap .agriFooter .footerLogo a img {
    width: 138px;
  }
}
.agriWrap .agriFooter .footerLogo .logoBusinesstxt {
  font-weight: bold;
  font-size: 14px;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .agriWrap .agriFooter .footerLogo .logoBusinesstxt {
    font-size: 12px;
    margin-top: 4px;
  }
}
.agriWrap .agriFooter ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .agriWrap .agriFooter ul {
    gap: 10px;
  }
}
.agriWrap .agriFooter ul li a {
  font-size: 14px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .agriWrap .agriFooter ul li a {
    font-size: 11px;
  }
}
.agriWrap .agriFooter ul li a:hover {
  text-decoration: none;
}
.agriWrap .agriFooter .copyright {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .agriWrap .agriFooter .copyright {
    font-size: 11px;
  }
}
.agriWrap .totop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 70px;
  height: 107px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.5s;
}
.agriWrap .totop.hidden {
  transition-property: all;
  transition-duration: 0.8s;
  transform: translateY(-110vh);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .agriWrap .totop.hidden {
    transform: none;
    opacity: 1;
    z-index: 1;
    pointer-events: all;
  }
}
.agriWrap .totop img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .agriWrap .totop {
    position: relative;
    left: 0;
    top: -50px;
    width: 50px;
    margin: 0 auto -70px;
    z-index: 10;
  }
}
.agriWrap .waveMask-top {
  --mask:
      radial-gradient(33.6px at 50% 47px, #000 99%, #0000 101%) calc(50% - 40px) 0/80px 100%,
      radial-gradient(33.6px at 50% -27px, #0000 99%, #000 101%) 50% 20px/80px 100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
@media (max-width: 1023px) {
  .agriWrap .waveMask-top {
    --mask:
        radial-gradient(30.24px at 50% 42.3px, #000 99%, #0000 101%) calc(50% - 36px) 0/72px 100%,
        radial-gradient(30.24px at 50% -24.3px, #0000 99%, #000 101%) 50% 18px/72px 100% repeat-x;
  }
}
@media (max-width: 1023px) and (max-height: 500px) {
  .agriWrap .waveMask-top {
    --mask:
        radial-gradient(16.01px at 50% 22.5px, #000 99%, #0000 101%) calc(50% - 20px) 0/40px 100%,
        radial-gradient(16.01px at 50% -12.5px, #0000 99%, #000 101%) 50% 10px/40px 100% repeat-x;
  }
}
@media (max-width: 480px) {
  .agriWrap .waveMask-top {
    --mask:
        radial-gradient(16.01px at 50% 22.5px, #000 99%, #0000 101%) calc(50% - 20px) 0/40px 100%,
        radial-gradient(16.01px at 50% -12.5px, #0000 99%, #000 101%) 50% 10px/40px 100% repeat-x;
  }
}

/*
  *  drawer
  */
#drawer {
  display: block;
  transition: 0.5s;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: white;
  padding-bottom: 30px;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
}
#drawer .drawer-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}
#drawer .drawer-body {
  margin-left: auto;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  background: url("/img/agri-sim/bg-beige.webp") repeat;
  font-weight: 500;
  padding: 10vw 50px;
  width: 100%;
  min-width: 0px;
  justify-content: center;
}
#drawer .drawer-body .drawer-logo {
  position: relative;
  bottom: auto;
  left: 0;
  width: 100%;
  text-align: center;
}
#drawer .drawer-body .drawer-logo a {
  display: block;
  line-height: 1;
}
#drawer .drawer-body .drawer-logo img {
  width: 8vw;
  height: auto;
  min-width: 130px;
}
#drawer .drawer-body .drawer-nav {
  width: 100%;
  margin-left: auto;
}
#drawer .drawer-body .drawer-nav nav {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto;
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  #drawer .drawer-body .drawer-nav nav {
    max-width: 300px;
  }
}
#drawer .drawer-body .drawer-nav nav ul.spnavs {
  border-top: 2px dashed #ab9c6d;
  margin-bottom: 20px;
}
#drawer .drawer-body .drawer-nav nav ul.spnavs li {
  opacity: 1;
  text-align: center;
  border-bottom: 2px dashed #ab9c6d;
}
#drawer .drawer-body .drawer-nav nav ul.spnavs li a {
  color: var(--color-darkgreen);
  font-weight: 600;
  font-size: 20px;
  justify-content: center;
  padding: 15px;
  display: block;
  position: relative;
  letter-spacing: 0.1em;
}
#drawer .drawer-body .drawer-nav nav ul.spnavs li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  right: 10%;
  width: 1em;
  height: 1em;
  background: url(/img/agri-sim/nextbt.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  #drawer .drawer-body .drawer-nav nav ul.spnavs li a {
    font-size: 16px;
    padding: 11px;
  }
}
#drawer .drawer-body .drawer-nav nav ul.inquiry {
  width: 80%;
  margin: auto;
}
#drawer .drawer-body .drawer-nav nav ul.inquiry li {
  margin-bottom: 10px;
}
#drawer .drawer-body .drawer-nav nav ul.inquiry li a {
  padding: 15px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #drawer .drawer-body .drawer-nav nav ul.inquiry li a {
    font-size: 16px;
  }
}
#drawer .drawer-body .drawer-nav nav > ul > li ul {
  margin: 0.5em 0;
  padding: 0 0 0 1.5em;
}
#drawer .drawer-body .drawer-nav nav > ul > li ul li a:after {
  transform: scaleX(0);
}
#drawer .drawer-body .drawer-nav nav > ul > li ul li a:hover:after {
  transform: scaleX(1);
}

body.drawer-open #drawer {
  z-index: 9998;
  opacity: 1;
  pointer-events: all;
}
body.drawer-open .agriWrap .agriHeader .hamburger .bar span:nth-of-type(1) {
  top: 12px;
  transform: rotate(45deg);
  transition: top 0.3s ease, transform 0.3s ease-out;
}
body.drawer-open .agriWrap .agriHeader .hamburger .bar span:nth-of-type(2) {
  opacity: 0;
}
body.drawer-open .agriWrap .agriHeader .hamburger .bar span:nth-of-type(3) {
  top: 12px;
  transform: rotate(-45deg);
  transition: top 0.3s ease, transform 0.3s ease-out;
}/*# sourceMappingURL=business_agri-sim.css.map */