@charset "utf-8";

/* Font */
@import url(font.css);

/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/* Reset
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #555;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:focus {
    outline: 0 !important;
}

iframe {
    border: none;
    width: 100%;
}

a {
    color: inherit;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: initial;
}

img {
    max-width: 100%;
}

textarea {
    max-width: 100%;
    resize: none;
}

@media only screen and (min-width: 320px) {
    body {
        overflow-x: hidden;
    }
}

.hidden {
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

::selection {
    background: #3b5beb;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #3b5beb;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #3b5beb;
    color: #fff;
    text-shadow: none;
}


/* Parallax
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.parallax {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}


/* Preloader
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.animationload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

.loader {
    width: 200px;
    height: 200px;
    font-size: 24px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(/images/basic_resp/img/preloader.gif);
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}


/* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.back-to-top {
    width: 65px;
    height: 65px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    display: none;
    text-align: center;
    z-index: 10000;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 50%;
    background: #4e5aea;
    box-shadow: 0px 15px 29px rgba(0, 0, 0, .3);
}

.back-to-top i {
    color: #fff;
    font-size: 25px;
    display: block;
    line-height: 63px;
}

@media only screen and (max-width: 980px) {
    .back-to-top {
        width: 60px;
        height: 60px;
    }

    .back-to-top i {
        line-height: 58px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
    }

    .back-to-top i {
        line-height: 40px;
        font-size: 15px;
    }
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: 100%;
    overflow-x: hidden;
}


/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#header {
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 8.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

#header.on_bg {
    background: #fff;
}

#header.scroll {
    background: #fff;
}

#header.scroll #header_in #L_SITE_LOGO {
    background: #fff;
}

#header #header_in {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 1200px;
    height: 8.4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#header #header_in #L_SITE_LOGO {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#header #header_in #L_SITE_LOGO a {
    display: inline-flex;
    justify-content: center;
}

.nav-btn {
    display: none;
}

.nav-btn {
    z-index: 999;
    display: block;
    position: absolute;
    top: 2.5rem;
    bottom: 44px;
    right: 30px;
    width: 64px;
    height: 32px;
    cursor: pointer;
}

.nav-btn span {
    position: absolute;
    display: block;
    width: 64px;
    height: 4px;
    background: #fff;
    transition: .2s all linear;
}

.nav-btn span:nth-child(1) {
    top: 0;
}

.nav-btn span:nth-child(2) {
    top: 14px;
    left: inherit;
    right: 0px;
    width: 34px;
}

.nav-btn span:nth-child(3) {
    top: 28px;
}

.nav-btn.nav-close {
    position: fixed;
}

.nav-btn.nav-close span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
}

.nav-btn.nav-close span:nth-child(2) {
    margin-left: 0 !important;
    width: 0 !important;
}

.nav-btn.nav-close span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
}

#header #header_in .nav-btn span {
    background: #000;
}

.link_top_sns {
    position: absolute;
    top: 1.2rem;
    left: 30px;
    width: 221px;
    height: 57px;
    background: url('/images/kor08r-22-0456/common/logo_kakao.jpg') no-repeat center left;
}

#nav {
    display: none;
    width: 100%;
    padding: 50px 0px;
    background: rgba(19, 18, 18, 0.9);
    position: absolute;
    top: 8.4rem;
    left: 0;
}

.util-menu {
    position: absolute;
    top: 18px;
    right: 0;
    line-height: 0;
    font-size: 0;
}

.util-menu ul {
    display: inline-block;
}

.util-menu li {
    display: inline-block;
    float: left;
    height: 30px;
    border: 1px solid #e1e1e1;
    text-align: center;
    margin-left: 10px;
}

.util-menu li:first-child {
    border-color: #1886a2;
    margin-left: 0;
}

.util-menu a {
    display: inline-block;
    line-height: 28px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    padding: 0 10px;
}

.util-menu li:first-child a {
    color: #1886a2;
    font-size: 14px;
}

.navigation {
    padding: 50px 0px 50px 360px;
}

.navigation:after {
    content: "";
    display: block;
    clear: both;
}

.navigation > li {
    position: relative;
    line-height: 1;
    padding-bottom: 50px;
    text-align: left;
}

.navigation .main-menu {
    display: inline-block;
    width: 100%;
    line-height: 28px;
    letter-spacing: -0.5px;
    font-size: 34px;
    font-weight: 500;
    color: #fff;
}

.navigation .sub-menu {
    display: none;
    margin-top: 30px;
padding-left:10px;
}

.navigation .sub-menu li {
    position: relative;
    padding-left: 1rem;
}

.navigation .sub-menu li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #fff;
    vertical-align: super;
    margin-right: 8px;
}

.navigation .sub-menu a {
    display: inline-block;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-size: 20px;
    font-weight: 300;
    color: #a8a8a8;
}

.navigation .sub-menu .intro-menu {
    display: none;
}

@media only screen and (max-width: 1200px) {
    #header > div {
        padding: 0 20px;
    }

    #header #header_in {
        min-width: 100%;
    }
}

@media only screen and (max-width: 980px) {
    #header {
        height: 100px;
    }

    #header #header_in {
        height: 100px;
    }

    .nav-btn {
        width: 45px;
        height: 30px;
        top: 35px;
    }

    .nav-btn span {
        width: 45px;
    }

    .nav-btn span:nth-child(2) {
        width: 25px;
        top: 12px;
    }

    .nav-btn span:nth-child(3) {
        top: 24px;
    }

    .link_top_sns {
        width: 57px;
        top: 20px;
    }

    #nav {
        top: 100px;
        padding: 30px 0px;
    }

    .navigation {
        padding: 20px 0px 20px 100px;
    }

    .navigation > li {
        padding-bottom: 30px;
    }

    .navigation .main-menu {
        font-size: 22px;
    }

    .navigation .sub-menu {
        margin-top: 10px;
    }

    .navigation .sub-menu li:before {
        vertical-align: middle;
    }

    .navigation .sub-menu a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    #nav {
        top: 50px;
    }

    .nav-btn {
        top: 10px;
        right: 10px;
    }

    .link_top_sns {
        left: 10px;
        top: 7px;
        width: 35px;
        height: 35px;
        background-position: -3px;
        background-size: 140px;
    }

    .navigation {
        padding: 0px 0px 0px 50px;
    }

    #header,
    #header #header_in {
        height: 5rem;
text-align:left;
    }

    #header #header_in #L_SITE_LOGO a img {
        max-width: 60%;
    }


#header #header_in #L_SITE_LOGO {
    justify-content: left;
}

#header #header_in #L_SITE_LOGO a {
    justify-content: left;
margin:8px 0 0;
}


    .nav-btn span {
        right: 0 !important;
        width: 30px !important;
    }
}




/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.btn {
    text-transform: uppercase;
    border-radius: 0;
    line-height: 24px;
}

.btn:focus,
.btn:active {
    outline: none;
    color: #fff;
}

.btn-custom {
    border-radius: 3px;
    padding: 0.8em 1.8em;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-transform: uppercase;
    background-color: #509591;
    border-color: #509591;
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: #447774;
    border-color: #447774;
    color: #fff;
}

.btn-custom-outline {
    border-radius: 3px;
    padding: 0.8em 1.8em;
    color: #fff;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-transform: uppercase;
    background-color: transparent;
    border-color: #fff;
}

.btn-custom-outline:hover,
.btn-custom-outline:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, .5);
}

.btn-bar a {
    margin-right: 10px;
}

.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 3px;
    height: 38px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-color: #509591;
}

@media only screen and (max-width: 980px) {}


/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
    position: relative;
    width: 100%;
    background: #5e636e;
    color: #999;
}

#footer:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #3b5beb, #4fd0ff);
}

.footer-area {
    position: relative;
    margin: 0 auto;
    width: 1200px;
    padding: 0 0px 70px 0px;
    box-sizing: border-box;
}

.footer-area:after {
    content: "";
    display: block;
    clear: both;
}

.footer-info {
    display: block;
    margin-top: 3rem;
}

.footer-info:after {
    content: '';
    display: block;
    clear: both;
}

.footer-info li {
    float: left;
    margin-right: 10px;
    line-height: 28px;
    font-weight: 400;
    font-size: 16px;
    color: #c1c3c6;
}

.footer-info li:after {
    opacity: .15;
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #fff;
    margin-left: 10px;
}

.footer-info li:last-child:after {
    display: none;
}

.footer-info li a {
    color: #fff;
}

.footer-mid {
    width: 1200px;
    padding: 20px 0px;
    border-top: 1px solid rgba(153, 153, 153, 0.15);
    border-bottom: 1px solid rgba(153, 153, 153, 0.15);
}

.footer-mid:after {
    content: '';
    display: block;
    clear: both;
}

.footer-menu.left-menu {
    float: left;
    display: flex;
    flex-direction: row;
    justify-content: center;
    grid-gap: 1rem;
}

.footer-menu.right-menu {
    float: right;
}

.footer-menu:after {
    content: '';
    display: block;
    clear: both;
}

.footer-menu li {
    float: left;
    font-weight: 400;
}

.footer-menu li:after {
    opacity: .15;
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #fff;
    margin-left: 10px;
}

.footer-menu li:last-child:after {
    display: none;
}

.footer-menu li a {
    font-size: 16px;
    color: #fff;
}

.footer-bottom {
    padding: 0;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
}

.footer-top {
    padding: 0;
}

.footer-copy {
    color: #c1c3c6;
}

@media only screen and (max-width: 1200px) {
    .footer-area {
        width: 100%;
        padding: 51px 0px 50px 0px;
        text-align: center;
    }

    .foot-logo {
        display: block;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .footer-mid {
        width: 100%;
        margin: 0 auto;
        padding: 2rem 2rem;
    }

    .footer-menu {
        display: inline-block;
    }
}

@media only screen and (max-width:1000px) {
    .footer-info li:after {
        display: none;
    }
}

@media only screen and (max-width:980px) {
    .foot-logo > img {
        width: 70px;
    }
}

@media only screen and (max-width:768px) {

    .footer-info {
        width: 550px;
    }

    .footer-info li {
        font-size: 15px;
        text-align: left;
        width: 100%;
    }

    .footer-menu li a {
        font-size: 11px;
    }

    .footer-menu.left-menu {
        float: none;
    }

    .footer-menu.right-menu {
        float: none;
    }

    .footer-bottom {
        font-size: 15px;
    }

    .footer-mid {
        padding-top: 26px;
    }
}

@media only screen and (max-width:585px) {
    .footer-info li {
        float: none;
        display: inline-block;
        font-size: 14px;
    }

    .footer-mid {
        width: 100%;
    }

    .footer-bottom {
        font-size: 13px;
    }
}


/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.carousel-inner > .item {
    height: 860px;
}

.carousel-inner > .main-img01 {
    background: url("/images/kor08r-22-0456/main/main_visual1.jpg") no-repeat center center/cover;
}

.carousel-inner > .main-img02 {
    background: url("/images/kor08r-22-0456/main/main_visual2.jpg") no-repeat center center/cover;
}

.carousel-inner > .main-img03 {
    background: url("/images/kor08r-22-0456/main/main_visual3.jpg") no-repeat left center/cover;
}

.main-visual {
    position: relative;
}

.main-visual .carousel-caption {
    position: relative;
    display: table;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 0;
    width: 100%;
    height: 100%;
    text-shadow: none;
}

.main-visual .carousel-caption .slogan {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    text-align: center;
    line-height: 1.3;
    color: #fff;
    word-break: keep-all;
}

.carousel-inner > .main-img02  .slogan {padding:120px 0 0 340px;}

.main-visual .carousel-caption .slogan p {
    margin-bottom: 30px;
    font-family: 'Nanum Square';
    font-weight: 900;
    font-size: 4.5rem;
    white-space: pre-line;
    word-break: keep-all;
    text-shadow: 0px 1px 6px rgb(0 0 0 / 25%);
}

.main-visual .carousel-caption .slogan .main-copy {
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 900;
    font-size: 60px;
    line-height: 52px;
}

.main-visual .carousel-control {
    background: none;
    text-shadow: none;
    width: 10%;
    text-indent: -9999em;
    overflow: hidden;
}

.main-visual .carousel-control,
.main-visual .carousel-control:focus,
.main-visual .carousel-control:hover {
    opacity: 1;
}

.main-visual .carousel-control.left {
    background: url("/images/kor08r-22-0456/main/visual_btn_prev.png") no-repeat center center;
}

.main-visual .carousel-control.right {
    background: url("/images/kor08r-22-0456/main/visual_btn_next.png") no-repeat center center;
}

.main-visual .carousel-indicators {
    bottom: 100px;
    left: 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
}

.main-visual .carousel-indicators li {
    margin: 0 5px;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    vertical-align: middle;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #006072;
}

.main-visual .carousel-indicators .active {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    background: #006072;
    border: none;
}

@media only screen and (min-width: 1201px) {
    .main-visual .carousel-caption {
        width: 1200px;
    }
}

@media only screen and (max-width: 1200px) {
    .main-visual .carousel-caption .slogan {
        margin-left: 12%;
    }
}

@media screen and (max-width:980px) {

    .carousel-inner > .item {
        height: 600px;
    }

    .main-visual .carousel-caption {
        padding: 100px 0 0;
    }

.carousel-inner > .main-img02  .slogan {padding:100px 0 0 260px;}

    .main-visual .carousel-caption .slogan p {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .main-visual .carousel-caption .slogan .main-copy {
        margin-bottom: 100px;
        font-size: 48px;
    }

    .main-visual .carousel-indicators {
        bottom: 50px;
    }

    .main-visual .carousel-indicators li {
        width: 13px;
        height: 13px;
        margin: 0 5px;
    }

    .main-visual .carousel-indicators .active {
        width: 13px;
        height: 13px;
    }

    .main-visual .carousel-caption {
        padding: 100px 3rem;
    }

    .main-visual .carousel-caption .slogan p {
        font-size: 3rem;
    }
}



@media screen and (max-width:768px) {
    .carousel-inner > .item {
        height: 500px;
    }

    .main-visual .carousel-control {
        display: none;
    }

    .main-visual .carousel-control.left,
    .main-visual .carousel-control.right {
        background-size: 20px;
    }

    .main-visual .carousel-caption .slogan {
        padding: 20px;
    }

.carousel-inner > .main-img02  .slogan {padding:80px 0 0 220px;}

    .main-visual .carousel-caption .slogan p {
        white-space: normal;
        font-size: 2.5rem;
    }

    .footer-area {
        padding: 0 10px 50px 10px;
    }
}

@media screen and (max-width:620px) {
.carousel-inner > .main-img02  .slogan {padding:30px 0 0; text-align:left;}
}

@media screen and (max-width:585px) {
    .footer-info {
        width: 100%;
    }
}

@media screen and (max-width:510px) {
    .carousel-inner > .item {
        height: 360px;
    }
    .main-visual .carousel-caption .slogan p {
        font-size: 2.2rem;
    }

}

/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.container {padding: 0;width: 100%;}
#mainContainer {z-index: 555;}

.container .list-box {padding:40px;}
.container .list-box ul {display: flex;flex-direction: row; height: 52rem;width: 100%; }
.container .list-box ul li:nth-child(1) {background: url("/images/kor08r-22-0456/main/main_banner1.jpg") no-repeat center bottom/cover;}
.container .list-box ul li:nth-child(2) {background: url("/images/kor08r-22-0456/main/main_banner2.jpg") no-repeat right bottom/cover;border-left:0;}
.container .list-box ul li:nth-child(3) {background: url("/images/kor08r-22-0456/main/main_banner3.jpg") no-repeat center bottom/cover;border-left:0;}
.container .list-box ul li:nth-child(4) {background: url("/images/kor08r-22-0456/main/main_banner4.jpg") no-repeat center bottom/cover;border-left:0;}
.container .list-box ul li {display: inline-flex; width: 25%; height: 100%;flex-direction: column;align-items: center;padding-top: 5.5rem; border:1px solid #10657357; /*#1065738a;*/ /*#c1c1c1;*/}

.container .list-box ul li strong {margin-bottom: 3.2rem;color: #000;font-weight: 600;font-size: 2.2rem;}
.container .list-box ul li a {padding: 1rem 7rem;color: #006072;font-size: 1.6rem;font-weight: 400;border: 1px solid #006072;}

.container .slide-box {position: relative;display: flex;flex-direction: column;width: 100%;margin: 0 0 0 60%;height:400px;justify-content: center;}
.container .slide-box:before {content: '';position: absolute;bottom: 0;left: -60%;width: 100%;height: 11.7rem;background: url(/images/kor08r-22-0456/main/img_bg_slidebox_over.png) no-repeat center center/cover;z-index: -1;}
.container .slide-box:after {content: '';position: absolute;top: 0;left:-60%;width: 100%;height: 100%;background: url(/images/kor08r-22-0456/main/img_bg_slide_box.jpg) no-repeat left center/cover;z-index: -2;}

.container div._in div._title {display: flex;flex-direction: row;margin-bottom: 4rem;}
.container div._in div._title h3 {color: #333;font-weight: 600;font-size: 4rem;}
.container div._in div._title a {position: relative;left: 3rem;width: 4rem;height: 4rem;font-size: 0;background: #006072;}
.container div._in div._title a:before {content: '';position: absolute;top: 2rem;left: 1rem;width: 2rem;height: .1rem;background: #fff;}
.container div._in div._title a:after {content: '';position: absolute;top: 1rem;left: 2rem;width: .1rem;height: 2rem;background: #fff;}

.container .info-box {position: relative;display: flex;flex-direction: row;margin: 0 auto;padding: 3rem 0;max-width: 1200px;background: #142e62;}
.container .info-box:after {content: '';position: absolute;top: 0;left: -50%;right: 0;width: 2560px;height: 100%;z-index: -1;background: #142e62;}

.container #affilates {margin: 0 auto;max-width: 1200px;}
.container #affilates .affilates-list .owl-stage-outer {background: #fff;}
.container #affilates .affilates-list .viewport {padding: 0;height: inherit;}
.container #affilates .affilates-list .viewport .img-frame {box-shadow: none;}

.main-container h3 {position: relative;margin-bottom: 20px;line-height: 1.2;font-weight: 400;font-size: 20px;color: #000;}
.main-container h3 span {display: block;margin-top: 5px;font-size: 14px;color: #6c7079;}


@media only screen and (min-width: 1201px) {
    #mainContainer {padding: 50px 0 135px;margin: 0 auto;width: 1200px;}
}

@media only screen and (max-width: 1200px) {
    #mainContainer {padding: 50px 20px 100px;width: 100%;}
    .container .list-box ul {height:45rem;}
    .container .list-box ul li {padding-top:6rem; }

    .container .list-box ul {display: grid;grid-template-columns: repeat(2, auto);flex-direction: column;height: inherit;}
    .container .list-box ul li {width: 100%; padding-top:5rem;height:45rem;}
	.container .list-box ul li:nth-child(1), .container .list-box ul li:nth-child(2) {border-bottom:0;}
	.container .list-box ul li:nth-child(3) {border-left:1px solid #c1c1c1;}
}

@media only screen and (max-width: 980px) {

    .container .slide-box {margin: 0; padding: 0 2rem; height:250px;}
    .container .slide-box:before, .container .slide-box:after {left: 0;background-size: auto 100%;background-position: 22%;}

    .container .info-box{padding:2rem;}

    .container div._in div._title {justify-content: center;}
    .container div._in div._title h3 {width: calc(100% - 15rem); text-align:right; font-size: 3.5rem;}
}

@media only screen and (max-width: 768px) {
    #mainContainer {padding: 20px 10px 30px;width: 100%;}
    .container div._in div._title h3 {text-align:right; font-size: 3rem;}

    .container .list-box {padding:20px;}

    .container .list-box ul li {height:40rem;}

    .container .slide-box {height: 220px;}

    .container .info-box{padding:1rem;}

}

@media only screen and (max-width: 510px) {
    .container .list-box ul {grid-template-columns: repeat(1, auto);}
    .container .list-box ul li {background-size: 100% auto !important;}
	.container .list-box ul li:nth-child(3) {border-bottom:0;}
	.container .list-box ul li:nth-child(2), .container .list-box ul li:nth-child(4) {border-left:1px solid #c1c1c1;}
}