@charset "UTF-8";
/* @font-face {
    font-family: 'NanumSquareRound';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */
@import url('//cdn.rawgit.com/innks/NanumSquareRound/master/nanumsquareround.min.css');


* {margin: 0;padding: 0;box-sizing: border-box;}
html {font-size: 10px; scroll-behavior: smooth;}
body {
    font-family: 'NanumSquare', sans-serif;
    background-color: #F0F0F3;
}
img, svg {vertical-align: top;}
ul, li {list-style: none;}


.blind {
    position: absolute;
    left: -9999em;
    top: -9999em;
    overflow: hidden;
}



/* header - nav */
header {
    position: fixed;
    height: 8rem;
    width: 100%;
    z-index: 100;
    transition: all 0.3s;
}
header.active {
    background-color: #F0F0F3;
}
header nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 5rem;
    transition: all 0.3s;
}
header nav h1 {
    width: 100px;
    height: 60px;
    background: url(./../img/logo.png) no-repeat 50% 50% / contain;
}
header nav h1 a{
    display: block;
    width: 100%;
    height: 100%;
}


header .btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: 0;
    outline: none;
    background: none;
    cursor: pointer;
    z-index: 100;
}
header .btn .box {
    position: absolute;
    left: 5px;
    width: 34px;
    height: 5px;
    background-color: #FF0000;
    transition: all 0.3s;
}
header .btn .box:nth-of-type(1) {transform: translateY(-12px);}
header .btn .box:nth-of-type(2) {transform: translateY(-2px);}
header .btn .box:nth-of-type(3) {transform: translateY(8px);}

header .btn.on .box:nth-of-type(1) {transform: rotate(45deg);}
header .btn.on .box:nth-of-type(2) {width: 0;}
header .btn.on .box:nth-of-type(3) {transform: rotate(-45deg);}

header nav .gnb {
    position: absolute;
    left: 0; right: 0;top: 0;bottom: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    transition: all 0.3s;
    display: flex;
}
header .back {
    content: '';
    width: calc(100% - 800px);
    height: 100vh;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7);
}
header nav .gnb ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    width: 800px;
    margin-left: auto;
    padding-left: 10rem;
    background-color: #F0F0F3;
}
header nav .gnb li {
    transition: all 0.3s;
    margin: 10px 0;
}
header nav .gnb li a {
    display: block;
    width: 500px;
    height: 120px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 55px;
    line-height: 120px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: #B5B5B5;
    background-color: #F0F0F3;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), inset -10px -5px 4px rgba(201, 201, 201, 0.3), inset 15px 4px 10px rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    transition: all 0.3s;

}
header nav .gnb li:hover a {
    color: #434343;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), inset -4px -4px 10px rgba(255, 255, 255, 0.72), inset 4px 4px 10px rgba(146, 146, 146, 0.4);
    transition: all 0.3s;
}




/* visual */

#visual {
    height: 100vh;
    padding: 13rem 5rem 10rem;
    position: relative;
    overflow: hidden;
    
}
#visual .item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#visual .item h2 {
    color: #434343;
    font-weight: bold;
    font-size: 80px;
}
#visual .item h2 br:nth-of-type(1),
#visual .item h2 br:nth-of-type(3) {
    display: none;
}
#visual .item h2 span {
    color: #DF3346;
}

#visual .light {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-30%) scale(1.2);
    z-index: -1;
}


/* gauge - common */

#gauge {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1500px;
    height: 1500px;
    margin: 0 auto;
}
#gauge .main_gauge {
    position: absolute;
    left: 130px;top: 50px;
    width: 45px;
    height: 1500px;
    background-color: #F0F0F3;
    border-radius: 50px;
    box-shadow: inset -4px 2px 5px rgba(255, 255, 255, 0.8), inset 4px 0px 5px rgba(181, 181, 181, 0.4);
    z-index: -1;
}
#gauge .main_gauge .main_gauge_bar {
    content: '';
    display: block;
    width: 16px;height: 14px;
    background: url(./../img/gauge_main_gauge_bar_icon.png) no-repeat 50% 50% / cover;
}
#gauge .main_gauge .main_gauge_bar:nth-of-type(1) {position: absolute; top: 550px; left: 50%; transform: translateX(-50%);}
#gauge .main_gauge .main_gauge_bar:nth-of-type(2) {position: absolute; top: 1250px; left: 50%; transform: translateX(-50%);}
#gauge .section {
    display: flex;
    margin: 100px 0;
    align-items: flex-start;
    justify-content: flex-start;
}
#gauge .section .main_title {
    display: flex;
    align-items: center;
    margin-top: 95px;
    
}
#gauge .main_title h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 60px;
    font-weight: bold;
    color: #A5A5A6;
    margin-right: 42px;
    transition: all 0.3s;
}
#gauge .main_title .gauge_btn {
    width: 72px;
    height: 72px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F0F3;
    box-shadow: -4px -4px 4px rgba(247, 247, 247, 0.4), 4px 4px 10px rgba(180, 180, 180, 0.25);
    transition: all 0.3s;
}
#gauge .main_title .gauge_btn .btn_mid {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(46.23deg, #D4959C 30.4%, #D9959C 100.62%);
    border: 3px solid #F0F0F3;
    box-shadow: -2px -2px 5px rgba(241, 241, 241, 0.85), 2px 2px 4px rgba(185, 185, 185, 0.77);
    transition: all 0.3s;
}
#gauge .main_title.on h3 {
    color: #DF3346;
    transition: all 0.3s;
}
#gauge .main_title.on .gauge_btn {
    background-color: #F0F0F3;
    box-shadow: -4px -4px 4px rgba(255, 255, 255, 0.4), 4px 4px 10px rgba(180, 180, 180, 0.25);
    transition: all 0.3s;
}
#gauge .main_title.on .gauge_btn .btn_mid  {
    border: 3px solid #F0F0F3;
    background: linear-gradient(46.23deg, #DF3346 30.4%, #E5717D 100.62%);
    box-shadow: -2px -2px 2px rgba(255, 255, 255, 0.85), 2px 2px 4px rgba(185, 185, 185, 0.77);
    transition: all 0.3s;
}
#gauge .section .dot_line {
    content: '';
    display: block;
    width: 150px;
    transform: translateY(140px);
    height: 1px;
    margin: 0px 60px;
    background: url(./../img/gauge_dot_line.png) no-repeat 50% 50% / cover;
}

#gauge .section .btn_area {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(50px);
    border-radius: 50%;background: #F0F0F3;
    box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.8), 2px 2px 10px rgba(185, 185, 185, 0.47), inset -1px -1px 1px rgba(204, 201, 201, 0.3), inset 1px 1px 1px rgba(255, 255, 255, 0.58);
    cursor: pointer;
}
#gauge .section .btn_area button {
    width: 130px;
    height: 130px;
    border: 0;
    border-radius: 50%;background: #F0F0F3;
    box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.8), 2px 2px 10px rgba(185, 185, 185, 0.47), inset -1px -1px 1px rgba(204, 201, 201, 0.3), inset 1px 1px 1px rgba(255, 255, 255, 0.58);
    font-family: 'NanumSquareRound';
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #DF3346;
    text-align: center;
    outline: none;
}
#gauge .section .item {
    width: 1060px;
    height: 580px;
    padding: 50px;
    background: #F0F0F3;
    border-radius: 100px;
    box-shadow: 6px 6px 6px rgba(186, 186, 186, 0.4), inset -2px -2px 2px #DBDBDB, inset 4px 4px 8px rgba(255, 255, 255, 0.8);
}

#gauge .section .item .title {
    display: flex;
    align-items: center;
}
#gauge .section .item .title h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #F0F0F3;
    box-shadow: inset -4px -4px 4px rgba(255, 255, 255, 0.5), inset 2px 2px 9px rgba(155, 155, 155, 0.4);
    font-family: 'NanumSquareRound';
    font-size: 24px;
    font-weight: 900;
    color: #DF3346;
    text-align: center;
}
#gauge .section .item .title p {
    font-size: 25px;
    line-height: 50px;
    margin-left: 90px;
}
#gauge .section .item .gauge_list .gauge_box {
    position: relative;
    width: 100%;
    padding: 8px 20px;
    background: #F0F0F3;
    border-radius: 30PX;
    box-shadow: inset -4px -3px 5px rgba(255, 255, 255, 0.8), inset 4px 1px 5px rgba(181, 181, 181, 0.5);
    margin-top: 60px;
    margin-bottom: 30px;
}
#gauge .section .item .gauge_list .gauge_box .gauge_point {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 88%;
    transform: translateY(-50%);
    width: 35px;height: 35px;
    background: #F0F0F3;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    box-shadow: -2px -2px 2px rgba(255, 255, 255, 0.2), 2px 2px 4px rgba(185, 185, 185, 0.4);
}
#gauge .section .item .gauge_list .gauge_box .gauge_bar {
    content: '';
    display: block;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, #DF3245 0%, #FFC79C 100%);
    border-radius: 30px;
}
#gauge .section .item .gauge_list .gauge_item {
    display: flex;
    justify-content: space-between;
}
#gauge .section .item .gauge_list .gauge_item li {
    width: 200px; height: 167px;
    padding-bottom: 25px;
    background: url(./../img/gauge_item_back.png) no-repeat 50% 50% / cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
#gauge .section .item .gauge_list .gauge_item li h5 {
    font-size: 18px;
    letter-spacing: -0.5px;
    font-weight: 200;
    color: #A2A2A2;
}
#gauge .section .item .gauge_list .gauge_item li img {
    width: auto; height: 50px;
    margin-top: 5px;
    object-fit: contain;
}




/* gauge bar animation */
#gauge .story_telling .gauge_list.ani .gauge_box .gauge_bar {animation: story_gauge_bar 5s alternate;}
@keyframes story_gauge_bar {
    0% {width: 0%;}
    25% {width: 10%;}
    50% {width: 36%;}
    75% {width: 63%;}
    100% {width: 100%;}
}
#gauge .story_telling .item .gauge_list.ani .gauge_box .gauge_point {animation: story_gauge_point 5s alternate forwards;}
@keyframes story_gauge_point {
    0% {left: 0%;}
    25% {left: 9%;}
    50% {left: 35%;}
    75% {left: 62%;}
    100% {left: 88%;}
}

#gauge .brand_design .gauge_list .gauge_box .gauge_bar,
#gauge .marketing .gauge_list .gauge_box .gauge_bar {animation: brand-market_gauge_bar 5s alternate;}
@keyframes brand-market_gauge_bar {
    0% {width: 0%;}
    33.3333% {width: 10%;}
    66.6666% {width: 49%;}
    100% {width: 100%;}
}
#gauge .brand_design .item .gauge_list .gauge_box .gauge_point,
#gauge .marketing .item .gauge_list .gauge_box .gauge_point {animation: brand-market_gauge_point 5s alternate forwards;}
@keyframes brand-market_gauge_point {
    0% {left: 0%;}
    33.3333% {left: 9%;}
    66.6666% {left: 48%;}
    100% {left: 88%;}
}

/* gauge icon animation */
#gauge .story_telling .gauge_list.ani .gauge_item li:nth-of-type(2) {animation: stort_icon_2 5s alternate;}
@keyframes stort_icon_2 {
    0% {opacity: 0;}
    30% {opacity: 0;}
    35% {opacity: 1;}
    100% {opacity: 1;}
}
#gauge .story_telling .gauge_list.ani .gauge_item li:nth-of-type(3) {animation: stort_icon_3 5s alternate;}
@keyframes stort_icon_3 {
    0% {opacity: 0;}
    58% {opacity: 0;}
    62% {opacity: 1;}
    100% {opacity: 1;}
}
#gauge .story_telling .gauge_list.ani .gauge_item li:nth-of-type(4) {animation: stort_icon_4 5s alternate;}
@keyframes stort_icon_4 {
    0% {opacity: 0;}
    83% {opacity: 0;}
    85% {opacity: 1;}
    100% {opacity: 1;}
}

#gauge .brand_design .gauge_list .gauge_item li:nth-of-type(2),
#gauge .marketing .gauge_list .gauge_item li:nth-of-type(2) {animation: brand-market_icon_2 5s alternate;}
@keyframes brand-market_icon_2 {
    0% {opacity: 0;}
    43% {opacity: 0;}
    48% {opacity: 1;}
    100% {opacity: 1;}
}

#gauge .brand_design .gauge_list .gauge_item li:nth-of-type(3),
#gauge .marketing .gauge_list .gauge_item li:nth-of-type(3) {animation: brand-market_icon_3 5s alternate;}
@keyframes brand-market_icon_3 {
    0% {opacity: 0;}
    83% {opacity: 0;}
    88% {opacity: 1;}
    100% {opacity: 1;}
}




/* process */
#process .item {
    width: 1500px;
    height: auto;
    margin: 300px auto 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#process .item .main_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 150px;
}
#process .item .main_title h4 {
    font-size: 80px;
    color: #434343;
    text-align: center;
}
#process .item .main_title h4 small {
    display: block;
    font-size: 40px;
    line-height: 80px;
}
#process .item .desc {
    position: relative;
}
#process .item .desc .title {
    position: absolute; top: 0;
    width: 367px; height: 212px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F0F0F3;
    border-radius: 500px;
    box-shadow: 6px 6px 6px rgba(186, 186, 186, 0.4), inset -2px -2px 2px #DBDBDB, inset 4px 4px 8px rgba(255, 255, 255, 0.8);
    cursor: pointer;
} 
#process .item .desc .title .gauge_box {
    width: 200px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F0F3;
    border-radius: 30PX;
    box-shadow: inset -4px -3px 5px rgba(255, 255, 255, 0.8), inset 4px 1px 5px rgba(181, 181, 181, 0.5);
}
#process .item .desc .title .gauge_box .gauge_bar {
    content: '';
    display: block;
    width: 180px;
    height: 14px;
    background: linear-gradient(90deg, #B1B1B1 0%,#FFFFFF 100%);
    border-radius: 30px;
}
#process .item .desc .title.on .gauge_box .gauge_bar {
    background: linear-gradient(90deg, #DF3245 0%, #FFC79C 100%);
}
#process .item .desc h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    font-family: 'NanumSquareRound';
    font-weight: 800;
    font-size: 28px;
    color: #A5A5A6;
    text-align: center;
}
#process .item .desc h4 small {
    display: block;
    font-size: 24px;
}
#process .item .desc .company {
    left: 50%; transform: translateX(-50%);
}
#process .item .desc .shop {
    right: 0;
} 
#process .item .desc .main {
    display: none;
    margin-top: 300px;
    position: relative;
    width: 1500px;
}
#process .item .desc .main.on {
    display: block;
}
#process .item .desc .main h5 {
    position: absolute;
    left: 0;
    width: 340px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #F0F0F3;
    border-radius: 20px;
    box-shadow: 6px 6px 6px rgba(186, 186, 186, 0.4), inset -2px -2px 2px #DBDBDB, inset 4px 4px 8px rgba(255, 255, 255, 0.8);
    font-size: 30px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    color: #A2A2A2;
    cursor: pointer;
}
#process .item .desc .main h5 br {
    display: none;
}
#process .item .desc h5:hover {
    background: #F0F0F3;
    box-shadow: inset -4px -3px 5px rgba(255, 255, 255, 0.8), inset 4px 1px 5px rgba(181, 181, 181, 0.5);
}
#process .item .desc h5.active {
    background: #F0F0F3;
    box-shadow: inset -4px -3px 5px rgba(255, 255, 255, 0.8), inset 4px 1px 5px rgba(181, 181, 181, 0.5);
}
#process .item .desc .main h5:nth-of-type(1) {top: 0px;} 
#process .item .desc .main h5:nth-of-type(2) {top: 140px;} 
#process .item .desc .main h5:nth-of-type(3) {top: 280px;}
#process .item .desc .main h5:nth-of-type(4) {top: 420px;}
#process .item .desc .main h5:nth-of-type(5) {top: 560px;}

#process .item .desc .main .img.active {
    display: block;
}
#process .item .desc .main .img {
    position: absolute;
    right: 0;
    display: none;
    height: 100%;
    width: 1100px;
    border-radius: 30px;
    box-shadow: inset -4px -3px 5px rgba(255, 255, 255, 0.8), inset 4px 4px 5px rgba(139, 139, 139, 0.5);
}



#process .item .desc .main img {

    display: none;
    width: 1100px;
    height: 100%;
    object-fit: cover;
}

#process .item .desc .product_main {height: 380px;}
#process .item .desc .company_main {height: 660px;}
#process .item .desc .shop_main {height: 520px;}

#process .item .desc .product_main .img:nth-of-type(1) {background: url(./../img/process_product_ci_bi.png) no-repeat 50% 50% / cover;}
#process .item .desc .product_main .img:nth-of-type(2) {background: url(./../img/process_product_package_design.png) no-repeat 50% 50% / cover;}
#process .item .desc .product_main .img:nth-of-type(3) {background: url(./../img/process_product_web_design.png) no-repeat 50% 50% / cover;}

#process .item .desc .company_main .img:nth-of-type(1) {background: url(./../img/process_company_ci_bi.png) no-repeat 50% 50% / cover;}
#process .item .desc .company_main .img:nth-of-type(2) {background: url(./../img/process_company_interior_design.jpg) no-repeat 50% 50% / cover;}
#process .item .desc .company_main .img:nth-of-type(3) {background: url(./../img/process_company_sign_design.png) no-repeat 50% 50% / cover;}
#process .item .desc .company_main .img:nth-of-type(4) {background: url(./../img/process_company_photo_directing.png) no-repeat 50% 50% / cover;}
#process .item .desc .company_main .img:nth-of-type(5) {background: url(./../img/process_company_application_design.png) no-repeat 50% 50% / cover;}

#process .item .desc .shop_main .img:nth-of-type(1) {background: url(./../img/process_shop_ci_bi.png) no-repeat 50% 50% / cover;}
#process .item .desc .shop_main .img:nth-of-type(2) {background: url(./../img/process_shop_sign_design.png) no-repeat 50% 50% / cover;}
#process .item .desc .shop_main .img:nth-of-type(3) {background: url(./../img/process_shop_interior_design.png) no-repeat 50% 50% / cover;}
#process .item .desc .shop_main .img:nth-of-type(4) {background: url(./../img/process_shop_package_design.png) no-repeat 50% 50% / cover;}





/* footer */

footer {
    box-shadow: inset 0px 4px 4px rgba(159, 159, 159, 0.25);
    width: 100%;
    color: #434343;
}
footer p {
    font-size: 1.2rem;
    font-weight: 200;
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

footer p img {
    height: 24px;
}
footer p span {
    padding: 0 10px;
}
footer p br {
    display: none;
}



