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

[lang="en"] {font-family: 'Titillium', sans-serif;}

.width-full{
  width: auto;
}
.height-full{
  height: 100%;
}
.full{
  width: auto;
}
.wrap{
  max-width: 1600px;
  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: 55px;
}
.h2{
  font-size: 45px;
}
.h3{
  font-size: 35px;
}
.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;
  width: 160px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
}
.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: 30px;
  height: 20px;
  display: block;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  box-sizing: border-box;
  align-items: center;
  display: none;
}
.ham::before{
  content: '';
  width: 100%;
  height: 1px;
  background-color: white;
  display: block;
}
.ham_close {
  display: none;
}