/* 공통스타일 class */
body{
  font-family: 'Noto Sans KR', sans-serif;
}
.width-full{
  width: auto;
}
.height-full{
  /*! height:100%; */
}
.wrap{
  max-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: 45px;
}
.h3{
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 20px;
}
.h4{
  font-size: 25px;
}
.h5{
  font-size: 20px;
}
.p{
  font-size: 14px;
  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);
}
.ham{
  font-size: 0;
  width: 21px;
  height: 21px;
  display: block;
  border-top: 3px solid;
  border-bottom: 3px solid;
  box-sizing: border-box;
  display: flex;
  align-items: center; 
  display: none;
}
.ham::before{
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background-color: black;
  transform: translateY(-0.5px);
}
/* .breadcrumb {
  padding:8px 15px;
  margin-bottom:20px;
  list-style:none;
  background-color:#f5f5f5;
  border-radius:4px
}
.breadcrumb>li {
  display:inline-block
}
.breadcrumb>li+li:before {
  padding:0 5px;
  color:#ccc;
  content:"/\00a0"
}
.breadcrumb>.active {
  color:#777
} */










