@charset "utf-8";
/* Font */

@import url(font.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
/* 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;
    font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-family: 'NotoSansKR', sans-serif;
    font-size: 12pt;
    letter-spacing: -0.03em;
    line-height: 1.475;
    font-weight: 300;
    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;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: #000;
}

img {
    max-width: 100%;
}

textarea {
    max-width: 100%;
    resize: none;
}

.hidden {
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

::selection {
    background: #333;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #333;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #333;
    color: #fff;
    text-shadow: none;
}

.ff_cont {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.fi_cont {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.ff_object {
    margin: -15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.ff_object .obj {
    padding: 15px;
}

.ff_object.middle {
    margin: -10px;
}

.ff_object.middle .obj {
    padding: 10px;
}

.ff_obj {
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.ff_obj .obj {
    padding-left: 15px;
    padding-right: 15px;
}

.f_two .obj {
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    max-width: 50%;
}

.f_three .obj {
    flex: 0 0 33.33%;
    -ms-flex: 0 0 33.33%;
    max-width: 33.33%;
}

.f_four .obj {
    flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    max-width: 25%;
}

.f_wrap {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
}

.f_center {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.f_middle {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.f_end {
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: end;
    align-items: end;
}

.f_between {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.f_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

h1 {
    font-size: 2.500em;
}

/* 40px */

h2 {
    font-size: 2.188em;
}

/* 35px */

h3 {
    font-size: 1.875em;
}

/* 30px */

h4 {
    font-size: 1.500em;
}

/* 24px */

h5 {
    font-size: 1.250em;
}

/* 20px */

h6 {
    font-size: 1.125em;
}

/* 18px */

p {
    font-size: 1em;
}

/* 16px */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: normal;
    line-height: 1.5;
    word-break: keep-all;
}

.en {
    font-family: 'Montserrat', sans-serif;
}

.strong {
    font-weight: 600;
}
.mob_ {
	display:none;
}

@media screen and (max-width:1024px) {
    body,
    input,
    select,
    textarea {
        font-size: 11pt;
    }
}

@media screen and (max-width:768px) {
    body,
    input,
    select,
    textarea {
        font-size: 10.5pt;
    }
	.mob_ {
		display:block;
	}
	.pc_ {
		display:none;
	}
}

@media screen and (max-width:480px) {
    html,
    body {
        min-width: 320px;
    }
    body,
    input,
    select,
    textarea {
        font-size: 10pt;
    }
}

@media only screen and (min-width:320px) {
    body {
        overflow-x: hidden;
    }
}

/* 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: 80px;
    height: 80px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    display: none;
    text-align: center;
    z-index: 10000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #161616 url('/images/kor06r-22-0459/common/go_top.png') no-repeat center center;
}

@media only screen and (max-width: 1024px) {
    .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%;
}

.cont_inner {
    width: calc(100% - 5%);
    margin: 0 auto;
}

.inner {
    width: 1280px !important;
}

.cont_inner:after,
.inner:after {
    content: '';
    display: block;
    clear: both;
}

@media screen and (max-width:1280px) {
    .cont_inner,
    .inner {
        width: 100% !important;
        padding: 0 30px !important;
    }
}

@media screen and (max-width:1024px) {
    .cont_inner,
    .inner {
        padding: 0 20px !important;
    }
}

@media screen and (max-width:767px) {
    .cont_inner,
    .inner {
        padding: 0 15px !important;
    }
}

/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#header {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    background-color: transparent;
	backdrop-filter: blur(34px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#header #header_in {
    position: relative;
    height: 100px;
}

#header_in .top_logo {
    z-index: 300;
}

#header_in .top_logo .common {
    display: block;
}

#header_in .top_logo .active {
    display: none;
    width: 235px;
    height: 60px;
    background: url('/images/yf_logo.png') no-repeat center center;
}

.nav-btn {
    display: none;
}

.nav-bg {
    z-index: 10;
    display: none;
    position: absolute;
    top: 100px;
    left: -500%;
    width: 1000%;
    height: 220px;
    background: rgba(255, 255, 255, 0.98);
}

.util-menu {
    z-index: 300;
}

.util-menu ul {
    display: block;
}

.util-menu li {
    display: table;
    float: left;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-align: center;
    margin-left: 10px;
}

.util-menu li:first-child {
    border-color: rgba(255, 255, 255, 0.33);
    margin-left: 0;
}

.util-menu li a {
    display: table-cell;
    vertical-align: middle;
    font-weight: 400;
    color: #fff;
    padding: 0 20px;
}

#header #nav {
    margin-right: auto;
    margin-left: auto;
}

.navigation {
    z-index: 200;
}

.navigation:after {
    content: "";
    display: block;
    clear: both;
}

.navigation>li {
    position: relative;
    text-align: center;
    height: 100px;
    display: table;
}

.navigation>li>a.main-menu {
    display: table-cell;
    vertical-align: middle;
    padding: 0 100px 0 0;
    width: 100%;
    font-weight: 500;
    font-size: 1.250em;
    color: #fff;
}

.navigation .sub-menu {
    display: none;
    z-index: 998;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 150px;
    padding-top: 20px;
}

.navigation .sub-menu a {
    padding: 5px 0;
    display: block;
    text-align: left;
    font-weight: 400;
    color: #7c7c7c;
    font-size: 1em;
}

.navigation .sub-menu .intro-menu {
    display: none;
}

#header.on {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 500;
}

#header.on .navigation>li>a.main-menu {
    color: #333;
}

#header.on .navigation>li>a.main-menu:hover,
.navigation .sub-menu a:hover {
    color: #6db9ec;
}

#header.on .top_logo .common {
    display: none;
}

#header.on .top_logo .active {
    display: block;
}

#header.on .util-menu li {
    border: 1px solid rgba(0, 0, 0, 0.33);
}

#header.on .util-menu li a {
    color: #555;
}

@media only screen and (max-width:1280px) {}

@media only screen and (max-width:1024px) {
    #header_in .top_logo {
        margin-right: auto;
    }
    .nav-btn {
        width: 40px;
        height: 30px;
        margin-left: 20px;
        z-index: 999;
        display: block;
        position: relative;
        cursor: pointer;
    }
    .nav-btn span {
        position: absolute;
        left: 50%;
        display: block;
        margin-left: -20px;
        width: 40px;
        height: 3px;
        background: #fff;
        transition: .2s all linear;
    }
    .nav-btn span:nth-child(1) {
        top: 0;
    }
    .nav-btn span:nth-child(2) {
        top: 14px;
    }
    .nav-btn span:nth-child(3) {
        top: 27px;
    }
    .nav-btn.nav-close {}
    .nav-btn.nav-close span {
        background: #000;
    }
    .nav-btn.nav-close span:nth-child(1) {
        top: 50%;
        transform: rotate(45deg);
    }
    .nav-btn.nav-close span:nth-child(2) {
        margin-left: 0;
        width: 0;
    }
    .nav-btn.nav-close span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
    }
    .util-menu li {
        height: 40px;
    }
    .util-menu li a {
        padding: 0 15px;
    }
    .nav-bg {
        z-index: 777;
        display: none;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    #nav {
        z-index: 888;
        position: fixed;
        top: 100px;
        right: -100%;
        display: block;
        width: 100%;
        height: 100vh;
        background: #fff;
    }
    #nav ul.navigation {
        margin: 0 20px;
    }
    .navigation>li {
        width: 100%;
        text-align: left;
        border-top: 1px solid #e1e1e1;
        height: auto;
        display: inline-block;
    }
    .navigation>li:first-child {
        border-top: none;
    }
    #header.on .navigation>li>a.main-menu {
        font-size: 1.500em;
        padding: 20px 0;
        line-height: 1.4;
        color: #333;
        display: inline-block;
        width: 100%;
    }
    #header.on .navigation>li>a.main-menu:after {
        content: '';
        position: absolute;
        top: 20px;
        right: 7px;
        border: solid rgba(0, 0, 0, 0.48);
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 7px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }
    #header.on .navigation>li.active>a.main-menu:after {
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
    }
    .navigation>li:hover .sub-menu {
        background: inherit;
    }
    .navigation .sub-menu {
        display: none;
        padding-top: 0;
        position: relative;
        top: 0;
        height: inherit;
        background: #f7f7f7 !important;
    }
    .navigation .sub-menu li {
        border-top: 1px solid #eee;
    }
    .navigation .sub-menu a {
        font-size: 1.250em;
        color: #777;
        display: block;
        padding: 15px 30px;
        text-align: left;
    }
    #header.on .navigation>li>a.main-menu:hover,
    .navigation .sub-menu a:hover {
        color: #000;
    }
}

@media only screen and (max-width:768px) {}

/* 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: 1024px) {}

/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#footer {
    position: relative;
    padding: 20px 0 70px 0;
    background: #161616;
}

.footer_area {
	max-width:1340px;
}
#footer .foot-top {
	border-bottom:1px solid #444444;
	padding-bottom:28px;
	margin-bottom:45px;
}
#footer .foot-top .inner_ {
	max-width:1340px;
	margin:0 auto;
	position:relative;
}

#footer .foot-top .inner_ ul {
	position:absolute;
	right:0;
	bottom: -1px;
}
#footer .foot-top .inner_ ul li {
	display:inline-block;
    padding-left: 30px;
}
#footer .foot-top .inner_ ul li a {
	font-size:15px;
	font-weight:400;
	color:#fff;
	line-height:2;
}
#footer .foot-top #L_SITE_LOGO {
	display:inline-block;
}

.footer_area .footer_menu {}

.footer_area .footer_menu li {
    position: relative;
    padding: 0 15px;
}

.footer_area .footer_menu li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0px;
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
}

.footer_area .footer_menu li:first-child {
    padding-left: 0px;
}

.footer_area .footer_menu li:first-child:before {
    content: none;
}

.footer_area .footer_menu li a {
    color: #fff;
    font-size: 1em;
}

.footer_area .footer_info {
}

.footer_area .footer_info p {
    font-size: 0.938em;
    color: #8b8b8b;
}
.footer_area .footer_info p span {
    padding: 0 20px;
}
.footer_area .footer_info .footer_copy {
    margin-top: 30px;
    font-size: 0.875em;
    color: #777;
}

.footer_area .family_site {
    padding-bottom: 10px;
    border-bottom: 1px solid #bfbfbf;
}

.footer_area .family_site h6 {
    color: #dadada;
}

.footer_area .family_site span {
    width: 13px;
    height: 8px;
    display: inline-block;
    margin-left: 100px;
    background: url('/images/kor06r-22-0459/common/footer_up.png') no-repeat top right;
}

.footer_area .footer_sns {
    margin-top: 30px;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: end;
    justify-content: end;
}

.footer_area .footer_sns li {
    padding-left: 20px;
}

@media screen and (max-width:1024px) {
    .footer_area .fooer_cont .obj {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
    }
    .footer_area .footer_info {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer_area .family_site {
        position: relative;
        width: 100%;
    }
    .footer_area .family_site span {
        position: absolute;
        right: 5px;
    }
    .footer_area .footer_sns {
        margin-top: 20px;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media screen and (max-width:767px) {
    .cont_inner,
    .inner {
        padding: 0 15px !important;
    }
}

/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.main_visual {
    position: relative;
}

.main_visual .visual_slide {
    width: 100%;
    height: 100vh;
}

.main_visual .visual_slide .item {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
	height:100vh;	
}

.visual_slide .item.main-img01 {
    background-image: url("/images/main_v_1.jpg");
}

.visual_slide .item.main-img02 {
    background-image: url("/images/main_v_2.jpg");
}

.visual_slide .item.main-img03 {
    background-image: url("/images/main_v_3.jpg");
}

.visual_slide .item.main-img04 {
    background-image: url("/images/main_v_4.jpg");
}
.main_visual .vis_cont:before {
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
}
.main_visual .vis_cont {
	position: relative;
    width: 100%;
    height: 100%;
}
.main_visual .vis_cont .slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align:center;
}

.main_visual .vis_cont .slogan h3 {
	font-size:67px;
	font-weight:400;
	color:#fff;
	line-height:1.3;
	letter-spacing:-1px;
}
.main_visual .vis_cont .slogan h3 b {
	color:#dac2b8;
	font-weight:700;
	display:inline-block;
	padding-right:20px;
}
.main_visual .vis_cont .slogan hr {
	display:inline-block;
	height:3px;
	width:270px;
	background-color:#dac2b8;
	border:none;
}
.main_visual .vis_cont .slogan span {
	display:block;
	font-size:25px;
	color:#fff;
	font-weight:500;
}
.visual_slide .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -640px;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.visual_slide .slick-dots li button {
    width: 50px;
    height: 3px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background: #ddd;
    outline: none;
    border: none;
}

.visual_slide .slick-dots li.slick-active button {
    background: #000;
}

.main_visual .scroll_down {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 20px;
    margin-left: -30px;
}

.main_visual .scroll_down img {
    display: block;
    margin: 0 auto;
}

.main_visual .scroll_down span {
    font-size: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.vis_progress {
    position: absolute;
    left: 50%;
    bottom: 25%;
    width: 1280px;
    height: 20px;
    transform: translate(-50%, 0);
    text-align: left;
}

.vis_progress div {
    padding: 0 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
}

.vis_progress div h6 {}

.vis_progress div span.progressBar {
    display: block;
    width: 85px;
    margin-left: 5px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.33);
}

.vis_progress div span.progressBar .inProgress {
    display: block;
    width: 0%;
    height: 4px;
    background-color: rgba(255, 255, 255, 1);
}

@keyframes slickAni {
    from {
        transform: scale(1.3) translate(0px);
    }
    to {
        transform: scale(1.0) translate(0px);
    }
}

@-webkit-keyframes slickAni {
    from {
        transform: scale(1.3) translate(0px);
    }
    to {
        transform: scale(1.0) translate(0px);
    }
}

@media screen and (max-width:1280px) {
    .vis_progress {
        left: 20px;
        bottom: 25%;
        width: auto;
        transform: none;
    }
    .vis_progress div span.progressBar {
        width: 80px;
    }
}

@media screen and (max-width:1024px) {
    .main_visual .visual_slide,
    .main_visual .vis_cont {
        height: 100vh;
    }

    .main_visual .vis_cont {
        top: 0;
        left: auto;
        right: auto;
        bottom: auto;
        padding: unset;
    }
    .main_visual .vis_cont .slogan span {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .main_visual .vis_cont .slogan p.main-copy {
        font-size: 50px;
    }
    .main_visual .vis_cont .slogan p.main-copy strong {
        font-size: 60px;
    }
	.main_visual .vis_cont .slogan {
		width:70%;
	}
	.main_visual .vis_cont .slogan h3 {
		font-size:45px;
	}
	.main section .section-tit h4 {
		font-size:27px;
	}
}

@media screen and (max-width:768px) {
    .main_visual .visual_slide .item {
        background-position: 55% center;
    }
    .visual_slide .item.main-img02 {
        background-position: 75% center;
    }
    .main_visual .vis_cont {
        top:0;
    }
    .main_visual .vis_cont .slogan span {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .main_visual .vis_cont .slogan p.main-copy {
        font-size: 40px;
    }
    .main_visual .vis_cont .slogan p.main-copy strong {
        font-size: 50px;
    }
	.main_visual .vis_cont .slogan h3 {
		font-size:38px;
	}
	.main_visual .vis_cont .slogan {
		width:90%;
	}
	.main section .section-tit h4 {
		font-size:25px;
	}
}
@media screen and (max-width:600px) {
	.main_visual .vis_cont .slogan {
		width:80%;
	}
	.main_visual .vis_cont .slogan h3 b {
		padding-right:10px;
	}
}

@media screen and (max-width:480px) {
    .main_visual .vis_cont .slogan span {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .main_visual .vis_cont .slogan p.main-copy {
        font-size: 30px;
    }
    .main_visual .vis_cont .slogan p.main-copy strong {
        font-size: 40px;
    }
}

@media screen and (max-width:400px) {
}
/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.fp-scroll-mac.fp-viewing-4rdPage #header {
	transform: translate(0, -100%);	
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
#header,
.fp-scroll-mac.fp-viewing-firstPage #header {
	transform: translate(0, 0);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}


.container {
    width: 100%;
    position: relative;
}

.container.main {
    margin: 0;
    padding: 0;
}

#mainContainer {
    z-index: 555;
}

.max-width {
	max-width:1340px;
	margin:15vh auto;
}

.container .section {
    padding: 120px 0;
    position: relative;
}

.main section {
	height:100vh;
    padding: 0;
    position: relative;
}

.main section .main_section_inner {
    position: absolute;
	z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-top: 22vh;
    height: 100%;
}

section.yf_project {
	background-color:#232429;
}
.main section .section-tit {
	text-align:center;
}

.main section .section-tit h4 {
	font-size:32px;
	font-weight:500;
	color:#d91f16;
}
.main section .section-tit p {
	padding-top:20px;
	font-size:18px;
	font-weight:300;
	color:#fff;
	line-height:1.3;
}
.main section .section-tit hr {
	display:inline-block;
	width:61px;
	height:1px;
	background-color:#fff;
	border:none;
}
.main section .section-tit span {
	display:block;
	font-size:52px;
	color:#fff;
	line-height:1.3;
	letter-spacing:-2px;
}
.main section .section-tit span b {
	font-weight:500;
}
.main .section:after {
    content: '';
    clear: both;
    display: block;
    box-sizing: border-box;
}

.main .section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #292929;
}

section.yf_company:after {
	content:"";
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	background-color:rgba(35,36,41,0.8);
	top:0;
	left:0;
}
section.yf_company {
	position:relative;
	background-image:url('/images/IT_twi001t3276183.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
	width:100%;
	height:100vh;
}
.card-box-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.card-box-wrap ul:after {
	content:"";
	display:block;
	clear:both;
}
.card-box-wrap ul li {
	width:25%;
	float:left;
	position:relative;
}


.card-box-wrap ul li dl dt {
	font-size:25px;
	color:#fff;
	line-height:1.3;
	font-weight:500;
	text-align:right;
	position:absolute;
	bottom:70px;
	right:40px;
	z-index:5;
}
.card-box-wrap ul li dl {
	height:55vh;
}
.card-box-wrap ul li:hover span:before {
	content:"";
	background-color:rgba(0,0,0,0);
}
.card-box-wrap ul li span:before {
	content:"";
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.75);
	left:0;
	top:0;
	z-index:1;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
}
.card-box-wrap ul li span {
	display:block;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	width:100%;
	height:100%;
}
.card-box-wrap ul li:nth-child(1) span {
	background-image:url('/images/card_01.jpg');
}
.card-box-wrap ul li:nth-child(2) span {
	background-image:url('/images/card_02.jpg');
}
.card-box-wrap ul li:nth-child(3) span {
	background-image:url('/images/card_03.jpg');
}
.card-box-wrap ul li:nth-child(4) span {
	background-image:url('/images/card_04.jpg');
}
.card-box-2:after {
	content:"";
	display:block;
	clear:both;
}
.card-box-2 li {
	width:20%;
	float:left;
}
.card-box-2 li:hover a {
	border:1px solid #fff;
	background-color:rgba(255,255,255,0.05);
}
.card-box-2 li a {
	border:1px solid transparent;
	background-color:rgba(255,255,255,0);
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 110%; /*세로비율*/
}
.card-box-2 li a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
	text-align:center;
}

.card-box-2 li a span dl {
	width:100%;
    position:absolute;
    top:50%; 
    left:50%;
    transform: translate(-50%, -50%);
	color:#fff;
}
.card-box-2 li a span dl dd {
	padding-top:30px;
	font-size:22px;
	font-weight:500;
	line-height:1.3;
}
.s_pc {
    display: block !important;
}

.s_mo {
    display: none !important;
}

.arrow_button {
    position: relative;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.arrow_button span {
    font-size: 1.5em;
    color: #444;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.arrow_button em {
    margin-left: 15px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.arrow_button.vertical span {
    text-transform: uppercase;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.arrow_button.vertical span:before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #bae3ff;
}

.arrow_button.vertical span:after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 60px;
    background: #333;
}

.arrow_button.single em {
    width: 34px;
    height: 7px;
    background-image: url('/images/kor06r-22-0459/main/single_arrow.png');
}

.arrow_button.small em {
    width: 17px;
    height: 6px;
    background-image: url('/images/kor06r-22-0459/common/button_arrow.png');
}

.arrow_button.white em {
    width: 22px;
    height: 8px;
    background-image: url('/images/kor06r-22-0459/main/list_arrow_more.png');
}

.arrow_button.long em {
    width: 25px;
    height: 12px;
    background-image: url('/images/kor06r-22-0459/main/arrow_long.png');
}

.arrow_button.small {
    padding: 7px 20px;
    border: 1px solid #d2d2d2;
}

.arrow_button.small span {
    font-size: 1em;
    font-weight: 500;
}

.arrow_button.small:hover {
    border: 1px solid #777;
}

.arrow_button.small:hover span {
    color: #000;
}

/* main_story */

.section.main_story {
    width: 100%;
    background-image: url('/images/kor06r-22-0459/main/section01_bg.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
}

.main_story h1 {
    margin-bottom: 30px;
}

.main_story .left_cont .image {
    display: block;
    margin-top: 100px;
}

.main_story .ff_object>.obj:first-child {
    flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    max-width: 40%;
}

.main_story .ff_object>.obj:last-child {
    flex: 0 0 60%;
    -ms-flex: 0 0 60%;
    max-width: 60%;
}

.main_story .right_cont h6 {
    margin-top: 30px;
    color: #6a6a6a;
}

.main_story .right_cont .arrow_button {
    padding-bottom: 130px;
}

/* business areas */

.section.main_business {
    padding: 0 0 50px 0;
}

.section.main_business h1 {
    white-space: nowrap;
    padding-right: 70px;
}

.main_business .arrow_button {
    margin-top: 30px;
}

.main_business .arrow_button span {
    font-size: 1.5em;
}

/* main banner */

.main_banner {}

.main_banner .obj {
    overflow: hidden;
    min-height: 470px;
}

.main_banner .obj a {
    display: table;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    -webkit-transition: transform .3s ease-out;
    -moz-transition: transform .3s ease-out;
    -ms-transition: transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
}

.main_banner .obj a:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.main_banner .obj a:hover::before {
    background: rgba(0, 0, 0, 0.01);
}

.main_banner .obj a:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.2, M12=0, M21=0, M22=1.2, SizingMethod='auto expand')";
}

.main_banner .obj:nth-child(1) a {
    background-image: url('/images/kor06r-22-0459/main/section02_image01.jpg');
}

.main_banner .obj:nth-child(2) a {
    background-image: url('/images/kor06r-22-0459/main/section02_image02.jpg');
}

.main_banner .obj:nth-child(3) a {
    background-image: url('/images/kor06r-22-0459/main/section02_image03.jpg');
}

.main_banner .obj:nth-child(4) a {
    background-image: url('/images/kor06r-22-0459/main/section02_image04.jpg');
}

.main_banner .obj span {
    font-size: 1.750em;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    font-weight: 600;
    text-align: center;
    z-index: 10;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

/* main_experience */

.main_experience {}

.main_experience h1 {
    margin-bottom: 30px;
}

.main_experience .movie_wrap {
    text-align: center;
    position: relative;
}

.main_experience .movie_wrap:before {
    content: '';
    width: 100%;
    height: 240px;
    position: absolute;
    top: 50%;
    margin-top: -120px;
    left: 0px;
    background: #daf0ff;
    z-index: -1;
}

.main_experience .movie_wrap .movie_cont {
    width: 980px;
    height: 550px;
    margin: 40px auto 0px auto;
    z-index: 2;
}

.movie_cont .arrow_button {
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 2px solid #444;
}

/* main_portfolio */

.main_portfolio {
    position: relative;
}

.main_portfolio:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 250px;
    background: #083452;
}

.portfolio_wrap {
    padding-left: 300px;
}

.portfolio_cont {
    position: relative;
}

.portfolio_cont h1 {
    margin-bottom: 30px;
}

.portfolio_cont .slick-dots {
    position: absolute;
    top: 30px;
    left: 0px;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.portfolio_cont .slick-dots li button {
    width: 30px;
    height: 3px;
    background: #ddd;
    text-indent: -9999px;
    outline: none;
    border: none;
}

.portfolio_cont .slick-dots li.slick-active button {
    background: #000;
}

.portfolio_cont .slick-arrow {
    position: absolute;
    top: 0px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #d1d1d1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    background-color: #fff;
    text-indent: -9999px;
    outline: none;
}

.portfolio_cont .slick-arrow.slick-prev {
    left: 200px;
    background-image: url('/images/kor06r-22-0459/main/arrow_prev.png');
}

.portfolio_cont .slick-arrow.slick-next {
    left: 280px;
    background-image: url('/images/kor06r-22-0459/main/arrow_next.png');
}

.portfolio_slide {
    width: 100%;
    padding-top: 100px;
}

.portfolio_slide .cont {
    position: relative;
}

.portfolio_slide .cont:nth-child(even) {
    padding-top: 50px;
}

.portfolio_slide .cont .t_cont {
    bottom: 30px;
    left: 30px;
    color: #fff;
    position: absolute;
}

.portfolio_slide .cont .t_cont em {
    font-size: 0.938em;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
}

.portfolio_slide .cont img {
    display: block;
    border: 3px solid transparent;
}

.portfolio_slide .cont:hover img {
    border: 3px solid #ffa800;
}

/* main_news */

.section.main_news {
    background: #083452;
    color: #fff;
    padding-top: 0px !important;
}

.section.main_news h1 {
    color: #fff;
}

.section.main_news .arrow_button {
    margin-top: 50px;
}

.section.main_news .arrow_button.white span {
    font-size: 1.063em;
    color: #fff;
}

.main_news .ff_cont .obj:nth-child(1) {
    flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    max-width: 30%;
}

.main_news .ff_cont .obj:nth-child(2) {
    flex: 0 0 70%;
    -ms-flex: 0 0 70%;
    max-width: 70%;
}

.main_news .news_list {
    padding-top: 150px;
}

.news_list .cont_list {
    padding: 30px 10px 30px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.news_list .cont_list:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.news_list .cont_list span {
    color: #fff;
}

.news_list .cont_list .date {
    font-size: 1.063em;
}

.news_list .cont_list .list {
    width: 85%;
    padding: 0 20px;
    font-size: 1.375em;
}

.news_list .cont_list .list:hover {
    text-decoration: none;
    color: #6db9ec;
}

.news_list .cont_list .link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-block;
    position: absolute;
    right: 0px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    background-image: url('/images/kor06r-22-0459/main/list_arrow_next.png');
}

/* main_ask */

.section.main_ask {
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('/images/kor06r-22-0459/main/section08_bg.jpg');
}

.main_ask .cont_inner {
    color: #fff;
}

.normal_button {
    margin-top: 30px;
    padding: 10px 45px;
    text-align: center;
    border: 1px solid #fff;
    display: inline-block;
}

.normal_button span {
    font-size: 1.125em;
    color: #fff;
}

@media only screen and (max-width:1280px) {
    .container .section {
        padding: 100px 0;
    }
    .main_experience .movie_wrap {
        padding: 0 20px;
    }
    .main_experience .movie_wrap .movie_cont {
        width: 100%;
        height: 500px;
        margin: 30px auto 0px auto;
    }
    .portfolio_wrap {
        padding: 0 30px;
    }
    .main_news .ff_cont .obj:nth-child(1),
    .main_news .ff_cont .obj:nth-child(2) {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
    }
    .main_news .news_list {
        padding-top: 30px;
    }
    .news_list .cont_list {
        padding: 20px 10px 20px 0px
    }
    .section.main_news h1 br {
        display: none;
    }
}

@media only screen and (max-width:1024px) {
    .s_pc {
        display: none !important;
    }
    .s_mo {
        display: block !important;
    }
    .container .section {
        padding: 80px 0;
    }
    .ff_object .image {
        text-align: center;
    }
    .main_story .left_cont .image {
        margin-top: 0px;
    }
    .main_story .ff_object>.obj:first-child,
    .main_story .ff_object>.obj:last-child,
    .main_business .ff_cont .obj {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
    }
    .section.main_story {
        background-size: 90% auto;
    }
    .main_story .ff_object {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .main_story h1 br,
    .main_story h5 br {
        display: none;
    }
    .main_story h1,
    .main_business h1 {
        margin-bottom: 20px;
        padding: 0;
    }
    .main_story .right_cont h6,
    .main_business .arrow_button,
    .section.main_news .arrow_button {
        margin-top: 20px;
    }
    .main_banner .obj {
        min-height: 350px;
        flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        max-width: 50%;
    }
    .portfolio_wrap {
        padding: 0 20px;
    }
	.main section .section-tit h4 {
		font-size:25px;
	}
	.main section .section-tit span {
		font-size:40px;
	}
	.card-box-wrap ul li {
		width:50%;
	}
	.card-box-wrap ul li dl {
		height:25vh;
	}
	.card-box-wrap ul li dl dt {
		bottom:30px;
	}
	#footer .foot-top {
		padding: 0 20px 30px;
	}
}

@media only screen and (max-width:768px) {
    .container .section {
        padding: 70px 0;
    }
    .main_experience .movie_wrap,
    .portfolio_wrap {
        padding: 0 15px;
    }
    .portfolio_cont .slick-arrow {
        width: 60px;
        height: 60px;
    }
    .main_experience .movie_wrap .movie_cont {
        height: 450px;
        margin: 20px auto 0px auto;
    }
    .news_list .cont_list .list {
        width: 80%;
        padding: 0 15px;
        font-size: 1.250em;
    }
    .news_list .cont_list .link {
        width: 35px;
        height: 35px;
    }
	.main section .section-tit h4 {
		font-size:22px;
	}
	.main section .section-tit span {
		font-size:35px;
	}
	.card-box-wrap ul li dl dt {
		font-size:20px;
	}
	.card-box-wrap ul li dl {
		height:20vh;
	}
	.card-box-2 li a span dl dd {
		font-size:15px;
	}
	.card-box-2 li a span dl dt img {
		max-height: 50px;
	}

}
@media only screen and (max-width:600px) {
	.card-box-2 li a {
		padding-bottom:80%;
	}
	.card-box-wrap ul li dl dt {
		font-size: 16px;
		font-weight: 300;
		right: 49px;
		bottom: 15px;
	}
	.card-box-2 li a span dl dt img {
		max-height: 40px;
	}
	.card-box-2 li a span dl dd {
		font-size:13px;
		font-weight:400;
		padding-top:10px;
	}
	#footer .foot-top #L_SITE_LOGO {
		display:block;
		text-align:center;
	}
	#footer .foot-top .inner_ ul {
		position:initial;
		padding-top:20px;
	    text-align: center;
	}
	#footer .foot-top .inner_ ul li {
		padding:0 20px;
	}
	#footer .foot-top {
		margin-bottom:20px;
	}
	.footer_area .footer_info p {
		font-size:12px;
		text-align:center;
	}
	.footer_area .footer_info p span {
		padding:0;
	}
	.footer_area .footer_info p br {
		display: none;
	}
	#footer {
	    padding: 20px 0 20px 0;
	}
}

@media only screen and (max-width:480px) {
	.main section .main_section_inner {
		padding-top:16vh;
	}
    .container .section {
        padding: 50px 0;
    }
    .main_experience .movie_wrap .movie_cont {
        height: 350px;
    }
    .portfolio_cont .slick-arrow {
        width: 50px;
        height: 50px;
    }
    .main_banner .obj {
        min-height: 300px;
    }
    .news_list .cont_list .list {
        width: 75%;
        padding: 0 10px;
        font-size: 1.071em;
    }
    .news_list .cont_list .link {
        width: 30px;
        height: 30px;
    }
	.main section .section-tit h4 {
		font-size:20px;
	}
	.main section .section-tit span {
		font-size:30px;
		padding: 0 5%;
	    word-break: keep-all;
	}
	.card-box-wrap ul li {
		width:100%;
		float:none;
	}
	.card-box-wrap ul li dl {
		height:15vh;
	}
	.card-box-2 li {
		width:calc(100%/3);
	}
}

.fp-watermark {
	display:none;
}