@charset "utf-8";

.contact-contents {
    padding-top: 36.5854vw;
    background-color: #2d3788;
}

.contact-contents .inner {}

.contact-contents h2 {
    font-size: 3.4146vw;
    font-weight: 500;
    color: #6fff00;
    margin-bottom: 9.7561vw;
}

.contact-contents .emp {
    color: #fff;
    font-size: 8.0488vw;
    font-weight: 600;
    margin-bottom: 14.1463vw;
}
.contact-contents form {
    padding-bottom: 18.2927vw;
}

/*INPUT*/
.holder {
    height: 12.1951vw;
    margin-bottom: 3.6585vw;
}

.input-holder {
    height: 12.1951vw;
    position: relative;
}

 .input {
    width: 100%;
    height: 12.1951vw;
    font-size: 3.9024vw;
    padding: 3.6585vw 4.8780vw 0;
    border-radius: 0.4878vw;
    box-sizing: border-box;
    background-color: #3c46b9;
}

.input:not(:placeholder-shown).input:not(:focus) + .placeholder {
    transform: scale(.6000) translateY(-3.6585vw) translateX(-2.9268vw);
    color: #fff;
}

.input:not(:placeholder-shown).input:not(:focus) {
    color: #fff;
}


.input:focus {
    background-color: #fff;
    color: #2d3788;
}

.input:focus + .placeholder {
    transform: scale(.6000) translateY(-3.6585vw) translateX(-2.9268vw);
    color: #2d3788;
    font-weight: 500;
}

.input-holder .placeholder {
    font-size: 3.9024vw;
    height: 12.1951vw;
    line-height: 12.1951vw; 
    position: absolute;
    top: 0;
    left: 4.8780vw;
    color: #fff;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/*SELECT*/

.custom-select {
    width: 100%;
    position: relative;
    font-family: Arial;
    margin-bottom: 1.2195vw;
}

.custom-select select {
    display: none;
    /*hide original SELECT element:*/
}

.select-selected {
    width: 100%;
    height: 12.1951vw;
    background-color: #3c46b9;
    line-height: 12.1951vw;
    color: #fff;
    padding: 0 4.8780vw;
    border: 0.1220vw solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    font-size: 3.9024vw;
    border-radius: 0.4878vw;
    margin-bottom: 3.6585vw;
}

/*화살표 스타일*/
.select-selected:after {
    position: absolute;
    content: "";
    display: block;
    top: 4.6341vw;
    right: 3.6585vw;
    width: 2.9268vw;
    height: 2.9268vw;
    background-image: url(../images/contact/arrow_d.png);
    background-repeat: no-repeat;
    background-size: 2.9268vw;
    background-position: left top;
}

/*point the arrow upwards when the select box is open (active):*/

/*style the selected item:*/

.select-items div {
    width: 100%;
    height: 12.1951vw;
    background-color: #3c46b9;
    line-height: 12.1951vw;
    color: #fff;
    padding: 0 4.8780vw;
    border: 0.1220vw solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    font-size: 3.9024vw;
    background-color: #fff;
    color: #3c46b9;
}

/*선택했을때 박스*/
.select-selected.select-arrow-active {
    border-radius: 0.4878vw 0.4878vw 0 0;
}
/*선택했을때 화살표*/
.select-selected.select-arrow-active:after {
    /*content: "";
            display: block;
            width: 2.9268vw;
            height: 2.9268vw;*/
    background-image: url(../images/contact/arrow_u.png);


}

/*옵션 스타일*/
.select-items {
    position: absolute;
    background-color: transparent;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-items div:last-child {
    border-radius: 0 0 0.4878vw 0.4878vw;
}


/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

/*.select-items div:hover,
        .same-as-selected {
            background-color: rgba(0, 0, 0, 0.1);
        }*/



/*TEXTAREA*/
.textarea-wrap {}
.textarea-holder {
    position: relative;
}
.textarea {
    width: 100%;
    height: 31.7073vw;
    padding: 6.0976vw 4.8780vw;
    border-radius: 0.4878vw;
    box-sizing: border-box;
    background-color: #3c46b9;
    border: 0;
    color: #fff;
    resize: none;
    font-weight: bold;
    font-size: 3.9024vw;
    /*overflow-y: scroll;*/
}

.textarea:not(:placeholder-shown).textarea:not(:focus) + .placeholder {
    transform: scale(.7000) translateY(-3.6585vw) translateX(-2.9268vw);
    color: #fff;
}
.textarea:not(:placeholder-shown).textarea:not(:focus) {
    color: #fff;
}

.textarea:focus {
    background-color: #fff;
    color: #3c46b9;
}

.textarea:focus + .placeholder {
    color: #3c46b9;
    transform: scale(.7000) translateY(-3.6585vw) translateX(-2.9268vw);
    font-weight: 500;
}

.textarea-holder .bg-question {
    width: calc(100% - 3.6585vw);
    height: 6.0976vw;
    background-color: #3c46b9;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0.4878vw;
    /*outline: 1px solid red;*/
}

.textarea-holder .placeholder {
    font-size: 3.9024vw;
    height: 12.1951vw;
    line-height: 12.1951vw;
    position: absolute;
    top: 0;
    left: 4.8780vw;
    color: #fff;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}



/*CHECKBOX*/
.checkbox-wrap {
    width: 100%;
    /*outline: 0.1220vw solid red;*/
    height: 5.8537vw;
    padding-top: 7.3171vw;
    padding-bottom:7.3171vw;

}

#introduction {
    display: none;
}

#introduction + label {
    display: flex;
    width: 100%;
    height: 5.8537vw;
    /*outline: 0.1220vw solid lime;*/
}

#introduction + label div {
    width: 5.8537vw;
    height: 5.8537vw;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0 0.3659vw 1.2195vw rgba(0, 0, 0, .16);
    position: relative;
}

#introduction + label div > span {
    display: block;
    width: 2.9268vw;
    height: 2.9268vw;
    border-radius: 100%;
    background-color: #2d3788;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
}

#introduction + label p {
    font-size: 4.3902vw;
    line-height: 5.8537vw;
    color: #fff;
    margin-left: 1.9512vw;
}

#introduction:hover + label div > span {
    opacity: 50%;
}

#introduction:checked + label div > span {
    opacity: 100%;
}


.boxCheck {
    width: 100%;
    color: #fff;
    border: 0.2439vw solid #a1a9e0;
    border-radius: 0.4878vw;
    box-sizing: border-box;
    font-family: "맑은 고딕"
}

.boxCheck .title {
    width: 100%;
    border-bottom: 0;
    position: relative;
}

.boxCheck .title .inner {
    width: 66.8293vw;
    margin: 0 auto;
    padding: 7.3171vw 0;
}

.boxCheck .title h5 {
    font-size: 3.9024vw;
    font-weight: 500;
    margin-bottom: 4.8780vw;
}

.boxCheck .title p {
    font-size: 3.9024vw;
}
.boxCheck .title .arrow {
    display: block;
    width: 2.6829vw;
    height: 2.6829vw;
    background-image: url(../images/contact/arrow_d.png);
    background-size: 2.6829vw;
    position: absolute;
    top: 8.5366vw;
    right: 5.4878vw;
}
.boxCheck .des {
    display: none;
}
.boxCheck .des ul {
    width: 66.8293vw;
    margin: 0 auto;
    padding-top: 7.3171vw;
}

.boxCheck .des ul li {
    margin-bottom: 7.3171vw;
}

.boxCheck .des ul li h6 {
    font-size: 3.9024vw;
    line-height: 3.9024vw;
    margin-bottom: 4.8780vw;
    font-weight: 500;
    word-break: keep-all;
}

.boxCheck .des ul li p {
    font-size: 3.9024vw;
    font-weight: 400;
    word-break: keep-all;
}
.boxCheck .des > div {
    width: 66.8293vw;
    margin: 0 auto;
    padding: 7.3171vw 0;
}
.boxCheck .des > div p {
    font-size: 3.9024vw;
    font-weight: 400;
    margin-bottom: 4.8780vw;
    word-break: keep-all;
}
.boxCheck .des > div p:last-child{
    margin-bottom: 0;
}

#privacy {
    display: none;
}

#privacy + label {
    display: flex;
    width: 100%;
    height: 5.8537vw;
    /*outline: 0.1220vw solid lime;*/
}

#privacy + label div {
    width: 5.8537vw;
    height: 5.8537vw;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0 0.3659vw 1.2195vw rgba(0, 0, 0, .16);
    position: relative;
    cursor: pointer;

}

#privacy + label div > span {
    display: block;
    width: 2.9268vw;
    height: 2.9268vw;
    border-radius: 100%;
    background-color: #2d3788;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
}

#privacy + label p {
    font-size: 4.3902vw;
    line-height: 5.8537vw;
    color: #fff;
    margin-left: 1.9512vw;
}

#privacy:hover + label div > span {
    opacity: 50%;
}

#privacy:checked + label div > span {
    opacity: 100%;
}



#privacy {
    width: 100%;
    color: #fff;
    border: 0.2439vw solid #a1a9e0;
    border-radius: 0.4878vw;
    box-sizing: border-box;
}


/*제출버튼*/
.btn-send {
    display: flex;
    justify-content: flex-end;
    padding-top: 9.2683vw;
}
.btn-send .send{
    width: 29.2683vw;
    height: 12.1951vw;
    background-color: #6fff00;
    border-radius: 0.4878vw;
    background-image: url(../images/contact/bg_send.png);
    background-size: 5.4878vw;
    background-repeat: no-repeat;
    background-position: center;
   
}
.btn-send .send[value] {
    font-size: 0;
}


