@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&family=Noto+Sans+KR:wght@300&display=swap');
/* 모든 페이지에 적용되는 공통서식 */
body{
  background-color:#fff;
  font-family: 'Noto Sans KR', '맑은 고딕', sans-serif;
  font-size:12px;
  color:#333;
}

a{text-decoration:none;color:#333;}

/*모달서식*/
.modal{background-color: rgba(0,0,0,0.7);
  width: 100%; height: 100%;
  position: fixed; top:0px; left:0px;
  text-align: center;
  z-index: 1000;
  }
.inner{
  position: absolute;
  top:35%;
  left: 35%;}
.modal span{color:#333;
display:inline-block;
width:450px; height: 150px;
background-color: #fff;
line-height: 30px;
font-size: 16px;
padding-top: 100px;

}
  .modal p{
    width:450px;
    margin:0px auto;
    line-height: 50px;
    background-color: rgb(238,238,238);
    font-size: 14px;
    text-align: left;
  }
  .modal #c_btn{border:none;
  transform: translateX(240px);
  font-size: 16px;}
