@charset "utf-8";

:root {
  --color-main: #2D8C5A;
  --color-main-dark: #0d6230;
  --color-sub: #e9792f;
  --color-text: #111;
  --color-text-soft: #333;
  --color-muted: #888;
  --color-gray: #f0f0ee;
  --color-gray-light: #f7f8f4;
  --color-border: #e4e4de;
  --color-white: #fff;
  --color-black: #000;
  --color-green: #2D8C5A;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-en: "Montserrat", Arial, Helvetica, sans-serif;
  --font-number: "Lato", Arial, Helvetica, sans-serif;
  --font-mincho: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  --inner-width: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  box-sizing: border-box;
  scroll-padding-top: 150px !important;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 110px !important;
  }
}

body {
  min-width: 320px;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
  transition: opacity .25s var(--ease), color .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 4px;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.slick-track::before,
.slick-track::after {
  display: table;
  content: "";
}
.slick-track::after {
  clear: both;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-slide img {
  display: block;
}
.l-inner {
  width: min(var(--inner-width), calc(100% - 40px));
  margin-inline: auto;
}
.section-bg {
  background: var(--color-gray);
}
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-heading__en {
  color: var(--color-text);
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .046em;
  line-height: 1.48;
  text-transform: uppercase;
}
.section-heading__ja {
  color: var(--color-main);
  font-weight: 500;
  letter-spacing: .016em;
  line-height: 1.2;
}
.page-hero h1 ,
.page-hero .h1 {
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0;
}
.page-hero p {
  margin-top: 9px;
  color: var(--color-green);
  font-weight: 500;
  line-height: 1.4;
}
.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 320px;
  max-width: 320px;
  min-height: 60px;
  padding: 0 22px 0 24px;
  border: 1px solid var(--color-main);
  border-radius: 9999px;
  background: var(--color-white);
  color: var(--color-main);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.4;
}
.c-button::after {
  width: 15px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(0 40%, 72% 40%, 72% 0, 100% 50%, 72% 100%, 72% 60%, 0 60%);
  content: "";
}
.c-button:hover {
  background: var(--color-main);
  color: var(--color-white);
  opacity: 1;
}
.c-button--orange {
  border-color: var(--color-sub);
  background: var(--color-sub);
  color: var(--color-white);
  justify-content: center;
  text-align: center;
}
.c-button--orange::after {
  width: 15px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(0 40%, 72% 40%, 72% 0, 100% 50%, 72% 100%, 72% 60%, 0 60%);
  content: "";
  position: absolute;
  right: 22px;
}
.c-button--orange:hover {
  border-color: var(--color-main);
  background: var(--color-main);
}
.c-button--sp {
  display: none;
}
.article-body p {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
}
.article-body h3 {
  color: var(--color-main);
  font-weight: 500;
  line-height: 1.7;
}
.article-content__button {
  display: flex;
  justify-content: center;
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 20px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
.tag--green {
  background: #2D8C5A;
  color: var(--color-white);
}
.tag--light {
  border-radius: 2px;
  background: #e8f5e9;
  color: var(--color-main);
  font-size: 11px;
}
.tag--outline {
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  font-size: 11px;
  padding: 4px 10px;
}
.arrow-circle {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.arrow-circle::before {
  width: 12px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 40%, 70% 40%, 70% 0, 100% 50%, 70% 100%, 70% 60%, 0 60%);
  content: "";
}
.arrow-circle2::before {
  width: 16px;
  height: 16px;
  background: currentColor;
  clip-path: unset;
  mask: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6823 8.94591H1.0416C0.7465 8.94591 0.4991 8.84601 0.2995 8.64641C0.0998005 8.44671 0 8.19931 0 7.90421C0 7.60911 0.0998005 7.36171 0.2995 7.16201C0.4991 6.96241 0.7465 6.86251 1.0416 6.86251H12.6823L7.5781 1.75841C7.3698 1.55001 7.2699 1.30701 7.2786 1.02921C7.2873 0.751412 7.3958 0.508411 7.6041 0.300011C7.8125 0.109111 8.0555 0.00921171 8.3333 0.000511712C8.6111 -0.00808829 8.8541 0.0917112 9.0625 0.300011L15.9375 7.17501C16.0416 7.27921 16.1154 7.39201 16.1588 7.51361C16.2022 7.63511 16.2239 7.76531 16.2239 7.90421C16.2239 8.04311 16.2022 8.17331 16.1588 8.29481C16.1154 8.41631 16.0416 8.52921 15.9375 8.63341L9.0625 15.5084C8.8715 15.6993 8.6328 15.7948 8.3463 15.7948C8.0599 15.7948 7.8125 15.6993 7.6041 15.5084C7.3958 15.3 7.2916 15.0526 7.2916 14.7662C7.2916 14.4797 7.3958 14.2323 7.6041 14.024L12.6823 8.94591Z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6823 8.94591H1.0416C0.7465 8.94591 0.4991 8.84601 0.2995 8.64641C0.0998005 8.44671 0 8.19931 0 7.90421C0 7.60911 0.0998005 7.36171 0.2995 7.16201C0.4991 6.96241 0.7465 6.86251 1.0416 6.86251H12.6823L7.5781 1.75841C7.3698 1.55001 7.2699 1.30701 7.2786 1.02921C7.2873 0.751412 7.3958 0.508411 7.6041 0.300011C7.8125 0.109111 8.0555 0.00921171 8.3333 0.000511712C8.6111 -0.00808829 8.8541 0.0917112 9.0625 0.300011L15.9375 7.17501C16.0416 7.27921 16.1154 7.39201 16.1588 7.51361C16.2022 7.63511 16.2239 7.76531 16.2239 7.90421C16.2239 8.04311 16.2022 8.17331 16.1588 8.29481C16.1154 8.41631 16.0416 8.52921 15.9375 8.63341L9.0625 15.5084C8.8715 15.6993 8.6328 15.7948 8.3463 15.7948C8.0599 15.7948 7.8125 15.6993 7.6041 15.5084C7.3958 15.3 7.2916 15.0526 7.2916 14.7662C7.2916 14.4797 7.3958 14.2323 7.6041 14.024L12.6823 8.94591Z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
  content: "";
}
@media screen and (max-width: 767px) {
  .arrow-circle2::before {
    width: 12px;
    height: 10px;
  }
}
.site-header {
  position: fixed;
  z-index: 2000;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  background: var(--color-white);
  pointer-events: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
/*  .site-header.is-open .site-header__inner:before {
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
  }*/
}
.site-header__logo a {
  display: grid;
  position: relative;
  width: fit-content;
}
.site-header__logo img {
  width: 90px;
  height: auto;
}
.global-nav__accordion {
  display: flex;
  align-items: center;
}
.global-nav__section {
  position: relative;
}
.global-nav__heading {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
  padding: 2px 22px;
  transition: .4s;
  /*min-width: 164px;*/
}
.global-nav__section:hover .global-nav__heading {
  color: var(--color-green);
  background-color: #F4FFF8;
  opacity: 1 !important;
}
.global-nav__heading a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.global-nav__heading a:hover {
  color: var(--color-green);
  opacity: 1 !important;
}
.global-nav__sublist {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 12px 10px;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 50%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  min-width: 100%;
  display: none;
  opacity: 0;
  transform: translate(-50%,8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    display 0.2s allow-discrete;
}
.global-nav__section:hover .global-nav__sublist ,
.global-nav__section:focus-within .global-nav__sublist {
  display: flex;
  opacity: 1;
  transform: translate(-50%,0);
}
@starting-style {
  .global-nav__section:hover .global-nav__sublist,
  .global-nav__section:focus-within .global-nav__sublist {
    opacity: 0;
    transform: translate(-50%,8px);
  }
}
.global-nav__sublist li ,
.global-nav__sublist a {
  font-size: 20px;
  font-weight: 500;
  display: block;
  width: 100%;
}
.global-nav__sublist a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}
.global-nav__sublist a:hover {
  color: var(--color-green);
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .global-nav__accordion {
    gap: 0;
  }
  .global-nav__heading {
    font-size: 20px;
    min-width: 110px;
    padding: 2px 12px;
  }
  .global-nav__sublist {
    padding: 12px 6px;
    gap: 10px;
  }
  .global-nav__sublist li, .global-nav__sublist a {
    font-size: 16px;
    line-height: 1.3;
  }
}
.kv {
  position: relative;
  --kv-image-width: 106%;
  --kv-pan-distance: -5.66%;
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.kv-slider,
.kv-slider .slick-list,
.kv-slider .slick-track,
.kv-slide {
  height: 100%;
}
.kv-slide {
  position: relative;
  overflow: hidden;
}
.kv-slide picture {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.kv-slide::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  /*background: rgba(0, 0, 0, .18);*/
  content: "";
  pointer-events: none;
}
.kv-slide img {
  width: var(--kv-image-width);
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
}
.kv-slide.is-kv-active img {
  animation: kvImagePan 5.8s linear forwards;
}
.kv__wipe {
  position: absolute;
  z-index: 1050;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  will-change: clip-path;
}
.kv__wipe.is-running {
  opacity: 1;
  animation: kvSlideWipe 1.45s cubic-bezier(.33, 1, .68, 1) forwards;
}
.kv__wipe::after {
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, .18);*/
  content: "";
}
.kv__wipe img {
  width: var(--kv-image-width);
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
}
.kv__wipe.is-running img {
  animation: kvWipeImagePan 1.45s linear forwards;
}
.kv__copy {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.6;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity .48s var(--ease), transform .48s var(--ease);
}
.kv__char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}
.kv__copy.is-animate .kv__char {
  animation: kvCharIn .32s cubic-bezier(.25, 1, .5, 1) both;
  animation-delay: var(--char-delay, .12s);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.kv__copy.is-copy-complete .kv__char {
  animation: none;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.kv-slide.is-kv-active .kv__copy.is-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.kv__copy.is-fading-out {
  opacity: 0 !important;
  transform: translate3d(0, -8px, 0);
}
.kv__control {
  position: absolute;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 14px;
}
.kv__toggle {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 44px;
}
.kv__toggle-icon,
.kv__toggle-icon::before {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 18px;
  border-radius: 5px;
  background: var(--color-white);
  content: "";
  transform: translateY(-50%);
  transition: all .25s var(--ease);
}
.kv__toggle-icon {
  left: 5px;
}
.kv__toggle-icon::before {
  left: 9px;
}
.kv__toggle.is-paused .kv__toggle-icon {
  left: 7px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--color-white);
  border-radius: 0;
  background: transparent;
}
.kv__toggle.is-paused .kv__toggle-icon::before {
  opacity: 0;
}
.kv__control .slick-dots {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  --kv-progress-ratio: 0;
}
.kv__control .slick-dots::before,
.kv__control .slick-dots::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: translateY(-50%);
  transform-origin: left;
}
.kv__control .slick-dots::before {
  background: rgba(255, 255, 255, .4);
}
.kv__control .slick-dots::after {
  background: var(--color-main);
  transform: translateY(-50%) scaleX(var(--kv-progress-ratio));
  transition: transform .4s var(--ease);
}
.kv__control li {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 44px;
}
.kv__control li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-main);
  content: "";
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
}
.kv__control li.is-kv-progress::before {
  animation: kvPagerProgress var(--kv-autoplay-speed, 4200ms) linear forwards;
}
.kv.is-kv-paused .kv__control li::before {
  animation: none;
}
.kv__control .slick-dots button {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-white);
  color: transparent;
  transform: translateY(-50%);
  transition: all .3s cubic-bezier(.175, .885, .47, 1.26);
}
.kv__control li.slick-active button {
  width: 19px;
  height: 19px;
  background: #5ba778;
}

@keyframes kvImagePan {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--kv-pan-distance), 0, 0);
  }
}

@keyframes kvSlideWipe {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  to {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
}

@keyframes kvWipeImagePan {
  from {
    transform: var(--kv-wipe-image-transform, translate3d(0, 0, 0));
  }

  to {
    transform: translate3d(var(--kv-pan-distance), 0, 0);
  }
}

@keyframes kvPagerProgress {
  from {
    transform: translateY(-50%) scaleX(0);
  }

  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes kvCharIn {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.voice-card,
.column-card,
.news-item {
  background: var(--color-white);
}
.voice-card {
  display: flex !important;
  flex-direction: column;
  border-radius: 4px;
}
.voice-card__head {
  display: flex;
  align-items: flex-start;
}
.voice-card__photo {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d4e8dc;
  object-fit: cover;
}
.voice-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.voice-card__text {
  color: var(--color-text-soft);
  font-weight: 400;
}
.voice-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid #f0f0ec;
  color: var(--color-black);
}
.voice-card__foot time {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}
.voice-card__foot .arrow-circle {
  width: 32px;
  height: 32px;
}
.service-column-bg {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}
.service-column-bg::before {
  position: absolute;
  z-index: 0;
  width: 1668px;
  height: 632px;
  background: url("../images/top/service_column_bg.svg") center / contain no-repeat;
  content: "";
  pointer-events: none;
}
.service,
.column {
  position: relative;
  z-index: 1;
}
.service__lead {
  font-weight: 500;
}
.service__visual {
  overflow: hidden;
  border-radius: 4px;
  background: #dcefed;
}
.service-slider,
.service-slider .slick-list,
.service-slider .slick-track,
.service-slider .slick-slide,
.service-slider .slick-slide > div {
  height: 100%;
}
.service-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-card {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #E9E9E9;
}
.column-card a {
  display: block;
  height: 100%;
}
.column-card__thumb {
  width: 100%;
  object-fit: cover;
}
.column-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.column-card h3 {
  color: var(--color-black);
  font-weight: 500;
}
.column-card time {
  color: var(--color-muted);
  font-family: var(--font-en);
  font-size: 11.6px;
  font-weight: 600;
  line-height: 1.86;
}
.image-block {
  position: relative;
  overflow: hidden;
  background: #2D8C5A;
}
.image-block__copy {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: .046em;
  line-height: 1.47;
}
.image-block__photo {
  position: absolute;
  z-index: 1;
  overflow: hidden;
}
.image-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-page .news-item {
  border-bottom: 1px solid #eee;
}
.news-item a {
  position: relative;
  display: block;
}
.news-item__meta {
  display: flex;
  align-items: center;
}
.news-item time {
  color: var(--color-muted);
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1.8;
}
.news-item h3 {
  color: var(--color-black);
  font-weight: 400;
}
.news-item .arrow-circle {
  position: absolute;
  color: var(--color-black);
}
.contact {
  position: relative;
}
.contact__inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e8f2ec url("../images/top/contact_bg.jpg") center / cover no-repeat;
}
.contact__inner::before {
  position: absolute;
  inset: 0;
  background: rgba(232, 242, 236, .8);
  content: "";
}
.contact__heading,
.contact__tel,
.contact__arrow {
  position: relative;
  z-index: 1;
}
.contact__heading p {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .058em;
  line-height: 1;
}
.contact__heading h2 {
  font-weight: 500;
  letter-spacing: .016em;
  line-height: 1.2;
}
.contact__label {
  font-weight: 500;
}
.contact__number {
  display: block;
  color: var(--color-main);
  font-family: var(--font-number);
  font-weight: 600;
  letter-spacing: .036em;
  line-height: .9;
}
.contact__arrow .arrow-circle {
  display: grid;
  color: var(--color-black);
  background: #FEFFFC;
}
.floating-banner {
  position: fixed;
  z-index: 1900;
}
.floating-banner a {
  display: grid;
  background: #E87A2E;
  color: var(--color-white);
  letter-spacing: .08em;
  line-height: 1.45;
  position: relative;
}
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
}
.site-footer a {
  color: inherit;
}
.site-footer__logo {
  display: block;
  margin-bottom: 32px;
  width: 90px;
}
.site-footer__tel {
  display: flex;
  align-items: center;
  width: fit-content;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  gap: 8px;
  margin-bottom: 8px;
}
.site-footer__tel-icon::after {
  position: absolute;
  right: -3px;
  bottom: -1px;
  width: 7px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-white);
  content: "";
}
.site-footer__hours {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
.site-footer__sns {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  color: var(--color-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-top: 15px;
}
.site-footer__nav {
  display: grid;
}
.site-footer__nav-group p,
.site-footer__nav-heading {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.site-footer__nav-groupsub p,
.site-footer__nav-groupsub .site-footer__nav-heading {
  font-weight: 400;
}
.site-footer__nav-group ul + .site-footer__nav-heading {
  margin-top: 32px;
}
.site-footer__nav-heading {
  margin-top: 14px;
  display: block;
}
.site-footer__nav-group ul {
  display: flex;
  flex-direction: column;
}
.site-footer__nav-group ul > li {
  font-size: 0;
}
.site-footer__nav-group a:not(.site-footer__nav-heading a) {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.site-footer__bottom ul {
  display: flex;
  align-items: center;
}
.site-footer__bottom a,
.site-footer__bottom small {
  color: rgba(255, 255, 255, .44);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}
.site-footer__bottom small {
  font-family: var(--font-en);
}

.fadeIn {
  transition: opacity ease 1.5s;
  opacity: 0;
}
.fadeIn.is-show {
  opacity: 1;
}
#MainContent .gradient {
  background: unset !important;
}
.chart.accordion_item {
  background: #fff;
}
.js-click-video {
  cursor: pointer;
  height: auto;
  width: 100%;
}