@charset "UTF-8";
:root {
  --user-scroll-animation-translateY: 100px;
}

/* pc, mobile */
.hidden {
  display: none;
}

.hidden-p {
  display: none;
}

.origin-hidden-p {
  display: none !important;
}

@media (max-width: 1023px) {
  .hidden-p {
    display: block;
  }
}
.hidden-m {
  display: block;
}

@media (max-width: 1023px) {
  .hidden-m {
    display: none !important;
  }
  .origin-hidden-m {
    display: none !important;
  }
}
.blind {
  clip: rect(0 0 0 0);
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute;
  white-space: nowrap;
  width: 1px !important;
}

/* wrapper */
.wrapper {
  position: relative;
}

/* loader */
.l-loader {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.l-loader.active {
  visibility: visible;
  opacity: 1;
}

.loader {
  position: relative;
  top: 50%;
  left: 50%;
  width: 84px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1023px) {
  .loader {
    width: 84px;
  }
}
.loader.active {
  display: block;
}

.wrapper:not(.wrapper--main) .l-loader.active {
  visibility: hidden;
  opacity: 0;
}

/* loader__cf */
.l-loader__cf {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 12px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.l-loader__cf.active {
  visibility: visible;
  opacity: 1;
}

.l-loader__cf .loader {
  position: relative;
  top: 50%;
  left: 50%;
  width: 84px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1023px) {
  .l-loader__cf {
    border-radius: 8px;
  }
  .l-loader__cf .loader {
    width: 84px;
  }
}
.l-loader__cf .loader.active {
  display: block;
}

/* // loader */
/* back-to-top */
.back-to-top {
  position: fixed;
  right: 60px;
  z-index: 9;
  -webkit-transform: translate3d(110px, 0, 0);
  transform: translate3d(110px, 0, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

@media (max-width: 1023px) {
  .back-to-top {
    right: 20px;
  }
}
.back-to-top__wrap {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}

@media (max-width: 1023px) {
  .back-to-top__wrap {
    width: 40px;
    height: 40px;
  }
}
.back-to-top__btn {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: url(../assets/images/common/icon_btn_top_arrow.png) 50% 50% no-repeat;
  background-size: 14px 20px;
  cursor: pointer;
}

.back-to-top.visible {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

.back-to-top.hidden {
  visibility: hidden;
  opacity: 0;
}

/* // back-to-top */
.skip-navi {
  position: absolute;
  width: 100%;
  font-size: 0;
}

.skip-navi__linker {
  position: absolute;
  top: -999px;
  left: 0;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  text-align: center;
  background: #222;
}

.skip-navi__linker:active,
.skip-navi__linker:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1110;
  text-decoration: none;
}

.wrapper--main .skip-navi__linker--sub {
  display: none;
}

.wrapper:not(.wrapper--main) .skip-navi__linker--main {
  display: none;
}

/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #222;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #222000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #222000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  touch-action: none;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -webkit-perspective: 1200px;
  perspective: 1200px;
  -ms-perspective: 1200px;
}

body.body-lock {
  overflow: hidden;
}

.header {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transition: box-shadow 0.5s 0.6s, -webkit-transform 0.5s;
  transition: box-shadow 0.5s 0.6s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s 0.6s;
  transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s 0.6s;
  transition: transform 0.5s, box-shadow 0.5s 0.6s;
  transition: transform 0.5s, box-shadow 0.5s 0.6s, -webkit-transform 0.5s, -webkit-box-shadow 0.5s 0.6s;
  transition: transform 0.5s, box-shadow 0.5s 0.6s, -webkit-transform 0.5s;
  /* &--banner-close-when-total-menu-open {
        box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
        @include mobile {
            box-shadow: none;
        }
    } */
}

.header__content-area {
  width: 1800px;
  height: auto;
  margin: 0 auto;
}

.header__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 1023px) {
  .header__banner {
    height: 36px;
    background-color: #222;
  }
}
.header__banner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1023px) {
  .header__banner-inner {
    padding: 0 0 0 16px;
  }
}
.header__banner-link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  min-width: 0;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__banner-link-area:hover .header__banner-title {
  border-bottom: solid 1px #fff;
}

@media (max-width: 1023px) {
  .header__banner-link-area {
    height: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header__banner-title {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  margin-right: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .header__banner-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
  }
}
.header__banner-date {
  position: relative;
  color: #fff;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  margin: 0 32px;
}

@media (max-width: 1023px) {
  .header__banner-date {
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 8px 0 24px;
    background: url(../assets/images/common/mo/icon_header_banner_more.png) center center;
    background-size: contain;
  }
}
.header__banner-close-btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48px;
  height: 40px;
  background: url(../assets/images/common/pc/icon_header_banner_close.png) center center;
  background-size: cover;
}

@media (max-width: 1023px) {
  .header__banner-close-btn {
    width: 44px;
    height: 36px;
    background: url(../assets/images/common/mo/icon_header_banner_close.png) center center no-repeat;
    background-size: 16px 16px;
  }
}
.header__nav-wrap {
  background: #fff;
  visibility: visible;
}

.header__nav-wrap.total-menu-open {
  background-color: #fff;
  background-image: none;
}

.header__nav-wrap.total-menu-open .c-gnb__depth-01-item {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1023px) {
  .header__nav-wrap.total-menu-open .c-gnb__logo {
    visibility: hidden;
    opacity: 0;
  }
}
.header__nav-wrap.total-menu-open .c-util {
  margin-right: 6px;
}

@media (max-width: 1023px) {
  .header__nav-wrap.total-menu-open .c-util {
    margin-right: 0;
  }
}
.header__nav-wrap.total-menu-open .c-util__search {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1023px) {
  .header__nav-wrap.total-menu-open .c-util__search {
    display: none;
  }
}
.header__nav-wrap.total-menu-open .c-util__global {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1023px) {
  .header__nav-wrap.total-menu-open .c-util__global {
    width: auto;
    visibility: visible;
    opacity: 1;
  }
}
.header__nav-wrap.total-menu-open .c-util__total {
  margin-left: 20px;
}

@media (max-width: 1023px) {
  .header__nav-wrap.total-menu-open .c-util__total {
    margin-left: 5px;
  }
}
@media (max-width: 1023px) {
  .header__nav-wrap.total-menu-open .c-util.active {
    width: calc(100% - 32px);
  }
}
@media (max-width: 1023px) {
  .header__nav-wrap.total-menu-open .c-util.active .c-util__global {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .header__nav-wrap.total-menu-open .c-util.active .c-util__global-lang-list {
    width: 100%;
    max-width: 208px;
    margin: 0;
    padding-left: 12px;
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-wrap--mo {
  width: 100%;
  height: 60px;
  background: #fff;
}

.header__nav-inner {
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.header--banner-close {
  -webkit-transform: translate3d(0, -40px, 0);
  transform: translate3d(0, -40px, 0);
}

@media (max-width: 1023px) {
  .header--banner-close {
    -webkit-transform: translate3d(0, -36px, 0);
    transform: translate3d(0, -36px, 0);
  }
}
.header.open .header__nav-inner {
  background-color: #fff;
}

.header.open .c-gnb__depth-01-link {
  color: #222;
}

.header.open .c-gnb__depth-01-link:hover::after,
.header.open .c-gnb__depth-01-link.active::after {
  background-color: #ffcc00;
}

.header.open .c-gnb__logo {
  background: url(../assets/images/common/logo_new_02_lang.png) no-repeat center center;
  background-size: contain;
}

:lang(ko) .header.open .c-gnb__logo {
  background: url(../assets/images/common/logo_new_02.png) no-repeat center center;
  background-size: contain;
}

.header.header--banner-disable .header__banner {
  display: none;
}

.header.scrolled:not(.header--banner-disable) {
  -webkit-transform: translate3d(0, -40px, 0);
  transform: translate3d(0, -40px, 0);
}

@media (max-width: 1023px) {
  .header.scrolled:not(.header--banner-disable) {
    -webkit-transform: translate3d(0, -36px, 0);
    transform: translate3d(0, -36px, 0);
  }
}
.header.scrolled:not(.header--banner-disable).up {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.header.up {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.c-gnb {
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1460px;
  padding: 0 20px;
  height: 80px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* @include ie-only {
        background:rgba(255,255,255,1);
        opacity:1;
        backdrop-filter: none;
    } */
}

@media (max-width: 1023px) {
  .c-gnb {
    height: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px 0 24px;
  }
}
.c-gnb.active-esg,
.c-gnb.active {
  height: 412px;
}

.c-gnb.active-esg .c-util,
.c-gnb.active .c-util {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1023px) {
  .c-gnb.util-search-menu-open {
    height: 116px;
    background-color: #fff;
    display: block;
  }
}
@media (max-width: 1023px) {
  .c-gnb.util-search-menu-open .c-gnb__logo {
    visibility: hidden;
    opacity: 0;
  }
}
@media (max-width: 1023px) {
  .c-gnb.util-search-menu-open .c-util {
    display: block;
    position: relative;
    right: 0;
    margin-top: 0;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .c-gnb.util-search-menu-open .c-util__search {
    position: absolute;
    left: 0;
    top: 56px;
    width: calc(100% - 14px);
    height: 40px;
  }
}
@media (max-width: 1023px) {
  .c-gnb.util-search-menu-open .c-util__total {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 1023px) {
  .c-gnb.util-search-menu-open .c-util__total-btn-bar {
    background-color: #222;
  }
}
.c-gnb.util-search-menu-close .c-util__search-open-btn {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

@media (max-width: 1023px) {
  .c-gnb.util-search-menu-close .c-util__search-open-btn {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
}
@media all and (max-width: 1215px) {
  .c-gnb.util-global-menu-open .c-gnb__depth-01-list {
    opacity: 0;
    visibility: hidden;
  }
}
@media all and (max-width: 1280px) {
  .c-gnb.util-global-menu-open .c-gnb__depth-01-list:not(:lang(ko)) {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1023px) {
  .c-gnb.util-global-menu-open .c-util__global {
    width: 0;
  }
}
.c-gnb__logo {
  z-index: 1000;
  display: block;
  width: 274px;
  height: 28px;
  margin: 24px 48px 24px 0;
  background: url(../assets/images/common/logo_new_02_lang.png) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

:lang(ko) .c-gnb__logo {
  z-index: 1000;
  display: block;
  width: 196px;
  height: 32px;
  margin: 24px 48px 24px 0;
  background: url(../assets/images/common/logo_new_02.png) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 1023px) {
  .c-gnb__logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 196px;
    height: 20px;
    margin: 24px 0 0 24px;
    background: url(../assets/images/common/logo_new_02_lang_mo.png) no-repeat center center;
    background-size: contain;
  }
  :lang(ko) .c-gnb__logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 124px;
    height: 20px;
    margin: 24px 0 0 24px;
    background: url(../assets/images/common/logo_new_02.png) no-repeat center center;
    background-size: contain;
  }
  .c-total-menu--mo .c-gnb__logo {
    position: relative;
  }
}
@media (max-width: 1280px) {
  .c-gnb__logo:not(:lang(ko)) {
    width: 180px;
    margin: 24px 10px 24px 24px;
  }
}
.c-gnb__depth-01 {
  z-index: 10;
  width: auto;
  height: 80px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* -webkit-mask-image: linear-gradient(270deg,#0000 0 0%,#fff 10% 100%);
        -webkit-mask-size: 200% 200%;
        -webkit-mask-position-x: 100%; */
}

.c-gnb__depth-01--hidden {
  visibility: hidden;
  opacity: 0;
}

.c-gnb__depth-01-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.c-gnb__depth-01-item {
  width: auto;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 0 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* &+& {
                margin-left:10px;
            } */
}

@media (max-width: 1280px) {
  .c-gnb__depth-01-item:not(:lang(ko)) {
    padding: 0 12px;
  }
}
.c-gnb__depth-01-link {
  position: relative;
  padding: 21px 0 21px;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  opacity: 1;
  color: #222;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.c-gnb__depth-01-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  background-color: #ffcc00;
  -webkit-transition: background-color 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.2),
    -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.2),
    -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.2);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.2),
    -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.c-gnb__depth-01-link:hover::after,
.c-gnb__depth-01-link.active::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.c-gnb__depth-01-link.outlink {
  display: inline-block;
}

.c-gnb__depth-02 {
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding-top: 16px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s, opacity 0.3s;
  transition: visibility 0.3s, opacity 0.3s;
}

@media (max-width: 1200px) {
  .c-gnb__depth-02 {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
  }
}
.c-gnb__depth-02.active {
  visibility: visible;
  opacity: 1;
}

.c-gnb__depth-02-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 250px;
}

@media (max-width: 1200px) {
  .c-gnb__depth-02-list {
    margin-left: 0;
  }
}
.c-gnb__depth-02-item {
  width: 152px;
  margin-right: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1320px) {
  .c-gnb__depth-02-item:first-child {
    margin-left: 0;
  }
}
.c-gnb__depth-02-item:last-child {
  margin-right: 0;
}

@media (max-width: 1320px) {
  .c-gnb__depth-02-item {
    text-align: left;
  }
}
.c-gnb__depth-02-link {
  display: block;
  z-index: 1;
  position: relative;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  padding: 7px 0;
  word-break: keep-all;
}

.c-gnb__depth-02-link ~ .c-gnb__depth-02-link {
  margin-top: 64px;
}

/* yj.baek 20231116 */
.c-gnb__user-position {
  margin-top: 34px !important;
}

.c-gnb__depth-03-list {
  margin-top: 8px;
}

.c-gnb__depth-03-link {
  display: inline-block;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  word-break: keep-all;
}

.c-gnb__depth-03-link:hover {
  font-weight: 700;
}

.c-gnb__depth-03-item:not(:last-child) {
  padding: 0px 0px 10px 0px;
}

.c-btn-close {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  padding-top: 40px;
  opacity: 0;
}

.c-btn-close.active {
  z-index: 11;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.c-btn-close__text {
  position: relative;
  display: inline-block;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  padding: 44px 0 40px;
}

.c-btn-close__text:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(../assets/images/common/btn_menu_close.png) no-repeat center center;
  background-size: cover;
}

.c-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0px;
  right: 0;
  margin-top: 16px;
  margin-right: 20px;
  height: auto;
  width: 1022px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: right;
  -webkit-transition: width 0.5s, margin 0.5s;
  transition: width 0.5s, margin 0.5s;
}

@media (max-width: 1660px) {
  .c-util {
    width: 70%;
  }
}
@media (max-width: 1023px) {
  .c-util {
    top: 0;
    right: 10px;
    width: auto;
    height: auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 6px;
    margin-right: 0;
  }
}
.c-util__search {
  -ms-flex-preferred-size: 1;
  flex-basis: 1;
  position: relative;
  z-index: 1;
  width: 48px;
  height: 40px;
  margin-left: auto;
  margin-right: 6px;
  background: transparent;
  border-radius: 100px;
  visibility: visible;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 1023px) {
  .c-util__search {
    margin-right: 0;
  }
}
.c-util__search:not(:lang(ko)) {
  display: none;
}

.c-util__search.active {
  z-index: 100;
  width: 100%;
  background: #f7f7f7;
}

@media (max-width: 1023px) {
  .c-util__search.active .c-util__search-open-btn {
    visibility: hidden;
    opacity: 0;
  }
}
.c-util__search-open-btn {
  position: absolute;
  top: -4px;
  left: 8px;
  width: 48px;
  height: 48px;
  background: url(../assets/images/common/icon_search.png) no-repeat left center;
  background-size: contain;
  text-indent: -9999px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 1023px) {
  .c-util__search-open-btn {
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin: auto;
  }
}
.c-util__search-input {
  display: none;
  width: 100%;
  height: 100%;
  padding: 8px 56px;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  color: #666;
  border: none;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

@media (max-width: 1023px) {
  .c-util__search-input {
    padding: 11px 16px 11px 48px;
  }
}
.c-util__search-input:focus {
  outline: none;
}

.c-util__search-submit-btn {
  display: none;
  position: absolute;
  top: -4px;
  left: 8px;
  width: 48px;
  height: 48px;
  text-indent: -9999px;
  background: url(../assets/images/common/icon_search.png) no-repeat center center;
  background-size: cover;
}

@media (max-width: 1023px) {
  .c-util__search-submit-btn {
    top: 0;
    width: 24px;
    height: 24px;
    margin: 8px;
    background: url(../assets/images/common/icon_search_mo.png) no-repeat center center;
    background-size: cover;
  }
}
.c-util__search-close-btn {
  display: none;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(../assets/images/common/icon_header_search_close.png) no-repeat right center;
  background-size: contain;
  text-indent: -9999px;
}

.c-util__global {
  -ms-flex-preferred-size: 1;
  flex-basis: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  width: 50px;
  height: 40px;
  margin-right: 0;
  background: transparent;
  border-radius: 100px;
  overflow: hidden;
  visibility: visible;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.c-util__global:not(:lang(ko)) {
  margin-left: auto;
}

@media (max-width: 1023px) {
  .c-util__global {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 0;
    margin: 0;
    border-radius: 0px;
    background-color: transparent;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
.c-util__global.active {
  width: 236px;
  background: #f7f7f7;
}

@media (max-width: 1023px) {
  .c-util__global.active {
    background-color: transparent;
  }
}
.c-util__global-open-btn {
  position: absolute;
  top: -4px;
  left: 0;
  width: 50px;
  height: 48px;
  padding-left: 24px;
  background: url(../assets/images/common/icon_global.png) no-repeat left center;
  background-size: contain;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.c-util__global-open-btn:lang(id),
.c-util__global-open-btn:lang(ko),
.c-util__global-open-btn:lang(en) {
  line-height: 49px;
}

@media (max-width: 1023px) {
  .c-util__global-open-btn {
    position: static;
    width: auto;
    height: auto;
    padding-left: 19px;
    font-size: 13px;
    font-weight: 700;
    line-height: 26px;
    background: url(../assets/images/common/icon_global_mo_v2.png) no-repeat left center;
    background-size: 16px;
  }
}
.c-util__global-lang-list {
  display: none;
  z-index: -100;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  margin-left: 8px;
}

@media (max-width: 1023px) {
  .c-util__global-lang-list {
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    z-index: 1;
    width: 0;
    margin: 0;
    padding-left: 0;
    background: url(../assets/images/common/icon_global_mo_v2.png) no-repeat left 11px;
    background-size: 16px;
    -webkit-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
  }
}
.c-util__global-lang-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 36px;
  height: auto;
  text-align: center;
}

.c-util__global-lang-item.active .c-util__global-lang-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #222;
}

@media (max-width: 1023px) {
  .c-util__global-lang-item.active .c-util__global-lang-link {
    font-size: 13px;
    font-weight: 700;
    line-height: 26px;
  }
}
@media (max-width: 1023px) {
  .c-util__global-lang-item + .c-util__global-lang-item {
    margin-left: 4px;
  }
}
.c-util__global-lang-link {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #ddd;
  white-space: nowrap;
}

.c-util__global-lang-link:lang(en),
.c-util__global-lang-link:lang(id),
.c-util__global-lang-link:lang(ko) {
  padding-top: 2px;
}

@media (max-width: 1023px) {
  .c-util__global-lang-link {
    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;
    height: 40px;
    width: 36px;
    font-size: 13px;
    font-weight: 700;
    line-height: 26px;
  }
}
@media (max-width: 375px) {
  .c-util__global-lang-link {
    width: 12.8vw;
  }
}
.c-util__global-close-btn {
  display: none;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(../assets/images/common/icon_header_search_close.png) no-repeat right center;
  background-size: contain;
  text-indent: -9999px;
}

.c-util__total {
  -ms-flex-preferred-size: 1;
  flex-basis: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-right: 0;
}

@media (max-width: 1023px) {
  .c-util__total {
    margin-left: 0;
  }
}
.c-util__total-btn {
  position: relative;
  width: 48px;
  height: 48px;
}

.c-util__total-btn-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 20px;
  background-color: #222;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.c-util__total-btn-bar--01 {
  -webkit-transform: translate(-50%, -6px) rotate(0);
  transform: translate(-50%, -6px) rotate(0);
}

.c-util__total-btn-bar--02 {
  -webkit-transform: translate(-50%, 4px) rotate(0);
  transform: translate(-50%, 4px) rotate(0);
}

.c-util__total-btn.open .c-util__total-btn-bar--01 {
  -webkit-animation: total-bar1-close 0.7s forwards;
  animation: total-bar1-close 0.7s forwards;
}

.c-util__total-btn.open .c-util__total-btn-bar--02 {
  -webkit-animation: total-bar2-close 0.7s forwards;
  animation: total-bar2-close 0.7s forwards;
}

.c-util__total-btn.close .c-util__total-btn-bar--01 {
  -webkit-animation: total-bar1-open 0.7s forwards;
  animation: total-bar1-open 0.7s forwards;
}

.c-util__total-btn.close .c-util__total-btn-bar--02 {
  -webkit-animation: total-bar2-open 0.7s forwards;
  animation: total-bar2-open 0.7s forwards;
}

@-webkit-keyframes total-bar1-open {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -6px) rotate(0);
    transform: translate(-50%, -6px) rotate(0);
  }
}
@keyframes total-bar1-open {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -6px) rotate(0);
    transform: translate(-50%, -6px) rotate(0);
  }
}
@-webkit-keyframes total-bar2-open {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, 4px) rotate(0);
    transform: translate(-50%, 4px) rotate(0);
  }
}
@keyframes total-bar2-open {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, 4px) rotate(0);
    transform: translate(-50%, 4px) rotate(0);
  }
}
@-webkit-keyframes total-bar1-close {
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes total-bar1-close {
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-webkit-keyframes total-bar2-close {
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes total-bar2-close {
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.c-util .active .c-util__search-input {
  display: block;
  background-color: transparent;
  border-radius: 100px;
}

.c-util .active .c-util__search-close-btn {
  display: block;
}

@media (max-width: 1023px) {
  .c-util .active .c-util__search-close-btn {
    display: none;
    /* top:50%; left:auto; right:16px; bottom:auto;
            transform: translateY(-50%);
            margin:auto; */
  }
}
.c-util .active .c-util__global-close-btn {
  display: block;
}

@media (max-width: 1023px) {
  .c-util .active .c-util__global-close-btn {
    display: none;
  }
}
.c-util .active .c-util__search-submit-btn {
  display: block;
}

.c-util .active .c-util__global-open-btn {
  z-index: -1;
  display: none;
}

.c-util .active .c-util__global-lang-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-total-menu {
  visibility: hidden;
  z-index: 990;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  overflow-y: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 1023px) {
  .c-total-menu {
    top: 60px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
.c-total-menu__nav {
  position: relative;
  top: 0;
  left: 0;
  height: 80px;
}

.c-total-menu__nav .c-util {
  margin-right: 80px;
}

@media (max-width: 1023px) {
  .c-total-menu__nav {
    height: auto;
  }
}
.c-total-menu__content-wrap {
  width: 100%;
  max-width: 1660px;
  height: auto;
  margin: 0 auto;
  padding: 64px 120px 144px;
}

@media (max-width: 1660px) {
  .c-total-menu__content-wrap {
    padding-right: 96px;
  }
}
@media (max-width: 1023px) {
  .c-total-menu__content-wrap {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
.c-total-menu__depth-01 {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media all and (max-width: 1643px) {
  .c-total-menu__depth-01 {
    width: 1224px;
  }
}
@media all and (max-width: 1440px) {
  .c-total-menu__depth-01 {
    width: 1020px;
  }
}
@media all and (max-width: 1237px) {
  .c-total-menu__depth-01 {
    width: 816px;
  }
}
.c-total-menu__depth-01-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  /* &:last-child {
                .c-total-menu__depth-01-link {
                    width: auto;
                    padding-right: 32px;
                    background: url(../assets/images/common/icon_new_tab_black_large.png) no-repeat center right;
                    background-size: 24px 24px;
                }
            } */
}

.c-total-menu__depth-01-item + .c-total-menu__depth-01-item {
  margin-top: 32px;
}

.c-total-menu__depth-01-link {
  width: 100%;
  color: #222;
  font-size: 26px;
  font-weight: 700;
  line-height: 42px;
  text-align: left;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-total-menu__depth-02 {
  width: 100%;
  margin-top: 12px;
}

.c-total-menu__depth-02-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-total-menu__depth-02-link {
  display: inline-block;
  position: relative;
  padding: 7px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #222;
  word-break: keep-all;
}

.c-total-menu__depth-02-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  background-color: #ffcc00;
  -webkit-transition: background-color 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.2),
    -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.2),
    -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.2);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.2),
    -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.c-total-menu__depth-02-link:hover::after,
.c-total-menu__depth-02-link.active::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.c-total-menu__depth-02-link.outlink {
  padding-right: 20px;
  background: url(../assets/images/common/icon_new_tab_black.png) no-repeat center right;
  background-size: 16px 16px;
}

:lang(en)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(4)
  .c-total-menu__depth-02-link.outlink,
:lang(id)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(4)
  .c-total-menu__depth-02-link.outlink {
  background-position: 127px 10px;
}

.c-total-menu__depth-02-item {
  width: 180px;
  margin-right: 24px;
  margin-bottom: 24px;
}

.c-total-menu__depth-02-item:last-child {
  margin-right: 0;
}

.c-total-menu__depth-03 {
  margin-top: 8px;
}

.c-total-menu__depth-03-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 180px;
}

.c-total-menu__depth-03-link {
  display: inline-block;
  color: #666;
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  word-break: keep-all;
}

.c-total-menu__depth-03-link:hover {
  color: #222;
  font-weight: 700;
}

/* total menu cursor */
.c-total-menu__depth-01-link {
  cursor: default;
}

:lang(jp) .c-total-menu__depth-01-item:nth-child(1) .c-total-menu__depth-02-link,
:lang(zh) .c-total-menu__depth-01-item:nth-child(1) .c-total-menu__depth-02-link {
  cursor: default;
}

:lang(ko) .c-total-menu__depth-01-item:nth-child(1) .c-total-menu__depth-02-link:not(:last-child),
:lang(en) .c-total-menu__depth-01-item:nth-child(1) .c-total-menu__depth-02-link:not(:last-child),
:lang(id) .c-total-menu__depth-01-item:nth-child(1) .c-total-menu__depth-02-link:not(:last-child) {
  cursor: default;
}

.c-total-menu__depth-01-item:nth-child(2) .c-total-menu__depth-02-item:nth-child(2) .c-total-menu__depth-02-link,
.c-total-menu__depth-01-item:nth-child(2) .c-total-menu__depth-02-item:nth-child(4) .c-total-menu__depth-02-link,
.c-total-menu__depth-01-item:nth-child(2) .c-total-menu__depth-02-item:nth-child(5) .c-total-menu__depth-02-link {
  cursor: default;
}

.c-total-menu__depth-01-item:nth-child(3) .c-total-menu__depth-02-item .c-total-menu__depth-02-link {
  cursor: default;
}

:lang(ko)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(3)
  .c-total-menu__depth-02-link,
:lang(ko)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(4)
  .c-total-menu__depth-02-link {
  cursor: default;
}

:lang(en)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(2)
  .c-total-menu__depth-02-link,
:lang(en)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(3)
  .c-total-menu__depth-02-link,
:lang(id)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(2)
  .c-total-menu__depth-02-link,
:lang(id)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(3)
  .c-total-menu__depth-02-link {
  cursor: default;
}

/* set user line length */
:lang(en)
  .c-total-menu__depth-01-item:nth-child(1)
  .c-total-menu__depth-02-item:nth-child(5)
  .c-total-menu__depth-02-link::after {
  width: 58%;
}

:lang(en)
  .c-total-menu__depth-01-item:nth-child(2)
  .c-total-menu__depth-02-item:nth-child(4)
  .c-total-menu__depth-02-link::after {
  width: 56%;
}

:lang(en)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(4)
  .c-total-menu__depth-02-link::after {
  width: 79%;
}

:lang(id)
  .c-total-menu__depth-01-item:nth-child(1)
  .c-total-menu__depth-02-item:nth-child(5)
  .c-total-menu__depth-02-link::after {
  width: 56%;
}

:lang(id)
  .c-total-menu__depth-01-item:nth-child(1)
  .c-total-menu__depth-02-item:nth-child(6)
  .c-total-menu__depth-02-link::after {
  width: 56%;
}

:lang(id)
  .c-total-menu__depth-01-item:nth-child(4)
  .c-total-menu__depth-02-item:nth-child(4)
  .c-total-menu__depth-02-link::after {
  width: 79%;
}

:lang(jp)
  .c-total-menu__depth-01-item:nth-child(1)
  .c-total-menu__depth-02-item:nth-child(4)
  .c-total-menu__depth-02-link::after {
  width: 67%;
}

@media (min-width: 1024px) {
  .c-total-menu__depth-03-item:not(:last-child) {
    padding: 0px 0px 10px 0px;
  }
}
/* end */
.c-total-menu__close {
  position: absolute;
  top: 20px;
  right: 80px;
}

@media (max-width: 1023px) {
  .c-total-menu__close {
    top: 18px;
    right: 16px;
  }
}
.c-total-menu__close-btn {
  width: 48px;
  height: 48px;
  background: url(../assets/images/common/icon_total_close.png) no-repeat center center;
  background-size: cover;
}

@media (max-width: 1023px) {
  .c-total-menu__close-btn {
    width: 24px;
    height: 24px;
    background: url(../assets/images/common/icon_total_close_mo.png) no-repeat center center;
    background-size: cover;
  }
}
@media (max-width: 1023px) {
  .c-total-menu .c-util {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 72px;
    margin: 0;
    padding: 0 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    visibility: hidden;
  }
}
@media (max-width: 1023px) {
  .c-total-menu .c-util .c-util__global {
    width: 100%;
    visibility: hidden;
    opacity: 0;
  }
}
.c-total-menu .c-util__search {
  border: 1px solid #ccc;
}

.c-total-menu .c-util__global {
  margin-right: 64px;
}

.c-total-menu.open {
  visibility: visible;
  height: 100%;
  max-height: calc(100% - 80px);
}

@media (max-width: 1023px) {
  .c-total-menu.open {
    max-height: calc(100% - 60px);
    visibility: visible;
  }
  .c-total-menu.open .c-util__global {
    visibility: visible;
    opacity: 1;
  }
}
.c-total-menu .c-tab {
  height: auto;
}

.c-total-menu .c-tab__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.c-total-menu .c-tab__list {
  width: 33.3333333333%;
  height: auto;
  min-height: calc(var(--user-window-inner-height) - 60px);
  background: #f7f7f7;
}

.c-total-menu .c-tab__list:not(:lang(ko)) {
  width: 50%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-total-menu .c-tab__list {
    min-height: calc(100vh - 60px);
  }
}
@media all and (max-width: 480px) {
  .c-total-menu .c-tab__list:lang(ko) {
    width: 160px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 375px) {
  .c-total-menu .c-tab__list:lang(ko) {
    width: 42.6666666667%;
  }
}
.c-total-menu .c-tab__list.inactive {
  background-color: #fff;
}

.c-total-menu .c-tab__list.inactive .c-tab__link {
  color: #222;
}

.c-total-menu .c-tab__item {
  width: 100%;
  padding: 25px 40px 25px 40px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

:not(:lang(ko)) .c-total-menu .c-tab__item {
  padding: 25px 24px 25px 24px;
}

/* @media all and (max-width: 370px) {
  .c-total-menu .c-tab__item {
    padding: 20px 0 20px 25px;
  }
} */
.c-total-menu .c-tab__item.active {
  background: #fff;
}

.c-total-menu .c-tab__item.active .c-tab__link {
  color: #222;
}

.c-total-menu .c-tab__link {
  display: block;
  width: 100%;
  height: 100%;
  color: #666;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  word-break: keep-all;
}

.c-total-menu .c-tab__panel {
  background: #fff;
}

.c-total-menu .c-tab__panel:lang(ko) {
  width: 66.6666666667%;
  -ms-flex-negative: 2;
  flex-shrink: 2;
}

.c-total-menu .c-tab__panel:not(:lang(ko)) {
  width: 50%;
}

.c-total-menu .c-tab__panel.active {
  -webkit-animation: total-menu-2depth-open-effect 1s both;
  animation: total-menu-2depth-open-effect 1s both;
}

@-webkit-keyframes total-menu-2depth-open-effect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes total-menu-2depth-open-effect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li {
  -webkit-animation: total-menu-2depth-item-open-effect 0.5s both;
  animation: total-menu-2depth-item-open-effect 0.5s both;
}

.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.c-total-menu .c-tab__panel .c-accordion-menu__depth-01-list > li:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes total-menu-2depth-item-open-effect {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes total-menu-2depth-item-open-effect {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
.c-total-menu .c-accordion-menu__depth-01-link {
  position: relative;
  display: inline-block;
  width: 100%;
  /* padding: 19px 64px 24px 24px; */
  padding: 25px 66px 25px 25px;
  color: #222;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
  word-break: keep-all;
}

:not(:lang(ko)) .c-total-menu .c-accordion-menu__depth-01-link {
  padding: 25px 48px 25px 16px;
}

@media all and (max-width: 370px) {
  .c-total-menu .c-accordion-menu__depth-01-link {
    padding: 14px 44px 14px 24px;
  }
}
.c-total-menu .c-accordion-menu__depth-01-link.highlight {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  text-decoration-color: #fc0;
}

.c-total-menu .c-accordion-menu__depth-01-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 16px;
  height: 16px;
  background: url(../assets/images/common/icon_dropup_arrow_mo_white_gray.png) no-repeat center center;
  background-size: cover;
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

:not(:lang(ko)) .c-total-menu .c-accordion-menu__depth-01-link:after {
  right: 18px;
}

/* .c-total-menu .c-accordion-menu__depth-01-link.outlink {
  padding: 19px 24px 19px 24px;
} */
@media all and (max-width: 370px) {
  .c-total-menu .c-accordion-menu__depth-01-link.outlink {
    padding: 14px 24px 14px 24px;
  }
}
.c-total-menu .c-accordion-menu__depth-01-link.outlink:after {
  display: none;
}

.c-total-menu .c-accordion-menu__depth-01-link.outlink--icon::after {
  content: "";
  display: inline-block;
  position: static;
  -webkit-transform: none;
  transform: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(../assets/images/common/icon_new_tab_black.png) no-repeat center 2px;
  background-size: 16px 16px;
}

.c-total-menu .c-accordion-menu__depth-01-link[aria-expanded="true"]:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.c-total-menu .c-accordion-menu__depth-01-link.depth-02-list-open + .c-accordion-menu__depth-02-list {
  display: block;
}

.c-total-menu .c-accordion-menu__depth-02-list {
  display: none;
  padding: 6px 25px 16px 40px;
}

:not(:lang(ko)) .c-total-menu .c-accordion-menu__depth-02-list {
  padding: 6px 16px 16px 32px;
}

.c-total-menu .c-accordion-menu__depth-02-item + .c-accordion-menu__depth-02-item {
  margin-top: 32px;
}

.c-total-menu .c-accordion-menu__depth-02-link {
  display: block;
  width: 100%;
  color: #666;
  font-size: 15px;
  font-weight: 300;
  line-height: 18px;
  word-break: keep-all;
}

.c-total-menu .c-accordion-menu__depth-02-link.active {
  font-weight: 700;
  color: #222;
}

.c-total-menu .c-accordion-menu__depth-02-link.highlight {
  font-weight: 700;
  color: #222;
}

.c-accordion-menu__depth-01-link {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 20px;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
}

.c-accordion-menu__depth-01-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  background: url(../assets/images/common/icon_dropup_arrow_mo.png) no-repeat center center;
  background-size: cover;
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.c-accordion-menu__depth-01-link.outlink:after {
  display: none;
}

.c-accordion-menu__depth-01-link[aria-expanded="true"]:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.c-accordion-menu__depth-02-list {
  display: none;
  padding: 16px 20px;
}

.c-accordion-menu__depth-02-item + .c-accordion-menu__depth-02-item {
  margin-top: 16px;
}

.c-accordion-menu__depth-02-link {
  display: block;
  width: 100%;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.wrapper--main .header--banner-close-when-total-menu-open:not(.header--banner-disable) {
  -webkit-transform: translate3d(0, -40px, 0);
  transform: translate3d(0, -40px, 0);
}

@media (max-width: 1023px) {
  .wrapper--main .header--banner-close-when-total-menu-open:not(.header--banner-disable) {
    -webkit-transform: translate3d(0, -36px, 0);
    transform: translate3d(0, -36px, 0);
  }
}
.wrapper--main .header.exit-kv .header__nav-wrap,
.wrapper--main .header.open .header__nav-wrap {
  background-color: #fff;
  background-image: none;
}

.wrapper--main .header.exit-kv .c-gnb__depth-01-link,
.wrapper--main .header.open .c-gnb__depth-01-link {
  color: #222;
}

.wrapper--main .header.exit-kv .c-gnb__logo,
.wrapper--main .header.open .c-gnb__logo {
  background: url(../assets/images/common/logo_new_02_lang.png) no-repeat center center;
  background-size: contain;
}

:lang(ko) .wrapper--main .header.exit-kv .c-gnb__logo,
:lang(ko) .wrapper--main .header.open .c-gnb__logo {
  background: url(../assets/images/common/logo_new_02.png) no-repeat center center;
  background-size: contain;
}

.wrapper--main .header.exit-kv .c-util__search.active,
.wrapper--main .header.open .c-util__search.active {
  background-color: #f7f7f7;
}

.wrapper--main .header.exit-kv .c-util__search-open-btn,
.wrapper--main .header.open .c-util__search-open-btn {
  background: url(../assets/images/common/icon_search.png) no-repeat left center;
  background-size: contain;
}

.wrapper--main .header.exit-kv .c-util__global-open-btn,
.wrapper--main .header.open .c-util__global-open-btn {
  color: #222;
  background: url(../assets/images/common/icon_global.png) no-repeat left center;
  background-size: contain;
}

.wrapper--main .header.exit-kv .c-util__total-btn-bar,
.wrapper--main .header.open .c-util__total-btn-bar {
  background-color: #222;
}

.wrapper--main .header.open__depth-01-link.outlink {
  background: url(../assets/images/common/icon_new_tab_black.png) no-repeat center right;
  background-size: 16px 16px;
}

.wrapper--main .header .header__nav-wrap {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    color-stop(49.48%, rgba(0, 0, 0, 0.2)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 49.48%, rgba(0, 0, 0, 0) 100%);
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.wrapper--main .header .header__nav-wrap.total-menu-open {
  background-color: #fff;
  background-image: none;
}

.wrapper--main .header .header__nav-wrap.total-menu-open .header__nav-inner {
  background-color: transparent;
}

.wrapper--main .header .header__nav-wrap.total-menu-open .c-gnb__depth-01-link {
  color: #222;
}

.wrapper--main .header .header__nav-wrap.total-menu-open .c-gnb__logo {
  background: url(../assets/images/common/logo_new_02_lang.png) no-repeat center center;
  background-size: contain;
}

:lang(ko) .wrapper--main .header .header__nav-wrap.total-menu-open .c-gnb__logo {
  background: url(../assets/images/common/logo_new_02.png) no-repeat center center;
  background-size: contain;
}

.wrapper--main .header .header__nav-wrap.total-menu-open .c-util__search-open-btn {
  background: url(../assets/images/common/icon_search.png) no-repeat left center;
  background-size: contain;
}

@media (max-width: 1023px) {
  .wrapper--main .header .header__nav-wrap.total-menu-open .c-util__search-open-btn {
    background: url(../assets/images/common/icon_search_white.png) no-repeat left center;
    background-size: contain;
  }
}
.wrapper--main .header .header__nav-wrap.total-menu-open .c-util__global-open-btn {
  color: #222;
}

@media (max-width: 1023px) {
  .wrapper--main .header .header__nav-wrap.total-menu-open .c-util__global-open-btn {
    background: url(../assets/images/common/icon_global_mo_v2.png) no-repeat left center;
    background-size: 16px;
  }
}
.wrapper--main .header .header__nav-wrap.total-menu-open .c-util__total-btn-bar {
  background-color: #222;
}

.wrapper--main .header .c-gnb {
  background-color: transparent;
}

@media (max-width: 1023px) {
  .wrapper--main .header .c-gnb.util-search-menu-open {
    background-color: #fff;
  }
}
@media (max-width: 1023px) {
  .wrapper--main .header .c-gnb.util-search-menu-open .c-util__total-btn-bar {
    background-color: #222;
  }
}
.wrapper--main .header .c-gnb__depth-01-link {
  color: #fff;
}

.wrapper--main .header .c-gnb__depth-01-link.outlink {
  display: inline-block;
}

@media (max-width: 1200px) {
  .wrapper--main .header:not(.header--banner-close):not(.header--banner-disable) .c-gnb__depth-02 {
    top: 120px;
  }
}
.wrapper--main .header .c-gnb__logo {
  background: url(../assets/images/common/logo_new_white_lang.png) no-repeat center center;
  background-size: contain;
}

:lang(ko) .wrapper--main .header .c-gnb__logo {
  background: url(../assets/images/common/logo_new_white.png) no-repeat center center;
  background-size: contain;
}

.wrapper--main .header .c-util__search.active {
  background-color: #fff;
}

@media (max-width: 1023px) {
  .wrapper--main .header .c-util__search.active {
    background-color: #f7f7f7;
  }
}
.wrapper--main .header .c-util__search-open-btn {
  background: url(../assets/images/common/icon_search_white.png) no-repeat left center;
  background-size: contain;
}

.wrapper--main .header .c-util__global-open-btn {
  color: #fff;
  background: url(../assets/images/common/icon_global_white.png) no-repeat left center;
  background-size: contain;
}

.wrapper--main .header .c-util__total-btn-bar {
  background-color: #fff;
}

.main {
  background: #fff;
}

.section {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.section .sticky-elem {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section .sticky-elem.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section--00 {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

@media (max-width: 1023px) {
  .section--01 .sticky-elem {
    position: relative;
    overflow: visible;
  }
}
@media (max-width: 1023px) {
  :lang(ko) .section--01 .sticky-elem::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -5%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 105%;
    padding-top: 136.53%;
    background: var(--main-2session-mo-background-image) center bottom;
    background-size: 100%;
  }
  :lang(en) .section--01 .sticky-elem::before,
  :lang(jp) .section--01 .sticky-elem::before,
  :lang(zh) .section--01 .sticky-elem::before,
  :lang(id) .section--01 .sticky-elem::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 136.53%;
    background: var(--main-2session-mo-background-image) center bottom;
    background-size: contain;
  }
}
@media (max-width: 1023px) {
  .section--01 .c-rolling__wrap .sticky-elem {
    position: relative;
    overflow: visible;
    margin-bottom: 10px;
  }
}
@media (max-width: 1023px) {
  .section--01 .c-rolling__wrap .sticky-elem::before {
    left: -16px;
    width: 109.3333%;
    padding-bottom: 228.8633%;
    -webkit-transform: translateY(-48.7%);
    transform: translateY(-48.7%);
  }
}
@media (max-width: 1023px) {
  .section--01 .c-rolling__wrap .c-card--large-size .c-card__inner {
    padding: 16px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section--01.not-sticky {
    height: 100vh;
  }
}
.section--01.not-sticky .c-rolling--left-side .c-rolling__wrap {
  margin-top: 236px;
}

@media (max-width: 1023px) {
  .section--01.not-sticky .c-rolling--left-side .c-rolling__wrap {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  :lang(ko) .not-ie .section--01 {
    overflow-x: clip;
  }
}
.section--02 {
  background: #fff;
  height: auto;
  padding-bottom: 80px;
}

.section--02 .c-card__body {
  position: relative;
  height: 100%;
}

.section--02:not(:lang(ko)) {
  padding-bottom: 104px;
}

@media (max-width: 1023px) {
  .section--02 {
    padding-bottom: 24px;
  }
  .section--02:not(:lang(ko)) {
    padding-bottom: 64px;
  }
}
.section--02 .c-content-wrap {
  width: 100%;
  max-width: 1660px;
  padding: 0 120px;
}

@media (max-width: 1023px) {
  .section--02 .c-content-wrap {
    padding: 0;
  }
}
.section--02 .c-masonry {
  padding: 0;
}

@media (max-width: 1023px) {
  .section--02 .c-masonry {
    padding: 0 24px;
  }
}
.not-ie .section {
  position: relative;
  height: 100%;
  overflow: visible;
}

.not-ie .section--01.not-sticky {
  height: var(--user-window-inner-height);
}

@media (max-width: 1023px) {
  .not-ie .section--01.not-sticky {
    height: auto;
  }
}
.c-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

@media (max-width: 1023px) {
  .c-cover {
    display: none;
  }
}
.c-cover__img {
  display: block;
  width: 100.5%;
  height: calc(var(--user-window-inner-height) * 1.005);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-cover__img {
    height: 100vh;
  }
}
.visual-wrap {
  z-index: 0;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.visual-wrap .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 60px;
  z-index: 9;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  font-size: 15px;
}

.visual-wrap .scroll-down .ico-scroll {
  display: block;
  margin: 10px auto 0;
}

.visual-wrap .visual-swiper {
  overflow: hidden;
  height: var(--user-window-inner-height);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .visual-wrap .visual-swiper {
    height: 100vh;
  }
}
@media (max-width: 1023px) {
  .visual-wrap .visual-swiper {
    height: 100%;
  }
}
.visual-wrap .visual-swiper .swiper-slide {
  overflow: hidden;
}

.visual-wrap .visual-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.visual-wrap .visual-swiper .swiper-slide a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: url(../assets/images/common/main_kv_dimd.png) repeat;
  background-size: 4px 4px;
  /* background-position: 0px 0px, 2px 2px;
  			background-size: 4px 4px;
  			background-image: 
  			linear-gradient(45deg, #595959 25%, transparent 25%, transparent 75%, #595959 75%, #595959 100%),
  			linear-gradient(45deg, #595959 25%, #b2b2b2 25%, #b2b2b2 75%, #595959 75%, #595959 100%); */
}

.visual-wrap .visual-swiper .swiper-slide img,
.visual-wrap .visual-swiper .swiper-slide video {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .visual-wrap .visual-swiper .swiper-slide img,
  .visual-wrap .visual-swiper .swiper-slide video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.visual-wrap .visual-swiper .swiper-slide .swiper-image {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -ms-touch-action: none;
  touch-action: none;
  -webkit-animation-name: scaleImgEffect;
  animation-name: scaleImgEffect;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .visual-wrap .visual-swiper .swiper-slide .swiper-image {
    -webkit-transform: scale(1.1) translateX(-45%);
    transform: scale(1.1) translateX(-45%);
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .visual-wrap .visual-swiper .swiper-slide .swiper-image {
    -webkit-animation-name: scaleImgEffectToIE;
    animation-name: scaleImgEffectToIE;
  }
}
@-webkit-keyframes scaleImgEffect {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleImgEffect {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scaleImgEffectToIE {
  100% {
    -webkit-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
  }
  0% {
    -webkit-transform: scale(1.1) translateX(-45%);
    transform: scale(1.1) translateX(-45%);
  }
}
@keyframes scaleImgEffectToIE {
  100% {
    -webkit-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
  }
  0% {
    -webkit-transform: scale(1.1) translateX(-45%);
    transform: scale(1.1) translateX(-45%);
  }
}
.visual-wrap .visual-swiper .swiper-slide .swiper-image.image-animation-reset {
  -webkit-animation: none;
  animation: none;
}

.visual-wrap .visual-swiper .swiper-slide .main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
}

.visual-wrap .visual-swiper .swiper-slide .main-title strong {
  font-size: 74px;
}

.visual-wrap .visual-swiper .swiper-slide .main-title strong + p {
  margin-top: 43px;
}

.visual-wrap .visual-swiper .swiper-slide .main-title p {
  font-size: 24px;
}

.visual-wrap .visual-swiper .swiper-slide .main-title .title-box .title-motion:only-child .btn-more {
  margin-top: 80px;
}

.visual-wrap .visual-swiper .swiper-slide.swiper-slide-active .image-pause {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.visual-wrap .visual-swiper .swiper-slide.swiper-slide-active .main-title .title-box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.c-content-wrap {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 1460px;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1460px) {
  .c-content-wrap {
    width: 100%;
  }
}
.c-content-wrap--sticky {
  position: absolute;
  top: 0;
  right: 0;
  left: 50%;
  margin: 0 auto;
  width: 100%;
  max-width: 1660px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0 auto;
  padding: 0 120px 0;
  height: 100%;
  overflow: visible;
  /* @include large-tablet {
            padding: 0 calc(120 / 1660 * 100%) 0;
        } */
}

@media (max-width: 1460px) {
  .c-content-wrap--sticky {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .c-content-wrap--sticky {
    position: relative;
    padding: 0;
  }
}
.c-content-wrap--sticky-kv {
  position: absolute;
  top: auto;
  bottom: 68px;
  left: 50%;
  z-index: 10;
  width: 100%;
  max-width: 1660px;
  height: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 120px 0;
  overflow: visible;
}

@media (max-width: 1460px) {
  .c-content-wrap--sticky-kv {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .c-content-wrap--sticky-kv {
    width: 210px;
    height: auto;
    top: calc(100% - 62px);
    bottom: auto;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    padding: 0;
    text-align: center;
  }
}
.c-kv-text {
  position: absolute;
  bottom: 108px;
  left: 50%;
  z-index: 10;
  width: 100%;
  max-width: 1660px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 120px 0;
}

.c-kv-text__title {
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
}

.c-kv-text__title:lang(ko),
.c-kv-text__title:lang(en),
.c-kv-text__title:lang(id) {
  font-family: "KBFGDisplay";
}

@media (max-width: 1023px) {
  .c-kv-text__title {
    color: #fff;
    text-align: center;
    font-size: 30px;
    line-height: 36px;
  }
}
.c-kv-text__desc {
  color: #fff;
  font-size: 28px;
  line-height: normal;
  font-weight: 300;
  margin-top: 4px;
}

.c-kv-text__desc:lang(ko),
.c-kv-text__desc:lang(en),
.c-kv-text__desc:lang(id) {
  font-family: "KBFGDisplay";
}

@media (max-width: 1023px) {
  .c-kv-text__desc {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1023px) {
  .c-kv-text {
    bottom: 102px;
    margin: auto;
    padding: 0 20px;
  }
}
.c-main-swiper-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-main-swiper-button .swiper-pagination {
  position: static;
  text-align: left;
  color: #fff;
}

.c-main-swiper-button .swiper-pagination .swiper-pagination-bullet {
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: auto;
  margin-right: 18px;
  background: none;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .c-main-swiper-button .swiper-pagination .swiper-pagination-bullet {
    height: auto;
    margin-right: 10px;
    font-size: 12px;
    line-height: 22px;
  }
}
.c-main-swiper-button .swiper-pagination .swiper-pagination-bullet .progress-bar {
  display: none;
  position: relative;
  width: 196px;
  height: 4px;
  margin-left: 24px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1023px) {
  .c-main-swiper-button .swiper-pagination .swiper-pagination-bullet .progress-bar {
    width: 48px;
    height: 2px;
    margin-left: 10px;
    margin-right: 0;
  }
}
.c-main-swiper-button .swiper-pagination .swiper-pagination-bullet .progress-bar .progress-inner {
  display: block;
  height: 100%;
  background-color: #fc0;
}

.c-main-swiper-button .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #fff;
}

.c-main-swiper-button .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .progress-bar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.c-main-swiper-button .swiper-player-button {
  width: 24px;
  height: 24px;
  background: url(../assets/images/common/icon_kv_pause.png) no-repeat center center;
  background-size: cover;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.c-main-swiper-button .swiper-player-button.active {
  background: url(../assets/images/common/icon_kv_play.png) no-repeat center center;
  background-size: cover;
}

@media (max-width: 1023px) {
  .c-main-swiper-button .swiper-player-button {
    left: 130px;
    z-index: 11;
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 1023px) {
  .c-main-swiper-button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding-left: 0;
  }
}
.c-rolling {
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  width: 100%;
  max-width: 1660px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: auto;
  margin: 0 auto;
  padding: 0 120px 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

@media (max-width: 1460px) {
  .c-rolling {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .c-rolling {
    opacity: 1;
    padding: 0;
  }
}
.c-rolling.active {
  opacity: 1;
}

.c-rolling__wrap {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 120px;
  width: 34.9397590361%;
  margin-top: 600px;
}

@media (max-width: 1023px) {
  .c-rolling__wrap {
    width: 100%;
    margin: 0 auto;
    padding-right: 0;
    padding: 0 24px 0;
  }
}
.c-rolling__item {
  width: 100%;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.rolling__item--main-iframe .c-card__inner {
  padding: 0;
}

.rolling__item--main-iframe .c-card__inner #mainStock {
  padding: 16px 24px !important;
}

@media (max-width: 1023px) {
  .c-rolling__item {
    position: relative;
    z-index: 10;
    border-radius: 8px;
  }
}
.c-rolling__item + .c-rolling__item {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .c-rolling__item + .c-rolling__item {
    margin-top: 10px;
  }
  .c-rolling__item + .rolling__item--main-iframe {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  .c-rolling__item .c-card {
    border-radius: 8px;
  }
}
.rolling__item--main-iframe .c-card {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
}

.c-rolling--left-side {
  z-index: 5;
}

@media (max-width: 1023px) {
  .c-rolling--left-side {
    position: relative;
  }
}
.c-rolling--left-side .c-rolling__wrap {
  top: 0;
  left: 0;
  padding-left: 120px;
  padding-right: 0;
}

@media all and (max-width: 1330px) {
  .c-rolling--left-side .c-rolling__wrap {
    width: 465px;
  }
}
@media (max-width: 1023px) {
  .c-rolling--left-side .c-rolling__wrap {
    width: auto;
    position: static;
    padding: 10px 24px 0;
  }
}
.c-rolling--mo {
  position: relative;
  background: transparent;
}

.c-rolling--mo .c-rolling__wrap {
  position: relative;
  margin-top: 0;
}

@media (max-width: 1023px) {
  .c-rolling--mo {
    z-index: 10;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
}
.c-card {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.c-card__inner {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px 24px;
}

@media (max-width: 1023px) {
  .c-card__inner {
    padding: 16px;
  }
}
.c-card__caption {
  display: block;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 1023px) {
  .c-card__caption {
    color: #666;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
  }
}
.c-card__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  max-width: 100%;
  margin-top: 4px;
  border-bottom: 1px solid #888;
}

.c-card__title-box + .c-card__desc {
  margin-top: 12px;
}

.c-card__title-box--iframe {
  border-bottom: none;
}

@media (max-width: 1023px) {
  .c-card__title-box--iframe {
    margin-top: 4px;
  }
}
@media (max-width: 1023px) {
  .c-card__title-box--iframe .c-card__title {
    margin-bottom: 0;
  }
}
.c-card--type02 .c-card__title-box {
  border-bottom: none;
}

@media (max-width: 1023px) {
  .c-card__title-box {
    margin-top: 4px;
  }
}
.c-card__title {
  position: relative;
  color: #222;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 11px;
  width: 100%;
  padding-right: 20px;
}

.c-card__title:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(../assets/images/common/icon_card_arrow_2x.png) no-repeat;
  background-size: contain;
}

.c-card--type02 .c-card__title:after {
  display: none;
}

.c-card--type02 .c-card__title {
  margin-bottom: 0;
  text-overflow: clip;
  white-space: normal;
  overflow: visible;
}

@media (max-width: 1023px) {
  .c-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 11px;
  }
  .c-card__title:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/icon_card_arrow_2x.png) no-repeat;
    background-size: contain;
  }
}
.c-card__figure {
  display: block;
  margin-top: 12px;
}

.c-card__thumbnail {
  display: block;
  width: 100%;
}

.c-card__desc {
  color: #222;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-top: 12px;
  word-break: break-all;
}

@media (max-width: 1023px) {
  .c-card__desc {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }
}
.c-card--large-size {
  position: absolute;
  top: 0;
  right: 120px;
  bottom: 0;
  width: 940px;
  height: 728px;
  margin: auto 0 auto auto;
  overflow: hidden;
  background: none;
}

@media (max-width: 1660px) {
  .c-card--large-size {
    position: relative;
    height: auto;
    width: 66.1971830986%;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media all and (max-width: 1330px) {
  .c-card--large-size {
    width: calc(100% - 365px);
  }
}
@media (max-width: 1023px) {
  .c-card--large-size {
    position: relative;
    width: 100%;
    margin: 0 auto;
    top: 0;
    right: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.c-card--large-size .c-card__figure {
  margin-top: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.c-card--large-size .c-card__figure img {
  width: 100%;
}

@media (max-width: 1460px) {
  .c-card--large-size .c-card__figure {
    width: 100%;
  }
  .c-card--large-size .c-card__figure img {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .c-card--large-size .c-card__figure {
    border-radius: 12px;
    overflow: hidden;
  }
}
.c-card--large-size .c-card__figure.active {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: -webkit-transform 5s linear;
  transition: -webkit-transform 5s linear;
  transition: transform 5s linear;
  transition: transform 5s linear, -webkit-transform 5s linear;
}

.c-card--large-size .c-card__inner {
  position: absolute;
  top: 0;
  left: 0;
  padding: 16px 24px;
  /* @include large-tablet {
                padding: calc(30 / 940 * 100%);
            } */
}

@media (max-width: 1023px) {
  .c-card--large-size .c-card__inner {
    position: static;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 16px 32px;
  }
}
.c-card--large-size .c-card__caption {
  color: #222;
}

.c-card--large-size .c-card__title-box {
  max-width: 100%;
  border-bottom: 1px solid #888;
}

.c-card--large-size .c-card__title {
  margin-bottom: 11px;
}

.c-card--large-size .c-card__title::after {
  background: url(../assets/images/common/icon_card_arrow_gray_2x.png) no-repeat;
  background-size: contain;
}

.c-card--large-size .c-card__desc {
  position: absolute;
  top: auto;
  bottom: 30px;
  left: 30px;
  right: 30px;
  margin: auto;
  word-break: break-all;
  line-height: 20px;
  /* @include large-tablet {
                left: calc(30 / 940 * 100%);
                right: calc(30 / 940 * 100%);
                bottom: calc(30 / 728 * 100%);
            } */
}

@media (max-width: 1460px) {
  .c-card--large-size .c-card__desc {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 170px;
    word-wrap: break-word;
    word-break: break-word;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 1023px) {
  .c-card--large-size .c-card__desc {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 12px;
  }
}
.c-card--large-size.white .c-card__caption {
  color: #fff;
}

.c-card--large-size.white .c-card__title-box {
  border-bottom: 1px solid #fff;
}

.c-card--large-size.white .c-card__title {
  color: #fff;
}

.c-card--large-size.white .c-card__desc {
  color: #fff;
}

.c-card--large-size.white .c-card__title::after {
  background: url(../assets/images/common/icon_card_arrow_2x_white.png) no-repeat;
  background-size: contain;
}

.c-card--iframe .c-card__title-box {
  border-bottom: none;
}

.c-card--iframe .c-card__title:after {
  display: none;
}

@media (max-width: 1023px) {
  .c-card--iframe {
    overflow-x: scroll;
  }
}
.c-card__stock-wrap {
  position: relative;
  max-width: 100%;
  margin-top: 8px;
  border-bottom: 1px solid #222;
  overflow: hidden;
}

.c-card__stock-wrap--list {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .c-card__stock-wrap--list {
    margin-top: 16px;
  }
}
.c-card__stock-wrap--item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-card__stock-wrap--item + .c-card__stock-wrap--item {
  margin-top: 8px;
}

.c-card__stock-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.c-card__stock-box:after {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(../assets/images/common/icon_card_arrow_2x.png) no-repeat;
  background-size: contain;
}

@media (max-width: 1023px) {
  .c-card__stock-box:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/icon_card_arrow_2x.png) no-repeat;
    background-size: contain;
  }
}
@media (max-width: 1023px) {
  .c-card__stock-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.c-card__stock-index {
  margin-left: 8px;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 1023px) {
  .c-card__stock-index {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
  }
}
.c-card__stock-index--highlight {
  margin-left: 0;
  color: #ec2929;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1023px) {
  .c-card__stock-index--highlight {
    margin-right: auto;
  }
}
.c-card__stock-index--small {
  min-width: 80px;
  max-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .c-card__stock-index--small {
    min-width: 60px;
  }
}
.c-card__stock-index--range {
  min-width: 32px;
  max-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.c-card__stock-detail-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-card__stock-detail-wrap--small {
  margin-left: auto;
}

@media (max-width: 1023px) {
  .c-card__stock-detail-wrap--highlight {
    margin-right: auto;
  }
}
.c-card__stock-icon {
  margin-top: -2px;
  margin-left: 32px;
  width: 16px;
  height: 16px;
}

.c-card__stock-icon--up {
  background: url(../assets/images/common/icon_stock_up.png) no-repeat center center;
  background-size: cover;
}

.c-card__stock-icon--down {
  background: url(../assets/images/common/icon_stock_down.png) no-repeat center center;
  background-size: cover;
}

@media (max-width: 1023px) {
  .c-card__stock-icon {
    margin-left: 0;
  }
}
.c-card__stock-percent {
  margin-left: 8px;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  min-width: 67px;
  max-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .c-card__stock-percent {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
  }
}
.c-card__stock-name {
  min-width: 100px;
  max-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 1023px) {
  .c-card__stock-name {
    min-width: 60px;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
  }
}
.c-card__link {
  display: inline-block;
  position: relative;
  margin-top: 32px;
  padding-right: 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #222;
}

.c-card__link:after {
  content: "";
  position: absolute;
  top: 4.5px;
  bottom: auto;
  right: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(../assets/images/common/icon_card_arrow_type02.png) no-repeat center center;
  background-size: cover;
}

@media (max-width: 1023px) {
  .c-card__link {
    margin-top: 16px;
    font-size: 12px;
    line-height: 18px;
  }
  .c-card__link:after {
    top: 2px;
  }
}
@media (min-width: 1024px) {
  .c-card:hover:not(.except) {
    background: #222;
  }
  .c-card:hover:not(.except) .c-card__caption {
    color: #fff;
  }
  .c-card:hover:not(.except) .c-card__title-box {
    border-bottom: 1px solid #fff;
  }
  .c-card:hover:not(.except) .c-card__title-box--iframe {
    border-bottom: none;
  }
  .c-card:hover:not(.except) .c-card__title {
    color: #fff;
  }
  .c-card:hover:not(.except) .c-card__title:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/icon_card_arrow_2x_white.png) no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1024px) and (max-width: 1023px) {
  .c-card:hover:not(.except) .c-card__title:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/icon_card_arrow_2x_white.png) no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1024px) {
  .c-card:hover:not(.except) .c-card__desc {
    color: #fff;
  }
  .c-card:hover:not(.except) .c-card__stock-wrap {
    border-bottom: 1px solid #fff;
  }
  .c-card:hover:not(.except) .c-card__stock-box:after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/icon_card_arrow_2x_white.png) no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1024px) and (max-width: 1023px) {
  .c-card:hover:not(.except) .c-card__stock-box:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/icon_card_arrow_2x_white.png) no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1024px) {
  .c-card:hover:not(.except) .c-card__stock-index {
    color: #fff;
  }
  .c-card:hover:not(.except) .c-card__stock-index--highlight {
    color: #ec2929;
  }
  .c-card:hover:not(.except) .c-card__stock-name {
    color: #fff;
  }
  .c-card:hover:not(.except) .c-card__stock-percent {
    color: #fff;
  }
  .c-card:hover:not(.except) .c-card__link {
    color: #666;
  }
  .c-card:hover:not(.except) .c-card__link:after {
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/icon_card_arrow_type02_white.png) no-repeat center center;
    background-size: cover;
  }
  .c-card--type02:hover .c-card__title-box {
    border-bottom: none !important;
  }
}
.c-banner {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 1460px) {
  .c-banner {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .c-banner {
    margin: 0;
    padding: 0;
  }
}
.c-banner__figure {
  width: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.c-banner__figure img {
  width: 100%;
}

@media (max-width: 1023px) {
  .c-banner__figure {
    border: none;
    border-radius: 0;
  }
}
.c-banner__img {
  width: 100%;
}

.c-banner__text {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 100%;
  height: 100%;
  padding: 0 40px 0 40px;
}

@media (max-width: 1660px) {
  .c-banner__text {
    margin: auto;
    padding: 0 2.8169014085% 0 2.8169014085%;
  }
}
@media (max-width: 1023px) {
  .c-banner__text {
    padding: 24px 32px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
  }
}
.c-banner__title {
  width: 100%;
  color: #222;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
}

@media (max-width: 1023px) {
  .c-banner__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
  }
}
@media (max-width: 320px) {
  .c-banner__title {
    font-size: 18px;
  }
}
.c-banner__check {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  padding-right: 12px;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.c-banner__check:after {
  content: ">";
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1023px) {
  .c-banner__check {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
  }
}
@media (max-width: 320px) {
  .c-banner__check {
    margin-top: 10px;
    font-size: 14px;
  }
}
.ie-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

@media (max-width: 1023px) {
  .ie-cover {
    display: none;
  }
}
.ie-cover__img {
  display: block;
  width: 100%;
  height: 100vh;
}

.not-ie .ie-cover {
  display: none;
}

.c-masonry {
  max-width: 1460px;
  padding: 0 20px;
}

@media (max-width: 1023px) {
  .c-masonry {
    padding: 0 16px;
  }
}
.c-masonry .grid {
  width: 100%;
}

.c-masonry .grid-sizer {
  width: calc(33.1% - 10px);
}

@media (max-width: 1460px) {
  .c-masonry .grid-sizer {
    width: calc(33.1% - 11.5px);
  }
}
@media (max-width: 1200px) {
  .c-masonry .grid-sizer {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1023px) {
  .c-masonry .grid-sizer {
    width: 100%;
  }
}
.c-masonry .grid-item {
  width: calc(33.1% - 10px);
  font-size: 0;
  margin-top: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

@media (max-width: 1460px) {
  .c-masonry .grid-item {
    width: calc(33.1% - 11.5px);
  }
}
@media (max-width: 1200px) {
  .c-masonry .grid-item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1023px) {
  .c-masonry .grid-item {
    width: 100%;
    margin-top: 10px;
  }
}
.c-masonry .grid-item.load-active {
  -webkit-animation: gridItemShow 0.5s ease-in-out both;
  animation: gridItemShow 0.5s ease-in-out both;
}

@-webkit-keyframes gridItemShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gridItemShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-masonry .grid-item.active {
  -webkit-animation: gridItemFadeIn 0.5s ease-in-out both;
  animation: gridItemFadeIn 0.5s ease-in-out both;
}

@-webkit-keyframes gridItemFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gridItemFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-masonry .grid-item-img {
  display: block;
  width: 100%;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 1460px) {
  .c-btn {
    margin-top: 16px;
  }
}
.c-btn--more {
  margin-top: 60px;
}

@media (max-width: 1023px) {
  .c-btn--more {
    margin-top: 10px;
  }
}
.c-btn__link {
  position: relative;
  display: inline-block;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  padding-right: 24px;
  line-height: 28px;
}

@media (max-width: 1460px) {
  .c-btn__link {
    font-size: 14px;
  }
}
.c-btn__link::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
  right: 0;
  background: url("../assets/images/common/icon_more_arrow_down_2x.png") no-repeat;
  background-size: cover;
  display: block;
}

.c-btn--window-popup {
  display: inline-block;
  position: relative;
  margin-top: 62px;
  padding-bottom: 1px;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #222;
}

.c-btn--window-popup:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #222;
}

@media (max-width: 1023px) {
  .c-btn--window-popup {
    margin: 40px 0 16px 24px;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
  }
}
.cover-mo {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.active .cover-mo {
  opacity: 1;
}

.dim {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--user-window-inner-height);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dim {
    height: 100vh;
  }
}
.dim--blur {
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.c-footer {
  width: 100%;
}

@media (max-width: 1023px) {
  .c-footer {
    border-top: 1px solid #222;
  }
}
.c-footer--inner {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

:lang(en) .c-footer--inner .c-footer__bottom,
:lang(jp) .c-footer--inner .c-footer__bottom,
:lang(zh) .c-footer--inner .c-footer__bottom,
:lang(id) .c-footer--inner .c-footer__bottom {
  margin-top: -77px;
}

@media (max-width: 1023px) {
  .c-footer--inner {
    width: 100%;
    margin: 0;
    padding: 24px;
    max-width: 100%;
  }
  :lang(en) .c-footer--inner .c-footer__bottom,
  :lang(jp) .c-footer--inner .c-footer__bottom,
  :lang(zh) .c-footer--inner .c-footer__bottom,
  :lang(id) .c-footer--inner .c-footer__bottom {
    margin-top: 0;
  }
}
.c-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-top: 1px solid #222;
  padding-top: 24px;
}

:lang(ko) .c-footer__top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .c-footer__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: none;
    padding-top: 0;
  }
}
.c-footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-footer__menu ul li + li {
  margin-left: 40px;
}

@media (max-width: 1023px) {
  .c-footer__menu ul li + li {
    margin-left: 0;
    margin-top: 12px;
  }
}
.c-footer__menu ul li a {
  font-weight: 500;
  color: #222;
  line-height: 52px;
}

.c-footer__menu ul li:first-child a {
  color: #034ea2;
}

.c-footer__menu ul li:last-child a {
  font-weight: 700;
}

@media (max-width: 1023px) {
  .c-footer__menu ul li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
  }
}
@media (max-width: 1023px) {
  .c-footer__menu ul li {
    width: calc((100% - 8px) / 2);
  }
  .c-footer__menu ul li:nth-child(even) {
    margin-left: 8px;
  }
}
.c-footer__menu ul li:nth-child(1),
.c-footer__menu ul li:nth-child(2) {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .c-footer__menu ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  .c-footer__menu {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .c-footer__sitemap {
    width: 100%;
    margin-top: 24px;
  }
}
.c-footer__sitemap .select-row {
  position: relative;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  color: #666;
}

.c-footer__sitemap .select-row .select {
  display: block;
  color: #222;
  width: 239px;
  background: url(../assets/images/common/icon_plus.png) center right 24px no-repeat;
  background-size: 16px 16px;
  padding: 0 24px;
  cursor: pointer;
  border-bottom: 1px solid #222;
}

.c-footer__sitemap .select-row .select .selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.c-footer__sitemap .select-row .select .selected .selected-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 700;
  line-height: 52px;
  color: #222;
}

.c-footer__sitemap .select-row .select .selected .selected-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 700;
  line-height: 52px;
  color: #222;
}

.c-footer__sitemap .select-row .select .selected .selected-value.active {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

@media (max-width: 1023px) {
  .c-footer__sitemap .select-row .select .selected .selected-item {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
  }
  .c-footer__sitemap .select-row .select .selected .selected-value {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
  }
}
.c-footer__sitemap .select-row .select .select-list {
  display: none;
  z-index: 2;
  position: absolute;
  top: -300px;
  left: 0;
  z-index: 100;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  line-height: 28px;
  padding: 16px 0;
}

.c-footer__sitemap .select-row .select .select-list .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 24px;
  background: #fff;
  cursor: pointer;
}

.c-footer__sitemap .select-row .select .select-list .option a {
  font-size: 16px;
  color: #666;
  font-weight: 300;
}

.c-footer__sitemap .select-row .select .select-list .option + .option {
  margin-top: 16px;
}

.c-footer__sitemap .select-row .select .select-list .option:hover a {
  font-weight: 700;
  color: #222;
}

@media (max-width: 1023px) {
  .c-footer__sitemap .select-row .select {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 52px;
    padding: 0 56px 0 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    background: url("../assets/images/common/icon_plus_2x.png") center right 24px no-repeat;
    background-size: 16px 16px;
  }
}
.c-footer__sitemap .select-row.active .select-list {
  display: block;
}

.c-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 24px;
}

@media (max-width: 1023px) {
  .c-footer__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 24px;
  }
}
.c-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-footer__sns a {
  display: block;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
}

.c-footer__sns a + a {
  margin-left: 10px;
}

.c-footer__sns a.facebook {
  background: url("../assets/images/common/icon_facebook.png") center center no-repeat;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .c-footer__sns a.facebook {
    background: url("../assets/images/common/icon_facebook_2x.png") center center no-repeat;
    width: 36px;
    height: 36px;
    background-size: cover;
  }
}
.c-footer__sns a.instagram {
  background: url("../assets/images/common/icon_instagram.png") center center no-repeat;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .c-footer__sns a.instagram {
    background: url("../assets/images/common/icon_instagram_2x.png") center center no-repeat;
    width: 36px;
    height: 36px;
    background-size: cover;
  }
}
.c-footer__sns a.youtube {
  background: url("../assets/images/common/icon_youtube.png") center center no-repeat;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .c-footer__sns a.youtube {
    background: url("../assets/images/common/icon_youtube_2x.png") center center no-repeat;
    width: 36px;
    height: 36px;
    background-size: cover;
  }
}
.c-footer__sns a.blog {
  background: url("../assets/images/common/icon_blog.png") center center no-repeat;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .c-footer__sns a.blog {
    background: url("../assets/images/common/icon_blog_2x.png") center center no-repeat;
    width: 36px;
    height: 36px;
    background-size: cover;
  }
}
.c-footer__sns a.post {
  background: url("../assets/images/common/icon_post.png") center center no-repeat;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .c-footer__sns a.post {
    background: url("../assets/images/common/icon_post_2x.png") center center no-repeat;
    width: 36px;
    height: 36px;
    background-size: cover;
  }
}
@media (max-width: 1023px) {
  .c-footer__sns {
    margin-top: 24px;
  }
}
@media (max-width: 1023px) {
  .c-footer__copy {
    width: 100%;
  }
}
.c-footer__copy p {
  color: #666;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}

@media (max-width: 1023px) {
  .c-footer__copy p {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
  }
}
/* common content */
.main:not(.not-ie) .sticky-elem {
  position: relative;
  top: 0;
}

.c-iframe--main {
  display: block;
  position: relative;
  width: 1px;
  min-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.c-iframe--main:hover {
  background-color: #222;
}

@media (max-width: 1023px) {
  .c-iframe--main {
    border-radius: 8px;
  }
}
.c-iframe--sub {
  display: block;
  position: relative;
  top: -10px;
  width: 1px;
  min-width: 100%;
}

@media all and (max-width: 1323px) {
  .c-iframe--sub {
    top: 0;
  }
}
@media (max-width: 1023px) {
  .c-iframe--sub {
    top: 15px;
  }
}
.c-iframe-stock {
  width: 1px;
  min-width: 100%;
  display: block;
}

/* 공통 scroll motion s */
.scroll-visible {
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.scroll-visible.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* 공통 scroll motion e */
.sub {
  margin-top: 88px;
  padding: 0 120px 160px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub {
    margin-top: 60px;
    padding: 0 24px 80px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .bread-crumb {
    display: none;
  }
}
.sub .contents .bread-crumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub .contents .bread-crumb ol li {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  color: #666;
}

.sub .contents .bread-crumb ol li a {
  font-size: 14px;
  font-weight: 300;
  color: #666;
}

.sub .contents .bread-crumb ol li + li {
  margin-left: 20px;
}

.sub .contents .bread-crumb ol li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  display: block;
  width: 5px;
  height: 9px;
  background: url("/kor/images/sub/pc/icon_arrow.png") no-repeat;
  background-size: 5px 9px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sub .contents .sub-visual {
  background: #fff;
}

.sub .contents .sub-visual .inner {
  margin: 0 auto;
  padding: 24px 0 80px;
  max-width: 1420px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-visual .inner {
    max-width: 100%;
    padding: 48px 0;
  }
}
.sub .contents .sub-visual .inner .visual-txt .page-title {
  font-size: 36px;
  line-height: 60px;
  font-weight: 700;
  padding-top: 110px;
  color: #222;
}

@media (max-width: 1023px) {
  .sub .contents .sub-visual .inner .visual-txt .page-title {
    font-size: 24px;
    line-height: 36px;
    white-space: normal;
    padding-top: 0;
  }
}
.sub .contents .sub-visual .inner .visual-txt .page-desc {
  font-size: 18px;
  font-weight: 300;
  color: #222;
  margin-top: 16px;
  line-height: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-visual .inner .visual-txt .page-desc {
    font-size: 14px;
    line-height: 22px;
    margin-top: 16px;
  }
}
.sub .contents .sub-visual .inner .visual-txt .search-area {
  width: 100%;
}

.sub .contents .sub-visual .inner .visual-txt .search-area .search-title {
  color: #222;
  font-size: 36px;
  font-weight: 300;
  line-height: 60px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-visual .inner .visual-txt .search-area .search-title {
    color: #222;
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
  }
}
.sub .contents .sub-visual .inner .visual-txt .search-area .search-title span {
  font-weight: 700;
}

.sub .contents .sub-visual .inner .visual-txt .search-area .search-util {
  display: none;
  -ms-flex-preferred-size: 1;
  flex-basis: 1;
  position: relative;
  z-index: 1;
  height: 64px;
  margin-top: 40px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 100px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  overflow: hidden;
  /* input box color */
}

@media (max-width: 1023px) {
  .sub .contents .sub-visual .inner .visual-txt .search-area .search-util {
    margin-top: 24px;
    height: 48px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sub .contents .sub-visual .inner .visual-txt .search-area .search-util {
    border-radius: 0px;
  }
}
.sub .contents .sub-visual .inner .visual-txt .search-area .search-util .search-open-btn {
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: url(../assets/images/common/icon_search.png) no-repeat left center;
  background-size: contain;
  text-indent: -9999px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-visual .inner .visual-txt .search-area .search-util .search-open-btn {
    top: 0;
    left: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    width: 48px;
    height: 48px;
    background: url(../assets/images/common/icon_search_mo.png) no-repeat center center;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-visual .inner .visual-txt .search-area .search-util .search-input {
  width: 100%;
  height: 100%;
  padding: 8px 16px 8px 56px;
  font-family: KBFG Text;
  font-size: 22px;
  font-weight: 700;
  line-height: 18px;
  color: #222;
  border: none;
}

@media (max-width: 1023px) {
  .sub .contents .sub-visual .inner .visual-txt .search-area .search-util .search-input {
    padding: 8px 26px 8px 40px;
    font-size: 15px;
  }
}
.sub .contents .sub-visual .inner .visual-txt .search-area .search-util .search-input:focus {
  outline: none;
}

.sub .contents .sub-visual .inner .visual-txt .search-area .search-util input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
  -webkit-text-fill-color: #222;
}

.sub .contents .sub-visual .inner .visual-txt .search-area .search-util input:-webkit-autofill,
.sub .contents .sub-visual .inner .visual-txt .search-area .search-util input:-webkit-autofill:hover,
.sub .contents .sub-visual .inner .visual-txt .search-area .search-util input:-webkit-autofill:focus,
.sub .contents .sub-visual .inner .visual-txt .search-area .search-util input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.sub .contents .sub-visual .inner .visual-txt .search-area .search-util .search-close-btn {
  position: absolute;
  top: 50%;
  right: 16px;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../assets/images/common/icon_search_close.png) no-repeat right center;
  background-size: contain;
  text-indent: -9999px;
}

.key-class-list-global .lnb-area {
  margin-bottom: 0 !important;
}

.sub .contents .lnb-area.fixed .lnb-box {
  position: fixed;
  left: 20px;
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  -webkit-transition: margin-top 0.32s;
  transition: margin-top 0.32s;
}

.sub .contents .lnb-area .lnb-box {
  margin: 0 auto;
  max-width: 1420px;
  background: #fff;
  z-index: 100;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.sub .contents .lnb-area .lnb-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1420px;
  white-space: nowrap;
  overflow-y: auto;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

@media (max-width: 1023px) {
  .sub .contents .lnb-area .lnb-box ul {
    max-width: auto;
  }
  .sub .contents .lnb-area .lnb-box ul::-webkit-scrollbar {
    display: none;
  }
}
.sub .contents .lnb-area .lnb-box ul li a {
  display: block;
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 26px;
}

.sub .contents .lnb-area .lnb-box ul li a:hover {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .sub .contents .lnb-area .lnb-box ul li a {
    min-width: auto;
    font-size: 16px;
    padding: 4px 8px;
    line-height: 24px;
    word-break: break-all;
  }
}
.sub .contents .lnb-area .lnb-box ul li + li {
  margin-left: 20px;
}

@media (max-width: 1023px) {
  .sub .contents .lnb-area .lnb-box ul li {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .sub .contents .lnb-area .lnb-box ul li + li {
    margin-left: 8px;
  }
}
.sub .contents .lnb-area .lnb-box ul li.on a {
  font-weight: 500;
  color: #222;
  border-bottom: 1px solid #222;
}

@media (max-width: 1023px) {
  .sub .contents .lnb-area .lnb-box--price-info ul li a {
    padding: 8px;
    line-height: 22px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .lnb-area .lnb-box--price-info ul li + li {
    margin-left: 0;
  }
}
.sub .contents .lnb-area + .cont-area {
  padding: 0;
}

@media (max-width: 1023px) {
  .sub .contents .lnb-area + .cont-area {
    padding: 0;
    width: 100%;
  }
}
.sub .contents .lnb-area + .cont-area .c-masonry {
  margin-top: -20px;
}

@media (max-width: 1023px) {
  .sub .contents .lnb-area + .cont-area .c-masonry {
    margin-top: -10px;
  }
}
.sub .contents .lnb-area + .board-area {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .lnb-area + .board-area {
    margin-top: 48px;
  }
}
.sub .contents .sub-page {
  margin: 0 auto;
  max-width: 1420px;
  min-height: 330px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page {
    max-width: 100%;
  }
}
.sub .contents .sub-page .cont-area .state-area {
  margin-bottom: 80px;
}

.sub .contents .sub-page .cont-area .state-area .year-info {
  margin-top: 16px;
  text-align: right;
  font-size: 16px;
  color: #666;
  line-height: 26px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .state-area .year-info {
    font-size: 16px;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .state-area .year-info .icon-star {
  color: #f00;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .state-area {
    margin-bottom: 60px;
  }
}
.sub .contents .sub-page .cont-area .state-area .tit {
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .state-area .tit {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
  }
}
.sub .contents .sub-page .cont-area .state-area table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  margin-top: 16px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .state-area table {
    margin-top: 16px;
  }
}
.sub .contents .sub-page .cont-area .state-area table tr th {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  border-right: 1px solid #ddd;
  background: #f7f7f7;
  height: 52px;
  line-height: 52px;
}

.sub .contents .sub-page .cont-area .state-area table tr th:last-child {
  border-right: none;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .state-area table tr th {
    background: #f7f7f7;
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    font-weight: 300;
  }
}
.sub .contents .sub-page .cont-area .state-area table tr td {
  color: #222;
  font-size: 16px;
  border-right: 1px solid #ddd;
  text-align: center;
  height: 52px;
  line-height: 52px;
  padding: 0 10px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .state-area table tr td:first-child {
    text-align: center;
    background: #f7f7f7;
    font-weight: 700;
    font-size: 16px;
  }
}
.sub .contents .sub-page .cont-area .state-area table tr td:last-child {
  border-right: none;
  border-bottom: none;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .state-area table tr td:last-child {
    border-bottom: 1px solid #f2f2f2;
  }
}
.sub .contents .sub-page .cont-area .state-area table tr td .icon-star {
  color: #d30000;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .state-area table tr td {
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    font-weight: 300;
    border-right: none;
    border-bottom: 1px solid #f2f2f2;
  }
}
.sub .contents .sub-page .cont-area .state-area + .board-area .search-area .search-inner {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sub .contents .sub-page .cont-area .info-area {
  position: relative;
  margin-bottom: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .info-area {
    margin-bottom: 60px;
  }
}
.sub .contents .sub-page .cont-area .info-area .l-cont p {
  color: #222;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .info-area .l-cont p {
    font-size: 18px;
    line-height: 28px;
  }
}
.sub .contents .sub-page .cont-area .info-area .l-cont span {
  display: block;
  margin-top: 24px;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .info-area .l-cont span {
    font-size: 16px;
    line-height: 26px;
    margin-top: 8px;
  }
}
.sub .contents .sub-page .cont-area .info-area .r-cont {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .info-area .r-cont {
    position: static;
    margin-top: 24px;
  }
}
:lang(jp) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-down > a span,
:lang(zh) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-down > a span {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background: url(../assets/images/common/pc/icon_clip.png) no-repeat right top 15px;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  :lang(jp) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-down > a span,
  :lang(zh) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-down > a span {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: url(../assets/images/common/pc/icon_clip.png) no-repeat right top 13px;
    background-size: 16px 16px;
  }
}
:lang(jp) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-down > a:hover span,
:lang(zh) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-down > a:hover span {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background: url(../assets/images/common/pc/icon_clip_white.png) no-repeat right top 15px;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  :lang(jp) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-down > a:hover span,
  :lang(zh) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-down > a:hover span {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: url(../assets/images/common/pc/icon_clip.png) no-repeat right top 13px;
    background-size: 16px 16px;
  }
}
:lang(jp) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-outlink > a span,
:lang(zh) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-outlink > a span {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background: url(../assets/images/common/pc/icon_outlink_16.svg) no-repeat right top 15px;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  :lang(jp) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-outlink > a span,
  :lang(zh) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-outlink > a span {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: url(../assets/images/common/pc/icon_outlink_16.svg) no-repeat right top 13px;
    background-size: 16px 16px;
  }
}
:lang(jp) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-outlink > a:hover span,
:lang(zh) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-outlink > a:hover span {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background: url(../assets/images/common/pc/icon_outlink_white_16.svg) no-repeat right top 15px;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  :lang(jp) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-outlink > a:hover span,
  :lang(zh) .sub .contents .sub-page .cont-area .info-area .r-cont .btn-area.type-outlink > a:hover span {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: url(../assets/images/common/pc/icon_outlink_16.svg) no-repeat right top 13px;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .info-area .r-cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .info-area .r-cont ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.sub .contents .sub-page .cont-area .info-area .r-cont ul li a {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 44px;
  min-width: 120px;
  height: 44px;
  padding: 0 24px;
  border: 1px solid #222;
  border-radius: 28px;
  text-align: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .info-area .r-cont ul li a {
    min-width: auto;
  }
}
.sub .contents .sub-page .cont-area .info-area .r-cont ul li a span {
  padding-right: 24px;
}

.sub .contents .sub-page .cont-area .info-area .r-cont ul li a.btn-down span {
  background: url("/kor/images/sub/pc/icon_clip.png") center right no-repeat;
  background-size: 16px 16px;
  font-size: 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .info-area .r-cont ul li a.btn-down span {
    background: url("/kor/images/sub/mo/icon_clip.png") center right no-repeat;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .info-area .r-cont ul li a.btn-view span {
  background: url("/kor/images/sub/pc/icon_link.png") center right no-repeat;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .info-area .r-cont ul li a.btn-view span {
    background: url("/kor/images/sub/mo/icon_link.png") center right no-repeat;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .info-area .r-cont ul li + li {
  margin-left: 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area + .bottom-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area + .bottom-area .pagination-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sub .contents .sub-page .cont-area .board-area .table-tit ~ .table-tit {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-tit {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    margin-top: 24px;
    text-align: left;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-tit .date {
  display: block;
  margin-left: 16px;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-tit .date {
    margin-left: 0;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    margin-top: 4px;
    color: #666;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap {
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap {
    margin-top: 8px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-head li .col {
  text-align: center;
  font-size: 14px;
  color: #222;
  padding: 18px 16px;
  background: #f7f7f7;
  font-weight: 700;
  line-height: 24px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-head li .col:first-child {
  width: 160px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-head li .col:first-child + .col {
  width: calc(100% - 460px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-head li .col:first-child + .col + .col {
  width: 300px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body .error-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 96px 0;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body .error-msg {
    padding: 80px 0;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li {
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col {
    text-overflow: clip !important;
    white-space: normal !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col:first-child {
  width: 160px;
  font-weight: 300;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col:first-child + .col {
  width: calc(100% - 460px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col:first-child + .col a {
  font-weight: 500 !important;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col:first-child + .col + .col {
  width: 300px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col a {
  font-weight: 300;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col a {
    text-overflow: clip !important;
    white-space: normal !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col a .bedge {
  position: relative;
  top: -2px;
  right: -4px;
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ffbc11;
  border-radius: 50%;
  vertical-align: super;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a {
  font-weight: 300;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a span {
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a {
    font-size: 16px;
    line-height: 26px;
    color: #222;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a + a {
  display: block;
  margin-left: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a + a {
    margin-left: 16px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
  background: url("/kor/images/sub/pc/icon_clip.png") no-repeat right top 4px;
  background-size: 16px 16px;
}

:lang(jp) .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-down,
:lang(zh) .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-down {
  background: url("/kor/images/sub/pc/icon_clip.png") no-repeat right top 6px;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-down {
    padding-right: 20px;
    background: url("/kor/images/sub/mo/icon_clip.png") no-repeat right top 4px;
    background-size: 16px 16px;
    font-size: 16px;
    line-height: 26px;
  }
  :lang(jp) .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-down,
  :lang(zh) .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-down {
    background: url("/kor/images/sub/pc/icon_clip.png") no-repeat right top 6px;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 24px;
  background: url("../assets/images/common/pc/icon_outlink_16.svg") no-repeat right top 4px;
  background-size: 16px 16px;
}

:lang(jp) .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-link,
:lang(zh) .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-link {
  background: url("../assets/images/common/pc/icon_outlink_16.svg") no-repeat right top 6px;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-link {
    padding-right: 20px;
    background: url("../assets/images/common/pc/icon_outlink_16.svg") no-repeat right top 4px;
    background-size: 16px 16px;
    font-size: 16px;
    line-height: 26px;
  }
  :lang(jp) .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-link,
  :lang(zh) .sub .contents .sub-page .cont-area .board-area .table-wrap .table-body li .col .file-area a.btn-link {
    background: url("../assets/images/common/pc/icon_outlink_16.svg") no-repeat right top 6px;
    background-size: 16px 16px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-head {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  line-height: 26px;
  background: #f7f7f7;
  font-weight: 700;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-head li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-head li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-head li .col:first-child + .col {
  width: calc(100% - 460px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-head li .col:first-child + .col + .col {
  width: 300px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li {
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  line-height: 26px;
  padding: 12px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col {
    padding: 16px 10px;
    text-overflow: clip !important;
    white-space: normal !important;
    overflow: auto !important;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col:first-child + .col {
  width: calc(100% - 460px);
  text-align: left;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col:first-child + .col {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    padding: 16px 0 0 0;
    font-weight: 500;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col:first-child + .col + .col {
  width: 300px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col:first-child + .col + .col {
    width: 100%;
    padding: 10px 0 16px 0;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col .file-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3 .table-body li .col .file-area {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3.investor .table-head li .col:first-child + .col,
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3.investor .table-body li .col:first-child + .col {
  width: calc(100% - 570px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3.investor .table-head li .col:first-child + .col + .col,
.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.col3.investor
  .table-body
  li
  .col:first-child
  + .col
  + .col {
  width: 410px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3.investor .table-body li .col:first-child + .col {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-head {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-head li .col {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  padding: 12px 16px;
  background: #f7f7f7;
  font-weight: 700;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-head li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-head li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-head li .col:first-child + .col {
  width: calc(100% - 400px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-head li .col:first-child + .col + .col {
  width: 240px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li {
    height: auto;
    display: block;
    padding: 16px 0;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  padding: 12px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col {
    padding: 16px 10px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col:first-child + .col {
  width: calc(100% - 400px);
  text-align: left;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col:first-child + .col {
    width: 100%;
    font-size: 16px;
    padding: 0;
    line-height: 26px;
    font-weight: 500;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col:first-child + .col a {
  font-weight: 500;
  color: #222;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col:first-child + .col a {
    font-size: 16px;
    line-height: 26px;
    padding: 0;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col:first-child + .col + .col {
  width: 240px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col3-type-02
    .table-body
    li
    .col:first-child
    + .col
    + .col {
    width: 100%;
    text-align: left;
    padding: 0;
    font-size: 14px;
    margin-top: 10px;
    color: #666;
    line-height: 24px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-02 .table-body li .col .file-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-head {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  background: #f7f7f7;
  font-weight: 700;
  line-height: 26px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-head li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-head li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-head li .col:first-child + .col {
  width: calc(100% - 380px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-head li .col:first-child + .col + .col {
  width: 220px;
  padding-left: 0;
  padding-right: 30px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li {
    height: auto;
    padding-bottom: 16px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col {
    padding: 16px 10px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col:first-child + .col {
  width: calc(100% - 400px);
  text-align: left;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col:first-child + .col {
    width: 100%;
    font-size: 16px;
    padding: 16px 0 0 0;
    font-weight: 500;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col:first-child + .col a {
  color: #222;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col:first-child + .col a {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col:first-child + .col + .col {
  width: 240px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col3-type-03
    .table-body
    li
    .col:first-child
    + .col
    + .col {
    width: 100%;
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    margin-top: 0;
    color: #222;
    padding: 10px 0 0 0;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col .file-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-03 .table-body li .col .file-area {
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 {
    margin-top: 48px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-head {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  background: #f7f7f7;
  font-weight: 700;
  line-height: 26px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-head li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-head li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-head li .col:first-child + .col {
  width: calc(100% - 380px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-head li .col:first-child + .col + .col {
  width: 220px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li {
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  line-height: 26px;
  padding: 12px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col {
    padding: 16px 10px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col:first-child + .col {
  width: calc(100% - 380px);
  text-align: left;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col:first-child + .col {
    width: 100%;
    font-size: 16px;
    padding: 16px 0 0 0;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col:first-child + .col + .col {
  width: 220px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col3-type-04
    .table-body
    li
    .col:first-child
    + .col
    + .col {
    width: 100%;
    padding: 10px 0 16px 0;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col .file-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-04 .table-body li .col .file-area {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-head {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  background: #f7f7f7;
  font-weight: 700;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-head li .col {
    line-height: 18px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-head li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-head li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-head li .col:first-child + .col {
  width: calc(100% - 400px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-head li .col:first-child + .col + .col {
  width: 240px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li {
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  text-overflow: ellipsis;
  line-height: 26px;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li .col {
    padding: 16px 0 0 0;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li .col:first-child {
  width: 160px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li .col:first-child + .col {
  width: calc(100% - 380px);
  text-align: left;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li .col:first-child + .col {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li .col:first-child + .col + .col {
  width: 220px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col3-type-05
    .table-body
    li
    .col:first-child
    + .col
    + .col {
    font-size: 14px;
    line-height: 24px;
    width: 100%;
    text-align: left;
    padding: 10px 0 16px 0;
    color: #666;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col3-type-05 .table-body li .col .file-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-head {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 10px;
  line-height: 26px;
  background: #f7f7f7;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-head li .col:first-child {
  width: 160px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-head li .col:first-child + .col {
  width: calc(100% - 700px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-head li .col:first-child + .col + .col {
  width: 300px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-head li .col:first-child + .col + .col + .col {
  width: 240px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li {
    display: block;
    padding: 16px 10px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 10px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col {
    padding: 0;
    text-align: left;
    text-overflow: clip;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col:first-child {
  width: 160px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col:first-child + .col {
  width: calc(100% - 700px);
  text-align: left;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col:first-child + .col {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col:first-child + .col a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col:first-child + .col + .col {
  width: 300px;
  padding-right: 20px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col:first-child + .col + .col {
    width: 100%;
    text-align: left;
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
  }
  :lang(jp)
    .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col4
    .table-body
    li
    .col:first-child
    + .col
    + .col,
  :lang(zh)
    .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col4
    .table-body
    li
    .col:first-child
    + .col
    + .col {
    font-size: 14px;
    line-height: 24px;
    color: #666;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4 .table-body li .col:first-child + .col + .col + .col {
  width: 180px;
  width: 240px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col4
    .table-body
    li
    .col:first-child
    + .col
    + .col
    + .col {
    width: 100%;
    font-size: 14px;
    color: #666;
    width: auto;
    margin-top: 10px;
    line-height: 24px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-head {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 10px;
  line-height: 26px;
  background: #f7f7f7;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-head li .col:first-child {
  width: 160px;
  font-weight: 700;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-head li .col:first-child + .col {
  width: calc(100% - 700px);
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-head li .col:first-child + .col + .col {
  width: 240px;
}

.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.col4-type-02
  .table-head
  li
  .col:first-child
  + .col
  + .col
  + .col {
  width: 300px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li {
    padding: 16px 0;
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 10px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col {
    padding: 0;
    text-align: left;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col:first-child {
  width: 160px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col:first-child + .col {
  width: calc(100% - 700px);
  text-align: left;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col:first-child + .col {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #222;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col:first-child + .col a {
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col:first-child + .col a {
    font-size: 12px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.col4-type-02 .table-body li .col:first-child + .col + .col {
  width: 240px;
  padding-right: 20px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col4-type-02
    .table-body
    li
    .col:first-child
    + .col
    + .col {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    width: auto;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.col4-type-02
  .table-body
  li
  .col:first-child
  + .col
  + .col
  + .col {
  width: 180px;
  width: 300px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.col4-type-02
    .table-body
    li
    .col:first-child
    + .col
    + .col
    + .col {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    color: #222;
    width: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col {
  text-align: center;
  font-size: 14px;
  color: #222;
  padding: 18px 16px;
  background: #f7f7f7;
  font-weight: 700;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child {
  width: 180px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child + .col {
  width: 240px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child + .col {
    width: 60%;
    padding: 16px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child + .col + .col {
  width: calc(100% - 600px);
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child + .col + .col {
    width: 40%;
    padding: 16px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.manage
  .table-head
  li
  .col:first-child
  + .col
  + .col
  + .col {
  width: 180px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li {
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 16px 16px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 300;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .dot-list {
  margin-top: 0;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child {
  width: 180px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child + .col {
  width: 240px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child + .col {
    width: 60%;
    padding: 16px 8px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child + .col + .col {
  width: calc(100% - 600px);
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child + .col + .col {
    width: 40%;
    padding: 16px 0;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.manage
  .table-body
  li
  .col:first-child
  + .col
  + .col
  + .col {
  width: 180px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .dot-list li {
  position: relative;
  border-top: none;
  padding-left: 14px;
  line-height: 24px;
  font-size: 16px;
  color: #666;
  font-weight: 300;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .dot-list li + li {
  margin-top: 4px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .dot-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  background: #222;
  border-radius: 50%;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .icon-new {
  display: inline-block;
  margin: -2px 0 0 11px;
  vertical-align: middle;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .date {
  font-weight: 300;
  color: #666;
  font-size: 14px;
  line-height: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list {
    margin-top: 13px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item + .info-item {
    margin-top: 16px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl + dl {
    border-top: 1px solid #f2f2f2;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dt {
    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;
    width: 26.5%;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    background: #f7f7f7;
    text-align: center;
    color: #222;
    padding: 10px 16px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 73.5%;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #222;
    padding: 10px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dd .dot-list li {
    position: relative;
    border-top: none;
    padding-left: 14px;
    line-height: 22px;
    font-size: 14px;
    color: #222;
    font-weight: 300;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dd .dot-list li + li {
    margin-top: 0;
  }
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.manage
    + .info-list
    .info-item
    dl
    dd
    .dot-list
    li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 4px;
    height: 4px;
    background: #222;
    border-radius: 50%;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution {
    margin-top: 16px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  line-height: 26px;
  background: #f7f7f7;
  font-weight: 700;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head li .col:first-child {
  width: 120px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head li .col:first-child {
    display: block;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head li .col:first-child + .col {
  width: calc(100% - 240px);
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head li .col:first-child + .col {
    width: 60%;
    padding: 16px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head li .col:first-child + .col + .col {
  width: 120px;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-head li .col:first-child + .col + .col {
    width: 40%;
    padding: 16px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li {
    display: block;
    padding: 16px;
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 10px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col {
    padding: 0 !important;
    width: 100% !important;
    text-align: left;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col:first-child {
  width: 120px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col:first-child {
    display: block;
    font-size: 16px;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col:first-child + .col {
  width: calc(100% - 240px);
  padding: 0 10px;
  text-align: left;
  font-weight: 500;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col:first-child + .col a {
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col:first-child + .col {
    width: 100% !important;
    margin: 0 0 8px 0;
    text-overflow: unset;
    white-space: normal;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col:first-child + .col + .col {
  width: 120px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col:first-child + .col + .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100% !important;
    font-size: 16px;
    line-height: 26px;
  }
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.resolution
    .table-body
    li
    .col:first-child
    + .col
    + .col
    .hidden-p {
    position: relative;
    margin-right: 17px;
    color: #666;
    font-weight: 500;
  }
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.resolution
    .table-body
    li
    .col:first-child
    + .col
    + .col
    .hidden-p::after {
    content: "";
    position: absolute;
    top: 3px;
    right: -8px;
    display: block;
    background: #888;
    width: 1px;
    height: 10px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col .icon-new {
  display: inline-block;
  margin: -2px 0 0 11px;
  vertical-align: middle;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.resolution .table-body li .col .date {
  font-weight: 300;
  color: #666;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  background: #f7f7f7;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 26px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-head li .col:first-child {
  width: 16%;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-head li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-head li .col:first-child + .col {
  width: 12%;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-head li .col:first-child + .col {
    width: 60%;
    padding: 16px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-head li .col:first-child + .col + .col {
  width: 26%;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-head li .col:first-child + .col + .col {
    width: 40%;
    padding: 16px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.appoint
  .table-head
  li
  .col:first-child
  + .col
  + .col
  + .col {
  width: 26%;
}

.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.appoint
  .table-head
  li
  .col:first-child
  + .col
  + .col
  + .col
  + .col {
  width: 20%;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 52px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li {
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 300;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col:first-child {
  width: 16%;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col:first-child + .col {
  width: 12%;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col:first-child + .col {
    width: 60%;
    padding: 16px 8px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col:first-child + .col + .col {
  width: 26%;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col:first-child + .col + .col {
    width: 40%;
    padding: 16px 0;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.appoint
  .table-body
  li
  .col:first-child
  + .col
  + .col
  + .col {
  width: 26%;
}

.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.appoint
  .table-body
  li
  .col:first-child
  + .col
  + .col
  + .col
  + .col {
  width: 20%;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col .icon-new {
  display: inline-block;
  margin: -2px 0 0 11px;
  vertical-align: middle;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.appoint .table-body li .col .date {
  font-weight: 300;
  color: #666;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint + .info-list {
    margin-top: 13px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint + .info-list .info-item {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint + .info-list .info-item + .info-item {
    margin-top: 16px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint + .info-list .info-item dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint + .info-list .info-item dl + dl {
    border-top: 1px solid #f2f2f2;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint + .info-list .info-item dl dt {
    width: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    background: #f7f7f7;
    text-align: center;
    color: #222;
    padding: 10px 16px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.appoint + .info-list .info-item dl dd {
    width: 50%;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #222;
    padding: 10px 16px;
    text-align: center;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  line-height: 26px;
  background: #f7f7f7;
  font-weight: 700;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child {
  width: 180px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child + .col {
  width: 240px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child + .col {
    width: 60%;
    padding: 16px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child + .col + .col {
  width: calc(100% - 600px);
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-head li .col:first-child + .col + .col {
    width: 40%;
    padding: 16px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.manage
  .table-head
  li
  .col:first-child
  + .col
  + .col
  + .col {
  width: 180px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li {
    height: auto;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li + li {
  border-top: 1px solid #f2f2f2;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 12px 16px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 300;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child {
  width: 180px;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child + .col {
  width: 240px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child + .col {
    width: 60%;
    padding: 16px 8px;
  }
}
.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child + .col + .col {
  width: calc(100% - 600px);
  padding-left: 30px;
  padding-right: 30px;
  white-space: normal;
  text-align: left;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col:first-child + .col + .col {
    width: 40%;
    padding: 16px 0;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .board-area
  .table-wrap.manage
  .table-body
  li
  .col:first-child
  + .col
  + .col
  + .col {
  width: 180px;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .dot-list li {
  position: relative;
  border-top: none;
  padding-left: 14px;
  line-height: 26px;
  font-size: 16px;
  color: #222;
  font-weight: 300;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .dot-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  background: #222;
  border-radius: 50%;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .icon-new {
  display: inline-block;
  margin: -2px 0 0 11px;
  vertical-align: middle;
}

.sub .contents .sub-page .cont-area .board-area .table-wrap.manage .table-body li .col .date {
  font-weight: 300;
  color: #666;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list {
    margin-top: 13px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item + .info-item {
    margin-top: 16px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl + dl {
    border-top: 1px solid #f2f2f2;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dt {
    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;
    width: 26.5%;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    background: #f7f7f7;
    text-align: center;
    color: #222;
    padding: 10px 16px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 73.5%;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #222;
    padding: 10px;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dd .dot-list {
    display: block;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dd .dot-list li {
    position: relative;
    border-top: none;
    padding-left: 14px;
    line-height: 26px;
    font-size: 16px;
    color: #222;
    font-weight: 300;
  }
  .sub .contents .sub-page .cont-area .board-area .table-wrap.manage + .info-list .info-item dl dd .dot-list li + li {
    margin-top: 0;
  }
  .sub
    .contents
    .sub-page
    .cont-area
    .board-area
    .table-wrap.manage
    + .info-list
    .info-item
    dl
    dd
    .dot-list
    li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 4px;
    height: 4px;
    background: #222;
    border-radius: 50%;
  }
}
.sub .contents .sub-page .cont-area .card-area + .bottom-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area + .bottom-area {
    margin-top: 40px;
  }
}
.sub .contents .sub-page .cont-area .card-area + .bottom-area .pagination-area {
  padding: 0;
}

.sub .contents .sub-page .cont-area .card-area.type-02 .card-item .card-body .img {
  position: relative;
  padding-top: 56%;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.sub .contents .sub-page .cont-area .card-area.type-02 .card-item .card-body .img img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto !important;
  height: 100% !important;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.sub .contents .sub-page .cont-area .card-area.type-02 .card-item .card-body .tit {
  padding-right: 0;
  background: none;
}

.sub .contents .sub-page .cont-area .card-area.type-02 .card-item .card-body .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.sub .contents .sub-page .cont-area .card-area.type-03 .card-item {
  min-height: 200px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area.type-03 .card-item {
    padding: 24px;
    min-height: 106px;
    border-radius: 8px;
  }
}
.sub .contents .sub-page .cont-area .card-area.type-03 .card-item .card-body {
  margin-top: 0;
}

.sub .contents .sub-page .cont-area .card-area.type-03 .card-item .card-body .tit {
  margin-top: 0;
  padding-right: 0;
  background: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  white-space: normal;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area.type-03 .card-item .card-body .tit {
    font-size: 18px;
    line-height: 28px;
  }
}
.sub .contents .sub-page .cont-area .card-area.type-03 .card-item .card-body .txt {
  font-size: 16px;
  color: #222;
  font-weight: 300;
  line-height: 26px;
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area.type-03 .card-item .card-body .txt {
    font-size: 16px;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .card-area.type-03 .card-item .btn-area button {
  line-height: 24px;
}

.sub .contents .sub-page .cont-area .card-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sub .contents .sub-page .cont-area .card-area ul li {
  width: calc(33.33% - 14px);
}

@media (max-width: 1200px) {
  .sub .contents .sub-page .cont-area .card-area ul li {
    width: calc(50% - 10px);
    margin-top: 20px;
  }
}
@media (max-width: 1200px) and (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li {
    margin-top: 0;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li + li {
  margin-left: 20px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li + li {
    margin-left: 0;
    margin-top: 16px !important;
  }
}
@media (max-width: 1200px) {
  .sub .contents .sub-page .cont-area .card-area ul li:nth-child(3) {
    margin-left: 0;
    margin-top: 20px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li:nth-child(4) {
  margin-left: 0;
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .sub .contents .sub-page .cont-area .card-area ul li:nth-child(4) {
    margin-left: 20px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li:nth-child(5) {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .sub .contents .sub-page .cont-area .card-area ul li:nth-child(5) {
    margin-left: 0;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li:nth-child(6) {
  margin-top: 20px;
}

.sub .contents .sub-page .cont-area .card-area ul li:nth-child(7) {
  margin-left: 0;
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li:nth-child(7) {
    margin-left: 20px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li:nth-child(8) {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li:nth-child(8) {
    margin-left: 0;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li:nth-child(9) {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li {
    width: 100%;
    margin-left: 0 !important;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  padding: 16px 24px;
  border-radius: 12px;
  min-height: 254px;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
  -webkite-transition: background-color 0.5s ease, color 0.5s ease;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item {
    border-radius: 8px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item:hover {
  background: #222;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover {
    background: #fff;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .card-header .tit,
.sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .card-header .date,
.sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .card-body .tit,
.sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .card-body .desc,
.sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .btn-area .btn-down {
  color: #fff;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .card-header .tit,
  .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .card-header .date,
  .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .card-body .tit,
  .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .card-body .desc,
  .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .btn-area .btn-down {
    color: #222;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .btn-area .btn-down {
  background: url("../assets/images/common/pc/icon_clip_white.png") no-repeat center right;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .btn-area .btn-down {
    background: url("../assets/images/common/pc/icon_clip.png") no-repeat center right;
    background-size: 16px 16px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item {
    min-height: 168px;
    padding: 16px;
    border-radius: 8px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sub .contents .sub-page .cont-area .card-area ul li .card-item .card-header .tit {
  color: #666;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item .card-header .tit {
    font-size: 14px;
    line-height: 24px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item .card-header .date {
  color: #666;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item .card-header .date {
    font-size: 14px;
    line-height: 24px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item .card-body {
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item .card-body {
    margin-top: 16px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item .card-body .img img {
  width: 100%;
}

.sub .contents .sub-page .cont-area .card-area ul li .card-item .card-body .tit {
  display: block;
  color: #222;
  font-size: 22px;
  font-weight: 700;
  margin-top: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 32px;
  padding-right: 40px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item .card-body .tit {
    font-size: 18px;
    line-height: 28px;
    margin-top: 16px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item .card-body .tit.type02 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.sub .contents .sub-page .cont-area .card-area ul li .card-item .card-body .desc {
  color: #222;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
  /*
  								display: -webkit-box;
  								-webkit-box-orient: vertical;
  								-webkit-line-clamp: 3;
  								*/
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item .card-body .desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 30px;
  bottom: 30px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area {
    position: static;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area button {
  display: block;
  font-size: 16px;
  color: #222;
  font-weight: 500;
  padding-right: 26px;
  line-height: 32px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area button {
    font-size: 16px;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area button.btn-down {
  background: url("/kor/images/sub/pc/icon_clip.png") no-repeat center right;
  background-size: 16px 16px;
}

:lang(jp) .sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area button.btn-down,
:lang(zh) .sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area button.btn-down {
  background: url("/kor/images/sub/pc/icon_clip.png") no-repeat top 5px right;
  background-size: 16px 16px;
}

:lang(jp) .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .btn-area button.btn-down,
:lang(zh) .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .btn-area button.btn-down {
  background: url("../assets/images/common/pc/icon_clip_white.png") no-repeat top 5px right;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area button.btn-down {
    margin-top: 16px;
    background: url("/kor/images/sub/mo/icon_clip.png") no-repeat center right;
    background-size: 16px 16px;
  }
  :lang(jp) .sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area button.btn-down,
  :lang(zh) .sub .contents .sub-page .cont-area .card-area ul li .card-item .btn-area button.btn-down {
    background: url("/kor/images/sub/pc/icon_clip.png") no-repeat top 5px right;
    background-size: 16px 16px;
  }
  :lang(jp) .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .btn-area button.btn-down,
  :lang(zh) .sub .contents .sub-page .cont-area .card-area ul li .card-item:hover .btn-area button.btn-down {
    background: url("../assets/images/common/pc/icon_clip.png") no-repeat top 5px right;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .report-area + .bottom-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area + .bottom-area {
    margin-top: 40px;
  }
}
.sub .contents .sub-page .cont-area .report-area + .bottom-area .pagination-area {
  padding: 0;
}

.sub .contents .sub-page .cont-area .report-area .report-header .desc {
  color: #222;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.sub .contents .sub-page .cont-area .report-area .report-video {
  margin: 80px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-header {
  margin-top: 80px;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-header .title {
  font-size: 34px;
  font-weight: 700;
  color: #222;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-header .desc {
  margin-top: 20px;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-header .total-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-header .total-video .thumb-wrap {
  width: 50%;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-header .total-video img {
  width: 100%;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-header .total-video .desc-wrap {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-video .video-header .title {
    font-size: 28px;
  }
  .sub .contents .sub-page .cont-area .report-area .report-video .video-header .total-video {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sub .contents .sub-page .cont-area .report-area .report-video .video-header .total-video .thumb-wrap,
  .sub .contents .sub-page .cont-area .report-area .report-video .video-header .total-video .desc-wrap {
    width: 100%;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-video .video-list {
  margin: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px 14px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-list li {
  width: 32%;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-list .video-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 8px;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-list .video-item strong {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.sub .contents .sub-page .cont-area .report-area .report-video .video-list .video-thumb img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .desc {
    font-size: 18px;
    line-height: 28px;
  }
  .sub .contents .sub-page .cont-area .report-area .report-video .video-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sub .contents .sub-page .cont-area .report-area .report-video .video-list li {
    width: 100%;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .desc + .header-list {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .desc + .header-list {
    margin-top: 60px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item {
  padding: 26px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item {
    padding: 24px;
    border-radius: 8px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box.pt64 {
    padding-top: 64px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box {
    position: relative;
    padding-top: 40px;
    display: block;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box > div {
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box > div {
    width: 100%;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .img img {
  width: 100%;
  border: 1px solid #ddd;
}

.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view {
  margin-left: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view {
    margin-left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .tit {
  color: #222;
  font-size: 21px;
  font-weight: 700;
  line-height: 44px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .tit {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .desc {
  margin-top: 16px;
  color: #222;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
}

.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (max-width: 1260px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .btn-area {
    margin-top: 8px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .btn-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 16px !important;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .btn-area li a {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  padding-right: 24px;
  background: url("/kor/images/sub/pc/icon_clip.png") top 4px right no-repeat;
  background-size: 16px 16px;
}

:lang(jp) .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .btn-area li a,
:lang(zh)
  .sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-header
  .report-item
  .report-box
  .view
  .btn-area
  li
  a {
  background: url("/kor/images/sub/pc/icon_clip.png") top 6px right no-repeat;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .btn-area li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    background: url("/kor/images/sub/mo/icon_clip.png") top 4px right no-repeat;
    background-size: 16px 16px;
    padding-right: 20px;
  }
  :lang(jp)
    .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .btn-area
    li
    a,
  :lang(zh)
    .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .btn-area
    li
    a {
    background: url("/kor/images/sub/pc/icon_clip.png") top 6px right no-repeat;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .t-area .t-name {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .t-area .t-name {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    line-height: 24px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .t-area .t-tit {
  color: #222;
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .t-area .t-tit {
    position: absolute;
    top: 24px;
    left: 0;
    font-size: 18px;
    line-height: 28px;
    margin-top: 0;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .t-area .t-desc {
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .t-area .t-desc {
    font-size: 16px;
    line-height: 26px;
    margin-top: 16px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .t-area .btn-area {
  margin-top: 28px;
}

.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .b-area {
  margin-top: 31px;
  padding-top: 31px;
  border-top: 1px solid #ddd;
  text-align: left;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .b-area {
    margin-top: 24px;
    padding-top: 24px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .b-area .b-tit {
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .b-area .b-tit {
    font-size: 18px;
    line-height: 28px;
    text-align: left;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .b-area .special-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .b-area .special-area {
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-header
  .report-item
  .report-box
  .view
  .b-area
  .special-area
  .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .b-area
    .special-area
    .btn-area {
    margin-top: 10px !important;
    display: block;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-header
  .report-item
  .report-box
  .view
  .b-area
  .special-area
  .btn-area:first-child {
  margin-right: 24px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .b-area
    .special-area
    .btn-area:first-child {
    margin-left: 0;
    margin-top: 10px !important;
  }
}
@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .b-area
    .special-area
    .btn-area
    li {
    text-align: left;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-header
  .report-item
  .report-box
  .view
  .b-area
  .special-area
  .btn-area
  li
  a {
  display: inline-block;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .b-area
    .special-area
    .btn-area
    li
    a {
    padding: 0 20px 0 0;
    font-weight: 500;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-header
  .report-item
  .report-box
  .view
  .b-area
  .special-area
  .btn-area
  li
  + li {
  margin-left: 0;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .b-area
    .special-area
    .btn-area
    li
    + li {
    margin-top: 10px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .sub-area {
  padding-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #ddd;
}

.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-header
  .report-item
  .report-box
  .view
  .sub-area:not(:nth-child(2)) {
  border-top: 0;
  padding-top: 0;
}

.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .sub-area img {
  max-width: 40%;
  border: 1px solid #ddd;
}

.sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .sub-area a::after {
  content: "";
  position: absolute;
  margin-top: 1px;
  margin-left: 5px;
  width: 16px;
  height: 16px;
  background: url("/kor/images/sub/pc/icon_clip.png") top right no-repeat;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .sub-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sub .contents .sub-page .cont-area .report-area .report-header .report-item .report-box .view .sub-area img {
    max-width: 70%;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-detail {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-detail {
    margin-top: 0;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-detail .detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sub .contents .sub-page .cont-area .report-area .report-detail .detail-list > li {
  width: calc(33.33% - 14px);
  margin-top: 20px;
}

.sub .contents .sub-page.key-class-paper .cont-area .report-area .report-detail .detail-list li {
  cursor: pointer;
}

.sub .contents .sub-page.key-class-paper .cont-area .report-area .report-detail .detail-list .report-item {
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  background: transparent !important;
  border-radius: 12px;
  overflow: hidden;
}

.sub .contents .sub-page.key-class-paper .cont-area .report-area .report-detail .detail-list li:hover .report-item {
  background: #222 !important;
}

.sub
  .contents
  .sub-page.key-class-paper
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li:hover
  .report-item
  .report-box
  .view
  .txt-area
  .tit {
  color: #fff;
}

.sub
  .contents
  .sub-page.key-class-paper
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li:hover
  .report-item
  .report-box
  .view
  .txt-area
  .date {
  color: #fff;
}

.sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-of-type(1),
.sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-of-type(2),
.sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-of-type(3) {
  margin-top: 0;
}

@media (max-width: 1200px) {
  .sub .contents .sub-page.key-class-paper .cont-area .report-area .report-detail .detail-list .report-item {
    border-radius: 8px;
    padding: 16px 24px;
  }
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li {
    width: calc(50% - 10px);
  }
  .sub .contents .sub-page.key-class-paper .cont-area .report-area .report-detail .detail-list li:hover .report-item {
    background: #fff !important;
  }
  .sub
    .contents
    .sub-page.key-class-paper
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li:hover
    .report-item
    .report-box
    .view
    .txt-area
    .tit {
    color: #222;
  }
  .sub
    .contents
    .sub-page.key-class-paper
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li:hover
    .report-item
    .report-box
    .view
    .txt-area
    .date {
    color: #666;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li {
    width: 100%;
    margin-top: 16px;
    margin-left: 0;
  }
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(2) {
    margin-top: 16px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(3n + 1) {
  margin-left: 0;
}

@media (max-width: 1200px) {
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(3n + 1) {
    margin-left: 20px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(3n + 1) {
    margin-top: 16px;
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(odd) {
    margin-top: 20px;
    margin-left: 0;
  }
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:first-child {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(odd) {
    margin-top: 16px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li + li {
    margin-left: 0;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li .report-item {
  height: 100%;
  padding: 26px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
}

.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .name {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .name {
    font-size: 14px;
    line-height: 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .tit {
  display: block;
  color: #222;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .tit {
    font-size: 18px;
    line-height: 28px;
    margin-top: 4px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .date {
  display: block;
  color: #666;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .date {
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
  }
}
.sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li .report-item .report-box .view .img {
  margin-top: 16px;
  border: 1px solid #ddd;
  position: relative;
  width: 100%;
}

.sub
  .contents
  .sub-page.key-class-new-card-align
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .img {
  padding-top: 70.2%;
  height: 0;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .report-detail .detail-list li .report-item .report-box .view .img {
    height: 100%;
  }
}
@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page.key-class-list-report
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .img
    img {
    height: 100%;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .img
  img {
  width: 100%;
}

.sub
  .contents
  .sub-page.key-class-new-card-align
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .img
  img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: auto;
  height: 100%;
  display: block;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .img
    img {
    height: 100%;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area {
  margin-top: 16px;
  text-align: center;
}

.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area.sub-part {
  border-top: 1px solid #ddd;
  padding: 16px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area {
    margin-top: 16px !important;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li {
  float: left;
  width: auto;
  margin-top: 0;
}

.sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a {
  display: block;
  text-align: left;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  padding-right: 20px;
  background: url("/kor/images/sub/pc/icon_clip.png") top 4px right no-repeat;
  background-size: 16px 16px;
}

:lang(jp)
  .sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a,
:lang(zh)
  .sub
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a {
  background: url("/kor/images/sub/pc/icon_clip.png") top 6px right no-repeat;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li {
    padding: 0;
  }
  .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a {
    font-size: 16px;
    line-height: 26px;
    background: url("/kor/images/sub/mo/icon_clip.png") top 4px right no-repeat;
    background-size: 16px 16px;
    padding-right: 20px;
  }
  :lang(jp)
    .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a,
  :lang(zh)
    .sub
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a {
    background: url("/kor/images/sub/pc/icon_clip.png") top 6px right no-repeat;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .report-area .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .btn-area {
    margin-top: 24px;
  }
}
.sub .contents .sub-page .cont-area .report-area .btn-area .more-btn {
  display: inline-block;
  background: url("../assets/images/common/pc/icon_cf_plus.png") center right no-repeat;
  background-size: 16px 16px;
  color: #222;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  padding-right: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .report-area .btn-area .more-btn {
    font-size: 16px;
    line-height: 26px;
    padding-right: 20px;
  }
}
.sub .contents .sub-page .cont-area .bottom-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .bottom-area {
    margin-top: 40px;
  }
}
.sub .contents .sub-page .cont-area .pagination-area {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub .contents .sub-page .cont-area .pagination-area ul + ul {
  margin-left: 24px;
}

.sub .contents .sub-page .cont-area .pagination-area .prev-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub .contents .sub-page .cont-area .pagination-area .prev-btn li + li {
  margin-left: 4px;
}

.sub .contents .sub-page .cont-area .pagination-area .prev-btn li a {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .pagination-area .prev-btn li a {
    width: 16px;
    height: 16px;
    line-height: 16px;
  }
}
.sub .contents .sub-page .cont-area .pagination-area .prev-btn li a.prev {
  background: url("/kor/images/sub/pc/icon_prev.png") no-repeat center center;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .pagination-area .prev-btn li a.prev {
    background: url("/kor/images/sub/mo/icon_prev.png") no-repeat center center;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .pagination-area .prev-btn li a.prev-double {
  background: url("/kor/images/sub/pc/icon_prev_double.png") no-repeat center center;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .pagination-area .prev-btn li a.prev-double {
    background: url("/kor/images/sub/mo/icon_prev_double.png") no-repeat center center;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .pagination-area .page-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub .contents .sub-page .cont-area .pagination-area .page-btn li + li {
  margin-left: 32px;
}

.sub .contents .sub-page .cont-area .pagination-area .page-btn li.on a {
  font-weight: 700;
  color: #222;
}

.sub .contents .sub-page .cont-area .pagination-area .page-btn li a {
  display: block;
  height: 24px;
  line-height: 24px;
  font-size: 15px;
  font-weight: 300;
  color: #aaa;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .pagination-area .page-btn li a {
    font-size: 12px;
    height: 18px;
    line-height: 18px;
  }
}
.sub .contents .sub-page .cont-area .pagination-area .next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub .contents .sub-page .cont-area .pagination-area .next-btn li + li {
  margin-left: 4px;
}

.sub .contents .sub-page .cont-area .pagination-area .next-btn li a {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .pagination-area .next-btn li a {
    width: 16px;
    height: 16px;
    line-height: 16px;
  }
}
.sub .contents .sub-page .cont-area .pagination-area .next-btn li a.next {
  background: url("/kor/images/sub/pc/icon_next.png") no-repeat center center;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .pagination-area .next-btn li a.next {
    background: url("/kor/images/sub/mo/icon_next.png") no-repeat center center;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .pagination-area .next-btn li a.next-double {
  background: url("/kor/images/sub/pc/icon_next_double.png") no-repeat center center;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .pagination-area .next-btn li a.next-double {
    background: url("/kor/images/sub/mo/icon_next_double.png") no-repeat center center;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .detail-area {
  border-top: 1px solid #222;
}

.sub .contents .sub-page .cont-area .detail-area .detail-header {
  padding: 28px 0;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .detail-header {
    padding: 32px 0;
  }
}
.sub .contents .sub-page .cont-area .detail-area .detail-header .tit {
  color: #222;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .detail-header .tit {
    font-size: 18px;
    line-height: 28px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .detail-header .date {
  display: block;
  color: #666;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .detail-header .date {
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .detail-body {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #222;
  padding: 60px 0;
}

.sub .contents .sub-page .cont-area .detail-area .detail-body img {
  max-width: 100%;
}

.sub .contents .sub-page .cont-area .detail-area .detail-body .viewCont {
  border-top: none;
  padding: 0;
}

.sub .contents .sub-page .cont-area .detail-area .detail-body span strong {
  color: rgb(0, 128, 128);
}

.sub .contents .sub-page .cont-area .detail-area .detail-body span strong span {
  color: rgb(0, 128, 128);
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .detail-body {
    padding: 32px 0 40px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .detail-body .edit-txt {
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  padding: 0 40px;
}

.sub .contents .sub-page .cont-area .detail-area .detail-body .edit-txt img {
  width: 100% !important;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .detail-body .edit-txt {
    padding: 0;
    font-size: 14px;
    line-height: 22px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .detail-body .edit-txt table {
  width: 100% !important;
  margin-left: 0 !important;
}

.sub .contents .sub-page .cont-area .detail-area .detail-body blockquote ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.sub .contents .sub-page .cont-area .detail-area .detail-body blockquote ul li:last-child {
  margin-bottom: 0;
}

.sub .contents .sub-page .cont-area .detail-area .detail-body blockquote ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  background-color: #000;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

.sub .contents .sub-page .cont-area .detail-area .file-area {
  background: #f7f7f7;
  padding: 24px 40px;
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .file-area {
    margin-top: 32px;
    padding: 24px 16px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .file-area .file-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .file-area .file-list {
    display: inline-block;
  }
}
.sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-tit span {
  display: block;
  font-size: 14px;
  color: #666;
  line-height: 24px;
  padding-left: 24px;
  font-weight: 700;
  background: url("/kor/images/sub/pc/icon_clip.png") center left no-repeat;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-tit span {
    font-size: 14px;
    line-height: 22px;
    background: url("/kor/images/sub/mo/icon_clip.png") center left no-repeat;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item {
  margin-left: 40px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item {
    margin-left: 0;
    margin-top: 16px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item a {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 24px;
  color: #222;
}

.sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
  display: none;
}

.sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item a:hover {
  font-weight: 700;
}

.sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item a:hover::after {
  display: block;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item a:hover::after {
    display: none;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
  }
}
.sub .contents .sub-page .cont-area .detail-area .file-area .file-list .file-item a + a {
  margin-top: 8px;
}

.sub .contents .sub-page .cont-area .detail-area .page-nav {
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav {
    margin-top: 24px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li {
    width: calc(50% - 20px);
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li + li {
    margin-left: 40px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a {
  padding-left: 32px;
  position: relative;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a {
    padding-left: 20px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url("/kor/images/sub/pc/icon_detail_prev.png") no-repeat;
  background-size: 24px 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a::before {
    width: 16px;
    height: 16px;
    background: url("/kor/images/sub/mo/icon_detail_prev.png") no-repeat;
    background-size: 16px 16px;
    top: 2px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a.disabled::before {
  width: 24px;
  height: 24px;
  background: url("/kor/images/sub/pc/icon_detail_prev_gray.png") no-repeat;
  background-size: 24px 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a.disabled::before {
    width: 16px;
    height: 16px;
    background: url("/kor/images/sub/mo/icon_detail_prev_gray.png") no-repeat;
    background-size: 16px 16px;
    top: 2px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a.disabled {
  pointer-events: none;
}

.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a.disabled p {
  color: #666;
}

.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.prev a .date {
  text-align: left;
}

.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.next {
  text-align: right;
}

.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.next a {
  padding-right: 32px;
  position: relative;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.next a {
    padding-right: 20px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.next a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url("/kor/images/sub/pc/icon_detail_next.png") no-repeat;
  background-size: 24px 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.next a::before {
    width: 16px;
    height: 16px;
    background: url("/kor/images/sub/mo/icon_detail_next.png") no-repeat;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.next a.disabled::before {
  background: url("/kor/images/sub/pc/icon_detail_next_gray.png") no-repeat;
  background-size: 24px 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.next a.disabled::before {
    width: 16px;
    height: 16px;
    background: url("/kor/images/sub/mo/icon_detail_next_gray.png") no-repeat;
    background-size: 16px 16px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li.next a.disabled p {
  color: #666;
}

.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li a {
  display: block;
}

.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li a p {
  display: block;
  font-size: 16px;
  color: #222;
  line-height: 26px;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li a p {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li a .date {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: right;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .page-nav .nav-list li a .date {
    font-size: 14px;
    line-height: 24px;
    margin-top: 0;
    font-weight: 300;
  }
}
.sub .contents .sub-page .cont-area .detail-area .btn-area {
  text-align: center;
  margin-top: 80px;
}

.sub .contents .sub-page .cont-area .detail-area .btn-area:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .btn-area {
    margin-top: 48px;
  }
}
.sub .contents .sub-page .cont-area .detail-area .btn-area a {
  display: inline-block;
  padding: 0 24px;
  min-width: 120px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #222;
  border-radius: 28px;
  color: #222;
}

.sub .contents .sub-page .cont-area .detail-area .btn-area a:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .detail-area .btn-area a {
    height: 32px;
    line-height: 31px;
    font-size: 14px;
    min-width: 73px;
    font-weight: 300;
  }
  .sub .contents .sub-page .cont-area .detail-area .btn-area a:hover {
    background: #fff;
    color: #222;
  }
}
.sub .contents .sub-page .cont-area .search-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-wrap {
    display: block;
    padding-top: 46px;
    position: relative;
  }
  .sub .contents .sub-page .cont-area .search-wrap .search-area.single {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .sub .contents .sub-page .cont-area .search-wrap .search-area.single .select-row {
    width: auto !important;
  }
  .sub .contents .sub-page .cont-area .search-wrap .search-area .search-inner {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-wrap .search-area .search-inner .select-row {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 28%;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-wrap .search-area .search-inner .select-row .selected-value {
    font-size: 14px !important;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-wrap .search-area .search-inner .search-box {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(72% - 52px);
    margin-left: 8px;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-wrap .search-area .search-inner .search-box .search-input {
    width: 100%;
    font-size: 14px;
  }
}
.sub .contents .sub-page .cont-area .search-wrap .search-area {
  margin-bottom: 0;
}

.sub .contents .sub-page .cont-area .search-wrap + .card-area {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-wrap + .card-area {
    margin-top: 24px;
  }
}
.sub .contents .sub-page .cont-area .search-area {
  margin-bottom: 16px;
  text-align: right;
}

.sub .contents .sub-page .cont-area .search-area + .search-area.single .search-inner .select-row {
  min-width: 152px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area {
    position: relative;
    margin-bottom: 24px;
  }
}
.sub .contents .sub-page .cont-area .search-area.single {
  margin-bottom: 0;
}

.sub .contents .sub-page .cont-area .search-area.single .search-inner {
  border-bottom: none;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area.single .search-inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row {
  padding: 0;
  min-width: 88px;
}

:lang(en) .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row {
  min-width: 148px;
}

:lang(jp) .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row {
  min-width: 148px;
}

:lang(zh) .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row {
  min-width: 148px;
}

:lang(id) .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row {
  min-width: 148px;
}

.sub .contents .sub-page.key-class-audit-report .cont-area .search-area.single .search-inner .select-row {
  padding: 0;
  min-width: 88px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row {
    padding: 0;
    min-width: auto;
  }
}
.sub .contents .sub-page.key-class-customerinfo .cont-area .search-area.single .search-inner .select-row {
  min-width: 304px;
}

.sub .contents .sub-page.key-class-customerinfo .cont-area .terms-subtext {
  margin-top: 12px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page.identifiableinfo .cont-area .search-area.single .search-inner .select-row {
    min-width: 288px;
  }
}
.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select {
  height: 48px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select {
    height: 40px;
  }
}
.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select .selected .selected-value {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #222;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select .selected .selected-value {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
  }
}
.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  padding: 10px 0 10px 18px;
  background: #fff;
  border-radius: 12px;
  min-height: auto;
  overflow-y: auto;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  width: auto;
  max-height: 190px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list {
    right: 0;
    overflow-y: auto;
  }
}
.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list ul li + li {
  margin-top: 8px;
}

.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list ul li.option {
  border: none;
  padding: 0;
}

.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list ul li.option:hover {
  background: none;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list ul li.option {
    min-height: 24px;
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list ul li.option + li {
    margin-top: 8px;
  }
}
.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list ul li.active a {
  color: #222;
  font-weight: 700;
}

.sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list ul li .link {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: #222;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area.single .search-inner .select-row .select-list ul li .link {
    font-size: 14px;
    line-height: 24px;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #888;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner .select-row {
  position: relative;
  height: 100%;
  font-size: 14px;
  color: #666;
  min-width: 120px;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row + .select-row {
  margin-left: 24px;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select {
  position: relative;
  display: block;
  height: 48px;
  font-size: 14px;
  font-weight: 300;
  color: #222;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background-size: 16px 16px;
  cursor: pointer;
  padding: 16px 26px 16px 18px;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../assets/images/common/icon_more_arrow_down_2x.png") no-repeat center right;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select {
    padding-right: 28px;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select .selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select .selected .selected-value {
  /*
  								white-space: nowrap;
  								overflow: hidden;
  								text-overflow: ellipsis;
  								*/
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #222;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select .selected .selected-value {
    font-size: 14px;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select .selected .selected-value.active {
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row.active .select::after {
  content: "";
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list {
  display: none;
  position: absolute;
  top: 49px;
  left: 0;
  right: 0;
  padding: 8px 16px;
  background: #fff;
  border-radius: 12px;
  min-height: auto;
  overflow-y: auto;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  width: auto;
  max-height: 240px;
  z-index: 10;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list {
    max-height: 240px;
    overflow-y: auto;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li.option {
  border: none;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li.option {
    font-size: 14px;
    line-height: 24px;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li + li {
  margin-top: 8px;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li.option a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  padding: 0;
  text-align: left;
  display: block;
  white-space: nowrap;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li.active a {
  font-weight: 700;
  color: #222;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li.option:hover {
  background: none;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li.option {
    min-height: 24px;
    padding: 0;
    min-width: auto;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li.option + li {
    margin-top: 16px;
  }
}
/*
.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li.active .link {
  color: #222;
  font-weight: 700;
}
*/
.sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li .link {
  font-size: 14px;
  font-weight: 300;
  color: #666;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .select-row .select-list ul li .link {
    font-size: 12px;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner .select-row.active .select-list {
  display: block;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 24px;
  min-width: 235px;
  height: 48px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .search-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: auto;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-input {
  width: 100%;
  line-height: 48px;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  outline: none;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-input::-webkit-input-placeholder {
  color: #aaa;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-input::-moz-placeholder {
  color: #aaa;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-input:-ms-input-placeholder {
  color: #aaa;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-input::-ms-input-placeholder {
  color: #aaa;
}

.sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-input::placeholder {
  color: #aaa;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-input {
    font-size: 14px;
  }
}
.sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-btn {
  background: url("../assets/images/common/icon_search.png") no-repeat;
  background-size: 48px 48px;
  width: 48px;
  height: 48px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .search-area .search-inner .search-box .search-btn {
    background-position: center center;
    background-size: 32px 32px;
  }
}
.sub .contents .sub-page .cont-area .c-masonry {
  padding: 0;
}

.sub .contents .sub-page .cont-area .c-masonry .c-card {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
}

.sub .contents .sub-page .cont-area .link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .link-area {
    margin-top: 48px;
  }
}
.sub .contents .sub-page .cont-area .link-area .link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .link-area .link-list {
    display: block;
  }
}
.sub .contents .sub-page .cont-area .link-area .link-list a {
  display: block;
  border: 1px solid #222;
  height: 44px;
  line-height: 44px;
  padding: 0 24px;
  border-radius: 28px;
  padding-right: 48px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .link-area .link-list a {
    height: 40px;
    line-height: 40px;
  }
}
.sub .contents .sub-page .cont-area .link-area .link-list a.type-link {
  background: url("../assets/images/common/pc/icon_outlink_16.svg") no-repeat right 24px top 13px #fff;
  background-size: 16px 16px;
}

.sub .contents .sub-page .cont-area .link-area .link-list a.type-link:hover {
  background: url("../assets/images/common/pc/icon_outlink_white_16.svg") no-repeat right 24px top 13px #222;
  background-size: 16px 16px;
}

.sub .contents .sub-page .cont-area .link-area .link-list a.type-link:hover span {
  color: #fff;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .link-area .link-list a.type-link {
    background: url("../assets/images/common/pc/icon_outlink_16.png") no-repeat right 24px top 11px #fff;
    background-size: 16px 16px;
  }
  .sub .contents .sub-page .cont-area .link-area .link-list a.type-link:hover {
    background: url("../assets/images/common/pc/icon_outlink_16.png") no-repeat right 24px top 11px #fff;
    background-size: 16px 16px;
  }
  .sub .contents .sub-page .cont-area .link-area .link-list a.type-link:hover span {
    color: #222;
  }
}
.sub .contents .sub-page .cont-area .link-area .link-list a.type-down {
  background: url("/kor/images/sub/pc/icon_clip.png") no-repeat right 24px center #fff;
  background-size: 16px 16px;
}

.sub .contents .sub-page .cont-area .link-area .link-list a.type-down:hover {
  background: url("../assets/images/common/pc/icon_clip_white.png") no-repeat right 24px center #222;
  background-size: 16px 16px;
}

.sub .contents .sub-page .cont-area .link-area .link-list a.type-down:hover span {
  color: #fff;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .link-area .link-list a.type-down {
    background: url("/kor/images/sub/mo/icon_clip.png") no-repeat right 24px center #fff;
    background-size: 16px 16px;
  }
  .sub .contents .sub-page .cont-area .link-area .link-list a.type-down:hover {
    background: url("../assets/images/common/pc/icon_clip.png") no-repeat right 24px center #fff;
    background-size: 16px 16px;
  }
  .sub .contents .sub-page .cont-area .link-area .link-list a.type-down:hover span {
    color: #222;
  }
}
.sub .contents .sub-page .cont-area .link-area .link-list a span {
  color: #222;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .link-area .link-list a span {
    font-size: 16px;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .link-area .link-list a + a {
  margin-left: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .link-area .link-list a + a {
    margin-left: 0;
    margin-top: 16px;
  }
}
@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .tab-area {
    margin-top: 16px;
    margin-left: -4px;
  }
}
.sub .contents .sub-page .cont-area .global-area .tab-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sub .contents .sub-page .cont-area .global-area .tab-area ul li {
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .tab-area ul li {
    margin-top: 4px;
    margin-left: 4px;
  }
}
.sub .contents .sub-page .cont-area .global-area .tab-area ul li.on a {
  background: #222;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
}

.sub .contents .sub-page .cont-area .global-area .tab-area ul li + li {
  margin-left: 8px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .tab-area ul li + li {
    margin-left: 4px;
  }
}
.sub .contents .sub-page .cont-area .global-area .tab-area ul li a {
  display: inline-block;
  color: #222;
  font-size: 14px;
  font-weight: 300;
  line-height: 40px;
  padding: 0 24px;
  border-radius: 28px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .tab-area ul li a {
    padding: 0 16px;
    line-height: 32px;
  }
}
.sub .contents .sub-page .cont-area .global-area .map-area {
  margin-top: 24px;
  padding: 0 70px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .map-area {
    display: none;
  }
}
.sub .contents .sub-page .cont-area .global-area .map-area .map-info {
  color: #666;
  text-align: right;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.sub .contents .sub-page .cont-area .global-area .map-area .map-img {
  margin-top: 8px;
}

.sub .contents .sub-page .cont-area .global-area .map-area .map-img img {
  width: 100%;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .view-area {
    margin-top: 48px;
  }
}
.sub .contents .sub-page .cont-area .global-area .view-area .search-area {
  line-height: 48px;
}

.sub .contents .sub-page .cont-area .global-area .view-area .search-area .search-inner.mo {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sub .contents .sub-page .cont-area .global-area .view-area .search-area .search-inner .select-row {
  min-width: 148px;
  padding: 0;
}

:lang(en) .sub .contents .sub-page .cont-area .global-area .view-area .search-area .search-inner .select-row,
:lang(id) .sub .contents .sub-page .cont-area .global-area .view-area .search-area .search-inner .select-row,
:lang(jp) .sub .contents .sub-page .cont-area .global-area .view-area .search-area .search-inner .select-row,
:lang(zh) .sub .contents .sub-page .cont-area .global-area .view-area .search-area .search-inner .select-row {
  min-width: 212px;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .search-area
  .search-inner
  .select-row
  .select-list
  ul
  li
  + li {
  margin-top: 8px;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .search-area
  .search-inner
  .select-row
  .select-list
  ul
  li.option {
  height: 100%;
  line-height: 26px;
  padding: 0;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .search-area
    .search-inner
    .select-row
    .select-list
    ul
    li.option {
    height: auto;
    line-height: 24px;
  }
}
.sub .contents .sub-page .cont-area .global-area .view-area .accordion-area {
  margin-top: 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .view-area .accordion-area {
    margin-top: 0;
  }
}
.sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu {
  margin-top: 0;
  border-top: none;
  border-bottom: none;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-list
  + .c-accordion-menu__depth-01-list {
  border-top: 1px solid #ddd;
}

.sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu__depth-01-link {
  position: relative;
  padding: 20px 0 20px 104px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu__depth-01-link span {
  font-weight: 700;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu__depth-01-link {
    padding: 16px 0 16px 48px;
    font-size: 16px;
    line-height: 26px;
  }
}
.sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu__depth-01-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu__depth-01-link::before {
    width: 24px;
    height: 24px;
    left: 16px;
  }
}
.sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu__depth-01-link::after {
  width: 24px;
  height: 24px;
  background: url("/kor/images/sub/pc/icon_arrow_accordion.png") no-repeat;
  background-size: 24px 24px;
  right: 24px;
}

@media (max-width: 1023px) {
  .sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu__depth-01-link::after {
    width: 16px;
    height: 16px;
    background: url("/kor/images/sub/mo/icon_arrow_accordion.png") no-repeat;
    background-size: 16px 16px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_indonesia::before {
  background: url("/kor/images/sub/pc/icon_indonesia.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_indonesia::before {
    background: url("/kor/images/sub/mo/icon_indonesia.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_cambodia::before {
  background: url("/kor/images/sub/pc/icon_cambodia.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_cambodia::before {
    background: url("/kor/images/sub/mo/icon_cambodia.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_vietnam::before {
  background: url("/kor/images/sub/pc/icon_vietnam.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_vietnam::before {
    background: url("/kor/images/sub/mo/icon_vietnam.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_hongkong::before {
  background: url("/kor/images/sub/pc/icon_hongkong.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_hongkong::before {
    background: url("/kor/images/sub/mo/icon_hongkong.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_china::before {
  background: url("/kor/images/sub/pc/icon_china.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_china::before {
    background: url("/kor/images/sub/mo/icon_china.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_singapore::before {
  background: url("/kor/images/sub/pc/icon_singapore.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_singapore::before {
    background: url("/kor/images/sub/mo/icon_singapore.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_japan::before {
  background: url("/kor/images/sub/pc/icon_japan.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_japan::before {
    background: url("/kor/images/sub/mo/icon_japan.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_newzealand::before {
  background: url("/kor/images/sub/pc/icon_newzealand.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_newzealand::before {
    background: url("/kor/images/sub/mo/icon_newzealand.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_india::before {
  background: url("/kor/images/sub/pc/icon_india.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_india::before {
    background: url("/kor/images/sub/mo/icon_india.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_myanmar::before {
  background: url("/kor/images/sub/pc/icon_myanmar.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_myanmar::before {
    background: url("/kor/images/sub/mo/icon_myanmar.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_thailand::before {
  background: url("/kor/images/sub/pc/icon_thailand.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_thailand::before {
    background: url("/kor/images/sub/mo/icon_thailand.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_laos::before {
  background: url("/kor/images/sub/pc/icon_laos.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_laos::before {
    background: url("/kor/images/sub/mo/icon_laos.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_usa::before {
  background: url("/kor/images/sub/pc/icon_usa.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_usa::before {
    background: url("/kor/images/sub/mo/icon_usa.png") no-repeat center center;
    background-size: 24px 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-01-link.flag_england::before {
  background: url("/kor/images/sub/pc/icon_uk.png") no-repeat center center;
  background-size: 40px 40px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-01-link.flag_england::before {
    /* background: url("/kor/images/sub/mo/icon_england.png") no-repeat center center; */
    background-size: 24px 24px;
  }
}
.sub .contents .sub-page .cont-area .global-area .view-area .accordion-area .c-accordion-menu__depth-02-list {
  border-top: 1px solid #ddd;
  padding: 0;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list {
    padding: 16px 0;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item {
  position: relative;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  width: calc(50% - 20px);
  padding: 24px 24px 60px 24px;
  border-radius: 12px;
  margin: 10px;
  min-height: 274px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item {
    width: 100%;
    padding: 16px;
    margin: 4px;
    min-height: auto;
    border-radius: 8px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-header {
  position: relative;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-header
  .info-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-header
  .info-txt
  span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #666;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-header
    .info-txt
    span {
    font-size: 14px;
    line-height: 24px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-header
  .info-txt
  span
  + span {
  position: relative;
  margin-left: 17px;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-header
  .info-txt
  span
  + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #888;
  width: 1px;
  height: 10px;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-header
  .l-tit {
  font-size: 18px;
  color: #222;
  font-weight: 700;
  line-height: 28px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-header
    .l-tit {
    font-size: 18px;
    line-height: 28px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-header
  .m-tit {
  font-size: 16px;
  color: #222;
  font-weight: 300;
  line-height: 26px;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-header
    .m-tit {
    font-size: 16px;
    line-height: 26px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body {
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body {
    margin-top: 16px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-desc
  li
  + li {
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-desc
    li
    + li {
    margin-top: 10px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-desc
  li
  span {
  display: block;
  position: relative;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  padding-left: 24px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-desc
    li
    span {
    font-size: 16px;
    line-height: 26px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-desc
  li
  span.address::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../assets/images/common/pc/icon_location.png") no-repeat;
  background-size: 16px 16px;
}

:lang(jp)
  .sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-desc
  li
  span.address::before,
:lang(zh)
  .sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-desc
  li
  span.address::before {
  top: 6px;
}

:lang(jp)
  .sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-desc
  li
  span.tel::before,
:lang(zh)
  .sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-desc
  li
  span.tel::before {
  top: 6px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-desc
    li
    span.address::before {
    top: 3px;
  }
  :lang(jp)
    .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-desc
    li
    span.address::before,
  :lang(zh)
    .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-desc
    li
    span.address::before {
    top: 6px;
  }
  :lang(jp)
    .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-desc
    li
    span.tel::before,
  :lang(zh)
    .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-desc
    li
    span.tel::before {
    top: 6px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-desc
  li
  span.tel::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../assets/images/common/pc/icon_call.png") no-repeat;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-desc
    li
    span.tel::before {
    top: 4px;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-link {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-link {
    margin-top: 20px;
    position: static;
  }
}
.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-link
  li
  + li {
  margin-left: 24px;
}

.sub
  .contents
  .sub-page
  .cont-area
  .global-area
  .view-area
  .accordion-area
  .c-accordion-menu__depth-02-list
  .store-list
  .store-item
  .store-body
  .info-link
  li
  a {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  border-bottom: 1px solid #222;
}

@media (max-width: 1023px) {
  .sub
    .contents
    .sub-page
    .cont-area
    .global-area
    .view-area
    .accordion-area
    .c-accordion-menu__depth-02-list
    .store-list
    .store-item
    .store-body
    .info-link
    li
    a {
    font-size: 14px;
    line-height: 24px;
  }
}
.key-class-cf .cf-main-article-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
}

@media (max-width: 1023px) {
  .key-class-cf .cf-main-article-wrap {
    margin-top: 0;
  }
}
.key-class-cf .cf-main-article-link-wrap {
  width: 100%;
}

.key-class-cf .cf-main-article-link {
  position: relative;
  width: 100%;
}

.key-class-cf .cf-main-article-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: url(../assets/images/common/pc/icon_play.png) no-repeat center center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.key-class-cf .cf-main-article-link:hover:after {
  opacity: 1;
}

.key-class-cf .cf-main-article-figure {
  width: 100%;
}

.key-class-cf .cf-main-article-img,
.key-class-cf .cf-sub-article-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.key-class-cf .cf-main-article-detail-wrap {
  width: 100%;
  margin-left: 40px;
}

.key-class-cf .cf-main-article-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #222;
}

.key-class-cf .cf-main-article-date {
  margin-top: 8px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #666;
}

.key-class-cf .cf-main-article-desc {
  margin-top: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  line-clamp: 8;
  -webkit-line-clamp: 8;
  height: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .key-class-cf .cf-main-article-desc {
    margin-top: 40px;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: #222;
    white-space: normal;
    display: block;
    overflow: auto;
    line-height: 24px;
    height: auto;
  }
}
.key-class-cf .cf-sub-article-wrap {
  margin-top: 80px;
}

.key-class-cf .cf-sub-article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.key-class-cf .cf-sub-article-item {
  width: calc(33.3333% - 13.5px);
}

.key-class-cf .cf-sub-article-item {
  margin-top: 32px;
  margin-left: 20px;
}

.key-class-cf .cf-sub-article-item:first-child {
  margin-left: 0;
}

.key-class-cf .cf-sub-article-item:nth-child(-n + 3) {
  margin-top: 0;
}

.key-class-cf .cf-sub-article-item:nth-child(3n + 1) {
  margin-left: 0;
}

.key-class-cf .cf-sub-link--top {
  display: block;
  position: relative;
}

.key-class-cf .cf-sub-link--top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: url(../assets/images/common/pc/icon_play.png) no-repeat center center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.key-class-cf .cf-sub-article-item:hover .cf-sub-link--top:after {
  opacity: 1;
  border-radius: 50%;
  overflow: hidden;
}

.key-class-cf .cf-sub-article-figure {
  position: relative;
  padding-top: 56%;
  width: 100%;
  height: 0;
}

.key-class-cf .cf-sub-article-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.key-class-cf .cf-sub-link--bottom {
  display: block;
  margin-top: 20px;
}

.key-class-cf .cf-sub-link-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #222;
}

.key-class-cf .cf-sub-link-date {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #666;
}

.key-class-cf .btn-cf-more {
  display: block;
  position: relative;
  text-align: center;
  width: 320px;
  margin: 0 auto;
  margin-top: 64px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}

.key-class-cf .btn-cf-more:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 107.5px;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(../assets/images/common/pc/icon_cf_plus.png) no-repeat center center;
  background-size: cover;
}

@media all and (max-width: 1023px) {
  .key-class-cf .cf-main-article-img,
  .key-class-cf .cf-sub-article-img {
    border-radius: 8px;
  }
  .key-class-cf .cf-main-article-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .key-class-cf .cf-main-article-link:hover:after {
    opacity: 0;
  }
  .key-class-cf .cf-main-article-detail-wrap {
    margin-top: 10px;
    margin-left: 0;
  }
  .key-class-cf .cf-main-article-title {
    font-size: 16px;
    line-height: 26px;
  }
  .key-class-cf .cf-main-article-date {
    font-size: 14px;
    line-height: 24px;
    margin-top: 0;
  }
  .key-class-cf .cf-sub-article-wrap {
    margin-top: 24px;
  }
  .key-class-cf .cf-sub-article-item {
    width: 100%;
    margin-top: 24px;
    margin-left: 0;
  }
  .key-class-cf .cf-sub-article-item:nth-child(-n + 3) {
    margin-top: 24px;
  }
  .key-class-cf .cf-sub-article-item:first-child {
    margin-top: 0;
  }
  .key-class-cf .cf-sub-article-item:hover .cf-sub-link--top:after {
    opacity: 0;
  }
  .key-class-cf .cf-sub-link--bottom {
    margin-top: 10px;
  }
  .key-class-cf .cf-sub-link-title {
    font-size: 16px;
    line-height: 26px;
  }
  .key-class-cf .cf-sub-link-date {
    font-size: 14px;
    line-height: 24px;
  }
  .key-class-cf .btn-cf-more {
    width: 100%;
    margin-top: 32px;
    font-size: 12px;
    line-height: 18px;
  }
  .key-class-cf .btn-cf-more:after {
    top: 0;
    left: 55px;
    right: 0;
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/mo/icon_cf_plus.png) no-repeat center center;
    background-size: cover;
  }
}
.key-class-popup .popup-wrap {
  display: none;
  z-index: 2000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/common/pc/dim.png);
}

.key-class-popup .popup-wrap.active {
  display: block;
}

.key-class-popup .popup-list {
  position: relative;
  top: 50%;
  left: 50%;
  width: 1000px;
  min-height: 450px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 32px;
  background: #fff;
  border-radius: 12px;
}

.key-class-popup .popup-item {
  overflow: hidden;
}

.key-class-popup .popup-inner {
  max-height: calc(100vh - 500px);
  overflow-y: auto;
}

.key-class-popup .popup-inner .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.key-class-popup .btn-popup-close {
  z-index: 110;
  position: absolute;
  top: -40px;
  right: 0;
  width: 24px;
  height: 24px;
  background: url(../assets/images/common/pc/icon_popup_close.png) no-repeat center center;
  background-size: cover;
}

.key-class-popup .popup-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.key-class-popup .btn-popup-prev {
  min-width: 24px;
  min-height: 24px;
  position: relative;
  margin-right: auto;
  padding-left: 32px;
}

.key-class-popup .btn-popup-prev:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(../assets/images/common/pc/icon_popup_next_arrow.png) no-repeat center center;
  background-size: cover;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.key-class-popup .btn-popup-next {
  min-width: 24px;
  min-height: 24px;
  position: relative;
  margin-left: auto;
  padding-right: 32px;
}

.key-class-popup .btn-popup-next:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(../assets/images/common/pc/icon_popup_next_arrow.png) no-repeat center center;
  background-size: cover;
}

.key-class-popup .popup-following-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 48px;
}

.key-class-popup .popup-title-wrap {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

.key-class-popup .popup-title-type-01 {
  margin-top: 16px;
  font-weight: 700;
  font-size: 26px;
  line-height: 40px;
}

.key-class-rating .popup-title-type-01 {
  margin-top: 0;
}

.key-class-popup .popup-title-date {
  margin-top: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #666;
}

.key-class-popup .popup-profile-wrap {
  position: relative;
}

.key-class-popup .popup-desc-wrap {
  margin-top: 24px;
}

.key-class-popup .popup-desc-wrap .popup-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #222;
}

.key-class-popup .popup-desc-wrap-type02 {
  margin-top: 0;
}

.key-class-popup .popup-desc-wrap-type02 .popup-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.key-class-popup .popup-profile-figure {
  width: 100%;
}

.key-class-popup .popup-profile-img {
  width: 100%;
}

.key-class-popup .popup-profile-detail {
  position: absolute;
  top: 48px;
  left: 80px;
}

.key-class-popup .popup-profile-name--top {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #666;
}

.key-class-popup .popup-profile-name--bottom {
  margin-top: 4px;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  color: #222;
}

.key-class-popup .popup-birth-date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
}

.key-class-popup .popup-birth-date-wrap .birth {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #222;
}

.key-class-popup .popup-birth-date-wrap .date {
  margin-left: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #222;
}

.key-class-popup .popup-accordion-wrap {
  margin-top: 16px;
}

.key-class-popup .popup-accordion-wrap .c-accordion-menu__depth-01-item + .c-accordion-menu__depth-01-item {
  border-top: 1px solid #ddd;
}

.key-class-popup .popup-accordion-wrap .accordion-area .c-accordion-menu {
  margin-top: 16px;
}

.key-class-popup .popup-accordion-wrap .popup-accordion-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #222;
}

.key-class-popup .popup-accordion-wrap .accordion-area .item-detail .detail-item {
  position: relative;
  padding-left: 14px;
  margin-left: 16px;
}

.key-class-popup .popup-accordion-wrap .accordion-area .item-detail .detail-item + .detail-item {
  margin-top: 0;
}

.key-class-popup .popup-accordion-wrap .accordion-area .item-detail .detail-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  bottom: auto;
  margin: auto;
  width: 4px;
  height: 4px;
  background: #222;
  border-radius: 50px;
}

.key-class-popup .popup-accordion-wrap .accordion-area .item-detail .detail-desc {
  display: block;
  padding-left: 0;
  margin-left: 0;
}

.key-class-popup .popup-accordion-wrap .accordion-area .item-detail .detail-desc:first-child::before {
  display: none;
}

.key-class-popup .popup-wrap .dummy {
  position: relative;
  padding-top: 56%;
  width: 100%;
  height: 0;
}

.key-class-popup .popup-wrap .dummy iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.key-class-popup .popup-control-wrap ~ .popup-inner {
  margin-top: 16px;
}

@media all and (max-width: 1023px) {
  .key-class-popup .btn-popup-close {
    top: -40px;
    width: 24px;
    height: 24px;
    background: url(../assets/images/common/mo/icon_popup_close.png) no-repeat center center;
    background-size: cover;
  }
  .key-class-popup .popup-list {
    width: calc(100% - 32px);
    padding: 16px;
    border-radius: 8px;
  }
  .key-class-popup .btn-popup-prev {
    padding-left: 28px;
  }
  .key-class-popup .btn-popup-prev:after {
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/mo/icon_popup_next_arrow.png) no-repeat center center;
    background-size: cover;
    margin: 0;
    top: 3px;
    bottom: auto;
  }
  .key-class-popup .btn-popup-next {
    padding-right: 28px;
  }
  .key-class-popup .btn-popup-next:after {
    width: 16px;
    height: 16px;
    background: url(../assets/images/common/mo/icon_popup_next_arrow.png) no-repeat center center;
    background-size: cover;
  }
  .key-class-popup .popup-following-name {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
  }
  .key-class-popup .popup-inner {
    max-height: calc(100vh - 400px);
  }
  .key-class-popup .popup-profile-detail {
    top: 24px;
    left: 24px;
  }
  .key-class-popup .popup-profile-name--top {
    font-size: 14px;
    line-height: 22px;
  }
  .key-class-popup .popup-profile-name--bottom {
    margin-top: 4px;
    font-size: 22px;
    line-height: 30px;
  }
  .key-class-popup .popup-birth-date-wrap {
    margin-top: 17px;
  }
  .key-class-popup .popup-birth-date-wrap .birth {
    font-size: 14px;
    line-height: 22px;
  }
  .key-class-popup .popup-birth-date-wrap .date {
    margin-left: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .key-class-popup .popup-accordion-wrap {
    margin-top: 32px;
  }
  .key-class-popup .popup-accordion-wrap .popup-accordion-title {
    font-size: 16px;
    line-height: 26px;
  }
  .key-class-popup .popup-accordion-wrap .accordion-area .c-accordion-menu__depth-01-link {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
  }
  .key-class-popup .popup-accordion-wrap .accordion-area .c-accordion-menu__depth-01-link .company-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
  }
  .key-class-popup .popup-accordion-wrap .accordion-area .item-detail .detail-item {
    padding-left: 14px;
  }
  .key-class-popup .popup-accordion-wrap .accordion-area .item-detail .detail-item + .detail-item {
    margin-top: 0;
  }
  .key-class-popup .popup-control-wrap ~ .popup-inner {
    margin-top: 16px;
  }
  .key-class-popup .popup-accordion-wrap .accordion-area .item-detail .detail-desc {
    line-height: 26px;
  }
  .key-class-popup .popup-title-type-01 {
    font-size: 22px;
    line-height: 30px;
  }
  .key-class-popup .popup-title-date {
    font-size: 14px;
    line-height: 24px;
  }
}
/* start : 개인정보처리방침 */
.key-class-customerinfo.identifiableinfo .cont-area {
  padding-bottom: 0 !important;
}

.key-class-customerinfo .table-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.key-class-customerinfo .table-area .table-tit {
  margin-top: 40px;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 26px !important;
}

.key-class-customerinfo table {
  margin-top: 16px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
}

.key-class-customerinfo table td {
  vertical-align: middle;
  padding: 18px 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  text-align: left;
}

.key-class-customerinfo table tr th {
  background: #f7f7f7;
  color: #222;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  padding: 18px 0;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}

.key-class-customerinfo .table-wrap table thead tr th:last-child {
  border-right: none;
}

.key-class-customerinfo .table-wrap table tbody tr td:last-child {
  border-right: none;
}

.key-class-customerinfo .terms_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
}

.key-class-customerinfo .terms_area .terms-list {
  margin-bottom: 80px;
}

.key-class-customerinfo .terms_area .terms-list:last-child {
  margin-bottom: 0;
}

.key-class-customerinfo .terms_area .terms-list .terms-textbox .terms-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding-bottom: 16px;
}

.key-class-customerinfo .terms_area .terms-list .terms-textbox .terms-subtext {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.key-class-customerinfo .terms_area .terms-list .terms-textbox .terms-detailtx {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.key-class-customerinfo .terms_area .terms-list .terms-textbox .terms-detailtx span > a {
  text-decoration-line: underline !important;
}

.key-class-customerinfo .terms_area .terms-list .terms-textbox span {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  position: relative;
}

.key-class-customerinfo .terms_area .terms-list .terms-textbox span::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.key-class-customerinfo .terms_area .terms-list .terms-textbox span:last-child {
  margin-bottom: 0;
}

.key-class-customerinfo .table-wrap {
  border-top: none !important;
  border-bottom: none !important;
  margin-top: 0 !important;
}

.key-class-customerinfo .terms-list .terms-textbox ul > li {
  position: relative;
  font-size: 16px;
  color: #222;
  line-height: 26px;
  font-weight: 300;
  padding-left: 20px;
}

.key-class-customerinfo .terms-list .terms-textbox ul > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child::before {
  content: "①";
  display: block;
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child + li::before {
  content: "②";
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child + li + li::before {
  content: "③";
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child + li + li + li::before {
  content: "④";
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child + li + li + li + li::before {
  content: "⑤";
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child + li + li + li + li + li::before {
  content: "⑥";
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child + li + li + li + li + li + li::before {
  content: "⑦";
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child + li + li + li + li + li + li + li::before {
  content: "⑧";
}

.key-class-customerinfo .terms-list .terms-textbox ul > li:first-child + li + li + li + li + li + li + li + li::before {
  content: "⑨";
}

.key-class-customerinfo .table-wrap.contacttable-area .line-r {
  border-right: none;
}

.key-class-customerinfo.identifiableinfo .table-wrap .line-b {
  border-bottom: none !important;
}

/* .key-class-customerinfo.identifiableinfo .table-wrap .centerbox {display: flex; align-items: center;} */
@media all and (max-width: 1023px) {
  .key-class-customerinfo .terms_area .terms-list .terms-textbox .terms-subtext {
    font-size: 16px;
    line-height: 26px;
  }
  .key-class-customerinfo .terms_area .terms-list .terms-textbox .terms-text {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 8px;
  }
  .key-class-customerinfo .table-wrap .line-b {
    border-bottom: none !important;
  }
  .key-class-customerinfo table tr th {
    padding: 10px !important;
  }
  .key-class-customerinfo .table-wrap table td {
    padding: 10px !important;
    text-align: left;
  }
  .key-class-customerinfo .terms_area .terms-list {
    margin-bottom: 40px;
  }
  .key-class-customerinfo .table-area .table-tit {
    margin-top: 40px !important;
    font-size: 16px !important;
    line-height: 26px !important;
  }
  .key-class-customerinfo .terms_area .terms-list .terms-text {
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 8px;
  }
  .key-class-customerinfo .terms_area .terms-list .terms-subtext {
    font-size: 16px;
    line-height: 26px;
  }
  .key-class-customerinfo .table-wrap table thead tr td:last-child {
    border-right: none;
  }
  .key-class-customerinfo .table-area table tr th {
    width: 90px;
  }
  .key-class-customerinfo .table-wrap.contacttable-area table td {
    text-align: center;
  }
  .key-class-customerinfo .contacttable-area table tbody tr th {
    width: 80px;
  }
  .key-class-customerinfo .contacttable-area table tbody tr th:last-child {
    border-bottom: none;
  }
  .key-class-customerinfo table tr td {
    font-weight: 300;
    color: #222;
  }
  .key-class-customerinfo .table-wrap table {
    min-width: auto !important;
  }
  .key-class-customerinfo .terms_area .terms-list .terms-textbox .terms-detailtx {
    margin-top: 8px;
  }
}
.key-class-customerinfo .re-new .terms-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.key-class-customerinfo .re-new .terms-index li {
  width: 275px;
  overflow: hidden;
  border-radius: 8px;
}

.key-class-customerinfo .re-new .terms-index li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 120px;
  background-color: #f4f4f4;
  padding: 0 34px;
}

.key-class-customerinfo .re-new .terms-index li a span {
  text-align: center;
}

.key-class-customerinfo .re-new .link-accent {
  display: block;
  color: #222;
  font-weight: 700;
  margin-top: 8px;
}

.key-class-customerinfo .re-new ol.detail-ethics-cont {
  margin-top: 40px;
}

.key-class-customerinfo .re-new ol.detail-ethics-cont li {
  margin-top: 16px;
  font-weight: 300;
}

.key-class-customerinfo .re-new ol.detail-ethics-cont table {
  margin-top: 4px;
}

.key-class-customerinfo .re-new table tbody tr td.text-center {
  text-align: center;
}

.key-class-customerinfo .re-new table tbody tr td span {
  font-weight: 300;
  padding: 0;
}

.key-class-customerinfo .re-new table tbody tr td:first-child span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.key-class-customerinfo .re-new .terms-textbox span::before {
  display: none;
}

@media all and (max-width: 1023px) {
  .key-class-customerinfo .re-new .terms-index li {
    width: 100%;
  }
  .key-class-customerinfo .re-new table col {
    width: auto !important;
  }
  .key-class-customerinfo .re-new table thead {
    display: none;
  }
  .key-class-customerinfo .re-new table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 8px;
  }
  .key-class-customerinfo .re-new table tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #ddd;
    padding: 0 !important;
    overflow: hidden;
    gap: 12px;
  }
  .key-class-customerinfo .re-new table tbody tr td:last-child {
    border-bottom: 0;
  }
  .key-class-customerinfo .re-new table tbody tr td::before {
    content: attr(data-label);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    width: 30%;
    background-color: #f7f7f7;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
  }
  .key-class-customerinfo .re-new table tbody tr td span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70%;
    padding: 8px;
  }
  .key-class-customerinfo .re-new .contacttable-area table tbody tr td:first-child {
    display: none;
  }
}
/* end : 개인정보처리방침 */
/* start : 고객정보취급방침 */
.key-class-customerinfo .customerinfo-infotext {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  white-space: unset !important;
  margin-top: 40px;
}

.key-class-customerinfo .terms-type {
  margin-top: 80px;
}

.key-class-customerinfo .terms-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding-bottom: 16px;
}

.key-class-customerinfo .terms-box {
  padding: 32px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #ddd;
  margin-bottom: 80px;
}

.key-class-customerinfo .terms-type .terms-list {
  margin-bottom: 36px;
}

.key-class-customerinfo .terms-type .terms-list:last-child {
  margin-bottom: 0;
}

.key-class-customerinfo .terms-area .terms-list {
  margin-bottom: 80px;
}

.key-class-customerinfo .terms-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.key-class-customerinfo .terms-subtext {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.key-class-customerinfo .terms-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.key-class-customerinfo .kbcustomer-line {
  border-top: 1px solid #222;
}

.key-class-customerinfo .kbcustomer-line .kb-label {
  padding: 24px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

.key-class-customerinfo .kbcustomer-line .customerline-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.key-class-customerinfo .kbcustomer-line .customerline-box .line-list {
  width: 20%;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  padding-bottom: 24px;
}

.key-class-customerinfo .kbcustomer-line .customerline-box .line-list:nth-child(11) {
  padding-bottom: 0;
}

.key-class-customerinfo .kbcustomer-line .customerline-box .line-list:nth-child(12) {
  padding-bottom: 0;
}

.key-class-customerinfo .kbcustomer-line .customerline-box .line-list:nth-child(13) {
  padding-bottom: 0;
}

.key-class-customerinfo .table-tit {
  cursor: pointer;
}

.key-class-customerinfo .table-area .table-tit.inner {
  cursor: text;
}

.key-class-customerinfo .table-wrap .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.key-class-customerinfo .table-wrap .btn-wrap .close-btn {
  margin-top: 20px;
  width: 100px;
  height: 40px;
  border: 1px solid #222;
  border-radius: 28px;
  font-size: 16px;
}

.key-class-customerinfo .table-wrap.hidden-p.customerinfo,
.key-class-customerinfo .table-wrap.hidden-m.customerinfo,
.key-class-customerinfo .table-wrap.overseas {
  display: none;
}

@media all and (max-width: 1023px) {
  .key-class-customerinfo .customerinfo-infotext {
    white-space: unset;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    margin-top: 24px;
  }
  .key-class-customerinfo .terms-type {
    margin-top: 40px;
  }
  .key-class-customerinfo .terms-text.terms-mid-text {
    padding-bottom: 16px;
  }
  .key-class-customerinfo .terms-text {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 16px !important;
  }
  .key-class-customerinfo .terms-box {
    padding: 24px 0;
    margin-bottom: 40px;
  }
  .key-class-customerinfo .terms-area .terms-list {
    margin-bottom: 40px;
  }
  .key-class-customerinfo .terms-subtext {
    font-size: 16px;
    line-height: 26px;
  }
  .key-class-customerinfo .kbcustomer-line .kb-label {
    padding: 16px 0;
    font-size: 16px;
    line-height: 26px;
  }
  .key-class-customerinfo .kbcustomer-line .customerline-box {
    padding: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .key-class-customerinfo .kbcustomer-line .customerline-box .line-list {
    padding-bottom: 8px;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
  }
  .key-class-customerinfo .kbcustomer-line .customerline-box .line-list:nth-child(11) {
    padding-bottom: 8px;
  }
  .key-class-customerinfo .kbcustomer-line .customerline-box .line-list:nth-child(12) {
    padding-bottom: 8px;
  }
  .key-class-customerinfo .kbcustomer-line .customerline-box .line-list:nth-child(13) {
    padding-bottom: 0;
  }
}
/* end : 고객정보취급방침 */
/* start : 신용정보활용체제 */
.key-class-customerinfo .terms-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 8px;
  color: #222;
}

.key-class-customerinfo .terms-content {
  padding-left: 22px;
}

.key-class-customerinfo .terms-content span {
  color: #222;
  font-weight: 300;
  word-break: break-all;
}

.key-class-customerinfo.creditinfo .terms-label {
  padding-left: 16px;
}

.key-class-customerinfo.creditinfo .board-area .table-wrap {
  border-bottom: none !important;
}

.key-class-customerinfo.creditinfo table th {
  vertical-align: middle;
  background: #f7f7f7;
  font-size: 16px;
  color: #222;
  font-weight: 700;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.key-class-customerinfo.creditinfo .terms-content {
  padding-left: 0;
}

.key-class-customerinfo.creditinfo .cont-area .terms-subtext {
  margin-left: 16px;
}

.key-class-customerinfo.creditinfo .cont-area .terms-subtext.terms-content {
  padding-left: 16px;
}

.key-class-customerinfo.creditinfo .cont-area .terms-subtext .terms-item {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #222;
  display: block;
}

.key-class-customerinfo.creditinfo .cont-area .terms-subtext.indent {
  padding-left: 16px;
}

.key-class-customerinfo.creditinfo .cont-area .terms-subtext.indent .terms-item {
  text-indent: -16px;
  padding-left: 16px;
}

.key-class-customerinfo.creditinfo .cont-area .terms-subtext .terms-item-list {
  padding-left: 16px;
}

.key-class-customerinfo.creditinfo .cont-area .terms-subtext .terms-item-list dl dt {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #222;
}

.key-class-customerinfo.creditinfo .cont-area .terms-subtext .terms-item-list dl dd {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #222;
  text-indent: -16px;
  padding-left: 16px;
  margin-left: 16px;
}

@media all and (max-width: 1023px) {
  .key-class-customerinfo .terms-type {
    margin-top: 80px !important;
  }
  .key-class-customerinfo .terms-label {
    font-size: 16px !important;
    line-height: 26px;
  }
  .key-class-customerinfo .terms-content {
    padding-left: 0;
  }
  .key-class-customerinfo.creditinfo .terms-label {
    padding-left: 8px;
  }
  .key-class-customerinfo.creditinfo .cont-area .terms-subtext {
    margin-left: 8px;
  }
  .key-class-customerinfo.creditinfo .cont-area .terms-subtext.terms-content {
    padding-left: 0;
  }
  .key-class-customerinfo.creditinfo .cont-area .terms-subtext.indent {
    padding-left: 8px;
  }
  .key-class-customerinfo.creditinfo .cont-area .terms-subtext.indent .terms-item {
    text-indent: -8px;
    padding-left: 8px;
  }
  .key-class-customerinfo.creditinfo .cont-area .terms-subtext .terms-item-list {
    padding-left: 8px;
  }
  .key-class-customerinfo.creditinfo .cont-area .terms-subtext .terms-item-list dl dd {
    text-indent: -8px;
    padding-left: 8px;
    margin-left: 8px;
  }
}
/* end : 신용정보활용체제 */
.sub .contents .sub-page.key-class-list-tcfd .cont-area .report-area .report-header .report-item + .report-item {
  margin-top: 40px;
}

.sub
  .contents
  .sub-page.key-class-list-tcfd
  .cont-area
  .report-area
  .report-header
  .report-item
  .report-box
  .view
  .t-area
  .t-tit {
  font-size: 22px;
  line-height: 32px;
}

.sub
  .contents
  .sub-page.key-class-list-tcfd
  .cont-area
  .report-area
  .report-header
  .report-item
  .report-box
  .view
  .t-area
  .t-desc {
  font-size: 16px;
}

@media all and (max-width: 1023px) {
  .sub .contents .sub-page.key-class-list-tcfd .cont-area .report-area .report-header .report-item {
    padding: 24px;
    border-radius: 8px;
  }
  .sub .contents .sub-page.key-class-list-tcfd .cont-area .report-area .report-header .report-item + .report-item {
    margin-top: 16px;
  }
  .sub
    .contents
    .sub-page.key-class-list-tcfd
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .t-area
    .t-tit {
    font-size: 18px;
  }
  .sub
    .contents
    .sub-page.key-class-list-tcfd
    .cont-area
    .report-area
    .report-header
    .report-item
    .report-box
    .view
    .t-area
    .t-desc {
    font-size: 16px;
    line-height: 26px;
  }
}
.sub--error {
  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;
  width: 100%;
  height: 100vh;
  padding: 0 16px;
  overflow: hidden;
}

.sub--error .contents {
  text-align: center;
}

.sub--error .contents h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  color: #222;
}

@media (max-width: 1023px) {
  .sub--error .contents h1 {
    font-size: 18px;
    line-height: 28px;
  }
}
.sub--error .contents p {
  padding-top: 32px;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}

@media (max-width: 1023px) {
  .sub--error .contents p {
    padding-top: 24px;
    font-size: 14px;
    line-height: 22px;
  }
}
.sub--error .contents .c-btn--home {
  max-width: 300px;
  height: 56px;
  line-height: 56px;
  margin: 80px auto 0;
  border: 1px solid #222;
  border-radius: 28px;
}

@media (max-width: 1023px) {
  .sub--error .contents .c-btn--home {
    margin: 40px auto 0;
    height: 40px;
    line-height: 40px;
  }
}
.sub--error .contents .c-btn--home a {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .sub--error .contents .c-btn--home a {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .sub--ir_investor .contents .sub-visual {
    min-height: auto;
  }
}
.sub--ir_investor .contents .sub-visual .inner .visual-txt .page-desc {
  margin-top: 8px;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-header .header-list li .report-item {
  margin-top: 0;
  padding: 22px 24px 0 24px;
}

@media all and (max-width: 1311px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-header .header-list li .report-item {
    padding: 27px 24px 0 24px;
  }
}
@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-header .header-list li .report-item {
    padding: 3px 16px 0 16px;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-header .header-list li .report-box {
  padding-top: 0;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail {
    margin-top: 16px;
  }
}
@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list {
    display: block;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li {
  max-height: 320px;
  margin-top: 0;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li + li {
  margin-left: 20px;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(odd) {
  margin-top: 0;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(3) {
  margin-left: 20px;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(4) {
  margin-left: 0;
  margin-top: 20px;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(5) {
  margin-top: 20px;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(6) {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(3) {
    margin-top: 20px;
    margin-left: 0;
  }
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(4) {
    margin-left: 20px;
  }
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(5) {
    margin-left: 0;
  }
}
@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li {
    width: 100%;
  }
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li + li {
    margin-top: 16px;
    margin-left: 0;
  }
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(3) {
    margin-top: 16px;
    margin-left: 0;
  }
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(4) {
    margin-top: 16px;
    margin-left: 0;
  }
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(5) {
    margin-top: 16px;
    margin-left: 0;
  }
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li:nth-child(6) {
    margin-top: 16px;
    margin-left: 0;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li .report-item {
  position: relative;
  height: 100%;
  min-height: 320px;
  padding: 24px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-detail .detail-list li .report-item {
    padding: 16px;
    border-radius: 8px;
    min-height: auto;
    height: auto;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .category {
  padding-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  border-bottom: 1px solid #888;
  color: #222;
  background: url(/kor/images/sub/pc/icon_right_2x.png) no-repeat;
  background-position: 100% 20%;
  background-size: 16px 16px;
}

.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .category.arrow-none {
  background: none;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .category {
    padding-bottom: 12px;
    font-size: 18px;
    line-height: 28px;
    background-size: 16px 16px;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .dot-list {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .dot-list {
    display: block;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .dot-list
  p
  + p {
  margin-top: 16px;
}

.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .dot-list
  .list-item {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #222;
  display: inline-block;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .dot-list
    .list-item {
    font-size: 16px;
    line-height: 26px;
  }
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .dot-list {
    margin-top: 24px;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .dot-list
  .list-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .tit {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-overflow: initial;
  white-space: normal;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .tit {
    padding-top: 24px;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .desc {
  padding-top: 8px;
  color: #222;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area
    .desc {
    font-size: 16px;
    line-height: 26px;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area
  .desc--date {
  color: #666;
}

.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .txt-area--news
  .date {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #666;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .txt-area--news
    .date {
    position: static;
    padding-top: 0;
    font-size: 14px;
    line-height: 24px;
    position: static;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area {
  position: absolute;
  left: 30px;
  bottom: 30px;
  text-align: left;
  color: #222;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area {
    position: static;
    margin-top: 28px;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area--many {
  margin-top: 94px;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area--many {
    margin-top: 28px;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area--many
  ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area--many
    ul {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area--many
  ul
  li {
  float: inherit;
}

.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area--many
  ul
  li
  + li {
  margin-left: 24px;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area--many
    ul
    li
    + li {
    margin-left: 16px;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a {
  width: auto;
  padding-left: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  background: url(/kor/images/sub/pc/icon_clip.png) center right 0px no-repeat;
  background-size: 16px 16px;
}

:lang(jp)
  .sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a,
:lang(zh)
  .sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a {
  background: url(/kor/images/sub/pc/icon_clip.png) no-repeat top 6px right;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a {
    font-size: 16px;
    line-height: 26px;
    background-size: 16px 16px;
  }
  :lang(jp)
    .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a,
  :lang(zh)
    .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a {
    background: url(/kor/images/sub/pc/icon_clip.png) no-repeat top 6px right;
    background-size: 16px 16px;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a.view {
  background: url(../assets/images/common/pc/icon_outlink_16.svg) no-repeat right top 4px;
  background-size: 16px 16px;
}

:lang(jp)
  .sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a.view,
:lang(zh)
  .sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-detail
  .detail-list
  li
  .report-item
  .report-box
  .view
  .btn-area
  ul
  li
  a.view {
  background: url(/kor/images/sub/pc/icon_clip.png) no-repeat top 6px right;
  background-size: 16px 16px;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a.view {
    background: url(../assets/images/common/pc/icon_outlink_16.svg) no-repeat right top 4px;
    background-size: 16px 16px;
  }
  :lang(jp)
    .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a.view,
  :lang(zh)
    .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-detail
    .detail-list
    li
    .report-item
    .report-box
    .view
    .btn-area
    ul
    li
    a.view {
    background: url(/kor/images/sub/pc/icon_clip.png) no-repeat top 6px right;
    background-size: 16px 16px;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom {
  width: 100%;
  background: #f7f7f7;
  border-radius: 12px;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding: 40px 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area {
    display: block;
    margin-top: 16px;
    padding: 16px;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #222;
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li {
    font-size: 12px;
    line-height: 20px;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .tit {
  padding-bottom: 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
  color: #222;
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .tit {
    font-size: 20px;
    line-height: 30px;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list {
    display: block;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list b {
  color: #222;
  font-size: 16px;
  line-height: 26px;
}

.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-bottom
  .bottom-area
  li
  .bottom-list
  b:nth-of-type(1) {
  display: inline-block;
  margin-right: 10px;
  color: #222;
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list b {
    font-size: 16px;
    line-height: 26px;
  }
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-bottom
    .bottom-area
    li
    .bottom-list
    b:nth-of-type(1) {
    margin-right: 8px;
  }
}
.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-bottom
  .bottom-area
  li
  .bottom-list
  b:nth-of-type(2) {
  color: #222;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-bottom
    .bottom-area
    li
    .bottom-list
    b:nth-of-type(2) {
    color: #222;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list .address {
  position: relative;
  padding-right: 16px;
}

.sub--ir_investor
  .contents
  .sub-page
  .cont-area
  .report-area
  .report-bottom
  .bottom-area
  li
  .bottom-list
  .address::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1px;
  height: 16px;
  background: #888;
}

@media (max-width: 1023px) {
  .sub--ir_investor
    .contents
    .sub-page
    .cont-area
    .report-area
    .report-bottom
    .bottom-area
    li
    .bottom-list
    .address::after {
    display: none;
  }
}
@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list .address {
    padding-right: 0;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list .email {
  margin-left: 16px;
}

.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list .email a {
  display: inline-block;
  color: #222;
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list .email a {
    color: #222;
  }
}
@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .bottom-list .email {
    margin-left: 0;
    margin-top: 8px;
  }
}
.sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .ask {
  display: inline-block;
  padding-right: 24px;
  background: url(/kor/images/sub/pc/icon_right_black_x2.png) top 3px right 0px no-repeat;
  background-size: 16px 16px;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .sub--ir_investor .contents .sub-page .cont-area .report-area .report-bottom .bottom-area li .ask {
    margin-top: 28px;
    padding-right: 14px;
    background: url(/kor/images/sub/pc/icon_right_black_x2.png) top 5px right -4px no-repeat;
    background-size: 16px 16px;
    font-size: 14px;
  }
}
.sub--ie-error {
  position: relative;
  width: 100%;
  height: 100vh;
}

.ie-error {
  position: relative;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 1420px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1023px) {
  .ie-error {
    padding: 0 16px;
  }
}
.ie-error__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 40px;
  color: #222;
  white-space: pre-line;
  text-align: center;
}

@media (max-width: 1023px) {
  .ie-error__title {
    font-size: 18px;
    line-height: 28px;
    white-space: normal;
  }
}
.ie-error__desc {
  margin-top: 32px;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #222;
  white-space: pre-line;
  text-align: center;
}

@media (max-width: 1023px) {
  .ie-error__desc {
    margin-top: 24px;
    font-size: 14px;
    line-height: 22px;
    white-space: normal;
  }
}
.ie-error__link-wrap {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .ie-error__link-wrap {
    margin-top: 40px;
  }
}
.ie-error__link-list {
  text-align: center;
}

.ie-error__link-item {
  display: inline-block;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
}

.ie-error__link-item + .ie-error__link-item {
  margin-left: 20px;
}

@media (max-width: 1023px) {
  .ie-error__link-item + .ie-error__link-item {
    margin-left: 0;
    margin-top: 8px;
  }
}
.ie-error__link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px;
}

@media (max-width: 1023px) {
  .ie-error__link {
    padding: 24px;
  }
}
.ie-error__link-figure {
  width: 100%;
}

.ie-error__link-img {
  width: 100%;
}

.ie-error__link-desc {
  display: inline-block;
  position: relative;
  margin-top: 28px;
  padding-right: 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}

@media (max-width: 1023px) {
  .ie-error__link-desc {
    margin-top: 20px;
    padding-right: 12px;
    font-size: 12px;
    line-height: 18px;
  }
}
.ie-error__link-desc:after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(../assets/images/common/pc/icon_ie_error_arrow.png) no-repeat center center;
  background-size: cover;
}

@media (max-width: 1023px) {
  .ie-error__link-desc:after {
    top: -2px;
    width: 12px;
    height: 12px;
    background: url(../assets/images/common/mo/icon_ie_error_arrow.png) no-repeat center center;
    background-size: cover;
  }
}
@media (max-width: 640px) {
  .can-h-scroll .active-horizontal-scroll-parent {
    overflow-x: scroll;
  }
  .can-h-scroll .active-horizontal-scroll {
    width: 590px !important;
  }
  .can-h-scroll .single-table-wrap {
    overflow-x: scroll;
  }
  .can-h-scroll .single-table-wrap > table {
    width: 590px !important;
  }
}
.notice-popup__container[aria-haspopup="false"] {
  display: none;
}

.notice-popup__container[aria-haspopup="true"] {
  display: block;
}

.notice-popup__container.type--1 {
  position: absolute;
  top: 140px;
  left: 13vw;
  z-index: 20;
}

.notice-popup__container.type--1 button {
  width: 50%;
  padding: 15px;
}

.notice-popup__container.type--1 .notice-popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  width: 450px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.notice-popup__container.type--1 .notice-popup__contents {
  text-align: center;
  padding: 20px;
}

.notice-popup__container.type--1 .notice-popup__contents h2,
.notice-popup__container.type--1 .notice-popup__contents h3 {
  margin-top: 2rem;
  font-weight: 700;
}

.notice-popup__container.type--1 .notice-popup__contents time {
  display: block;
  margin-top: 0.5rem;
  font-weight: 700;
}

.notice-popup__container.type--1 .notice-popup__contents p {
  margin-top: 2rem;
}

.notice-popup__container.type--1 .notice-popup__contents figure {
  margin-top: 2rem;
}

.notice-popup__container.type--1 .notice-popup__contents figure figcaption {
  text-align: left;
  text-indent: 3rem;
}

.notice-popup__container.type--1 .notice-popup__contents figure ul,
.notice-popup__container.type--1 .notice-popup__contents figure ol {
  text-align: left;
  text-indent: 3rem;
}

.notice-popup__container.type--1 .notice-popup__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.notice-popup__container.type--1 .notice-popup__hide-today-btn {
  background: #e7e7e7;
}

.notice-popup__container.type--1 .notice-popup__close-btn {
  background: #ffcc00;
}

@media (max-width: 1023px) {
  .notice-popup__container.type--1 {
    top: 65px;
    left: 6vw;
  }
  .notice-popup__container.type--1 .notice-popup__wrapper {
    width: 88vw;
    border-radius: 8px;
  }
  .notice-popup__container.type--1 .notice-popup__contents figure figcaption,
  .notice-popup__container.type--1 .notice-popup__contents figure ul,
  .notice-popup__container.type--1 .notice-popup__contents figure ol {
    text-indent: 0;
  }
}
.notice-popup__container.type--2 {
  position: absolute;
  top: 140px;
  left: 13vw;
  z-index: 20;
}

.notice-popup__container.type--2 .notice-popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.notice-popup__container.type--2 .notice-popup__contents {
  padding: 2vw 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.notice-popup__container.type--2 .notice-popup__contents h2 {
  font-weight: 700;
  line-height: 35px;
}

.notice-popup__container.type--2 .notice-popup__contents h3 {
  font-weight: 700;
  font-size: 2rem;
}

.notice-popup__container.type--2 .notice-popup__contents .time__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.notice-popup__container.type--2 .notice-popup__contents .time__container time {
  font-weight: 700;
}

.notice-popup__container.type--2 .notice-popup__contents a {
  display: block;
  padding: 1rem;
  width: 100%;
  border: 1px solid #222;
  border-radius: 10px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.notice-popup__container.type--2 .notice-popup__contents a span {
  color: #222;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.notice-popup__container.type--2 .notice-popup__contents a:hover {
  background-color: #222;
}

.notice-popup__container.type--2 .notice-popup__contents a:hover span {
  color: #fff;
}

@media (max-width: 1023px) {
  .notice-popup__container.type--2 {
    top: 160px;
    left: 6vw;
  }
  .notice-popup__container.type--2 .notice-popup__wrapper {
    width: 88vw;
    height: 440px;
    border-radius: 8px;
  }
  .notice-popup__container.type--2 .notice-popup__contents a {
    width: 50%;
  }
}
/* 공통 UI */
.section__inner,
.section__inner--accent {
  padding: 24px;
}

.section__inner--accent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.text__paragraph {
  font-size: 16px;
  line-height: 1.4;
}

.ui__button,
.ui__button--download {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 12px 24px;
  line-height: 1;
  border-radius: 9999px;
  border: 1px solid #ddd;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  cursor: pointer;
}

.ui__button:hover,
.ui__button--download:hover {
  background-color: #222;
  color: #fff;
}

.ui__button--download {
  padding-right: 36px;
}

.ui__button--download::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 2%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  background: url(../assets/images/common/pc/icon_clip.png) no-repeat;
  background-size: 16px;
}

.ui__button--download:hover::after {
  background: url(../assets/images/common/pc/icon_clip_white.png) no-repeat;
  background-size: 16px;
}
