@charset "utf-8";

/* 스킵 메뉴 */
#skip {
  position: absolute;
  top: -10.5em;
  left: 0;
  z-index: 100001;
  width: 100%;
  margin: 0 auto;
  list-style: none;
  font-size: 1.15em;
}

:focus-visible {
  outline: 3px dotted rgb(0, 0, 0);
}

#skip a:focus-visible,
#skip a:active {
  overflow: visible;
  position: absolute;
  top: 10.5em;
  z-index: 100001;
  width: 100%;
  height: 2em;
  margin: 2px -2px 0;
  background: #333;
  color: #fff;
  padding-top: 0.5em;
  text-align: center;
  clip: unset;
  outline: 3px dotted rgb(0, 0, 0);
}

/* 드래그 */
::selection {
  background: #d6d6d6;
  color: #000;
  text-shadow: none;
}

::-moz-selection {
  background: #d6d6d6;
  color: #000;
  text-shadow: none;
}

::-webkit-selection {
  background: #d6d6d6;
  color: #000;
  text-shadow: none;
}

/* 로고 인트로 */
body .loading-bar {
  display: flex;
  visibility: visible;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000000;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  background-color: #fff;
  opacity: 1;
  transition: all 0.7s ease;
}

body .loading-bar .logo-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25vw;
  transform: translate(-50%, -50%);
}

body .loading-bar.off {
  visibility: hidden;
  opacity: 0;
}

body {
  overflow: hidden;
  min-width: 320px;
}

body .header,
body .main,
body .footer {
  visibility: hidden;
  opacity: 0;
}

/* 마우스 커서 */
.cursor {
  position: fixed;
  top: -10px;
  left: -10px;
  z-index: 999999;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-100%, -100%);
  /* display: none; */
  transition: all 0.1s ease-out;
  pointer-events: none;
  opacity: 1;
}

.cursor.active {
  width: 100px;
  height: 100px;
  transform: translate(0, 0);
  transition: all .1s ease-out;
  opacity: 1;
}

.cursor.active::after {
  content: "more";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  background-color: #000;
  border-radius: 999px;
}

/* 헤더 영역 공통 스타일 */
[class*="word-split_"] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

@media screen and (max-width: 1600px) {
  [class*="word-split_"] {
    font-size: 1.125rem;
  }
}

.logo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 4.625rem;
  height: 100%;
  padding: 0 2.5rem;
  background: url("../image/logo.svg") no-repeat center / 5rem auto;
}

@media screen and (max-width: 959px) {
  .logo {
    width: 3.875rem;
    padding-inline: 40px;
    background-size: 68px auto;
  }
}

@media screen and (max-width: 719px) {
  .logo {
    padding-inline: 20px;
  }
}

.capital-letter {
  text-transform: capitalize;
}

.header {
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 100000;
  align-items: center;
  width: 100%;
  height: 5.375rem;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
  background-color: #fff;
}

.header-inner {
  display: flex;
  position: relative;
  justify-content: end;
  height: 100%;
}


@media screen and (max-width: 1920px) {
  .header {
    height: 4.5vw;
  }
}

@media screen and (min-width: 1920px) {
}

/* @media screen and (max-width: 1600px) {
  .header {
    height: 4.5vw;
  }
} */

@media screen and (max-width: 1439px) {
  .header {
    height: 5rem;
  }
}

@media screen and (max-width: 959px) {
  .header {
    height: 4.375rem;
  }
}

.gnb-nav {
  height: 100%;
  font-size: 1.25rem;
}

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

.gnb-nav .list {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2.5rem;
}

.gnb-nav .item {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
}

.gnb-nav .item .link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.5vw;
}

@media screen and (max-width: 1439px) {
  .gnb-nav .item .link {
    padding: 0 25px;
  }
}

.gnb-nav .item .arrow-active {
  display: block;
  width: 12px;
  height: 12px;
  background: url("../image/icon_arrow.svg") no-repeat center / 12px auto;
  margin-top: .3rem;
  margin-left: 1rem;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.gnb-nav .item .link:hover .arrow-active {
  transform: rotate(180deg);
}

.lnb-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1;
  padding: 1rem 0 1.875rem;
  border: 1px solid #000;
  transform: translateX(-50%);
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lnb-list.active {
  display: block;
  opacity: 0;
}

.lnb-item {
  padding: 0.625rem 1.875rem;
  cursor: pointer;
}

.lnb-link {
  color: #666;
  white-space: nowrap;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
  background-size: 0 1px;
  transition: background-size 0.3s ease-out;
}

.lnb-item:hover .lnb-link {
  background-size: 100% 1px;
}

.button-search,
.button-close,
.button-menu {
  width: 154px;
  height: 100%;
  padding: 0 2.5rem;
}

/* @media screen and (max-width: 120rem) {
  .button-search,
  .button-close,
  .button-menu {
    width: 8vw;
  }
}

@media screen and (max-width: 90rem) {
  .button-search,
  .button-close,
  .button-menu {
    width: 10vw;
  }
} */

@media screen and (max-width: 1920px) {
  .button-search,
  .button-close,
  .button-menu {
    width: 10vw;
  }
}

@media screen and (min-width: 1920px) {
  .button-search,
  .button-close,
  .button-menu {
    width: 8vw;
  }
}

@media screen and (max-width: 1439px) {
  .button-search,
  .button-close,
  .button-menu {
    width: 138px;
    padding: 0 40px;
  }
}

@media screen and (max-width: 960px) {
  .button-search,
  .button-close,
  .button-menu {
    width: 138px;
    padding: 0 40px;
  }
}

@media screen and (max-width: 719px) {
  .button-search,
  .button-close,
  .button-menu {
    width: auto;
    padding: 0 20px;
  }

  .button-menu {
    width: 87px;
  }
}

.search-split_text {
  display: flex;
}

.button-search,
.button-close {
  color: #666;
  background-color: #fff;
  border-left: 1px solid #000;
}

.button-menu {
  display: none;
  border-left: 1px solid #000;
}

.button-close {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.button-close.active {
  display: block;
  z-index: 2;
}

.form-search-area {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 50%;
  height: 100%;
  background-color: #fff;
  padding-right: 8vw;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in;
}

.form-search-area.active {
  opacity: 1;
  transform: translateX(0);
}

form {
  display: flex;
  height: 100%;
  border-left: 1px solid #000;
}

form .form-input {
  width: 100%;
  padding-right: 75px;
  padding-left: 40px;
  font-size: 1.25rem;
}

form .form-button {
  width: 60px;
  height: 100%;
  background: url("../image/icon_search.svg") no-repeat center / 24px auto #fff;
}

@media screen and (max-width: 1920px) {
  .form-search-area {
    width: 66.6666666667%;
    padding-right: 10vw;
  }

  .form .form-input {
    font-size: 18px;
  }
}

@media screen and (min-width: 1920px) {
  .form-search-area {
    width: 50%;
    padding-right: 8vw;
  }
}

@media screen and (max-width: 1439px) { 
  .form-search-area {
    width: 66.6666666667%;
    padding-right: 138px;
  }

  .form .form-input {
    font-size: 18px;
  }
}

@media screen and (max-width: 959px) {
  .form-search-area {
    transition: opacity 0.3s ease-in;
  }
  
  .form-search-area.active {
    transform: none;
    width: 100%;
    z-index: 1;
    opacity: 1;
  }
}

@media screen and (max-width: 1439px) { 
  .form-search-area {
    padding-right: 87px;
  }
}

@media screen and (max-width: 719px) {
  form .form-input {
    /* padding-right: 75px; */
    padding-left: 20px;
    font-size: 17px;
  }
}

@media screen and (max-width: 959px) {

  .button-search,
  .button-menu {
    padding: 0 1.25rem;
  }

  .search-split_text {
    font-size: 1.125rem;
  }

  .button-search {
    border-left: 1px solid #000;
  }

  .button-menu {
    display: block;
  }
}

/* gnb 마우스 오버 텍스트 애니메이션 */
:root {
  --speed: 0.15s; /* 애니메이션 전환 속도 */
  --delay: 0.05s; /* 애니메이션 전환 속도 지연 */
  --effect: linear; /* 애니메이션 전환 대기 시간 */
}

.split_textArea {
  display: block;
  overflow: hidden;
  position: relative;
  height: 18px;
}

.word-split_text {
  display: flex;
}

span {
  line-height: 1;
}

.word-split_text [class^="t"],
.word-split_textAnimation [class^="t"] {
  transition: all var(--speed) var(--effect);
}

/* 딜레이 자동 증가 */
.word-split_text [class^="t"]:nth-child(n),
.word-split_textAnimation [class^="t"]:nth-child(n) {
  transition-delay: calc(0.01s + (0.01s * (var(--i, 0))));
}

/* hover 효과 */
a:hover .word-split_text [class^="t"],
a:hover .word-split_textAnimation [class^="t"] {
  transform: translateY(-100%);
}

button:hover .word-split_text [class^="t"],
button:hover .word-split_textAnimation [class^="t"] {
  transform: translateY(-100%);
}

/* nth-child로 --i 값 설정 */
.word-split_text .t01, .word-split_textAnimation .t01 {--i: 0;}
.word-split_text .t02, .word-split_textAnimation .t02 {--i: 1;}
.word-split_text .t03, .word-split_textAnimation .t03 {--i: 2;}
.word-split_text .t04, .word-split_textAnimation .t04 {--i: 3;}
.word-split_text .t05, .word-split_textAnimation .t05 {--i: 4;}
.word-split_text .t06, .word-split_textAnimation .t06 {--i: 5;}
.word-split_text .t07, .word-split_textAnimation .t07 {--i: 6;}
.word-split_text .t08, .word-split_textAnimation .t08 {--i: 7;}
.word-split_text .t09, .word-split_textAnimation .t09 {--i: 8;}
.word-split_text .t10, .word-split_textAnimation .t10 {--i: 9;}
.word-split_text .t11, .word-split_textAnimation .t11 {--i: 10;}
.word-split_text .t12, .word-split_textAnimation .t12 {--i: 11;}
.word-split_text .t13, .word-split_textAnimation .t13 {--i: 12;}
.word-split_text .t14, .word-split_textAnimation .t14 {--i: 13;}

/* section 제목 타이틀 */
.sec-title {
  color: #666;
  font-size: calc(24vw * 0.06);
  font-family: "CormorantInfant";
  font-weight: 500;
}

@media screen and (max-width: 1599px) {
  .sec-title {
    font-size: 24px;
  }
}

@media screen and (max-width: 719px) {
  .sec-title {
    font-size: 20px;
  }
}

.ff {
  font-family: "CormorantInfant";
}

/* 가로 텍스트 애니메이션 */
.ah-area {
  /* overflow: hidden; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% - 14vw);
}

.animation-horizontal {
  overflow: hidden;
  position: absolute;
  bottom: 15vw;
  left: 0;
  z-index: 1;
  width: 100%;
  /* margin-bottom: 200px; */
}

.animation-horizontal .wrap {
  display: flex;
  margin-left: -700px;
}

.animation-horizontal .wrap .text {
  width: 700px;
  margin: 0;
  padding: 0 4rem;
  color: #fff;
  font-family: var(--font-Montserrat);
  font-size: 10vw;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  animation: animationHorizontal 7s linear infinite running;
}

@media screen and (max-width: 1599px) {
  .animation-horizontal {
    bottom: 255px;
  }
    
  .animation-horizontal .wrap .text {
    font-size: 150px;
  }
}

@media screen and (max-width: 959px) {
  .animation-horizontal {
    bottom: 300px;
  }

  .animation-horizontal .wrap .text {
    font-size: 100px;
    padding: 40px;
  }
}

@media screen and (max-width: 719px) {
  .animation-horizontal .wrap .text {
    font-size: 4rem;
    padding: 1.125rem;
  }
}

@keyframes animationHorizontal {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* 푸터 영역 */
.footer {
  font-size: 14px;
  border-top: 1px solid #000;
}

.footer .inner .layout-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .nanro-info {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 60rem) {
  .footer .nanro-info {
    justify-content: space-between;
    width: 100%;
  }
}

.footer .nanro-info .copy-button {
  display: flex;
  padding: 20px 0 20px 40px;
}

.footer .nanro-info .copy-button::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../image/icon_arrow.svg") no-repeat center / 12px auto;
  margin-left: 10px;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.footer .nanro-info .copy-button.active::after {
  transform: rotate(180deg);
}

.footer .nanro-info .powered {
  color: #666;
  margin-left: 32px;
}

@media screen and (max-width: 60rem) {
  .footer .nanro-info .powered {
    padding: 0 40px 0 0;
  }
}

.footer .website-link {
  color: #666;
}

.footer .website-link .text {
  box-shadow: inset 0 -1px #666;
  -webkit-box-shadow: inset 0 -1px #666;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
  background-size: 0% 1px;
  -webkit-transition: background-size .5s, -webkit-box-shadow .1s;
  transition: background-size .5s, -webkit-box-shadow .1s ease-out;
  transition: box-shadow .1s, background-size .5s;
  transition: box-shadow .1s, background-size .5s, -webkit-box-shadow .1s;
}

.footer .website-link:hover .text {
  box-shadow: none;
  background-size: 100% 1px;
}

.footer .nav-area {
  display: flex;
}

@media screen and (max-width: 60rem) {
  .footer .nav-area {
    display: none;
  }
}

.footer .nav-list {
  display: flex;
}

.footer .nav-list a {
  display: block;
  padding: 20px;
}

.footer .nav-list .text {
  display: inline;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
  background-size: 0 1px;
  transition: background-size 0.3s ease-out;
}

.footer .nav-list .link:hover .text {
  background-size: 100% 1px;
}

.footer .language-area {
  display: flex;
  position: relative;
  align-items: center;
}

.footer .language-button {
  display: flex;
  align-items: center;
  padding: 20px 40px;
}

.footer .language-button .text {
  display: inline;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
  background-size: 0 1px;
  transition: background-size 0.3s ease-out;
}

.footer .language-button:hover .text {
  background-size: 100% 1px;
}

.footer .language-button::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../image/icon_internet.svg") no-repeat center / contain;
  margin-right: 10px;
}

.footer .language-change {
  display: none;
  position: absolute;
  right: 0;
  bottom: 100%;
  z-index: 1;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transition: opacity 0.3s ease;
  opacity: 0.6;
}

.footer .language-area.active .language-change {
  display: flex;
  opacity: 1;
}

.footer .language-change .language-button {
  padding: 28px 40px;
}

.footer .address-area {
  display: none;
  padding-bottom: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 60rem) {
  .footer .address-area {
    padding-left: 40px;
  }
}

.footer .address-area.active {
  display: block;
}

.footer .address-area dl {
  font-style: normal;
}

/* dd 요소에서 .business-number를 제외한 모든 요소 */
.footer .address-area dd:not(.brand-name) {
  margin-left: 4px;
}

/* .address-area 요소에서 .dib, .business-number를 제외한 모든 요소 */
.footer .address-area :not(.dib):not(.business-number) {
  display: inline;
}

.footer .address-area .dib,
.footer .address-area .business-number {
  display: inline-block;
  margin-top: 10px;
}