/* 공통스타일 class */
html,body{
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
}
.width-full{
  width: auto;
}
.height-full{
  height:100%;
}
.wrap{
  width: 1200px;
  margin: 0 auto;
}
.hide{
  display: none; /* 안보이게 */
}
.rbox{
  width: 300px;
  height: 300px;
  background-color: #eee;
  border-radius: 20px;
  text-align: center;
}
.bgimg{
  background-repeat: no-repeat;
  background-size: 61%;
  background-position-x: 86%;
  background-position-y: 10%;
}

.padding50{
  padding-top: 50px;
  padding-bottom: 50px;
}
.paddingT50{
  padding-top: 50px;
}
.paddingT100{
  padding-top: 100px;
}
.paddingB50{
  padding-bottom: 50px;
}
.paddingB100{
  padding-bottom: 100px;
}
.marginT50{
  margin-top: 50px;
}
.marginT100{
  margin-top: 100px;
}
.marginB50{
  margin-bottom: 50px;
}
.marginB100{
  margin-bottom: 100px;
}
.flex{
  display: flex;
}
.flex-center{
  justify-content: center;
}
.flex-between{
  justify-content: space-between;
}
.flex-align-center{
  align-items: center;
}
.flex-column{
  flex-direction: column;
}
.text-center{
  text-align: center;
}
.h1{
  font-size: 55px;
}
.h2{
  font-size: 3rem;
}
.h3{
  font-size: 2.3rem;
}
.h4{
  font-size: 25px;
}
.h5{
  font-size: 20px;
}
.p{
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}
.block{
  display: block;
}
.more{
  border: 1px solid;
  display: inline-block;
  width: 160px;
  height: 36px;
  text-align: center;
  line-height: 36px;
}
.moreCir{
  font-size: 0;
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.moreCir::before{
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  width: 10px;
  height: 10px;
  display: block;
  transform: translateX(-4px) rotate(45deg);
}
.border-color{
  border-color:red;
}










