@charset "utf-8";
*{
    margin:0; 
    padding:0; 
    box-sizing: border-box;
    /* cursor: url('/images/spaceship.png')2 2,auto; */
}
 /*scroll-behavior: smooth; 사용 시 js 스크롤이벤트와 중첩되어 버벅거림 발생 */
ul,ol,li{list-style: none;}
img{vertical-align: top;}
a{
    text-decoration: none; 
    color:inherit;
}
button{
    cursor: pointer; 
    background: transparent; 
    border: none;
}
/* reset */

body{color:#333;}
.con_box{
    width: 100vw;
    padding-top: 100px;
    margin-bottom: 100px;
}
.inner{
    width:1440px;
    height:724px;
    margin:0 auto;
    position: relative;
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/pins.png);
}
.flex{display: flex;}
.align-c{align-items: center;}
.justify-c{justify-content: center;}
.justify-sb{justify-content: space-between;}
.txt_line{
    display: inline-block;
    position: relative;
    z-index: 1;
}
.txt_line::before{
    content: "";
    display: block;
    width:100%;
    height:7px;
    border-radius: 999px;
    background: pink;
    position: absolute;
    left:0;
    bottom:0;
    z-index: -1;
}
a{cursor: pointer;}
#wrap{
    width:100%;
    height:100%;
    background-image: url(../images/bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

/********************* #header *********************/
#header{
    width: 100%;
    height:80px;
    padding:0 50px;
    position: fixed;
    left:0;
    top:0;
    z-index: 99999;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(7px);
}
#header nav{width:570px;}
#header nav #gnb li{position: relative;}
#header nav #gnb li a{
    display: block;
    position: relative;
    left:0;
    top:0;
    cursor: pointer;
}
#header nav #gnb li::before{
    content: "";
    display: block;
    width:0;
    height:7px;
    border-radius: 999px;
    background: pink;
    position: absolute;
    left:0;
    bottom:1px;
    transition: .5s;
}
#header nav #gnb li.on{font-weight: bold;}
#header nav #gnb li.on::before{width:100%;}
#header nav #gnb li:not(.on):hover::before{width:100%;}
/********************* .all_menu *********************/
#header .all_menu{
    width:82px;
    height: 15px;
    flex-direction: column;
    transition: .3s;
}
#header .all_menu:hover{transform: scaleX(70%);}
#header .all_menu span{
    display: block;
    width:100%;
    height:1px;
    background: #333;
    font-size: 1px;
    color: transparent;
    text-indent:-99999px;
    overflow: hidden;
}
#header .all_menu::before{
    content:"";
    display: block;
    width:100%;
    height:1px;
    background: #333;
}
#header .all_menu::after{
    content:"";
    display: block;
    width:100%;
    height:1px;
    background: #333;
}
/********************* #visual *********************/
#visual{position: relative;}
#visual .inner {margin: 15vh auto;}
#visual .inner .title{
    width: 100%;
    text-align: center;
    font-weight: normal;
    font-size:160px;
    position: absolute;
    left:50%;
    top:50%;
    /* transform: translate(-50%, -50%); */
    animation: title_move 3s infinite linear alternate;
}
@keyframes title_move{
    0%{
        transform: translate(-50%, -50%);
        opacity: 1;
        filter: blur(0px);
    }
    100%{
        transform: translate(-50%, -45%);
        opacity: .3;
        filter: blur(10px);
    }
}
#visual .inner .txt{
    font-size: 22px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}
#visual .inner .txt span{
    font-weight:800;
    font-size: 26px;
}
#visual .inner ul.link-wrap{
    gap:20px;
    position: absolute;
    left:50%;
    bottom: 0;
    transform: translateX(-50%);
}
#visual .inner ul.link-wrap li{
    width:330px;
    height:70px;
    background-image: url(../images/visual-btn-01.png);
    background-repeat:no-repeat;
    background-position:center;
    background-size:auto;
    transition: .3s;
}
#visual .inner ul.link-wrap li:nth-child(2){background-image: url(../images/visual-btn-02.png);}
#visual .inner ul.link-wrap li a{
    display: block;
    width:100%;
    height:100%;
    padding:10px 40px;
    position: relative;
    overflow: hidden;
}
#visual .inner ul.link-wrap li a::after{
    content:'';
    display: block;
    width: 36px;
    height: 20px;
    background: url(../images/icon_arrow_right.png) no-repeat center / cover;
    position: absolute;
    top:20px;
    right:20px;
    transition: .5s;
}
#visual .inner ul.link-wrap li:hover{
    transform: translateY(8px);
    filter: drop-shadow(4px 4px 4px rgba(1, 1, 1, 0.2));
}
#visual .inner ul.link-wrap li:hover a::after{
    right:-10px;
    opacity: 0;
}
#visual .visual-memo img{
    position: absolute;
    opacity: .3;
    z-index: -1;
}
#visual .visual-memo img:nth-child(1){
    left: 100px;
    bottom: 0;
}
#visual .visual-memo img:nth-child(2){
    right: 130px;
    bottom: 200px;
}

/********************* main *********************/
main{position: relative;}
main .main_nav{
    position: fixed;
    left:8vw;
    top:50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap:30px;
    z-index: 9999;
    opacity: 0;
}
main ul.main_nav li a{
    display: block;
    width: 12px;
    height:12px;
    border-radius: 50%;
    background: rgba(1,1,1,0.1);
    overflow: hidden;
    text-indent: -9999px;
    font-size: 1px;
    color:transparent;
    cursor: pointer;
}
.main_nav.on {
    opacity: 1;
    transition: 0.7s;
}
main ul.main_nav li a.on{background: #a381a9;}

/********************* #container *********************/
#container .con_box .box{
    width: 570px;
}

/* .left-area */
#container .con_box .left-area{
    position: relative;
}
#container .con_box .left-area h2{
    text-transform:uppercase;
    font-size: 76px;
    font-weight: 700;
    line-height: 1;
}
#container .con_box .left-area h2 span{
    font-size: 24px;
}
#container .con_box .left-area em{
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    display: block;
}
#container .con_box .left-area em::before{
    content:'';
    display: inline-block;
    width:105px;
    height:1px;
    background: #666;
    vertical-align: middle;
    margin-right:20px;
}

/* .left-wrap */
#container .con_box .left-area .left-wrap{
    width:100%;
    position: absolute;
    left:0;
    bottom:65px;
}

/* txt-box scrollBar 속성***********/
.txt-box::-webkit-scrollbar {
    width: 4px;
    height: 8px;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    opacity: 0.5;
}
.txt-box::-webkit-scrollbar-thumb {
    background-color: #cebcd1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: #cebcd1;
    border-radius: 10px;
}
.txt-box::-webkit-scrollbar-track {
    background-color: #eee;
}
::-webkit-scrollbar-track {
    background-color: #eee;
}
/*********** txt-box scrollBar 속성(end) */

/* .txt-wrap */
#container .con_box .left-area .txt-wrap{
    margin:40px 0 60px;
    background: url(../images/txt-box-bg.png) no-repeat center / cover;
    padding:35px 40px;
    font-size: 15px;
    width:100%;
    height:156px;
    
}
#container .con_box .left-area .txt-wrap:hover{
    box-shadow: 5px 5px 15px rgba(1, 1, 1, 0.1);
}
/* .txt-box */
#container .con_box .left-area .txt-box{
    width:490px;
    height: 100px;
    overflow-y: scroll;
    word-break: keep-all;
}

#container .con_box .left-area .txt-box p{
    margin-bottom:10px;
}
#container .con_box .left-area .txt-box p:last-child{
    margin-bottom:0;
}
#container .con_box .left-area .txt-box b{
    color:#928FE2;
}

/* .btn-wrap */
/* .btn-box 공통 속성 ***********/
#container .con_box .btn-box{
    display: flex;
    justify-content: space-between;
    gap:10px;
}
#container .con_box .btn-box a{
    display: block;
    flex:1;
    padding:10px 36px;
    position: relative;
    transition: 0.2s;
}
#container .con_box .btn-box a:hover{
    transform: translateY(3px);
}
#container .con_box .btn-box a::after{
    content: "";
    width:8px;
    height:15px;
    display: inline-block;
    background: url(../images/icon_angle_right.png) no-repeat center / cover;
    
    position: absolute;
    right:25px;
    top:50%;
    transform: translateY(-50%);
    transition: 0.2s;
}
#container .con_box .btn-box a:hover::after{
    right:15px;
}
#container .con_box .btn{
    border: 1px solid #707070;
}
/*********** .btn-box 공통 속성 (end) */

/* btn-top */
#container .con_box .left-area .btn-top p{
    font-size: 14px;
}
#container .con_box .left-area .btn-top .device-pc{
    background-color: #FEFFEF;
}
#container .con_box .left-area .btn-top .device-tablet{
    background-color: #F0FFE2;
}
#container .con_box .left-area .btn-top .device-mobile{
    background-color: #EFFEFF;
}


/* btn-bottom */
#container .con_box .left-area .btn-bottom {
    margin-top: 15px;
    font-size: 14px;
}
#container .con_box .left-area .btn-bottom .wrok-page{
    background-color: #FFEFEF;
}
#container .con_box .left-area .btn-bottom .origin-page{
    background-color: #F2F2F2;
}

/* .right */
/******************** 모든 .main-memo 공통 속성 */
.main-memo{
    position: relative;
}
@keyframes opacity_move{
    0%{
        transform: translateY(0);
        opacity: .3;
        /* filter: blur(0px); */
    }
    100%{
        transform: translateY(-10%);
        opacity: 1;
        /* filter: blur(10px); */
    }
}
/* .memo-txt */
.memo-txt{
    width:362px;
    height:200px;
    position: absolute;
    right:400px;
    bottom: 500px;
    background: url(../images/memo1-notxt.png) no-repeat center / cover;
    padding:75px;
    font-weight:bold;
    font-size: 18px;
    animation: opacity_move 3s infinite ease-in-out alternate;
}
.memo-txt::before{
    content: "";
    display: inline-block;
    width:14px;
    height:14px;
    background: url(../images/ex-star-b.png) no-repeat center / cover;
    position: absolute;
    left:50px;
    top:100px;
    opacity: 0.4;
}
.memo-txt span{
    font-weight:normal;
    font-size: 16px;
}
/* .memo-img */
.memo-img{
    position: absolute;
    right:-200px;
    bottom: 0;
    animation: opacity_move 3s infinite ease-in-out alternate;
}
/* 모든 .main-memo 공통 속성(end) ********************/

#container .con_box .right-area .img-wrap{
    width:100%;
    height:724px;
    position: relative;
    z-index: 1;
}
#container .con_box .right-area .img-wrap img{
    position: absolute;
    transition: 0.4s;
}
#container .con_box .right-area .img-wrap img:hover{
    opacity: 0.4;
}
#container .con_box .right-area .img-wrap img.pc-img{
    right:-10px;
    top:250px;
    z-index: 2;
}
#container .con_box .right-area .img-wrap img.phone-img{
    left:-300px;                  
    top:100px;
    z-index: 3;
    width: 800px;
}


/* #container .con_box .right-area .img-wrap img.tablet-img{
    right:435px;
    top:250px;
    z-index: 1;
} */
#work4 .img-wrap img{right: 1px;}
#work5 .img-wrap img{left: -350px;}
/********************* #about-me *********************/
/* .info-wrap */
#about-me .info-wrap{
    width:720px;
    position: absolute;
    right:0px;
    top:0;
    z-index: 2;
}
#about-me .info-wrap h2{
    font-size: 86px;
    line-height: 1;
    color: #928FE2;
    gap:20px;
}
#about-me .info-wrap h2 img{transition: 0.5s;}
#about-me .info-wrap h2:hover img{
    transform: rotateY(180deg);
    opacity: 0.5;
}
#about-me .info-wrap em{
    font-style: normal;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}
#about-me .info-wrap em::before{
    content:'';
    display: inline-block;
    width:105px;
    height:1px;
    background: #333;
    vertical-align: middle;
    margin-right:20px;
}
#about-me .info-wrap em span{
    color: #928FE2;
}

/* .txt-wrap */
#about-me .info-wrap .txt-wrap{
    width: 720px;
    height: 115px;
    background: url(../images/txt-box-2-bg.png) no-repeat center / cover;
    margin: 40px 0;
    transition: 0.2s;
    padding: 30px 45px;
}
#about-me .info-wrap .txt-wrap:hover {
    box-shadow: 5px 5px 15px rgba(1, 1, 1, 0.1);
}
#about-me .info-wrap .txt-wrap .txt-box{
    width: 642px;
    height: 67px;
    overflow-y: scroll;
    line-height: 1.3;
    font-size: 15px;
}

/* .skill-wrap */
#about-me .info-wrap .skill-wrap ul.skill-list{
    display: flex;
    margin-bottom: 10px;
}

/* .skill-title */
#about-me .info-wrap .skill-wrap .skill-title{
    width: 143px;
    height: 30px;
    background: #fff;
    display: block;
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    font-size: 10px;
    font-weight: bold;
    margin-right: 40px;
    transition: 0.4s;
}
#about-me .info-wrap .skill-wrap .skill-title:hover{
    color:#fff;
    background:#928FE2;
}

#about-me .info-wrap .skill-wrap ul.skill-list p{
    font-size: 14px;
    margin-bottom: 20px;
    padding-top: 5px;
}
#about-me .info-wrap .skill-wrap ul.skill-list p span{
    font-weight: bold;
    margin-right:25px;
}

/* .memo-wrap */
#about-me .memo-wrap{
    position: relative;
}
/* .ability */
#about-me .memo-wrap .ability{
    width:415px;
    height: 555px;
    background: url(../images/explain-memo-bg.png) no-repeat center / cover;
    padding:75px 50px;
    margin-left: 90px;
}
#about-me .memo-wrap .ability strong{
    font-size: 45px;
}
#about-me .memo-wrap .ability .ability-list{
    flex-direction: column;
    gap:15px;
    margin-top: 30px;
    vertical-align: top;
}
#about-me .memo-wrap .ability .ability-list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#about-me .memo-wrap .ability .ability-list em{
    font-weight: bold;
    font-style: normal;
    font-size: 14px;
}
#about-me .memo-wrap .ability .ability-list em::before{
    content:'';
    display: inline-block;
    width: 12px;
    height: 12px;
    background:  url(../images/ex-star-b.png) no-repeat center / cover;
    margin-right: 5px;
}
#about-me .memo-wrap .ability .ability-list .skill-bar{
    width:180px;
    height:7px;
    display: inline-block;
    margin-right: 10px;
    background: #fff;
    border-radius: 99px;
    border: 1px solid #333;

    overflow: hidden;
    position: relative;
}
#about-me .memo-wrap .ability .ability-list .skill-bar::after{
    content:'';
    display: block;
    width:0;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    background-color: #333;
    border-radius: 99px;
}
#about-me .memo-wrap .ability .ability-list .bar98::after{
    width: 98%;
}
#about-me .memo-wrap .ability .ability-list .bar97::after{
    width: 97%;
}
#about-me .memo-wrap .ability .ability-list .bar90::after{
    width: 90%;
}
#about-me .memo-wrap .ability .ability-list .bar88::after{
    width: 88%;
}
#about-me .memo-wrap .ability .ability-list .bar85::after{
    width: 85%;
}
/* .memo-info */
#about-me .memo-wrap .memo-info{
    width: 359px;
    height: 280px;
    background: url(../images/explain-memo-bg-1.png) no-repeat center / cover;
    position: absolute;
    left:300px;
    top:430px;
    animation: boxMove 3s infinite linear alternate;
}
@keyframes boxMove {
    0%{
        top:430px;
    }
    100%{
        top:380px;
    }
}
#about-me .memo-wrap .memo-info .info-bg{
    width: 311px;
    height: 151px;
    border-radius:20px;
    padding: 55px 30px;
    background: #fff;
    color:#928FE2;

    position: absolute;
    left:50%;
    bottom:30px;
    transform: translateX(-50%);
}
#about-me .memo-wrap .memo-info .info-bg strong{
    font-size: 23px;
    margin-right: 15px;
}
#about-me .memo-wrap .memo-info .info-bg .info-txt{
    font-size: 12px;
}

/********************* #footer *********************/
#footer{
    width:100%;
    height: 100px;
    background: #333;
}
#footer .inner{
    height: 100%;
}
#footer .inner h2{
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 100px;
}

@media all and (max-width:768px) {
    body{
        width: 100%;
        display: block;
    }
}

