@charset "UTF-8";

/* common */
@keyframes posY-100-up {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes posY-110per-up {
  from {
    opacity: 0;
    transform: translateY(110%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scale {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.ani {
  opacity: 0;
}

.ani.active {
  opacity: 1;
  animation: posY-100-up 0.8s ease-out both;
}

.mo {
  display: none !important;
}

.wrap {
  position: relative;
}

#content {
  padding: 121px 0 500px;
  overflow: hidden;
}

.header-inner {
  margin: 0 auto;
  position: relative;
  padding: 0 4.11458vw;
}

.content-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

#content .content-inner {
  width: 1280px;
  max-width: 1280px !important;
}

#content .content-inner2 {
  margin: 0 auto;
  position: relative;
  width: 1280px;
  max-width: 100%;
  padding: 0 40px;
}

@media screen and (max-width: 1500px) {
  #content {
    padding: 8.066666666666667vw 0 32vw;
  }
}

@media screen and (max-width: 1280px) {
  .header-inner {
    padding: 0 3.4769vw;
  }

  .content-inner {
    max-width: 100%;
    padding: 0 3.4769vw;
  }

  #content .content-inner2 {
    padding: 0 3.4769vw;
  }
}

@media screen and (max-width: 1024px) {
  @keyframes posY-100-up {
    from {
      opacity: 0;
      transform: translateY(10.526vw);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .header-inner {
    max-width: 100%;
    padding: 0 2.607vw;
  }

  #content {
    padding: 9vw 0 32vw;
  }

  .content-inner {
    max-width: 100%;
    padding: 0 2.607vw;
  }
}

@media screen and (max-width: 767px) {
  @keyframes posY-100-up {
    from {
      opacity: 0;
      transform: translateY(70px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #content {
    padding: calc(26.4033264033264vw - 11.01871101871102vw) 0 50vw;
  }

  #content .content-inner {
    width: 481px;
    max-width: 481px !important;
  }

  #popup {
    right: 5% !important;
    left: 5% !important;
  }

  .pc {
    display: none !important;
  }

  .mo {
    display: inline-block !important;
  }

  .header-inner {
    padding: 0 4.25vw;
  }

  .content-inner {
    padding: 0 4.25vw;
  }
}

/* header */
#header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  background: #1c1c1c;
  transition-property: transform;
  transition-duration: 0.3s;
}

.header-inner .wrap {
  height: 121px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .logo {
  line-height: 0;
  width: 14vw;
}

.gnb {
  text-align: center;
  height: 100%;
}

.gnb nav {
  height: 100%;
}

.gnb nav ul {
  height: 100%;
}

.gnb li {
  height: 100%;
  display: inline-block;
}

.gnb li a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  height: 100%;
}

.gnb li a span {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  text-transform: uppercase;
  background-image: linear-gradient(#fff, #fff);
  background-position: left bottom;
  background-size: 0% 2px;
  background-repeat: no-repeat;
  transition-property: background-size;
  transition-duration: 0.3s;
}

.gnb li a:hover span {
  background-size: 100% 2px;
}

.lnb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 121px;
  padding: 30px 0 40px;
  background: #262626;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  z-index: 5;
  transition-property: transform, visibility, opacity;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

#header.on .lnb {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.lnb nav>ul {
  display: flex;
  justify-content: space-between;
  font-size: 0;
}

.lnb nav>ul>li {
  text-align: left;
}

.lnb nav>ul>li>a {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: 3;
  text-transform: uppercase;
}

.lnb nav>ul>li.on>a {
  color: #1d7fdf;
}

.lnb nav .sub-menu.block {
  display: block;
}

.lnb nav .sub-menu>li>a {
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 2;
  text-transform: uppercase;
  background-image: linear-gradient(#fff, #fff);
  background-position: left bottom;
  background-size: 0% 2px;
  background-repeat: no-repeat;
  transition-property: background-size;
  transition-duration: 0.3s;
}

.lnb nav .sub-menu>li>a:hover {
  background-size: 100% 2px;
}

.lnb nav .sub-menu>li.on>a {
  background-size: 100% 2px;
}

.header-right {
  display: flex;
  align-items: center;
}

.lang {
  font-size: 0;
  margin-right: 30px;
}

.lang li {
  position: relative;
  display: inline-block;
}

.lang li:first-child:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background: #fff;
  position: absolute;
  top: 52%;
  right: -0.5px;
  transform: translateY(-50%);
}

.lang li a {
  padding: 2px 8px;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  line-height: 1.5;
  color: #656565;
}

.lang li.active a {
  color: #fff;
}

#menu-btn {
  width: 29.5px;
  height: 29.5px;
  font-size: 0;
}

#menu-btn .btn-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 20px;
}

#menu-btn .line {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

#menu-btn .line:nth-child(1) {
  top: 0;
}

#menu-btn.on .line:nth-child(1) {
  left: -5%;
  width: 110%;
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}

#menu-btn .line:nth-child(2) {
  top: calc(50% - 1px);
}

#menu-btn.on .line:nth-child(2) {
  opacity: 0;
}

#menu-btn .line:nth-child(3) {
  bottom: 0;
  margin-bottom: 0;
}

#menu-btn.on .line:nth-child(3) {
  left: -5%;
  width: 110%;
  transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

@media screen and (max-width: 1500px) {
  #header .content-inner {
    padding: 0 4.11458vw;
  }

  .header-inner .wrap {
    height: 8.066666666666667vw;
  }

  #header .logo {
    width: 14vw;
  }

  .gnb li a {
    padding: 0 1.2vw;
  }

  .gnb li a span {
    font-size: 1.2vw;
  }

  .lang {
    margin-right: 2vw;
  }

  .lang li a {
    padding: 0.1333333333333333vw 0.5333333333333333vw;
    font-size: 1.066666666666667vw;
  }

  .lang li:first-child:after {
    height: 0.8vw;
  }

  #menu-btn {
    width: 1.933333333333333vw;
    height: 1.933333333333333vw;
  }

  #menu-btn .btn-wrap {
    height: 1.5vw;
  }

  .lnb {
    margin-top: 8.066666666666667vw;
    padding: 2vw 0 2.666666666666667vw;
  }

  .lnb nav>ul>li>a {
    font-size: 1.066666666666667vw;
  }

  .lnb nav .sub-menu>li>a {
    margin-bottom: 0.4666666666666667vw;
    font-size: 0.9333333333333333vw;
    background-size: 0% 0.1333333333333333vw;
  }

  .lnb nav .sub-menu>li.on>a {
    background-size: 100% 0.1333333333333333vw;
  }
}

@media screen and (max-width: 1280px) {
  #header .content-inner {
    padding: 0 3.4769vw;
  }
}

@media screen and (max-width: 1024px) {
  .gnb {
    display: none;
  }

  .header-inner .wrap {
    height: 9vw;
  }

  #header .logo {
    width: 12vw;
  }

  .lang li a {
    padding: 0.2vw 0.7vw;
    font-size: 1.7vw;
  }

  .lang li:first-child:after {
    height: 1.5vw;
  }

  #menu-btn {
    width: 2.9296875vw;
    height: 2.9296875vw;
  }

  #menu-btn .btn-wrap {
    height: 1.708984375vw;
  }

  .lnb::-webkit-scrollbar {
    display: none;
  }

  .lnb {
    margin-top: 9vw;
    padding: 4.58984375vw 0;
    height: calc(100vh - 9vw);
    transform: scale(1);
    overflow: hidden;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #header .content-inner {
    padding: 0 2.607vw;
  }

  .lnb nav>ul {
    display: block;
  }

  .lnb nav>ul>li {
    padding: 1.47vw 0;
  }

  .lnb nav>ul>li>a {
    position: relative;
    font-weight: 500;
    text-transform: initial;
    display: block;
    font-size: 3.41796875vw;
    line-height: 2;
  }

  .lnb nav>ul>li>a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2.529296875vw;
    height: 2.529296875vw;
  }

  .lnb nav>ul>li:not(.no-sub)>a:after {
    height: 1px;
    background: #fff;
  }

  .lnb nav>ul>li:not(.no-sub)>a:before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(1.2646484375vw - 0.5px);
    transform: translateY(-50%);
    width: 1px;
    height: 2.529296875vw;
    background: #fff;
  }

  .lnb nav>ul>li.no-sub>a:after {
    height: 2.392578125vw;
    background: url(../img/common/menu_icon_arrow.png) center no-repeat;
    background-size: auto 100%;
  }

  .lnb nav>ul>li.on>a:before {
    display: none;
  }

  .lnb nav .sub-menu {
    display: none;
    padding: 1.47vw 0 2.5vw;
  }

  .lnb nav .sub-menu>li {
    padding: 0 3.515625vw;
  }

  .lnb nav .sub-menu>li>a {
    margin-bottom: 1.5vw;
    font-size: 1.953125vw;
    line-height: 2.1;
    transition: none;
  }

  .lnb nav .sub-menu>li>a:hover {
    background-size: 0;
  }

  .lnb nav .sub-menu>li.on>a {
    background-size: 100% 2px;
  }
}

@media screen and (max-width: 767px) {
  #header .content-inner {
    padding: 0 4.25vw;
  }

  .header-inner .wrap {
    /*padding-top: 11.01871101871102vw;*/
    height: calc(26.4033264033264vw - 11.01871101871102vw);
  }

  #header .logo {
    width: 24vw;
  }

  .lang li a {
    padding: 0.2vw 2vw;
    font-size: 4.365904365904366vw;
  }

  .lang li:first-child:after {
    height: 3.5vw;
  }

  #menu-btn {
    width: 6.174636174636175vw;
    height: 6.174636174636175vw;
  }

  #menu-btn .btn-wrap {
    height: 4.158004158004158vw;
  }

  .lnb {
    margin-top: calc(26.4033264033264vw - 11.01871101871102vw);
    height: calc(100vh - 26.4033264033264vw + 11.01871101871102vw);
    padding: 7vw 0 calc(14vw + 100px);
  }

  .lnb nav>ul>li {
    padding: 3vw 0;
  }

  .lnb nav>ul>li>a:after {
    width: 5.384615384615385vw;
    height: 5.384615384615385vw;
  }

  .lnb nav>ul>li:not(.no-sub)>a:before {
    right: calc(2.692307692307693vw - 0.5px);
    transform: translateY(-50%);
    height: 5.384615384615385vw;
  }

  .lnb nav>ul>li.no-sub>a:after {
    height: 5.384615384615385vw;
  }

  .lnb nav>ul>li>a {
    font-size: 7.276507276507277vw;
  }

  .lnb nav .sub-menu {
    padding: 3vw 0 4vw;
  }

  .lnb nav .sub-menu>li {
    padding: 0 7.484407484407484vw;
  }

  .lnb nav .sub-menu>li>a {
    margin-bottom: 3.5vw;
    font-size: 4.158004158004158vw;
  }

  .lnb nav .sub-menu>li.on>a {
    background-size: 100% 2px;
  }
}

/* sub visual */
.sub-visual {
  padding-top: 110px;
}

.sub-visual .visual-text {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: baseline;
}

.sub-visual .visual-text .location {
  font-size: 0;
}

.sub-visual .visual-text .location li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.sub-visual .visual-text .location li a {
  position: relative;
  opacity: 0.62;
  font-size: 14px;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.sub-visual .visual-text .location li a:after {
  content: ">";
  margin: 0 10px;
}

.sub-visual .visual-text .location li:last-child a:after {
  display: none;
}

#page-title {
  font-size: 60px;
  line-height: 1.3;
  font-weight: bold;
  white-space: nowrap;
}

.sub-visual .visual-bg {
  position: relative;
  margin-top: 33px;
  height: 427px;
  animation: fadeIn 0.4s 0.2s ease both;
}

.sub-visual .visual-bg span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100vw;
  height: 100%;
  background-size: cover !important;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .sub-visual {
    padding-top: 35px;
  }

  .sub-visual .visual-bg {
    margin-top: 22px;
    height: 263px;
  }

  .sub-visual .visual-text {
    display: block;
  }

  #page-title {
    margin-top: 61px;
    font-size: 40px;
  }

  .sub-visual .visual-text .location {
    text-align: right;
  }

  .sub-visual .visual-text .location li a {
    font-size: 16px;
    line-height: 1.46;
  }

  .sub-visual .visual-text .location li a:after {
    margin: 0 6px;
  }
}

/* page-description */
.page-description {
  padding: 186px 0 191px;
  animation: posY-100-up 0.8s ease-out both;
}

.page-description P {
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  text-align: center;
}

.page-description p>span {
  display: block;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.73;
  text-align: center;
  animation: posY-110per-up 0.6s ease-out both;
}

.page-description p>span span.block {
  display: block;
  height: 30px;
}

@media screen and (max-width: 767px) {
  .page-description {
    padding: 156px 0;
  }

  .page-description p>span {
    font-size: 22px;
    line-height: 1.6;
  }

  .page-description p span br {
    display: none;
  }
}

/* footer */
#footer {
  background: #cecece;
}

#footer .wrap {
  padding: 45px 0;
  display: flex;
  justify-content: space-between;
}

#footer .text-box {
  font-size: 0;
}

#footer .logo {
  display: inline-block;
  vertical-align: middle;
  width: 10vw;
  margin-right: 20px;
}

#footer .copyright {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.36;
  color: #8e8e8e;
}

#footer .footer-info {
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
}

#footer .footer-info li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.43;
  letter-spacing: -0.7px;
  color: #454545;
}

@media screen and (max-width: 1280px) {
  #footer .wrap {
    padding: 3.461538461538462vw 0;
  }

  #footer .logo {
    margin-right: 1.538461538461538vw;
    width: 14vw;
  }

  #footer .footer-info {
    margin-left: 2.307692307692308vw;
  }

  #footer .copyright,
  #footer .footer-info li {
    font-size: 1.076923076923077vw;
  }

  #footer .footer-info li {
    letter-spacing: -0.0538461538461538vw;
  }
}

@media screen and (max-width: 1024px) {
  #footer .wrap {
    display: block;
  }

  #footer .logo {
    width: 12vw;
  }

  #footer .footer-info {
    margin-top: 2vw;
  }

  #footer .footer-info:first-child {
    margin-left: 0;
  }

  #footer .copyright,
  #footer .footer-info li {
    font-size: 1.5625vw;
  }
}

@media screen and (max-width: 767px) {
  #footer .wrap {
    padding: 2.910602910602911vw 0 7.1vw;
    font-size: 0;
  }

  #footer .mo h1 {
    font-size: 5.6vw;
    color: #000;
  }

  #footer .mo h4 {
    color: #000;
    font-size: 4.6vw;
    line-height: 1;
    margin-bottom: 16vw;
  }

  #footer .mo {
    display: block !important;
    font-size: 0;
  }

  #footer .mo ul {
    padding-bottom: 3.991683991683992vw;
    border-bottom: solid 1px #7b7b7b;
  }

  #footer .mo ul li {
    display: inline-block;
  }

  #footer .mo ul li a {
    position: relative;
    padding: 0 2.079002079002079vw;
    font-size: 2.910602910602911vw;
    font-weight: 300;
    line-height: 1.43;
    letter-spacing: -0.1455301455301455vw;
    color: #000;
  }

  #footer .mo ul li a:first-child {
    padding-left: 0;
  }

  #footer .mo ul li a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.2079002079002079vw;
    height: 2.494802494802495vw;
    background: #000;
  }

  #footer .mo ul li:last-child a:after {
    display: none;
  }

  #footer .logo {
    margin-right: 0;
    margin-top: 6.964656964656965vw;
    width: 21vw;
  }

  #footer .copyright {
    display: none;
  }

  #footer .footer-info {
    margin: 0;
  }

  #footer .footer-info:first-child {
    margin-top: 2.993762993762994vw;
  }

  #footer .footer-info:nth-child(2) {
    margin-top: 1.663201663201663vw;
  }

  #footer .footer-info li {
    font-size: 2.286902286902287vw;
  }

  #footer .footer-info li {
    letter-spacing: -0.0538461538461538vw;
    line-height: 1.45;
    letter-spacing: -0.1143451143451143vw;
    color: #000;
  }

  #footer .copyright.mo {
    margin-top: 6.403326403326403vw;
    font-size: 1.871101871101871vw;
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: -0.1143451143451143vw;
    color: #000;
  }
}