/* Setting */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
html {
  --m_color: #00486e;
}
body {
  overflow-x: hidden;
}
.freeze-scroll-lock {
  pointer-events: none;
}
.rel_wrap {
  width: calc(100% - 130px);
  max-width: calc(1920px - 130px);
  margin: 0 auto;
}
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
/* header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99999;
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.13); 
  box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.13);
}
.header_top {
  height: 100%;
  height: 80px;
  background-color: var(--m_color);
  display: flex;
  justify-content: space-between;
}
.header_top .rel_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header_logo_wrap {
  width: 280px;
  position: relative;
  background-color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
}
.header_logo_wrap::before{
  position: absolute;
  top: 0;
  left: -100vw;
  content: "";
  background-color: #fff;
  width: 100vw;
  height: 100%;
}
.header_logo_wrap::after{
  position: absolute;
  top: 0;
  right: -80px;
  content: "";
  background-color: #fff;
  width: 80px;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 80px 100%);
  transform: rotate(-90deg);
}
.header_logo_wrap a {
  width: 240px;
  display: block;
}
.header_logo_wrap svg {
  width: 100%;
  transform: translateY(5px);
}
.header_logo_wrap{
  background-color: #fff;
}
/* .header_logo_wrap svg path,
.header_logo_wrap svg text {
  fill: #fff;
} */
.teaser_open {
  color: var(--m_color);
  font-size: 22px;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 50%;
  letter-spacing: -0.28px;
  font-weight: 700;
}
.header_call_wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header_call_wrap .header_top_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_top_icon img {
  width: 15px;
  height: 15px;
}
.header_call_wrap span:not(.teaser_open) {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}
.header_call_wrap span:not(.teaser_open) b {
  font-weight: 700;
}
.header_bottom {
  background-color: #fff;
  height: 70px;
  border-bottom: 1px solid var(--m_color);
}
.header_bottom .rel_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  height: 100%;
}
.header_menu_wrap {
  display: flex;
  gap: 70px;
  height: 100%;
}
.header_menu_wrap li{
  height: 100%;
  position: relative;
}
.header_menu_wrap a {
  /* 임시, 메뉴는 노토산스로 */
  height: 100%;
  font-family: "Noto Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 15px;
  font-weight: 400;
  text-indent: -0.19px;
  color: #fff;
  position: relative;
}
.header_menu_wrap > li::before{
  position: absolute;
  display: block;
  width: 0%;
  height: 3px;
  content: "";
  top: 63px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s ease-in-out;
}
.header_menu_depth2{
  position: absolute;
  top: calc(1em + 63px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  width: 100%;
  padding: 20px 0;
  transition: all .3s ease-in-out;
  white-space: nowrap;
}
.header_menu_depth2::after{
  position: absolute;
  content: "";
  width: 200vw;
  height: 0px;
  background-color: #fff;
  left: -100vw;
  top: 0;
  z-index: -1;
  transition: all .3s ease-in-out;
  box-shadow: 0px 8px 3px 0px rgba(0,0,0,0.03);
}
.header_menu_wrap > li:hover .header_menu_depth2::after{
  height: 190px;
}
.header_menu_wrap > li:hover .header_menu_depth2{
  opacity: 1;
  pointer-events: all;
}
.header_menu_depth2 a{
  height: 40px;
  color: #333;
}
.header_menu_depth2 a:hover{
  color: var(--m_color);
}
.header_menu_wrap > li:hover::before{
  width: 100%;
}
.main_visual {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.main_visual .rel_wrap {
  display: flex;
  justify-content: center;
  height: 100%;
  padding-top: 150px;
  position: relative;
}
.main_visual_txt {
  position: absolute;
  top: 55%;
  transform: translateY(-70%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main_visual_main_txt {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main_visual_maincopy {
  margin: 20px 0;
  width: 500px;
}
.main_visual_maincopy img {
  max-width: 100%;
}
.main_visual_maincopy p {
  color: #171717;
  font-size: 70px;
  line-height: 1.3;
  font-weight: 500;
}
.main_visual_main_txt p:nth-child(2) {
  text-indent: 0.9em;
}
.main_visual_main_txt p:nth-child(3) {
  text-indent: -2.5em;
}
.main_visual_main_txt p b {
  display: inline-block;
  color: var(--m_color);
  padding: 10px;
  border: 2px solid var(--m_color);
  height: 0.8em;
  text-indent: 0;
  line-height: 0.8em;
}
.main_visual_main_txt p:not(:last-child) b {
  margin: 0 20px;
}
.main_visual_main_txt p:last-child b:not(:last-child) {
  margin-left: 20px;
}
.main_visual_main_txt p:last-child b:last-child {
  margin-left: -2px;
}
.main_visual_sub_txt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px 24px;
  background-color: var(--m_color);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.31px;
  color: #fff;
  border-radius: 5px;
  width: 450px;
}
.intro01,
.intro02 {
  clip-path: inset(0% 0%);
}
.intro01 {
  animation: intro_top_txt 1s ease-in-out;
}
.intro02 {
  animation: intro_top_txt2 2.2s ease-in-out;
}
@keyframes intro_top_txt {
  0% {
    clip-path: inset(0% 50%);
  }
  100% {
    clip-path: inset(0% 0%);
  }
}
@keyframes intro_top_txt2 {
  0% {
    clip-path: inset(0% 50%);
  }
  60% {
    clip-path: inset(0% 50%);
  }
  100% {
    clip-path: inset(0% 0%);
  }
}
.main_visual_left {
  position: absolute;
  left: 0;
  transform: translateX(50%) translateY(-67%);
  height: max-content;
  animation-delay: 0.3s;
  animation: main_visual_bg_ef_l 6s linear;
}
.main_visual.animate .main_visual_left {
  animation: main_visual_bg_ef_l 6s linear;
}
.main_visual.animate .main_visual_right {
  animation: main_visual_bg_ef 6s linear;
}
.main_visual_left::after {
  position: absolute;
  left: -40px;
  height: 572px;
  width: 13px;
  background-image: url(../image/visual_left_txt.png);
  content: "";
  bottom: 9%;
}
.main_visual_right {
  position: absolute;
  right: 0;
  transform: translateX(-50%);
  height: max-content;
  animation-delay: 0.3s;
  animation: main_visual_bg_ef 6s linear;
}
.main_visual_right::after {
  position: absolute;
  right: -40px;
  height: 770px;
  width: 13px;
  background-image: url(../image/visual_right_txt.png);
  content: "";
  top: 0;
}
@keyframes main_visual_bg_ef {
  0% {
    opacity: 0%;
    transform: translateX(-50%) translateY(-67%);
  }
  30% {
    opacity: 100%;
  }
  100% {
    transform: translateX(-50%) translateY(0%);
  }
}
@keyframes main_visual_bg_ef_l {
  0% {
    opacity: 0%;
    transform: translateX(50%) translateY(0%);
  }
  30% {
    opacity: 100%;
  }
  100% {
    transform: translateX(50%) translateY(-67%);
  }
}
.main_visual_img_wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
}
.visual_img_logo_wrap {
  height: 190px;
  background-color: var(--m_color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.visual_img_logo_wrap img {
  width: 215px;
  height: 61px;
}
.main_visual_img_wrap::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 100%;
  background-color: black;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='8' height='8' fill='white' /%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center;
  left: -21px;
}
.main_visual_img_wrap::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 100%;
  background-color: black;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='8' height='8' fill='white' /%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center;
  right: -21px;
}
.sec01 {
  overflow: hidden;
}
.sec01_tap_wrap {
  width: 100vw;
  height: 100vh;
  display: flex;
}
.sec01_tap_wrap .sec01_tab {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: unset;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.9s ease-in-out;
}
.sec01_tap_wrap .sec01_tab:nth-child(even) {
  transform: translateY(100%);
}
.sec01_tap_wrap .sec01_tab:nth-child(odd) {
  transform: translateY(-100%);
}
.sec01.on .sec01_tap_wrap .sec01_tab:nth-child(even),
.sec01.on .sec01_tap_wrap .sec01_tab:nth-child(odd) {
  transform: translateY(0%);
}
.sec01_tap_wrap .sec01_tab:not(:last-child):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0%;
  background-color: #fff;
  top: 0;
  right: 0;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}
.sec01.on .sec01_tap_wrap .sec01_tab:not(:last-child):after {
  height: 100%;
}
.sec01_tab_title {
  font-size: 25px;
  color: #fff;
  letter-spacing: 12.5px;
  border-bottom: 1px solid #fff;
}
.sec01_tap_wrap .sec01_tab::before {
  content: "";
  height: 100%;
  z-index: -1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1);
  transition: all 0.6s ease-in-out;
}
.sec01_tap_wrap .sec01_tab:nth-child(1)::before {
  background-image: url(../image/main_sec01_01.png);
}
.sec01_tap_wrap .sec01_tab:nth-child(2)::before {
  background-image: url(../image/main_sec01_02.png);
}
.sec01_tap_wrap .sec01_tab:nth-child(3)::before {
  background-image: url(../image/main_sec01_03.png);
}
.sec01_tap_wrap .sec01_tab:nth-child(4)::before {
  background-image: url(../image/main_sec01_04.png);
}
.sec01_tap_wrap .sec01_tab:hover::before {
  filter: grayscale(0);
}
.sec01_tab_hide {
  opacity: 0;
  pointer-events: none;
  height: 0;
  transition: 0.2s ease-in-out;
}
.sec01_tab:hover .sec01_tab_hide {
  opacity: 1;
  pointer-events: all;
  height: auto;
  transform: translateY(-10px);
}
.sec01_tab_sub_title {
  margin-top: 60px;
  font-size: 22px;
  letter-spacing: 0.22px;
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 1.3;
}
.sec01_tab_sub_title b {
  font-size: 25px;
  font-weight: 700;
}
.sec01_tab_sub_title::after {
  position: absolute;
  content: "";
  height: 50px;
  width: 1px;
  background-color: #fff;
  bottom: -80px;
  left: calc(50% - 0.5px);
}
.sec01_tab_detail {
  margin-top: 140px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}
.sec01_tab_detail b {
  font-weight: 700;
}
@keyframes sec01_tab_title_ho {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
    transform: translateY(0px);
  }
}

.pin_section {
  overflow: visible;
  view-timeline-axis: block;
}
.pin_section.sec02 {
  height: 600vh;
  view-timeline-name: --pin_sec02_view;
  scroll-snap-type: y mandatory;
}
.pin_sticky {
  height: 100vh;
  position: sticky;
  top: 0;
  width: 100vw;
}
section.sec03 {
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-color: var(--m_color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
section.sec03::after{
  content: "";
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../image/new_sec02_bg.jpg);
  z-index: 1;
  opacity: 0.08;
  filter: brightness(0.5) contrast(1.1) grayscale(1);
}
section.sec03::before{
  /* content: ""; */
  pointer-events: none;
  width: 600px;
  height: 200px;
  position: absolute;
  bottom: 30px;
  right: 50px;
  background-image: url(../image/sujain_logo.svg);
  z-index: 1;
  opacity: 0.15;
  background-repeat: no-repeat;
  background-size: contain;
}
.main_contact {
  z-index: 1;
}
.sec03_contact_title {
  font-size: 35px;
  color: #fff;
  letter-spacing: -0.35px;
  text-align: center;
  transition: 0.8s ease-in-out;
  margin-bottom: 60px;
  position: relative;
}
.sec03_contact_title::before{
  position: absolute;
  content: "";
  width: 40px;;
  height: 1px;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  background-color: #fff;
}
.main_map {
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.18);
  transition: 0.8s ease-in-out;
}
.main_map img {
  max-width: 560px;
}
.sec03_map_adress {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #171717;
}
.sec03_map_adress dd {
  font-size: 18px;
  letter-spacing: -0.18px;
}
.sec03_map_adress dt {
  font-size: 18px;
  letter-spacing: -0.22px;
  padding-left: .3em;
}
.sec03_link_wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.sec03_link_wrap a {
  width: 200px;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  justify-content: center;
}
.sec03_link_wrap a span {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.8px;
}
.sec03_link_img {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.map_link_naver{
  background-color: #00486e;
}
.map_link_kakao{
  background-color: #887b68;
}
.map_link_naver svg {
  width: 13px;
}
.map_link_kakao svg {
  width: 14px;
}
/* .sec03::before {
  content: "";
  width: 847px;
  height: 171px;
  background-image: url("../image/sec03_bg_img_01.png");
  position: absolute;
  top: 220px;
  left: calc(-100% - 65px);
  transition: all 2s;
}
.sec03::after {
  content: "";
  width: 1018px;
  height: 168px;
  background-image: url("../image/sec03_bg_img_02.png");
  position: absolute;
  bottom: 80px;
  right: calc(-100% - 65px);
  transition: all 2s;
  transition-delay: 0.3s;
} */
.sec03.on::before {
  left: 65px;
}
.sec03.on::after {
  right: 65px;
}
.sec02.on .sec02_left::before,
.sec02.on .sec02_right::before {
  height: 100%;
}
.sec02.on .sec02_left::after,
.sec02.on .sec02_right::after {
  width: calc(100% - 20px);
}
/* FOOTER */
footer {
  width: 100%;
  background-color: #142a37;
}
footer.main_footer {
  border-top: 1px solid #fff;
}
footer.sub_footer {
  margin-top: 100px;
}
footer .rel_wrap {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 40px 0;
}
.footer_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer_top_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-grow: 1;
}
.footer_logo {
  width: 178px;
}
.footer_logo svg {
  max-width: 100%;
}
.footer_logo svg path,
.footer_logo svg text {
  fill: #fff;
}
.footer_top_right dl {
  display: flex;
  align-items: center;
}
.footer_top_right dd {
  color: #fff;
  letter-spacing: -0.19px;
  font-size: 12px;
  line-height: 1.5;
}
.footer_top_right dt {
  color: #fff;
  letter-spacing: -0.19px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.logo_hanyang {
  width: 100px;
}
.footer_right{
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer_right_bottom {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #fff;
}
.footer_bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_bottom_txt01 {
  color: #fff;
  text-align: right;
  font-size: 12px;
  line-height: 1.5;
}
.footer_bottom_txt02 {
  margin-top: 1em;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.4;
}
.copyright:not(a) {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
.copyright a {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: underline;
  margin-left: 10px;
}
.copyright a:hover {
  color: rgba(255, 255, 255, 0.4);
}
.footer_top_right_logo_wrap{
  display: flex;
  gap: 14px;
}
.footer_top_right_logo_wrap dl{
  display: flex;
}
.footer_top_right_logo_wrap dd{
  color: #fff ;
  font-size: 12px;
}
.footer_top_right_logo_wrap dt{
  color: #fff;
  font-size: 12px;
}
/* SUB */
.section{
  overflow: hidden;
}
section.section{
  width: 100vw;
  height: 100vh;
  background-color: #eee;
}
section.sub_section .rel_wrap {
  width: calc(100% - 460px);
}
footer.sub_footer .rel_wrap {
  width: calc(100% - 460px);
}
.smenu .rel_wrap {
  width: calc(100% - 460px);
  height: 100%;
}
.sub_visual {
  margin-top: 80px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../image/sub_visual_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
.sub_visual::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url(../image/sub_visual_txt.png);
  width: 801px;
  height: 193px;
  animation: sub_visual_txt_ani 1s ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes sub_visual_txt_ani{
  0%{
    opacity: 0;
    transform: translateX(-50%) translateY(-40%);
  }
  100%{
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
  }
}
.sub_visual h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  animation: sub_visual_h1 0.6s ease-in-out;
}
@keyframes sub_visual_h1 {
  0% {
    opacity: 0%;
    transform: translateY(10px);
  }
  100% {
    opacity: 100%;
    transform: translateY(0px);
  }
}
.sub_top {
  position: absolute;
  transform: translateY(100%);
  width: 100%;
  z-index: -1;
}
.sub_top::before {
  content: "";
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  width: 1px;
  background-color: #000;
}
.sub_top h2 {
  font-size: 30px;
  letter-spacing: -0.6px;
  margin-top: 55px;
  text-align: center;
}
.smenu {
  height: 55px;
  display: flex;
  align-items: center;
  margin-bottom: 200px;
  background-color: #f3f3f3;
}
.smenu .rel_wrap{
  display: flex;
}
.smenu .home{
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.smenu .home img{
  width: 14px;
  height: 14px;
}
.smenu .home::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--m_color);
  border-radius: 50%;
}
.smenu ul {
  display: flex;
  width: 100%;
}
.smenu ul li {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.smenu ul li.home {
  border-left: unset;
}
.smenu ul li.home a {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 20px;
  line-height: 0;
  padding: 10px 20px;
}
.smenu ul li.home a img{
  width: 14px;
  height: 14px;
  padding: 6px;
  background-color: var(--m_color);
  border-radius: 50%;
}
.smenu_depth1{
  position: relative;
}
.smenu_depth1 a{
  height: 100%;
  padding-left: 20px;
  width: 200px;
  font-size: 15px;
  color: #161616;
  display: flex;
  align-items: center;
}
.smenu_depth1 ul,
.smenu_depth1 li{
  height: 100%;
}
.smenu_depth1:after{
  content: "";
  position: absolute;
  background-image: url("../image/smenu_arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 5px;
  height: 9px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all .2s ease-in-out;
}
.smenu_depth1.no_drop:after{
  transform: translateY(-50%) !important;
}
.smenu_depth1:hover::after{
  transform: translateX(-50%) rotate(90deg);  
}
.smenu_depth1::before{
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #adadad;
}
ul.smenu_depth2{
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  border-top: 1px solid #adadad;
  border-bottom: 1px solid #adadad;
  height: auto;
  transition: all .3s ease-in-out;
  transform: translateY(-10px);
}
.smenu_depth2 li:not(:last-child) a{
  border-bottom: 1px solid #adadad;
}
.smenu_depth2 a{
  height: 40px;
  border-left:1px solid #adadad;
  border-right:1px solid #adadad;
  display: flex;
  align-items: center;
  padding-left: 20px;
  color: #636363;
  z-index: 2;
  background-color: #fff;
  font-size: 14px;
}
.smenu_depth2 a:hover{
  background-color: #f7f7f7;
}
.smenu_depth1 > ul > li:hover .smenu_depth2{
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.planning_top_img_wrap {
  width: 100%;
  min-height: 560px;
  background-color: #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.planning_top_img_wrap img {
  max-width: 100%;
}
.planning_top_img_wrap svg {
  width: 469px;
}
.plaaning_bottom_top {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.5);
}
.plaaning_bottom_top svg {
  width: 158px;
}
.planning_bottom_wrap dl {
  display: flex;
  gap: 50px;
}
.planning_bottom_wrap dd {
  width: 132px;
  height: 76px;
  display: flex;
  justify-content: center;
  font-size: 18px;
  letter-spacing: -0.42px;
  align-items: center;
  position: relative;
}
.planning_bottom_wrap dd::after {
  content: "";
  width: 100%;
  height: 4px;
  bottom: -2px;
  left: 0;
  background-color: var(--m_color);
  position: absolute;
}
.planning_bottom_wrap dt {
  padding-left: 40px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 18px;
  letter-spacing: -0.42px;
}
.planning_bottom_wrap dt::after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #c8c8c8;
  position: absolute;
}
.one_image_page {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 1100px;
}
.one_image_page.app_img{
  max-width: 1100px;
}
.sub_contact {
  position: relative;
}
/* NEW VISUAL */
.main_visual_new {
  width: 100vw;
  height: 100vh;
}
.main_visual_new .rel_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.intro_img_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(calc(-100% - 20px)) translateY(-50%);
  height: 70vh;
  margin-top: 60px;
}
.intro_img_wrap img {
  max-height: 100%;
}
.main_visual_title_wrap {
  font-size: 53px;
  position: absolute;
  width: 6em;
  left: 50%;
  top: 50%;
  transform: translateX(calc(-50% - -9.6em)) translateY(calc(-50% + 30px));
  display: flex;
  flex-direction: column;
}
.main_visual_row {
  height: 1.6em;
  position: relative;
  margin: -0.1255em 0;
  opacity: 0;
}
.main_visual_title_wrap .main_visual_row:nth-child(1) {
  animation: main_visu_ani01 0.8s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1.3s;
}
.main_visual_title_wrap .main_visual_row:nth-child(2) {
  margin-left: 1em;
  animation: main_visu_ani02 0.8s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 2.1s;
}
.main_visual_title_wrap .main_visual_row:nth-child(3) {
  margin-left: 1em;
  animation: main_visu_ani01 0.8s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 2.9s;
}
.new_intro_txt_b.b01 {
  animation: main_visu_ani03 0.2s ease-in-out;
  animation-delay: 3.7s;
}
.new_intro_txt_b.b02 {
  animation: main_visu_ani03 0.2s ease-in-out;
  animation-delay: 4.1s;
}
.new_intro_txt_b.b03 {
  animation: main_visu_ani03 0.2s ease-in-out;
  animation-delay: 4.4s;
}
.new_intro_txt_b.b04 {
  animation: main_visu_ani03 0.2s ease-in-out;
  animation-delay: 4.7s;
}
.main_visual_title_wrap .main_visual_row:nth-child(3) {
  margin-left: -1.004em;
}
.new_intro_txt {
  display: block;
  position: absolute;
}
.new_intro_txt_b {
  display: block;
  position: absolute;
  opacity: 1;
}
.new_intro_txt.t01 {
  height: 1em;
}
.new_intro_txt.t02 {
  height: 1em;
  text-align: right;
  margin-left: -0.1em;
}
.new_intro_txt.t03 {
  height: 1em;
}
.new_intro_txt_b.b01 {
  height: 1.8em;
  left: 1.7em;
  top: -0.4em;
}
.new_intro_txt_b.b02 {
  height: 1.8em;
  left: 2em;
  left: 0.7em;
  top: -0.4em;
}
.new_intro_txt_b.b03 {
  height: 1.8em;
  left: 2.7em;
  top: -0.4em;
}
.new_intro_txt_b.b04 {
  height: 1.8em;
  left: 4.07em;
  top: -0.4em;
}
.main_visual_row .new_intro_txt {
  transform: translateY(0);
  animation: main_visu_txt 1s ease-in-out;
}
.main_visual_title_wrap::after{
  animation: main_visu_ani04 1s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 3.7s;
}
.main_visual_sub2_wrap{
  animation: main_visu_ani05 .6s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 5.5s;
}
@keyframes main_visu_ani01 {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes main_visu_ani02 {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes main_visu_ani03 {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes main_visu_ani04 {
  0% {
    bottom: -10px;
    height: 0px;
  }
  100% {
    bottom: -60px;
    height: 40px;
  }
}
@keyframes main_visu_ani05 {
  0% {  
    transform: translateX(calc(-50% - -570px)) translateY(calc(-50% + 240px));
    opacity: 0;
  }
  100% {
    transform: translateX(calc(-50% - -570px)) translateY(calc(-50% + 260px));
    opacity: 1;
  }
}

/* MAIN sec02 리뉴얼 */
section.section.sec02{
  background: transparent;
}
section.section.sec02::after{
  content: "";
  position: absolute;
  background-image: url(../image/sec02_img_bg.png);
  bottom: 50px;
  right: 120px;
  width: 726px;
  height: 139px;
}
.sec02_bg{
  position: absolute;
  z-index: -1;
  width: 110%;
  height: 110%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  filter: brightness(0.3) blur(8px);
  transition: all .3s ease-in-out;
}
.sec02_txt_title{
  font-size: 25px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}
.swiper.sec02_swiper{
  overflow: visible;
  position: absolute;
  top: 40%;
  transform: translateX(-17%);
  width: 100%;
}
.sec02_swiper .swiper-slide{
  filter: brightness(.5);
  transition:  all .6s ease-in-out;
}
.sec02_swiper .swiper-slide.swiper-slide-next{
  filter: brightness(1);
  transform: translateY(-150px);
}
.sec02_swiper .sec02_swiper_img_wrap{
  width: 450px;
  height: 300px;
  border: 1px solid #fff;
}
.sec02_swiper .sec02_swiper_img_wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.sec02_swiper_num{
  font-size: 18px;
  font-weight: 200;
  color: #cbcbcb;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 5px;
  opacity: 0%;
  transition: all .6s ease-in-out;
}
.sec02_swiper_txt_wrap{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0%;
  transition: all .6s ease-in-out;
}
.sec02_swiper .swiper-slide.swiper-slide-next .sec02_swiper_num,
.sec02_swiper .swiper-slide.swiper-slide-next .sec02_swiper_txt_wrap{
  opacity: 100%;
}
.sec02_txt_detail{
  font-size: 16px;
  color: #fff;
  font-weight: 200;
  text-align: center;
  line-height: 1.8;
}
.sec02_title{
  position: absolute;
  left: 330px;
  top: 27%;
}
.sec03_map_flex_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.sec03_txt_wrap{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 480px
}
.sec02_swiper_img_wrap{
  margin-bottom: 30px;
}
.sec02_prev_btn{
  position: absolute;
  bottom: 270px;
  right: 940px;
  z-index: 5;
  opacity: 0;
  transform: translateY(5px);
  transition: all .3s ease-in-out;
  cursor: none;
}
.sec02_next_btn{
  position: absolute;
  bottom: 270px;
  right: 560px;
  z-index: 5;
  opacity: 0%;
  transform: translateY(5px);
  transition: all .3s ease-in-out;
  cursor: none;
}
.sec02_next_btn.on,
.sec02_prev_btn.on{
  opacity: 100%;
  transform: translateY(0px);
  cursor: pointer;
}
/* visual_ani */
.visual_img_wrap{
  transform: translateX(-150%) translateY(-45%);
  opacity: 1;
  animation: visual_title 2s ease-in-out;
}
@keyframes visual_title{
  0%{
    opacity: 0;
    transform: translateX(-150%) translateY(calc(-45% + 30px));
  }
  100%{
    opacity: 1;
  transform: translateX(-150%) translateY(-45%);
  }
}
.main_swiper_ani .visual_swiper .swiper-wrapper .swiper-slide:nth-child(-n+4){
  opacity: 0;
}
.main_visual_sub_wrap{
  animation: visual_sub_txt .6s ease-in-out forwards;
  animation-delay: 5s;
  animation-iteration-count: 1;
}
@keyframes visual_sub_txt{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@keyframes visual_swiper_ani_01{
  0%{
    opacity: 0;
    transform: translateY(0px);
  }
  100%{
    opacity: 1;
    transform: translateY(-60px);
  }
}
@keyframes visual_swiper_ani_02{
  0%{
    opacity: 0;
    transform: translateY(-60px);
  }
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes scroll_down_ani{
  0%{
    opacity: 0%;
    transform: translateX(0px);
  }
  10%{
    opacity: 100%;
    transform: translateX(0px);
  }
  90%{
    opacity: 100%;
    transform: translateX(85px);
  }
  100%{
    opacity: 0%;
    transform: translateX(85px);
  }
}
.main_visual_bg_wrap{
  position: absolute;
  bottom: 0;
  animation: main_visu_bg 1s ease-in-out;
  animation-fill-mode: forwards;
    transform: translateY(60px);
}
@keyframes main_visu_bg{
  0%{
    opacity: 0%;
  }
  100%{
    opacity: 100%;
  }
}
.app_btn_wrap{
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 1060px;
  margin: 80px auto 0;
}
.app_btn_wrap a{
  padding : 30px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #00486e;
  border-radius: 10px;
  transition: all .2s ease-in-out;
}
.app_btn_icon{
  margin-bottom: 15px;
}
.app_btn_txt{
  text-align: center;
  color: #00486e;
  font-size: 18px;
  line-height: 1.5;
  transition: all .2s ease-in-out;
}
.app_btn_wrap a strong{
  display: block;
  font-weight: 600;
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
}
.app_btn_wrap a:hover{
  background-color: #00486e;
}
.app_btn_wrap a:hover .app_btn_txt{
  color: #fff;
}
.app_btn_wrap a:hover .app_btn_icon{
  filter: brightness(10)
}