* {
  line-height: 1.3;
  letter-spacing: -0.02em;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

hr,
figure {
  padding: 0;
  margin: 0;
}

pre {
  white-space: pre-wrap;
}

textarea {
  resize: none;
}

hr {
  border: none;
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  overflow-x: clip;
}

.icon img {
  max-height: 100%;
}

body.on header {
  transform: translateY(0);
}
body.on .visual .text-box,
body.on .visual .option-box {
  opacity: 1;
  transform: translateY(0);
}
body.on #fp-nav ul {
  opacity: 1;
  right: 0;
}
body.on .scroll {
  opacity: 1;
  transform: translateX(0);
}

header {
  width: 100%;
  height: var(--headerHeight);
  position: absolute;
  z-index: 1;
  transform: translateY(-100px);
  transition: all 0s, transform 1.2s;
}
header .gnb-bg {
  width: 100%;
  height: 0;
  background: #f7f7f7;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  transition: all 0.4s;
}
header a {
  color: var(--color-white);
  transition: all 0.4s;
}
header .header-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
header .header-box >*:not(nav) {
  flex-shrink: 0;
}
header .logo {
  width: 232px;
  height: 65px;
}
header .logo-text {
  filter: brightness(0) invert(1);
}
header nav,
header .depth1,
header .depth1 > li,
header .depth1 > li > a {
  height: 100%;
}
header nav {
  padding: 0 40px;
  margin-left: 40px;
  position: relative;
}
header .depth1 {
  display: flex;
}
header .depth1 > li > a {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 40px;
  transition: all 0.4s;
}
header .depth1 > li:hover > a {
  color: var(--color-main);
}
header .depth2 {
  display: grid;
  grid-template-columns: repeat(4, 310px);
  padding: 35px 0;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
header .depth2 li {
  width: 100%;
  height: 60px;
  background: transparent;
  position: relative;
}
header .depth2 li::before, header .depth2 li::after {
  content: "";
  display: block;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
header .depth2 li::before {
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
header .depth2 li::after {
  border: 1px solid var(--color-main);
  opacity: 0;
  z-index: 1;
  transition: all 0.6s;
}
header .depth2 li:nth-child(4n)::before, header .depth2 li:last-child::before {
  border-right: 1px solid #ddd;
}
header .depth2 li:nth-child(-n+4)::before {
  border-top: 1px solid #ddd;
}
header .depth2 li > a {
  color: #666;
  padding: 0 20px;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .depth2 li > a .svg {
  width: 7px;
}
header .depth2 li > a .angle-cls {
  fill: #999;
  transition: all 0.6s;
}
header .depth2 li:hover::after {
  opacity: 1;
}
header .depth2 li:hover > a {
  background: var(--color-white);
  color: var(--color-main);
}
header .depth2 li:hover > a .angle-cls {
  fill: var(--color-main);
}
header .depth2.on {
  opacity: 1;
  pointer-events: inherit;
}
header .language {
  display: flex;
  column-gap: 15px;
  margin: 0 40px 0 auto;
}
header .language a {
  font-size: 1.8rem;
  font-weight: 600;
  opacity: 0.25;
  position: relative;
  transition: all 0.4s;
}
header .language a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 0.4s;
}
header .language a:hover, header .language a.on {
  opacity: 1;
}
header .language a:hover::after, header .language a.on::after {
  width: 100%;
}
header .open-button {
  width: 40px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .open-button span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-white);
}
header.bg .logo-text, header.shadow .logo-text, header.color .logo-text {
  filter: inherit;
}
header.bg a, header.shadow a, header.color a {
  color: #111;
}
header.bg .language a::after, header.shadow .language a::after, header.color .language a::after {
  background: #111;
}
header.bg .open-button span, header.shadow .open-button span, header.color .open-button span {
  background: #111;
}
header.bg, header.shadow {
  background: var(--color-white);
}
header.shadow {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
}

.site-map {
  width: 100%;
  z-index: 2;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}
.site-map .inner {
  width: 100%;
  background: var(--color-white);
  padding: 120px 0;
  position: relative;
}
.site-map .close-button {
  position: absolute;
  top: 50px;
  right: 80px;
}
.site-map .close-button i {
  color: #111;
  font-size: 3rem;
}
.site-map ul li a {
  transition: all 0.6s;
}
.site-map ul li:hover > a {
  color: var(--color-main);
}
.site-map .depth1 {
  width: 100%;
  max-width: 79.15%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: 0 auto;
}
.site-map .depth1 > li:not(:last-child) {
  border-right: 1px solid #eee;
}
.site-map .depth1 > li > a {
  color: #111;
  font-size: 3.5rem;
  font-weight: 700;
}
.site-map .depth2 {
  margin-top: 30px;
}
.site-map .depth2 > li > a {
  display: inline-block;
  color: #bbb;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 10px 0;
}
.site-map .point {
  width: 55.3125%;
  position: absolute;
  right: 0;
  bottom: -2px;
  opacity: 0.03;
}

footer {
  background: #131721;
}
footer * {
  font-size: 1.7rem;
}
footer .top {
  position: relative;
}
footer .link {
  display: flex;
}
footer .link a {
  width: 160px;
  height: 70px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .link a b {
  font-weight: 600;
}
footer .link a:hover {
  color: var(--color-white);
}
footer .link a::before,
footer .link a:last-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
footer .link a::before {
  left: 0;
}
footer .link a:last-child::after {
  right: 0;
}
footer .top-button {
  width: 70px;
  height: 70px;
  row-gap: 5px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: -70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer hr {
  width: 100vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
footer .bottom {
  padding: 80px 0 55px;
}
footer .row {
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
}
footer .information {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 50px;
}
footer .information .address {
  width: 100%;
}
footer .information dl {
  display: flex;
  column-gap: 20px;
}
footer .information dl * {
  color: var(--color-white);
}
footer .information dl dt {
  font-weight: 500;
}
footer .information dl dd {
  font-weight: 300;
  opacity: 0.5;
}
footer .copy {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}
footer .logo {
  display: inline-flex;
  flex-shrink: 0;
  column-gap: 20px;
}
footer .logo > * {
  height: 50px;
}

.scroll-box {
  width: 100%;
  max-width: 1760px;
  display: flex;
  justify-content: flex-end;
  position: fixed;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  pointer-events: none;
}

.scroll {
  width: 18px;
  transform: translateX(100px);
  transition: transform 1.2s, opacity 1.2s;
}
.scroll .scroll-cls-3 {
  animation: scrollAni1 2s infinite;
}
.scroll .scroll-cls-3-2 {
  animation: scrollAni2 2s infinite;
}
@keyframes scrollAni1 {
  30% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
}
@keyframes scrollAni2 {
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}
.scroll.color .scroll-cls-2 {
  fill: #111;
}
.scroll.color .scroll-cls-3 {
  stroke: #111;
}