@import "reset.css";


@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-Black.woff2) format('woff');
font-weight: 900;
}
@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-ExtraBold.woff2) format('woff');
font-weight: 800;
}
@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-Bold.woff2) format('woff');
font-weight: 700;
}
@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-SemiBold.woff2) format('woff');
font-weight: 600;
}
@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-Medium.woff2) format('woff');
font-weight: 500;
}
@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-Regular.woff2) format('woff');
font-weight: 400;
}
@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-ExtraLight.woff2) format('woff');
font-weight: 300;
}
@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-Light.woff2) format('woff');
font-weight: 200;
}
@font-face{
font-family: "Pretendard";
src:url(../font/Pretendard-Thin.woff2) format('woff');
font-weight: 100;
}

.hidden {
  display: none;
}
html, body {
  overflow-x: hidden;
}

/* AOS 애니메이션 대상의 초기 렌더 떨림 방지 */
[data-aos] {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}
body{
    font-family: "Pretendard";
    font-weight: 300;
    color: #000;
    background-color: #fff;
}
.warp{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
.v_inner{
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 15px;
}
.inner{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 650px;
}
.inner02{
    width: 100%;
    max-width: 650px;
    padding: 0 15px;
    margin: 0 auto;
    
}

/* top */
#top .header {
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 99;
}
.header.scrolled {
    background: #fff;
}
#top .header .v_inner{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    height: 100%;
}
#top .logobox{
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
}
#top .logobox img{
    width: 100%;
}
#top .menu_area{
    display: none;
}

.fixed_button{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 80px;
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 999;
    opacity: 0;             /* 처음엔 안보이게 */
    pointer-events: none;   /* 클릭 방지 */
    transition: .3s;
}

.fixed_button.show {
    opacity: 1;             /* 나타날 때 */
    pointer-events: auto;   /* 클릭 가능 */
}
.fixed_button .kakaobutton{
    width: 60px;
    height: 60px;
    background-color: rgba(82, 112, 153);
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    cursor: pointer;
}
.fixed_button .kakaobutton .imgbox{
    width: 30px;
    height: 30px;
}
.fixed_button .kakaobutton .imgbox img{
    width: 100%;
}
.fixed_button .kakaobutton p{
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}
.fixed_button .topbutton{
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #527099;
    border: 1px solid #527099;
    cursor: pointer;
}
/* 서브 메뉴 숨기기 - JS로 제어 */
#top .main_menu .main_li .sub_menu {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    z-index: 10;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background-color: #527099;
    border-radius: 0 20px 20px 20px;
}

#top .main_menu .main_li .sub_li a {
    display: block;
    color: #fff;
    text-decoration: none;
}
/* 펼쳐진 상태 클래스 */
#top .main_menu .main_li .sub_menu.active {
    max-height: 500px;
    opacity: 1;
}


#top .main_menu .main_li .sub_li{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#top .main_menu .main_li .s_menu{
    height: fit-content;
    width: fit-content;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}
#top .main_menu .main_li .s_menu::after{
    width: 0%;
    content: '';
    height: 1px;
    border-bottom: 1px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: .3s;
}
#top .main_menu .main_li .s_menu:hover:after{
    width: 100%;
}
#top .cs_button{
    width: 100px;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #000;
    transition: .3s;
}
#top .cs_button a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
#top .cs_button:hover{
    background-color: #527099;
    border: none;
    color: #fff;
}
/* //top */

/* main */
.main .visual_section{
     padding-top: 100px;
}
.main .v_inner .main_mySwiper{
    background-color: #e2e2e2;
    border-radius: 30px;
    height: 100vw;
    overflow: hidden;
    max-height: 500px;
}
   .main_mySwiper .swiper-wrapper{
    height: 100%;
   }
   .main_mySwiper .swiper-slide {
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      position: relative;
    }
.main_mySwiper .swiper-slide h2{
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-align: start;
    line-height: 100%;
}
.main_mySwiper .swiper-slide h2 span{
    font-size: 18px;
}
   .main_mySwiper .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .main_mySwiper .autoplay-progress {
      position: absolute;
      left: 50%;
      bottom: 16px;
      transform: translateX(-50%);
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #fff;
    }

    .main_mySwiper .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: #fff;
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
}
 .main_mySwiper .autoplay-progress span img{
    width: 20px;
    filter: brightness(0) invert(1);
 }
/* //main */
/* section01 */
#section01 {
    height: 640px;
    margin-bottom: 80px;
}
#section01 .sec_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#section01 .sec_bg img{
    width: 100%;
}
#section01 .sec_bg .left_top{
    width: 100%;
}
#section01 .sec_bg .right_bottom{
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
}
#section01 .inner .contents{
    height: 530px;
    width: 100%;
    top: 0;
    left: 0%;
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;

}
#section01 .inner .contents .imgArea{
    position: relative;
    width: 60%;
    height: 220px;
    margin: 50px auto;
    max-width: 240px;
}
#section01 .inner .contents .imgArea .imgbox{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}
#section01 .inner .contents .imgArea .imgbox.active {
  opacity: 1;
  z-index: 1;
}

#section01 .inner .contents .imgArea .imgbox img{
    width: 100%;
}

#section01 .inner .contents .textArea{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}
#section01 .inner .contents .textArea .textbox {
    cursor: pointer;
    border: 1px solid #d2d2d2;
    width: calc(50% - 10px);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #808080;
    background-color: #fff;
}
#section01 .inner .contents .textArea .textbox:nth-child(3),
#section01 .inner .contents .textArea .textbox:nth-child(4),
#section01 .inner .contents .textArea .textbox:nth-child(5) {
    cursor: pointer;
    border: 1px solid #d2d2d2;
    width: calc(33.33% - 10px);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #fff;
    padding: 0 15px;
}
#section01 .inner .contents .textArea .textbox .tt {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}
#section01 .inner .contents .textArea .textbox.on{
    color: #fff !important;
    background-color: #527099;
    border: none;
}
#section01 .inner .contents .textArea .textbox .tt span{
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
    line-height: 120%;
}
#section01 .inner .contents .textArea .textbox .tt p{
    font-size: 14px;
    font-weight: 700;
    word-break: keep-all;
    text-align: center;
    line-height: 120%;
}
/* //section01 */
/* section02 */
#section02{
    height: 700px;
}
#section02 .inner{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-direction: column;
}
#section02 .inner .textArea h2{
    font-size: 24px;
    color: #000;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 120%;
}
#section02 .inner .textArea p {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
}
#section02 .inner .textArea p .point{
    color: #527099;
}
#section02 .inner .textArea p .st{
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    color: #aaa;
}
#section02 .inner .imgArea{
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    max-width: 400px;
    margin-left: auto;
}
#section02 .inner .imgArea img{
    width: 100%;
}
/* //section02 */

/* section03 */
#section03{
    width: 100%;
    background-image: url(../img/main_sec03_bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
     overflow: hidden;
}
#section03 .inner02{
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    flex-direction: column;
    padding: 80px 15px;
}
#section03 .rotateArea{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
#section03 .rotateArea .ro1{
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50px;
    right: 15px;
    opacity: .5;
    animation: rotate360 10s linear infinite; /* 10초에 한바퀴 */
}
#section03 .rotateArea .ro2{
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: -100px;
    opacity: .5;
    animation: rotate360 40s linear infinite; /* 천천히 회전 */
}
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
#section03 .rotateArea .imgbox img{
    width: 100%;
}
#section03 .leftArea{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#section03 .leftArea .logobox{
    height: 30px;
    margin-bottom: 30px;
}
#section03 .leftArea .logobox img{
    filter: brightness(0) invert(1);
}
#section03 .leftArea .titlebox{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}
#section03 .leftArea .titlebox p{
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
#section03 .leftArea .titlebox h2{
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
#section03 .leftArea .titlebox span{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
#section03 .leftArea .sec03_mySwiper {
    width: 100%;
    height: 190px;
    overflow: hidden;
}
#section03 .leftArea .sec03_mySwiper .swiper-slide{
    padding: 5px 20px;
    color: #fff;
    border-radius: 50px;
    width: 85%;
    height: fit-content !important;
    font-size: 16px;
    font-weight: 400;
    margin: auto;
    min-height: 50px; /* 원하는 고정 최소 높이 */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5;
}
#section03 .leftArea .sec03_mySwiper .swiper-slide.welcome{
    background-color: #262f46;
}
#section03 .leftArea .sec03_mySwiper .swiper-slide.nope{
    background-color: rgb(161, 38, 38);
}
#section03 .leftArea .sec03_mySwiper .swiper-slide.on{
    opacity: 1;
    width: 100%;
}
#section03 .rightArea{
    display: none;
}
/* //section03 */

/* section04 */
#section04{
    overflow: hidden;
}
#section04 .inner{
    display: flex;
    justify-content: space-between;
    height: 600px;
    flex-direction: column;
}
#section04 .inner .leftArea{
    width: 100%;
    position: absolute;
    z-index: 5;
    left: 0;
    padding: 80px 0;
}
#section04 .inner .leftArea .flex_text{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
        max-width: 380px;
        justify-content: center;
        margin: 0 auto;
}
#section04 .inner .leftArea .flex_text .tbox{
    border-radius: 100%;
    background-color: #262f46;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
}
#section04 .inner .leftArea .flex_text .tbox:nth-child(1){
    background-color: #527099;
}
#section04 .inner .leftArea .flex_text .tbox:nth-child(4){
    background-color: #527099;
}
#section04 .inner .leftArea p{
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-top: 45px;
    text-align: center;
    word-break: keep-all;
    display: flex;
    flex-direction: column;
    line-height: 130%;
}
#section04 .inner .leftArea p span{
    font-size: 12px;
    font-weight: 500;
    color: #d2d2d2;
    display: block;
    margin-bottom: 5px;
}
#section04 .inner h2{
    font-size: 24px;
    font-weight: 900;
    color: #527099;
    line-height: 120%;
    margin-bottom: 40px;
    text-align: center;
}
#section04 .inner h2 span{
    font-size: 18px;
    font-weight: 800;
    color: #262f46;
}
#section04 .inner .rightArea{
    width: 100%;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
    opacity: .1;
}
#section04 .inner .rightArea .left_rolling,
#section04 .inner .rightArea .right_rolling {
    width: calc(50% - 5px);
    overflow: hidden;       /* 영역 밖은 숨김 */
    position: relative;
    height: 100%;           /* 부모 영역 꽉 차게 */
}
#section04 .inner .rightArea .left_rolling .imgbox{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}
#section04 .inner .rightArea .right_rolling .imgbox{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}
#section04 .inner .rightArea .imgbox img{
    width: 100%;
}
/* 공통 */

#section04 .rolling_wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 위로 흐르는 애니메이션 */
.left_rolling .rolling_wrap {
    animation: rollUp 15s linear infinite;
}

/* 아래로 흐르는 애니메이션 */
.right_rolling .rolling_wrap {
    animation: rollDown 15s linear infinite;
}

@keyframes rollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* 위로 절반 만큼 이동 */
}

@keyframes rollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); } /* 아래로 되돌아옴 */
}

/* //section04 */

/* section05 */
#section05 {
  width: 100%;
  overflow: hidden;
  border: 3px double #527099;
  border-left: none;
  border-right: none;
  color: #fff;
}

#section05 .rolling_wrap {
  display: flex;
  white-space: nowrap;
  gap: 30px;
}

#section05 .rolling_wrap p {
  font-size: 50px;
  font-weight: 900;
  color: #fff;                    /* 글자 내부 색상 */
  -webkit-text-stroke: 1px #527099;  /* 테두리 색상 */
  animation: textLoop 10s linear infinite;
}

@keyframes textLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* //section05 */

/* section06 */
#section06{
    padding: 80px 0 0;
}
#section06 .contents{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#section06 .contents .imgArea{
    width: 100%;
    display: flex;
    align-items: end;
    max-width: 350px;
}
#section06 .contents .imgArea img{
    width: 90%;
}
#section06 .contents .textArea{
    width: 100%;
        padding-bottom: 50px;
}
#section06 .contents .textArea .textbox{
    margin-bottom: 30px;
}
#section06 .contents .textArea .textbox .name_flex{
    display: flex;
    align-items: end;
    gap: 15px;
    margin-bottom: 15px;
}
#section06 .contents .textArea .textbox .name_flex h2{
    font-size: 28px;
    font-weight: 800;
    color: #000;
}
#section06 .contents .textArea .textbox .name_flex p{
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0;
    text-indent: 0;
    line-height: 100%;
}
#section06 .contents .textArea .textbox .colortext{
    font-size: 16px;
    font-weight: 600;
    color: #527099;
     text-indent: 0;
}
#section06 .contents .textArea p{
    font-size: 14px;
    font-weight: 500;
    color: #333;
    word-break: keep-all;
    line-height: 150%;
    display: inline-block;
    max-width: 900px;
    text-indent: 15px; /* 시작 위치를 30px 띄움 */
    margin-bottom: 20px;
}
/* //section06 */

/* section07 */
#section07 {
    width: 100%;
    height: 400px;
    background-image: url(../img/home.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: 50px;
}
#section07 .inner{
    height: 100%;
    display: flex;
    justify-content: end;
    flex-direction: column;
}
#section07 h2{
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 30px;
}
#section07 h2 span{
    font-weight: 500;
}
#section07 .qrimg{
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 15px 0 #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#section07 .qrimg img{
    width: 80%;
}
/* //section07 */

/* footer */
#footer{
    width: 100%;
    padding: 30px 0;
}
#footer .logobox{
    height: 30px;
}
#footer .logobox img{
    height: 100%;
}
#footer .horizon_line{
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #000;
    margin: 20px 0;
}
#footer .flex_contents{
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
}
#footer .flex_contents .leftArea{
    width: 100%;
}
#footer .flex_contents .rightArea{
    display: none;
}
#footer .flex_contents .leftArea .foot_nav{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}
#footer .flex_contents .leftArea .foot_nav li{
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    font-weight: 900;
    margin-right: 10px;
}
#footer .flex_contents .leftArea .foot_nav li h3{
    font-weight: 900;
    width: 100px;
}
#footer .flex_contents .leftArea .foot_nav li p{
    font-weight: 500;
    width: calc(100% - 100px);
}
#footer .flex_contents .leftArea .copy{
    font-size: 14px;
    font-weight: 700;
}
#footer .flex_contents .kakao_button a{
    display: none;
}
/* //footer */
