@charset "utf-8";
body{margin:0;}
form{
	padding:0;
	margin:0;
}
*, ::after, ::before {
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
.loading_wrap{
	position:fixed;
	display:none;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: rgba(255,255,255,0.8);
	z-index:100000000;
}
.loading_wrap table{
	width:100%;
	height:100%;
}
.loading_wrap table tr td{
	width:100%;
	height:100%;
	font-size:16px;
	font-weight:600;
}
.txt_center{
	text-align:center;
}
.txt_right{
	text-align:right;
}

/* 메뉴 */
.head_wrap{
	height:50px;
	background:#000;
	color:#fff;
	text-align:center;
	font-size:1rem;
}
.head_wrap .menu_wrap{
	height:100%;
}
.head_wrap .menu_wrap ul{
	display:inline-block;
	height:100%;
	list-style:none;
	margin:0;
	padding:0;
}
.head_wrap .menu_wrap ul .menu{
	float:left;
	height:100%;
	padding:14px 20px;
}
.head_wrap .menu_wrap ul .menu a{
	color:#fff;
}
/* 맞춤법 검사기 */
.caculation_wrap{
	max-width:1110px;
	width:100%;
	margin:50px auto;
	background:#f6f6f6;
	box-shadow:1px 2px 3px #ddd;
	border:1px solid #ddd;
}
.caculation_wrap .head{
	width:100%;
	font-size:24px;
	font-weight:600;
	padding:30px;
	margin:0;
	background:#fff;
	color:#8187dd;
	position:relative;
	z-index:2;
}
.caculation_wrap .content{
	width:100%;
	padding: 15px 30px;
	display:inline-block;
}
.caculation_wrap .content .input_text{
	width:100%;
	height:300px;
	padding:15px;
	display:inline-block;
	line-height:1.5;
	resize: none;
	overflow-y:scroll;
}
.caculation_wrap .btn_wrap{
	width:100%;
	padding: 15px 30px 30px;
}
.caculation_wrap .btn_wrap .btn_submit{
	width: 100%;
    font-size: 24px;
    font-weight: 600;
    padding: 10px;
    background: #009fff;
    color: #fff;
    border: none;
}
.caculation_wrap .input_wrap{
	position:relative;
	width:100%;
	height:595px;
	z-index:1;
}
.caculation_wrap .input_wrap iframe{
	position:absolute;
	top: -89px;
    height: 690px;
	z-index:0;
}
.caculation_wrap .result_wrap{
	width:calc(100% - 60px);
	margin:auto;
	font-size:18px;
	padding: 30px;
	font-weight:400;
	line-height:2;
	background:#fff;
	color: #8187dd;
	font-weight:600;
	margin-bottom:30px;
}
.add_content {
    width: 100%;
    padding: 30px;
    background: #fff;
    border-top: 1px solid #ddd;
}
.add_content h2 {
    margin: 0;
    font-size: 20px;
    margin-top: 30px;
}
.add_content h2:first-child {
    margin-top: 0;
}
.add_content p {
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
}
@media(max-width:1110px){
	.caculation_wrap{
		margin:auto;
		border:none;
	}
	.caculation_wrap .input_wrap{
		height: 466px;
	}
	.caculation_wrap .input_wrap iframe{
		top:-44px;
		height: 510px;
	}
}