/* sec1 */
.main-content {
        overflow: hidden;
}
#sec1 {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.swiper {
    width: 100%;
    position: relative;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    transition: 1s;
}
.slide1 {
    background: url('../../images/sec1_bg.png') no-repeat;
    background-position: center bottom;
    background-size: cover;
}
.slide2 {
    background: url('../../images/sec2_bg.png') no-repeat;
    background-position: center bottom;
    background-size: cover;
}
.slide3 {
    background: url('../../images/sec3_bg.png') no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.intro {
    text-align: center;
}

#sec1 .maintext {
    font-weight: 700;
}

#sec1 .subtext {
    white-space: pre-line;
}

.bg-wave img {
    position: absolute;
    bottom: 0;
    z-index: 4;
}

.swiper-button-prev {
    float: left;
    position: relative !important;
    left: unset !important;
    right: unset !important;
    width: 96px !important;
    height: 96px !important;
    background: url('../../images/prev.png') no-repeat;
}

.swiper-button-next {
    float: right;
    position: relative !important;
    left: unset !important;
    right: unset !important;
    width: 96px !important;
    height: 96px !important;
    background: url('../../images/next.png') no-repeat;
}

.slide-btn {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-120%);
    z-index: 100;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    display: none;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    display: none;
}

.intro > * {
    opacity: 0;
      transform: translateY(20px);
}

.swiper-slide-active .intro > * {
    transform: translateY(0px);
    opacity: 1;
}

/* scroll animation (intro) */
.indicate-intro {
    z-index: 100;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 50px;
    width:60px;
    height:60px;
    transform: translateX(-50%);
    /* 파폭 */
    -moz-animation: bounce 1s infinite linear;
    /* 크롬 */
    -webkit-animation: bounce 1s infinite linear;
    -o-animation: bounce 1s infinite linear;
    animation: bounce 1s infinite linear;
}

@-webkit-keyframes bounce {
    0% {
        bottom: 50px;
    }

    50% {
        bottom: 40px;
    }

    100% {
        bottom: 50px;
    }
}

@-moz-keyframes bounce {
    0% {
        bottom: 50px;
    }

    50% {
         bottom: 40px;
    }

    100% {
        bottom: 50px;
    }
}

@-o-keyframes bounce {
    0% {
        bottom: 50px;
    }

    50% {
         bottom: 40px;
    }

    100% {
        bottom: 50px;
    }
}

@-ms-keyframes bounce {
    0% {
        bottom: 50px;
    }

    50% {
        bottom: 40px;
    }

    100% {
        bottom: 50px;
    }
}

@keyframes bounce {
    0% {
        bottom: 50px;
    }

    50% {
        bottom: 40px;
    }

    100% {
        bottom: 50px;
    }
}


/* sec2 */
#sec2 {
    margin-top: 80px;
    position: relative;
}

.company_wrap {
    width: 100%;
    text-align: center;
}

.company_content div {
    display: inline-block;
    vertical-align: middle;
}

.ani-scale {
    animation-fill-mode: forwards;
    animation-name: scale;
    animation-duration: 1.3s;
}

@keyframes scale {
    0%{
        width: 70%;
        opacity: 50%;
    }

    100%{
        width: 100%;
        opacity: 100%;
    }
}

.company_txt {
    text-align: left;
    font-size: 70px;
    margin-left: -85px;
    padding-top: 50px;
}

.company_img {
    width: 617px;
    height: 617px;
    position: relative;
}

.company_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    width: 50%;
    opacity: 50%;
}

.solution_txt {
    margin-left: 0;
    padding-top: 0;
}

.subtxt {
    font-size: 18px;
    white-space: pre-wrap;
    color: #808080;
    padding-left: 120px;
    margin-top: 30px;
}

.solution_subtxt {
    padding-left: 0;
}

.deco1 {
    float: right;
    margin-top: -70px;
    margin-right: -170px;
}

.deco2 {
    text-align: left;
    position: relative;
}

.deco2 img {
    position: absolute;
    top: 0;

}

.solution_wrap {
    clear: both;
    margin-top: 40px;
}

.solution_headline {
    margin-bottom: 30px;
    position: relative;
    padding-left: 5px;
    text-align: left;
}

.ani-full::before {
    content: '';
    display: inline-block;
    position: absolute; 
    background: rgba(199,152,96,.2);
    height: 18px;
    top: 12px;
    left: 0;
    animation-name: full;
    animation-duration: 1.3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes full{
    0%{
        width: 0%;
    }

    100%{
        width: 455px;
    }
}

.circle_wrap {
    z-index: 10;
}

.circle {
    position: relative;
    width: 460px;
    height: 460px;
    border-radius: 100%;
    background: url('../../images/solution.png') no-repeat;
    background-size: cover;
    margin-top: 160px;
}

.circle::before {
    content: '';
    background: url('../../images/deco-text.png') no-repeat;
    display: inline-block;
    width: 539px;
    height: 539px;
    position: absolute;
    top: -40px;
    left: -40px;
    animation: circle 30s linear infinite;
}

@keyframes circle {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.solution_wrap {
    position: relative;
}

.sec2-bg {
    position: absolute;
    background: #faf9f7;
    width: 100%;
    height: 350px;
    bottom: 0;

}

.recruit_wrap {
    background: #faf9f7;
    padding-bottom: 200px;
}

.recruit_txt {
    text-align: center;
    margin-left: 0;
    padding-top: 333px;
}

.recruit_txt_wrap {
    margin-top: -150px;
}

/* slick */
.slick {
    position: relative;
    margin-top: 30px;
}
.center div img {
    opacity: 0.6;
    transition: all 300ms ease;
    width: 100%;
    height: auto;
    image-rendering: -moz-crisp-edges; /* firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* chorme */  
}
.blue div img {
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    color: #3498db;
    font-size: 36px;
    line-height: 100px;
    padding: 5% !important;
    position: relative;
    text-align: center;
    image-rendering: -moz-crisp-edges; /* firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* chorme */  
}

.center .slick-center img {
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    color: #e67e22;
    opacity: 1;
    transform: scale(1.08);
    image-rendering: -moz-crisp-edges; /* firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* chorme */  
}

.slick-prev {
    left: 370px;
    background: url('../../images/prev2.png') no-repeat;
    width: 14px;
    height: 29px; 
}

.slick-next {
    right: 370px;
    background: url('../../images/next2.png') no-repeat;
    width: 14px;
    height: 29px; 

}

.slick-arrow {
    position: absolute;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
    text-indent: -999em;
    border: 0;
    cursor: pointer;
}

.browse-more {
    position: relative; 
    display: flex; 
    align-items: center; 
    width:10.417vw;
    margin-left: 120px;
    cursor: pointer;
}

.browse-more.mo-ver {
    display:none;
}

.svgImg { 
    width:100px; 
    height: 100px; 
    z-index: 2; 
    overflow: visible !important;    
    margin-left: -45px; 
    opacity:0;
}

.svgImg g {
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1); 
    transform: scale(0.5);  
    transform-origin: center;
}

.svgImg g:nth-child(1) { transition-delay: 0.05s;}
.svgImg g:nth-child(2) {transition-delay: 0.1s;}
.svgImg g:nth-child(3) {transition-delay: 0.15s;}
.svgImg g:nth-child(4) { transition-delay: 0.2s;}
.svgImg g:nth-child(5) {transition-delay: 0.25s;}
.svgImg g:nth-child(6) {transition-delay: 0.3s;}

.link-wrap { 
    display: flex;
    align-items: center;  
    position: absolute; 
    top:50%; 
    left:0; 
    transform:translateY(-50%); 
    z-index:2;
}

.link-wrap img, .browse-more > img {
    margin-right: 10px; 
    transition: margin 0.3s;
}

.link-wrap span, .browse-more > span:not(.link-wrap) {
    display: block; 
    font-size: 16px; 
    font-weight: bold; 
    position: relative; 
    z-index:3; 
    white-space: nowrap;    
    text-transform: uppercase;
}

.browse-more:hover .svgImg {
    opacity:1; 
    transition : opacity 0.5s;
} 

.browse-more:hover g {
    transform: scale(1.1);  
    transform-origin: center;
}

.browse-more:hover .link-wrap img {margin-right: 20px;}

.browse-more2 {float: right; z-index: 100;}
.browse-more3 {margin: 0 auto;}

.slick-box {
    position: relative;
}


.hover_wrap {
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    width: 98%;
    height: 98%;
    background: rgba(0,0,0,.6);
    color: #fff;
    border-radius: 100%;
    position: absolute;
    transition: 1s;
    
}

.slick-current:hover .hover_wrap {
    display: flex;
    transition: 1s;
}

.hover_en {
    font-size: 30px;
    font-weight: 900;
    color: #c79860;
}

.hover_ko {
    margin: 5px 0;
    font-size: 20px;
    font-weight: bold;
}

.hover_detail {
    white-space: pre-line;
}


/* -- mobile( ? ~ 767px ) -- */
@media screen and (max-width: 767px) {
    .logo-pc {
        width: 100px;
        height: auto;
    }

    .bg-wave {
        display: flex;
        justify-content: center;
    }

    .bg-wave img {
        width: 130%;
        height: auto;
        margin: 0 auto;
        bottom: -3px;
    }

    .bg-wave-pc, .bg-wave-t {
        display: none;
    }

    .indicate-intro {
        width: 36px;
        height: 53px;
        display: flex;
        align-items: center;
    }

    .indicate-intro img {
        width: 36px;
        height: auto;
    }

    @-webkit-keyframes bounce {
        0% {
            bottom: 40px;
        }

        50% {
            bottom: 30px;
        }

        100% {
            bottom: 40px;
        }
    }
    
    @-moz-keyframes bounce {
        0% {
            bottom: 40px;
        }

        50% {
            bottom: 30px;
        }

        100% {
            bottom: 40px;
        }
    }
    
    @-o-keyframes bounce {
        0% {
            bottom: 40px;
        }

        50% {
            bottom: 30px;
        }

        100% {
            bottom: 40px;
        }
    }
    
    @-ms-keyframes bounce {
        0% {
            bottom: 40px;
        }

        50% {
            bottom: 30px;
        }

        100% {
            bottom: 40px;
        }
    }
    
    @keyframes bounce {
        0% {
            bottom: 40px;
        }

        50% {
            bottom: 30px;
        }

        100% {
            bottom: 40px;
        }
    }

    .company_img {
        width: 300px;
        height: 300px;
    }

    #sec1 .text {
        margin-top: -130px;
    }

    .maintext {
        font-size: 36px;
        color: #fff;
        line-height: 46px;
        transition-delay: 1s;
        transition: transform .5s, opacity .7s;
        transform: translateY(50px);
        opacity: 0;
    }

    #sec1 .subtext {
        margin-top: 20px;
    }

    .subtext {
        color: #fff;
        font-size: 14px;
        margin-top: 50px;
        white-space: pre-line;
        transition-delay: 1s;
        transition: transform 1.5s, opacity 1.7s;
        transform: translateY(50px);
        opacity: 0;
    }

    .slide-btn {
        transform: translateY(-180%);
    }

    .swiper-button-next, .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        background-size: cover;
        display: none !important;
    }

    .company_txt {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .company_txt h3 {
        font-size: 36px;
    }

    .subtxt {
        font-size: 14px;
        padding-left: 0;
        white-space: inherit;
        word-break: keep-all;
        margin-top: 10px;
    }

    #sec2 {
        margin-top: 50px;
    }

    .browse-more {
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }

    .browse-more2 {
        float: unset;
    }

    .browse-more:hover g {
        transform: scale(1.05);  
    }

    .link-wrap {
        display: flex;
        align-items: center;
        margin-left: -56px;
        z-index: 2;
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
    }

    .link-wrap span, 
    .browse-more > span:not(.link-wrap) {
        font-size: 14px;
    }

    .deco1 {
        margin-right: 0px;
    }

    .deco1 img {
        width: 290px;
        height: auto;
    }

    .solution_wrap {
        margin-top: 100px;
    }

    .solution_headline {
        text-align: center;
        font-size: 12px;
        white-space: inherit;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .ani-full::before {
        left: 50%;
        transform: translateX(-50%);
        height: 12px;
    }

    @keyframes full{
        0%{
            width: 0%;
        }
    
        100%{
            width: 330px;
        }
    }

    .circle {
        width: 260px;
        height: 260px;
        margin: 30px auto 0 auto;
    }

    .circle::before {
        width: 300px;
        height: 300px;
        background-size: 100%;
        top: -20px;
        left: -20px;
    }

    .deco2 img {
        margin-top: 150px;
        width: 600px;
        height: auto;
    }

    .sec2-bg {
        height: 210px;
    }

    .center .slick-center img {
        width: 250px;
        height: auto;
        margin: 0 auto;
    }

    .center div img {
        width: 250px;
        height: auto;
        margin: 0 auto;
    }

    .recruit_wrap {
        padding-bottom: 100px;
    }

    .slick {
        margin-top: 20px;
    }

    .slick-prev {
        left: 5%;
    }

    .slick-next {
        right: 5%;
    }

    .recruit_txt {
        padding-top: 270px;
    }

    .hover_wrap {
        width: 240px;
        height: 240px;
    }

    .hover_en {
        font-size: 20px;
    }

    .hover_ko {
        font-size: 16px;
    }

    .hover_detail {
        font-size: 14px;
        white-space: unset;
        word-break: keep-all;
        padding: 0 10px;
    }
}


/* -- tablet( 768px ~ 1339px ) -- */
@media screen and (min-width: 768px) and (max-width: 1339px) {
    .container {
        max-width: 768px;
    }
    
    .bg-wave {
        display: flex;
        justify-content: center;
    }

    .bg-wave-pc, .bg-wave-m{
        display: none;
    }

    .bg-wave img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .indicate-intro {
        width: 36px;
        height: 53px;
        display: flex;
        align-items: center;
    }

    .indicate-intro img {
        width: 36px;
        height: auto;
    }

    @-webkit-keyframes bounce {
        0% {
            bottom: 50px;
        }

        50% {
            bottom: 40px;
        }

        100% {
            bottom: 50px;
        }
    }
    
    @-moz-keyframes bounce {
        0% {
            bottom: 50px;
        }

        50% {
            bottom: 40px;
        }

        100% {
            bottom: 50px;
        }
    }
    
    @-o-keyframes bounce {
        0% {
            bottom: 50px;
        }

        50% {
            bottom: 40px;
        }

        100% {
            bottom: 50px;
        }
    }
    
    @-ms-keyframes bounce {
        0% {
            bottom: 50px;
        }

        50% {
            bottom: 40px;
        }

        100% {
            bottom: 50px;
        }
    }
    
    @keyframes bounce {
        0% {
            bottom: 50px;
        }

        50% {
            bottom: 40px;
        }

        100% {
            bottom: 50px;
        }
    }

    .company_img {
        width: 400px;
        height: 400px;
    }

    #sec1 .text {
        margin-top: -130px;
    }

    .maintext {
        font-size: 40px;
        color: #fff;
        line-height: 46px;
        transition-delay: 1s;
        transition: transform .5s, opacity .7s;
        transform: translateY(50px);
        opacity: 0;
    }

    #sec1 .subtext {
        margin-top: 20px;
    }

    .subtext {
        color: #fff;
        font-size: 16px;
        margin-top: 50px;
        white-space: pre-line;
        transition-delay: 1s;
        transition: transform 1.5s, opacity 1.7s;
        transform: translateY(50px);
        opacity: 0;
    }

    .slide-btn {
        transform: translateY(-180%);
    }

    .swiper-button-next, .swiper-button-prev {
        width: 60px !important;
        height: 60px !important;
        background-size: cover;
    }

    .company_txt {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .company_txt h3 {
        font-size: 50px;
    }

    .subtxt {
        padding-left: 0;
    }

    .browse-more {
        margin: 0 auto;
        width: 17.417vw;
    }

    .browse-more2 {
        float: unset;
    }

    .deco1 {
        margin-right: -20px;
    }

    .deco1 img {
        width: 400px;
        height: auto;
    }

    .solution_wrap {
        margin-top: 100px;
    }

    .solution_headline {
        white-space: nowrap;
        text-align: center;
    }

    .ani-full::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .circle {
        width: 400px;
        height: 400px;
        margin: 50px auto 0 auto;
    }

    .circle::before {
        width: 450px;
        height: 450px;
        background-size: 100%;
        top: -25px;
        left: -25px;
    }

    .deco2 img {
        margin-top: 150px;
        width: 600px;
        height: auto;
    }

    .sec2-bg {
        height: 210px;
    }

    .center .slick-center img {
        width: 450px;
        height: auto;
        margin: 0 auto;
    }

    .center div img {
        width: 450px;
        height: auto;
        margin: 0 auto;
    }

    .recruit_wrap {
        padding-bottom: 100px;
    }

    .slick-prev {
        left: 5%;
    }

    .slick-next {
        right: 5%;
    }

    .browse-more {
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }

    .browse-more2 {
        float: unset;
    }

    .browse-more:hover g {
        transform: scale(1.05);  
    }

    .link-wrap {
        display: flex;
        align-items: center;
        margin-left: -56px;
        z-index: 2;
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
    }

    .link-wrap span, 
    .browse-more > span:not(.link-wrap) {
        font-size: 14px;
    }

    .hover_wrap {
        width: 414px;
        height: 414px;
    }
}

/* -- desktop( 1340px ~ ? ) -- */
@media screen and (min-width: 1340px) {
    .container {
        max-width: 1340px;
    }

    .solution_wrap {
        display: flex;
    }

    .solution_content {
        float: left;
        width: 50%;
    }

    .circle {
        float: right;
    }

    .section {
        position:relative;
        overflow:hidden;
    }

    .bg-wave-m, .bg-wave-t {
        display: none;
    }


    /* sec1 */
    #sec1 .text {
        margin-top: -130px;
    }

    .maintext {
        font-size: 60px;
        color: #fff;
        line-height: 64px;
        transition-delay: 1s;
        transition: transform .5s, opacity .7s;
        transform: translateY(50px);
        opacity: 0;
    }

    #sec1 .subtext {
        margin-top: 20px;
    }

    .subtext {
        color: #fff;
        font-size: 20px;
        margin-top: 50px;
        white-space: pre-line;
        transition-delay: 1s;
        transition: transform 1.5s, opacity 1.7s;
        transform: translateY(50px);
        opacity: 0;
    }

    .extratext {
        transition-delay: 1s;
        transition: transform 2.5s, opacity 2.7s;
        transform: translateY(50px);
        opacity: 0;
    }


    /* sec2 */

    #sec2 .fp-bg {
        background-image: url('../../images/sec2_bg.jpg');
        z-index: 4;
    }

    #sec2 .text {
        /*transform : translateY(-80px);*/
        margin-top: -150px;
    }

    .go_service {
        width: 350px;
        margin-top: 50px;
        cursor: pointer;
    }

    .go_service a {
        color: #fff;
        font-size: 1.500em;
    }

    .go_service:hover {
        transform:translateX(20px) !important;
        transition-duration: .8s !important;
    }

    .go_service img {
        vertical-align: middle;
        margin-left: 20px;
    }


    /* sec3 */
    #sec3 .fp-bg {
        background-image: url('../../images/sec3_bg.jpg');
        z-index: 3;
    }

    #sec3 .text {
        margin-top: -100px;
    }

    .autoplay {
        z-index: 5;
        margin-top: 100px;
    }

    .autoplay > .slick-arrow {
        top: 20px;
        position: absolute;
        display: inline-block;
        vertical-align: middle;
        z-index: 50;
        border: none;
        text-indent: -999em;
        cursor: pointer;
    }

    .autoplay > .slick-prev {
        
        background: url(../../images/prev.png) no-repeat;
        width: 38px;
        height: 69px;
    }


    .autoplay > .slick-next {
        right: 0;
        background: url(../../images/next.png) no-repeat;
        width: 38px;
        height: 69px;
    }


    /* sec4 */
    input.error, textarea.error {
        background: rgba(275,175,175,0.3) !important;
        border: 1px solid #ffafaf !important;
    }

    .errorMessage {
        display: none;
        position: absolute;
        left: 0;
        color: #ffafaf;
        border-radius: 5px;
        bottom: -25px;
        font-size: 1.000em;
    }

    #sec4 .fp-bg {
        background-image: url('../../images/sec4_bg.jpg');
        z-index: 2;
    }
    
    #sec4 .text {
        /*transform: translateY(150px);*/
        margin-top: 150px;
    }
    

    .csinfo {
        position: relative;
        margin-top: 50px;
        padding: 50px 0;
    }

    .csinfo::before {
        content: '';
        position: absolute;
        top: 0;
        width: 70px;
        height: 3px;
        background: #d8b274;
    }

    .csinfo p {
        color: #fff;
        font-size: 1.500em;
        letter-spacing: 0;
    }

    .csinfo p img {
        vertical-align: middle;
        margin-right: 10px;
        width: 45px;
        height: auto;
    }

    .csinfo p:nth-child(1) {
        margin-bottom: 20px;
    }

    .form {
        margin-top: 80px;
    }

    .form ul li {
        margin-bottom: 40px;
        position: relative;
    }

    .form ul li:last-child label {
        bottom: -20px;
    }

    .form ul li:last-child {
        margin-bottom: 0;
    }

    .form ul li input {
        width: 100%;
        padding: 20px 10px;
        border-top: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid #ccc;
        background: transparent;
        color: #fff;
        font-size: 1.125em;
    }

    .form ul li input::placeholder, .form ul li textarea::placeholder {
        color: #fff;
    }

    .form ul li textarea {
        width: 100%;
        height: 260px;
        border: 1px solid #ccc;
        background: transparent;
        font-size: 1.125em;
        resize: none;
        padding: 10px 0;
        color :#fff;
        padding: 20px 10px;
        border-radius: 5px;
    }

    .agree {
        color: #fff;
        font-size: 1.125em;
        text-align: right;
        margin-top: 10px;
    }

    .agree label {
        cursor: pointer;
    }

    #agreeYn {
        margin-right: 5px;
    }

    input[type=checkbox] {
        display:none;
    }
    input[type=checkbox] + label { 
        cursor: pointer;
        padding: 0px 0px 0px 34px;
        background: url('../../images/chk_off.png') no-repeat;
        background-size: 26px 26px;
    }
    input[type=checkbox]:checked + label {
        background: url('../../images/chk_on.png') no-repeat;
        background-size: 26px 26px;
    }

    .btn {
        width: 100%;
        margin-top: 50px;
        padding: 0;
    }

    .btn input {
        width: 100%;
        background: #d8b274;
        color: #fff;
        border: none;
        font-size: 1.125em;
        border-radius: 5px;
        height: 50px;
        cursor: pointer;
    }
    
    .bg-wave-pc {
        bottom: -1px !important;
        width: 100%;
    }
}
