/* 공통스타일 class*/
body{
  font-family: 'Noto Sans KR', sans-serif;
}

.width-full{
  width: auto;
}
.height-full{
  /*! height: 100%; */
}
.full{
  width: auto;
}
.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-position-y: 10%;
  background-size: 61%;
  background-repeat: no-repeat;
  background-position-x: 86%;
}
.padding50{
  padding-top: 50px;
  padding-bottom: 50px;
}
.paddingT50{
  padding-top: 50px;
}
.paddingT100{
  padding-top: 100px;
}
.paddingB50{
  padding-bottom: 50px;
}
.paddingB100{
  padding-bottom: 100px;
}
.margin50{
  margin-top: 50px;
  margin-bottom: 50px;
}
.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: 50px;
}
.h2{
  font-size: 40px;
}
.h3{
  font-size: 30px;
}
.h4{
  font-size: 20px;
}
.h5{
  font-size: 15px;
  line-height: 36px;
}
.p{
  font-size: 13px;
  line-height: 20px;
  color: #777;
}
.block{
  display: block;
}
.more{
  border: 1px solid;
  width: 125px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-size: 13px;
}
.moreCir{
  border: 1px solid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.moreCir::before{
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  width: 5px;
  height: 5px;
  display: block;
  transform: translateX(-1px) rotate(45deg);
}
.ham{
  font-size: 0;
  width: 21px;
  height: 21px;
  display: block;
  border-top: 3px solid black;
  border-bottom: 3px solid black;
  box-sizing: border-box;
  align-items: center;
  display: flex;
}
.ham::before{
  content: '';
  width: 100%;
  height: 3px;
  background-color: black;
  display: block;
}
.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
}