@charset "UTF-8";

/* tag */
.tag {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  width: 88px;
  line-height: 35px;
  background: #d27243;
  text-align: center;
}
.tag.type01 {
  background: #147fd1;
}
/* flag */
.flag {
  border: 1px solid #c6c6c6;
  color: #e97366;
  background: #fff;
  font-weight: 800;
  width: 70px;
  line-height: 28px;
  text-align: center;
  display: inline-block
}
.flag.today {
  border-color: #ff7044;
}
.flag.type02 {
  border-color: #ff7044;
  font-weight: inherit;
}
.flag.type03 {
  border-color: #b4b4b4;
  background: #b4b4b4;
  color: #fff;
  font-weight: inherit;
}
.flag.type04 {
  border-color: #228b80;
  background: #228b80;
  color: #fff;
  font-weight: inherit;
}
/* 서브페이지 공통 레이아웃 */
.content_wrap {
  max-width: 1340px;
  margin: 0px auto;
}
.content_wrap .content_inner {
  display: flex;
  justify-content: space-between;
}
/* 게시판 공통 */
.notice_wrap {
  padding-top: 50px;
}
.board_wrap .board_page {
  margin-bottom: 20px;
}
.board_wrap .board_page p {
  display: inline-block;
  font-size: 19px;
  font-weight: 500;
}
.board_wrap .board_page p:first-of-type {
  margin-right: 22px;
}
/* 글자 색상 */
.blue {
  color: #1056ae;
}
/* 갤러리 공통 */
.gallery_table_wrap>ul>li {
  float: left;
  width: calc((100% - 48px) / 3);
  margin-right: 24px;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  margin-bottom: 30px;
}
.gallery_table_wrap>ul>li:nth-of-type(3n) {
  margin-right: 0;
}
.gallery_table_wrap>ul>li:hover {
  border-color: #f97676;
}
.gallery_table_wrap>ul>li .gallery_inner .flag {
  position: absolute;
  z-index: 11;
}
.gallery_table_wrap>ul>li .gallery_inner .img_wrap{
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  position: relative;
  overflow: hidden;
  padding-bottom: 61.739%;
}
.gallery_table_wrap>ul>li:hover .gallery_inner .img_wrap>img {
  transform: scale(1.1) translate(-50%, -50%);
}
.gallery_table_wrap>ul>li .gallery_inner .img_wrap>img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left top;
  transition: all 0.3s;
}
.gallery_table_wrap>ul>li.end .gallery_inner .img_wrap {
  filter: brightness(30%);
}
.gallery_table_wrap>ul>li .gallery_inner .text_wrap {
  border: 1px solid #e2e2e2;
  padding: 23px 20px;
}
.gallery_table_wrap>ul>li .gallery_inner .text_wrap .tit {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color:#000;
}
.gallery_table_wrap>ul>li .gallery_inner .text_wrap .calendar {
  color: #4d619a;
  line-height: 22px;
}
/* /추가/ */
input[type="checkbox"]{
  appearance: checkbox;
}
.gallery_table_wrap>ul>li .gallery_inner .bottom_txt p{
  display: inline-block;
  color: #222;
}
.gallery_table_wrap>ul>li .gallery_inner .bottom_txt p > span{
  color: #4d619a;
}
.gallery_table_wrap>ul>li .gallery_inner .bottom_txt p:not(:last-child)::after{
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 0 8px -1px 11px;
  background: #c9c9c9;
}
.gallery_table_wrap>ul>li .checkbox02{
  position: absolute;
  top:10px;
  right:10px;
  z-index: 5;
}
.gallery_table_wrap>ul>li .gallery_inner .checkbox input[type="checkbox"]{
  vertical-align: top;
}
.gallery_table_wrap>ul>li{
  width: calc((100% - 48px) / 4);
  margin-right: 16px;
}
.gallery_table_wrap>ul>li:nth-of-type(3n){
  margin-right: 16px;
}
.gallery_table_wrap>ul>li:nth-of-type(4n){
  margin-right: 0px;
}