@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/*reset*/
* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
    color: inherit;
}

body {
    font: 15px 'Noto Sans KR', sans-serif;
    color: #333;
    width: 1920px;
    /* background: url(../images/index.jpg) no-repeat;*/
    /*height: 2950px;*/
}

.wrap {
    margin: 0 auto;
    width: 1000px;
    /*outline: 1px dotted red;*/
}

.wrap_header {
    margin: 0 auto;
    width: 1200px;
    display: flex;
    justify-content: space-between;
    /*outline: 1px dotted red;*/
}

.outline {
    /* outline: 1px dotted blue; */

}


/* 기본색 */
/*:root {
    --line-color: #e1e1e1;
    --primary-color: #000;
    --secondary-color-lightgray: #DCDCDC;
    --secondary-color-mediumgray: #BEBEBE;
    --secondary-color-darktgray: #777;
    --point-color: #e55204;
    --point-color2: #1F87E6;
}*/



/* 헤더 영역*/
#header {
    width: 100%;
    height: 120px;
    background: #000;
    box-sizing: border-box;
}

#logo {
    width: 210px;
    height: 100px;
    float: left;
    margin-left: 100px;
    padding-top: 40px;
}

#logo a {
    display: block;
    width: 210px;
    box-sizing: border-box;
}

/* depth 1 메뉴 */
#nav {
    width: 750px;
    height: 120px;
    float: left;
    margin-top: 60px;
}

#nav > ul {
    width: 750px;
}

#nav > ul:after {
    display: block;
    content: "";
    clear: both;
}

#nav > ul > li {
    width: 150px;
    height: 50px;
    float: left;
}

#nav > ul > li > a {
    display: block;
    width: 150px;
    height: 60px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    transition: 0.5s;
}


/* 서브내러가도 주메뉴에 하이라이트*/
#nav > ul > li:hover > a {
    /*background: #0076be;
    color: #fff;*/
    border-bottom: 2px solid #e55204;
    box-sizing: border-box;
}

/* 전체메뉴 배경박스 */

.w_me {
    position: absolute;
    left: 0;
    top: 120px;
    width: 1920px;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
    /*padding: 10px 0;*/
    display: none;
    z-index: 100;
}

/*마우스오버일때 보이게 하기*/
/*마우스오버일때 보이게 하기, 제이쿼리로 넣어줄때는 이거 주석처리*/

#nav > ul > li:hover .w_me {
    /*display: block;*/

}


/* depth 2 메뉴 */
.sub {
    width: 750px;
    height: 300px;
    /*outline: 1px dotted green;*/
    position: absolute;
    top: 0px;
    left: 810px;
    /*background: rgba(255, 255, 255, 0.8);*/
    /*overflow: hidden;*/
    z-index: 300;
}

.sub ul {
    width: 20%;
    float: left;
}

.sub ul li {
    width: 150px;
}

.sub ul li a {
    display: block;
    width: 150px;
    height: 40px;
    letter-spacing: -0.05em;
    text-align: left;
    transition: 0.5s;
    /* outline: 1px dotted blue; */
    
}

.sub ul li a:not(last-child) {
    line-height: 40px;
    padding-top: 10px;
    box-sizing: border-box;
}

.sub ul li a:last-child {
    font-size: 14px;
    line-height: 25px;
}

.sub ul li a:hover {
    color: #e66b27;
    font-weight: 400;
}



/* 슬라이드 배너 영역 - 디스플레이 */
#slide {
    width: 100%;
    height: 560px;
    overflow: hidden;
    z-index: 1;
    /* outline: 1px dotted blue; */
    
}

#slide ul {
    position: relative;
    width: 5760px;
    height: 300px;
}

/* 실제로 움직이는것*/
#slide ul li {
    width: 1920px;
    height: 300px;
    float: left;
    position: relative;
}

#slide ul li {
    position: relative;
}

/* 메인 텍스트*/
#slide ul li p.m_t {
    width: 1000px;
    height: 100px;
    font-size: 55px;
    font-weight: bold;
    text-align: center;
    line-height: 100px;
    letter-spacing: 0;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 190px;
    transform: translateX(-50%);
}

/* 서브 텍스트*/
#slide ul li p.s_t {
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    line-height: 22px;
    letter-spacing: -0.05em;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 290px;
    transform: translateX(-50%);
}

/* 바로가기 버튼 */
#slide ul li .goto_bt {
    width: 180px;
    height: 47px;
    line-height: 47px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    position: absolute;
    text-align: center;
    left: 50%;
    top: 360px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 300;
}

#slide ul li .goto_bt:hover {
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
}

.active {
    z-index: 1;
}


/* 본문 영역*/
.container {
    width: 1000px;
    height: 1346px;
    margin: 0 auto;
    /*outline: 1px dotted red;*/
}

/* conA : 뉴스룸*/
.conA {
    padding: 130px 0 55px;
    width: 1000px;
    height: 513px;
    border-bottom: 2px solid #e1e1e1;
    box-sizing: border-box;
}

.title {
    font-size: 25px;
    background: url(../images/right-arrow.png) no-repeat;
    background-position: 75px center;
    letter-spacing: -0.05em;
    margin-bottom: 37px;
}

.conA_w {
    width: 1000px;
    height: 269px;
    display: flex;
    flex-wrap: wrap;

}

.conA_img {
    /*float:left;
    width:50%;*/
    flex: 1;
    height: 269px;
    /*background: #000;*/
}

.conA_img > a {
    display: block;
    overflow: hidden;
    width: 420px;
    height: 269px;
    border: 2px solid #e1e1e1;
    box-sizing: border-box;
    margin: 0 40px;
    position: relative;
}

.conA_img > a > img#news {
    display: block;
    /*float:left;
    width:50%;*/
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: -30px;
}

.conA_img > a:hover > img {
    transform: scale(1.05);
}

/* 텍스트박스 내용변경*/
.conA_t {
    /*float:left;
    width:50%;*/
    flex: 1;
    height: 269px;
    /*background: #ccc;*/
    width: 500px;
    padding: 0 55px;
    box-sizing: border-box;
    position: relative;
}

.conA_t a.text {
    display: block;
    width: 400px;
    height: 265px;
    position: absolute;
    top: 0;
    left: 55px;

}

.conA_t a.text h2 {
    font-size: 30px;
    text-align: center;
    letter-spacing: -0.05em;
    margin-bottom: 10px;
    color: #000;
    line-height: 1em;
}

.conA_t a.text p {
    font-size: 15px;
    text-align: left;
    letter-spacing: -0.1em;
    line-height: 1.8em;
    color: #777;
}


.conA_t > p.bt_w > span {
    position: absolute;
    bottom: 4px;
    left: 85px;
    color: #999;
    font-size:15px;
}

.conA_t > p.bt_w > span > em {
    color: #999;
    font-style: normal;
}

#lbt {
    position: absolute;
    bottom: 0;
    left: 55px;
    padding: 2px 5px;
    /*border: 1px solid #e1e1e1;
    border-radius: 3px;*/
}

#rbt {
    position: absolute;
    bottom: 0;
    left: 125px;
    padding: 2px 5px;
    /*border: 1px solid #e1e1e1;
    border-radius: 3px;*/
}


/* conB : 갤러리*/

.conB {
    padding: 50px 0 42px;
    width: 1000px;
    height: 470px;
    border-bottom: 2px solid #e1e1e1;
    box-sizing: border-box;
}

.gtitle {
    font-size: 25px;
    background: url(../images/right-arrow.png) no-repeat;
    background-position: 75px center;
    letter-spacing: -0.05em;
    margin-bottom: 67px;
    /* outline: 1px dotted blue; */
    
}

.conB ul {}

/* 슬라이드 배너 영역 - 디스플레이 */
#g_wrap {
    width: 1000px;
    height: 273px;
    overflow: hidden;
    z-index: 1;
    /* outline: 1px dotted blue; */
    
}

/* 실제로 움직이는것*/
#g_wrap > ul {
    position: relative;
    width: 4000px;
    height: 273px;
}


#g_wrap > ul > li {
    width: 1000px;
    height: 273px;
    float: left;
    padding-right: 80px;
}

.g_sub {
    width: 4000px;
    height: 273px;
}

.g_sub li {
    width: 280px;
    height: 273px;
    float: left;
    padding-right: 80px;
    /* outline: 1px dotted blue; */
}

.g_sub li:last-child {
    padding: 0;
}

.g_sub li a {
    display: block;
    width: 280px;
    height: 157.5px;
    overflow: hidden;
}

.g_sub li a img {
    transition: 0.4s;
}

.g_sub li a:hover img {
    transform: scale(1.1);
}

.g_sub li p {
    margin-top: 20px;
    letter-spacing: -0.05em;
    text-align: center;
}


/* conC : 기업윤리 + 신용등급*/
.conC {
    padding: 50px 0 120px;
    width: 1000px;
    height: 363px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.ctitle {
    font-size: 25px;
    background: url(../images/right-arrow.png) no-repeat;
    background-position: 100px center;
    letter-spacing: -0.05em;
    margin-bottom: 30px;
    /* outline: 1px dotted blue; */
}


/* conC_a : 기업윤리*/
.conC_a {
    flex: 1;
}

.conC_a #coper {
    display: block;
    width: 500px;
    height: 140px;
    border: 1px solid #e1e1e1;
    padding: 25px;
    box-sizing: border-box;
    line-height: 20px;
    color: #777;
    letter-spacing: -0.05em;
    transition: 0.5s;
}

.conC_a #coper:hover {
    color: #1F87E6;
}

#coper h4 {
    font-size: 18px;
    color: #000;
    padding-bottom: 5px;
}

/* conD_b: 신용등급*/
.conC_b {
    flex: 1;
}

.conC_b #credit {
    display: block;
    width: 500px;
    height: 140px;
    border: 1px solid #e1e1e1;
    padding: 25px;
    box-sizing: border-box;
    line-height: 20px;
    color: #777;
    letter-spacing: -0.05em;
    transition: 0.5s;
}

.conC_b #credit img {
    display: block;
    border-right: 2px solid #BEBEBE;
    box-sizing: border-box;
    float: left;
}

.conC_b #credit .c_t {
    color: #999;
    width: 226px;
    height: 80px;
    float: left;
    font-size: 12px;
    padding-left: 36px;
    box-sizing: border-box;
}

.c_t p:nth-child(1) {
    margin-bottom: 20px;
    width: 190px;
}

.c_t p {
    float: left;
    width: 50%;
}

.c_t p span {
    font-size: 16px;
    color: #777;
}


/* 푸터 영역 */
#footer {
    width: 100%;
    height: 190px;
    background: #fafafa;
    color: #999;
    padding-top: 30px;
    box-sizing: border-box;
}


.footD ul {
    width: 100%;
    justify-content: center;
    display: flex;
}

.footD a {
    display: block;
    width: 2em;
    /* = 24px */
    margin-right: 15px;
    line-height: 2em;
    text-align: center;
    font-size: 16px;
    transition: 0.3s;
}

.footD a:hover {
    color: #e55204;
}

.footD ul li:nth-child(4) {
    margin-right: 15px;

}

.sel {
    border: 1px solid #ccc;
    padding: 4px 10px 10px 11px;
    color: #777;
}

#address {
    margin-left: 300px;
    width: 400px;
    margin-top: 20px;
    display: flex;
}

#address p {
    flex: 1 1 auto;
    justify-content: flex-end;
    font-size: 11px;
}

#copy {
    margin-top: 10px;
    width: 1000px;
    height: 20px;
    text-align: center;
    font-size: 11px;
}


#f_logo {
    width: 1000px;
    text-align: center;
}

#f_logo a img {
    width: 105px;

}
