/* header start */
header {
    position: fixed;
    width: 100%;
    height: 100px;
    min-width: 1300px;
    z-index: 9999;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    /* background-color:#fff; */
    /* border-bottom:1px solid #ccc; */
}
header.on {
    position: fixed;
    width: 100%;
    min-width: 1440px;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}
header .logo h1 {
    position: absolute;
    width: 180px;
    height: 60px;
    top: 30px;
    left: 0;
    transition: all 0.3s ease-in-out;
    background: url(../img/logo.png) 50% 50% no-repeat;
    background-size: 180px;
    z-index: 9999;
}
header .logo h1.on {
    background: url(../img/logo.png) 50% 50% no-repeat;
    background-size: 180px;
}
header .logo h1 a {
    display: block;
    width: 180px;
    height: 60px;
}

header:hover {
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
header:hover .logo h1 {
    background: url(../img/logo.png) 50% 50% no-repeat;
    background-size: 180px;
    transition: all 0.3s ease-in-out;
}
header:hover .gnb li a {
    color: #333;
    transition: all 0.3s ease-in-out;
}
header:hover .menubtn_wrap ul li {
    background-color: #333;
}

.pos {
    position: relative;
}
.bar {
    width: 0;
    height: 3px;
    background-color: #7733df;
    position: absolute;
    left: 0;
    bottom: 0;
}
nav {
    width: 100%;
    max-width: 1300px;
    min-width: 1300px;
    margin: 0 auto;
    z-index: 999;
    position: relative;
}
.gnb {
    display: flex;
    align-items: center;
    justify-content: end;
}
.gnb > li {
    transition: all 0.2s ease-in-out;
    text-align: center;
    margin-left: 80px;
}
.gnb > li > .gnb_wrap > a.on {
    color: #333;
}

.gnb > li > .gnb_wrap > a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    height: 100px;
    line-height: 100px;
    position: relative;
}
.gnb > li > .gnb_wrap > a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    background-color: #64a4f6;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

.bg {
    position: absolute;
    left: 0;
    top: 99px;
    width: 100%;
    height: 190px;
    display: none;
    z-index: 9;
    background-color: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 3px solid #7733df;
}

.gnb > li > .gnb_wrap {
    position: relative;
}
.sub_menu {
    font-size: 0;
    display: none;
    position: absolute;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    width: 120px;
}
.sub_menu li {
    transition: all 0.2s ease-in-out;
}
.sub_menu a {
    font-size: 16px;
    font-weight: 400;
    color: #464243 !important;
    line-height: 36px;
    display: block;
    position: relative;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}
.sub_menu a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 200%;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 0);
    transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
        transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    /* background-color: #bf0b2c; */
    background-color: #7733df;
    opacity: 0;
    z-index: -1;
    transition: all 0.2s ease-in-out;
}
.sub_menu a:hover::before {
    opacity: 1;
    transition-duration: 0.85s;
    transition: all 0.2s ease-in-out;
    transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}
.sub_menu a:hover {
    color: #fff !important;
    transition: all 0.2s ease-in-out;
}

/* header menu active */
header.active1 .gnb > li:nth-child(1) > .gnb_wrap > a,
header.active2 .gnb > li:nth-child(2) > .gnb_wrap > a,
header.active3 .gnb > li:nth-child(3) > .gnb_wrap > a,
header.active4 .gnb > li:nth-child(4) > .gnb_wrap > a,
header.active5 .gnb > li:nth-child(5) > .gnb_wrap > a,
header.active6 .gnb > li:nth-child(6) > .gnb_wrap > a {
    color: #64a4f6;
}

header.active1 .gnb > li:nth-child(1) > .gnb_wrap > a::after,
header.active2 .gnb > li:nth-child(2) > .gnb_wrap > a::after,
header.active3 .gnb > li:nth-child(3) > .gnb_wrap > a::after,
header.active4 .gnb > li:nth-child(4) > .gnb_wrap > a::after,
header.active5 .gnb > li:nth-child(5) > .gnb_wrap > a::after,
header.active6 .gnb > li:nth-child(6) > .gnb_wrap > a::after {
    width: 100%;
}
/* header end */

/* header end */

/* visual swiper start */
.visual {
    width: 100%;
    height: 600px;
    min-width: 1300px;
}
.visual .typo_wrap {
    width: 1300px;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    z-index: 99;
}
.typo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    z-index: 99;
    text-align: left;
}

/* .typo > span.up{opacity:1; transform:translate(0,0);} */

.typo span {
    display: block;
    transition: all 1s ease-in-out;
    color: #fff;
    text-align: center;
    font-size: 40px;
    transition-delay: 0s;
    color: #fff;
    font-weight: 800;
    line-height: 65px;
}

.visual .swiper-slide > img {
    width: 100%;
    transform: scale(1.2);
    transition: all 5s ease;
}
.visual .swiper-slide.swiper-slide-active > img.zoom {
    transform: scale(1);
}

.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span {
    animation: bounceInUp 1s 0.2s both;
}

.visual .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.visual .swiper-slide {
    width: 100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.visual .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual .swiper-slide::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.visual .swiper .swiper-pagination span {
    margin: 0 3px;
}

.visual .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    background: none;
    border-radius: 100%;
}

.visual .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0064b1;
}
.visual .swiper .swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 0.3s opacity;
    -o-transition: 0.3s opacity;
    transition: 0.3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%, 100%);
}
.visual .swiper-button-prev,
.visual .swiper-container-rtl .swiper-button-next {
    /* background-image: url("../img/swiper_prev.png"); */
    left: 10px;
    right: auto;
    width: 20px;
    color: #fff;
}
.visual .swiper-button-next,
.visual .swiper-container-rtl .swiper-button-prev {
    /* background-image: url("../img/swiper_next.png"); */
    right: 10px;
    left: auto;
    width: 20px;
    color: #fff;
}
.visual .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    font-size: 44px;
}
.visual .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    font-size: 44px;
}

.visual .swiper-button-next,
.visual .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 40px 60px;
    background-position: center;
    background-repeat: no-repeat;
}
/* visual swiper end */

/* image_show_wrap 공통 */
section .image_show_wrap,
section .image_show_wrap2 {
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
section .image_show_wrap {
    overflow: hidden;
    animation-duration: 1.4s;
}
section .image_show_wrap2 {
    animation-duration: 1.4s;
}
section .show_img01 {
    animation-name: show_img01;
}
@keyframes show_img01 {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}
section .show_img02 {
    animation-name: show_img02;
}
@keyframes show_img02 {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}
section .show_img03 {
    animation-name: show_img03;
}
@keyframes show_img03 {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}
section .show_img04 {
    animation-name: show_img04;
}
@keyframes show_img04 {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}
section .show_img05 {
    animation-name: show_img05;
}
@keyframes show_img05 {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}
section .show_img06 {
    animation-name: show_img06;
}
@keyframes show_img06 {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}
/* image_show_wrap 공통 */

/* image 확대 공통 */
.clip-animation {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    animation: clipExpand 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes clipExpand {
    from {
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
/* image 확대 공통 */

/* button */
.buttom {
    padding: 10px 50px 10px 25px;
    display: inline-block;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    text-align: center;
    position: relative;
    border: 1px solid #ccc;
    transition: all 0.3s ease-in-out;
    background-color: #363e44;
    z-index: 1;
}
.buttom:hover {
    background-color: #0064b1;
    color: #fff;
}
.buttom::before {
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.buttom::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #0064b1;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.buttom:hover::after {
    width: 100%;
}
.buttom:hover::before {
    right: 15px;
}
.buttom span {
    position: absolute;
}
.buttom span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, rgba(43, 8, 8, 0), #fff);
    animation: 2s animateTop linear infinite;
}
@keyframes animateTop {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.buttom span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 1px;
    background: linear-gradient(to top, rgba(43, 8, 8, 0), #fff);
    animation: 2s animateRight linear -1s infinite;
}
@keyframes animateRight {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.buttom span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(43, 8, 8, 0), #fff);
    animation: 2s animateBottom linear infinite;
}
@keyframes animateBottom {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.buttom span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #fff);
    animation: 2s animateLeft linear -1s infinite;
}
@keyframes animateLeft {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
/* button */
/* ------------------------------------- section ------------------------------------- */
.e-commerce {
    position: relative;
    padding: 120px 0;
    background-color: #fbfbfb;
    overflow: hidden;
}
.e-commerce h2 {
    font-size: 48px;
    color: #363e44;
    text-align: center;
}
.e-commerce .inner > p {
    font-size: 24px;
    font-weight: 600;
    line-height: 48px;
    color: #860889;
    text-align: center;
    margin-top: 10px;
}

.e-commerce .list {
    margin-top: 60px;
}
.e-commerce .list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.e-commerce .list ul li {
    width: 49%;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}
.e-commerce .list ul li a {
    position: relative;
    display: block;
    width: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    outline: 0;
}
.e-commerce .list ul li a:before,
.e-commerce .list ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    background-color: transparent;
    border: solid 5px #666ce1;
    z-index: 50;
}
.e-commerce .list ul li a:before {
    top: 0px;
    left: -5px;
    border-bottom: 0;
    border-left: 0;
    transition: opacity 0s 0.4s, width 0.2s 0.2s, height 0.2s 0s;
}
.e-commerce .list ul li a:after {
    bottom: 0px;
    right: -4px;
    border-right: 0;
    border-top: 0;
    transition: opacity 0s 0.4s, width 0.2s 0.2s, height 0.2s 0s;
}
.e-commerce .list ul li:hover a:before,
.e-commerce .list ul li:hover a:after {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.e-commerce .list ul li:hover a:before {
    transition: opacity 0s 0s, width 0.2s 0s, height 0.2s 0.2s;
}
.e-commerce .list ul li:hover a:after {
    transition: opacity 0s 0s, width 0.2s 0s, height 0.2s 0.2s;
}
.e-commerce .list ul li:hover {
    box-shadow: 0px 10px 13px -7px rgba(0, 0, 0, 0.5);
    transform: translateY(-1.25rem);
}
.e-commerce .list ul li:hover .img img {
    transform: scale(1.1);
    opacity: 0.8;
}

.e-commerce .list ul li .img {
    overflow: hidden;
    background-color: #000;
}
.e-commerce .list ul li .img img {
    transition: all 0.3s ease-in-out;
}
.e-commerce .list ul li .tit {
    padding: 20px;
    background-color: #fff;
}
.e-commerce .list ul li .tit p {
    font-size: 24px;
    color: #666ce1;
    text-align: center;
    line-height: 32px;
    font-weight: 600;
}

.event {
    padding: 120px 0;
}
.event h2 {
    font-size: 48px;
    color: #363e44;
    text-align: center;
}
.event .inner > p {
    font-size: 24px;
    font-weight: 600;
    line-height: 48px;
    color: #860889;
    text-align: center;
    margin-top: 10px;
}

.event .detail {
    margin-top: 60px;
}
.event .detail ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}
.event .detail ul li{position: relative;}
.event .detail ul li:nth-of-type(1){width:35%}
.event .detail ul li:nth-of-type(2){width:30%; padding:65px;}
.event .detail ul li:nth-of-type(3){width:35%}

.event .detail ul li:nth-of-type(1)::before{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right:-50px;
    background-color: #0064b1;
    width:2px;
    height:300px;
}
.event .detail ul li:nth-of-type(3)::before{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:-50px;
    background-color: #0064b1;
    width:2px;
    height:300px;
}



.event .detail ul li .tit {
    margin: 30px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    gap: 40px;
}
.event .detail ul li .tit .icon {
    width: 120px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.event .detail ul li .tit .txt h3{
    font-size:24px;
    color:#000;
    text-align: left;
}
.event .detail ul li .tit .txt p{
    font-size:18px;
    color:#333;
    text-align: left;
    margin-top:10px;
    line-height:32px;
}

.event .detail ul li .connection{
    text-align: center;
    position: relative;
    transition: all .3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}
.event .detail ul li .connection a{
    display: block;
    border:1px solid #ccc;
    padding:60px 0;
    border-radius: 10px;
    transition: box-shadow 0.3s, transform 0.3s;
    outline: 0;
    position: relative;
    transition: all .3s ease-in-out;
}

.event .detail ul li .connection a:before,
.event .detail ul li .connection a:after {
content: "";
position: absolute;
width: 0;
height: 0;
opacity: 0;
background-color: transparent;
border: solid 5px #666ce1;
border-radius: 10px;
z-index: 50;
}
.event .detail ul li .connection a:before {
top: 0px;
left: -3px;
border-bottom: 0;
border-left: 0;
transition: opacity 0s 0.4s, width 0.2s 0.2s, height 0.2s 0s;
}
.event .detail ul li .connection a:after {
bottom: 0px;
right: -3px;
border-right: 0;
border-top: 0;
transition: opacity 0s 0.4s, width 0.2s 0.2s, height 0.2s 0s;
}
.event .detail ul li .connection:hover a:before,
.event .detail ul li .connection:hover a:after {
width: 100%;
height: 100%;
opacity: 1;
}
.event .detail ul li .connection:hover a:before {
transition: opacity 0s 0s, width 0.2s 0s, height 0.2s 0.2s;
}
.event .detail ul li .connection:hover a:after {
transition: opacity 0s 0s, width 0.2s 0s, height 0.2s 0.2s;
}
.event .detail ul li .connection:hover {
box-shadow: 0px 10px 13px -7px rgba(0, 0, 0, 0.5);
transform: translateY(-1.25rem);
}

.event .detail ul li .connection a p{
    font-size:24px;
    color:#333;
    font-weight: 600;
    text-align: center;
    margin-top:30px;
}
.event .detail ul li .connection a span{
    display: block;
    position: absolute;
    bottom:10px;
    left:50%;
    transform: translateX(-50%);
    font-size:32px;
    color:#0064b1;
    text-align: center;
    transition: all .3s ease-in-out;
}
.event .detail ul li .connection a:hover span{left:52%;}
/* ------------------------------------- section ------------------------------------- */

/* footer */
.footer_top {
    padding: 30px 0;
    background-color: #333;
    position: relative;
}
.footer_top h3 {
    font-size: 32px;
    color: #fff;
    text-align: left;
}
.footer_top p {
    font-size: 24px;
    color: #ccc;
    text-align: left;
    margin: 10px 0 20px 0;
}
.footer_top .inner > a {
    display: inline-block;
    text-align: center;
    color: #ccc;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 40px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}
.footer_top .inner > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #666ce1;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.footer_top .inner > a:hover {
    border: 1px solid #666ce1;
}
.footer_top .inner > a:hover::before {
    width: 100%;
}

.footer_top .sns {
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer_top .sns a {
    display: inline-block;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}
.footer_top .sns a img {
    width: 50px;
    transition: all 0.3s ease-in-out;
}
.footer_top .sns a:hover img {
    transform: scale(1.1);
}

.footer_bottom {
    padding: 30px 0 30px 0;
    background-color: #555454;
    overflow: hidden;
}
.footer_bottom .f_logo {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.footer_bottom .f_logo img {
    height: 45px;
    opacity: 0.6;
}
.footer_bottom .tit {
    margin-top: 10px;
}
.footer_bottom .tit p {
    font-size: 13px;
    color: #ccc;
    text-align: left;
    line-height: 26px;
}
.footer_bottom .tit p strong {
    font-size: 14px;
    color: #fff;
}
.footer_bottom .tit .bottom {
    margin-top: 10px;
}
.footer_bottom .tit .bottom ul {
    display: flex;
    align-items: center;
    justify-content: start;
}
.footer_bottom .tit .bottom ul li span {
    font-size: 13px;
    color: #fff;
    text-align: left;
}

.footer_bottom .tit .location {
    position: absolute;
    top: 25px;
    right: 0;
}
.footer_bottom .tit .location ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: end;
    align-items: center;
    gap: 20px;
}
.footer_bottom .tit .location ul a {
    display: block;
    font-size: 13px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.footer_bottom .tit .location ul a:hover {
    color: #0064b1;
}

/* sub04_footer */
.sub04_footer_top {
    padding: 30px 0;
    background-color: #333;
    position: relative;
}
.sub04_footer_top h3 {
    font-size: 32px;
    color: #fff;
    text-align: left;
}
.sub04_footer_top p {
    font-size: 24px;
    color: #ccc;
    text-align: left;
    margin: 10px 0 20px 0;
}
.sub04_footer_top .inner > a {
    display: inline-block;
    text-align: center;
    color: #ccc;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 40px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}
.sub04_footer_top .inner > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #666ce1;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.sub04_footer_top .inner > a:hover {
    border: 1px solid #666ce1;
}
.sub04_footer_top .inner > a:hover::before {
    width: 100%;
}

.sub04_footer_top .sns {
    position: absolute;
    bottom: 0;
    right: 0;
}
.sub04_footer_top .sns a {
    display: inline-block;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}
.sub04_footer_top .sns a img {
    width: 50px;
    transition: all 0.3s ease-in-out;
}
.sub04_footer_top .sns a:hover img {
    transform: scale(1.1);
}

.sub04_footer_bottom {
    padding: 30px 0 240px 0;
    background-color: #555454;
}
.sub04_footer_bottom .f_logo {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.sub04_footer_bottom .f_logo img {
    height: 45px;
    opacity: 0.6;
}
.sub04_footer_bottom .tit {
    margin-top: 10px;
}
.sub04_footer_bottom .tit p {
    font-size: 13px;
    color: #ccc;
    text-align: left;
    line-height: 26px;
}
.sub04_footer_bottom .tit p strong {
    font-size: 14px;
    color: #fff;
}
.sub04_footer_bottom .tit .bottom {
    margin-top: 10px;
}
.sub04_footer_bottom .tit .bottom ul {
    display: flex;
    align-items: center;
    justify-content: start;
}
.sub04_footer_bottom .tit .bottom ul li span {
    font-size: 13px;
    color: #fff;
    text-align: left;
}
.sub04_footer_bottom .tit .location {
    position: absolute;
    top: 25px;
    right: 0;
}
.sub04_footer_bottom .tit .location ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: end;
    align-items: center;
    gap: 20px;
}
.sub04_footer_bottom .tit .location ul a {
    display: block;
    font-size: 13px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.sub04_footer_bottom .tit .location ul a:hover {
    color: #0064b1;
}
/* sub04_footer */

/* form */
.main_form {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 30px 0;
    background-color: #333f50;
    width: 100%;
    height: 210px;
    z-index: 999;
}
.main_form .form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.main_form .form .tit {
    width: 40%;
}
.main_form .form .tit > span {
    font-size: 24px;
    color: #fff;
    text-align: left;
}
.main_form .form .tit > span img {
    width: 40px;
    vertical-align: middle;
    margin-right: 15px;
}
.main_form .form .tit > h3 {
    font-size: 48px;
    color: #0064b1;
    text-align: left;
    padding: 10px 0;
    font-weight: bolder;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(
        -225deg,
        #0064b1 0%,
        #00a8d9 35%,
        #52c0b2 80%
    );
}
.main_form .form .tit > p {
    font-size: 18px;
    color: #fff;
    text-align: left;
}

.main_form .form .board {
    width: 60%;
    position: relative;
    margin-top: -70px;
}

.main_form .form .board .AWbbs_input_table {
    border: 0 !important;
}
.main_form .form .board .AWbbs_input_table .textarea_wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999999 !important;
}
.main_form .form .board .AWbbs_input_table .textarea_wrapper .textarea_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    width: 1000px !important;
    height: 800px;
    overflow-y: auto;
    transform: translate(-50%, -50%);
}
.main_form
    .form
    .board
    .AWbbs_input_table
    .textarea_wrapper
    .textarea_wrap
    textarea {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px !important;
    height: 800px;
    overflow-y: auto;
    padding: 60px !important;
    border-radius: 30px;
    color: #fff;
    background-color: #000 !important;
}
.main_form
    .form
    .board
    .AWbbs_input_table
    .textarea_wrapper
    .textarea_wrap
    .close {
    position: absolute;
    top: 10px;
    right: 40px;
}
.main_form
    .form
    .board
    .AWbbs_input_table
    .textarea_wrapper
    .textarea_wrap
    .close
    a {
    font-size: 32px;
    color: #fff;
    font-weight: 800;
}

.main_form .form .board .AW-mem-btn a {
    display: none;
}
.main_form .form .board .consult_cont {
    border: 0;
}
.main_form .form .board .form_body_table {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.main_form .form .board .form_body_table li {
    width: 44%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 20px;
}

.main_form .form .board .form_body_table li .tit {
    width: 20%;
}
.main_form .form .board .form_body_table li .box {
    width: 80%;
}

.main_form .form .board .form_body_table li .tit p {
    font-size: 16px;
    color: #fff;
    text-align: left;
}
/* 
.main_form .form .board .form_body_table li:nth-of-type(1) .tit p{letter-spacing: 1px;}
.main_form .form .board .form_body_table li:nth-of-type(2) .tit p{letter-spacing: 1px;}
.main_form .form .board .form_body_table li:nth-of-type(3) .tit p{letter-spacing: 1px;}
.main_form .form .board .form_body_table li:nth-of-type(4) .tit p{letter-spacing: 1px;} */

.main_form .form .board .form_body_table li .tit span {
    display: none;
}
.main_form .form .board .form_body_table li .box input {
    height: 40px;
    line-height: 40px;
}
.main_form .form .board .form_body_table li:nth-of-type(1) .box select {
    width: 100%;
    height: 40px;
}
.main_form
    .form
    .board
    .form_body_table
    li:nth-of-type(1)
    .box
    select
    option:first-child {
    opacity: 0.8;
}
.main_form .form .board .form_body_table li:nth-of-type(2) .box input {
    width: 100%;
    padding-left: 10px;
}
.main_form .form .board .form_body_table li:nth-of-type(3) .box input {
    width: 100%;
}
.main_form .form .board .form_body_table li:nth-of-type(4) .box input {
    width: 32%;
}
.main_form .form .board .form_body_table li:nth-of-type(4) .box select {
    width: 25%;
    height: 40px;
    padding-left: 10px;
}

.main_form .form .board .AW-mem-btn {
    position: absolute;
    right: 20px;
    bottom: -45px;
    width: 275px;
}

.main_form .form .board .AW-mem-btn a:first-child,
.AW-mem-btn input:first-child,
.AW-mem-btn button:first-child {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #0064b1 !important;
}
.main_form .form .board .AW-mem-btn:hover button {
    background-color: #000 !important;
}

.main_form .form .board .AWbbs_input_table {
    position: absolute;
    bottom: -40px;
    left: 90px;
}

.main_form .form .board .only_chk.right {
    display: flex;
    align-items: center;
}
.main_form .form .board .only_chk.font input[type="checkbox"] + label {
    color: #fff;
    padding-top: 1px;
}
.main_form .form .board .only_chk.font a {
    color: #fff;
    margin-right: 20px;
}
/* form */

.sns_pop_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
}
.sns_pop_wrap .sns_pop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sns_pop_wrap .sns_pop .pop {
    width: 250px;
    height: 150px;
    line-height: 150px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}
.sns_pop_wrap .sns_pop .pop h2 {
    font-size: 24px;
    color: #000;
    text-align: center;
    font-weight: 400;
}
.sns_pop_wrap .sns_pop .pop .close {
    position: absolute;
    top: -50px;
    right: 20px;
}
.sns_pop_wrap .sns_pop .pop .close a {
    font-size: 18px;
    color: #000;
}

/* .policy_pop_wrap */
.policy_pop_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
}
.policy_pop_wrap .policy_pop {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1300px;
    height: 800px;
    overflow: auto;
    background-color: #000;
}
.policy_pop_wrap .policy_pop .list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 800px;
    overflow: auto;
    padding: 60px;
}
.policy_pop_wrap .policy_pop .list .tit {
    padding: 30px 0;
}
.policy_pop_wrap .policy_pop h3 {
    font-size: 20px;
    color: #fff;
    text-align: left;
    font-weight: 400;
}
.policy_pop_wrap .policy_pop .tit h4 {
    font-size: 16px;
    line-height: 36px;
    color: #fff;
    text-align: left;
    font-weight: 400;
    margin-bottom: 20px;
}
.policy_pop_wrap .policy_pop .tit p {
    font-size: 14px;
    color: #fff;
    text-align: left;
    line-height: 32px;
    font-weight: 200;
}
.policy_pop_wrap .policy_pop .tit span {
    display: block;
    font-size: 12px;
    color: #fff;
    text-align: left;
    padding-left: 20px;
    line-height: 30px;
    opacity: 0.8;
    font-weight: 200;
    margin-top: 30px;
}

.policy_pop_wrap .policy_pop .close {
    position: absolute;
    top: 30px;
    right: 45px;
}
.policy_pop_wrap .policy_pop .close a {
    display: block;
    font-size: 30px;
    color: #fff;
}
/* .policy_pop_wrap */
/* footer */

/* quick_menu */
.quick_menu {
    position: absolute;
    top: 300px;
    right: 80px;
    padding: 10px 5px;
    background-color: #deebf7;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100px;
    /* background-image: linear-gradient(-225deg, #0064b1 0%, #00a8d9 35%, #52c0b2 80%); */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 999;
}
.quick_menu li {
    text-align: center;
    border-bottom: 1px solid #333;
    padding: 10px 0;
}
.quick_menu li:last-child {
    border-bottom: 0;
}
.quick_menu li .img {
    width: 40px;
    margin: 0 auto;
}
.quick_menu li .tit h4 {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-align: center;
}
.quick_menu li .tit p {
    font-size: 12px;
    color: #000;
    font-weight: 200;
    padding: 5px 0;
}
.quick_menu li .txt span {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}
.quick_menu li .txt h4 {
    font-size: 14px;
    color: #0064b1;
    font-weight: 400;
    text-align: center;
}
.quick_menu li .txt strong {
    font-size: 10px;
    color: #dd6218;
    text-align: center;
}
.quick_menu li .txt p {
    font-size: 10px;
    color: #333;
    text-align: center;
    letter-spacing: -1px;
}
.quick_menu li .consulting a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-align: center;
    background-color: #0064b1;
    border-radius: 5px;
    padding: 10px 0;
}

/* top_btn */
.topbtn {
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 9999999999999;
    width: 50px;
    height: 50px;
    border-radius: 40px;
    background-color: #0064b1;
    transition: all 0.5s ease;
    opacity: 0;
}
.topbtn.on {
    opacity: 1;
}

.topbtn img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
}

.topbtn:hover {
    transition: all 0.5s ease;
    background-color: #151515;
}
/* top_btn */


/* form 첨부파일 구분 */
.table_basic .data_list a{display: block;}





/* form 첨부파일 구분 */

