body{
}
.wrap{
  margin: 0 auto;
  max-width: 1320px;
}

/* 타이틀 */
.figure{
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #f2f2f2;
}
.title_img{
  position: relative;
}
.title_a{
  position: absolute;
  left: calc(1320px - 887px);
  font-size: 0;
  bottom: 85px;
  width: 180px;
  height: 50px;
}

/* 폰트 */
li{
  list-style: none;
}
.h1{
  font-size: 64px;
}
.h2{
  font-size: 30px;
  margin-bottom: 30px;
}
.h3{
  font-size: 35px;
}
.h4{
  font-size: 34px;
}
.h5{
  font-size: 24px;
}
.h6{
  font-size: 14px;
}

.title-txt{
  font-size: 20px;
}
.prd-txt-wh{

  color: white;
}
.prd-txt-bl{

  color: #353537;
}
.moreH{
  font-size: 50px;
}
.moreP{
  font-size: 20px;
}
.storyH{
  font-size: 30px;
  padding-bottom: 15px;
  padding-top: 20px;
}
.storyP{
  font-size: 16px;
  line-height: 20px;
}
.story-cat{
  font-size: 40px;
}

/* 패딩 */
.padding50{
  padding: 50px;
}
.paddingT50{
  padding-top: 110px;
}
.paddingR50{
  padding-right: 50px;
}
.paddingB50{
  padding-bottom: 110px;
}
.paddingL50{
  padding-left: 50px;
}
.catpadding{
  padding-top: 30px;
  padding-bottom: 30px;
}
/* 마진 */
.margin50{
  margin: 50px;
}
.marginT50{
  margin-top: 50px;
}
.marginR50{
  margin-right: 50px;
}
.marginB50{
  margin-bottom: 50px 
}
.marginL50{
  margin-left: 50px;
}

/* 트랜스폼 */
.t80{
  transform: translateY(-20%);
}

/* 블럭,인라인 */
.block{
  display: block !important;
}

/* 정렬 */
.flex{
  display: flex;
}
.flexCenter{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.between{
  justify-content: space-between;
}
.flex-wrap{
  flex-wrap: wrap;
}
.center{
  justify-content: center;
}
.column{
  flex-direction: column;
}
.grid24{
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto auto auto auto;
}
.align-center{
  display: flex;
  align-items: center;
}

/* 텍스트정렬 */
.text-center{
  text-align: center;
}

/* 둥근모서리 */
.borderR20{
  border-radius: 20px
}

/* 라인 */
.line{

}

/* 안보이게 */
.hide{
  display: none;
}

/* 높이 */
.vh100{
  height: 100vh;
  box-sizing: border-box;
}
.h100{
  height: 100%;
}
.max-w{
  max-width: 1360px;
}

