@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-gov.min.css");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700&display=swap");
:root {
    --ui-font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
body {
    font-family: var(--ui-font);
}
* {
    box-sizing: border-box;
}
.fp-watermark a {
    display: none;
}
.nanum {
    font-family: "Nanum Myeongjo", serif;
}
.ani {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease;
}
.ani.show {
    opacity: 1;
    transform: translateY(0);
}

.nanum.title {
    text-decoration: underline;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5.4px;
    margin-bottom: 22px;
}


/* header */


header {
    width: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    z-index: 10;
    transition: all 0.4s ease;
    top: 0;
}
.header_left_wrap{
    display: flex;
    gap: 20px;
    align-items: center;
}
.header_open{
    background-color: #0d695b;
    border-radius: calc(1px / 0);
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    padding: 10px 16px;
    color: #fff;
    font-size: 16px;
}
header > div:nth-child(1){
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0px 50px;
}

header > div:nth-child(1) img {
    width: 45px;
    height: auto;
}

header > div h1 {
    width: 280px;
    height: 40px;
    background: url("../img/logo2.png") no-repeat center/contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

header>div h1 a{
    display: block;
    width: 100%;
    height: 100%;
}
header>div .right {
    display: flex;
    align-items: center;
    gap: 25px;
}

header>div .right li:nth-child(1) {
    font-size: 24px;
    display: flex;
    align-items: center;
}
header>div .right li:nth-child(1) a{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
}
header>div .right li:nth-child(1) a img{
    width: 20px;
    height: 20px;
    filter: brightness(.1);
    opacity: 100%;
    transform: unset;
}


header>div .right li:nth-child(2) a {
    color: #111;
    font-size: 16px;
    padding: 10px 16px;
    border: 1px solid #000;
    border-radius: calc(1px / 0);
}

header>div .right li:nth-child(2) a::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 13px;
    background: url("../img/arrow.png") no-repeat center/contain;
    margin-left: 20px;
    opacity: 0.6;
}

/* ----header nav */

header nav {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
    transition: all .4s ease-in-out;
    border-bottom: 1px solid #eee;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
}
header nav > ul > li.gnb{
    height: 100%;
    position: relative;
}
header nav > ul > li.gnb.mo{
    display: none;
}
header nav > ul > li.gnb > ul.gnb_depth2{
    display: none;
}
header nav > ul > li.gnb a {
    color: #000;
    font-size: 16px;
    height: 100%;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s linear;
}

header nav > ul > li.gnb a:hover{
    font-weight: 600;
}
header nav > ul > li.gnb a::after{
    content: "";
    width: 100%;
    height: 3px;
    background-color: #0d695b;
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all .3s linear;
}
header nav > ul > li.gnb:hover a::after{
    transform: scaleX(1);
}
.header_menu_wrap{
    padding: 20px;
    display: flex;
    opacity: 0%;
    height: 0;
    padding: 0;
    transition: all .6s ease-in-out;
    border-bottom: 1px solid #eee;
}
.header_menu_wrap > ul{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 50px;
}
.header_menu_wrap > ul > li > a{
    width: 100px;
    height: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #000;
    position: relative;
    opacity: 0%;
    pointer-events: none;
}
.header_menu_wrap .gnb.mo{
    display: none;
}
.header_menu_wrap .gnb_depth2{
    text-align: center;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transition: all .1s ease-in-out;
}
.header_menu_wrap .gnb_depth2 li a{
    color: #000;
    font-size: 15px;
    transition: all .1s linear;
}
.header_menu_wrap .gnb_depth2 li:hover a{
    font-weight: 700;
}
header:hover .header_menu_wrap{
    height: auto;
    padding: 20px 0;
    opacity: 1;
    height: auto;
}
header:hover .gnb_depth2{
    opacity: 1;
}
    /* ------ header typeB */
header.typeB {
    background-color: transparent;
}
header.typeB nav {
    opacity: 0;
    height: 0;
}

/* footer */
footer{
    padding: 50px 0;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: 50px;
}
.fp-enabled footer{
    margin-top: 0;
}
footer .fp-tableCell{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_logo{
    width: 205px;
    margin-bottom: 50px;
}
.footer_logo img{
    max-width: 100%;
}
footer ul{
    display: flex;
    gap: 40px;
    font-size: 18px;
    margin-bottom: 20px;
}
footer ul span{
    margin-right: 4px;
}
.footer_txt_type{
    font-size: 16px;
}
.footer_txt_type span{
    font-weight: 500;
    margin-right: 4px;
}
.disclaimer{
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
    flex-direction: column;
    gap: 0;
}
.copyright{
    margin-top: 20px;
    font-size: 16px;
    display: flex;
    gap: 5px;
}
.copyright a{
    color: #000;
    text-decoration: underline;
}
.full_menu_btn{
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: none;
    z-index: 12;
}
.full_menu_btn button{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    position: relative;
}
.full_menu_btn button span{
    width: 50%;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all .3s ease-in-out;
}
.full_menu_btn button span:nth-child(1){
    transform: translate(-50%, calc(-50% - 5px));
}
.full_menu_btn button span:nth-child(2){
    transform: translate(-50%, calc(-50%));
}
.full_menu_btn button span:nth-child(3){
    transform: translate(-50%, calc(-50% + 5px));
}
.full_menu_on .full_menu_btn button span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
}
.full_menu_on .full_menu_btn button span:nth-child(2){
    opacity: 0;
}
.full_menu_on .full_menu_btn button span:nth-child(3){
    transform: translate(-50%, -50%) rotate(-45deg);
}
.full_menu_wrap{
    position: fixed;
    top: 60px;
    width: 100vw;
    height: calc(100vh - 60px);
    z-index: 9;
    border-top: 1px solid #eee;
    transform: translateY(calc(-100% + -60px));
    background-color: #fff;
    transition: all .6s ease-in-out;
}
.full_menu_on header{
    background-color: #fff !important;
}
.full_menu_on .full_menu_wrap{
    transform: translateY(0px);
}
.full_menu_wrap .gnb{
    border-bottom: 1px solid #eee;
}
.full_menu_wrap .gnb.mo{
    display: block;
}
.full_menu_wrap .gnb .gnb_depth2{
    display: none;
}
.full_menu_wrap .gnb .gnb_depth2 > li{
    background-color: #f3f3f3;
}
.full_menu_wrap .gnb .gnb_depth2 > li:not(:last-child){
    border-bottom: 1px solid #eee;
}
.full_menu_wrap .gnb a{
    padding: 20px 10px;
    font-size: 16px;
    color: #000;
}
@media (max-width: 1280px) {
    header > div h1{
        width: 180px;
    }
    .footer_logo{
        width: 180px;
        margin-bottom: 20px;
    }
    .header_menu_wrap{  
        display: none;
    }
    .full_menu_btn{
        display: block;
    }
    header > div:nth-child(1){
        height: 60px;
        padding: 0px 18px;
    }
    header nav{
        display: none;
    }
    header nav ul{
        width: 100%;
        gap: unset;
        justify-content: space-evenly;
    }
    header > div:nth-child(1) > a{
        display: none;
    }
  header>div .right li:nth-child(1) a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 1px solid #0d695b;
      border-radius: 50%;
      background-color: #fff;
      overflow: hidden;
      position: relative;
  }

  header>div .right li:nth-child(1) a span {
      position: absolute;
      left: -9999px; /* ← 텍스트 시각적으로 숨김 */
  }

  header>div .right li:nth-child(1) a img {
      width: 18px;
      height: 18px;
      filter: unset;
      transform: none;
  }
    header > div .right .customer{
        display: none;
    }
    footer{
        padding: 30px 0;
    }
    footer ul{
        gap: 5px;
        flex-direction: column;
        font-size: 14px;
    }
    .footer_txt_type{
        font-size: 14px;
    }
    .disclaimer{
        font-size: 10px;
    }
    .copyright{
        margin-top: unset;
        font-size: 12px;
        white-space: nowrap;
        flex-wrap: wrap;
        justify-content: center;

    }
    .header_left_wrap{
        display: none;
    }
}