/* CSS Document */
/* --------v-DEFAULT-v-------- */
:root {
  /* COLORS */
  --color-tgp-blue: #0694f7;
  --color-sub-blue: #0072c4;
  --color-dark-blue: #054e85;
  --color-text: #060644;
  --color-error-red: #ff4242;
  /* GRADATION */
  --main-gradation: linear-gradient(90deg, #0072c4, #060644);
  /* 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: #f8f8f888;
  --alpha-sub-blue: #0072c488;
  --alpha-dark-blue: #054e8588;
  /* 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-dark-blue);
          box-shadow: 0 0 4px 1px var(--color-dark-blue);
}
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: 32px;
  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: 56px;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
header.js-on-scroll {
  background: var(--alpha-white-gray);
  translate: 0 -32px;
  -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 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  margin-left: calc(50% - 480px);
}
header #header-logo:is(div) {
  cursor: pointer;
}
header #header-logo:is(div):has(a:focus) {
  -webkit-box-shadow: 0 0 4px 1px var(--color-dark-blue);
          box-shadow: 0 0 4px 1px var(--color-dark-blue);
}
header #header-logo:is(div):has(a:focus) a {
  outline: 2px solid transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
header #header-logo:is(div):has(a:focus):active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
header #header-logo:is(div) a {
  display: block;
}
@media (hover: hover) {
  header #header-logo:is(div):active img {
    translate: 0 1px;
  }
  header #header-logo:is(div):hover img {
    opacity: 0.8;
  }
  header #header-logo:is(div):hover:has(a:focus) {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
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: calc(50% - 480px);
  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 {
  padding-inline: 12px;
  font-size: 18px;
  font-weight: 500;
}
header nav ul li:has(a:focus) {
  text-shadow: 2px 0 4px var(--color-tgp-blue), -2px 0 4px var(--color-tgp-blue);
}
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: 4px;
  left: 0;
  z-index: -1;
  display: block;
  width: 56px;
  height: 6px;
  background: var(--color-dark-blue);
  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-dark-blue);
          box-shadow: 0 0 4px 1px var(--color-dark-blue);
}
.hamburger.disabled {
  position: absolute;
}
.hamburger hr {
  position: absolute;
  left: calc(50% - 14px);
  display: block;
  width: 28px;
  height: 4px;
  background: var(--color-dark-blue);
  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);
  background: var(--color-white);
}
.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;
}
#main-visual img {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  -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;
  opacity: 0.25;
}

/* ============================
  #mv-catchcopy
  ============================ */
#mv-catchcopy {
  position: absolute;
  top: calc(50% - 48px);
  right: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
#mv-catchcopy .mv-copy {
  font-family: Belanosima, sans-serif;
  font-size: 48px;
  line-height: 48px;
  color: var(--color-text);
  text-align: center;
}
#mv-catchcopy p.mv-copy-jp {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-text);
  text-align: center;
}

/* ============================
  #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-dark-blue);
  text-shadow: 1px 1px 4px 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-dark-blue);
  -webkit-box-shadow: 1px 1px 4px var(--color-white);
          box-shadow: 1px 1px 4px 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-dark-blue);
  -webkit-box-shadow: 1px 1px 4px var(--color-white);
          box-shadow: 1px 1px 4px 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-wrapper {
  margin-top: 120px;
}
.section-wrapper.center h2 {
  padding: 0;
  margin-inline: auto;
  text-align: center;
}
.section-wrapper.center p {
  text-align: center;
}
.section-wrapper.center a.hexagon {
  margin-inline: auto;
}

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

#main-wrapper {
  position: relative;
  z-index: 0;
  background: var(--color-white-gray);
}
#main-wrapper #contents {
  max-width: 1280px;
  padding: 120px 32px 56px;
  margin-inline: auto;
}
#main-wrapper #contents .strict {
  max-width: 900px;
  margin-inline: auto;
}
#main-wrapper::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: url("../img/curve.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

main.pages h1,
h2 {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 24px;
  padding-right: 64px;
  font-family: Belanosima, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  color: var(--color-dark-blue);
}
main.pages h1 span,
h2 span {
  position: relative;
  top: -4px;
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-gray);
}
main.pages h1 span::before,
h2 span::before {
  margin-right: 8px;
  margin-left: 16px;
  content: "-";
}

.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-dark-blue);
}
.content-text p.bold {
  font-weight: 600;
}
.content-text p.large {
  font-size: 1.2em;
}
.content-text p span.break {
  display: inline-block;
}

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

a.hexagon {
  position: relative;
  z-index: 0;
  display: block;
  width: 240px;
  height: 56px;
  padding: 16px 32px;
  margin-top: 32px;
  overflow: hidden;
  -webkit-clip-path: polygon(16.1662817552px 0, calc(100% - 16.1662817552px) 0, 100% 50%, calc(100% - 16.1662817552px) 100%, 16.1662817552px 100%, 0 50%);
          clip-path: polygon(16.1662817552px 0, calc(100% - 16.1662817552px) 0, 100% 50%, calc(100% - 16.1662817552px) 100%, 16.1662817552px 100%, 0 50%);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: white;
  text-align: center;
  text-indent: -28px;
  letter-spacing: 0.1em;
  background: var(--color-dark-blue);
}
a.hexagon::before {
  position: absolute;
  bottom: 0;
  left: -70px;
  z-index: -1;
  width: 334px;
  height: 334px;
  content: "";
  background: var(--color-sub-blue);
  border-radius: 100%;
}
a.hexagon::after {
  position: relative;
  top: 3px;
  left: 16px;
  display: inline-block;
  width: 12px;
  height: 20px;
  -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.hexagon:hover {
    background: #065c9e;
  }
  a.hexagon:hover::before {
    background: #0081de;
  }
  a.hexagon: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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 16px;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}
ul.services-list li {
  position: relative;
  z-index: 0;
  display: block;
  width: 400px;
  height: 320px;
  padding: 32px;
  background: var(--color-white-gray);
  border-radius: 16px;
  -webkit-box-shadow: var(--material-basic);
          box-shadow: var(--material-basic);
}
ul.services-list li .service-inner {
  position: relative;
  height: 160px;
}
ul.services-list li img {
  width: 160px;
  opacity: 0.1;
}
ul.services-list li h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 20px;
  font-weight: 600;
  color: transparent;
  background: var(--main-gradation);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
ul.services-list li h3 span.break {
  display: block;
}
ul.services-list li p {
  margin-top: 16px;
  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-dark-blue);
}
.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 {
  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 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 160px;
  color: var(--color-white);
}
@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;
}
footer .footer-inner #footer-copy {
  margin-top: 8px;
  margin-left: 12px;
  font-size: 12px;
}
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: 8px;
  height: 6.928px;
  margin-right: 8px;
  -webkit-clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
          clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  content: "";
  background: var(--color-tgp-blue);
}
@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-tgp-blue);
  }
}

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