body,
ul,
li,
h1 {
    margin: 0;
    padding: 0;
    list-style: none;
}


.intro{
    width: 100%;
    text-align: center;
    margin: auto;
}
.news{
    width: 100%;
    text-align: center;
    margin: auto;
}
.inner{
    width: 100%;
    text-align: center;
    margin: auto;
}
a {
    color: inherit;
    text-decoration: none;
}

label[for] {
    cursor: pointer;
    user-select: none;
}

/* 라이브러리 */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.absolute-left {
    position: absolute;
    left: 0;
}

.absolute-right {
    position: absolute;
    right: 0;
}

.absolute-bottom {
    position: absolute;
    bottom: 0;
}

.absolute-top {
    position: absolute;
    top: 0;
}

.absolute-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.absolute-middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.absolute-middle.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.relative {
    position: relative;
}

.cell {
    float: left;
    box-sizing: border-box;
}

.cell-right {
    float: right;
    box-sizing: border-box;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

.clear-both {
    clear: both;
}

.img-box > img {
    width: 100%;
    display: block;
}

.con {
    margin-left: auto;
    margin-right: auto;
}

.margin-0-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

.line-height-0 {
    line-height: 0;
}

.line-height-0 > * {
    line-height: normal;
}

.width-30px {
    width: 30px;
}

.width-35px {
    width: 35px;
}

.width-40px {
    width: 35px;
}

.width-45px {
    width: 35px;
}

.width-50px {
    width: 50px;
}

.width-80px {
    width: 80px;
}

.width-100px {
    width: 100px;
}

.width-100p {
    width: 100%;
}

.width-60p {
    width: 60%;
}

.width-55p {
    width: 55%;
}

.width-50p {
    width: 50%;
}

.width-45p {
    width: 45%;
}

.width-40p {
    width: 40%;
}

.width-30p {
    width: 30%;
}

.width-35p {
    width: 35%;
}

.width-100p-except-30px {
    width: calc(100% - 30px);
}

.width-100p-except-35px {
    width: calc(100% - 35px);
}

.width-100p-except-40px {
    width: calc(100% - 40px);
}

.width-100p-except-50px {
    width: calc(100% - 50px);
}

.width-100p-except-80px {
    width: calc(100% - 80px);
}

.width-100p-except-100px {
    width: calc(100% - 100px);
}

.height-100p {
    height: 100%;
}

.height-50p {
    height: 50%;
}

.border-box {
    box-sizing: border-box;
}

.font-size-dot-8rem {
    font-size: 0.8rem;
}

.table-row {
    display: table;
}

.table-row.row::after {
    display: inline;
    clear: non;
}

.table-row > .cell {
    float: none;
    display: table-cell;
}

.border-red {
    border: 10px solid red;
}

.border-green {
    border: 10px solid green;
}

.border-blue {
    border: 10px solid blue;
}

.border-gold {
    border: 10px solid gold;
}

.border-pink {
    border: 10px solid pink;
}

/* 라이브러리 - flex */
* > .flex {
    display: flex;
}

* > .flex-grow-1 {
    flex-grow: 1;
}

* > .flex-jc-c {
    justify-content: center;
}

* > .flex-jc-s {
    justify-content: flex-start;
}

* > .flex-jc-e {
    justify-content: flex-end;
}

* > .flex-jc-sb {
    justify-content: space-between;
}

* > .flex-ai-c {
    align-items: center;
}

* > .flex-ai-s {
    align-items: flex-start;
}

* > .flex-ai-e {
    align-items: flex-end;
}

* > .flex-as-s {
    align-self: stretch;
}

* > .flex-as-c {
    align-self: center;
}

* > .flex-as-s {
    align-self: flex-start;
}

* > .flex-as-e {
    align-self: flex-end;
}

* > .flex-column-nowrap {
    flex-flow: column nowrap;
}

* > .flex-column-wrap {
    flex-flow: column wrap;
}

* > .flex-row-wrap {
    flex-flow: row wrap;
}

.flex-ch-basis-0 > * {
    flex-basis: 0;
}

* > .flex-1-0-0 {
    flex: 1 0 0;
}

/* 커스텀 */

/* 고정형 .con 시작 */
.con-min-width {
    min-width: 1370px;
}

.con {
    width: 1370px;
}

.news > .inner > .pic > .box-img > img {
    width: 70%;
}
.box-img {
    position: relative;
    overflow: hidden;
    margin: 10px;
    width: 430px;
    height: 240px;
    text-align: center;
}
.box-img * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.box-img img {
    max-width: 100%;
    position: relative;
    opacity: 1;
}

.box-img:hover img,
.box-img.hover img {
    opacity: 0.8;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.news-box {
    padding:20px;
    text-align: center;
}
.news-box > .text-box {
    z-index: 272;
    min-height: 30px;
    background-color: transparent;
    letter-spacing: -1px;
    color: #333333;
    font-size: 22px;
    line-height: 32px;
    font-family: '__NanumGothic_5';
    font-weight: 600;
    margin-top: 30px;
    position: relative;
    /* width: 93.34%; */
    width: auto;
    margin-left: 3.34%;
}











/* 슬라이더 공통 */
.slider {
    position:relative;
}


.slider > .pages {
    text-align:center;
    position:absolute;
    bottom:5%;
    left:0;
    width:100%;
}

.slider > .pages > div {
    width:20px;
    height:20px;
    background-color:rgba(255,255,255,0.5);
    display:inline-block;
    cursor:pointer;
    transition:background-color 0.2s;
    border-radius:5px;
}

.slider > .pages > div:hover, .slider > .pages > div.active {
    background-color:rgba(255,255,255,1);
}

.slider > .slides > div {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 0.3s;
}

.slider > .slides > div.active {
    opacity:1;
}

.slider > .side-btns > div {
    position:absolute;
    top:0;
    left:0;
    width:100px;
    height:100%;
    background-color: black;
    opacity: 0.3;
    cursor:pointer;
}

.slider > .side-btns > div:last-child {
    left:auto;
    right:0;
}

/* 슬라이더 1 */
.slider-1 {
    margin:0 auto;
    width:50%;
    height:500px;
}

.slider-1 img{
    width: 100%;
}



@media ( max-width: 1540px ) {
    .slider-1 {
        width:60%;
    }
}
@media ( max-width: 1400px ) {
    .slider-1 {
        width:70%;
    }
}
@media ( max-width: 1050px ) {
    .slider-1 {
        width:75%;
    }
}
@media ( max-width: 940px ) {
    .slider-1 {
        width:83%;
    }
}
@media ( max-width: 800px ) {
    .slider-1 {
        width:90%;
    }
}@media ( max-width: 680px ) {
    .slider-1 {
        width:100%;
    }
}