body{
    font-family:'Noto Sans KR','Malgun Gothic', '맑은 고딕', sans-serif;
}
/* 인풋박스 */
.input{
    width: 100%;
    margin-top: 10px;
    border: 1px solid #dadddd;
    height: 50px;
    line-height: 36px;
    outline: 0;
    padding: 0 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -o-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    position: relative;
    outline-style: none;
    box-sizing : border-box;
}
.input_box{
    text-align: left;
    margin-top: 20px;
}
label{
    font-size: 14px;
}
textarea{
    border: 1px solid #dadddd;
    width: 100%;
    margin-top: 10px;
    height: 200px;
    line-height: 36px;
    outline: 0;
    padding: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -o-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    position: relative;
    outline-style: none;
    box-sizing : border-box;
    resize: none;
}
.p_btn{
    display: inline-block;
    background: #e76363;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 300;
    height: 30px;
    transition: 0.2s all;
    font-size: 16px;
}
.p_btn:hover{
    background: #df4a4a;
}
.table{
    border-top: 2px solid #232832;
}
.table_title{
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}
.table tr{
    border-bottom: 1px solid #ddd;
}
.table tr td{
    line-height: 24px;
    padding: 15px;
}
.table tr td img{
    width: 100%;
}
.table_contents_box tr{
    border: none;
}
.table_contents_box{
    border-bottom: 1px solid #ddd;
}
.unit{
    color: #e76363;
    margin-right: 15px;
    font-size: 16px;
    font-weight: normal;
}
.link{
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.btn_wrap{
    display: flex;
    justify-content: end;
}
.red_btn{
    width: fit-content;
    padding: 10px 12px;
    background: #e76363;
    border-radius: 5px;
    color: #fff;
}
.mt20{
    margin-top: 20px;
}
.contents_title_box{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}
.contents_title{
    font-size: 18px;
    text-align: center;
    margin: 0 auto;
    padding-left: 25px;
    position: relative;
}
.contents_title:after {
    background: #e76363;
}
.contents_title:after{
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    border-radius: 50%;
    top: 8px;
}