* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Kosugi", serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #262626;
  scroll-behavior: smooth;
}

main {
  padding-top: 90px;
  background-color: #f8f8f2;
}
@media screen and (max-width: 1080px) {
  main {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 52px;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.pagebanner {
  padding: 64px 0;
}
@media screen and (max-width: 767px) {
  .pagebanner {
    padding: 40px 0;
  }
}
.pagebanner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .pagebanner__content {
    margin-bottom: 16px;
  }
}
.pagebanner__content:not(:has(.pagebanner__bg)) {
  margin-bottom: 30px;
}
.pagebanner__title {
  color: #0a8272;
  font-size: 4.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .pagebanner__title {
    font-size: 24px;
  }
}
.pagebanner__bg {
  width: 100%;
  height: 360px;
  margin: 40px 0;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pagebanner__bg {
    height: 168px;
    margin: 20px 0;
    border-radius: 10px;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    gap: 8px;
  }
}
.breadcrumbs__link {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link {
    font-size: 14px;
  }
}
.breadcrumbs__link:last-of-type {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link:last-of-type {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.breadcrumbs__marker {
  width: 6px;
  height: 10px;
  background: url("../public/img/icons/caret-right.svg") no-repeat center/contain;
}

.button {
  position: relative;
  width: 272px;
  height: 65px;
  background-color: #f8f8f2;
  border: 1px solid #0a8272;
  border-radius: 35px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .button {
    width: 100%;
    height: 55px;
  }
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 16px;
  background: url("../public/img/icons/arrow-right.svg") no-repeat center/contain;
  translate: 0 -50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button::before {
    right: 20px;
  }
}
.button:hover {
  background-color: #0a8272;
}
.button:hover::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.button:hover .button__text {
  color: #fff;
}
.button__text {
  color: #0a8272;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button__text {
    font-size: 15px;
  }
}
.button--solid {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 32px;
  background-color: #0a8272;
}
@media screen and (max-width: 767px) {
  .button--solid {
    padding-left: 24px;
  }
}
.button--solid::before {
  width: 22px;
  height: 22px;
  background-image: url("../public/img/icons/circle-right.svg");
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.button--solid .button__text {
  color: #fff;
}
.button--solid:hover {
  background-color: #80be15;
  border-color: #80be15;
}
.button--secondary {
  background-color: #539b5f;
}
.button--secondary .button__text {
  color: #fff;
}

.button-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .button-link {
    gap: 12px;
  }
}
.button-link::before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 24px - 22px);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #0a8272;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button-link::before {
    width: 100%;
  }
}
.button-link::after {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 6px;
  background: url("../public/img/icons/circle-right.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .button-link::after {
    width: 16px;
    height: 16px;
  }
}
.button-link:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.button-link__text {
  padding-bottom: 5px;
  color: #0a8272;
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .button-link__text {
    font-size: 15px;
  }
}
.button-link--secondary::after {
  background-image: url("../public/img/icons/secondary-circle-right.svg");
}
.button-link--secondary::before {
  background-color: #4ebc5d;
}
.button-link--secondary .button-link__text {
  color: #4ebc5d;
}
.button-link--plain::before {
  width: 100%;
}
.button-link--plain::after {
  content: none;
}
.button-link--plain .button-link__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .button-link--plain .button-link__text {
    font-size: 14px;
  }
}

.category__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .category__container {
    max-width: 100%;
  }
}
.category__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px 17px;
  max-width: 1160px;
}
@media screen and (max-width: 767px) {
  .category__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
.category__cat {
  height: 65px;
  width: 100%;
  max-width: 375px;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #0a8272;
  font-size: 1.8rem;
  color: #0a8272;
  letter-spacing: 0.05em;
  line-height: 3.1111111111em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .category__cat {
    width: 47%;
    height: 50px;
    max-width: initial !important;
    font-size: 16px;
  }
}
.category__cat.active {
  background-color: #0a8272;
  color: #fff;
}
.category__cat:hover {
  background-color: #0a8272;
  color: #fff;
  border: 1px solid #0a8272;
}
.category__cat--w275 {
  max-width: 275px;
}
.category__cat--w568 {
  max-width: 568px;
}

.news-articles {
  margin-top: 20px;
  padding: 48px;
  border-radius: 15px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .news-articles {
    padding: 24px;
  }
}
.news-articles__blk {
  width: 100%;
  max-width: 1064px;
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 41px;
  border-radius: 15px;
  border: 1px solid #f6f6f6;
  padding: 18px 28px 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-articles__blk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    padding: 17px;
    border-radius: 10px;
    max-width: initial;
    height: 100%;
  }
}
.news-articles__blk:not(:first-child) {
  margin-top: 12px;
}
.news-articles__blk:hover {
  background-color: #f6f6f6;
}
.news-articles__blk:hover .news-articles__arrow {
  background-color: #0a8272;
}
.news-articles__blk:hover .news-articles__arrow::before {
  background-color: #fff;
}
.news-articles__date {
  font-size: 1.2rem;
  font-family: "Manrope", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4166666667em;
  color: #0a8272;
}
@media screen and (max-width: 767px) {
  .news-articles__date {
    font-size: 13px;
  }
}
.news-articles__date--month {
  font-size: 2.4rem;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .news-articles__date--month {
    font-size: 18px;
  }
}
.news-articles__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .news-articles__col {
    gap: 15px;
    margin-bottom: 10px;
  }
}
.news-articles__date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-articles__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  width: 120px;
  height: 40px;
  border: 1px solid #0a8272;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .news-articles__cat {
    width: 100px;
    height: 35px;
  }
}
.news-articles__cat-txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.3571428571em;
  color: #0a8272;
}
@media screen and (max-width: 767px) {
  .news-articles__cat-txt {
    font-size: 13px;
  }
}
.news-articles__desc {
  width: 619px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-articles__desc {
    margin-bottom: 8px;
    width: 100%;
  }
}
.news-articles__desc-txt {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .news-articles__desc-txt {
    font-size: 14px;
  }
}
.news-articles__arrow {
  position: relative;
  width: 68px;
  height: 37px;
  background-color: #f8f8f2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 19px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .news-articles__arrow {
    width: 64px;
    height: 35px;
  }
}
.news-articles__arrow::before {
  content: "";
  position: absolute;
  left: 40%;
  top: 37%;
  width: 14px;
  height: 10px;
  background-color: #0a8272;
  -webkit-mask: url("../public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
          mask: url("../public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
}

.links {
  padding-block: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .links {
    padding-block: 72px 103px;
  }
}
.links__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .links__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 72px;
  }
}
.links__item {
  -ms-flex-preferred-size: 568px;
      flex-basis: 568px;
}
@media screen and (max-width: 767px) {
  .links__item {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.links__item:hover .links__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.links__item:hover .links__txt {
  color: #0a8272;
}
.links__img-container {
  position: relative;
  margin-block: 48px 32px;
  border-radius: 10px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), to(#00a785));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #00a785 100%);
}
@media screen and (max-width: 767px) {
  .links__img-container {
    margin-block: 32px 24px;
  }
}
.links__img {
  mix-blend-mode: multiply;
}
.links__img img {
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.links__btn {
  position: absolute;
  background-color: #fff;
  width: 68px;
  height: 37px;
  right: 20px;
  bottom: 20px;
  border-radius: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .links__btn {
    width: 54px;
    height: 30px;
    right: 10px;
    bottom: 10px;
  }
}
.links__btn-arrow {
  width: 14px;
}
@media screen and (max-width: 767px) {
  .links__btn-arrow {
    width: 10.94px;
  }
}
.links__txt {
  font-size: 1.8rem;
  line-height: 2em;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
@media screen and (max-width: 767px) {
  .links__txt {
    font-size: 15px;
    line-height: 2em;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0a8272;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.5555555556em;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 24px;
  }
}
.heading__icon {
  margin-right: 24px;
  padding: 3px 24px 3px 0;
  border-right: 1px solid #cfcfcf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .heading__icon {
    margin-right: 12px;
    padding-right: 12px;
  }
}
.heading__icon img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
}
@media screen and (max-width: 767px) {
  .heading__icon img {
    width: 20px;
  }
}
.heading--sub {
  position: relative;
  padding-left: 20px;
  font-size: 2.4rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .heading--sub {
    padding-left: 16px;
    font-size: 18px;
  }
}
.heading--sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 5px;
  height: 90%;
  background-color: #0a8272;
}
@media screen and (max-width: 767px) {
  .heading--sub::before {
    height: 95%;
  }
}

.table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-block: 22px;
  gap: 24px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  border-top: 1px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .table__item {
    font-size: 15px;
    padding-block: 16px;
    gap: 12px;
  }
}
.table__item:last-child {
  border-bottom: 1px solid #cfcfcf;
}
.table__item--sm {
  gap: 33px;
}
@media screen and (max-width: 767px) {
  .table__item--sm {
    gap: 16.5px;
  }
}
.table__label {
  min-width: 272px;
  line-height: 2.3333333333em;
}
@media screen and (max-width: 767px) {
  .table__label {
    min-width: 105px;
    width: 105px;
    line-height: 2em;
  }
}
.table__label--sm {
  min-width: 75px;
}
.table__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  overflow-wrap: break-word;
  gap: 20px;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .table__data {
    line-height: 2em;
    gap: 10px;
  }
}
.table__list {
  margin-left: 1em;
  list-style-type: disc;
}
.table__list li:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .table__list li:not(:last-child) {
    margin-bottom: 5px;
  }
}
.table__link {
  overflow-wrap: break-word;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.table__link:hover {
  opacity: 0.8;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  background-color: #fff;
  z-index: 1000;
}
.header__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 4.48%;
  z-index: 2;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1280px) {
  .header__layout {
    padding-inline: 3.584%;
  }
}
@media screen and (max-width: 1080px) {
  .header__layout {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 11px 0;
  }
}
.header__logo {
  margin-block: 26px 12px;
  max-width: 302px;
  width: 17.25%;
  min-width: 225px;
  height: 52px;
}
@media screen and (max-width: 1280px) {
  .header__logo {
    min-width: 180px;
  }
}
@media screen and (max-width: 1080px) {
  .header__logo {
    width: 280px;
    min-width: initial;
    margin-block: initial;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 162px;
    height: 28px;
    margin-block: 17px 7px;
  }
}
@media screen and (max-width: 1080px) {
  .header__navigation-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__navigation-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1080px) {
  .header__navigation-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__action {
  background-color: #0a8272;
  width: 296px;
  height: 40px;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__action {
    width: 130px;
    height: 26px;
  }
}
.header__action--secondary {
  background-color: #84cda5;
}
.header__action:hover {
  background-color: #80be15;
}
.header__action-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 767px) {
  .header__action-icon {
    width: 13px;
    height: 13px;
  }
}
.header__action-icon--cart {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767px) {
  .header__action-icon--cart {
    width: 13px;
    height: 13px;
  }
}
.header__action-text {
  margin-left: 13px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .header__action-text {
    margin-left: 8px;
    font-size: 1.3rem;
  }
}
.header__cart-counter {
  display: block;
  width: 45px;
  height: 24px;
  border-radius: 12px;
  background-color: #fff;
  margin-left: 26px;
  color: #539b5f;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__cart-counter {
    width: 30px;
    height: 18px;
    margin-left: 9px;
    font-size: 1.2rem;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 18px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1366px) {
  .header__nav {
    gap: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .header__nav {
    gap: 25.6px;
  }
}
@media screen and (max-width: 1080px) {
  .header__nav {
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
    position: absolute;
    inset: 100% 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    height: calc(100svh - 80px);
    margin-top: 0;
    background-color: #f8f8f2;
    padding-top: 80px;
    isolation: isolate;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    height: calc(100svh - 52px);
  }
}
@media screen and (max-width: 1080px) {
  .header__nav.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header__graphic {
  display: none;
}
@media screen and (max-width: 1080px) {
  .header__graphic {
    position: absolute;
    left: 10.43%;
    bottom: 5.15%;
    display: block;
    width: 82px;
    height: 87px;
    z-index: -1;
  }
}
.header__nav-link {
  font-size: 1.6rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1280px) {
  .header__nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1080px) {
  .header__nav-link {
    font-size: 1.8rem;
  }
}
.header__nav-link:hover {
  color: #0a8272;
}
.header__hamburger {
  display: none;
  border: none;
  background-color: #262626;
  width: 80px;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    width: 52px;
  }
}
@media screen and (max-width: 1080px) {
  .header__hamburger.active .header__hamburger-icon span:first-of-type {
    -webkit-transform: rotate(45deg) translate(6px, 5px);
            transform: rotate(45deg) translate(6px, 5px);
  }
}
@media screen and (max-width: 767px) {
  .header__hamburger.active .header__hamburger-icon span:first-of-type {
    -webkit-transform: rotate(45deg) translate(3px, 4px);
            transform: rotate(45deg) translate(3px, 4px);
  }
}
.header__hamburger.active .header__hamburger-icon span:nth-of-type(2) {
  opacity: 0;
}
@media screen and (max-width: 1080px) {
  .header__hamburger.active .header__hamburger-icon span:last-of-type {
    -webkit-transform: rotate(-45deg) translate(6px, -5px);
            transform: rotate(-45deg) translate(6px, -5px);
  }
}
@media screen and (max-width: 767px) {
  .header__hamburger.active .header__hamburger-icon span:last-of-type {
    -webkit-transform: rotate(-45deg) translate(3px, -4px);
            transform: rotate(-45deg) translate(3px, -4px);
  }
}
.header__hamburger-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 26px;
  height: 17px;
}
@media screen and (max-width: 767px) {
  .header__hamburger-icon {
    width: 17px;
    height: 11px;
  }
}
.header__hamburger-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__hamburger-icon span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header__hamburger-icon span:last-of-type {
  bottom: 0;
}

.footer {
  position: relative;
  background-color: #fff;
}
.footer__graphic {
  position: absolute;
  top: -98px;
  right: 12.08%;
  display: block;
  width: 155px;
  height: 167px;
}
@media screen and (max-width: 767px) {
  .footer__graphic {
    top: -31px;
    right: 1.43%;
    width: 100px;
    height: 90px;
  }
}
.footer__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 53px 56px;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .footer__layout {
    padding-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__logo-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 302px;
}
@media screen and (max-width: 1080px) {
  .footer__logo-column {
    max-width: 241.6px;
  }
}
.footer__logo {
  display: block;
  height: 52px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 222px;
    height: 38px;
    margin-bottom: 51px;
  }
}
.footer__navigation {
  max-width: 546px;
}
@media screen and (max-width: 767px) {
  .footer__navigation {
    margin-bottom: 38px;
  }
}
.footer__navigation-row {
  display: grid;
  grid-template-columns: 66px 201px 167px;
  gap: 42px 56px;
}
@media screen and (max-width: 1280px) {
  .footer__navigation-row {
    gap: 33.6px 44.8px;
  }
}
@media screen and (max-width: 1080px) {
  .footer__navigation-row {
    grid-template-columns: 52.8px 160.8px 133.6px;
  }
}
@media screen and (max-width: 767px) {
  .footer__navigation-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__navigation-group {
  min-width: 66px;
}
@media screen and (max-width: 767px) {
  .footer__navigation-group {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.footer__navigation-group:nth-of-type(3) {
  grid-column: 1/2;
}
.footer__navigation-label {
  margin-bottom: 18px;
  padding-left: 12px;
  position: relative;
  font-size: 1.2rem;
  font-family: "Manrope", serif;
  color: #0a8272;
}
@media screen and (max-width: 1080px) {
  .footer__navigation-label {
    margin-bottom: 14.4px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__navigation-label {
    margin-bottom: 13px;
  }
}
.footer__navigation-label::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  width: 2px;
  height: 10px;
  background-color: #0a8272;
}
@media screen and (max-width: 767px) {
  .footer__navigation-label::before {
    height: 8px;
  }
}
.footer__navigation-link {
  display: block;
  font-size: 1.6rem;
  line-height: 2em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1280px) {
  .footer__navigation-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1080px) {
  .footer__navigation-link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__navigation-link {
    font-size: 1.4rem;
  }
}
.footer__navigation-link:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .footer__navigation-link:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.footer__navigation-link:hover {
  color: #00a785;
}
.footer__button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer__button-group {
    width: 100%;
  }
}
.footer__button {
  width: 296px;
}
@media screen and (max-width: 1080px) {
  .footer__button {
    width: 236.8px;
  }
}
@media screen and (max-width: 767px) {
  .footer__button {
    width: 100%;
  }
}
.footer__button-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 1080px) {
  .footer__button-text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__button-text {
    font-size: 1.5rem;
  }
}
.footer__cpy {
  padding-block: 6px;
  background-color: #0a8272;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Manrope", serif;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .footer__cpy {
    padding-block: 7px;
    font-size: 1.3rem;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 23.44%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px 2.07%;
}
@media screen and (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, 31.26%);
  }
}
@media screen and (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, 48.34%);
    gap: 22px 3.31%;
  }
}
.product-grid--online-store {
  gap: 70, 2.07%;
}
@media screen and (max-width: 767px) {
  .product-grid--online-store {
    gap: 22px 3.31%;
  }
}
.product-grid__item {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-grid__item:hover {
  opacity: 0.8;
}
.product-grid__item:hover .product-grid__thumbnail img {
  scale: 1.15;
}
.product-grid__item:hover .product-grid__name {
  color: #0a8272;
}
.product-grid__thumbnail {
  width: 100%;
  height: 240px;
  margin-bottom: 14px;
  background-color: #fff;
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .product-grid__thumbnail {
    height: auto;
    min-height: 129px;
    margin-bottom: 11px;
  }
}
.product-grid__thumbnail img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-grid__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 980px) {
  .product-grid__name {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 767px) {
  .product-grid__name {
    -webkit-line-clamp: 3;
    font-size: 1.5rem;
    line-height: 1.7466666667em;
  }
}
.product-grid__price-wrapper {
  color: #0a8272;
}
.product-grid__price {
  font-size: 1.8rem;
}
@media screen and (max-width: 980px) {
  .product-grid__price {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 767px) {
  .product-grid__price {
    font-size: 1.5rem;
  }
}
.product-grid__note {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .product-grid__note {
    font-size: 1.3rem;
  }
}

.form-flow {
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .form-flow {
    margin-bottom: 30.4px;
  }
}
.form-flow__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.66%;
}
@media screen and (max-width: 767px) {
  .form-flow__layout {
    gap: 17px;
  }
}
.form-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 31.48%;
  padding-bottom: 8px;
  font-size: 1.6rem;
  border-bottom: 1px solid #cfcfcf;
  color: #cfcfcf;
}
@media screen and (max-width: 767px) {
  .form-flow__item {
    width: 29.8%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 13px;
    gap: 8px;
    font-size: 1.4rem;
    text-align: center;
  }
}
.form-flow__item.active {
  color: #0a8272;
  border-bottom: 1px solid #0a8272;
}
.form-flow__label {
  font-family: "Manrope", serif;
}
@media screen and (max-width: 767px) {
  .form-flow__label {
    width: 100%;
  }
}

.form {
  margin-top: 38px;
}
.form input[type=text],
.form input[type=number],
.form input[type=email],
.form input[type=tel],
.form input[type=password],
.form select,
.form textarea {
  display: block;
  width: 100%;
  height: 65px;
  border-radius: 15px;
  border: none;
  outline: none;
  padding-inline: 25px;
  font-family: inherit;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .form input[type=text],
  .form input[type=number],
  .form input[type=email],
  .form input[type=tel],
  .form input[type=password],
  .form select,
  .form textarea {
    height: 55px;
    padding-inline: 20px;
  }
}
.form input[type=file] {
  font-family: inherit;
  font-size: 1.6rem;
  opacity: 0;
}
.form ::-webkit-file-upload-button {
  display: none;
}
.form ::file-selector-button {
  display: none;
}
.form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../public/img/icons/caret-down.svg");
  background-size: 10px 7px;
  background-repeat: no-repeat;
  background-position: calc(100% - 25px) center;
}
.form select::-ms-expand {
  display: none;
}
.form label input[type=checkbox],
.form label input[type=radio] {
  display: none;
}
.form label span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .form label span {
    font-size: 1.6rem;
  }
}
.form label input[type=checkbox] + span::before {
  content: "";
  display: block;
  width: 43px;
  height: 43px;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #f6f6f6;
}
.form label input[type=radio] + span::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #f6f6f6;
}
.form label input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  left: 10px;
  margin: auto;
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../public/img/icons/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.form label input[type=radio] + span::after {
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #93c79b;
  border: 1px solid #f6f6f6;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.form label input[type=checkbox]:not(:checked) + span::after,
.form label input[type=radio]:not(:checked) + span::after {
  scale: 0;
}
.form label input[type=checkbox]:checked + span::after,
.form label input[type=radio]:checked + span::after {
  scale: 1;
}
.form .text {
  margin-block: 22px 10px;
}
@media screen and (max-width: 767px) {
  .form .text {
    margin-block: 17.6px 8px;
  }
}
.form__input-item:not(:last-of-type) {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .form__input-item:not(:last-of-type) {
    margin-bottom: 25.6px;
  }
}
.form__label-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .form__label-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 12.8px;
    margin-bottom: 12.8px;
  }
}
.form__requirement {
  width: 55px;
  height: 25px;
  border-radius: 5px;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__requirement {
    width: 50px;
    height: 25px;
    font-size: 1.4rem;
  }
}
.form__requirement--required {
  color: #fff;
  background-color: #0a8272;
}
.form__requirement--optional {
  color: #262626;
  background-color: #cfcfcf;
}
.form__label {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .form__label {
    font-size: 1.6rem;
  }
}
.form__placeholder {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .form__placeholder {
    width: 100%;
    font-size: 1.4rem;
  }
}
.form__input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .form__input-wrapper {
    font-size: 1.5rem;
    gap: 15px;
  }
}
.form__input-wrapper:has(input:not(input[type=hidden]) + input) input {
  width: calc(50% - 15px) !important;
}
.form__half-field {
  max-width: 420px;
}
@media screen and (max-width: 767px) {
  .form__half-field {
    max-width: 146px;
  }
}
.form__file-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 25px;
  width: 420px;
  height: 65px;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .form__file-wrapper {
    max-width: 146px;
  }
}
.form__button {
  width: 272px;
  height: 65px;
  margin-left: 26px;
  border-radius: 15px;
  border: 1px solid #0a8272;
  background-color: #ebf8f4;
  font-size: 1.8rem;
  color: #0a8272;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__button {
    width: 146px;
    height: 55px;
    margin-left: 11px;
    font-size: 1.5rem;
  }
}
.form__button:hover {
  background-color: #0a8272;
  color: #fff;
}
.form__textarea {
  padding: 25px !important;
  height: 320px !important;
  line-height: 1.75em;
  resize: none;
}
@media screen and (max-width: 767px) {
  .form__textarea {
    height: 256px !important;
    padding: 20px !important;
  }
}
.form__button-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__button-wrapper {
    margin-top: 38.4px;
    gap: 11px;
  }
}
.form__action-button {
  width: 296px;
}
.form__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__radio-item {
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .form__radio-item {
    min-width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .form__radio-item {
    min-width: 100%;
    width: 100%;
  }
}
.form__radio-item:not(:last-of-type) {
  margin-right: 47px;
}
.form__return {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.form__return::before {
  width: 100%;
}
.form__return::after {
  display: none;
}
.form .js-file-upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company__section {
  width: 100%;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .company__section {
    padding-top: 72px;
  }
}
.company__section--greeting {
  padding-top: 88px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .company__section--greeting {
    padding-top: 48px;
  }
}
.company__container {
  margin: 0 auto;
}
.company__greeting {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 66px;
  padding-bottom: 88px;
}
@media screen and (max-width: 1200px) {
  .company__greeting {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .company__greeting {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 48px;
  }
}
.company__greeting-col {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .company__greeting-col {
    width: 100%;
  }
}
.company__greeting-col--image {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 415px;
}
@media screen and (max-width: 1200px) {
  .company__greeting-col--image {
    max-width: 320px;
  }
}
@media screen and (max-width: 980px) {
  .company__greeting-col--image {
    max-width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .company__greeting-col--image {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .company__greeting-image-block {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 263px;
    margin: 64px auto;
  }
}
.company__greeting-image {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 341px;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__greeting-image {
    max-width: 216px;
  }
}
.company__greeting-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  translate: -50% -50%;
}
.company__greeting-decor {
  position: absolute;
  z-index: 1;
  bottom: -28px;
  right: -3%;
  width: 87px;
}
@media screen and (max-width: 767px) {
  .company__greeting-decor {
    bottom: -60px;
    width: 60px;
  }
}
.company__greeting-text {
  margin-top: 48px;
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .company__greeting-text {
    margin-top: 0;
    font-size: 15px;
  }
}
.company__greeting-text span.sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 32px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .company__greeting-text span.sign {
    margin-top: 24px;
  }
}
.company__table {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .company__table {
    margin-top: 32px;
  }
}
.company__table-label {
  width: 130px;
  min-width: 130px;
}
@media screen and (max-width: 767px) {
  .company__table-label {
    width: 68px;
    min-width: 68px;
  }
}
.company__access-map {
  width: 100%;
  height: 400px;
  margin-top: 48px;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__access-map {
    height: 200px;
    margin-top: 32px;
  }
}

.news__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1160px !important;
}
@media screen and (max-width: 767px) {
  .news__container {
    max-width: 100%;
  }
}
.news__content-wrap {
  margin-top: 48px;
  background-color: #fff;
  border-radius: 15px;
  padding: 48px;
}
@media screen and (max-width: 767px) {
  .news__content-wrap {
    padding: 24px;
  }
}
.news__content-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  color: #0a8272;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .news__content-heading {
    font-size: 20px;
  }
}
.news__articles {
  padding: 0;
}
.news__detail-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 864px !important;
}
@media screen and (max-width: 767px) {
  .news__detail-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news__detail-container {
    padding: 0 8% !important;
  }
}
.news__detail-title {
  padding: 45px 0 50px;
  font-size: 2.4rem;
  font-family: "Kosugi", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .news__detail-title {
    padding: 25px 0;
    font-size: 20px;
  }
}
.news__detail-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news__detail-img-wrap {
    margin-bottom: 15px;
  }
}
.news__detail-img {
  display: block;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 15px;
}
.news__detail-desc-txt {
  font-size: 1.6rem;
  font-family: "Kosugi", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .news__detail-desc-txt {
    font-size: 14px;
  }
}
.news__detail-link {
  margin-top: 32px;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .news__detail-link {
    margin-top: 22px;
  }
}
.news__detail-link::before {
  width: calc(100% - 13px - 22px);
}
.news__detail-link::after {
  background: url("../public/img/icons/newtab.svg") no-repeat center/contain;
  width: 15px;
  height: 15px;
}
.news__detail-link-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news__detail-link-txt {
    font-size: 14px;
  }
}
.news__detail-blk {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .news__detail-blk {
    gap: 20px;
  }
}
.news__detail-col-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .news__detail-col-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news__detail-col-img {
  width: calc(50% - 10px);
  height: 100%;
  max-height: 230px;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .news__detail-col-img {
    width: 100%;
  }
}
.news__pagenavi-wrapper {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .news__pagenavi-wrapper {
    margin-top: 24px;
  }
}

.top {
  overflow: hidden;
  padding-block: 64px 0;
}
@media screen and (max-width: 908px) {
  .top {
    padding-block: 40px 0;
  }
}
@media screen and (max-width: 980px) {
  .top h2 {
    font-size: 2.88rem;
  }
}
@media screen and (max-width: 767px) {
  .top h2 {
    font-size: 2.4rem;
  }
}
.top__link:hover .top__link-bg picture img {
  scale: 1.15;
}
.top__link:hover .button-link__text::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.top__link .button-link {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__link .button-link {
    gap: 9px;
  }
}
.top__link .button-link::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__link .button-link::before {
    display: block;
  }
}
.top__link .button-link__text {
  position: relative;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top__link .button-link__text {
    font-size: 1.3rem;
  }
}
.top__link .button-link__text::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #0a8272;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__link .button-link__text::before {
    width: 100%;
    display: none;
  }
}
.top__link .button-link__text--secondary::before {
  background-color: #4ebc5d;
}
.top__link .button-link::after {
  width: 20px;
  height: 20px;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .top__link .button-link::after {
    width: 15px;
    height: 15px;
  }
}
.top__link--full {
  width: 48.91%;
}
@media screen and (max-width: 767px) {
  .top__link--full {
    width: 100%;
  }
}
.top__link--full .button-link {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .top__link--full .button-link::before {
    display: none;
  }
}
.top__link--full .button-link__text {
  font-size: 2.4rem;
  padding-bottom: 0;
}
@media screen and (max-width: 980px) {
  .top__link--full .button-link__text {
    font-size: 1.52rem;
  }
}
@media screen and (max-width: 767px) {
  .top__link--full .button-link__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top__link--full .button-link__text::before {
    display: block;
  }
}
.top__link--full .button-link::after {
  width: 24px;
  height: 24px;
  margin-top: 12px;
}
@media screen and (max-width: 980px) {
  .top__link--full .button-link::after {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .top__link--full .button-link::after {
    width: 18px;
    height: 18px;
  }
}
.top__link--full .button-link--after-offset {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .top__link--full .button-link--after-offset::after {
    position: absolute;
    right: 46px;
    top: 45px;
    margin-top: 0;
  }
}
.top__link-bg {
  position: relative;
  border-radius: 15px;
  margin-bottom: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__link-bg {
    height: 105px;
  }
}
.top__link-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0a8272;
  mix-blend-mode: multiply;
  opacity: 0.1;
}
.top__link-bg--secondary {
  background-color: #539b5f;
}
.top__link-bg--short {
  height: 173px;
}
@media screen and (max-width: 767px) {
  .top__link-bg--short {
    height: 90px;
  }
}
.top__link-bg img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.top__link-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: auto;
  z-index: 1;
}
.top__link-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#00a785));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #00a785);
  opacity: 0.6;
  z-index: -1;
}
.top__link-overlay svg {
  width: 28.9%;
}
@media screen and (max-width: 767px) {
  .top__link-overlay svg {
    width: 60px;
    height: 57px;
  }
}
.top__link-overlay--secondary::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#4ebc5d));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #4ebc5d);
}
.top__link-overlay--secondary svg {
  width: 16.18%;
}
@media screen and (max-width: 767px) {
  .top__link-overlay--secondary svg {
    width: 41px;
    height: 55px;
  }
}
.top__link-icon {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__link-icon {
    width: 50px;
    height: 50px;
  }
}
.top__link-icon img {
  width: 60%;
  height: 57%;
}
.top__link-icon--secondary img {
  width: 37%;
  height: 50%;
}
.top .mv {
  max-width: calc(1456px + 4%);
  padding: 0 2% 30px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .top .mv {
    padding-inline: 8%;
  }
}
.top .mv__grid {
  display: grid;
  grid-template-columns: 1fr 272px;
  grid-template-rows: repeat(2, 1fr);
  gap: 32px 1.65%;
  margin-bottom: 54px;
}
@media screen and (max-width: 1280px) {
  .top .mv__grid {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 980px) {
  .top .mv__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .top .mv__grid {
    margin-bottom: 24px;
    grid-template-rows: repeat(3, auto);
    gap: 0 3.31%;
  }
}
.top .mv__main-image {
  border-radius: 15px;
  overflow: hidden;
  grid-row: 1/3;
}
@media screen and (max-width: 980px) {
  .top .mv__main-image {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .top .mv__main-image {
    height: 168px;
  }
}
.top .mv .top__link {
  position: relative;
  max-width: 272px;
}
@media screen and (max-width: 980px) {
  .top .mv .top__link {
    grid-row: 2/3;
    max-width: initial;
  }
}
@media screen and (max-width: 767px) {
  .top .mv .top__link {
    grid-row: 3/4;
  }
}
.top .mv .top__link:last-of-type {
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .top .mv .top__link:last-of-type {
    grid-row: 3/4;
  }
}
.top .mv__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
}
.top .mv__heading {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.75em;
}
@media screen and (max-width: 980px) {
  .top .mv__heading {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .top .mv__heading {
    margin-block: 9px 10px;
  }
}
.top .mv__heading h1 {
  font-size: 4rem;
}
@media screen and (max-width: 1280px) {
  .top .mv__heading h1 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top .mv__heading h1 {
    font-size: 2.4rem;
    line-height: 1.75em;
  }
}
.top .mv__graphics-wrapper {
  position: relative;
  right: -44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 47px;
}
@media screen and (max-width: 1080px) {
  .top .mv__graphics-wrapper {
    width: 316px;
    gap: 37.6px;
  }
}
@media screen and (max-width: 980px) {
  .top .mv__graphics-wrapper {
    width: auto;
    right: -42px;
    margin-left: auto;
    gap: 22px;
  }
}
.top .mv__graphic {
  position: relative;
}
.top .mv__graphic:first-of-type {
  top: 33px;
}
@media screen and (max-width: 767px) {
  .top .mv__graphic:first-of-type {
    width: 76px;
  }
}
@media screen and (max-width: 767px) {
  .top .mv__graphic:nth-of-type(2) {
    width: 65px;
  }
}
.top .mv__graphic:last-of-type {
  top: 29px;
}
@media screen and (max-width: 767px) {
  .top .mv__graphic:last-of-type {
    width: 42px;
  }
}
.top .news-block__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .top .news-block__link {
    margin: 32px auto 0;
  }
}
.top .news-block__link .button-link__text {
  padding-bottom: 0;
}
@media screen and (max-width: 1080px) {
  .top .news-block .news-articles {
    padding: 38.4px;
  }
}
@media screen and (max-width: 767px) {
  .top .news-block .news-articles {
    padding: 32px 24px;
  }
}
@media screen and (max-width: 980px) {
  .top .news-block .news-articles__desc-txt {
    font-size: 1.4rem;
  }
}
.top__section {
  padding-block: 110px;
}
@media screen and (max-width: 767px) {
  .top__section {
    padding-block: 72px;
  }
}
.top__section--white {
  padding-block: 88px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top__section--white {
    padding-block: 40px;
  }
}
.top__section:last-child {
  padding-bottom: 0;
}
.top__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8.88%;
}
@media screen and (max-width: 980px) {
  .top__content-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top__section-heading {
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .top__section-heading {
    margin-bottom: 31px;
  }
}
.top__section-subheading {
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .top__section-subheading {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 980px) {
  .top__section-subheading h3 {
    font-size: 1.92rem;
  }
}
@media screen and (max-width: 767px) {
  .top__section-subheading h3 {
    font-size: 1.8rem;
  }
}
.top__content-column {
  width: 61.81%;
}
@media screen and (max-width: 767px) {
  .top__content-column {
    width: 100%;
  }
}
.top__image-column {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 340px;
  isolation: isolate;
}
@media screen and (max-width: 980px) {
  .top__image-column {
    width: 272px;
  }
}
@media screen and (max-width: 767px) {
  .top__image-column {
    width: 189px;
    height: 200px;
    margin: 0 auto 76px;
  }
}
.top__image-column img {
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .top__image-column img {
    -o-object-position: 25%;
       object-position: 25%;
    border-radius: 30px;
  }
}
.top__image-column::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -65.28%;
  display: block;
  width: 122.06%;
  height: 119.72%;
  background-image: url("../public/img/decoration.svg");
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__image-column::before {
    top: -9px;
    right: -73.54%;
    width: 129%;
    height: 127%;
  }
}
.top__image-graphic {
  position: absolute;
  left: -25px;
  bottom: -29px;
  width: 60px;
  height: 125px;
}
@media screen and (max-width: 767px) {
  .top__image-graphic {
    left: -10px;
    bottom: -16px;
    width: 36px;
    height: 70px;
  }
}
.top__cta-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.1%;
  margin-top: 68px;
  background-color: #fff;
  border-radius: 15px;
  padding: 32px 2.76%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top__cta-wrapper {
    padding-inline: 7.95%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
    margin-top: 18px;
  }
}
.top__cta-wrapper .top__link-overlay {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 167, 133, 0.6)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 167, 133, 0.6));
}
.top__cta-wrapper .top__link-overlay--secondary {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(78, 188, 93, 0.6)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(78, 188, 93, 0.6));
}
.top__map-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .top__map-row {
    gap: initial;
    width: 100%;
  }
}
.top__link-column {
  max-width: 568px;
}
@media screen and (max-width: 1080px) {
  .top__link-column {
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .top__link-column .button {
    width: 100%;
  }
}
.top__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-block: 38px 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .top__link-list {
    gap: 12px;
    margin-block: 0 33px;
    padding-bottom: 33px;
  }
}
.top__map-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1080px) {
  .top__map-link {
    width: 100%;
  }
}
.top__map-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  border-radius: 15px;
  background-color: #eaf2ef;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__map-wrapper {
    max-width: 303px;
    margin: 32px auto;
  }
}
.top__map-element {
  position: relative;
}
.top__map-label {
  position: absolute;
  top: 4.11%;
  left: 4.05%;
}
@media screen and (max-width: 767px) {
  .top__map-label {
    top: 4.35%;
    left: 4.29%;
    height: 13px;
  }
}
.top__map-overlay {
  position: absolute;
  inset: 0;
}
.top__map-location {
  position: absolute;
  font-size: 1.6rem;
  color: #06473e;
  border-bottom: 1px solid #06473e;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top__map-location {
    font-size: 1.2rem;
  }
}
.top__map-location:first-of-type {
  top: 30.68%;
  left: 22.14%;
}
.top__map-location:nth-of-type(2) {
  top: 37.44%;
  right: 10.24%;
}
.top__map-location:last-of-type {
  bottom: 30.92%;
  left: 32.38%;
}
.top .product-grid {
  margin-block: 38px 48px;
}
.top__button-wrapper {
  display: grid;
  place-items: center;
}

.pr__title {
  margin-block: 31px 16px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .pr__title {
    -webkit-margin-before: 24.8px 12.8px;
            margin-block-start: 24.8px 12.8px;
    font-size: 1.92rem;
  }
}
.pr__button {
  margin: 38px auto 0;
}

.store {
  margin-top: 48px;
}
.store__header {
  font-size: 3.6rem;
  font-weight: 400;
  color: #0a8272;
  margin-block: 0 32px;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .store__header {
    font-size: 24px;
    margin-block: 0 24px;
  }
}
.store__header:first-child {
  margin-top: 48px;
}
.store .overflow {
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  .store .overflow {
    padding-top: 48px;
  }
}
.store__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.store__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 32px 0 32px 32px;
  border-radius: 15px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .store__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 22px 24px 24px;
    gap: 24px;
  }
}
.store__img-wrapper {
  width: 100%;
  max-width: 330px;
  overflow: hidden;
  border-radius: 15px;
  margin-right: 64px;
  background-color: #cfcfcf;
  aspect-ratio: 330/256;
}
@media screen and (max-width: 980px) {
  .store__img-wrapper {
    width: 254px;
    margin-right: 32px;
  }
}
@media screen and (max-width: 767px) {
  .store__img-wrapper {
    max-width: 100%;
    aspect-ratio: 254/180;
    -ms-flex-item-align: center;
        align-self: center;
    margin-inline: auto;
  }
}
.store__details {
  margin-right: 24px;
  margin-block: auto;
}
.store__name {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .store__name {
    font-size: 18px;
  }
}
.store__schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.store__schedule:not(:last-child) {
  margin-bottom: 12px;
}
.store__date-category {
  width: 80px;
  height: 30px;
  background-color: #ebf8f4;
  color: #0a8272;
  font-size: 1.6rem;
  line-height: 2em;
  text-align: center;
  border-radius: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .store__date-category {
    width: 70px;
    font-size: 14px;
    margin-right: 16px;
  }
}
.store__date-category--dark-green {
  background-color: #93c79b;
  color: #fff;
}
.store__date {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .store__date {
    font-size: 15px;
  }
}
.store__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-left: 1px solid #cfcfcf;
  margin-left: auto;
  padding-inline: 11.37%;
  color: #0a8272;
  font-size: 1.6rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1080px) {
  .store__btn {
    padding-inline: 6%;
  }
}
@media screen and (max-width: 767px) {
  .store__btn {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-inline: 0;
    padding-top: 24px;
    border-left: none;
    border-top: 1px solid #cfcfcf;
  }
}
.store__btn:hover {
  opacity: 0.8;
}
.store__btn-arrow {
  position: relative;
  background-color: #0a8272;
  width: 68px;
  height: 37px;
  border-radius: 19px;
}
.store__btn-arrow::before {
  content: "";
  position: absolute;
  left: 40%;
  top: 37%;
  width: 14px;
  height: 10px;
  background-color: #fff;
  -webkit-mask: url("../public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
          mask: url("../public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
}
.store__details-name {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .store__details-name {
    font-size: 28px;
  }
}
.store__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .store__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.store__detail-img {
  width: 100%;
  max-width: 568px;
  overflow: hidden;
  border-radius: 15px;
  background-color: #cfcfcf;
  aspect-ratio: 568/441;
}
@media screen and (max-width: 1024px) {
  .store__detail-img {
    aspect-ratio: 302/168;
    max-width: 100%;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.store__detail-table {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.store__details-map {
  height: 400px;
  margin-top: 64px;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .store__details-map {
    height: 200px;
  }
}
.store__details-btn {
  margin: 48px auto;
}
@media screen and (max-width: 767px) {
  .store__details-btn {
    margin-top: 24px;
  }
}

.recruit__heading {
  padding: 41px 0 25px;
  font-size: 3.6rem;
  font-family: "Kosugi", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5555555556em;
}
@media screen and (max-width: 767px) {
  .recruit__heading {
    font-size: 30px;
  }
}
.recruit__tbl-section {
  position: relative;
}
.recruit__tab-content {
  position: absolute;
  top: 77px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 550ms ease;
  transition: opacity 550ms ease;
  visibility: hidden;
}
.recruit__tab-content.active {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}
.recruit__job-section {
  position: relative;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .recruit__job-section {
    margin-top: 34px;
  }
}
.recruit__bg {
  height: 300px;
  width: 100%;
  background-image: url("../public/img/recruit/recruit.jpg");
  background-size: cover;
  position: relative;
  border-radius: 15px;
}
.recruit__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(235, 248, 245, 0)), to(#ebf8f4));
  background: linear-gradient(to right, rgba(235, 248, 245, 0), #ebf8f4);
  mix-blend-mode: normal;
}
.recruit__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit__content {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    gap: 30px;
  }
}
.recruit__txt {
  font-size: 1.8rem;
  font-family: "Kosugi", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recruit__txt {
    font-size: 16px;
  }
}
.recruit__title {
  margin-top: 10px;
  font-size: 4rem;
  font-family: "Manrope", serif;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 0.8em;
  -webkit-filter: drop-shadow(0 5px 15px #0a8272);
          filter: drop-shadow(0 5px 15px #0a8272);
}
@media screen and (max-width: 767px) {
  .recruit__title {
    font-size: 30px;
  }
}
.recruit__btn {
  width: 296px;
}
@media screen and (max-width: 767px) {
  .recruit__btn {
    width: initial;
  }
}
.recruit__blk .button.button--solid .button__text {
  font-size: 1.6rem;
}

.flow__txt {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .flow__txt {
    font-size: 15px;
    line-height: 2em;
  }
}
.flow__list {
  margin-top: 40px;
}
.flow__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
  position: relative;
  min-height: 303px;
  padding-block: 35px;
}
@media screen and (max-width: 767px) {
  .flow__list-item {
    padding-top: 24px;
    padding-bottom: 49px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    border-top: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
    gap: 24px;
    min-height: initial;
  }
}
.flow__list-item::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 10rem;
  width: 26px;
  height: 23px;
  background-image: url("../public/img/icons/pointer-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow__list-item::before {
    background-color: #f8f8f2;
    left: 42%;
    bottom: -15px;
    z-index: 1;
    padding: 0 30px;
  }
}
@media screen and (max-width: 450px) {
  .flow__list-item::before {
    left: 34%;
  }
}
.flow__list-item:last-child::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .flow__list-item:not(:first-child) {
    padding-top: 36px;
  }
}
.flow__list-item:last-of-type .flow__content {
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .flow__list-item:last-of-type .flow__content {
    border-bottom: none;
  }
}
.flow__pic {
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .flow__pic {
    width: 100%;
  }
}
.flow__img {
  width: 232px;
  height: 232px;
  border-radius: 19px;
}
@media screen and (max-width: 767px) {
  .flow__img {
    width: 146px;
    height: 146px;
  }
}
.flow__content {
  border-top: 1px solid #cfcfcf;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 767px) {
  .flow__content {
    height: 100%;
    border: none;
  }
}
.flow__content--no-border {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .flow__content--no-border {
    border-top: none;
    border-bottom: none;
  }
}
.flow__list-test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow__list-test-num {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-family: "Manrope", serif;
  color: #0a8272;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .flow__list-test-num {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
.flow__desc-title {
  display: block;
  font-size: 2.4rem;
  font-family: "Kosugi", serif;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-left: 21px;
}
@media screen and (max-width: 767px) {
  .flow__desc-title {
    font-size: 18px;
    line-height: 1.7777777778em;
    margin-left: 17px;
  }
}
.flow__desc {
  margin-top: 10px;
}
.flow__desc-txt {
  font-size: 1.8rem;
  font-family: "Kosugi", serif;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .flow__desc-txt {
    font-size: 15px;
  }
}

.product__list-pagination {
  margin-top: 48px;
}
.product__container {
  max-width: calc(864px + 16%) !important;
  padding-inline: 8% !important;
}
@media screen and (max-width: 980px) {
  .product__container {
    max-width: 100% !important;
  }
}
.product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .product__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    font-size: 14px;
  }
}
.product__info-col {
  max-width: 420px;
}
@media screen and (max-width: 980px) {
  .product__info-col {
    width: 50%;
    max-width: unset;
  }
}
@media screen and (max-width: 767px) {
  .product__info-col {
    width: 100%;
  }
}
.product__info-col--text {
  max-width: unset;
}
.product__slider-main-image, .product__slider-nav-image {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product__slider-main-image img, .product__slider-nav-image img {
  vertical-align: middle;
}
.product__slider-main {
  margin-bottom: 30px;
}
.product__slider-main-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.product__slider-main-image {
  height: 100%;
  max-height: 372px;
}
.product__slider-nav-item {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.product__slider-nav-item.is-active {
  border-width: 1px !important;
  border-color: #0a8272 !important;
}
.product__slider-nav-image {
  max-height: 110px;
}
.product__slider-nav-arrow {
  width: 30px;
  height: 30px;
}
.product__slider-nav-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  aspect-ratio: 1/1;
  background: url("../public/img/icons/caret-right.svg") no-repeat center/contain;
  translate: -45% -50%;
}
.product__slider-nav-arrow svg {
  display: none;
}
.product__slider-nav-arrow--prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  translate: -55% -50%;
}
.product__info-block {
  padding: 24px 0;
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .product__info-block {
    padding: 24px 0;
  }
}
.product__info-block:first-child {
  padding-top: 0;
}
.product__info-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.product__title {
  margin-bottom: 12px;
  color: #262626;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .product__title {
    margin-bottom: 12px;
    font-size: 18px;
  }
}
.product__price {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .product__price {
    font-size: 18px;
  }
}
.product__table {
  display: table;
  border-collapse: collapse;
  width: 100%;
}
.product__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product__table th,
.product__table td {
  font-weight: 400;
  text-align: left;
}
.product__qty-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 980px) {
  .product__qty-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
    margin-bottom: 16px;
  }
}
.product__qty-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product__qty-input-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 10px 0 20px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product__qty-input-wrap {
    margin: 0;
  }
}
.product__qty-input {
  width: 100%;
  padding: 24px 75px 24px 32px;
  border: none;
  outline: none;
  font-size: 1.6rem;
}
@media screen and (max-width: 980px) {
  .product__qty-input {
    padding: 18px 65px 18px 24px;
  }
}
.product__qty-input::-webkit-outer-spin-button, .product__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.product__qty-spinner {
  position: absolute;
  top: 50%;
  right: 0;
  width: 45px;
  height: 45px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f6f6f6;
  border-radius: 10px;
  translate: -10px -50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product__qty-spinner-btn {
  padding: 8px 14px;
  background: url("../public/img/icons/spinner-down.svg") no-repeat center/14px 8px;
  cursor: pointer;
}
.product__qty-spinner-btn.add {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.product__qty-btn {
  gap: 23px;
  width: 100%;
  height: 65px;
  background-color: #84cda5;
  border: none;
  border-radius: 15px;
  outline: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .product__qty-btn {
    gap: 12px;
    height: 55px;
    font-size: 15px;
  }
}
.product__qty-btn:hover {
  background-color: #80be15;
}
.product__qty-btn-icon {
  width: 25px;
}
@media screen and (max-width: 767px) {
  .product__qty-btn-icon {
    width: 18px;
  }
}
.product__description {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .product__description {
    margin-top: 48px;
  }
}
.product__descr-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 48px;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .product__descr-block {
    gap: 12px;
    padding: 24px;
  }
}
.product__descr-block:not(:last-of-type) {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .product__descr-block:not(:last-of-type) {
    margin-bottom: 24px;
  }
}
.product__descr-heading {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .product__descr-heading {
    font-size: 16px;
  }
}
.product__descr-para {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .product__descr-para {
    font-size: 14px;
  }
}
.product__descr-image-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 39px;
}
@media screen and (max-width: 767px) {
  .product__descr-image-row {
    gap: 10px;
  }
}
.product__descr-image-row:not(:first-child, :last-child) {
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  .product__descr-image-row:not(:first-child, :last-child) {
    margin: 24px 0;
  }
}
.product__descr-image-row:first-child {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .product__descr-image-row:first-child {
    margin-bottom: 12px;
  }
}
.product__descr-image-row:last-child {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .product__descr-image-row:last-child {
    margin-bottom: 12px;
  }
}
.product__descr-image {
  width: calc(33.33% - 26px);
  height: 180px;
  background-color: #e2e2e2;
  border-radius: 17px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product__descr-image {
    width: calc(50% - 5px);
    height: 25vw;
    min-height: 95px;
    border-radius: 15px;
  }
}
.product__detail-btn {
  margin: 48px auto 0;
}

.sitemap__wrap {
  display: grid;
  grid-template-columns: 340px 439px 172px;
  gap: 50px 20px;
}
@media screen and (max-width: 1060px) {
  .sitemap__wrap {
    grid-template-columns: 215px 278px 172px;
  }
}
@media screen and (max-width: 767px) {
  .sitemap__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 33.6px 44.8px;
  }
}
.sitemap__blk {
  min-width: 200px;
}
@media screen and (max-width: 767px) {
  .sitemap__blk {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 86px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.sitemap__blk:nth-child(3) {
  grid-column: 1/2;
}
.sitemap__heading::before {
  height: 56%;
}
.sitemap__link-wrap {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.sitemap__link {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .sitemap__link {
    font-size: 14px;
  }
}
.sitemap__link:hover {
  color: #00a785;
}

.privacy__intro-wrap {
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .privacy__intro-wrap {
    padding-bottom: 15px;
  }
}
.privacy__con {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .privacy__con {
    margin-top: 15px;
    gap: 20px;
  }
}
.privacy__txt {
  display: block;
  margin-top: 15px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .privacy__txt {
    font-size: 14px;
    margin-top: 7px;
  }
}
.privacy__txt--mt0 {
  margin-top: 0;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}
@media screen and (max-width: 980px) {
  .tablet {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.tablet-flex {
  display: none;
}
@media screen and (max-width: 980px) {
  .tablet-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 980px) {
  .tablet-hide {
    display: none;
  }
}

.container {
  max-width: calc(1160px + 8%);
  margin: auto;
  padding-inline: 4%;
}
@media screen and (max-width: 767px) {
  .container {
    padding-inline: 8%;
  }
}
.container--narrow {
  max-width: calc(864px + 8%);
}
@media screen and (max-width: 767px) {
  .container--narrow {
    padding-inline: 8%;
  }
}

.text {
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 980px) {
  .text {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 1.5rem;
  }
}

.external-link {
  color: #0a8272;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.external-link::after {
  content: "";
  display: inline-block;
  margin-left: 9px;
  width: 14px;
  height: 14px;
  background-image: url("../public/img/icons/external.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.external-link:hover {
  opacity: 0.5;
}
.external-link:hover::after {
  opacity: 0.5;
}

.graphic-animate {
  -webkit-animation: shake-it 3.5s steps(2) infinite;
          animation: shake-it 3.5s steps(2) infinite;
}
.graphic-animate:nth-of-type(2) {
  -webkit-transform: rotate(-24deg);
          transform: rotate(-24deg);
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.graphic-animate:nth-of-type(3) {
  -webkit-animation-delay: -5.5s;
          animation-delay: -5.5s;
}

.center-auto {
  margin: 0 auto;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px;
  }
}

.page,
.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  font-family: "Manrope", serif;
  color: #0a8272;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  letter-spacing: 0.05em;
  line-height: 2em;
  width: 37px;
  height: 37px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #0a8272;
}

.current {
  background-color: #0a8272;
  color: #fff;
}

.page:hover,
.previouspostslink:hover,
.nextpostslink:hover {
  background-color: #0a8272;
  color: #fff;
}
.page:hover::before,
.previouspostslink:hover::before,
.nextpostslink:hover::before {
  background-color: #fff;
}

.previouspostslink,
.nextpostslink {
  position: relative;
  width: 68px;
  height: 37px;
  background-color: #fff;
  border-radius: 19px;
  border: 1px solid #0a8272;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.previouspostslink::before,
.nextpostslink::before {
  content: "";
  position: absolute;
  left: 40%;
  top: 37%;
  width: 14px;
  height: 10px;
  background-color: #0a8272;
}

.previouspostslink {
  margin-right: 22px;
}
@media screen and (max-width: 767px) {
  .previouspostslink {
    margin-right: 10px;
  }
}
.previouspostslink::before {
  -webkit-mask: url("../public/img/icons/arrow-left.svg") no-repeat center/100% 100%;
          mask: url("../public/img/icons/arrow-left.svg") no-repeat center/100% 100%;
}

.nextpostslink {
  margin-left: 22px;
}
@media screen and (max-width: 767px) {
  .nextpostslink {
    margin-left: 10px;
  }
}
.nextpostslink::before {
  -webkit-mask: url("../public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
          mask: url("../public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
}

.wp-archivenav {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 58px;
}
@media screen and (max-width: 767px) {
  .wp-archivenav {
    margin-top: 24px;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .previousarclink {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .nextarclink {
    margin-left: 0;
  }
}

[data-aos=heading] {
  opacity: 0;
  -webkit-transform: translate3d(0, 110%, 0);
          transform: translate3d(0, 110%, 0);
  -webkit-transition: opacity 0.5s, -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.5s, -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.5s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.5s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-duration: 1s !important;
          transition-duration: 1s !important;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
[data-aos=heading].aos-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

[data-aos=subheading] {
  opacity: 0;
  -webkit-transform: translate3d(0, 2em, 0);
          transform: translate3d(0, 2em, 0);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.4, 0.1, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.1, 0.2, 1);
  -webkit-transition-duration: 0.7s !important;
          transition-duration: 0.7s !important;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
[data-aos=subheading].aos-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@-webkit-keyframes shake-it {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  100% {
    -webkit-transform: rotate(-24deg);
            transform: rotate(-24deg);
  }
}

@keyframes shake-it {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  100% {
    -webkit-transform: rotate(-24deg);
            transform: rotate(-24deg);
  }
}
.error {
  font-size: 1.8rem;
}

.mwform-radio-field-text {
  cursor: pointer;
}

.mw_wp_form_confirm.mw_wp_form_preview .hide {
  display: none;
}
.mw_wp_form_confirm.mw_wp_form_preview .form__file-wrapper {
  height: auto;
  padding-inline: 0;
  background-color: transparent;
}

.mwform-file-delete {
  display: none !important;
}

.welcart .button {
  cursor: pointer;
}
.welcart .heading {
  justify-self: center;
}
.welcart input[type=submit] {
  position: absolute;
  inset: 0;
  background-color: transparent;
  border: none;
  font-family: inherit;
  text-align: start;
  padding-left: 32px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .welcart input[type=submit] {
    padding-left: 24px;
  }
}
.welcart input[name=upButton] {
  padding-inline: 0;
  text-align: center;
}
.welcart .hidden {
  max-height: 0;
  overflow: hidden;
}
.welcart__login-section {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .welcart__login-section {
    margin-bottom: 25px;
  }
}
.welcart__action-button {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  cursor: pointer;
}
.welcart__action-button--return::before {
  right: initial;
  left: 24px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  background-color: transparent;
}
.welcart__action-button--full-row {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  border: none;
}
.welcart__action-button--full-row::before {
  display: block;
  width: 100%;
}
.welcart__action-button--full-row::after {
  display: none;
}
.welcart__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.welcart__text {
  text-align: center;
}
.welcart__heading {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .welcart__heading {
    font-size: 2rem;
  }
}
.welcart__heading--error {
  color: #e83828;
}
.welcart__reset-pass {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcart__reset-pass.button-link::before {
  width: 100%;
}
.welcart__signup-text {
  border-top: 1px solid;
  padding-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .welcart__signup-text {
    padding-top: 25px;
  }
}
.welcart__action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 2%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .welcart__action-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .welcart__action-buttons--customer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.welcart__action-buttons--confirm {
  margin-top: 50px;
}
.welcart__section-heading {
  margin-bottom: 50px;
}
.welcart__cart-update-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .welcart__cart-update-wrapper {
    gap: 4%;
  }
}
.welcart__cart-update-wrapper .button {
  max-width: 120px;
  height: 40px;
  font-size: 1.5rem;
}
.welcart__cart-update-wrapper .button::before {
  display: none;
}
.welcart__cart-update-wrapper .welcart__text {
  text-align: start;
}
.welcart__cart-customer:not(:first-of-type) {
  margin-top: 60px;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .welcart__cart-customer:not(:first-of-type) {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.welcart__cart-table-wrapper {
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .welcart__cart-table-wrapper {
    overflow: scroll;
  }
}
.welcart__cart-table {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .welcart__cart-table {
    width: 1280px;
  }
}
@media screen and (max-width: 767px) {
  .welcart__cart-table {
    width: 980px;
  }
}
.welcart__cart-heading {
  border-bottom: 1px solid;
  padding-block: 10px;
  font-size: 1.8rem;
  background-color: #0a8272;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .welcart__cart-heading {
    font-size: 1.6rem;
  }
}
.welcart__cart-heading.num {
  width: 80px;
}
.welcart__cart-heading.item {
  width: 600px;
}
.welcart__cart-table-content {
  position: relative;
  font-size: 1.6rem;
  padding: 20px 2%;
  border-bottom: 1px solid;
}
@media screen and (max-width: 767px) {
  .welcart__cart-table-content {
    font-size: 1.4rem;
  }
}
.welcart__cart-table-content.num {
  text-align: center;
}
.welcart__cart-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.welcart__cart-item-info:hover .welcart__cart-item-title {
  color: #0a8272;
}
.welcart__cart-item-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
}
.welcart__cart-item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 2em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .welcart__cart-item-title {
    font-size: 1.4rem;
  }
}
.welcart__cart-item-qty {
  display: block;
  width: 70px;
  height: 50px;
  margin: auto;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 5px;
  font-size: 1.6rem;
}
.welcart__cart-item-delete-button {
  display: block;
  width: 35px;
  height: 35px;
  margin: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.welcart__cart-total-wrap {
  text-align: end;
}
.welcart__cart-total-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}
.welcart__cart-total-block:last-of-type {
  margin-bottom: 40px;
}
.welcart__cart-total-label {
  font-size: 1.6rem;
}
.welcart__cart-total-label--grand-total {
  font-size: 2rem;
}
.welcart__cart-total-price {
  display: block;
  width: 150px;
  font-size: 1.8rem;
}
.welcart__cart-total-price--grand-total {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1em;
  color: #0a8272;
}
.welcart__mypage-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .welcart__mypage-layout {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
}
.welcart__sidebar {
  -ms-flex-preferred-size: 252px;
      flex-basis: 252px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .welcart__sidebar {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.welcart__sidebar-heading-wrapper {
  padding: 20px;
  background-color: #0a8272;
  color: #fff;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .welcart__sidebar-heading-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4%;
    padding: 10px;
  }
}
.welcart__sidebar-label {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .welcart__sidebar-label {
    font-size: 1.4rem;
  }
}
.welcart__sidebar-customer-name {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .welcart__sidebar-customer-name {
    font-size: 1.4rem;
  }
}
.welcart__sidebar-nav {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .welcart__sidebar-nav {
    margin-bottom: 15px;
  }
}
.welcart__sidebar-button {
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid;
  padding: 20px;
  font-size: 1.6rem;
  text-align: start;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .welcart__sidebar-button {
    padding: 10px;
    font-size: 1.4rem;
  }
}
.welcart__sidebar-button.active {
  background-color: #eaf2ef;
}
.welcart__sidebar-action .button {
  text-align: center;
  padding-left: 0;
}
.welcart__sidebar-action .button::before {
  display: none;
}
.welcart__sidebar-action .button__text {
  width: 100%;
}
.welcart__mypage-content {
  width: 100%;
}
.welcart__mypage-block {
  display: none;
}
.welcart__mypage-block.active {
  display: block;
}
.welcart__mypage-block#delete {
  text-align: center;
}
.welcart__mypage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .welcart__mypage-table {
    font-size: 1.4rem;
  }
}
.welcart__mypage-table th,
.welcart__mypage-table td {
  padding: 15px;
  border-bottom: 1px solid;
}
.welcart__mypage-table th {
  text-align: start;
}
.welcart__history-item:not(:last-of-type) {
  margin-bottom: 60px;
}
.welcart__history-label {
  margin-bottom: 30px;
}
.welcart__mypage-history-count {
  display: none;
}
.welcart__purchase-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  margin-bottom: 30px;
}
.welcart__purchase-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid;
  padding-bottom: 15px;
}
.welcart__purchase-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.welcart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3%;
  max-width: 750px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .welcart__item {
    width: 95%;
  }
}
.welcart__item-thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .welcart__item-thumbnail {
    width: 70px;
    height: 70px;
  }
}
.welcart__item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.welcart__item-qty-col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .welcart__item-qty-col {
    width: 100px;
  }
}
.welcart__qty-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.welcart__qty-row small {
  font-size: 1.2rem;
}
.welcart__qty-row .orange {
  display: none;
}
.welcart .error_message {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}