/* CSS Document */
/* --------v-DEFAULT-v-------- */
:root {
  /* COLORS */
  --color-logo-lightgreen: #9dc815;
  --color-logo-green: #28883b;
  --color-white-green: #e9eedb;
  --color-text: #102812;
  --color-error-red: #ff4242;
  /* GRADATION */
  --main-gradation: linear-gradient(90deg, #28883b, #1d762f);
  /* GrayScale */
  --color-white: #fff;
  --color-white-gray: #f8f8f8;
  --color-light-gray: #eaeaea;
  --color-pale-gray: #ccc;
  --color-gray: #aaa;
  --color-text-gray: #666;
  --color-dark-gray: #3d3d3d;
  /* Alpha */
  --alpha-white-gray: #f8f8f8cc;
  --alpha-logo-lightgreen: #9dc81588;
  --alpha-logo-green: #28883b88;
  /* Material Shadow */
  --material-basic: inset 3px 3px var(--color-white), inset -3px -3px var(--color-light-gray);
  --material-emboss: inset -3px -3px var(--color-white), inset 3px 3px var(--color-light-gray);
}

ul,
ol {
  list-style-type: none;
}

p,
li {
  text-align: justify;
}

img {
  max-width: 100%;
}

a {
  cursor: pointer;
}
a:focus {
  outline: 2px solid transparent;
  -webkit-box-shadow: 0 0 4px 1px var(--color-logo-green);
          box-shadow: 0 0 4px 1px var(--color-logo-green);
}
a:focus:hover, a:focus:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

body {
  overflow-y: scroll;
  font-family: "Helvetica Neue", Arial, "Noto Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-break: strict;
}

.visually-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  pointer-events: none;
  border: 0;
}

p.singlep {
  margin-top: 1em;
}

p.doublep {
  margin-top: 2em;
}

.icon::before {
  font-family: "Material Symbols Outlined", monospace;
}
.icon.undo::before {
  content: "\e166";
}
.icon.send::before {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  content: "\e163";
}

/* --------^-DEFAULT-^-------- */
/* --------v-HEADER-v-------- */
header {
  position: fixed;
  top: 0;
  z-index: 100;
  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;
  width: 100%;
  height: 80px;
  background: var(--color-white);
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
header.js-on-scroll {
  background: var(--alpha-white-gray);
  -webkit-animation: appear 0.5s ease;
          animation: appear 0.5s ease;
}
@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header.js-on-scroll .hamburger hr {
  background: var(--main-gradation);
}
header.js-on-scroll nav {
  -webkit-box-shadow: none;
          box-shadow: none;
}
header #header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header #header-logo:is(a) {
  cursor: pointer;
}
@media (hover: hover) {
  header #header-logo:is(a):hover {
    opacity: 0.8;
  }
}
header #header-logo p {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
header #header-logo p span {
  color: var(--color-logo-green);
}
header #header-logo .logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
}
header nav {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
  padding-left: 48px;
  margin-right: 32px;
  border-top-left-radius: 100vmax;
  border-bottom-left-radius: 100vmax;
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav ul li {
  position: relative;
  padding-inline: 24px;
  font-size: 14px;
  font-weight: 500;
}
header nav ul li + li::before {
  position: absolute;
  top: calc(50% - 8px);
  left: -1px;
  display: block;
  width: 2px;
  height: 16px;
  content: "";
  background: var(--color-gray);
  border-radius: 100vmax;
}
header nav ul li:has(a:focus) {
  text-shadow: 2px 0 4px var(--color-logo-lightgreen), -2px 0 4px var(--color-logo-lightgreen);
}
header nav ul li:has(a:focus) a {
  outline: 2px solid transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (hover: hover) {
  header nav ul li:has(a:focus):hover {
    text-shadow: none;
  }
}
header nav ul li:has(a:active) {
  text-shadow: none;
}
header nav .nowhere-marker {
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: -1;
  display: block;
  width: 12px;
  height: 14px;
  -webkit-clip-path: polygon(0% 35%, 0% 100%, 30% 92.5%, 50% 80%, 70% 70%, 100% 65%, 100% 0%);
          clip-path: polygon(0% 35%, 0% 100%, 30% 92.5%, 50% 80%, 70% 70%, 100% 65%, 100% 0%);
  background: var(--color-logo-lightgreen);
  opacity: 0;
  -webkit-transition: scale 0.3s ease, translate 0.5s ease, opacity 0.3s ease;
  transition: scale 0.3s ease, translate 0.5s ease, opacity 0.3s ease;
}
header nav .nowhere-marker[data-nowhere] {
  opacity: 1;
}
header nav .nowhere-marker.moving {
  scale: 0.7 0.4;
}

.hamburger {
  position: absolute;
  right: 8px;
  z-index: 101;
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-radius: 4px;
}
.hamburger:has(+ input:focus) {
  -webkit-box-shadow: 0 0 4px 1px var(--color-logo-green);
          box-shadow: 0 0 4px 1px var(--color-logo-green);
}
.hamburger.disabled {
  position: absolute;
}
.hamburger hr {
  position: absolute;
  left: calc(50% - 14px);
  display: block;
  width: 28px;
  height: 4px;
  background: var(--color-logo-green);
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger hr:nth-of-type(1) {
  top: calc(50% - 11px);
}
.hamburger hr:nth-of-type(2) {
  top: calc(50% - 2px);
}
.hamburger hr:nth-of-type(3) {
  top: calc(50% + 7px);
}
.hamburger:has(+ input:checked) {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hamburger:has(+ input:checked) hr {
  left: calc(50% - 16.968px);
}
.hamburger:has(+ input:checked) hr:nth-of-type(1) {
  top: calc(50% - 2px);
  width: 33.936px;
  rotate: 45deg;
}
.hamburger:has(+ input:checked) hr:nth-of-type(2) {
  opacity: 0;
}
.hamburger:has(+ input:checked) hr:nth-of-type(3) {
  top: calc(50% - 2px);
  width: 33.936px;
  rotate: -45deg;
}
@media (hover: hover) {
  .hamburger:hover hr:nth-of-type(1) {
    -webkit-animation: flip1 0.3s ease;
            animation: flip1 0.3s ease;
  }
  @-webkit-keyframes flip1 {
    0% {
      top: calc(50% + 7px);
    }
    100% {
      top: calc(50% - 11px);
    }
  }
  @keyframes flip1 {
    0% {
      top: calc(50% + 7px);
    }
    100% {
      top: calc(50% - 11px);
    }
  }
  .hamburger:hover hr:nth-of-type(3) {
    -webkit-animation: flip3 0.3s ease;
            animation: flip3 0.3s ease;
  }
  @-webkit-keyframes flip3 {
    0% {
      top: calc(50% - 11px);
    }
    100% {
      top: calc(50% + 7px);
    }
  }
  @keyframes flip3 {
    0% {
      top: calc(50% - 11px);
    }
    100% {
      top: calc(50% + 7px);
    }
  }
  .hamburger:has(+ input:checked):hover {
    opacity: 0.8;
  }
  .hamburger:has(+ input:checked):hover hr:nth-of-type(1) {
    -webkit-animation: none;
            animation: none;
  }
  .hamburger:has(+ input:checked):hover hr:nth-of-type(3) {
    -webkit-animation: none;
            animation: none;
  }
}

/* --------^-HEADER-^-------- */
/* --------v-MAIN-v-------- */
main {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
main #main-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
main #main-background img {
  width: 100%;
}

/* ============================
  #main-visual
  ============================ */
#main-visual {
  position: relative;
  width: 100%;
  max-height: 100vh;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--color-white-green);
}
#main-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-visual picture {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-visual #js-background-build {
  position: relative;
  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;
}

/* ============================
  #mv-catchcopy
  ============================ */
#mv-catchcopy {
  position: absolute;
  top: calc(40% - 48px);
  right: 45%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 32px;
}
#mv-catchcopy .mv-copy {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: var(--color-text);
  text-align: left;
}
#mv-catchcopy .mv-copy span {
  display: inline-block;
}
#mv-catchcopy p.mv-copy-jp {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--color-text);
  text-align: left;
}
#mv-catchcopy p.mv-copy-jp span {
  display: inline-block;
}

/* ============================
  #enscroll
  ============================ */
#enscroll {
  position: absolute;
  top: min(56.25vw + 40px, 100dvh - 48px);
  right: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 24px;
  font-family: Belanosima, sans-serif;
  font-size: 28px;
  color: var(--color-white);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#enscroll::before {
  position: absolute;
  inset: -16px 0 0;
  width: 3px;
  height: 24px;
  margin-inline: auto;
  content: "";
  background: var(--color-white);
  -webkit-animation: enscroll-b 1s linear infinite;
          animation: enscroll-b 1s linear infinite;
}
#enscroll::after {
  position: absolute;
  inset: 32px 0 0;
  width: 3px;
  height: 24px;
  margin-inline: auto;
  content: "";
  background: var(--color-white);
  -webkit-animation: enscroll-a 1s linear infinite;
          animation: enscroll-a 1s linear infinite;
}
@-webkit-keyframes enscroll-b {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  25% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}
@keyframes enscroll-b {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  25% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes enscroll-a {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  30% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}
@keyframes enscroll-a {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  30% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}

/* ============================
  #main-wrapper
  ============================ */
section:nth-of-type(odd) .section-wrapper {
  background: var(--color-white-green);
}
section:nth-of-type(even) .section-wrapper {
  position: relative;
  z-index: 0;
  background: var(--color-white-gray);
}
section:nth-of-type(even) .section-wrapper::before {
  position: absolute;
  inset: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  content: "";
  background: var(--color-white-gray);
}

.section-wrapper {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section-wrapper.center h2 {
  padding: 0;
  margin-inline: auto;
  text-align: center;
}
.section-wrapper.center p {
  text-align: center;
}
.section-wrapper.center a.anchor {
  margin-inline: auto;
}

section:first-of-type .section-wrapper {
  padding-top: 0;
}

section:last-of-type .section-wrapper::before {
  height: calc(100% + 56px);
}

#main-wrapper {
  position: relative;
  z-index: 0;
  background: var(--color-white-green);
}
#main-wrapper #contents {
  max-width: 1280px;
  padding: 80px 32px 56px;
  margin-inline: auto;
}
#main-wrapper #contents .strict {
  max-width: 900px;
  margin-inline: auto;
}

main.pages h1,
h2 {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 64px;
  font-family: Belanosima, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 48px;
  color: var(--color-logo-lightgreen);
}
main.pages h1 span,
h2 span {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-logo-green);
}

.content-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-dark-gray);
}
.content-text p.single_blank {
  margin-top: 16px;
}
.content-text p.colored {
  color: var(--color-logo-green);
}
.content-text p.bold {
  font-weight: 600;
}
.content-text p.large {
  font-size: 1.2em;
}
.content-text p span.break {
  display: inline-block;
}
.content-text p + ul {
  margin-top: 16px;
}
.content-text p + ul li::before {
  position: relative;
  top: -3px;
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 4px;
  content: "";
  background: var(--color-text);
  border-radius: 100%;
}

h2 + .content-text {
  margin-top: 16px;
}

a.anchor {
  position: relative;
  z-index: 0;
  display: block;
  width: 240px;
  height: 40px;
  padding: 12px 32px;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: white;
  text-align: center;
  text-indent: -28px;
  letter-spacing: 0.1em;
  background: var(--color-logo-lightgreen);
}
a.anchor::before {
  position: absolute;
  top: -16px;
  left: 0;
  z-index: -1;
  width: 64px;
  height: 16px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  background: var(--color-logo-green);
}
a.anchor::after {
  position: relative;
  top: 1px;
  left: 16px;
  display: inline-block;
  width: 10px;
  height: 16px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background: var(--color-white);
  -webkit-transition: translate 0.2s ease;
  transition: translate 0.2s ease;
}
@media (hover: hover) {
  a.anchor:hover {
    background: #2e9c44;
  }
  a.anchor:hover::before {
    background: #afdf17;
  }
  a.anchor:hover::after {
    translate: 16px 0;
  }
}

/* ============================
  #ABOUT
  ============================ */
.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.about-wrapper .about-img {
  width: 400px;
}
.about-wrapper .about-inner {
  width: 720px;
}

/* ============================
  #SERVICE
  ============================ */
ul.services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}
ul.services-list li {
  display: block;
  width: calc(33% - 32px);
  height: 280px;
  padding: 32px;
  border: 2px solid var(--color-logo-lightgreen);
  border-radius: 16px;
}
ul.services-list li .service-inner {
  height: 160px;
  text-align: center;
}
ul.services-list li img {
  width: 120px;
}
ul.services-list li h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-logo-green);
  text-align: center;
}
ul.services-list li h3 span.break {
  display: block;
}
ul.services-list li p {
  font-size: 14px;
  color: var(--color-text-gray);
}

/* ============================
  #NEWS
  ============================ */
.news-outer ul.news-list {
  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;
  gap: 32px;
  width: 560px;
  margin-top: 64px;
}
.news-outer ul.news-list li {
  position: relative;
  z-index: 0;
  height: 64px;
  background: var(--color-white-gray);
  -webkit-box-shadow: var(--material-basic);
          box-shadow: var(--material-basic);
}
.news-outer ul.news-list li a {
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-left: 32px;
  border-radius: 100vmax;
}
.news-outer ul.news-list li a span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 14px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: var(--color-white);
  background: var(--color-logo-green);
}
.news-outer ul.news-list li a > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 4px;
}
.news-outer ul.news-list li a > div p {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
.news-outer ul.news-list li a > div::after {
  display: inline-block;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--main-gradation);
}
@media (hover: hover) {
  .news-outer ul.news-list li a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .news-outer ul.news-list li:hover li:has(a:active) {
    -webkit-box-shadow: var(--material-emboss);
            box-shadow: var(--material-emboss);
  }
  .news-outer ul.news-list li:hover a {
    opacity: 0.8;
  }
  .news-outer ul.news-list li:hover a:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .news-outer ul.news-list li:hover a > div::after {
    rotate: 180deg;
  }
}

/* ============================
  #CONTACT
  ============================ */
.contact-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/* --------^-MAIN-^-------- */
/* --------v-FOOTER-v-------- */
footer {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 180px;
  background: var(--color-dark-gray);
}
footer .footer-inner {
  position: relative;
  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;
  width: 100%;
  max-width: 900px;
  padding: 0 32px;
  margin-inline: auto;
}
footer .footer-inner .footer-logo {
  position: relative;
  top: -16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (hover: hover) {
  footer .footer-inner .footer-logo {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  footer .footer-inner .footer-logo:hover {
    opacity: 0.8;
  }
}
footer .footer-inner .footer-logo a {
  display: block;
  width: 120px;
  padding-left: 16px;
}
footer .footer-inner nav ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: var(--color-white);
}
footer .footer-inner nav ul li + li {
  margin-top: 16px;
}
footer .footer-inner nav ul li::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  content: "";
  background: var(--color-logo-lightgreen);
}
@media (hover: hover) {
  footer .footer-inner nav ul li {
    -webkit-transition: color 0.1s ease;
    transition: color 0.1s ease;
  }
  footer .footer-inner nav ul li:hover {
    color: var(--color-logo-lightgreen);
  }
}
footer .footer-inner #footer-copy {
  position: absolute;
  bottom: -16px;
  padding-left: 12px;
  font-size: 12px;
  color: var(--color-white);
  text-align: left;
  text-indent: -12px;
}

/* --------^-FOOTER-^-------- *//*# sourceMappingURL=style.css.map */