/* ----------------------------------------------------------------
	common style
---------------------------------------------------------------- */
* {
    font-family: "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: 58%;
    }
}

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

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;
}

textarea {
    height: auto !important;
    resize: none;
}

::selection {
    background: #f1f1f1;
}

.inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.inner-md {
    max-width: 1024px;
    margin: 0 auto;
}

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

.s-container {
    padding: 5.4em 0;
}
@media only screen and (max-width: 640px) {
    .s-container {
        padding: 3.5em 0;
    }
}

.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;
}

.ellipsis {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.scr-x {
    overflow-x: auto;
}

.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-md {
    display: none;
}
@media only screen and (max-width: 768px) {
    .visible-md {
        display: block;
    }
}

/* input */
input[disabled] {
    border-color: #ddd !important;
    background: #f9f9f9;
}

input::-moz-placeholder {
    font-weight: 300;
    color: #999;
}
input::-webkit-input-placeholder {
    font-weight: 300;
    color: #999;
}
input:-ms-input-placeholder {
    font-weight: 300;
    color: #999;
}
input::placeholder {
    font-weight: 300;
    color: #999;
}

/* checkbox */
.input-chk {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.input-chk + .input-chk {
    margin-left: 10px;
}

.input-chk input + span {
    display: inline-block;
    position: relative;
    padding-left: 1.8em;
    line-height: 2rem;
}

.input-chk input[type="checkbox"],
.input-rdo input[type="radio"] {
    display: none;
}

.input-chk input[type="checkbox"] + span:before {
    content: "";
    position:absolute;
    left: 0;
    top: 0.12em;
    width: 1.25em;
    height: 1.25em;
    border: 2px solid #ddd;
    -webkit-transition: border-color .2s linear;
    -moz-transition: border-color .2s linear;
    -ms-transition: border-color .2s linear;
    -o-transition: border-color .2s linear;
    transition: border-color .2s linear;
}

.input-chk input[type="checkbox"]:checked + span:before {
    border-color: #222;
    background: url("../images/icon.png") no-repeat -18.75em -12.5em;
    -webkit-background-size: 37.5em;
    -moz-background-size: 37.5em;
    background-size: 37.5em;
}

/* table */
.table-basic {
    width: 100%;
    min-width: 768px;
    table-layout: fixed;
}
.table-basic th {
    color: #666;
    border-top: 3px solid #222;
    border-bottom: 1px solid #222;
}
.table-basic th,
.table-basic td {
    padding: 1.3em 0;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.9rem;
    text-align: center;
    vertical-align: middle;
}
.table-basic td {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.table-basic td:last-child {
    border-right: 0;
}
@media only screen and (max-width: 1024px) {
    .table-basic th,
    .table-basic td {
        font-size: 1.4rem;
    }
}

/* 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 */
.bg-gray {
    background: #fafafa;
}

.text-orange {
    color: #ff8400 !important;
}

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

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

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

.btn-black {
    background: #222;
    border: 1px solid #222;
    color: #fff;
}

.btn-black:focus,
.btn-black:hover {
    background: #000;
}

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

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

.btn-gray-line {
    border: 1px solid #e1e1e1;
    color: #999;
    background: #fff;
}

.btn-gray-line:focus,
.btn-gray-line:hover {
    background: #f7f7f7;
}

.btn-md {
    height: 54px;
    padding: 0.6em 0.2em 0.7em;
    font-size: 1.5rem;
}
@media only screen and (max-width: 640px) {
    .btn-md {
        height: 44px;
        font-size: 1.4rem;
    }
}

.btn-lg {
    padding: 1.1em 1em 1.23em;
    font-size: 1.8rem;
}
@media only screen and (max-width: 640px) {
    .btn-lg {
        padding: 1em 1em 1.15em;
        font-size: 1.6rem;
    }
}

.btn-block {
    width: 100%;
}

.btn-group {
    margin-top: 2.2em;
}

.btn-horizon-wrap {
    margin-left: -0.625em;
    margin-right: -0.625em;
}

.btn-horizon {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 0.625em 0;
}

.btn-horizon .btn {
    display: table-cell;
    vertical-align: middle;
}

/* label */
.label {
    display: inline-block;
    vertical-align: middle;
    padding: 0.3em 0.5em 0.4em;
    border: 1px solid;
    background: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.2rem;
}
@media only screen and (max-width: 640px) {
    .label {
        font-size: 1.1rem;
    }
}

.label-gray-line {
    border-color: #ccc;
    color: #ccc;
}

.label-orange-line {
    border-color: #ff8400;
    color: #ff8400;
}

/* icon */
.ico,
.section2 li + li:before,
.section4 dl:before {
    background: url("../images/icon.png") no-repeat;
    -webkit-background-size: 600px;
    -moz-background-size: 600px;
    background-size: 600px;
}

.ico {
    display: inline-block;
    vertical-align: middle;
    text-indent: -9999px;
    overflow: hidden;
}

.ico-info {
    width: 1.143em;
    height: 1.143em;
    background-position: -17.857em -14.286em;
    -webkit-background-size: 42.857em;
    -moz-background-size: 42.857em;
    background-size: 42.857em;
}

.ico-apply {
    background-position: -300px -250px;
}

.ico-receive {
    background-position: -350px -250px;
}

.ico-select {
    background-position: -400px -250px;
}

.ico-wait {
    background-position: -450px -250px;
}

.ico-visit {
    background-position: -500px -250px;
}

.ico-complete {
    background-position: -550px -250px;
}

.ico-arrow-black {
    width: 45px;
    height: 6px;
    background-position: -50px -200px;
}

.ico-arrow-gray {
    width: 45px;
    height: 6px;
    background-position: -100px -200px;
}

.ico-b {
    width: 10.5em;
    height: 9.625em;
    -webkit-background-size: 37.5em;
    -moz-background-size: 37.5em;
    background-size: 37.5em;
}

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

.ico-benefit3 {
    background-position: -25em 0;
}

.ico-top {
    width: 1.313em;
    height: 1.625em;
    background-position: -9.375em -12.5em;
    -webkit-background-size: 37.5em;
    -moz-background-size: 37.5em;
    background-size: 37.5em;
}

/* clearfix */
.inner:after,
.row:after,
.form-inline:after,
.img-banner:after {
    content: '';
    display: block;
    clear: both;
}

/* ----------------------------------------------------------------
	col
---------------------------------------------------------------- */
*[class*="col-"] {
    float: left;
    position: relative;
}

.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: 640px) {
    .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 #222;
}

.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
---------------------------------------------------------------- */
/* main header */
.m-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 2.188em 4.375em;
}
@media only screen and (max-width: 768px) {
    .m-header {
        padding: 25px 20px;
    }
}

.m-header .logo {
    float: left;
    margin: 0.2em 0;
    background-position: 0 50%;
}

.gnb {
    float: right;
}
@media only screen and (max-width: 768px) {
    .gnb {
        display: none;
    }
}

.gnb li {
    display: inline-block;
    vertical-align: middle;
}

.gnb li a {
    display: block;
    padding: 0.5em;
    font-size: 2rem;
    color: #fff;
    line-height: 2rem;
}

.gnb li.active a {
    font-weight: 500;
    color: #ff8400 !important;
}

.gnb li + li {
    margin-left: 4em;
}

.m-header.fixed {
    padding: 1.2em 4.375em;
    border-bottom: 1px solid #eee;
    background: #fff;
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -ms-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
}

.m-header.fixed .logo {
    background-position: 0 0;
}
@media only screen and (max-width: 768px) {
    .m-header.fixed {
        padding: 1.2em 20px;
    }

    .m-header.fixed .logo {
        width: 10em;
        height: 1.5em;
    }
}

.m-header.fixed .gnb li a {
    color: #222;
}

/* sub header */
.s-header {
    padding: 1.5em 0;
}

/* ----------------------------------------------------------------
    footer
---------------------------------------------------------------- */
footer {
    padding: 3.75em 0;
}

footer .logo {
    background-position: 0 100%;
}

footer .info {
    margin: 1.563em 0;
}

footer .info p {
    font-size: 1.3rem;
    color: #bbb;
}

footer .info p span + span {
    margin-left: 0.8em;
}

footer .link-wrap a {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #999;
}

footer .link-wrap a + a {
    margin-left: 1.1em;
}

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

footer .familysite {
    position: absolute;
    right: 0;
    top: 0;
}
@media only screen and (max-width: 1200px) {
    footer .familysite {
        right: 20px;
    }
}
.select-area {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.select-area .select-chk {
    display: block;
    min-width: 10em;
    padding: 0.62em 1.25em 0.68em;
    background: #bbb;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    -webkit-border-radius: 0.429em;
    -moz-border-radius: 0.429em;
    border-radius: 0.429em;
}
@media only screen and (max-width: 1200px) {
    .select-area .select-chk {
        font-size: 1.3rem;
    }
}

.select-area.active .select-chk {
    background: #1e1e1e;
}

.select-area:not(.active):hover .select-chk {
    background: #aaa;
}

.select-area .select-list {
    display: none;
    position: absolute;
    z-index: 100;
}
.select-area.active .select-list {
    display: block;
    width: 100%;
}

.select-area .select-list a {
    display: block;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.select-area .select-btn {
    position: absolute;
    right: 0.8em;
    top: 50%;
    width: 1em;
    height: 1em;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.select-area .select-btn:before,
.select-area .select-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.select-area .select-btn:before {
    width: 1em;
    height: 2px;
}

.select-area .select-btn:after {
    width: 2px;
    height: 1em;
}

.select-area.active .select-btn {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.select-list {
    bottom: 3.2em;
    width: 100%;
    padding: 0.6em 0;
    border: 1px solid #999;
    background: #fff;
    border-radius: 0.462em;
}

.select-list li a {
    padding: 0.3em 1.25em;
    font-size: 1.3rem;
    font-weight: 500;
    color: #999;
}

.select-list li a:hover {
    color: #000;
}

/* go top */
.go-top {
    display: none;
    position: fixed;
    right: 5%;
    bottom: 3.75em;
    width: 3.75em;
    height: 3.75em;
    padding: 0.9em 0;
    border: 1px solid #f1f1f1;
    background: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
@media only screen and (max-width: 640px) {
    .go-top {
        bottom: 3vh;
    }
}

.go-top:hover {
    border-color: #222;
}

/* ----------------------------------------------------------------
	title
---------------------------------------------------------------- */
/* main title */
.heading-main:not(.small) {
    padding-bottom: 5em;
}
@media only screen and (max-width: 640px) {
    .heading-main:not(.small) {
        padding-bottom: 3em;
    }
}

.heading-main span {
    display: block;
    margin-bottom: 1em;
    font-size: 2rem;
    font-weight: 300;
}
@media only screen and (max-width: 640px) {
    .heading-main span {
        font-size: 1.5rem;
    }
}

.heading-main h2 {
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 5.2rem;
}
@media only screen and (max-width: 640px) {
    .heading-main h2 {
        font-size: 3rem;
        line-height: 3.6rem;
    }
}

.heading-main.small h2 {
    margin-bottom: 1em;
    font-size: 3rem;
    font-weight: 300;
    line-height: 4rem;
}
@media only screen and (max-width: 640px) {
    .heading-main.small h2 {
        font-size: 2.5rem;
        line-height: 3.5rem;
        text-align: center;
    }
}

.heading-main p {
    margin-top: 2em;
    font-size: 1.8rem;
    font-weight: 300;
    color: #666;
}
@media only screen and (max-width: 640px) {
    .heading-main p {
        margin-top: 1em;
        font-size: 1.4rem;
    }
}

/* syb title */
.heading-sub {
    padding-bottom: 1.95em;
}

.heading-sub h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 3.5rem;
}
@media only screen and (max-width: 640px) {
    .heading-sub h2 {
        font-size: 2.6rem;
    }
}

.heading-sub p {
    margin-top: 2em;
    font-size: 1.5rem;
    color: #666;
}
@media only screen and (max-width: 640px) {
    .heading-sub p  {
        margin-top: 1.2em;
        font-size: 1.4rem;
    }
}

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

.logo-lg {
    width: 12.5em;
    height: 1.875em;
}

.logo-sm {
    width: 10em;
    height: 1.5em;
}

/* ----------------------------------------------------------------
	main visual
---------------------------------------------------------------- */
.main {
    position: relative;
    background: url("../images/visual_bg.png") no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}
@media only screen and (max-width: 768px) {
    .main {
        background-position: -1em -3.125em;
        -webkit-background-size: auto 100%;
        -moz-background-size: auto 100%;
        background-size: auto 100%;
    }
}

.main-visual {
    position: relative;
    max-width: 1200px;
    height: 46.875em;
    padding-top: 16.5em;
    margin: 0 auto;
}
@media only screen and (max-width: 768px) {
    .main-visual {
        height: 100vh;
        padding-top: 8em;
    }
}

.visual-txt {
    color: #fff;
}
@media only screen and (max-width: 1200px) {
    .visual-txt {
        padding: 0 20px;
    }
}

.visual-txt h2 {
    margin-bottom: 0.7em;
    font-size: 4.8rem;
    font-weight: 400;
    line-height: 5.5rem;
}
@media only screen and (max-width: 640px) {
    .visual-txt h2 {
        font-size: 3rem;
        line-height: 3.7rem;
    }
}

.visual-txt p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 2.5rem;
}
@media only screen and (max-width: 640px) {
    .visual-txt p {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.visual-img {
    position: absolute;
    right: 5em;
    top: 51%;
    width: 48.666666667%;
    max-width: 584px;
    -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) {
    .visual-img {
        right: 50%;
        top: auto;
        bottom: 21vh;
        width: 100%;
        padding: 0 35px;
        -webkit-transform: translate(50%, 0);
        -moz-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
        -o-transform: translate(50%, 0);
        transform: translate(50%, 0);
    }
}

.menu {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ff8400;
    font-size: 0;
}

.menu-btn {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0;
}

.menu-btn a {
    display: inline-block;
    width: 16.6666%;
    padding: 1.68em 0.6em 1.78em;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    letter-spacing: -0.05rem;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
@media only screen and (max-width: 768px) {
    .menu-btn a {
        width: 33.3333%;
        padding: 1.2em 0.2em 1.3em;
        font-size: 1.3rem;
    }

    .menu-btn a:nth-child(3) ~ a {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
}

.menu-btn a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-btn a:hover {
    background: #f88000;
}

/* ----------------------------------------------------------------
	main container
---------------------------------------------------------------- */
.container *[class*="section"]:not(.section5) {
    padding: 6.05em 0;
}
@media only screen and (max-width: 640px) {
    .container *[class*="section"]:not(.section5) {
        padding: 4em 0;
    }
}

.container .btn-horizon-wrap {
    float: right;
    width: 13.125em;
    margin-top: -6.8em;
}
@media only screen and (min-width: 641px) and (max-width: 829px) {
    .container .btn-horizon-wrap {
        margin-top: -11em;
    }
}
@media only screen and (max-width: 640px) {
    .container .btn-horizon-wrap {
        float: none;
        width: auto;
        margin-top: 2em;
    }
}

.container .btn-main {
    display: block;
    position: relative;
    margin: 0.6em 0;
    padding: 0.9em 1em;
    border: 1px solid;
    background: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: left;
}
@media only screen and (max-width: 640px) {
    .container .btn-main {
        display: table-cell;
        font-size: 1.3rem;
    }
}

.container .btn-main .ico {
    position: absolute;
    top: 50%;
    right: 1.1em;
    margin-top: -5px;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.container .btn-main:hover .ico {
    right: 0.6em;
}

/* section1 */
.section1 .left,
.section1 .right {
    float: left;
}
@media only screen and (max-width: 768px) {
    .section1 .left,
    .section1 .right {
        width: 100% !important;
    }
}

.section1 .left {
    width: 55.833333333%;
    padding-right: 3em;
}
@media only screen and (max-width: 768px) {
    .section1 .left {
        padding-right: 0;
    }
}

.section1 table {
    width: 100%;
    table-layout: fixed;
}

.section1 table td {
    padding: 0.45em 0;
    font-weight: 300;
    letter-spacing: -0.1rem;
}
@media only screen and (max-width: 640px) {
    .section1 table td {
        font-size: 1.3rem;
    }
}

.section1 .locate {
    font-weight: 500
}

.section1 .label {
    width: 5.833em;
}

.section1 .right {
    width: 44.166666667%;
}
@media only screen and (max-width: 768px) {
    .section1 .right {
        margin-top: 2em;
    }
}

.section1 .txt-banner {
    margin: 0 -2%;
    font-size: 0;
}

.section1 .banner {
    display: inline-table;
    width: 50%;
    padding: 0 2%;
    vertical-align: middle;
}

.section1 .txt {
    display: table-cell;
    height: 19.188em;
    border: 1px solid #d9d9d9;
    font-size: 1.6rem;
    text-align: center;
    vertical-align: middle;
}
@media only screen and (max-width: 640px) {
    .section1 .txt {
        height: 11em;
    }
}

.section1 .txt > * {
    display: block;
}

.section1 .txt .num,
.section1 .txt .call {
    margin-bottom: 1em;
}

.section1 .txt .num {
    font-size: 5.2rem;
    color: #ff8400;
}

.section1 .txt .call {
    margin-top: 0.5em;
    font-size: 3.4rem;
}

.section1 .txt span {
    font-size: 2rem;
    font-weight: 500;
}

.section1 .txt p {
    font-weight: 300;
    line-height: 2.5rem;
    color: #444;
}
@media only screen and (max-width: 640px) {
    .section1 .txt .num {
        font-size: 3.6rem;
    }

    .section1 .txt .call {
        font-size: 2.3rem;
    }

    .section1 .txt span {
        font-size: 1.6rem;
    }

    .section1 .txt p {
        font-size: 1.3rem;
        color: #444;
        line-height: 2rem;
    }
}

/* section2 */
.section2 {
    background: #f7f7f7;
}

.section2 .btn-main {
    border-color: #bbb;
    color: #555;
}

.section2 ol {
    margin: 0 -0.5em;
}

.section2 li {
    float: left;
    position: relative;
    width: 33.33333%;
    padding: 2em;
}
@media only screen and (max-width: 640px) {
    .section2 li {
        width: 100%;
    }
}

.section2 li + li:before {
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    width: 14px;
    height: 28px;
    margin-top: -14px;
    background-position: 0 -200px;
}
@media only screen and (max-width: 640px) {
    .section2 li + li:before {
        left: 50%;
        top: -14px;
        margin: 0 0 0 -7px;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

.section2 li .round {
    padding: 2.3em 0 2.6em;
    font-size: 2.2rem;
    font-weight: 300;
    text-align: center;
    -webkit-border-radius: 50em;
    -moz-border-radius: 50em;
    border-radius: 50em;
}
@media only screen and (max-width: 640px) {
    .section2 li .round {
        font-size: 1.3rem;
    }
}

.section2 ol li b {
    display: block;
    margin-top: 0.577em;
    font-size: 2.6rem;
    font-weight: 500;
}
@media only screen and (max-width: 640px) {
    .section2 ol li b {
        font-size: 2rem;
    }
}

.section2 li:nth-child(1) .round {
    background: #fff;
    -webkit-box-shadow: 0.182em 0 0.909em rgba(205, 205, 205, 0.35);
    -moz-box-shadow: 0.182em 0 0.909em rgba(205, 205, 205, 0.35);
    box-shadow: 0.182em 0 0.909em rgba(205, 205, 205, 0.35);
}

.section2 li:nth-child(2) .round,
.section2 li:nth-child(3) .round {
    color: #fff;
    -webkit-box-shadow: 0.182em 0 0.909em rgba(51, 51, 51, 0.35);
    -moz-box-shadow: 0.182em 0 0.909em rgba(51, 51, 51, 0.35);
    box-shadow: 0.182em 0 0.909em rgba(51, 51, 51, 0.35);
}

.section2 li:nth-child(2) .round {
    background: #9b9b9b;
}

.section2 li:nth-child(3) .round {
    background: #726b61;
}

/* section3 */
.benefit-wrap *[class*="col-"] {
    padding: 1.5em 3em;
}
@media only screen and (max-width: 768px) {
    .benefit-wrap {
        margin: 0 -3em;
    }
}

.benefit-wrap > div > * {
    display: block;
}

.benefit-wrap .ico-b {
    margin-bottom: 5em;
}
@media only screen and (max-width: 640px) {
    .benefit-wrap .ico-b {
        display: none;
    }
}

.benefit-wrap .num {
    font-size: 7.6rem;
    color: #eee;
    line-height: 3.6rem;
}
@media only screen and (max-width: 640px) {
    .benefit-wrap .num {
        font-size: 5.6rem;
        line-height: 1.6rem;
    }
}

.benefit-wrap .tit {
    font-size: 2.4rem;
    font-weight: 400;
}

.benefit-wrap p {
    margin-top: 1.3em;
    font-size: 1.8rem;
    font-weight: 300;
    color: #888;
    line-height: 2.8rem;
}
@media only screen and (max-width: 640px) {
    .benefit-wrap p {
        font-size: 1.5rem;
        line-height: 2.4rem;
    }
}

/* section4 */
.section4 {
    background: #f7f7f7;
}

.section4 .btn-main {
    border-color: #393332;
    background: #393332;
    color: #fff;
}

.section4 .row {
    margin: 0 -0.688em;
}

.section4 [class*="col-"] {
    padding: 0.688em;
}

.section4 dl {
    position: relative;
    height: 15.625em;
    padding: 2.15em 1.8em;
    background-color: #fff;
    -webkit-box-shadow: 0 0.25em 1.25em rgba(205, 205, 205, 0.35);
    -moz-box-shadow: 0 0.25em 1.25em rgba(205, 205, 205, 0.35);
    box-shadow: 0 0.25em 1.25em rgba(205, 205, 205, 0.35);
}
@media only screen and (max-width: 640px) {
    .section4 dl {
        height: 9.5em;
    }
}

.section4 dt {
    margin-bottom: 0.8em;
    font-size: 2.2rem;
    font-weight: 500;
}
@media only screen and (max-width: 640px) {
    .section4 dt {
        font-size: 2rem;
    }
}

.section4 dd {
    font-weight: 300;
    color: #888;
}

.section4 dl:before {
    content: "";
    position: absolute;
    right: 1.8em;
    bottom: 1.2em;
    width: 52px;
    height: 57px;
}

.section4 [class*="col-"]:nth-child(1) dl:before { background-position: 0 -250px; }
.section4 [class*="col-"]:nth-child(2) dl:before { background-position: -100px -250px; }
.section4 [class*="col-"]:nth-child(3) dl:before { background-position: -200px -250px; }

/* section5 */
.section5 .img-banner {
    padding: 7em 0;
}
@media only screen and (max-width: 640px) {
    .section5 .img-banner {
        padding: 4em 0;
        text-align: center;
    }
}

@media only screen and (max-width: 640px) {
    .section5 .img-banner img {
        max-width: 70%;
    }
}

.section5 p {
    margin: 0.4em 0 1.6em;
    font-size: 2.4rem;
    line-height: 3.9rem;
    letter-spacing: -0.1rem;
}
@media only screen and (max-width: 640px) {
    .section5 p {
        margin-top: 1em;
        font-size: 1.7rem;
        line-height: 2.5rem;
    }
}

.section5 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    color: #888;
    line-height: 3rem;
}
@media only screen and (max-width: 640px) {
    .section5 span {
        font-size: 1.4rem;
        line-height: 2.1rem;
    }
}

.section5 .link-wrap {
    font-size: 0;
}
@media only screen and (max-width: 640px) {
    .section5 .link-wrap {
        margin: 0 -20px;
    }
}

.section5 .link-wrap a {
    display: inline-block;
    width: 25%;
    padding: 2em 0;
    border-top: 1px solid #f0f0f0;
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.15rem;
    vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
    .section5 .link-wrap a {
        width: 50%;
    }
}
@media only screen and (max-width: 640px) {
    .section5 .link-wrap a {
        padding: 1em 0;
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 640px) {
    .section5 .link-wrap a:nth-child(even) {
        border-left: 1px solid #f0f0f0;
    }
}

.section5 .link-wrap a:after {
    content: "";
    display: inline-block;
    padding: 0.4rem;
    vertical-align: 0.2rem;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #222;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media only screen and (max-width: 1024px) {
    .section5 .link-wrap a:after {
        content: none;
    }
}

.section5 .link-wrap a:hover {
    color: #ff8400;
}

.section5 .link-wrap a:hover:after {
    border-color: #ff8400;
}

/* section6 */
.section6 {
    background: #f7f7f7;
}

.section6 a {
    display: inline-block;
    width: 22%;
    padding: 5%;
    margin: 1.875em 1.2% 0;
    background: #fff;
    vertical-align: middle;
}
@media only screen and (max-width: 640px) {
    .section6 a {
        width: 30%;
    }
}

/* ----------------------------------------------------------------
	sub
---------------------------------------------------------------- */
.tab-menu {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.tab-menu > * {
    display: table-cell;
    vertical-align: middle;
    padding: 1.18em 0 1.28em;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #e1e1e1 #e1e1e1 #222;
    font-size: 1.8rem;
    color: #999;
    line-height: 1.8rem;
    text-align: center;
    cursor: pointer;
}
@media only screen and (max-width: 640px) {
    .tab-menu > * {
        font-size: 1.4rem;
    }
}

.tab-menu > *:last-child {
    border-right-width: 1px;
}

.tab-menu .active {
    border-color: #222 #222 transparent;
    font-weight: 700;
    color: #222;
}

.tab-menu .active:last-child {
    border-right-color: #222;
}

.tab-menu .active + * {
    border-left-color: #222;
}

.tab-content {
    display: none;
}

.tab-rdo {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.tab-rdo > * {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.tab-rdo .input-rdo input + span {
    display: block;
    padding: 1em 0 1.16em;
    background: #f7f7f7;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.tab-rdo .input-rdo input[type="radio"]:checked + span {
    background: #222;
    font-weight: 700;
    color: #fff;
}

.info-pop {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.4rem;
    color: #666;
    letter-spacing: -0.05rem;
}
.info-pop:hover {
    text-decoration: underline;
}
@media only screen and (max-width: 640px) {
    .info-pop {
        font-size: 1.2rem;
    }
}

.info-pop .ico {
    margin-right: 0.4em;
    vertical-align: -0.2rem;
}

.box-wrap {
    padding: 2em 1.875em;
    border: 1px solid #e1e1e1;
}

.box-wrap dt {
    margin-bottom: 1em;
    font-size: 1.8rem;
}
@media only screen and (max-width: 420px) {
    .box-wrap dt {
        font-size: 1.5rem;
    }
}

.box-wrap dd {
    position: relative;
    margin-top: 0.8em;
    padding-left: 0.8em;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 2.5rem;
    color: #666;
}
@media only screen and (max-width: 420px) {
    .box-wrap dd {
        font-size: 1.3rem;
    }
}

.box-wrap dd:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 2px;
    height: 2px;
    background: #222;
    vertical-align: middle;
}

img + .box-wrap {
    margin-top: 1.5em;
}

.step-ico {
    margin: 1em -0.188em 2em;
}

.step-ico li {
    position: relative;
    padding: 0 0.188em;

}

.step-ico li:before {
    content: "";
    display: block;
    height: 0;
    padding-top: 100%;
    background: #f5f5f5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.step-ico .step {
    position: absolute;
    left: 50%;
    top: 52%;
    font-size: 1.4rem;
    color: #999;
    white-space: nowrap;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 640px) {
    .step-ico .step {
        font-size: 1.2rem;
    }
}

.step-ico .step .ico {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 0.2em;
}
@media only screen and (max-width: 640px) {
    .step-ico .step .ico {
        display: none;
    }
}

.step-ico li.active:before {
    background: #f29d29;
}

.step-ico li.active .step {
    font-weight: 700;
    color: #fff;
}

.step-ico li.active .ico {
    background-position-y: -300px;
}

.step-txt li {
    display: inline-block;
    color: #666;
    vertical-align: middle;
}

.step-txt li:not(:last-child):after {
    content: "";
    display: inline-block;
    padding: 2px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #bbb;
    margin: -0.15em 0.4em 0 0.5em;
    vertical-align: middle;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.step-txt li.active {
    color: #222;
    font-weight: 700;
}

.step-txt li.active:after {
    border-color: #f29d29;
}

.agree-area {
    margin-top: 1em;
    padding: 1em;
    height: 15em;
    border: 1px solid #e1e1e1;
    overflow-y: auto;
}

.agree-area p {
    font-size: 1.4rem;
    color: #999;
    line-height: 2.8rem;
}

.complete-wrap {
    font-weight: 300;
}

.complete-wrap strong {
    display: block;
    padding: 0.6em 0 1em;
    font-size: 2.2rem;
}
@media only screen and (max-width: 640px) {
    .complete-wrap strong {
        font-size: 1.7rem;
    }
}

.complete-wrap p {
    margin: 0.2em 0;
    font-size: 1.5rem;
}
@media only screen and (max-width: 640px) {
    .complete-wrap p {
        font-size: 1.3rem;
    }
}

.complete-wrap em {
    font-weight: 400;
}

.complete-wrap ul {
    margin-top: 2.3em;
}

.complete-wrap ul li {
    position: relative;
    padding-left: 0.7em;
    font-size: 1.3rem;
    color: #999;
    line-height: 2.4rem;
}
@media only screen and (max-width: 640px) {
    .complete-wrap ul li {
        font-size: 1.2rem;
        line-height: 2rem;
    }
}

.complete-wrap ul li + li {
    margin-top: 0.5em;
}

.complete-wrap ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 2px;
    height: 2px;
    margin-right: 0.4em;
    background: #636363;
    vertical-align: middle;

}

.content + .content {
    margin-top: 5em;
    border-top: 1px solid #e1e1e1;
}

.cont-tit {
    padding: 1.25em 0 1.1em;
    font-size: 2rem;
    font-weight: 500;
}

.detail {
    margin-top: 0.5em;
    font-size: 1.2rem;
}

.table-info {
    margin-top: 1.3em;
    padding-left: 0.5em;
}

.table-info li {
    text-indent: -0.5em;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8rem;
    color: #999;
}

.table-info li + li {
    margin-top: 0.8em;
}

.notice .cont-tit {
    padding: 2.25em 0 1.3em;
}

.notice ul {
    margin-left: 10px;
}

.notice ul li {
    position: relative;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 2.3rem;
}

.notice ul li + li {
    margin-top: 1em;
}

.notice ul li:before {
    display: inline-block;
    content: "";
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #333;
    position: absolute;
    top: 11px;
    left: -10px;
}
@media only screen and (max-width: 768px) {
    .cont-tit {
        font-size: 1.8rem;
    }
    .notice ul li {
        font-size: 1.4rem;
        line-height: 2.2rem;
    }
}

/* ----------------------------------------------------------------
    popup
---------------------------------------------------------------- */
.popup-header {
    padding: 1.7em 25px;
    border-bottom: 1px solid #eee;
}

.popup-header h2 {
    font-size: 2rem;
}
@media only screen and (max-width: 420px) {
    .popup-header h2 {
        font-size: 1.8rem;
    }
}

.popup-content {
    padding: 0.8em 25px;
}
