@charset "UTF-8";

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  transition: all 0.6s;
}
.hidden {
  top: -100px; /* 헤더의 높이만큼 위로 숨김 */
  transition: all 0.6s;
}
.header_w {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;

  box-sizing: border-box;
}
.header_layout_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dep_1_ul {
  display: flex;
  align-items: center;
}
.dep_1_ul > li:first-child {
  padding: 28px 0;
}
.dep_1_ul > li {
  padding: 28px 0 28px 40px;
  box-sizing: border-box;
}
.dep_1_ul > li > a {
  display: block;
  position: relative;
  color: #1f2937;
  font-family: "Pretendard";
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.72px;
}
.dep_1_ul > li > a::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #3573b8;
  border-radius: 100%;
  display: none;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.dep_2_ul {
  width: 100%;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -80px;
  left: 0;
  z-index: 10;
  display: none;
  padding: 29px 0;
}
.dep_2_ul > li {
}
.dep_2_ul > li > a {
  color: #374151;
  font-family: "Pretendard";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.32px;
}
.dep_2_ul > li > a:hover {
  color: #3573b8;
}
.dep_box_bg {
  border-radius: 0px 0px 30px 30px;
  left: 0;
  top: 80px;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 0px;
  transition: all 0.4s;
  /* filter: blur(1px); */
}
.dep_box_bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit; /* 부모의 배경을 가져옴 */
  filter: blur(20px); /* 흐림 효과 */
  z-index: 1;
}

.dep_1_ul > li:hover > a::after {
  display: block;
}

.dep_1_ul > li:hover .dep_2_ul,
.dep_1_ul li:focus-within > .dep_2_ul {
  display: flex;
}

.dep_1_ul > li:hover > a {
  color: #3573b8;
  font-weight: 500;
}

.dep_box_pc:hover .dep_box_bg {
  /* height: 80px; */
  border-radius: 0px 0px 30px 30px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  background: rgba(201, 208, 226, 0.7);
  transition: all 0.4s;
  top: 80px;
  height: 80px;
}
.menu_box_mo {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .header_w {
    width: 90%;
  }
  .dep_1_ul > li {
    padding: 28px 0 28px 20px;
  }
}
@media screen and (max-width: 1280px) {
  .dep_1_ul > li > a {
    font-size: 14px;
  }
  .dep_2_ul > li > a {
    font-size: 14px;
  }
  .login_btn_layout {
    font-size: 14px;
  }
  .dep_box_bg {
    top: 75px;
  }
  .dep_box_pc:hover .dep_box_bg {
    top: 75px;
  }
}

/* 모바일 메뉴 */
.mo_menu_btn {
  display: none;
}
.mo_menu_layout {
  display: none;
}
@media screen and (max-width: 1060px) {
  h1 a {
    display: block;
    width: 104px;
  }
  h1 a img {
    display: block;
    width: 100%;
  }
  .dep_1_ul > li:first-child {
    padding: 20px 0;
  }
  .dep_1_ul > li {
    padding: 20px 0 20px 10px;
  }
  .dep_box_pc:hover .dep_box_bg {
    height: 60px;
  }
  .dep_2_ul {
    bottom: -74px;
  }
  .dep_box_bg {
    top: 60px;
  }
  .dep_box_pc:hover .dep_box_bg {
    top: 60px;
  }
}
@media screen and (max-width: 910px) {
  .dep_box_pc {
    display: none;
  }
  .mo_menu_btn {
    display: block;
  }
  .header_w {
    padding: 10px 0;
    box-sizing: border-box;
  }
}
.mo_menu_layout {
  overflow: scroll;
  height: 100svh;
  background-color: #569ddd;
}

.mo_menu_layout .top > ul {
  width: 100%;
  background-color: #f3f4f6;
  display: flex;
}
.mo_menu_layout .top > ul > li {
  margin: 14px auto;
  flex: 1 1 auto;
  width: 25%;
  border-right: solid 1px #d1d5db;
  text-align: center;
}
.mo_menu_layout .top > ul > li:last-child {
  border-right: none;
}
.mo_menu_layout .top > ul > li a {
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}
.mo_menu_layout .top > ul > li a .img_box {
}
.mo_menu_layout .top > ul > li a p {
}
.mo_big_cat {
  padding: 18px 20px;
  box-sizing: border-box;
  width: 100%;
  background-color: #569ddd;
  display: flex;
  justify-content: space-between;
}
.mo_big_cat > p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
.mo_big_cat .plus_box {
}
.mo_big_cat .plus_box .close_plus {
  opacity: 0;
  transition: all 0.6s;
}
.mo_big_cat .plus_box span {
  transition: all 0.6s;
  display: inline-block;
  width: 15px;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
}
.mo_big_cat .plus_box span:nth-child(1) {
  transform: rotate(90deg) translate(0px, -19px);
}
.mo_small_cat {
  background-color: #3a8bd3;
  padding: 10px 0;
  box-sizing: border-box;
}
.mo_small_cat > li {
  box-sizing: border-box;
}
.mo_small_cat > li a {
  padding: 8px 30px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #e5e7eb;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.mo_menu_layout .bottom {
  margin-bottom: 150px;
}

.ham_btn {
  display: flex;
  gap: 5px;
  flex-direction: column;
  height: 100%;
}
.ham_btn span {
  display: inline-block;
  background-color: #374151;
  border-radius: 10px;
  box-sizing: border-box;
  width: 20px;
  height: 2px;
}
.ham_btn span:nth-child(1) {
  transition: all 0.8s;
}
.ham_btn span:nth-child(2) {
  width: 10px;
  transition: all 0.8s;
}
.ham_btn span:nth-child(3) {
  transition: all 0.8s;
}
.ham_btn.close span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  transition: all 0.8s;
}
.ham_btn.close span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  transition: all 0.8s;
}
.ham_btn.close span:nth-child(2) {
  opacity: 0;
  transition: all 0.6s;
}
/* 
.mo_menu_layout{
    -ms-overflow-style: none;
}
.mo_menu_layout::-webkit-scrollbar{
    display:none;
  }


.mo_menu_layout .bottom::-webkit-scrollbar{
    display:none;
  }


.mo_menu_layout .bottom >ul{

}
.mo_menu_layout .bottom >ul > li{

}


 */

.time_way_section {
  padding: 85px 0;
  box-sizing: border-box;
  background-color: #111827;
  /* display: none; */
}
.time_way_w {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.time_way_section .cont_1 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.time_way_section .cont_1 h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: #3796ff;
}
.time_way_section .cont_1 h3 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-top: 5px;
}
.time_way_section .cont_1 .text_box {
  margin-top: 40px;
}
.time_way_section .cont_1 .text_box p {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.time_way_section .cont_1 ._1 {
  width: 30%;
}
.time_way_section .cont_1 ._1 ul {
}
.time_way_section .cont_1 ._1 ul li {
  display: flex;
  gap: 12px;
  align-items: center;
}
.time_way_section .cont_1 ._1 ul li:first-child span {
  letter-spacing: 7px;
}
.time_way_section .cont_1 ._1 ul li:last-child span {
  letter-spacing: 3.5px;
}
.time_way_section .cont_1 ._1 ul li span {
  display: inline-block;
  min-width: 90px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 4px;
}
.time_way_section .cont_1 ._1 .notice_text {
  margin-top: 20px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  border-radius: 8px;
  background: #374151;
  padding: 8px 40px;
  box-sizing: border-box;
  width: 100%;
}
.time_way_section .cont_1 ._2 {
  width: 30%;
}
.time_way_section .cont_1 ._2 .btn_list {
  margin-top: 30px;
}
.time_way_section .cont_1 ._2 .btn_list button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.time_way_section .cont_1 ._2 .btn_list button.on svg rect {
  fill: #3796ff;
}
.time_way_section .cont_1 ._2 .btn_list button:hover svg rect {
  fill: #3796ff;
}

@media screen and (max-width:768px) {
    .time_way_section .cont_1 ._1 ul li {
        justify-content: center;
    }
    .time_way_section .cont_1 ._1 ul > li:nth-child(2) p{
        margin: inherit !important;
        width: 164px;
    }
}

.btn_list_tab_content {
  margin-top: 12px;
  min-height: 156px;
}
.btn_list_tab_content h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.btn_list_tab_content > ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn_list_tab_content > ul li {
  display: flex;
  gap: 5px;
}
.btn_list_tab_content > ul li span {
  padding: 2px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}
.time_way_section .cont_1 ._2 .go_naver_map {
  margin-top: 30px;
  display: block;
}
.time_way_section .cont_1 ._3 {
  max-width: 800px;
}
.time_way_section .cont_1 ._3 img {
  display: block;
  border-radius: 30px;
  width: 100%;
}

/* 풋터 */
footer {
  background-color: #0d0d0d;
  padding: 30px 0;
  box-sizing: border-box;
}
.footer_w {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.footer_cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_text_box {
  display: flex;
  align-items: center;
}
.ft_logo {
  margin-right: 30px;
}
.ft_info {
  border-left: solid 1px #9ca3af;
  display: flex;
  flex-direction: column;
  flex: content;
  gap: 20px;
}
.ft_info > li {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-left: 50px;
}
.ft_info > li p {
  color: #fff;
  font-family: "Pretendard";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
.ft_info > li:last-child p {
  color: #9ca3af;
}
.ft_sns_link {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media screen and (max-width: 1600px) {
  .time_way_w {
    width: 90%;
  }
  .time_way_section .cont_1 ._1 {
    min-width: 315px;
  }
  .time_way_section .cont_1 ._2 {
    min-width: 330px;
  }
}
@media screen and (max-width: 1450px) {
  .time_way_section .cont_1 ._3 {
    width: 100%;
    max-width: none;
  }
  .time_way_section .cont_1 {
    flex-wrap: wrap;
    gap: 40px 20px;
  }
  .time_way_section .cont_1 ._1 {
    width: 48%;
    display: flex;
    gap: 30px;
  }
  .time_way_section .cont_1 ._1 .text_box {
  }
  .time_way_section .cont_1 ._2 {
    width: 48%;
    display: flex;
    gap: 30px;
  }
  .time_way_section .cont_1 .text_box {
    margin-top: 0;
  }
}
@media screen and (max-width: 1280px) {
  .footer_w {
    width: 90%;
  }
}
@media screen and (max-width: 1180px) {
  .time_way_section .cont_1 ._1,
  .time_way_section .cont_1 ._2 {
    flex-direction: column;
    width: auto;
  }
  .time_way_section .cont_1 ._1 .notice_text {
    max-width: 400px;
  }
  .time_way_section .cont_1 {
    justify-content: center;
  }
}
@media screen and (max-width: 1020px) {
  .footer_cont {
    flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 855px) {
  .time_way_section .cont_1 h3,
  .time_way_section .cont_1 h4 {
    text-align: center;
  }
  .time_way_section .cont_1 ._2 .btn_list {
    text-align: center;
  }
  .time_way_section .btn_list_cont {
    text-align: center;
  }
  .btn_list_tab_content > ul li {
    justify-content: center;
  }
  .time_way_section .cont_1 ._2 .go_naver_map {
    text-align: center;
  }
  .time_way_section .cont_1 .text_box > p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .menu_box_mo {
    gap: 10px;
  }
  .login_img {
    max-width: 90px;
  }
  .login_img img {
    display: block;
    width: 100%;
  }
  .time_way_section {
    padding: 50px 0;
  }
  .time_way_section .cont_1 {
    gap: 70px;
  }
  .time_way_section .cont_1 ._1 {
    min-width: auto;
  }
  .time_way_section .cont_1 h4 {
    font-size: 14px;
  }
  .time_way_section .cont_1 h3 {
    font-size: 30px;
  }
  .time_way_section .cont_1 .text_box p {
    font-size: 16px;
  }
  .time_way_section .cont_1 ._1 ul li span {
    font-size: 18px;
  }
  .time_way_section .cont_1 ._1 .notice_text {
    font-size: 14px;
  }
  .btn_list_tab_content h5 {
    font-size: 16px;
  }
  .btn_list_tab_content > ul li span {
    font-size: 16px;
  }
  .footer_text_box {
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
  }
  .ft_info {
    border-left: 0;
    margin-right: 0;
    text-align: left;
    gap: 10px;
  }
  .ft_info > li {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ft_info > li p {
    font-size: 14px;
  }
  .btn_list_tab_content {
    min-height: auto;
  }
}

/* 퀵메뉴 */
/* 피시퀵메뉴 */
.side-gnb {
  position: fixed;
  bottom: calc(3%);
  right: 30px;
  /* transform: translateY(-50%); */
  z-index: 999;
  transition: bottom 0.6s;
}
.side-gnb.scrolled {
  bottom: calc(3% + 90px);
}
#gnb {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  max-width: 80px;
  border-radius: 100px;
}
.side-gnb1-bx {
  padding: 20px 9px 10px 9px;
  box-sizing: border-box;
  display: block;
}
.gnb1-icon-img {
  text-align: center;
  box-shadow: 0px 4px 10px 0px rgba(55, 65, 81, 0.2);
  border-radius: 100%;
}
.gnb1-icon-img > .img_100 {
  margin-bottom: -3px;
}
.gnb1-icon-img.logo-rel {
  border-radius: 100%;
  position: relative;
  transition: all 0.6s;
  box-shadow: -1px -1px 2px 0px rgba(0, 0, 0, 0.4) inset,
    1px 1px 2px 0px rgba(255, 255, 255, 0.6) inset;
}
.toggle-arrow.acitve .gnb1-icon-img.logo-rel {
  /* transform: rotate(90deg); */
  transition: all 0.6s;
}
.gnb1-icon-img-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s;
}
.toggle-arrow.acitve .gnb1-icon-img-logo {
  /* transform: translate(-50%, -50%) rotate(-90deg); */
  transition: all 0.6s;
}
.gnb-cont-txt {
  font-size: 14px;
  line-height: 18px;
  font-family: "Pretendard";
  text-align: center;
  font-weight: 400;
  margin-top: 8px;
}
.quick_line {
  width: 40px;
  height: 1px;
  background-color: #ececec;
  margin: 8px auto;
}
.toggle-arrow {
  cursor: pointer;
}

/* top 버튼 */
.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

#top-btn {
  position: fixed;
  bottom: 3%;
  right: calc(30px + 8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 20%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

#top-btn.scrolled {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  pointer-events: initial;
}

#top-btn a {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 11.2px;
  background: linear-gradient(99deg, #fff -0.08%, #f2f2f2 100%);
  box-shadow: -0.8px -0.8px 1.6px 0px rgba(0, 0, 0, 0.4) inset,
    0.8px 0.8px 1.6px 0px rgba(255, 255, 255, 0.6) inset,
    0px 3.2px 12px 0px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

#top-btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76%;
  height: 76%;
  background: url("/img/main/top_btn.png") no-repeat 50% 50% / contain;
  transition: transform 0.3s;
}

#top-btn a:hover {
  box-shadow: -0.8px -0.8px 1.6px 0px rgba(0, 0, 0, 0.4) inset,
    0.8px 0.8px 1.6px 0px rgba(255, 255, 255, 0.6) inset,
    0px 3.2px 12px 0px rgba(9, 47, 65, 0.45);
}

#top-btn a:hover:before {
  transform: translate(-50%, -55%);
}

@media screen and (max-width: 768px) {
  /* .pc_quick_box {
    display: none;
  } */
  .side-gnb {
    width: 100%;
    bottom: 0;
    right: 0;
  }
  .side-gnb.scrolled {
    bottom: 0;
  }
  #gnb {
    max-width: 100%;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .side-gnb1-bx {
    display: flex;
    padding: 10px 9px;
  }
  .gnb-cont {
    flex: 1;
  }
  .gnb1-icon-img {
    max-width: 40px;
    margin: 0 auto;
    box-shadow: unset;
  }
  .gnb1-icon-img > .img_100 {
    width: 100%;
    margin-bottom: -3px;
  }
  .gnb1-icon-img.logo-rel {
    box-shadow: unset;
  }
  .gnb-cont-txt {
      margin-top: 4px;
      font-size: 12px;
  }
  .quick_line,
  .toggle-arrow {
    display: none;
  }
  #top-btn {
    bottom: 15%;
  }
}
/* pc 퀵메뉴 끝 */

.event_quick {
  position: fixed;
  z-index: 999;
  bottom: 10%;
  right: 8%;
}
.event_quick_btn {
  text-align: right;
}
.event_quick_btn > button {
  border: none;
  outline: none;
  background-color: transparent;
  color: #333;
  font-size: 24px;
  cursor: pointer;
}
@media screen and (max-width: 1520px) {
  .event_quick {
    right: 12%;
  }
}
@media screen and (max-width: 910px) {
  .event_quick {
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  .event_quick {
    bottom: 15%;
    right: 3%;

    transition: bottom 0.6s;
  }

  .event_quick.scrolled {
    bottom: calc(15% + 60px);
    right: 3%;
  }

  .event_quick_btn > button {
    font-size: 20px;
  }
  .event_quick img {
    max-width: 117px;
  }

  /* top 버튼 */
  #top-btn {
    right: 3%;
  }

  #top-btn a {
    width: 50px;
    height: 50px;
  }
}

.personal_btn_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.pwrsonal_mid {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.personal_btn_content {
  max-width: 1280px;
  width: 100%;
  text-align: center;

  margin: 0 auto;
}
.personal_btn_close {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Pretendard";
  font-size: 18px;
}
.personal_flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.personal_flex p {
  color: #374151;
  font-family: "Pretendard";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.32px;
}
.personal_flex > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: solid 1px #374151;
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
}
.personal_flex > ul li {
  color: #374151;
  font-family: "Pretendard";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.32px;
}
.personal_flex h4 {
  color: #374151;
  font-family: "Pretendard";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.32px;
  margin-bottom: 10px;
}
