@charset "utf-8";
#container.main {
    margin-bottom: 160px;
}
/* main_visual */
.main_visual {
    position: relative;
    padding-top: 80px;
    padding-bottom: 0px;
    height: 100vh;
    box-sizing: border-box;
    z-index: 2;
}

.main .company {padding-top: 160px;}

.main_visual .video_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.main_visual .video_box::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
    content: '';
}
.main_visual .video_box img,
.main_visual .video_box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_visual .cont_box {
    position: relative;
    display: flex;
    height: 100%;
    /*
    border-top: 1px solid rgba(161,161,161,.2);
    */
    border-bottom: 1px solid rgba(161,161,161,.2);
    z-index: 1;
    box-sizing: border-box;
}

#header #gnb {border-bottom: 1px solid rgba(161,161,161,.2);}

.main_visual .cont_box .center_box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    /*
    border-right: 1px solid rgba(161,161,161,.2);
    border-left: 1px solid rgba(161,161,161,.2);
    */
    flex: 3.5;
}
/*
.main_visual .cont_box .center_box::after {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(161,161,161,.2);
    content: '';
}
*/
.main_visual .cont_box .cont_txt {
    position: relative;
    margin-top: auto;
    padding: 32px;
    padding-bottom: 160px;
    z-index: 1;
}
.main_visual .cont_txt .video_btn {
    display: block;
    width: 42px;
    height: 42px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(http://scg.life/img/btn/video_btn.png);
}
.main_visual .cont_txt .video_btn.on {
    background-image: url(http://scg.life/img/btn/video_btn_on.png);
}
.main_visual .cont_txt .main_visual_ttl {
    margin-top: 16px;
    font-size: 66px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.main_visual .cont_txt .main_visual_ttl span {
    -webkit-text-stroke: 0.3px #fff;
    color: transparent;
}
.main_visual .cont_txt .link {
    display: block;
    width: 170px;
    height: 40px;
    margin-top: 16px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Noto Sans KR';
    color: #fff;
    line-height: 38px;
    border-radius: 30px;
    box-sizing: border-box;
}
.main_visual .scroll_down {
    display: block;
    position: absolute;
    bottom: 62px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 16px;
    box-sizing: border-box;
}
.main_visual .scroll_down span {
    display: block;
    position: absolute;
    left: 4px;
    top: 3px;
    width: 8px;
    height: 8px;
    opacity: 0;
    background: #fff;
    border-radius: 50%;
    animation: scrollDown 1s linear infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(16px);
    }
}
/* //main_visual */

/* main_line */
.main_line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
}
.main_line .center {
    display: flex;
    border-right: 1px solid rgba(161,161,161,.2);
    border-left: 1px solid rgba(161,161,161,.2);
}
.main_line .center_in {
    flex: 1;
}
.main_line .center_in + .center_in {
    border-left: 1px solid rgba(161,161,161,.2);
}
/* //main_line */

.img_item_sec {
    position: relative;
    padding-top: 160px;
    z-index: 1;
}
.img_item_row {
    transform: translateY(200px);
    opacity: 0;
    transition: all 0.8s;
}
.img_item_sec.on .img_item_row {
    transform: translateY(0);
    opacity: 1;
}
.img_item_row .inner {
    display: flex;
    height: 400px;
}
.img_item_row .img {
    position: relative;
    width: 50%;
}
.img_item_row .img img {
    display: block;
    position: absolute;
    top: 0;
    max-width: none;
}
.right .img_item_row .img img {
    right: 0;
}
.left .img_item_row .img img {
    left: 0;
}
.img_item_row .txt {
    width: 50%;
    flex: 0 0 auto;
    padding-top: 112px;
    box-sizing: border-box;
}
.right .img_item_row .txt {
    padding-left: 34px;
}
.img_item_row .txt .ttl {
    font-size: 27px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}
.img_item_row .txt .ttl strong {
    position: relative;
    font-weight: 500;
}
.img_item_row .txt .ttl strong::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: #FFEB01;
    border-radius: 60px;
    content: '';
}
.img_item_row .txt .ttl strong span {
    position: relative;
    z-index: 1;
}
.img_item_row .txt .arrow {
    display: block;
    width: 30px;
    height: 30px;
    margin-top: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(http://scg.life/img/ico/img_item_arrow.png);
}
.img_item_row:hover .txt .arrow {
    background-image: url(http://scg.life/img/ico/img_item_arrow_hover.png);
}

/* because_sec */
.because_sec {
    position: relative;
    margin: 150px 0;
    padding: 150px 0;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}
.because_sec .because_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    background: url(../img/01hero.jpg) center center no-repeat;
    border-radius: 60px;
    overflow: hidden;
    /* transition: all .5s; */
}
.because_sec .because_box h2 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.because_sec .because_box .two_txt {
    display: none;
}
.because_sec .because_box .two_txt span {
    opacity: 0;
}
/* //because_sec */

/* phone_sec */
.phone_sec {
    position: relative;
    display: flex;
    padding-bottom: 100px;
}
.phone_sec .phone_sec_in {
    display: flex;
}
.phone_sec .phone_box {
    flex: 1;
    transition: all 1s;
}

.phone_sec .phone_box .txt{
    padding-left: 60px;
    padding-right: 60px;
}


.phone_sec .phone_box01 {
    transform: translateY(78px);
}
.phone_sec.on .phone_box01 {
    transform: translateY(0);
}
.phone_sec.on .phone_box02 {
    transform: translateY(78px);
}
.phone_sec .phone_box .category {
    display: block;
    width: 160px;
    height: 40px;
    margin-bottom: 16px;
    border: 2px solid #212121;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 36px;
    border-radius: 30px;
    box-sizing: border-box;
}
.phone_sec .phone_box .ttl {
    font-size: 27px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}
.phone_sec .phone_box .ttl strong {
    position: relative;
    font-weight: 500;
}
.phone_sec .phone_box .ttl strong::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: #eee;
    border-radius: 60px;
    content: '';
}
.phone_sec .phone_box .ttl strong span {
    position: relative;
    z-index: 1;
}
.phone_sec .phone_box .ttl span {
    position: relative;
    z-index: 1;
}
.phone_sec .phone_box .arrow {
    display: block;
    width: 30px;
    height: 30px;
    margin-top: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(http://scg.life/img/ico/img_item_arrow.png);
}
.phone_sec .phone_box:hover .arrow {
    background-image: url(http://scg.life/img/ico/img_item_arrow_hover.png);
}
.phone_sec .phone_box .img {
    margin-top: 60px;
}
.phone_sec .phone_box .img img {
    display: block;
}
/* //phone_sec */

/* search_sec */
.search_sec {
    position: relative;
    padding: 114px 0 128px;
    text-align: center;
    background: #F9FAFB;
}
.search_sec .close_btn {
    position: absolute;
    top: 40px;
    right: 45px;
    width: 31px;
    height: 31px;
    background: url(http://scg.life/img/btn/search_pop_close_btn.png) center center no-repeat;
}
.search_sec .ico img {
    margin: 0 auto;
}
.search_sec .warning_notice {
    margin-top: 8px;
    font-size: 22px;
    font-weight: 400;
    color: #FB2047;
}
.search_sec .ttl {
    margin-top: 16px;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}
.search_sec .search_box {
    position: relative;
    display: block;
    max-width: 630px;
    width: calc(100% - 30px);
    margin: 52px auto 0;
}
.search_sec .search_box input {
    display: block;
    width: 100%;
    height: 66px;
    border: 0;
    padding: 0 86px 0 20px;
    font-size: 30px;
    border-radius: 100px;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(59,59,59,0.2);
}
.search_sec .search_box input::placeholder {
    color: #999;
    font-size: 22px;
    line-height: 66px
}
.search_sec .search_box .search_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 86px;
    height: 66px;
    background: url(http://scg.life/img/btn/search_sec_btn.png) center center no-repeat;
}

/* //search_sec */

/* search_result_pop */
.search_result_pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 9999999;
}
.search_result_pop .pop_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: calc(100% - 30px);
    max-height: 90vh;
    padding: 50px 90px;
    background: #fff;
    border-radius: 60px;
    box-sizing: border-box;
    overflow-y: auto;
}
.search_result_pop .close_btn {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 31px;
    height: 31px;
    background: url(http://scg.life/img/btn/search_pop_close_btn.png) center center no-repeat;
}

.search_result_pop .person_type {
    font-size: 27px;
    font-weight: 500;
    line-height: 2;
    text-align: center;
}
.search_result_pop .person_type span {
    display: inline-block;
    padding: 0 20px;
    line-height: 44px;
    font-size: 27px;
    font-weight: 700;
    border-radius: 60px;
}
.search_result_pop .person_type.scg_user span:not(.res_txt) {
    color: #FEE500;
    background: #1E202C;
}
.search_result_pop .person_type.warning_user span:not(.res_txt) {
    color: #fff;
    background: #FB2047;
}

.search_result_pop .person_type .res_txt{
    font-size: 27px;
    font-weight: 500;
    line-height: 2;
    padding: 0;
}

.search_result_pop .search_result_notice {
    margin-top: 40px;
}
.search_result_pop .search_result_notice h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}
.search_result_pop .search_result_notice p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}
.search_result_pop .search_result_notice p span {
    color: #FB2047;
}
.search_result_pop .accident_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
}
.search_result_pop .accident_box h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 2.1;
}
.search_result_pop .accident_box .data {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}
.search_result_pop .accident_box dl {
    display: flex;
    flex-wrap: wrap;
    max-width: 150px;
}
.search_result_pop .accident_box dl + dl {
    margin-top: 12px;
}
.search_result_pop .accident_box dt {
    margin-right: 4px;
    font-weight: 700;
    line-height: 1.5;
    flex: 0 0 auto;
}
.search_result_pop .accident_box dd {
    line-height: 1.5;
}
.search_result_pop .accident_box .link {
    text-decoration: underline;
    color: #0085FF;
}
/* //search_result_pop */

/* box_sec */
.box_sec {
    position: relative;
    display: flex;
    padding: 160px 0 100px;
}
.box_sec .box_sec_in {
    display: flex;
    flex-wrap: wrap;
}
.box_sec .box {
    position: relative;
    width: 50%;
    transform: translateY(100px);
    opacity: 0;
    box-sizing: border-box;
}
.box_sec .box::before {
    display: block;
    padding-top: 100%;
    content: '';
}
.box_sec .box_in {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    box-sizing: border-box;
}
.box_sec .box01 {
    background: #F9FAFB;
}
.box_sec .box02 {
    background: #000;
}
.box_sec .box03 {
    background: #FFEB00;
}
.box_sec .box .sub_ttl {
    display: block;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 500;
    color: #FB2047;
}
.box_sec .box .ttl {
    font-size: 27px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}
.box_sec .box02 .ttl {
    color: #fff;
}
.box_sec .box .i_ico {
    display: block;
    margin-top: 16px;
}
/* //box_sec */

/* now_sec */
.now_sec {
    position: relative;
    padding: 300px 0 140px;
}
.now_sec .now_sec_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 800px;
    height: 640px;
    margin: 0 auto;
    background: url(http://scg.life/img/main/now_sec_bg.jpg) center center no-repeat;
    transition: all 1s;
}
.now_sec.on .now_sec_box {
    width: 100%;
}
.now_sec .now_sec_box h2 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
}
/* //now_sec */

.mo {display: none !important;}

@media all and (max-width: 1200px) {
    
    .because_sec .because_box h2 {
        font-size: 46px;
    }
    .box_sec .box_in {
        padding: 40px;
    }
    .box_sec .box .sub_ttl {
        font-size: 18px;
    }
    .box_sec .box .ttl {
        font-size: 22px;
    }
}


@media all and (max-width: 850px) {
    
    .phone_sec.on .phone_box01 {padding-left: 30px; padding-right: 30px;}
    .phone_sec.on .phone_box02 {padding-left: 30px; padding-right: 30px;}
    #container.main {margin-bottom: 0px;}
    .phone_sec .phone_box .txt {padding-left: 0px !important; padding-right: 0px !important;}
    
    .because_sec {padding-top: 0px !important;}
    
    .mo {display: block !important;}
    
    /* main_visual */
    .main_visual {
        padding: 50px 0 105px;
    }
    .main_visual .cont_box {
        border: 0;
    }
    .main_visual .cont_box .cont_txt {
        padding: 0 15px;
    }
    .main_visual .cont_box .center_box {
        border: 0;
    }
    .main_visual .cont_box .center_box::after {
        display: none;
    }
    .main_visual .cont_txt .video_btn {
        width: 40px;
        height: 40px;
        background-size: 40px;
    }
    .main_visual .cont_txt .main_visual_ttl {
        margin-top: 15px;
        font-size: 28px;
        line-height: 1.4;
    }
    .main_visual .cont_txt .link {
        margin-top: 25px;
        width: 150px;
        font-size: 15px;
    }
    .main_visual .scroll_down {
        bottom: 15px;
        width: 15px;
        height: 30px;
    }
    .main_visual .scroll_down span {
        left: 3px;
        width: 7px;
        height: 7px;
    }
    /* //main_visual */

    .main_line {
        display: none;
    }


    /* img_item_sec */
    .img_item_sec {
        padding-top: 50px;
    }
    .img_item_sec + .img_item_sec {
        padding-top: 42px;
    }
    .img_item_row {
        transform: translateY(50px);
    }
    .img_item_row .inner {
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .img_item_sec.right .inner {
        flex-direction: column-reverse;
    }
    .img_item_row .img {
        width: calc(100% - 15px);
        margin-top: 20px;
        margin-left: 15px;
    }
    .img_item_row .img img {
        position: static;
        max-width: 100%;
        width: 100%;
    }
    .img_item_row .txt {
        position: relative;
        width: 100%;
        padding: 0 15px;
    }
    .right .img_item_row .txt {
        padding: 0 15px;
    }
    .img_item_row .txt .ttl {
        font-size: 19px;
    }
    .img_item_row .txt .ttl strong::after {
        bottom: 2px;
        height: 7px;
        border-radius: 4px;
    }
    .img_item_row .txt .arrow {
        position: absolute;
        bottom: -6px;
        right: 15px;
        width: 28px;
        height: 28px;
        background-image: url(http://scg.life/img/ico/img_item_arrow_mo.png);
        background-size: 28px;
    }
    .img_item_row:hover .txt .arrow {
        background-image: url(http://scg.life/img/ico/img_item_arrow_hover_mo.png);
    }
    /* //img_item_sec */


    /* because_sec */
    .because_sec {
        margin: 0;
        padding: 75px 0;
    }
    .because_sec .because_box {
        flex-direction: column;
        width: 100%;
        height: 283px;
        background-size: cover;
        border-radius: 0;
    }
    .because_sec .because_box h2 {
        font-size: 32px;
        line-height: 1.4;
        text-align: center;
    }
    .because_sec .because_box .two_txt {
        display: block;
    }
    .because_sec .because_box .two_txt span {
        opacity: 1;
    }
    /* //because_sec */

    /* phone_sec */
    .phone_sec {
        padding-bottom: 70px;
    }
    .phone_sec .phone_sec_in {
        display: block;
        width: 100%;
    }
    .phone_sec .phone_box01 {
        transform: none;
    }
    .phone_sec.on .phone_box01 {
        transform: none;
    }
    .phone_sec .phone_box02 {
        margin-top: 50px;
    }
    .phone_sec.on .phone_box02 {
        transform: none;
    }
    .phone_sec .phone_box .txt {
        position: relative;
        padding: 0 15px;
    }
    .phone_sec .phone_box .category {
        width: 110px;
        height: 29px;
        margin-bottom: 15px;
        border-width: 1px;
        line-height: 27px;
        font-size: 13px;
        border-radius: 14.5px;
    }
    .phone_sec .phone_box .ttl {
        font-size: 19px;
    }
    .phone_sec .phone_box .ttl strong::after {
        bottom: 2px;
        height: 7px;
        border-radius: 4px;
    }
    .phone_sec .phone_box .arrow {
        position: absolute;
        bottom: -6px;
        right: 15px;
        width: 28px;
        height: 28px;
        background-image: url(http://scg.life/img/ico/img_item_arrow_mo.png);
        background-size: 28px;
    }
    .phone_sec .phone_box:hover .arrow {
        background-image: url(http://scg.life/img/ico/img_item_arrow_hover_mo.png);
    }
    .phone_sec .phone_box .img {
        margin-top: 20px;
    }
    .phone_sec .phone_box .img img {
        width: 100%;
    }
    /* //phone_sec */

    /* search_sec */
    .search_sec {
        padding: 40px 0;
    }
    .search_sec .ico img {
        width: 31.5px;
    }
    .search_sec .warning_notice {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.3;
    }
    .search_sec .ttl {
        margin-top: 20px;
        font-size: 28px;
        line-height: 1.4;
    }
    .search_sec .search_box {
        margin-top: 28px;
    }
    .search_sec .search_box input {
        height: 44px;
        padding-right: 54px;
        font-size: 20px;
    }
    .search_sec .search_box input::placeholder {
        color: #999;
        font-size: 16px;
        line-height: 66px
    }
    .search_sec .search_box .search_btn {
        width: 54px;
        height: 44px;
        background: url(http://scg.life/img/btn/search_sec_btn_mo.png) center center no-repeat;
        background-size: 20px;
    }
    /* //search_sec */

    /* search_result_pop */
    .search_result_pop .pop_box {
        padding: 50px 20px 52px;
        border-radius: 25px;
        max-height: 500px;
    }
    .search_result_pop .person_type {
        font-size: 19px;
    }
    .search_result_pop .person_type span {
        padding: 0 15px;
        line-height: 33px;
        font-size: 19px;
        border-radius: 16px;
    }
    .search_result_pop .person_type .res_txt {
        font-size: 19px;
    }
    .search_result_pop .search_result_notice {
        margin-top: 29px;
    }
    .search_result_pop .search_result_notice + .search_result_notice {
        margin-top: 40px;
    }
    .search_result_pop .search_result_notice h3 {
        margin-bottom: 17px;
        font-size: 17px;
        line-height: 1.4;
    }
    .search_result_pop .search_result_notice p {
        font-size: 13px;
    }
    .search_result_pop .accident_row {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .search_result_pop .accident_box {
        width: 50%;
    }
    .search_result_pop .accident_box h4 {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.4;
    }
    .search_result_pop .accident_box .data {
        font-size: 13px;
    }
    .search_result_pop .close_btn ,.search_sec .close_btn {
        top: 10px;
        right: 10px;
        width: 46px;
        height: 46px;
        background: url(http://scg.life/img/btn/search_pop_close_btn_mo.png) center center no-repeat;
        background-size: 16.5px;
    }
    /* //search_result_pop */

    /* box_sec */
    .box_sec {
        padding: 70px 0 25px;
    }
    .box_sec .box_sec_in {
        display: block;
    }
    .box_sec .box {
        width: 100%;
    }
    .box_sec .box_in {
        padding: 35px 20px;
    }
    .box_sec .box .sub_ttl {
        margin-bottom: 17px;
        font-size: 15px;
    }
    .box_sec .box .ttl {
        font-size: 19px;
    }
    .box_sec .box .i_ico {
        width: 23px;
        margin-top: 15px;
    }
    /* //box_sec */

    /* now_sec */
    .now_sec {
        padding: 75px 0 25px;
    }
    .now_sec .now_sec_box {
        width: 100%;
        height: 222px;
        background: url(http://scg.life/img/main/now_sec_bg_mo.jpg) center center no-repeat;
        background-size: cover;
    }
    .now_sec .now_sec_box h2 {
        font-size: 32px;
        text-align: center;
        line-height: 1.3;
    }
    /* //now_sec */

}


@media all and (max-width: 404px) {
    .search_result_pop .person_type {
        font-size: 14px;
    }
    .search_result_pop .person_type span {
        padding: 0 10px;
        font-size: 14px;
        line-height: 24px;
    }
    .search_result_pop .person_type .res_txt {
        font-size: 14px;
    }
}