@import url("https://cdn.jsdelivr.net/npm/reset-css@5.0.1/reset.min.css");
.btn-primary {
  height: 60px;
  padding: 18px 26px;
  border-radius: 8px;
  box-shadow: 0 5px 20px 0 rgba(7, 42, 68, 0.1);
  border: solid 1px #83ba0b;
  font-size: 16px;
  cursor: pointer;
  background-color: #83ba0b;
  color: white;
  filter: brightness(100%);
  transition: 0.3s;
}
.btn-primary--round {
  height: 60px;
  padding: 18px 26px;
  border-radius: 8px;
  box-shadow: 0 5px 20px 0 rgba(7, 42, 68, 0.1);
  border: solid 1px #83ba0b;
  font-size: 16px;
  cursor: pointer;
  background-color: #83ba0b;
  color: white;
  filter: brightness(100%);
  transition: 0.3s;
  border-radius: 30px;
}
.btn-primary--round:hover {
  filter: brightness(90%);
  transition: 0.3s;
}
.btn-primary:hover {
  filter: brightness(90%);
  transition: 0.3s;
}

.btn-secondary {
  height: 60px;
  padding: 18px 26px;
  border-radius: 8px;
  box-shadow: 0 5px 20px 0 rgba(7, 42, 68, 0.1);
  border: solid 1px #83ba0b;
  font-size: 16px;
  cursor: pointer;
  background-color: white;
  color: #83ba0b;
  filter: brightness(100%);
  transition: 0.3s;
}
.btn-secondary:hover {
  filter: brightness(90%);
  transition: 0.3s;
}

header {
  position: fixed;
  width: 100%;
  z-index: 9;
}
header .header--wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
header .header--wrapper .header--wrapper__logo--container .logo--container__logo--image {
  cursor: pointer;
}
header .header--wrapper .header--wrapper__mobile--menu {
  display: none;
}
header .header--wrapper .header--wrapper__menu--container {
  display: flex;
  align-items: center;
}
header .header--wrapper .header--wrapper__menu--container .menu--container__menu--list {
  display: flex;
  gap: 46px;
  margin-right: 40px;
}
header .header--wrapper .header--wrapper__menu--container .menu--container__menu--list .menu--list__item {
  color: #c0c1c3;
  font-size: 16px;
}
header .header--wrapper .header--wrapper__menu--container .menu--container__menu--list .menu--list__item.on {
  color: #83ba0b;
  border-bottom: 1px solid #83ba0b;
  padding-bottom: 7px;
}
header .header--wrapper .header--wrapper__menu--container .menu--container__menu--list .menu--list__item .region-on {
  color: #83ba0b;
  font-weight: bold;
}
header .header--wrapper .header--wrapper__menu--container .btn-primary {
  margin-left: 16px;
}
header .header--wrapper .header--wrapper__menu--container button {
  padding: 0;
  width: 140px;
  height: 48px;
}
header .header--wrapper .header--wrapper__submenu--list {
  position: absolute;
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 137px;
  height: fit-content;
  top: 76px;
  right: 400px;
  padding: 13px;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(7, 42, 68, 0.3);
  background-color: white;
  transition: 0.3s;
}
header .header--wrapper .header--wrapper__submenu--list.on {
  display: flex;
  transition: 0.3s;
}
header .header--wrapper .header--wrapper__submenu--list .submenu--list__item {
  width: 100%;
  font-size: 16px;
  color: #88898a;
}
header .header--wrapper .header--wrapper__submenu--list .submenu--list__item.on {
  font-weight: 600;
  color: #83ba0b;
}

@media screen and (max-width: 1024px) {
  header.on .logo--container__logo--image {
    content: url("../../assets/global/logo.svg") !important;
  }
  header.on .header--wrapper__mobile--menu {
    content: url("../../assets/global/menu-green.svg") !important;
  }

  .header--wrapper {
    padding: 16px 12px !important;
  }
  .header--wrapper .header--wrapper__logo--container .logo--container__logo--image {
    width: 120px;
    content: url("../../assets/global/logo-white.svg");
  }
  .header--wrapper .header--wrapper__menu--container {
    display: none !important;
  }
  .header--wrapper .header--wrapper__mobile--menu {
    display: inline-block !important;
  }
}
footer {
  width: 100%;
  background-color: #354512;
  color: white;
}
footer .footer--wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1429px;
  margin: 0 auto;
  padding: 50px 20px;
}
footer .footer--wrapper .footer-menu {
  display: flex;
}
footer .footer--wrapper .footer-menu .menu--acromate, footer .footer--wrapper .footer-menu .menu--download {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
footer .footer--wrapper .footer-menu .menu--acromate .menu--title, footer .footer--wrapper .footer-menu .menu--download .menu--title {
  margin-bottom: 17px;
  font-size: 20px;
  font-weight: bold;
}
footer .footer--wrapper .footer-menu .menu--acromate .menu--list, footer .footer--wrapper .footer-menu .menu--download .menu--list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
}
footer .footer--wrapper .footer-menu .menu--acromate .menu--list .list__item, footer .footer--wrapper .footer-menu .menu--download .menu--list .list__item {
  width: 123px;
  font-size: 14px;
  cursor: pointer;
}
footer .footer--wrapper .footer-menu .menu--download {
  margin-left: 74px;
}
footer .footer-divider {
  margin: 40px 0;
}
footer .footer-copyright .copyright {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.36;
}

@media screen and (max-width: 1024px) {
  .footer--wrapper {
    padding: 30px 12px !important;
  }
  .footer--wrapper .footer-menu {
    flex-direction: column;
  }
  .footer--wrapper .footer-menu .menu--acromate {
    width: 204px;
  }
  .footer--wrapper .footer-menu .menu--acromate .menu--title {
    font-size: 14px !important;
    margin-bottom: 14px !important;
  }
  .footer--wrapper .footer-menu .menu--acromate .menu--list {
    grid-template-columns: 70px 70px 70px !important;
  }
  .footer--wrapper .footer-menu .menu--acromate .menu--list .list__item a {
    font-size: 12px;
  }
  .footer--wrapper .footer-menu .menu--acromate .menu--list .list__item:nth-child(1) {
    order: 1;
  }
  .footer--wrapper .footer-menu .menu--acromate .menu--list .list__item:nth-child(2) {
    order: 4;
  }
  .footer--wrapper .footer-menu .menu--acromate .menu--list .list__item:nth-child(3) {
    order: 2;
  }
  .footer--wrapper .footer-menu .menu--acromate .menu--list .list__item:nth-child(4) {
    order: 5;
  }
  .footer--wrapper .footer-menu .menu--acromate .menu--list .list__item:nth-child(5) {
    order: 3;
  }
  .footer--wrapper .footer-menu .menu--download {
    margin-left: 0 !important;
    margin-top: 38px;
  }
  .footer--wrapper .footer-menu .menu--download .menu--title {
    font-size: 14px !important;
    margin-bottom: 14px !important;
  }
  .footer--wrapper .footer-menu .menu--download .menu--list {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
  }
  .footer--wrapper .footer-menu .menu--download .menu--list a {
    display: block;
    text-align: center;
  }
  .footer--wrapper .footer-menu .menu--download .menu--list .list__item {
    width: 46% !important;
    padding: 8px 36px;
    border: 1px solid white;
    border-radius: 16px;
  }
  .footer--wrapper .footer-menu .menu--download .menu--list .list__item:nth-child(2), .footer--wrapper .footer-menu .menu--download .menu--list .list__item:nth-child(4) {
    display: none;
  }
  .footer--wrapper .footer-divider {
    margin: 20px 0;
  }
  .footer--wrapper .footer-copyright img {
    width: 110px;
    height: 25px;
  }
  .footer--wrapper .footer-copyright .copyright {
    margin-top: 16px;
    font-size: 10px;
  }
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
  font-weight: 100 400;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff") format("woff");
  font-weight: 500 900;
  font-style: normal;
}
* {
  font-family: "Pretendard", sans-serif !important;
  box-sizing: border-box;
  word-break: keep-all;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

header.on {
  background-color: white;
}

.section--intro {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 220px;
  padding-bottom: 130px;
}
.section--intro .section--wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.section--intro .section--wrapper .intro__text--container {
  display: flex;
  flex-direction: column;
}
.section--intro .section--wrapper .intro__text--container .container__heading {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #83ba0b;
}
.section--intro .section--wrapper .intro__text--container .container__title {
  margin-top: 33px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.88px;
  color: #5f8903;
}
.section--intro .section--wrapper .intro__text--container .container__caption {
  margin-top: 10px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -0.6px;
  color: #5f8903;
}
.section--intro .section--wrapper .intro__text--container .container__images {
  margin-top: 80px;
}
.section--intro .section--wrapper .intro__text--container .container__images img {
  cursor: pointer;
}

.section--features {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-image: linear-gradient(173deg, #fff 31%, #f0f1f2 171%);
}
.section--features .section--wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 122px;
}
.section--features .section--wrapper .section__prefix--image {
  width: 64px;
  height: 64px;
}
.section--features .section--wrapper .section__title--text {
  margin: 20px auto 104px;
  font-size: 36px;
  font-weight: bold;
  color: #425220;
}
.section--features .section--wrapper .features--list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 33px;
  row-gap: 36px;
  width: 100%;
}
.section--features .section--wrapper .features--list .list__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 245px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}
.section--features .section--wrapper .features--list .list__item .item__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.section--features .section--wrapper .features--list .list__item .item__content .content__title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #5f8903;
  line-height: 1.2;
}
.section--features .section--wrapper .features--list .list__item .item__content .content__caption {
  font-size: 15px;
  text-align: center;
  color: #354512;
  margin-top: 26px;
  line-height: 1.2;
}

.section--benefits {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.section--benefits .section--wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 1200px;
  margin: 0 auto;
  padding-top: 116px;
  padding-bottom: 200px;
}
.section--benefits .section--wrapper .benefit--container01 {
  width: 100%;
  max-width: 1200px;
}
.section--benefits .section--wrapper .benefit--container01 .container__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 188px;
  padding-left: 27px;
  background-image: url("../../assets/pages/product/benefits/header-pc.png");
}
.section--benefits .section--wrapper .benefit--container01 .container__header .header__title--container {
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.section--benefits .section--wrapper .benefit--container01 .container__header .header__title--container .header__number {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container01 .container__header .header__title--container .header__number:after {
  display: inline-block;
  content: "";
  height: 34px;
  width: 2px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: white;
}
.section--benefits .section--wrapper .benefit--container01 .container__header .header__title--container .header__title {
  font-size: 36px;
  font-weight: bold;
  color: white;
}
.section--benefits .section--wrapper .benefit--container01 .container__header .header__description {
  margin-top: 35px;
  font-size: 24px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container01 .container__header .header__caption {
  margin-top: 10px;
  font-size: 15px;
  color: white;
  line-height: 1.5;
}
.section--benefits .section--wrapper .benefit--container01 .container__body--list {
  display: flex;
  align-items: center;
  gap: 65px;
  margin-top: 5px;
}
.section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item {
  display: flex;
  flex-direction: column;
}
.section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item .item__contents .item__title {
  font-size: 28px;
  font-weight: bold;
  color: #425220;
}
.section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item .item__contents .item__description {
  margin-top: 14px;
  font-size: 16px;
  line-height: 30px;
}
.section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item .item__contents .item__caption--image {
  margin: 20px 0 12px;
}
.section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item .item__contents .item__caption--text {
  color: #5f8903;
  font-size: 16px;
}
.section--benefits .section--wrapper .benefit--container02 {
  width: 100%;
  max-width: 1200px;
  margin-top: 120px;
}
.section--benefits .section--wrapper .benefit--container02 .container__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 188px;
  padding-left: 27px;
  background-image: url("../../assets/pages/product/benefits/header-pc.png");
}
.section--benefits .section--wrapper .benefit--container02 .container__header .header__title--container {
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.section--benefits .section--wrapper .benefit--container02 .container__header .header__title--container .header__number {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container02 .container__header .header__title--container .header__number:after {
  display: inline-block;
  content: "";
  height: 34px;
  width: 2px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: white;
}
.section--benefits .section--wrapper .benefit--container02 .container__header .header__title--container .header__title {
  font-size: 36px;
  font-weight: bold;
  color: white;
}
.section--benefits .section--wrapper .benefit--container02 .container__header .header__description {
  margin-top: 35px;
  font-size: 24px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container02 .container__header .header__caption {
  margin-top: 10px;
  font-size: 14px;
  color: white;
  line-height: 1.5;
}
.section--benefits .section--wrapper .benefit--container02 .container__body--list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  margin-top: 5px;
}
.section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__contents--wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__contents {
  margin-left: 72px;
}
.section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__contents .item__title {
  font-size: 28px;
  font-weight: bold;
  color: #425220;
}
.section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__contents .item__description {
  margin-top: 14px;
  font-size: 16px;
  line-height: 30px;
}
.section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__contents .item__caption--image {
  margin: 20px 0 12px;
}
.section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__contents .item__caption--text {
  margin-top: 20px;
  color: #5f8903;
  font-size: 16px;
  line-height: 26px;
}
.section--benefits .section--wrapper .benefit--container03 {
  width: 100%;
  max-width: 1200px;
  margin-top: 177px;
}
.section--benefits .section--wrapper .benefit--container03 .container__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 188px;
  padding-left: 27px;
  background-image: url("../../assets/pages/product/benefits/header-pc.png");
}
.section--benefits .section--wrapper .benefit--container03 .container__header .header__title--container {
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.section--benefits .section--wrapper .benefit--container03 .container__header .header__title--container .header__number {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container03 .container__header .header__title--container .header__number:after {
  display: inline-block;
  content: "";
  height: 34px;
  width: 2px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: white;
}
.section--benefits .section--wrapper .benefit--container03 .container__header .header__title--container .header__title {
  font-size: 36px;
  font-weight: bold;
  color: white;
}
.section--benefits .section--wrapper .benefit--container03 .container__header .header__description {
  margin-top: 35px;
  font-size: 24px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container03 .container__header .header__caption {
  margin-top: 10px;
  font-size: 14px;
  color: white;
  line-height: 1.5;
}
.section--benefits .section--wrapper .benefit--container03 .container__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section--benefits .section--wrapper .benefit--container03 .container__body .body__image {
  margin-top: 74px;
  margin-bottom: 25px;
}
.section--benefits .section--wrapper .benefit--container03 .container__body .body__list {
  display: flex;
  align-items: center;
  gap: 70px;
}
.section--benefits .section--wrapper .benefit--container03 .container__body .body__list .list__item {
  max-width: 250px;
}
.section--benefits .section--wrapper .benefit--container03 .container__body .body__list .list__item .item__image {
  display: none;
}
.section--benefits .section--wrapper .benefit--container03 .container__body .body__list .list__item .item__title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #425220;
}
.section--benefits .section--wrapper .benefit--container03 .container__body .body__list .list__item .item__description {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  color: #383b32;
  line-height: 26px;
}
.section--benefits .section--wrapper .benefit--container04 {
  width: 100%;
  max-width: 1200px;
  margin-top: 116px;
}
.section--benefits .section--wrapper .benefit--container04 .container__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 188px;
  padding-left: 27px;
  background-image: url("../../assets/pages/product/benefits/header-pc.png");
}
.section--benefits .section--wrapper .benefit--container04 .container__header .header__title--container {
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.section--benefits .section--wrapper .benefit--container04 .container__header .header__title--container .header__number {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container04 .container__header .header__title--container .header__number:after {
  display: inline-block;
  content: "";
  height: 34px;
  width: 2px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: white;
}
.section--benefits .section--wrapper .benefit--container04 .container__header .header__title--container .header__title {
  font-size: 36px;
  font-weight: bold;
  color: white;
}
.section--benefits .section--wrapper .benefit--container04 .container__header .header__description {
  margin-top: 35px;
  font-size: 24px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container04 .container__header .header__caption {
  margin-top: 10px;
  font-size: 14px;
  color: white;
  line-height: 1.5;
}
.section--benefits .section--wrapper .benefit--container04 .container__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section--benefits .section--wrapper .benefit--container04 .container__body .body__image {
  margin-top: 74px;
  margin-bottom: 25px;
}
.section--benefits .section--wrapper .benefit--container04 .container__body .body__list {
  display: flex;
  align-items: center;
  gap: 70px;
}
.section--benefits .section--wrapper .benefit--container04 .container__body .body__list .list__item {
  max-width: 250px;
}
.section--benefits .section--wrapper .benefit--container04 .container__body .body__list .list__item .item__image {
  display: none;
}
.section--benefits .section--wrapper .benefit--container04 .container__body .body__list .list__item .item__title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #425220;
}
.section--benefits .section--wrapper .benefit--container04 .container__body .body__list .list__item .item__description {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  color: #383b32;
  line-height: 26px;
}
.section--benefits .section--wrapper .benefit--container05 {
  width: 100%;
  max-width: 1200px;
  margin-top: 89px;
}
.section--benefits .section--wrapper .benefit--container05 .container__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 188px;
  padding-left: 27px;
  background-image: url("../../assets/pages/product/benefits/header-pc.png");
}
.section--benefits .section--wrapper .benefit--container05 .container__header .header__title--container {
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.section--benefits .section--wrapper .benefit--container05 .container__header .header__title--container .header__number {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container05 .container__header .header__title--container .header__number:after {
  display: inline-block;
  content: "";
  height: 34px;
  width: 2px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: white;
}
.section--benefits .section--wrapper .benefit--container05 .container__header .header__title--container .header__title {
  font-size: 36px;
  font-weight: bold;
  color: white;
}
.section--benefits .section--wrapper .benefit--container05 .container__header .header__description {
  margin-top: 35px;
  font-size: 24px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container05 .container__header .header__caption {
  margin-top: 10px;
  font-size: 14px;
  color: white;
  line-height: 1.5;
}
.section--benefits .section--wrapper .benefit--container05 .container__body--list {
  display: flex;
  align-items: flex-start;
  gap: 65px;
  margin-top: 97px;
}
.section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item {
  display: flex;
  flex-direction: column;
}
.section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__contents .item__title {
  font-size: 28px;
  font-weight: bold;
  color: #425220;
}
.section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__contents .item__description {
  margin-top: 14px;
  font-size: 16px;
  line-height: 30px;
}
.section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__contents .item__caption--image {
  margin: 20px 0 12px;
}
.section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__contents .item__caption--text {
  color: #5f8903;
  font-size: 16px;
  line-height: 22px;
}
.section--benefits .section--wrapper .benefit--container06 {
  width: 100%;
  max-width: 1200px;
  margin-top: 143px;
}
.section--benefits .section--wrapper .benefit--container06 .container__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 188px;
  padding-left: 27px;
  background-image: url("../../assets/pages/product/benefits/header-pc.png");
}
.section--benefits .section--wrapper .benefit--container06 .container__header .header__title--container {
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.section--benefits .section--wrapper .benefit--container06 .container__header .header__title--container .header__number {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container06 .container__header .header__title--container .header__number:after {
  display: inline-block;
  content: "";
  height: 34px;
  width: 2px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: white;
}
.section--benefits .section--wrapper .benefit--container06 .container__header .header__title--container .header__title {
  font-size: 36px;
  font-weight: bold;
  color: white;
}
.section--benefits .section--wrapper .benefit--container06 .container__header .header__description {
  margin-top: 35px;
  font-size: 24px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container06 .container__header .header__caption {
  margin-top: 10px;
  font-size: 14px;
  color: white;
  line-height: 1.5;
}
.section--benefits .section--wrapper .benefit--container06 .container__body {
  display: flex;
  align-items: center;
  margin-top: 80px;
}
.section--benefits .section--wrapper .benefit--container06 .container__body .body__contents {
  margin-left: 74px;
}
.section--benefits .section--wrapper .benefit--container06 .container__body .body__contents .item__title {
  font-size: 28px;
  font-weight: bold;
  color: #425220;
}
.section--benefits .section--wrapper .benefit--container06 .container__body .body__contents .item__description {
  margin-top: 20px;
  font-size: 16px;
  color: #31342b;
  line-height: 30px;
}
.section--benefits .section--wrapper .benefit--container06 .container__caption {
  margin-top: 100px;
  font-size: 20px;
  color: #5f8903;
}
.section--benefits .section--wrapper .benefit--container06 .container__table {
  width: 100%;
  height: auto;
  margin-top: 13px;
}
.section--benefits .section--wrapper .benefit--container07 {
  width: 100%;
  max-width: 1200px;
  margin-top: 193px;
}
.section--benefits .section--wrapper .benefit--container07 .container__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 188px;
  padding-left: 27px;
  background-image: url("../../assets/pages/product/benefits/header-pc.png");
}
.section--benefits .section--wrapper .benefit--container07 .container__header .header__title--container {
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.section--benefits .section--wrapper .benefit--container07 .container__header .header__title--container .header__number {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container07 .container__header .header__title--container .header__number:after {
  display: inline-block;
  content: "";
  height: 34px;
  width: 2px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: white;
}
.section--benefits .section--wrapper .benefit--container07 .container__header .header__title--container .header__title {
  font-size: 36px;
  font-weight: bold;
  color: white;
}
.section--benefits .section--wrapper .benefit--container07 .container__header .header__description {
  margin-top: 35px;
  font-size: 24px;
  color: white;
}
.section--benefits .section--wrapper .benefit--container07 .container__header .header__caption {
  margin-top: 10px;
  font-size: 14px;
  color: white;
  line-height: 1.5;
}
.section--benefits .section--wrapper .benefit--container07 .container__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section--benefits .section--wrapper .benefit--container07 .container__body .pc .body__image {
  margin-top: 74px;
  margin-bottom: 25px;
}
.section--benefits .section--wrapper .benefit--container07 .container__body .pc .body__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.section--benefits .section--wrapper .benefit--container07 .container__body .pc .body__list .list__item .item__title {
  font-size: 28px;
  font-weight: bold;
  color: #425220;
}
.section--benefits .section--wrapper .benefit--container07 .container__body .pc .body__list .list__item .item__description {
  margin-top: 16px;
  font-size: 16px;
  color: #383b32;
  line-height: 26px;
}
.section--benefits .section--wrapper .benefit--container07 .container__body .mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header--wrapper {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
  .header--wrapper .logo--container__logo--image {
    content: url("../../assets/global/logo.svg") !important;
  }
  .header--wrapper .header--wrapper__mobile--menu {
    content: url("../../assets/global/menu-green.svg") !important;
  }

  main {
    width: 100%;
  }

  .section--intro {
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }
  .section--intro .section--wrapper {
    flex-direction: column;
  }
  .section--intro .section--wrapper .intro__text--container .container__heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .section--intro .section--wrapper .intro__text--container .container__acrobox--logo {
    width: 253px;
    margin: 0 auto;
  }
  .section--intro .section--wrapper .intro__text--container .container__title {
    font-size: 20px;
    margin-top: 20px;
  }
  .section--intro .section--wrapper .intro__text--container .container__caption {
    font-size: 18px;
    margin-top: 7px;
  }
  .section--intro .section--wrapper .intro__text--container .container__images {
    margin: 40px 0;
  }
  .section--intro .section--wrapper .container__product--image {
    width: 230px;
  }

  .section--features {
    width: 100%;
    background-image: linear-gradient(179deg, #fff 29%, #f0f1f2 183%);
  }
  .section--features .section--wrapper {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 56px;
  }
  .section--features .section--wrapper .section__prefix--image {
    width: 36px;
    height: 36px;
  }
  .section--features .section--wrapper .section__title--text {
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 36px;
  }
  .section--features .section--wrapper .features--list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }
  .section--features .section--wrapper .features--list .list__item {
    flex-direction: row;
    width: 90%;
    height: 111px;
  }
  .section--features .section--wrapper .features--list .list__item .item__image {
    width: 34px;
  }
  .section--features .section--wrapper .features--list .list__item .item__content {
    margin-left: 27px;
  }
  .section--features .section--wrapper .features--list .list__item .item__content .content__title {
    font-size: 20px;
    text-align: left;
  }
  .section--features .section--wrapper .features--list .list__item .item__content .content__caption {
    font-size: 13px;
    text-align: justify;
    margin-top: 5px;
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(1) .item__image {
    content: url("../../assets/pages/product/features/feature1-m.svg");
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(2) .item__image {
    content: url("../../assets/pages/product/features/feature2-m.svg");
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(3) .item__image {
    content: url("../../assets/pages/product/features/feature3-m.svg");
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(4) .item__image {
    content: url("../../assets/pages/product/features/feature4-m.svg");
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(5) .item__image {
    content: url("../../assets/pages/product/features/feature5-m.svg");
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(6) .item__image {
    content: url("../../assets/pages/product/features/feature6-m.svg");
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(7) .item__image {
    content: url("../../assets/pages/product/features/feature7-m.svg");
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(8) .item__image {
    content: url("../../assets/pages/product/features/feature8-m.svg");
  }
  .section--features .section--wrapper .features--list .list__item:nth-child(9) .item__image {
    content: url("../../assets/pages/product/features/feature9-m.svg");
  }

  .section--benefits .section--wrapper {
    width: 100%;
    padding-top: 55px;
    padding-bottom: 70px;
  }
  .section--benefits .section--wrapper .benefit--container01 {
    width: 336px;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__header {
    height: 83px;
    padding-left: 10px;
    margin: 0 auto;
    background-image: url("../../assets/pages/product/benefits/header-m.png");
    background-repeat: no-repeat;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__header .header__title--container {
    margin-top: 2px;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__header .header__title--container .header__number {
    font-size: 18px;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__header .header__title--container .header__number:after {
    height: 15px;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__header .header__title--container .header__title {
    font-size: 12px;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__header .header__description {
    font-size: 16px;
    margin-top: 10px;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__header .header__caption {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.38;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__body--list {
    flex-direction: column;
    gap: 56px;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item .item__image.first {
    width: 336px;
    height: 254px;
    content: url("../../assets/pages/product/benefits/1-1_m.png");
  }
  .section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item .item__image.second {
    width: 336px;
    height: 254px;
    content: url("../../assets/pages/product/benefits/1-2_m.png");
  }
  .section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item .item__title {
    font-size: 16px !important;
  }
  .section--benefits .section--wrapper .benefit--container01 .container__body--list .list__item .item__description {
    font-size: 12px !important;
    line-height: 22px !important;
  }
  .section--benefits .section--wrapper .benefit--container02 {
    width: 336px;
    margin-top: 90px;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__header {
    height: 83px;
    padding-left: 10px;
    margin: 0 auto;
    background-image: url("../../assets/pages/product/benefits/header-m.png");
    background-repeat: no-repeat;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__header .header__title--container {
    margin-top: 2px;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__header .header__title--container .header__number {
    font-size: 18px;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__header .header__title--container .header__number:after {
    height: 15px;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__header .header__title--container .header__title {
    font-size: 12px;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__header .header__description {
    font-size: 16px;
    margin-top: 10px;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__header .header__caption {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.38;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__body--list {
    flex-direction: column;
    gap: 45px;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item {
    flex-direction: column;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__image.first {
    width: 336px;
    height: 254px;
    content: url("../../assets/pages/product/benefits/2-1_m.png");
  }
  .section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__image.second {
    width: 336px;
    height: 254px;
    margin-bottom: 25px;
    content: url("../../assets/pages/product/benefits/2-2_m.png");
  }
  .section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__contents {
    margin-left: 0;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__title {
    font-size: 16px !important;
  }
  .section--benefits .section--wrapper .benefit--container02 .container__body--list .list__item .item__description {
    font-size: 12px !important;
    line-height: 22px !important;
  }
  .section--benefits .section--wrapper .benefit--container03 {
    width: 336px;
    margin-top: 89px;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__header {
    height: 83px;
    padding-left: 10px;
    margin: 0 auto;
    background-image: url("../../assets/pages/product/benefits/header-m.png");
    background-repeat: no-repeat;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__header .header__title--container {
    margin-top: 2px;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__header .header__title--container .header__number {
    font-size: 18px;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__header .header__title--container .header__number:after {
    height: 15px;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__header .header__title--container .header__title {
    font-size: 12px;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__header .header__description {
    font-size: 16px;
    margin-top: 10px;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__header .header__caption {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.38;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__body .body__image {
    width: 360px;
    height: 135px;
    margin-top: 8px;
    margin-bottom: 12px;
    content: url("../../assets/pages/product/benefits/3_m.png");
  }
  .section--benefits .section--wrapper .benefit--container03 .container__body .body__list {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__body .body__list .list__item {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: initial !important;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__body .body__list .list__item .item__image {
    display: inline-block;
    margin-right: 12px;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__body .body__list .list__item .item__title {
    font-size: 16px;
    text-align: left;
  }
  .section--benefits .section--wrapper .benefit--container03 .container__body .body__list .list__item .item__description {
    font-size: 8px;
    margin-top: 5px;
    line-height: 14px;
    text-align: left;
  }
  .section--benefits .section--wrapper .benefit--container04 {
    width: 336px;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__header {
    height: 83px;
    padding-left: 10px;
    margin: 0 auto;
    background-image: url("../../assets/pages/product/benefits/header-m.png");
    background-repeat: no-repeat;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__header .header__title--container {
    margin-top: 2px;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__header .header__title--container .header__number {
    font-size: 18px;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__header .header__title--container .header__number:after {
    height: 15px;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__header .header__title--container .header__title {
    font-size: 12px;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__header .header__description {
    font-size: 16px;
    margin-top: 10px;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__header .header__caption {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.38;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__body .body__image {
    width: 360px;
    height: 134px;
    margin-top: 8px;
    margin-bottom: 12px;
    content: url("../../assets/pages/product/benefits/4_m.png");
  }
  .section--benefits .section--wrapper .benefit--container04 .container__body .body__list {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__body .body__list .list__item {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: initial !important;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__body .body__list .list__item .item__image {
    display: inline-block;
    margin-right: 12px;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__body .body__list .list__item .item__title {
    font-size: 16px;
    text-align: left;
  }
  .section--benefits .section--wrapper .benefit--container04 .container__body .body__list .list__item .item__description {
    font-size: 8px;
    margin-top: 5px;
    line-height: 14px;
    text-align: left;
  }
  .section--benefits .section--wrapper .benefit--container05 {
    width: 336px;
    margin-top: 89px;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__header {
    height: 83px;
    padding-left: 10px;
    margin: 0 auto;
    background-image: url("../../assets/pages/product/benefits/header-m.png");
    background-repeat: no-repeat;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__header .header__title--container {
    margin-top: 2px;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__header .header__title--container .header__number {
    font-size: 18px;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__header .header__title--container .header__number:after {
    height: 15px;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__header .header__title--container .header__title {
    font-size: 12px;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__header .header__description {
    font-size: 16px;
    margin-top: 10px;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__header .header__caption {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.38;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__body--list {
    flex-direction: column;
    gap: 56px;
    margin-top: 34px;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__image.first {
    width: 336px;
    height: 254px;
    content: url("../../assets/pages/product/benefits/5-1_m.png");
  }
  .section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__image.second {
    width: 336px;
    height: 254px;
    content: url("../../assets/pages/product/benefits/5-2_m.png");
  }
  .section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__title {
    font-size: 16px !important;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__description {
    font-size: 12px !important;
    line-height: 22px !important;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .item__caption--text {
    font-size: 10px !important;
  }
  .section--benefits .section--wrapper .benefit--container05 .container__body--list .list__item .guide {
    width: 336px;
  }
  .section--benefits .section--wrapper .benefit--container06 {
    width: 336px;
    margin-top: 89px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__header {
    height: 83px;
    padding-left: 10px;
    margin: 0 auto;
    background-image: url("../../assets/pages/product/benefits/header-m.png");
    background-repeat: no-repeat;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__header .header__title--container {
    margin-top: 2px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__header .header__title--container .header__number {
    font-size: 18px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__header .header__title--container .header__number:after {
    height: 15px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__header .header__title--container .header__title {
    font-size: 12px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__header .header__description {
    font-size: 16px;
    margin-top: 10px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__header .header__caption {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.38;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__body {
    flex-direction: column;
    margin-top: 40px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__body .body__image {
    width: 336px;
    height: 254px;
    content: url("../../assets/pages/product/benefits/6-1_m.png");
  }
  .section--benefits .section--wrapper .benefit--container06 .container__body .body__contents {
    margin-left: 0;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__body .body__contents .item__title {
    margin-top: 47px;
    font-size: 16px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__body .body__contents .item__description {
    margin-top: 13px;
    font-size: 12px;
    line-height: 22px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__caption {
    margin-top: 31px;
    font-size: 10px;
  }
  .section--benefits .section--wrapper .benefit--container06 .container__table {
    width: 100%;
    content: url("../../assets/pages/product/benefits/6-table_m.png");
  }
  .section--benefits .section--wrapper .benefit--container07 {
    width: 336px;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__header {
    height: 83px;
    padding-left: 10px;
    margin: 0 auto;
    background-image: url("../../assets/pages/product/benefits/header-m.png");
    background-repeat: no-repeat;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__header .header__title--container {
    margin-top: 2px;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__header .header__title--container .header__number {
    font-size: 18px;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__header .header__title--container .header__number:after {
    height: 15px;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__header .header__title--container .header__title {
    font-size: 12px;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__header .header__description {
    font-size: 16px;
    margin-top: 10px;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__header .header__caption {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.38;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__body .mobile {
    display: block;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__body .mobile .body__mobile--image {
    width: 336px;
    height: 254px;
    margin-top: 53px;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__body .mobile .body__mobile--contents .contents__title {
    margin-top: 56px;
    font-size: 16px;
    font-weight: bold;
    color: #425220;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__body .mobile .body__mobile--contents .contents__description {
    margin-top: 13px;
    font-size: 12px;
    color: #31342b;
    line-height: 22px;
  }
  .section--benefits .section--wrapper .benefit--container07 .container__body .pc {
    display: none;
  }
  .section--benefits .section--wrapper .final-section {
    content: url("../../assets/pages/product/benefits/8_m.png");
    width: 336px;
  }
}

/*# sourceMappingURL=index.css.map */
