/* ----------------------------------------------------------------
	common style
---------------------------------------------------------------- */
* {
    font-family: "Roboto", "Noto Sans KR", "맑은 고딕", helvetica, "Apple SD Gothic Neo", sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

html {
    font-size: 62.5%;
    /* 1rem = 10px */
}
@media only screen and (max-width: 1024px) {
    html {
        font-size: 55%;
    }
}
@media only screen and (max-width: 640px) {
    html {
        font-size: 52%;
    }
}

body {
    width: 100%;
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.42857143em;
    color: #000;
    letter-spacing: -0.07rem;
    overflow-x: hidden;
}
@media only screen and (max-width: 640px) {
    body {
        font-size: 1.3rem;
    }
}

input, select, textarea {
    border: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

::selection {
    background: #e4ecf4;
}

.inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.inner-sm {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
    *[class*="inner"] {
        padding: 0 20px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    text-indent: -9999px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.break-lg {
    display: block;
}
@media only screen and (max-width: 768px) {
    .break-lg {
        display: inline;
    }
}

.break-sm {
    display: inline
}
@media only screen and (max-width: 768px) {
    .break-sm {
        display: block;
    }
}


.visible-lg {
    display: block;
}
@media only screen and (max-width: 1024px) {
    .visible-lg {
        display: none;
    }
}

.visible-md {
    display: none;
}
@media only screen and (max-width: 1024px) {
    .visible-md {
        display: block;
    }
}

/* align */
.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/* color */
.text-white {
    color: #fff !important;
}

.text-gray {
    color: #b4b4b6 !important;
}

/* button */
.btn {
    display: inline-block;
    min-width: 11.538em;
    padding: 0.962em 0.5em 0.98em;
    font-size: 2.6rem;
    text-align: center;
    line-height: 2.6rem;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
}
@media only screen and (max-width: 640px) {
    .btn {
        font-size: 1.8rem;
    }
}

.btn:hover {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.btn-orange {
    border: 1px solid #ff510b;
    background: #ff510b;
    color: #fff;
}

.btn-orange:focus,
.btn-orange:hover {
    border-color: #ff5d1c;
    background: #ff5d1c;
}

.btn-round {
    -webkit-border-radius: 50em;
    -moz-border-radius: 50em;
    border-radius: 50em;
}

.btn-block {
    width: 100%;
}

.btn-group {
    padding: 5.9em 0 2em;
}
@media only screen and (max-width: 640px) {
    .btn-group {
        padding-top: 4em;
    }
}

/* icon */
.ico {
    display: inline-block;
    vertical-align: middle;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../images/icon.png") no-repeat;
    -webkit-background-size: 25em;
    -moz-background-size: 25em;
    background-size: 25em;
}

.ico-damage {
    background-position: -6.25em 0;
}

.ico-parent {
    background-position: -12.5em 0;
}

.ico-baby {
    background-position: -18.75em 0;
}

.ico-phone {
    width: 1em;
    height: 1em;
    background-position: -3.125em -6.25em;
}

.ico-kakao {
    width: 2em;
    height: 1.813em;
    background-position: -6.25em -6.25em;
}

/* clearfix */
.inner:after,
.row:after {
    content: '';
    display: block;
    clear: both;
}

/* ----------------------------------------------------------------
	col
---------------------------------------------------------------- */
.row {
    margin: 0 -1.25em;
}

*[class*="col-"] {
    float: left;
    position: relative;
    padding: 1.25em 1.25em 2.5em;
}
@media only screen and (max-width: 640px) {
    *[class*="col-"] {
        padding-bottom: 1.8em;
    }
}

.col-lg-12 {
    width: 100%;
}

.col-lg-11 {
    width: 91.66666666666666%;
}

.col-lg-10 {
    width: 83.33333333333334%;
}

.col-lg-9 {
    width: 75%;
}

.col-lg-8 {
    width: 66.66666666666666%;
}

.col-lg-7 {
    width: 58.333333333333336%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-5 {
    width: 41.66666666666667%;
}

.col-lg-4 {
    width: 33.33333333333333%;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-2 {
    width: 16.666666666666664%;
}

.col-lg-1 {
    width: 8.333333333333332%;
}

@media only screen and (max-width: 1024px) {
    .col-md-12 {
        width: 100%;
    }

    .col-md-6 {
        width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666666666666%;
    }

    .col-sm-10 {
        width: 83.33333333333334%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666666666666%;
    }

    .col-sm-7 {
        width: 58.333333333333336%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666666666667%;
    }

    .col-sm-4 {
        width: 33.33333333333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.666666666666664%;
    }

    .col-sm-1 {
        width: 8.333333333333332%;
    }
}

/* ----------------------------------------------------------------
	form style
---------------------------------------------------------------- */
.form-control {
    border: 1px solid #e1e1e1;
    padding: 0.8em 1em 0.9em;
    font-size: 1.6rem;
    width: 100%;
    height: 54px;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
@media only screen and (max-width: 640px) {
    .form-control {
        height: 44px;
        font-size: 1.4rem;
    }
}

.form-control:focus,
.form-control:active {
    border: 1px solid #000;
}

.form-wrap {
    padding: 1.4em 0;
}

.form-group {
    position: relative;
    margin: 1.6em 0;
}

.form-group > .form-tit {
    display: block;
    margin-bottom: 1em;
    font-weight: 500;
}

.form-inline-wrap {
    margin: -1.5em 0;
    font-size: 1.5rem;
}
@media only screen and (max-width: 640px) {
    .form-inline-wrap {
        font-size: 1.4rem;
    }
}

.form-inline {
    margin: 1.5em 0;
}
@media only screen and (max-width: 640px) {
    .form-inline .form-tit {
        margin-bottom: 0.5em;
    }
}

.form-group .row {
    margin: 0 -0.563em;
}

.form-group .row *[class*="col-"] {
    padding: 0 0.563em;
}

.form-table {
    display: table;
    width: 100%;
}

.form-cell {
    display: table-cell;
    position: relative;
    vertical-align: middle;
}

.form-table .letter {
    width: 1%;
    padding: 0.5em;
}

.form-table .input-group-addon {
    width: 1%;
    white-space: nowrap;
}

.form-block {
    margin: 0.8em 0;
}

/* ----------------------------------------------------------------
    header
---------------------------------------------------------------- */
header {
    position: absolute;
    width: 100%;
    padding: 3.125em 5em;
    z-index: 1000;
}

header h1 {
    float: right;
}
@media only screen and (max-width: 768px) {
    header {
        padding: 20px;
    }

    header h1 {
        float: left;
    }
}

.logo {
    display: block;
    width: 14.875em;
    height: 3.188em;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../images/logo.png") no-repeat;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    background-size: 100%;
}

/* ----------------------------------------------------------------
    footer
---------------------------------------------------------------- */
footer {
    padding: 3em 0 2.5em;
    background: #252526;
}

.link-wrap a {
    display: inline-block;
    font-weight: 300;
    color: #c7cdd0;
}

.link-wrap .phone {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0;
}
@media only screen and (max-width: 640px) {
    .link-wrap .phone {
        font-size: 1.5rem;
    }
}

.link-wrap a .ico-phone {
    margin-right: 0.3em;
}

.link-wrap a + a:before {
    content: "";
    display: inline-block;
    width: 0.3rem;
    height: 0.3rem;
    margin: 0 0.5em 0 0.4em;
    background: #c7cdd0;
    vertical-align: 0.45rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.link-wrap a:hover {
    opacity: 0.8;
}

footer .info {
    margin: 1.563em 0;
}

footer .info p {
    font-size: 1.4rem;
    color: #666;
    line-height: 3.5rem;
}

footer .info p span:not(:last-of-type) {
    margin-right: 0.8em;
}

/* go kakao */
.go-kakao {
    position: fixed;
    right: 4.444em;
    bottom: 4em;
    padding: 1em 1.5em;
    background: #feda32;
    font-size: 1.8rem;
    -webkit-border-radius: 50em;
    -moz-border-radius: 50em;
    border-radius: 50em;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.15s linear;
    -moz-transition: 0.15s linear;
    -ms-transition: 0.15s linear;
    -o-transition: 0.15s linear;
    transition: 0.15s linear;
}
@media only screen and (max-width: 1024px) {
    .go-kakao {
        right: 20px;
        bottom: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .go-kakao {
        width: 3.462em;
        height: 3.462em;
        padding: 0;
        line-height: 3.5em;
        text-align: center;
    }
}

.go-kakao .txt {
    display: inline-block;
    margin-right: 0.556em
}
@media only screen and (max-width: 768px) {
    .go-kakao .txt {
        display: none;
    }
}

.go-kakao .ico {
    vertical-align: -0.9rem;
}

.go-kakao:hover {
    bottom: 4.3em;
    background: #fed517;
}

/* ----------------------------------------------------------------
	title
---------------------------------------------------------------- */
.heading-main h2 {
    font-size: 6.4rem;
    font-weight: 500;
    line-height: 9rem;
}

.heading-main p {
    margin-bottom: 1.4em;
    font-size: 2.6rem;
    line-height: 3.5rem;
}

.heading-sub {
    padding: 1.5em 0 4em;
}

.heading-sub h2 {
    font-size: 4.6rem;
    line-height: 5rem;
}

.heading-sub p {
    margin-top: 1.13em;
    font-size: 2.3rem;
    font-weight: 300;
    
}

@media only screen and (max-width: 640px) {
    .heading-main h2 {
        font-size: 3.3rem;
        line-height: 4.4rem;
    }

    .heading-main p {
        font-size: 1.7rem;
        line-height: 3.5rem;
    }

    .heading-sub {
        padding-bottom: 2.5em;
    }

    .heading-sub h2 {
        font-size: 3.2rem;
        line-height: 4.5rem;
    }

    .heading-sub p {
        font-size: 1.7rem;
        line-height: 2.8rem;

    }
}

/* ----------------------------------------------------------------
	main visual
---------------------------------------------------------------- */
.main-visual {
    height: 100vh;
    background: url("../images/visual_bg.png") no-repeat left 30%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
@media only screen and (max-width: 768px) {
    .main-visual {
        height: 75vh;
    }
}

.main-visual .inner {
    height: inherit;
}

.main-visual .heading-main {
    position: absolute;
    top: 52%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
    .main-visual .heading-main {
        top: 58%;
    }
}

/* ----------------------------------------------------------------
	container
---------------------------------------------------------------- */
section[class*="section"] {
    padding: 5.6em 0;
}
@media only screen and (max-width: 640px) {
    section[class*="section"] {
        padding: 3em 0;
    }
}

/* section1 */
.section1 {
    padding-bottom: 0 !important;
}

.section1 .img-box {
    height: 24.375em;
    padding: 2.688em 0 0 2.5em;
    background-repeat: no-repeat;
    background-position: left bottom;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    -webkit-border-radius: 0.938em;
    -moz-border-radius: 0.938em;
    border-radius: 0.938em;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
@media only screen and (max-width: 640px) {
    .section1 .img-box {
        height: 27em;
        padding-top: 3.5em;
    }
}

.section1 .img-box b {
    font-size: 2.1rem;
    color: #242b34;
}

.section1 .img-box p {
    margin-top: 1em;
    font-size: 1.7rem;
    color: #505a65;
    line-height: 2.6rem;
}

.section1 li:nth-child(1) .img-box {
    background-color: #dce2ee;
    background-image: url("../images/sec1_img1.png");
}

.section1 li:nth-child(2) .img-box {
    background-color: #e2e1e5;
    background-image: url("../images/sec1_img2.png");
}

.section1 li:nth-child(3) .img-box {
    background-color: #1c1b24;
    background-image: url("../images/sec1_img3.png");
}

.section1 *[role="link"] {
    cursor: pointer;
}

.section1 *[role="link"]:hover {
    background-color: #dddbdf !important;
}

/* section2 */
.section2 .box {
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .section2 .box img {
        max-width: 55%;
    }
}

.section2 strong {
    display: block;
    margin: 1.176em 0 0.5em;
    font-size: 3.4rem;
    line-height: 5rem;
}

@media only screen and (max-width: 640px) {
    .section2 strong {
        font-size: 2.3rem;
        line-height: 3.2rem;
    }
}

.section2 .highlight {
    position: relative;
}

.section2 .highlight:before {
    content: "";
    position: absolute;
    left: -0.08em;
    right: -0.08em;
    bottom: 0.15em;
    height: 0.5em;
    background: #ffb526;
    z-index: -1;
}

/* section3 */
.section3 {
    background: #f0f2f4;
    color: #4c5764;
    text-align: center;
}

.section3 p {
    font-size: 2rem;
    color: #4c5764;
    line-height: 5rem;
}

.section3 strong {
    display: block;
    margin-top: 1.2em;
    font-size: 4rem;
}

@media only screen and (max-width: 640px) {
    .section3 p {
        font-size: 1.6rem;
        line-height: 3.8rem;
        letter-spacing: -0.1rem;
    }

    .section3 strong {
        margin-top: 0;
        font-size: 1.6rem;
    }
}

/* section4 */
.section4 li {
    text-align: center;
}

.section4 .ico-img {
    display: block;
    width: 12em;
    height: 12em;
    margin: 0 auto;
    background: #f9fafc;
    line-height: 12em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.section4 .ico-img .ico {
    width: 5em;
    height: 4.5em;
}

.section4 .box strong {
    display: block;
    margin-top: 1.364em;
    font-size: 2.2rem;
    font-weight: 500;
}
@media only screen and (max-width: 640px) {
    .section4 .box strong {
        font-size: 1.8rem;
    }
}

/* section5 */
.section5 {
    background: #f4f4f4;
}

.section5 dl {
    padding: 2.813em 0.5em 2.813em 2.5em;
    background: #fff;
}

.section5 dt {
    margin-bottom: 0.7em;
    font-size: 2rem;
    line-height: 2.8rem;
}

.section5 dd {
    font-size: 1.7rem;
    color: #777;
    line-height: 3rem;
}

/* section6 */
.section6 .step {
    color: #333;
}
@media only screen and (max-width: 768px) {
    .section6 ol li {
        margin-top: 2em;
    }

    .section6 .step {
        padding: 0 2em;
    }
}

.section6 .num {
    display: block;
    padding-bottom: 0.667em;
    border-bottom: 2px solid #eee;
    font-size: 3rem;
    font-weight: 300;
    color: #d0d0d0;
}

.section6 .step p {
    min-height: 3.75em;
    margin: 0.7em 0 2.8em;
    font-size: 1.6rem;
    line-height: 3rem;
}
@media only screen and (max-width: 640px) {
    .section6 .step p {
        min-height: auto;
        margin-bottom: 1.8em;
    }
}

.section6 .step b {
    font-size: 2rem;
    font-weight: 400;
}

@media only screen and (max-width: 640px) {
    .section6 .btn-group .btn {
        width: 100%;
    }
}

/* ----------------------------------------------------------------
	banner
---------------------------------------------------------------- */
.slider-wrap img {
    width: 100%;
    margin: 0 auto;
}

.slider-wrap .slick-arrow {
    position: absolute;
    top: 50%;
    width: 17px;
    height: 30px;
    text-indent: -9999px;
    overflow: hidden;
    z-index: 100;
    background: url("../images/icon.png") no-repeat;
    -webkit-background-size: 400px;
    -moz-background-size: 400px;
    background-size: 400px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-wrap .slick-prev {
    left: 6.25em;
    background-position: 0 -100px;
}

.slider-wrap .slick-next {
    right: 6.25em;
    background-position: -25px -100px;
}
