@charset "utf-8";

/*
 * main.css
 * 메인영역 삽입 추가하시면됩니다. 아래 커스텀진행하세요.
 *
 * 1) main visual
 * 
 */

/* 1) main visual */
[data-mainVisual] {
  position: relative;
  width: 100%;
  height: calc(100vh - 50rem);
  background: #000;
  border-bottom-right-radius: 280rem;
  overflow: hidden;
  @media(width<768px){
	height: 408rem;
  }
}
[data-mainVisual] * {
  box-sizing: border-box;
  word-break: keep-all;
}
[data-mainVisual] .visualSwiper {
  height: 100%;
}
[data-mainVisual] .swiper-slide:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: 7s ease;
}
[data-mainVisual] .swiper-slide.sl1:before {
  background: url("/images/main/mainVisual1.jpg") no-repeat 60% 50% / cover;
}
[data-mainVisual] .swiper-slide.sl2:before {
  background: url("/images/main/mainVisual2.jpg") no-repeat 60% 50% / cover;
}
[data-mainVisual] .swiper-slide.sl3:before {
  background: url("/images/main/mainVisual3.jpg") no-repeat 60% 50% / cover;
}
[data-mainVisual] .swiper-slide-active:before {
  transform: scale(1);
}
[data-mainVisual] .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60rem;
  height: 100%;
}
[data-mainVisual] .txt em {
  display: block;
  font-size: var(--fs55);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  opacity: 0;
  transform: translateY(30rem);
  transition: 2s ease;
}
[data-mainVisual] .txt em b {
  font-weight: bold;
}
[data-mainVisual] .txt span {
  display: block;
  font-size: var(--fs22);
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30rem);
  transition: 2s ease;
  transition-delay: 0.3s;
}
[data-mainVisual] .txt span > br {
  display: none;
}
[data-mainVisual] .swiper-slide-active em,
[data-mainVisual] .swiper-slide-active span {
  opacity: 1;
  transform: translateY(0);
}
[data-mainVisual] .swiper-pagination {
  display: flex;
  gap: 20rem;
  position: absolute;
  bottom: 80rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
}
[data-mainVisual] .swiper-pagination-bullet {
  margin: 0 !important;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: none;
  opacity: 1;
}
[data-mainVisual] .swiper-pagination-bullet-active {
  background: #fff;
}
@media (max-width: 1024px) {
  [data-mainVisual] {
    border-bottom-right-radius: 200rem;
  }
}
@media (max-width: 768px) {
  [data-mainVisual] {
    border-bottom-right-radius: 150rem;
  }
  [data-mainVisual] .txt {
    gap: 40rem;
  }
  [data-mainVisual] .swiper-pagination {
    bottom: 50rem;
  }
}
@media (max-width: 480px) {
  [data-mainVisual] {
    border-bottom-right-radius: 100rem;
  }
  [data-mainVisual] .txt {
    gap: 30rem;
  }
  [data-mainVisual] .txt span > br {
    display: block;
  }
  [data-mainVisual] .swiper-pagination {
    gap: 16rem;
    bottom: 40rem;
  }
  [data-mainVisual] .swiper-pagination-bullet {
    width: 10rem;
    height: 10rem;
  }
}

/* main common */
:root {
  --m70: 70rem;

  --p150: 150rem;
  --p200: 200rem;

  @media (max-width: 1024px) {
    --m70: 50rem;

    --p150: 100rem;
    --p200: 160rem;
  }
  @media (max-width: 768px) {
    --m70: 40rem;

    --p150: 80rem;
    --p200: 110rem;
  }
  @media (max-width: 480px) {
    --m70: 30rem;

    --p150: 60rem;
    --p200: 90rem;
  }
}
main {
  overflow: hidden;
}
main * {
  box-sizing: border-box;
  word-break: keep-all;
}
section {
  position: relative;
}
.mainTit {
  margin-bottom: var(--m70);
  font-size: var(--fs60);
  font-family: var(--font-eng);
  font-weight: 900;
  color: #090909;
  line-height: 1;
}
.mainTit i {
  display: block;
  margin-bottom: 20rem;
  font-size: var(--fs20);
  font-family: var(--font-combine);
  font-weight: bold;
  color: var(--color-point);
}
.mainTit.w,
.mainTit.w i {
  color: #fff;
}
@media (max-width: 1024px) {
}
@media (max-width: 768px) {
  .mainTit i {
    margin-bottom: 12rem;
  }
}
@media (max-width: 480px) {
}

/* product */
.pr {
  padding: var(--p200) 0;
}
.pr .mainTit {
  text-align: center;
}
.pr .list {
  display: flex;
  gap: 20rem;
}
.pr .list li {
  width: calc((100% - (20rem * 3)) / 4);
  transition: 1s ease;
}
.pr .list li:nth-child(2) {
  transition-delay: 0.05s;
}
.pr .list li:nth-child(3) {
  transition-delay: 0.1s;
}
.pr .list li:nth-child(4) {
  transition-delay: 0.15s;
}
.pr .list a {
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 60rem 40rem;
  width: 100%;
  height: 550rem;
  border-radius: 20rem;
  overflow: hidden;
  transition: 0.5s ease;
}
.pr .list a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000, transparent, transparent);
  opacity: 0.6;
}
.pr .list em {
  display: flex;
  align-items: center;
  position: relative;
  font-size: var(--fs28);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.pr .list em img {
  display: block;
  margin-left: 0;
  width: 22rem;
  opacity: 0;
  transition: 0.5s ease;
}
.pr .btnMore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20rem;
  margin: 80rem auto 0;
  width: 250rem;
  height: 70rem;
  font-size: var(--fs18);
  color: var(--color-point);
  line-height: 1;
  font-weight: 600;
  border-radius: 35rem;
  background: #fff;
  box-shadow: 0 0 60rem rgba(0, 77, 161, 0.2);
  transition: 0.5s ease;
}
.pr .btnMore i {
  display: block;
  margin-top: -2rem;
  font-size: var(--fs20);
}
@media (hover: hover) {
  .pr .list:hover li {
    filter: grayscale(1);
  }
  .pr .list li:hover {
    filter: grayscale(0);
    width: calc(((100% - (20rem * 3)) / 4) + 15%);
    transition: 0.5s ease;
  }
  .pr .list li:hover em img {
    margin-left: 20rem;
    opacity: 1;
  }
  .pr .btnMore:hover {
    box-shadow: 25rem 25rem 60rem rgba(0, 77, 161, 0.3);
  }
}
@media (max-width: 1024px) {
  .pr .list a {
    padding: 40rem 25rem;
    height: 350rem;
  }
  .pr .btnMore {
    margin-top: 60rem;
  }
}
@media (max-width: 768px) {
  .pr .list {
    flex-wrap: wrap;
  }
  .pr .list li {
    width: calc((100% - 20rem) / 2);
    transition-delay: unset !important;
  }
  .pr .list a {
    padding: 30rem 25rem;
    height: 220rem;
  }
  .pr .btnMore {
    margin-top: 50rem;
    width: 200rem;
    height: 60rem;
  }
  @media (hover: hover) {
    .pr .list li:hover {
      width: calc((100% - 20rem) / 2);
    }
    .pr .list li:hover em img {
      margin-left: 20rem;
      opacity: 1;
    }
    .pr .btnMore:hover {
      box-shadow: 25rem 25rem 60rem rgba(0, 77, 161, 0.3);
    }
  }
}
@media (max-width: 480px) {
  .pr .list {
    gap: 10rem;
  }
  .pr .list li {
    width: calc((100% - 10rem) / 2);
  }
  .pr .list a {
    padding: 25rem 20rem;
    height: 200rem;
    border-radius: 15rem;
  }
  .pr .list em {
    font-size: var(--fs24);
  }
  .pr .list em img {
    display: none;
  }
  .pr .btnMore {
    margin-top: 40rem;
    width: 180rem;
    height: 54rem;
  }
  @media (hover: hover) {
    .pr .list li:hover {
      width: calc((100% - 10rem) / 2);
    }
    .pr .list li:hover em img {
      margin-left: 10rem;
      opacity: 1;
    }
    .pr .btnMore:hover {
      box-shadow: 25rem 25rem 60rem rgba(0, 77, 161, 0.3);
    }
  }
}

/* about */
.about {
  padding-bottom: var(--p200);
}
.about .txtWrap {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.about .txtWrap .obj {
  display: block;
  position: absolute;
  left: -350rem;
  top: -200rem;
  width: 600rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px dashed #eee;
  transform: scale(0);
}
.about h2 {
  font-size: var(--fs60);
  line-height: 1.3;
  color: rgba(9, 9, 9, 0.15);
}
.about h2 .scrl-fillTxt {
  display: block;
  position: relative;
  width: max-content;
  background: linear-gradient(to right, #090909, #090909) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 1s;
}
.about .img {
  position: relative;
  margin-left: auto;
  width: 52%;
}
.about .img span {
  display: block;
  width: 100%;
  aspect-ratio: 20/11;
  border-radius: 300rem 0 0 300rem;
  overflow: hidden;
}
.about .img span img {
  display: block;
  width: 100%;
  height: 100%;
}
.about .btnMore {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -50rem;
  bottom: 0;
  width: 230rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  font-size: var(--fs18);
  font-weight: 600;
  color: #333;
  line-height: 1;
  background: rgba(0, 0, 0, 0.03);
}
.about .btnMore em {
  display: block;
  margin: 15rem 0 30rem;
  font-size: var(--fs30);
  font-weight: 900;
  color: var(--color-point);
}
.about .btnMore svg {
  display: block;
  width: 33rem;
}
.about .btnMore svg .st0 {
  fill: var(--color-point);
  transition: 0.5s ease;
}
@media (hover: hover) {
  .about .btnMore:hover svg .st0 {
    fill: var(--color-point);
  }
}
@supports not (backdrop-filter: blur(10px)) {
  .about .btnMore {
    background: #fff;
    box-shadow: 0 0 60rem rgba(0, 77, 161, 0.2);
  }
  .about .btnMore:hover {
    box-shadow: 25rem 25rem 60rem rgba(0, 77, 161, 0.3);
  }
}
@media (max-width: 1380px) {
  .about .txtWrap {
    top: 5%;
  }
  .about h2 {
    font-size: var(--fs50);
  }
  .about .img {
    width: 50%;
  }
  .about .btnMore {
    width: 180rem;
  }
  .about .btnMore em {
    margin: 8rem 0 25rem;
    font-size: var(--fs25);
  }
}
@media (max-width: 1024px) {
  .about .txtWrap .obj {
    left: -200rem;
    top: -150rem;
    width: 350rem;
  }
  .about .img {
    width: 46%;
  }
  .about .img span {
    aspect-ratio: 20 / 15;
  }
}
@media (max-width: 768px) {
  .about h2 {
    font-size: var(--fs45);
  }
  .about .btnMore {
    width: 150rem;
  }
  .about .btnMore em {
    margin: 8rem 0 18rem;
  }
  .about .btnMore svg {
    width: 25rem;
  }
}
@media (max-width: 480px) {
  .about .txtWrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .about .txtWrap .obj {
    left: -100rem;
    top: -80rem;
    width: 200rem;
  }
  .about .img {
    margin-top: 30rem;
    width: 80%;
  }
  .about .img span {
    aspect-ratio: 20/13;
  }
  .about .btnMore {
    width: 130rem;
  }
  .about .btnMore em {
    margin: 6rem 0 15rem;
  }
}

/* 공지사항 */
.notice {
  padding-top: var(--p150);
  z-index: 1;
}
.notice .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 155rem);
  overflow: hidden;
  background: transparent;
}
.notice .fixedImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url("/images/main/notice_bg.jpg") no-repeat center/cover;
}
.notice .titWrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--m70);
}
.notice .titWrap h2 {
  margin-bottom: 0;
}
.notice .btnMore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20rem;
  margin-bottom: 9rem;
  font-size: var(--fs18);
  color: #fff;
  line-height: 1;
  font-weight: 600;
  opacity: 0.7;
  transition: 0.5s ease;
}
.notice .btnMore i {
  display: block;
  margin-top: -2rem;
  font-size: var(--fs20);
}
.notice .list {
  display: flex;
  height: 310rem;
  background: #fff;
  border-radius: 20rem;
}
.notice .list li {
  width: calc(100% / 3);
  height: 100%;
}
.notice .list a {
  display: block;
  padding: 60rem 0;
  height: 100%;
}
.notice .list a > div {
  position: relative;
  padding: 0 50rem;
  height: 100%;
}
.notice .list li:nth-child(2) a > div {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.notice .list span.state {
  display: block;
  font-size: var(--fs15);
  color: #bbb;
  font-weight: bold;
  line-height: 1;
}
.notice .list span.new {
  color: var(--color-point);
}
.notice .list em.title {
  display: block;
  margin: 16rem 0 40rem;
  font-size: var(--fs22);
  font-weight: 600;
  color: #222;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice .list p.text {
  overflow: hidden;
  font-size: var(--fs17);
  color: #777;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice .list i.date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 50rem;
  width: 100%;
  font-size: var(--fs15);
  color: #aaa;
  font-family: var(--font-eng);
  line-height: 1;
}
.notice .list i.date svg {
  display: block;
  width: 22rem;
  transition: 0.5s ease;
}
.notice .list i.date svg .st0 {
  fill: #ddd;
  transition: 0.5s ease;
}
@keyframes noticeBtn {
  0% {
    opacity: 0;
    transform: translateX(-20rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) {
  .notice .btnMore:hover {
    opacity: 1;
  }
  .notice .list a:hover i.date svg {
    animation: noticeBtn 0.5s ease both;
  }
  .notice .list a:hover i.date svg .st0 {
    fill: var(--color-point);
  }
}
@media (max-width: 1024px) {
  .notice .img {
    height: calc(100% - 130rem);
  }
  .notice .list {
    height: 260rem;
  }
  .notice .list a {
    padding: 40rem 0;
  }
  .notice .list a > div {
    padding: 0 25rem;
  }
  .notice .list em.title {
    margin: 12rem 0 35rem;
    font-size: var(--fs20);
  }
  .notice .list i.date {
    padding: 0 25rem;
  }
}
@media (max-width: 768px) {
  .notice .list {
    height: 220rem;
  }
  .notice .list a {
    padding: 30rem 0;
  }
  .notice .list i.date svg {
    width: 18rem;
  }
}
@media (max-width: 480px) {
  .notice .img {
    height: calc(100% - 100rem);
  }
  .notice .list {
    display: block;
    height: auto;
    border-radius: 15rem;
  }
  .notice .list li {
    width: 100%;
  }
  .notice .list a {
    padding: 0 20rem;
  }
  .notice .list a > div {
    padding: 30rem 0;
  }
  .notice .list li:nth-child(2) a > div {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
  }
  .notice .list em.title {
    margin: 10rem 0 20rem;
  }
  .notice .list i.date {
    position: relative;
    margin-top: 30rem;
    padding: 0;
  }
  .notice .list i.date svg {
    width: 16rem;
  }
}

/* cs */
.cs {
  margin-top: -155rem;
  padding: calc(155rem + var(--p150)) 0 var(--p150);
  background: url("/images/main/cs_bg.jpg") no-repeat center/cover;
}
.cs .inr-1600 {
  display: flex;
  align-items: center;
}
.cs .mapWrap {
  width: 62.5%;
  height: 550rem;
  border-radius: 20rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.cs .mapWrap .root_daum_roughmap {
  width: 100% !important;
  height: 100%;
}
.cs .mapWrap .wrap_map {
  height: 100% !important;
}
.cs .mapWrap .map_border,
.cs .mapWrap .wrap_controllers,
.cs .mapWrap .cont {
  display: none !important;
}
.cs .info {
  padding-left: 7.5%;
  width: 37.5%;
}
.cs .info .s_tit {
  display: block;
  margin-bottom: 30rem;
  font-size: var(--fs20);
  font-weight: bold;
  font-family: var(--font-eng);
  line-height: 1;
  color: #aaa;
  font-style: italic;
}
.cs .info a.tel {
  display: flex;
  align-items: center;
  gap: 13rem;
  font-size: var(--fs45);
  font-weight: bold;
  font-family: var(--font-eng);
  line-height: 1;
  color: #111;
  letter-spacing: -1rem;
}
.cs .info a.tel img {
  display: block;
  width: 38rem;
}
.cs .info .time {
  display: flex;
  flex-direction: column;
  gap: 15rem;
  margin: 80rem 0 30rem;
}
.cs .info .time li {
  display: flex;
  font-size: var(--fs18);
  line-height: 1;
}
.cs .info .time em {
  display: block;
  font-weight: 600;
  color: #222;
  width: 80rem;
}
.cs .info .time p {
  color: #666;
}
.cs .info i {
  display: block;
  font-size: var(--fs16);
  line-height: 1;
  color: #777;
}
.cs .info a.btn_kakaomap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
  margin-top: 80rem;
  width: 280rem;
  height: 80rem;
  font-size: var(--fs20);
  font-weight: bold;
  line-height: 1;
  color: #1e1e1e;
  border-radius: 40rem;
  background: #fae100;
}
.cs .info a.btn_kakaomap img {
  display: block;
  width: 20rem;
}
@media (max-width: 1380px) {
  .cs .mapWrap {
    width: 60%;
  }
  .cs .info {
    padding-left: 5%;
    width: 40%;
  }
}
@media (max-width: 1024px) {
  .cs {
    margin-top: -130rem;
    padding: calc(130rem + var(--p150)) 0 var(--p150);
  }
  .cs .mapWrap {
    width: 55%;
    height: 450rem;
  }
  .cs .info {
    width: 45%;
  }
  .cs .info .time {
    margin: 60rem 0 25rem;
  }
  .cs .info a.btn_kakaomap {
    margin-top: 60rem;
  }
}
@media (max-width: 768px) {
  .cs .mapWrap {
    height: 400rem;
  }
  .cs .info a.tel {
    font-size: var(--fs40);
  }
  .cs .info a.btn_kakaomap {
    width: 230rem;
    height: 70rem;
  }
}
@media (max-width: 480px) {
  .cs {
    margin-top: -100rem;
    padding: calc(100rem + var(--p150)) 0 var(--p150);
  }
  .cs .inr-1600 {
    display: block;
  }
  .cs .mapWrap {
    width: 100%;
    height: 350rem;
    border-radius: 15rem;
  }
  .cs .info {
    margin-top: 30rem;
    padding-left: 0;
    width: 100%;
  }
  .cs .info .s_tit {
    margin-bottom: 18rem;
  }
  .cs .info a.tel {
    gap: 8rem;
  }
  .cs .info a.tel img {
    width: 26rem;
  }
  .cs .info .time {
    flex-direction: row;
    gap: 30rem;
    margin: 30rem 0 20rem;
  }
  .cs .info .time li {
    gap: 10rem;
  }
  .cs .info .time em {
    width: auto;
  }
  .cs .info a.btn_kakaomap {
    gap: 10rem;
    margin-top: 30rem;
    width: 200rem;
    height: 60rem;
  }
  .cs .info a.btn_kakaomap img {
    width: 16rem;
  }
}
