@charset "UTF-8";
*, ::after, ::before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6, p {
  font-weight: initial;
}

button {
  border: initial;
  background: initial;
  outline: 0;
}

textarea {
  resize: none;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #FAFFFF;
  --color-object-dark: #3C4141;
  --color-object-dark2: #4B5050;
  --color-txt-main: #506464;
  --color-txt-sub: #8C9696;
  --color-object-lighten: #F0F5F5;
  --color-object-lighten2: #BEC3C3;
  --color-line: #D2DCD7;
  --color-primary-green: #19A050;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: var(--color-bg);
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1) 0.66s;
}
.header.-active {
  opacity: 1;
  transform: translateY(0);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1380px;
  min-height: 104px;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .header .Image {
    max-width: 40px;
  }
}
.header__list {
  width: calc(100% - 180px);
  display: flex;
  justify-content: space-between;
  max-width: 660px;
}
@media screen and (max-width: 999px) {
  .header__list {
    width: calc(100% - 155px);
    max-width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .header__list {
    display: none;
  }
}
.header__item:last-child {
  display: none;
}
.header__item--btn {
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 4px;
  padding-left: 16px;
  font-weight: 600;
  color: var(--color-txt-sub);
  position: relative;
}
.header__item--btn::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  background-color: var(--color-primary-green);
}
.header__item--btn:hover {
  /*
  color: var(--color-primary-green);

  &::before {
    @include box(calc(100% - 20px));
  }
  */
  color: var(--color-white);
  background-color: var(--color-primary-green);
}
.header__langs {
  display: flex;
}
@media screen and (max-width: 768px) {
  .header__langs {
    display: none;
  }
}
.header__langs.-deactive {
  opacity: 0;
  pointer-events: none;
}
.header__lang.-active {
  border-bottom: 2px solid var(--color-primary-green);
  pointer-events: none;
}
.header__lang:first-child {
  margin-right: 8px;
  position: relative;
}
.header__lang:first-child::before {
  content: "/";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  position: absolute;
  top: 0;
  right: -7px;
  color: var(--color-txt-sub);
}
.header__lang--btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-txt-sub);
  display: inline-block;
}
.header__lang--btn:hover {
  color: var(--color-primary-green);
}
.header__btn {
  width: 40px;
  height: 38px;
  position: relative;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: block;
  }
}
.header__btn::before, .header__btn::after {
  content: "";
  height: 1px;
  background-color: var(--color-txt-sub);
  position: absolute;
  top: 50%;
  right: 0;
}
.header__btn::before {
  width: 100%;
  transform: translateY(calc(-50% - 3px));
}
.header__btn::after {
  width: 50%;
  transform: translateY(calc(-50% + 3px));
}
.header__btn.-active::before {
  transform: rotate(30deg);
}
.header__btn.-active::after {
  width: 100%;
  transform: rotate(-30deg);
}

.footer {
  display: flex;
  align-items: center;
  min-height: 246px;
}
@media screen and (max-width: 768px) {
  .footer {
    min-width: 304px;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
  }
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
  transform: translate(-10px, -4px);
}
.footer__item--btn {
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-txt-sub);
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__item--btn {
    font-size: 12px;
  }
}
.footer__item--btn::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  background-color: var(--color-primary-green);
}
.footer__item--btn:hover {
  color: var(--color-primary-green);
}
.footer__item--btn:hover::before {
  width: calc(100% - 20px);
}
.footer__copyright {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-txt-sub);
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-weight: 600;
    font-size: 12px;
    margin-top: 40px;
  }
}

.menu {
  display: none;
  position: fixed;
  top: 104px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .menu {
    display: flex;
    justify-content: flex-end;
  }
}
.menu.-active {
  z-index: 3;
  opacity: 1;
}
.menu__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: var(--color-object-dark2);
  opacity: 0.4;
}
.menu__inner {
  width: 100%;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
  max-width: 255px;
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}
.menu__inner::-webkit-scrollbar {
  display: none;
}
.menu__list {
  width: inherit;
  margin-right: auto;
  margin-left: auto;
}
.menu__item {
  width: inherit;
  position: relative;
}
.menu__item::before, .menu__item::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.menu__item::before {
  width: 100%;
  background-color: var(--color-line);
  z-index: 1;
}
.menu__item::after {
  width: 0;
  background-color: var(--color-primary-green);
  transform-origin: bottom left;
  z-index: 2;
}
.menu__item:last-child {
  display: none;
}
.menu__item--btn {
  width: inherit;
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}
.menu__item--btn_txt {
  width: inherit;
  display: inline-block;
  color: var(--color-txt-main);
}
.menu__item:hover::after {
  width: 100%;
}
.menu__item:hover .menu__item--btn_txt {
  color: var(--color-primary-green);
  transform: translateX(8px);
}
.menu__langs {
  margin-top: 16px;
  display: flex;
}
.menu__lang.-active {
  border-bottom: 2px solid var(--color-primary-green);
  pointer-events: none;
}
.menu__lang:first-child {
  margin-right: 8px;
  position: relative;
}
.menu__lang:first-child::before {
  content: "/";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  position: absolute;
  top: 0;
  right: -7px;
  color: var(--color-txt-sub);
}
.menu__lang--btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-txt-sub);
  display: inline-block;
}
.menu__lang--btn:hover {
  color: var(--color-primary-green);
}

.Button {
  width: 100%;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  background-color: var(--color-object-dark);
}
@media screen and (max-width: 768px) {
  .Button {
    width: 100%;
  }
}
.Button.-top {
  min-height: 296px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .Button.-top {
    max-width: 534px;
    min-height: 296px;
  }
}
.Button.-top:hover {
  background-color: var(--color-primary-green);
}
.Button.-top:hover .Button__head {
  color: var(--color-white);
}
.Button.-top:hover .Button__link {
  color: var(--color-white);
}
.Button.-top:hover .Button__link::before {
  background-color: var(--color-white);
}
.Button.-top:hover .Button__link path, .Button.-top:hover .Button__link line {
  stroke: var(--color-white);
}
.Button.-bottom {
  min-height: 250px;
  color: var(--color-txt-sub);
}
@media screen and (max-width: 768px) {
  .Button.-bottom {
    min-height: 147px;
  }
}
.Button.-bottom:hover {
  background-color: var(--color-primary-green);
}
.Button.-bottom:hover .Button__content {
  transform: translateX(12px);
}
.Button.-bottom:hover .Button__shoulder, .Button.-bottom:hover .Button__head {
  color: var(--color-white);
}
.Button.-bottom:hover path, .Button.-bottom:hover line {
  stroke: var(--color-white);
}
.Button__corner {
  position: absolute;
  z-index: 1;
}
.Button__corner.-top {
  top: 0;
  left: 0;
}
.Button__corner.-bottom {
  right: 0;
  bottom: 0;
}
.Button__content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 454px;
}
.Button__content.-bottom {
  padding-right: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Button__content.-bottom {
    max-width: 247px;
  }
}
.Button__shoulder.-bottom {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-txt-sub);
  text-transform: capitalize;
}
.Button__head.-top {
  font-weight: 700;
  font-size: 30px;
  color: var(--color-primary-green);
}
.Button__head.-bottom {
  margin-top: 10px;
  font-weight: 700;
  font-size: 40px;
  color: var(--color-txt-sub);
}
@media screen and (max-width: 768px) {
  .Button__head.-bottom {
    font-size: 24px;
  }
}
.Button__arrow {
  position: absolute;
  right: 0;
  bottom: 14px;
}
@media screen and (max-width: 768px) {
  .Button__arrow {
    max-width: 26px;
    bottom: 4px;
  }
}
.Button__link {
  width: 100%;
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  max-width: 200px;
  color: var(--color-txt-sub);
  position: relative;
}
@media screen and (max-width: 768px) {
  .Button__link {
    max-width: 160px;
  }
}
.Button__link::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-txt-sub);
  position: absolute;
  bottom: 0;
  left: 0;
}

.ContactCta {
  /* @include box(114px, 114px);
  @include flex(center, center);

  min-width: 114px;
  max-width: 114px;
  min-height: 114px;
  max-height: 114px;
  border-radius: 50%; */
  width: 240px;
  height: 80px;
  padding-top: 20px;
  padding-right: 40px;
  padding-bottom: 20px;
  padding-left: 40px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-green);
  color: var(--color-white);
  border: 2px solid var(--color-primary-green);
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .ContactCta {
    display: none;
  }
}
.ContactCta__content {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
.ContactCta__content--shoulder {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  opacity: 0.8;
}
.ContactCta__content--text {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ContactCta:hover {
  background-color: var(--color-white);
}
.ContactCta:hover .ContactCta__content--shoulder, .ContactCta:hover .ContactCta__content--text {
  color: var(--color-primary-green);
}

.Image {
  display: block;
}

.NewsCard {
  position: relative;
}
.NewsCard::before, .NewsCard::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: top left;
}
.NewsCard::before {
  width: 100%;
  background-color: var(--color-line);
}
.NewsCard::after {
  width: 0;
  background-color: var(--color-primary-green);
  transition: all 0.4s cubic-bezier(0.94, 0, 0.09, 0.94);
}
.NewsCard:hover::after {
  width: 100%;
}
.NewsCard:hover .NewsCard__content {
  transform: translateX(12px);
}
.NewsCard:hover .NewsCard__content--head {
  color: var(--color-primary-green);
}
.NewsCard:hover .NewsCard__content--arrow path, .NewsCard:hover .NewsCard__content--arrow line {
  stroke: var(--color-primary-green);
}
.NewsCard__link {
  width: 100%;
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}
.NewsCard__content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 32px;
  max-width: 1020px;
  position: relative;
}
.NewsCard__content--date {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary-green);
}
@media screen and (max-width: 768px) {
  .NewsCard__content--date {
    font-size: 12px;
  }
}
.NewsCard__content--head {
  margin-top: 12px;
  font-weight: 700;
  line-height: 2;
  color: var(--color-txt-main);
  transition: all 0.5s cubic-bezier(0.01, 0.8, 0.33, 1.24);
}
@media screen and (max-width: 768px) {
  .NewsCard__content--head {
    font-size: 14px;
  }
}
.NewsCard__content--arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.Pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.Pagenation__btn {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  color: var(--color-primary-green);
  background-color: var(--color-white);
  border: 1px solid var(--color-primary-green);
  border-radius: 50%;
  cursor: pointer;
}
.Pagenation__btn:hover {
  color: var(--color-white);
  background-color: var(--color-primary-green);
}
.Pagenation__btn:hover path {
  fill: var(--color-white);
}
.Pagenation__btn.-now {
  color: var(--color-white);
  background-color: var(--color-primary-green);
  pointer-events: none;
}
.Pagenation__btn.-now path {
  fill: var(--color-white);
}

.SectionDescription {
  flex: 1;
  max-width: 750px;
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.48s;
}
@media screen and (max-width: 768px) {
  .SectionDescription {
    font-size: 16px;
  }
}
.SectionDescription.-color-white {
  color: var(--color-white);
}
.SectionDescription.-disc {
  padding-left: 12px;
}
.SectionDescription__item {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 768px) {
  .SectionDescription__item {
    font-size: 16px;
  }
}
.SectionDescription__item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .SectionDescription__item:not(:first-child) {
    margin-top: 8px;
  }
}
.SectionDescription__item--disc {
  position: absolute;
  top: 0;
  left: -12px;
}

.SectionHead {
  font-weight: 700;
  color: var(--color-primary-green);
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.24s;
}
.SectionHead.-small {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .SectionHead.-small {
    font-size: 20px;
  }
}
.SectionHead.-medium {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .SectionHead.-medium {
    font-size: 24px;
  }
}
.SectionHead.-large {
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  .SectionHead.-large {
    font-size: 40px;
  }
}
.SectionHead.-slash {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}
.SectionHead.-slash::before {
  content: "";
  width: 1px;
  height: 130%;
  background-color: var(--color-primary-green);
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%) rotate(20deg);
}
.SectionHead.-slash.-both {
  padding-right: 28px;
}
.SectionHead.-slash.-both::after {
  content: "";
  width: 1px;
  height: 130%;
  background-color: var(--color-primary-green);
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%) rotate(20deg);
}

.ViewMore {
  width: 100%;
  max-width: 200px;
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .ViewMore {
    max-width: 160px;
  }
}
.ViewMore__btn {
  width: inherit;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  gap: 36px;
  position: relative;
  /*
  &::before, &::after {
    content: '';

    @include box(null, 1px);

    position: absolute;
    bottom: 0; left: 0;
    transform-origin: top left;
  }

  &::before {
    @include box(100%);

    background-color: var(--color-txt-sub);
  }

  &::after {
    @include box(0);

    background-color: var(--color-primary-green);
    transition: all .4s cubic-bezier(.94,0,.09,.94);
  }
  */
}
@media screen and (max-width: 768px) {
  .ViewMore__btn {
    font-size: 14px;
  }
}
.ViewMore__btn:hover {
  /*
  &::after {
    @include box(100%);
  }

  .ViewMore__text {
    color: var(--color-primary-green);
    transform: translateX(8px);
  }

  .ViewMore__arrow {
    transform: translate(0, 0);

    path, line {
      stroke: var(--color-primary-green);
    }
  }
  */
  background-color: var(--color-primary-green);
}
.ViewMore__btn:hover::before {
  opacity: 0;
}
.ViewMore__btn:hover .ViewMore__text {
  color: var(--color-white);
  transform: translateX(16px);
}
.ViewMore__btn:hover .ViewMore__arrow {
  transform: translateX(-16px);
}
.ViewMore__btn:hover .ViewMore__arrow path, .ViewMore__btn:hover .ViewMore__arrow line {
  stroke: var(--color-white);
}
.ViewMore__btn::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-txt-main);
}
.ViewMore__text {
  display: inline-block;
  color: var(--color-txt-main);
  transition: all 0.5s cubic-bezier(0.01, 0.8, 0.33, 1.24);
}
.ViewMore__arrow {
  transform: translate(-8px, 0);
  transition: all 0.5s cubic-bezier(0.01, 0.8, 0.33, 1.24);
}

.ButtonList {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .ButtonList {
    margin-top: 160px;
  }
}
.ButtonList__list {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .ButtonList__list {
    display: block;
  }
}
.ButtonList__item {
  width: calc(50% - 8px);
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .ButtonList__item {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 327px;
  }
}
.ButtonList__item:nth-child(1) {
  transition-delay: 0.24s;
}
.ButtonList__item:nth-child(2) {
  transition-delay: 0.48s;
}
@media screen and (max-width: 768px) {
  .ButtonList__item:not(:first-child) {
    margin-top: 32px;
  }
}
.ButtonList__item.-top {
  max-width: 660px;
}
@media screen and (max-width: 768px) {
  .ButtonList__item.-top {
    max-width: 534px;
  }
}
.ButtonList__item.-bottom {
  max-width: 534px;
}
.ButtonList.-active .ButtonList__item {
  opacity: 1;
  transform: translateY(0);
}

.NewsList .NewsCard {
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}
.NewsList .NewsCard:nth-child(1) {
  transition-delay: 0.48s;
}
.NewsList .NewsCard:nth-child(2) {
  transition-delay: 0.72s;
}
.NewsList .NewsCard:nth-child(3) {
  transition-delay: 0.96s;
}
.NewsList .NewsCard:nth-child(4) {
  transition-delay: 1.2s;
}
.NewsList .NewsCard:nth-child(5) {
  transition-delay: 1.44s;
}

.PageTitle {
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.24s;
}
.PageTitle__text {
  font-weight: 700;
  font-size: 80px;
  color: var(--color-primary-green);
}
@media screen and (max-width: 768px) {
  .PageTitle__text {
    font-size: 40px;
  }
}
.PageTitle.-active {
  opacity: 1;
  transform: translateY(0);
}

.ServiceList {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .ServiceList {
    margin-top: 160px;
  }
}
@media screen and (max-width: 768px) {
  .ServiceList.-hero {
    margin-top: 40px;
  }
}
.ServiceList__headw {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .ServiceList__headw {
    max-width: 500px;
  }
}
.ServiceList__headw.-text-center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ServiceList__headw.-text-center {
    text-align: left;
  }
}
.ServiceList__explains {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .ServiceList__explains {
    margin-top: 40px;
  }
}
.ServiceList__explain {
  font-size: 20px;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .ServiceList__explain {
    font-size: 14px;
  }
}
.ServiceList__explain:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .ServiceList__explain:not(:first-child) {
    margin-top: 16px;
  }
}
.ServiceList__explain:nth-child(1) {
  transition-delay: 0.48s;
}
.ServiceList__explain:nth-child(2) {
  transition-delay: 0.72s;
}
.ServiceList__content {
  margin-top: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .ServiceList__content {
    margin-top: 80px;
    display: block;
  }
}
.ServiceList__explain, .ServiceList__item, .ServiceList .Image {
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}
.ServiceList__texts, .ServiceList .Image {
  width: calc(50% - 8px);
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .ServiceList__texts, .ServiceList .Image {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.ServiceList .Image {
  transition-delay: 1.68s;
}
@media screen and (max-width: 768px) {
  .ServiceList .Image {
    margin-top: 56px;
    max-width: 327px;
  }
}
.ServiceList__item {
  padding-left: 42px;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ServiceList__item {
    padding-left: 32px;
    font-size: 16px;
  }
}
.ServiceList__item:not(:first-child) {
  margin-top: 40px;
}
.ServiceList__item:nth-child(1) {
  transition-delay: 0.96s;
}
.ServiceList__item:nth-child(2) {
  transition-delay: 1.2s;
}
.ServiceList__item:nth-child(3) {
  transition-delay: 1.44s;
}
.ServiceList__item:nth-child(4) {
  transition-delay: 1.68s;
}
.ServiceList__item--order {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-primary-green);
  position: absolute;
  top: -2px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .ServiceList__item--order {
    font-size: 16px;
  }
}
.ServiceList__item p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-left: 20px;
  margin-top: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
.ServiceList__item p {
  font-size: 13px;
}
}
.ServiceList__item p:first-of-type {
  margin-top: 15px;
}
.ServiceList__item p:before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--color-primary-green);
  position: absolute;
  left: 0;
  top: 10px;
}
.ServiceList__btnw {
  width: 100%;
  margin-top: 100px;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .ServiceList__btnw {
    margin-top: 56px;
  }
}
.ServiceList .ViewMore {
  transition-delay: 1.68s;
}
.ServiceList.-active .SectionHead, .ServiceList.-active .ServiceList__explain, .ServiceList.-active .ServiceList__item, .ServiceList.-active .ViewMore, .ServiceList.-active .Image {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-family: "Noto Sans", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: var(--color-txt-main);
  background-color: var(--color-bg);
}
body * {
  transition: 0.24s ease;
}
body *::before, body *::after {
  transition: 0.24s ease;
}

img {
  max-width: 100%;
}

header, footer, section {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
header > div, footer > div, section > div {
  width: inherit;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
header > div.-large, footer > div.-large, section > div.-large {
  max-width: 1360px;
}
header.-no-gutter, footer.-no-gutter, section.-no-gutter {
  padding-right: 0;
  padding-left: 0;
}
header.-no-gutter > div, footer.-no-gutter > div, section.-no-gutter > div {
  max-width: initial;
}

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

@media screen and (max-width: 768px) {
  .-not-md {
    display: none;
  }
}

.-font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.-font-poppins {
  font-family: "Poppins", sans-serif;
}

.-bg-lighten {
  background-color: var(--color-object-lighten);
}

.-bg-lighten2 {
  background-color: var(--color-object-lighten2);
}

.-bg-dark2 {
  background-color: var(--color-object-dark2);
}

main.content.-child {
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  main.content.-child {
    padding-top: 160px;
  }
}