@charset 'utf-8';

/* ���� */
:root {
  --baseFont:
    "SCDream", "Pretendard", "Noto Sans KR", "Malgun Gothic", "verdana",
    sans-serif;
  --engFont:
    "Readex Pro", "SCDream", "Pretendard", "Noto Sans KR", "Malgun Gothic",
    "verdana", sans-serif;

  --mainColor: #ff3287;
  --mainRGB: 255, 50, 135;

  --vh: 100%;
  --resizeVH: 100vh;
  --headerH: 100px;

  --aosP: 100px;
  --aosM: -100px;
  --aosT: 800ms;
}

* {
  box-sizing: border-box;
  word-break: keep-all;
  line-height: 1.3;
}
body.lock {
  overflow: hidden;
}
body {
  font-size: 16px;
  -ms-overflow-style: none;
  overflow-x: clip;
}
body::-webkit-scrollbar {
  display: none;
}
body * {
  font-size: inherit;
}

.w1920 {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.w1720 {
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* slick */
.slick-slider {
  overflow: hidden;
}
.slick-track {
  margin: 0;
}
.slick-slide {
  outline: none;
}

/* aos */
[data-aos] {
  transition-duration: var(--aosT);
}

/* common */
.eng {
  font-family: var(--engFont) !important;
}

@media (hover: hover) and (pointer: fine) {
  :root {
    --resizeVH: var(--vh);
  }
}

@media screen and (max-width: 1700px) {
  :root {
    --headerH: 85px;
  }

  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --headerH: 70px;

    --aosPlus: 50px;
    --aosMinus: -50px;
  }

  html {
    font-size: 40%;
  }
}

@media screen and (max-width: 900px) {
  html {
    font-size: 30%;
  }
}

/* privacy */
.privacy * {
  font-size: 19px;
  font-weight: 300;
  color: #111;
  line-height: 1.5;
}
.privacy > *:not(:last-child) {
  margin-bottom: 100px;
}
.privacy h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
.privacy h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy ul {
  margin-top: 10px;
}
.privacy ul li:not(:last-of-type) {
  margin-bottom: 5px;
}

.privacy dl dt {
  font-size: 21px;
  font-weight: 600;
}
.privacy dl dd {
  margin-top: 10px;
}
.privacy .textBox dl dt {
  font-size: 19px;
  font-weight: 500;
}
.privacy .textBox dl dd {
  margin-top: 5px;
}

.privacy .textBox > *:not(:last-child) {
  margin-bottom: 40px;
}
.privacy .pBox > * {
  margin-top: 10px;
}
.privacy .dlBox > * {
  margin-top: 20px;
}

.privacy .dot {
  padding-left: 12px;
  position: relative;
}
.privacy .dot::before {
  content: "";
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: calc(1.4em / 2);
  left: 0;
  transform: translateY(-50%);
}

.privacy .hyphen {
  padding-left: 12px;
  position: relative;
}
.privacy .hyphen::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

/* header */
#header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 900;
}
#header .flex-box {
  height: var(--headerH);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .logo img {
  width: auto;
  height: auto;
}
#header .right {
  display: flex;
  align-items: center;
}

#header nav {
  max-width: 100%;
  width: max-content;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#header nav a {
  display: block;
  font-family: var(--engFont);
  line-height: 1.3;
  transition:
    color 0.3s,
    text-stroke-color 0.3s;
}

#header .depth01 {
  display: flex;
}
#header .depth01 > li {
  position: relative;
}
#header .depth01 > li > a {
  height: var(--headerH);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  padding: 0 40px;
}

#header .depthBox {
  min-width: 220px;
  width: max-content;
  background: #fff;
  clip-path: inset(0 0 100% 0 round 10px);
  -webkit-clip-path: inset(0 0 100% 0 round 10px);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: clip-path 0.5s;
}
#header .depth02 {
  padding: 20px 0;
}
#header .depth02 > li {
  transform: translateY(100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition:
    transform 0.4s 0.3s,
    clip-path 0.4s 0.3s;
}
#header .depth02 > li > a {
  font-size: 18px;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.3);
  text-stroke: 0.02em transparent;
  -webkit-text-stroke: 0.02em transparent;
  letter-spacing: -0.02em;
  padding: 10px 25px;
}

#header .lang {
  margin-right: 15px;
  position: relative;
}
#header .lang button {
  background: none;
  border: none;
  padding: 20px 26px;
}
#header .lang ul {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#header .lang ul li a {
  display: block;
  font-family: var(--engFont);
  font-size: 18px;
  font-weight: 500;
  color: #bbb;
  letter-spacing: -0.02em;
  line-height: 1.3;
  padding: 5px 10px;
}
#header .lang ul li.on a {
  color: #111;
}

#header .menu {
  width: 54px;
  height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  transition: background 0.3s;
}
#header .menu svg {
  width: auto;
  height: auto;
}
#header .menu svg path {
  transition: stroke 0.3s;
}

@media screen and (hover: hover) and (pointer: fine) {
  #header .depth01 > li:hover > a {
    color: var(--mainColor);
  }
  #header .depth01 > li:hover .depthBox {
    clip-path: inset(0 0 0 0 round 10px);
    -webkit-clip-path: inset(0 0 0 0 round 10px);
  }
  #header .depth01 > li:hover .depth02 > li {
    transform: translateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  #header .depth02 > li:hover > a {
    color: var(--mainColor);
    text-stroke-color: var(--mainColor);
    -webkit-text-stroke-color: var(--mainColor);
  }

  #header .menu:hover {
    background: #fff;
  }
  #header .menu:hover svg path {
    stroke: #111;
  }
}

@media screen and (max-width: 1700px) {
  #header .logo img {
    height: 24px;
  }

  #header .depth01 > li > a {
    font-size: 19px;
    padding: 0 30px;
  }
  #header .depthBox {
    min-width: 200px;
  }
  #header .depth02 {
    padding: 12px 0;
  }
  #header .depth02 > li > a {
    padding: 7px 20px;
  }

  #header .lang {
    margin-right: 0;
  }
  #header .lang button {
    padding: 20px;
  }
  #header .lang ul {
    padding: 5px 0;
  }
  #header .lang ul li a {
    padding: 5px 7px;
  }

  #header .menu {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 1280px) {
  #header .logo img {
    height: 20px;
  }

  #header .depth02 > li > a {
    font-size: 17px;
  }

  #header .lang ul li a {
    font-size: 17px;
    padding: 3px 7px;
  }

  #header .menu {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 1200px) {
  #header nav {
    display: none;
  }
}

@media all and (max-width: 768px) {
  #header {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
  }
}

/* menu */
#menu {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}
#menu a {
  display: block;
  line-height: 1.3;
  transition: color 0.3s;
}
#menu .pc {
  display: none;
}
#menu .mobile {
  display: block;
}

#menu .blank {
  width: 100%;
  height: 100%;
}
#menu .header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
#menu .header .flex-box {
  height: var(--headerH);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#menu .close {
  background: none;
  border: none;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.5s 0.8s;
  pointer-events: auto;
}
#menu .inner {
  max-width: 935px;
  width: 90%;
  height: 100%;
  background: #fff;
  border-radius: 20px 0 0 20px;
  padding: var(--headerH) 80px 65px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform var(--aosT) 0.5s;
}
#menu .scroll {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -ms-overflow-style: none;
  overflow-x: clip;
  overflow-y: auto;
}
#menu .scroll::-webkit-scrollbar {
  display: none;
}

#menu nav {
  font-family: var(--engFont);
}
#menu .depth01 > li > a {
  font-size: 7rem;
  font-weight: 500;
  color: #111;
}
#menu .depthBox {
  display: none;
  overflow: hidden;
}
#menu .depth02 {
  display: grid;
  grid-template-columns: repeat(3, calc(100% / 3));
  margin: 10px -10px 20px;
}
#menu .depth02 > li > a {
  font-size: 20px;
  font-weight: 400;
  color: #bbb;
  padding: 10px;
}

#menu .bottom {
  /* display: none; */
  margin-top: 20px;
}
#menu .bottom ul li a {
  font-size: 20px;
  font-weight: 400;
  color: #999;
  letter-spacing: -0.02em;
  padding: 10px 0;
}
#menu .bottom ul li a::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: url("/img/common/menu_arrow.svg") no-repeat center center /
    contain;
  vertical-align: middle;
  margin-left: 10px;
  transform: translateY(-2px);
  opacity: 0.5;
  transition: opacity 0.3s;
}

/* body - open */
body.open {
  overflow: hidden;
}
body.open #menu .close {
  opacity: 1;
}
body.open #menu .inner {
  transform: translateX(0);
}

@media screen and (hover: hover) and (pointer: fine) {
  #menu .pc {
    display: block;
  }
  #menu .mobile {
    display: none;
  }

  #menu .depth01:hover > li > a {
    color: #ddd;
  }
  #menu .depth01 > li:hover > a {
    color: #111;
  }
  #menu .depth02 > li:hover > a {
    color: #111;
  }

  #menu .bottom {
    display: block;
  }
  #menu .bottom ul li a:hover {
    color: #111;
  }
  #menu .bottom ul li a:hover::after {
    opacity: 1;
  }
}

@media screen and (max-width: 1700px) {
  #menu .inner {
    padding: var(--headerH) 60px 40px;
  }

  #menu .depth02 > li > a {
    font-size: 19px;
  }

  #menu .bottom ul li a {
    font-size: 19px;
  }
}

@media screen and (max-width: 1280px) {
  #menu .inner {
    padding: var(--headerH) 25px 30px;
  }

  #menu .depth02 {
    margin: 10px -7px 15px;
  }
  #menu .depth02 > li > a {
    font-size: 18px;
    padding: 7px;
  }

  #menu .bottom ul li a {
    font-size: 18px;
    padding: 7px 0;
  }
}

@media screen and (max-width: 700px) {
  #menu .depth01 > li > a {
    font-size: 8rem;
  }
  #menu .depth02 {
    grid-template-columns: repeat(1, 100%);
    margin: 7px -7px;
  }
  #menu .depth02 > li > a {
    font-size: 21px;
    padding: 7px;
  }
}

/* footer */
#footer {
  padding: 30px 20px 0;
}

#footer .contact {
  position: relative;
  z-index: 10;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
#footer .contact::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("/img/common/contact_bg.jpg") no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(1);
  transition: transform 1s;
}
#footer .contact a {
  display: block;
  padding: 120px 0;
}
#footer .contact p {
  display: flex;
  align-items: center;
  font-family: var(--engFont);
  font-size: 14rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
}
#footer .contact i {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-left: 50px;
  transition: background 0.4s;
}
#footer .contact i::before {
  content: "";
  display: block;
  width: 100%;
  height: 36px;
  background: url("/img/common/contact_arrow.svg") no-repeat center center /
    contain;
  filter: grayscale(1) brightness(10);
  -webkit-filter: grayscale(1) brightness(10);
  transform: rotate(0);
  transition:
    filter 0.4s,
    transform 0.4s;
}

#footer .info {
  background: #111;
  border-radius: 20px;
  padding: 70px 0 50px;
}
#footer address {
  display: grid;
  grid-template-columns: repeat(5, 20%);
  margin: -20px;
}
#footer address > * {
  margin: 20px;
}
#footer address dl * {
  font-size: 18px;
}
#footer address dl dt {
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}
#footer address dl dd {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
#footer address dl dd.eng {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.5);
}

#footer .bottom {
  margin-top: 65px;
}
#footer .bottom .flex-box {
  display: flex;
  justify-content: space-between;
}
#footer .bottom .copyright {
  font-family: var(--engFont);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}
#footer .bottom a {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  margin-block: -10px;
  margin-right: -10px;
}

@media screen and (hover: hover) and (pointer: fine) {
  #footer .contact:hover::before {
    transform: scale(1.1);
  }
  #footer .contact:hover i {
    background: #fff;
  }
  #footer .contact:hover i::before {
    filter: unset;
    -webkit-filter: unset;
    transform: rotate(-45deg);
  }
}

/* top */
#top {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--engFont);
  font-size: 22px;
  font-weight: 400;
  color: #111;
  letter-spacing: -0.02em;
  padding: 35px;
  margin: 0 auto;
  outline: none;
}
#top i {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  border-radius: 50%;
  margin-left: 10px;
  transition: background 0.3s;
}
#top i::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: url("/img/common/top_icon.svg") no-repeat center center / contain;
  transition: filter 0.3s;
}

@media screen and (hover: hover) and (pointer: fine) {
  #top:hover i {
    background: rgba(17, 17, 17, 0.15);
  }
  #top:hover i::before {
    filter: invert(1);
    -webkit-filter: invert(1);
  }
}

@media screen and (max-width: 1700px) {
  #footer .contact a {
    padding: 80px 0;
  }
  #footer .contact p {
    font-size: 12rem;
  }
  #footer .contact i {
    width: 90px;
    height: 90px;
  }

  #footer .info {
    padding: 40px 0 30px;
  }
  #footer address dl * {
    font-size: 17px;
  }

  #footer .bottom {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1400px) {
  #footer br {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  #footer {
    padding: 0 20px;
  }

  #footer .contact {
    margin-bottom: 15px;
  }
  #footer .contact a {
    padding: 40px 0;
  }
  #footer .contact p {
    font-size: 10rem;
  }
  #footer .contact i {
    width: 70px;
    height: 70px;
    margin-left: 30px;
  }
  #footer .contact i::before {
    height: 32px;
  }

  #footer .info {
    padding: 30px 0 20px;
  }
  #footer address {
    grid-template-columns: repeat(3, calc(100% / 3));
  }
  #footer address dl * {
    font-size: 16px;
  }
  #footer address dl dt {
    margin-bottom: 10px;
  }

  #footer .bottom {
    margin-top: 30px;
  }
  #footer .bottom .copyright {
    font-size: 15px;
  }
  #footer .bottom a {
    font-size: 16px;
  }

  /* top */
  #top {
    font-size: 20px;
    padding: 20px;
  }
  #top i {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 900px) {
  #footer .contact a {
    padding: 25px 0;
  }
  #footer .contact p {
    font-size: 8rem;
  }
  #footer .contact i {
    width: 40px;
    height: 40px;
    margin-left: 15px;
  }
  #footer .contact i::before {
    height: 25px;
  }
}

@media screen and (max-width: 800px) {
  #footer address {
    grid-template-columns: repeat(2, 50%);
    margin: -10px;
  }
  #footer address > * {
    margin: 10px;
  }
}

@media screen and (max-width: 650px) {
  #footer .info {
    padding: 20px 0;
  }
  #footer address {
    grid-template-columns: repeat(1, 100%);
  }
  #footer address dl * {
    font-size: 15px;
  }
  #footer address dl dt {
    margin-bottom: 5px;
  }

  #footer .bottom {
    margin-top: 10px;
  }
  #footer .bottom .flex-box {
    flex-direction: column-reverse;
  }
  #footer .bottom a {
    padding: 15px;
    margin: 0 0 0 -15px;
  }
}
