@charset "utf-8";

/* select 태그 */
select{
    width: 100px;
    padding: 0.5em 0.2em;
    border: 1px solid #999;
    background: url('/img/input/select_arrow.svg') no-repeat 94% 50%;
    background-size: 10px;
    border-radius: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
select::-ms-expand {
    display: none;
}
/*// select 태그 */
/* input, textarea 태그 */
input, textarea{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    outline: none;
    border: 1px solid #000;
    box-sizing: border-box;}

/*// input, textarea 태그 */
/* checkbox */
input[type="checkbox"]{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 1px solid #000;
    background-color: #fff;
	cursor: pointer;
    border-radius: 3px;
    margin: 0;
}
 input[type="checkbox"]:checked{
    background-image: url('/img/input/checkbox_btn.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 49% 49%;     
}
/*// checkbox */
/* radio */
input[type="radio"]{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 1px solid #000;
    border-radius: 100%;
    background-color: #fff;
	cursor: pointer;
}
input[type="radio"]:checked{
    background-color: #0075ff;
    -webkit-box-shadow: 0px 0px 0px 2px #fff inset;
    box-shadow: 0px 0px 0px 2px #fff inset;
}
/*// radio */
input[type="file"]{border: 0;}
input[type="submit"]{cursor: pointer;}



/**/

.line_01{
    word-wrap: break-word;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    word-wrap: normal;
    max-height: 1.2rem;
    line-height: 1.2rem;
}
.line_02{
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    word-wrap: normal;
}
.line_03{
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    word-wrap: normal;
}

