@charset 'utf-8';

body{
    color: #424242;
    letter-spacing: -1px;
}

.empty{
    height: 67px;
}

/*1. 배너영역*/
.banner{
    width: 100%;
    background-color: #488bb7;
}
.banner_wrap{
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}
.banner h2{
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0px;
}



/*2. 콘텐츠 영역*/
.contents{
    width: 90%;
    margin: 0 auto;
    padding: 60px 0 80px;
}
.contents h2{
    text-align: center;
    font-size: 32px;
}
.contents .deco_line{
    width: 40px;
    height: 1px;
    background-color: #e1e1e1;
    margin: 40px auto 32px;
}
.contents .deco_line+p{
    line-height: 1.5;
}
.contents .deco_line+p+p{
    color: #616161;
    line-height: 1.75;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    -webkit-word-break: keep-all;
    word-break: keep-all;
    background-color: #e9e9e9;
    padding: 32px 0;
    margin-top: 40px;
}
.contents .deco_line+p+p img{
    padding-top: 2px;
}

/*폼영역*/
/* 폼 요소 css 초기화 */
input[type=submit]{
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
}
select{
    padding-right: 28px;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     border-radius: 0;
     -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     -o-border-radius: 0;
     box-sizing: border-box;
     background: url(../images/arrow.png) no-repeat 97% 50%/15px auto;
}

form{
    margin-top: 60px;
}
form li{
    margin-bottom: 20px;
}
form li label{
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}
form li label span{
    color: #FF5A51;
}
form li input, select, textarea{
    border: 1px solid #bdbdbd;
    width: 100%;
    height: 36px;
    padding-left: 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 12px;
    font-size: 14px;
    color: #616161;
    font-family: 'Noto Sans KR', sans-serif;
}
form li select{
    font-size: 14px;
    color: #616161;
    padding-left: 10px;
}
textarea{
    height: 120px;
    padding-top: 12px;
}
form li input[type=checkbox]{
    width: 16px;
    height: 16px;
    margin-top: 3px;
    margin-right: 4px;
}
.view_more{
    margin-left: 8px;
    text-decoration: underline;
    color: #488bb7;
    cursor: pointer;
    font-size: 14px;
}
.toggle_info{
    margin-top: 12px;
    padding: 40px 20px;
    background-color: #f4f4f4;
    display: none;
}
.toggle_info .title{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.toggle_info h4{
    margin-top: 36px;
    margin-bottom: 12px;
    font-weight: 500;
}
.toggle_info ul{
    padding-top: 6px;
}
.toggle_info li{
    font-size: 14px;
    margin-left: 24px;
    margin-bottom: 12px;
    list-style: outside;
    color: #616161;
    line-height: 1.5;
}
.toggle_info li:last-child{
    margin-bottom: 0;
}
.toggle_info h4+p{
    color: #616161;
    font-size: 14px;
    line-height: 1.75;
    -ms-word-break: keep-all;
    word-break: keep-all;
    margin-left: 8px;
}
.toggle_info .more{
    line-height: 1.5;
    margin-top: 40px;
}
.toggle_info .more a{
    text-decoration: underline;
    color: #488bb7;
}

.btn{
    width: 100%;
    height: 60px;
    color: #fff;
    background-color: #488bb7;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}




@media all and (min-width:768px){
    /*1. 배너영역*/
    .banner_wrap{
        width: 200px;
        padding: 80px 0;
        text-align: center;
    }

    
    /*2. 콘텐츠 영역*/
    .contents{
        padding: 80px 0 100px;
    }
    .contents h2{
        text-align: left;
    }
    .contents .deco_line{
        width: 100%;
        height: 1px;
        background-color: #e1e1e1;
        margin: 32px auto 28px;
    }
    .contents .deco_line+p+p{
        /* text-align: left; */
        font-size: 16px;
    }  
}




@media all and (min-width:1132px){
    /*헤더영역*/
    header{
        /*포지션*/
        position: static;
        height: 76px;
        background-color: #fff;
    }
    
    .empty{
        height: 0px;
    }
    
    /*2. 콘텐츠 영역*/
    .contents{
        width: 1132px;
        padding: 100px 0 140px;
    }
    form ul{
        width: 70%;
        margin: 0 auto;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    form li{
        width: 49%;
    }
    form li:nth-child(7){
        width: 100%;
    }
    form li:last-child{
        width: 100%;
    }
    .toggle_info ul{
        display:block;
        margin-left: 0;
    }
    .toggle_info ul li{
        width: 100%;
    }
    .btn{
        width: 70%;
        display: block;
        margin: 20px auto 0;
    }
}