:root {
  --color-main: #9747FF;
  --color-sub: #692498;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: "Pretendard", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

.font120 {
  --fontsize: 12.0rem;
  font-size: var(--fontsize);
}

.font100 {
  --fontsize: 10.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font46 {
  --fontsize: 4.6rem;
  font-size: var(--fontsize);
}

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

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

html.has-scroll-smooth {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

body {
  transition: all 0.6s;
}
body.black {
  background: var(--color-black);
}

figure {
  padding: 0;
  margin: 0;
}

pre {
  white-space: pre-wrap;
}

textarea {
  resize: none;
}

#wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  overflow: hidden;
}

.w1700 {
  width: 100%;
  height: 100%;
  max-width: 1700px;
  margin: 0 auto;
}

.w1500 {
  width: 100%;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.pTop160 {
  padding-top: 160px;
}

.pTop100 {
  padding-top: 100px;
}

.mTop60 {
  margin-top: 60px;
}

.tabContents > div {
  display: none;
}
.tabContents > div.on {
  display: block;
}

.c-scrollbar_thumb {
  width: 9px;
  border-radius: 5px;
  opacity: 0.3;
  right: 2px;
}
.scrollY {
	overflow-y: scroll;
}
.scrollY::-webkit-scrollbar {
	width: 3px;
}
.scrollY::-webkit-scrollbar-thumb,
.scrollY::-webkit-scrollbar-track {
	border-radius: 3px;
}
.scrollY::-webkit-scrollbar-thumb {
	background: #999;
}
.scrollY::-webkit-scrollbar-track {
	background: #ddd;
}

.animation {
  transition: all 0.6s;
}
.animation.down {
  transform: translateY(-80px);
}
.animation.up {
  transform: translateY(80px);
}
.animation.left {
  transform: translateX(80px);
}
.animation.right {
  transform: translateX(-80px);
}
.animation.opacity {
  opacity: 0;
}
.animation.on.down, .animation.on.up {
  transform: translateY(0);
}
.animation.on.left, .animation.on.right {
  transform: translateX(0);
}
.animation.on.opacity {
  opacity: 1;
}

.flexBox {
  display: flex;
}
.flexBox.column {
  flex-direction: column;
}

.pBox,
.dlBox {
  display: flex;
  flex-direction: column;
}

.tagBox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.tagBox span {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 50px;
  color: #666;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  padding: 6px 15px;
  transition: all 0.2s;
}
.tagBox.fontBig span {
  font-size: 1.6rem;
  padding: 10px 20px;
}
.tagBox.bg span {
  background: #f5f5f5;
  border: none;
  color: #333;
}

.title em {
  color: var(--color-sub);
  font-size: 2.2rem;
  font-weight: 700;
}
.title h2 {
  color: #111;
  font-weight: 700;
  margin: 10px 0 0;
  transition: all 0.6s;
}

.searchRadius .inner {
  position: relative;
}
.searchRadius .inner *:not(input) {
  transition: all 0.6s linear;
}
.searchRadius em {
  color: rgba(0, 0, 0, 0.02);
  font-size: 18rem;
  font-weight: 800;
  position: absolute;
  top: -20px;
  right: 0;
}
.searchRadius label {
  width: 100%;
  max-width: 80px;
  height: 80px;
  justify-content: flex-end;
  border-radius: 80px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.searchRadius label::before {
  content: "";
  display: block;
  border: 2px solid transparent;
  border-radius: 80px;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.searchRadius label > * {
  height: 100%;
}
.searchRadius span {
  display: block;
  width: 2px;
  height: 30px;
  background: var(--color-black);
  position: absolute;
  top: 50%;
  left: 40px;
  opacity: 0;
  transform: translateY(-50%);
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.searchRadius input {
  width: 100%;
  border-radius: 80px;
  font-size: 1.8rem;
  padding: 0;
  overflow: hidden;
  transition: padding 0s;
}
.searchRadius input::placeholder {
  color: transparent;
  font-size: 1.8rem;
}
.searchRadius input:focus ~ span {
  display: none;
}
.searchRadius button {
  width: 80px;
  flex-shrink: 0;
  background: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchRadius button img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}
.searchRadius .inner.on label {
  max-width: 1000px;
}
.searchRadius .inner.on label::before {
  border-color: var(--color-black);
}
.searchRadius .inner.on input {
  padding: 0 50px;
}
.searchRadius .inner.on input::placeholder {
  color: #aaa;
}
.searchRadius .inner.on span {
  opacity: 1;
}

.circleButton,
.circleButton a,
.circleButton button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circleButton {
  width: 120px;
  height: 120px;
}
.circleButton * {
  transition: all 0.6s;
}
.circleButton a,
.circleButton button {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circleButton:hover a,
.circleButton:hover button {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: var(--color-main);
  border-color: transparent;
}
.circleButton:hover img {
  filter: brightness(0) invert(1);
}

.datepicker {
  background: url("/img/sub/calendarIcon.png") no-repeat calc(100% - 20px) center;
}

.quickBox {
  position: fixed;
  right: 20px;
  bottom: 45px;
  z-index: 2;
}
.quickBox .item {
  position: relative;
}
.quickBox > .column {
  gap: 10px 0;
  align-items: flex-end;
}
.quickBox .circle {
  width: 70px;
  height: 70px;
  justify-content: flex-end;
  background: var(--color-main);
  border-radius: 70px;
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.quickBox .circle span {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: all 0.4s;
}
.quickBox .circle button {
  width: 70px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.quickBox .circle button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.quickBox .circle button .close {
  opacity: 0;
}
.quickBox .circle.on {
  background: var(--color-black);
}
.quickBox .circle.on .icon {
  opacity: 0;
}
.quickBox .circle.on .close {
  opacity: 1;
}
.quickBox .inner {
  width: 320px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: none;
}
.quickBox .inner::before {
  content: "";
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.quickBox .inner .column {
  gap: 30px 0;
}
.quickBox .text {
  margin: 0 0 10px;
}
.quickBox .text h5, .quickBox .text h6 {
  color: #111;
}
.quickBox .text h5 {
  font-size: 2.2rem;
  font-weight: 700;
}
.quickBox .text h6 {
  font-size: 1.8rem;
  font-weight: 600;
}
.quickBox .text p {
  font-weight: 300;
  line-height: 1.6;
  margin: 10px 0 0;
}
.quickBox .text.center {
  text-align: center;
}
.quickBox .inputBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.quickBox .inputBox input::placeholder,
.quickBox .inputBox textarea::placeholder {
  color: #888;
  font-size: 1.4rem;
  font-weight: 300;
}
.quickBox .inputBox input,
.quickBox .inputBox .content {
  width: 100%;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 11px 20px;
}
.quickBox .inputBox input {
  height: 40px;
}
.quickBox .inputBox .content {
  height: 170px;
  position: relative;
}
.quickBox .inputBox .content textarea {
  background: transparent;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.quickBox .inputBox .content p {
  color: #aaa;
  font-size: 12px;
  font-weight: 300;
  position: absolute;
  top: 40px;
  left: 20px;
}
.quickBox .inputBox .content textarea:focus + p {
  opacity: 0;
}
.quickBox .agree {
  margin: 10px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.quickBox .agree * {
  line-height: 1;
}
.quickBox .agree button {
  color: #aaa;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
  text-underline-position: under;
  margin: 0 0 0 auto;
}
.quickBox .moreButton {
  width: 100%;
  height: 50px;
  border: 2px solid var(--color-black);
  border-radius: 50px;
  margin: 20px 0 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.quickBox .moreButton span,
.quickBox .moreButton img {
  position: absolute;
  transition: all 0.6s;
}
.quickBox .moreButton span {
  color: #111;
  font-size: 1.6rem;
  font-weight: 600;
  left: 50%;
  transform: translateX(-50%);
}
.quickBox .moreButton img {
  width: 18px;
  right: 60px;
  opacity: 0;
}
.quickBox .moreButton:not(.black)::before {
  content: "";
  display: block;
  border-radius: 50px;
  box-shadow: 0px 0px 20px rgba(105, 36, 152, 0.2);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.quickBox .moreButton:not(.black):hover::before {
  opacity: 1;
}
.quickBox .moreButton.black {
  background: var(--color-black);
  border: none;
}
.quickBox .moreButton.black span {
  color: var(--color-white);
}
.quickBox .moreButton.black img {
  filter: brightness(0) invert(1);
}
.quickBox .moreButton:hover span {
  left: 30px;
  transform: translateX(0);
}
.quickBox .moreButton:hover img {
  opacity: 1;
  right: 30px;
}
.quickBox .top {
  width: 70px;
  height: 70px;
  background: var(--color-white);
  border: 2px solid var(--color-main);
  border-radius: 70px;
  overflow: hidden;
  transition: all 0.4s;
}
.quickBox .top * {
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  transition: all 0.6s;
}
.quickBox .top .topButton {
  white-space: nowrap;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quickBox .top em {
  position: absolute;
  top: 50%;
  left: 50%;
}

.quickBox .top em img {
  margin-top: 2px;
}
.quickBox .top em:first-child {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.quickBox .top em:last-child {
  opacity: 0;
  transform: translate(20px, -50%);
}
.quickBox .top:hover {
  width: 150px;
}
.quickBox .top:hover em:first-child {
  opacity: 0;
  transform: translate(-20px, -50%);
}
.quickBox .top:hover em:last-child {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.scrollContainer {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow: hidden;
}

.videoBox:not(.slideBox) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 20px;
}
.videoBox .img {
  position: relative;
}
.videoBox .img figure {
  border-radius: 15px;
  padding: 27.7805% 0;
  position: relative;
  overflow: hidden;
}
.videoBox .img figure img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.videoBox .img .category {
  display: block;
  border: 1px solid var(--color-white);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 1.4rem;
  padding: 6px 15px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.videoBox .text {
  margin: 20px 0 0;
}
.videoBox .text p {
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.videoBox .date {
  display: block;
  color: #666;
  font-family: var(--font-roboto);
  margin: 10px 0 0;
} 
.videoBox .view {
  display: block;
  color: #666;
  font-family: var(--font-roboto);
  margin: 10px 0 0;
  padding-left: 26px;
  background: url("/img/sub/viewIcon.png") left center no-repeat;
}


header {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
header::after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: #eee;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
  opacity: 0;
  z-index: -1;
}
header.on::after  {
  opacity: 1;
}
header .headerBox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .logo {
  width: 95px;
  height: 30px;
  position: relative;
  z-index: 5;
}
header .logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo img {
  transition: all 0.6s;
}
header nav,
header .depth1,
header .depth1 > li {
  height: 100%;
}
header .depth1,
header .depth1 > li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .gab_bg {
  width: 100vw;
  height: 0;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  margin-left: 0;
  transition: all 0.4s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
header nav {
  position: absolute;
  left: 0;
}
header nav::after {
  content: "";
  display: block;
  width: 100vw;
  height: 0;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  transition: all 0.6s linear;
}
header .depth1 {
  padding-left: 170px;
}
header .depth1 > li > a {
  color: #111;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 30px;
  transition: all 0.6s;
}
header .depth1:hover > li > a {
  color: #aaa;
}
header .depth1 > li:hover > a {
  color: #111;
}
header .depth2 {
  height: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 30px;
  display: flex;
  gap: 0 50px;
  opacity: 0;
}
header .depth1:hover .depth2 {
  animation:ani_over 0.5s 0.1s; 
  animation-fill-mode:both;
}
@keyframes ani_over {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header .depth2 > li {
  overflow: hidden;
  position: relative;
}
header .depth2 > li > a {
  color: #666;
  font-weight: 300;
  font-size: 1.8rem;
  white-space: nowrap;
  transition: all 0.4s;
  height: 83px;
  display: flex;
  align-items: center;
}
header .depth2 > li > a:hover {
  color: var(--color-main);
  font-weight: 600;
  letter-spacing: -0.01em;
}
header .depth2.ov {
  left: 0;
  gap: 25px 0;
  flex-direction: column;
  width:100vw;
  padding: 50px 0 70px;
}
header .depth2.ov::after {
  content: "";
  display: block;
  width: 1px;
  height: 0;
  background: #eee;
  position: absolute;
  top: 0;
  left: 360px;
  animation:ani_h100 0.3s 0.1s; 
  animation-fill-mode:both;
}
@keyframes ani_h100 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
header .depth2.ov > li  {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
header .depth2.ov.menu02 > li {
  width: 100%;
  max-width: 850px;
}
header .depth2.ov > li > a {
  width:360px;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  height: auto;
  position: relative;
}
header .depth2.ov > li > a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/img/common/depth2_arr.png") center no-repeat;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
header .depth2.ov > li > a:hover::after,
header .depth2.ov > li.active > a::after {
  background: url("/img/common/depth2_arr_on.png") center no-repeat;
}
header .depth2.ov > li > a:hover,
header .depth2.ov > li.active > a {
  color: var(--color-main);
  font-weight: 500;
}
header .depth1 > li .depth2 > li .imgbox {
  display: none;
}
header .depth1 > li .depth2.ov > li.on .imgbox {
  position: fixed;
  top: 175px;
  right: 110px;
  display: block;
  max-width: 400px;
  width: 100%;
}
header .depth1 > li .depth2 > li.on  .imgbox a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  padding: 0px 30px;
  background: var(--color-main);
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
}
header .depth1 > li .depth2 > li.on  .imgbox .bg {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
header .depth1 > li .depth2 > li.on  .imgbox .bg::before {
  content: "";
  display: block;
  padding-bottom: 55.5%;
}
header .depth1 > li .depth2 > li.on  .imgbox .bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
header .depth3 {
  width: calc(100% - 360px);
  display: flex;
  flex-wrap: wrap;
  gap: 25px 50px;
  padding-left: 50px;
}
header .menu03 .depth3 {
  gap: 15px 0;
}
header .menu03 .depth3 li ul {
  display: flex;
  flex-wrap: wrap;
  gap:8px 0;
  width: 100%;
}
header .menu03 .depth3 li {
  width: 258px;
}
header .menu03 .depth3 li.m {
  width: 100%;
}
header .depth3 li a {
  color: #666;
  font-weight: 300;
  font-size: 1.8rem;
}
header .depth3 li a:hover {
  color: var(--color-main);
  font-weight: 600;
  letter-spacing: -0.02em;
}


header .flexBox {
  gap: 0 20px;
  align-items: center;
}
header .flexBox a {
  color: var(--color-main);
  font-weight: 600;
  transition: all 0.6s;
  display: inline-flex;
  align-items: center;
  height : 40px;
  padding: 0 30px;
  border-radius: 30px;
  border: 2px solid var(--color-main);
  background: #FFF;
}
header .flexBox a.inquiry {
  background: var(--color-main);
  color: var(--color-white);
}
header .searchButton {
  position: relative;
}
header .flexBox a.searchButton {
  background: none;
  border-width: 0;
  padding: 0;
  margin-left: 20px;
}
header .searchButton::before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #DDD;
}
header .searchButton * {
  transition: all 0.4s;
}
header .searchButton img {
  width: 26px;
  height: 26px;
}
header .searchButton span {
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .searchButton:hover img {
  opacity: 0;
}
header .searchButton:hover span {
  opacity: 1;
}
header .menuButton {
  width: 24px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
header .menuButton span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  transition: all 0.6s;
}
header .menuButton.on {
  align-items: center;
  justify-content: center;
}
header .menuButton.on span:first-child {
  transform: translate(0, 1px) rotate(-45deg);
}
header .menuButton.on span:nth-child(2) {
  display: none;
}
header .menuButton.on span:last-child {
  transform: translate(0, -1px) rotate(45deg);
}
header.white .logo img,
header.white .searchButton img {
  filter: brightness(0) invert(1);
}
header.white .depth1 > li > a,
header.white .searchButton span {
  color: var(--color-white);
}
header.white .menuButton span {
  background: var(--color-white);
}
header.menu {
  background: var(--color-white);
}
header.menu .logo img,
header.menu .searchButton img {
  filter: inherit;
}
header.menu .depth1 > li > a {
  color: #111;
}
header.menu .flexBox a {
  /*color: var(--color-black);*/
}
header.menu .searchButton span {
  color: #333;
}
header.menu .menuButton {
  justify-content: center;
}
header.menu .menuButton span {
  background: var(--color-black);
}
header.menu .menuButton span:nth-child(1) {
  transform: translate(0, 1px) rotate(-45deg);
}
header.menu .menuButton span:nth-child(2) {
  display: none;
}
header.menu .menuButton span:nth-child(3) {
  transform: translate(0, -1px) rotate(45deg);
}

.allMenu {
  display: none;
}

.quickInquiry {
  display: block;
  position: fixed;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transition: all 0.5s;
  opacity: 1;
}
.quickInquiry.on {
  display: block;
  opacity: 1;
}
.quickInquiry a {
  width: 200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: var(--color-main);
  box-shadow: 0px 0px 20px 0px rgba(105, 36, 152, 0.10);
}
.quickInquiry a span {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  transition: all 0.5s;
}
.quickInquiry a img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  filter: brightness(0) invert(1);
  transition: all 0.5s;
  opacity: 0;
}
.quickInquiry a:hover span {
  transform: translate(-65%);
}
.quickInquiry a:hover img {
  left: 80%;
  opacity: 1;
}

footer {
  border-top: 1px solid #eee;
  padding: 100px 0;
  margin: 80px 0 0;
}
footer .footerBox {
  display: flex;
  justify-content: space-between;
}
footer .textBox p {
  font-family: "Roboto", "Pretendard";
}
footer h2 {
  color: #111;
  font-weight: 700;
}
footer .circleButton {
  margin: 30px 0 80px -20px;
  width: 270px;
  height: 100px;
}
footer .circleButton a {
  border-radius: 150px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  justify-content: space-between;
  font-size: 2.0rem;
  font-weight: 600;
  color: #000;
  padding: 0 30px;
}
footer .circleButton a:hover {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  padding: 0 35px;
  color: #fff;
}
footer .link,
footer .info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .link {
  gap: 0 20px;
}
footer .link a {
  color: #333;
}
footer .link a.semi {
  font-weight: 600;
}
footer .link span {
  display: block;
  width: 4px;
  height: 4px;
  background: rgba(51, 51, 51, 0.2);
  border-radius: 50%;
}
footer .info {
  gap: 0 30px;
  margin: 40px 0 10px;
}
footer .linkBox,
footer .sns {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .linkBox {
  gap: 30px 0;
}
/* footer .top {
  width: 60px;
  height: 60px;
  background: var(--color-black);
  border-radius: 60px;
  overflow: hidden;
  transition: all 0.4s;
}
footer .top * {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  transition: all 0.6s;
}
footer .top .topButton {
  white-space: nowrap;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .top em {
  position: absolute;
  top: 50%;
  left: 50%;
}
footer .top em:first-child {
  opacity: 1;
  transform: translate(-50%, -50%);
}
footer .top em:last-child {
  opacity: 0;
  transform: translate(20px, -50%);
}
footer .top:hover {
  width: 150px;
}
footer .top:hover em:first-child {
  opacity: 0;
  transform: translate(-20px, -50%);
}
footer .top:hover em:last-child {
  opacity: 1;
  transform: translate(-50%, -50%);
} */
footer .sns {
  gap: 20px 0;
  overflow: hidden;
}
footer .sns a {
  gap: 0 10px;
  color: #aaa;
  font-size: 2.8rem;
  font-weight: 600;
  font-family: var(--font-roboto);
  transform: translateX(30px);
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .sns a img:nth-child(2) {
  width: 20px;
}
footer .sns a:hover {
  color: #111;
  transform: translateX(0);
}

.os-theme-dark > .os-scrollbar-vertical {
  width: 3px;
}

.os-theme-dark > .os-scrollbar {
  padding: 0;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track {
  background: #ddd;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: #999;
  border-radius: 20px;
}
.popupCover {
	width: 100%;
	height: 100%;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: none;
}
.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 30;
  transform: translate(-50%, -50%);
}
.popup.policy {
  display: none;
}
.popup .cover {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}
.popup .inner {
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup .inner > .closeButton {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: -50px;
}
.popup .slideWrap {
  position: relative;
}
.popup .slideWrap button,
.popup .slideWrap .pagination {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .slideWrap button {
  width: 70px;
  height: 70px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.popup .slideWrap .prevButton {
  left: -110px;
}
.popup .slideWrap .nextButton {
  right: -110px;
}
.popup .slideWrap .pagination {
  gap: 0 10px;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}
.popup .slideWrap .pagination li {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.popup .slideWrap .pagination li.swiper-pagination-bullet-active {
  background: var(--color-main);
}
.popup .slideBox {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
}
.popup .slideBox figure {
  width: 100%;
  padding: 62% 0;
  position: relative;
}
.popup .slideBox figure img {
  min-width: 100%;
  max-height: inherit;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup .bottom,
.popup .bottom label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.popup .bottom {
  gap: 0 30px;
  justify-content: space-between;
  margin: 15px 0 0;
}
.popup .bottom label {
  gap: 0 5px;
}
.popup .bottom input {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
}
.popup .bottom input:checked {
  background: url("/img/sub/checkIconW.png") no-repeat center/75%;
  border-color: var(--color-white);
}
.popup .bottom em {
  color: var(--color-white);
  font-size: 1.5rem;
}
.popup.policy .inner {
  width: 100%;
  max-width: 1000px;
  height: 600px;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  padding: 60px 80px;
  z-index: 1;
}
.popup.policy h6,
.popup.policy hr {
  flex-shrink: 0;
}
.popup.policy h6 {
  color: #222;
  font-size: 2.4rem;
  font-weight: 700;
}
.popup.policy hr {
  width: 100%;
  height: 2px;
  background: var(--color-black);
  border: none;
  margin: 20px 0 40px;
}
.popup.policy .scrollY {
  height: 100%;
}
.popup.policy .text,
.popup.policy .column {
  display: flex;
  flex-direction: column;
}
.popup.policy .text {
  height: 100%;
  gap: 30px 0;
}
.popup.policy .text * {
  color: #666;
  font-size: 1.5rem;
  line-height: 1.6666;
}
.popup.policy .text b {
  display: block;
  font-size: 1.6rem;
}
.popup.policy .text dl dt {
  font-weight: 500;
}
.popup.policy .column {
  gap: 20px 0;
}

.inquiry_popup {
  display: none;
}
.inquiry_popup.on {
  display: block;
}
.inquiry_popup .body {
  z-index: 3;
  width: 540px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
}
.inquiry_popup .bg {
  z-index: 1;
  display: block;
  background: rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.inquiry_popup .body::before {
  content: "";
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inquiry_popup .column {
  gap: 30px 0;
}
.inquiry_popup .text h5, .inquiry_popup .text h6 {
  color: #111;
}
.inquiry_popup .text h5 {
  font-size: 3.6rem;
  font-weight: 700;
}
.inquiry_popup .text h6 {
  font-size: 1.8rem;
  font-weight: 600;
}
.inquiry_popup .text p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 10px 0 0;
}
.inquiry_popup .text.center {
  text-align: center;
}
.inquiry_popup .inputBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.inquiry_popup .inputBox input::placeholder,
.inquiry_popup .inputBox textarea::placeholder {
  color: #888;
  font-size: 1.6rem;
  font-weight: 300;
}
.inquiry_popup .inputBox input,
.inquiry_popup .inputBox .content {
  width: 100%;
  background: #f5f5f5;
  border-radius: 60px;
  padding: 11px 25px;
}
.inquiry_popup .inputBox input {
  height: 60px;
}
.inquiry_popup .inputBox textarea {
  height: 120px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 25px;
}
.inquiry_popup .inputBox .content {
  height: 170px;
  position: relative;
}
.inquiry_popup .inputBox .content textarea {
  background: transparent;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.inquiry_popup .inputBox .content p {
  color: #aaa;
  font-size: 1.6rem;
  font-weight: 300;
  position: absolute;
  top: 40px;
  left: 20px;
}
.inquiry_popup .inputBox .content textarea:focus + p {
  opacity: 0;
}
.inquiry_popup .agree {
  margin: 15px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.inquiry_popup .inputCheck label {
  font-size: 1.6rem;
}
.inquiry_popup .agree * {
  line-height: 1;
}
.inquiry_popup .agree button {
  color: #aaa;
  font-size: 1.6rem;
  font-weight: 300;
  text-decoration: underline;
  text-underline-position: under;
  margin: 0 0 0 auto;
}
.inquiry_popup .moreButton {
  width: 100%;
  height: 70px;
  border: 2px solid var(--color-black);
  border-radius: 50px;
  margin: 20px 0 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.inquiry_popup .moreButton span,
.inquiry_popup .moreButton img {
  position: absolute;
  transition: all 0.6s;
}
.inquiry_popup .moreButton span {
  color: #111;
  font-size: 2.0rem;
  font-weight: 600;
  left: 50%;
  transform: translateX(-50%);
}
.inquiry_popup .moreButton img {
  width: 18px;
  right: 60px;
  opacity: 0;
}
.inquiry_popup .moreButton:not(.black)::before {
  content: "";
  display: block;
  border-radius: 50px;
  box-shadow: 0px 0px 20px rgba(105, 36, 152, 0.2);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inquiry_popup .moreButton:not(.black):hover::before {
  opacity: 1;
}
.inquiry_popup .moreButton.black {
  background: var(--color-black);
  border: none;
}
.inquiry_popup .moreButton.black span {
  color: var(--color-white);
}
.inquiry_popup .moreButton.black img {
  filter: brightness(0) invert(1);
}
.inquiry_popup .moreButton:hover span {
  left: 30px;
  transform: translateX(0);
}
.inquiry_popup .moreButton:hover img {
  opacity: 1;
  right: 30px;
}