.competition {
  width: 100%;
	display: flex;
  padding: 0 20px;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	background:#fff url('/common/images/yellow_bg.png') repeat-x left -50px;
  box-sizing: border-box;
}

.search_form {
	position: fixed;
	top: 56px;
	width: 100%;
	margin: 0 -20px;
	max-width: 800px;
	padding: 35px 20px;
	background: var(--yellow);
	box-sizing: border-box;
}
.search_form .box {
	background: var(--white);
	border-radius: 7px;
	overflow: hidden;
	padding: 0 20px;
	box-sizing: border-box;
}
.search_form input {
	flex: 1;
	height: 40px;
	color: var(--sub_text_02);
	font-size: 14px;
}
.search_form button.searchIcon {
	text-indent: -99999px;
	background:url('/common/images/searchIcon.svg') no-repeat left top;
	width:19px;
	height:19px;
}

.year_pos {
  display: flex;
  height: 40px;
  padding: 30px 0px 0;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
  .year_pos button {
    color: var(--text);
    font-size: 14px;
    background: transparent;
  }
  .year_pos button.active {
    padding: 8px 10px;
    border-radius: 5px;
    background:#090909;
    color:#fff;
  }

.area_pos {
  display: flex;
  width: 100%;
  padding: 14px 30px;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--underline);
  background: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
}
  .area_pos select {
    color: var(--text, #090909);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border:0;
    background:none;
    width:100%;
    outline: none;;
  }

#competitionList {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

#competitionList .list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;

  border-radius: 10px;
  border: 1px solid var(--underline, #F5F7FA);
  background: var(--white, #FFF);

  /* contents_drop */
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}
#competitionList .list .thumb {
  position: relative;
  width: 100%;
  border-radius: 10px;
}
#competitionList .list img {
  width:100%;
  border: 1px solid var(--underline);
}
#competitionList .swiper-pagination-bullet-active {
  background-color: var(--yellow);
}



#competitionList .list .mov {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
  width:100%;
  border-radius: 10px;
}

#competitionList .list .mov embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


#competitionList .list .mov iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#competitionList .list .text_pos {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
#competitionList .list .text_pos .date {
  width: 100%;
}
#competitionList .list .date > div {
  gap: 10px;
}
#competitionList .list .writer span {
  color: var(--subtext_01);
  font-size: 12px;
}
#competitionList .list .text_pos .date .more_box {
  position: relative;
}
#competitionList .list .text_pos .date .more_box .more_btn {
  display: block;
  width: 15px;
  height: 15px;
  background: url("/common/images/more-vertical.png")no-repeat 50% 50% / 100%;
  margin: 0 auto;
}
#competitionList .list .text_pos .date .more_box:hover ul {
  display: block;
}
#competitionList .list .text_pos .date .more_box ul {
  display: none;
  position: absolute;
  right: 0;
  width: 65px;
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  padding: 5px 20px;
  box-sizing: border-box;
}
#competitionList .list .text_pos .date .more_box ul li a {
  display: block;
  color: #363D47;
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
}
#competitionList .list .text_pos .desc {
  line-height: 1.3;
  font-size: 14px;
  font-weight: 400;
}

#competitionList .list .text_pos .btn_area {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
#competitionList .list .text_pos .btn_area img {
  width:32px;
  height:32px;
}
#competitionList .list .text_pos .btn_area button {
  flex: 1;
  height: 37px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  background: var(--yellow);
}

#competitionList .list .text_pos .write_pos {
  width: 100%;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--stroke, #E0E5EC);
  font-size: 12px;
}

#competitionList .list .text_pos .write_pos .comment {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: var(--subtext_01);
}

.comment span.commentCnt {
  background:url('/common/images/message.svg') no-repeat left 1px;
  padding-left:20px;
  font-size: 14px;
}

.comment span.likeCnt {
  background:url('/common/images/heart.svg') no-repeat left 1px;
  padding-left:20px;
  font-size: 14px;
}
.comment span.likeCnt.on {
  background:url('/common/images/heart_on.svg') no-repeat left 1px;
  font-size: 14px;
}
.comment span.share {
  background:url('/common/images/share.svg') no-repeat left 1px;
  padding-left:20px;
  font-size: 14px;
  cursor:pointer;
}
.comment span.share.iconOnly {
  display:inline-block;
  width:18px;
  height:18px;
  padding-left:0;
  background-position:center;
  background-size:18px 18px;
  vertical-align:middle;
}
.comment span.shingo {
  background:url('/common/images/icon-problem.png') no-repeat left 1px;
  padding-left:24px;
  font-size: 14px;
  cursor:pointer;
}


.cmt_list {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  background: var(--white);
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.05);
  z-index: 100000;
}
.cmt_list .scroll {
  width: 100%;
  padding: 0 20px 20px;
  overflow-y: auto;
  max-height: calc(100vh - 242px);
  box-sizing: border-box;
}
.cmt_list .top {
  font-size: 12px;
  color: var(--subtext_02);
  margin-bottom: 4px;
}
.cmt_list .top .date {
  color: var(--subtext_01);
}
.cmt_list .content {
  color: var(--subtext_02);
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
}
.cmt_list h2 {
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--stroke);
  margin-bottom: 30px;
}
.cmt_list .commentList {
  padding: 10px 0;
  border-top: 1px solid #e5e5e5;
}

.reply {
  background:url('/common/images/Forward.svg') no-repeat left 10px;
  padding-left:20px;
}

.cmt_list .commentList:first-child {
  border-top: 0;
}
.list .writer {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.list .writer .flex {
  flex: 1;
  gap: 5px;
  font-size: 14px;
  justify-content: end;
}
.cmt_list .commentList .writer .flex {
  column-gap: 0;
  row-gap: 4px;
  justify-content: flex-start;
}
.cmt_list .commentList .writer .date + .write {
  margin-left: 14px;
}
.list .writer .date {
  color: #9c9c9c;
  font-size: 13px;
}
.cmt_list .commentList .reply_btn button {
  background: #e5e5e5;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
}
.cmt_list textarea {
  display: block;
  width: 100%;
  height: 100px;
  resize: none;
  border-radius: 5px;
  background: var(--underline);
  padding: 12px 14px;
  border: 0;
  font-size: 14px;
  box-sizing: border-box;
}
.cmt_list .reply_write {
  gap: 10px;
  margin-bottom: 10px;
}
.cmt_list .reply_write textarea {
  flex: 1;
}
.cmt_list .reply_write button {
  background-color: var(--yellow)!important;
  padding: 0 10px!important;
}
.cmt_list .btn_area {
  gap: 10px;
}
.cmt_list .btn_area textarea {
  flex: 1;
}
.cmt_list .btn_area button {
  width: auto;
  padding: 0 10px;
  border-radius: 5px;
}


/*======================== 등록 ===================================*/
.competition_regist {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

.competition_regist div.line {
  display: flex;
  width:100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.competition_regist div.line div {
  width:100%;
}

.competition_regist .poster_img {
  position: relative;
}
.competition_regist .poster_img input {
  display: none;
}
.competition_regist .poster_img input + label {
  display: block;
  width: 100%;
  height: 52px;
  border-radius: 10px;
  background: var(--underline) url("/common/images/ic_gallery.svg")no-repeat 50% 50%;
}
.competition_regist .poster_img .preview {
  display: none;
  position: relative;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.competition_regist .poster_img .preview .img_list {
  display:block;
  width:100%;
  position:relative;
}
.competition_regist .poster_img .preview .img_list button {
  position:absolute;
  right:0;
  top:0;
  background:#000;
  color:#fff;
  width:20px;
  height:20px;

}

.competition_regist .poster_img .preview img {
  width: 100%;
}

.competition_regist .poster_img .preview .poster_title_preview {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(255,255,255,0.75);
}


.competition_regist div.line select {
  padding: 14px;
  border-radius: 10px;
  background: var(--underline);
  width: 100%;
  max-width: 800px;
  border: 0;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
.competition_regist div.line textarea {
  display: flex;
  padding: 14px;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: var(--underline);
  width:96%;
  max-width:800px;
  border:0;
  outline: none;
  color: #000;
  text-align: left;
  font-size: 16px;
  font-weight: 500;

  font-family: inherit;
}
.competition_regist div.line input[type='file'] {
  display:none;
}
.competition_regist div.line input {
  display: flex;
  padding: 14px;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: var(--underline);
  width:96%;
  max-width:800px;
  color: #000;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}
.competition_regist div.line input::-webkit-input-placeholder,
.competition_regist div.line textarea::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.5);
	font-weight: 400;
}
.competition_regist div.line input:-moz-placeholder,
.competition_regist div.line textarea:-moz-placeholder {
	color: rgba(0, 0, 0, 0.5);
	font-weight: 400;
	opacity: 1;
}
.competition_regist div.line input::-moz-placeholder,
.competition_regist div.line textarea::-moz-placeholder {
	color: rgba(0, 0, 0, 0.5);
	font-weight: 400;
	opacity: 1;
}
.competition_regist div.line input:-ms-input-placeholder,
.competition_regist div.line textarea:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.5);
	font-weight: 400;
}
.competition_regist div.submit {
  width:100%;
}


/* 커뮤니티 */
.searchForm {
  position: fixed;
  top: 56px;
  width: 100%;
  margin: 0 -20px;
  max-width: 800px;
  padding: 15px 20px;
  background: var(--yellow);
  z-index: 2;
  box-sizing: border-box;
}
.searchForm form {
  background: var(--white);
  border-radius: 7px;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
}
.searchForm input[type='text'] {
  flex: 1;
  max-width: calc(100% - 19px);
  height: 40px;
  color: var(--sub_text_02);
  font-size: 14px;
}
.searchForm button.searchIcon {
  text-indent: -99999px;
  background: url(/common/images/searchIcon.svg) no-repeat left top;
  width: 19px;
  height: 19px;
}


.community_list {
  width: 100%;
  padding: 70px 20px 0;
  align-items: start;
  box-sizing: border-box;
}
.community_regist {
  width: 100%;
  padding: 15px 0 0;
  box-sizing: border-box;
}

.category_pos {
  display: flex;
  width: 100%;
  padding: 14px 20px;
  align-items: center;
  gap: 25px;
  border-radius: 10px;
  border: 1px solid var(--underline, #F5F7FA);
  background: var(--white, #FFF);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  overflow-x: auto;
  box-sizing: border-box;
}
.category_pos > div {
  width: 100%;
  min-width: 300px;
}


.category_pos button {
  flex: 1;
  padding: 8px 10px;
  gap: 2px;
  color: var(--text, #090909);
  font-size: 14px;
  font-weight: 400;
  background:none;
  text-align: center;
  box-sizing: border-box;
}
.category_pos button.active {
  border-radius: 5px;
  background:#090909;
  color:#fff;
}

.align_pos {
  display: flex;
  padding: 0px 20px;
  align-items: center;
  gap: 4px;
  border-radius: 10px;
}
.align_pos select {
  outline: none;
  display: block;
  /* width: 100%; */
  border: 0;
  padding: 0 20px;
  background: url(/common/images/icon_sort.svg) no-repeat left top;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.content_pos {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.content_pos .writer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  font-size: 14px;
  text-align: left;
}
.content_pos .writer > .flex {
  gap: 5px;
  align-items: start;
  flex-direction: column;
}
.content_pos .writer .date {
  color: #9c9c9c;
}
.link {padding:10px;}
.content_pos .content {
  color: var(--subtext_02, var(--sub_text_02, #4B4B4B));
  font-size: 15px;
  font-weight: 500;
  width:100%;
}
.content_pos .content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.content_pos .content button {
  background: #e5e5e5;
  margin-top: 5px;
  float: right;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
}
.content_pos .content button:after {
  content: '더보기 +';
}
.content_pos .content.open p {
  display: block;
}
.content_pos .content.open button:after {
  content: '접기 -';
}
.list .content_pos .comment {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.list .content_pos .comment > .flex {
  gap: 15px;
}
.more {
  position: relative;
}
.more button {
  width: 20px;
  padding: 0;
  border: 0;
  background: transparent;
}
.more button img {
  width: 100%;
  border: 0!important;
}
.more:hover ul {
  display: block;
}
.more ul {
  display: none;
  position: absolute;
  right: 0;
  width: 50px;
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
  border-radius: 3px;
  padding: 5px;
  text-align: center;
  z-index: 3;
  box-sizing: border-box;
}
.more ul li {
  padding: 3px 0;
  font-size: 14px;
}


table.table {
  width:100%;
  max-width:800px;
  border-top: 1px solid #E0E5EC;
  border-collapse: collapse;
  border: 0;
  table-layout:fixed;
  margin-top:20px;
}

table.table thead , table.table tbody {
  width:100%;
}
table.table thead th {
	background: #F8F8F9;
	border-bottom: 1px solid #E0E5EC;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	padding: 11px 0;
}
table.table tbody td {
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	border-bottom: 1px solid #E0E5EC;
	padding: 10px 0;
  background:#fff;
}
table.table tbody td.ta_l {
  text-align:left;
  padding:0 10px;
}
table.table tbody tr {
  background:#fff;
}
table.table tbody tr:hover {
  background:#e5e5e5;
}


.pagenavi {
	margin-top: 0px;
  width:100%;
}
.pagenavi ol {
  display:flex;

	justify-content: center;
	text-align: center;
}
.pagenavi ol li {
	margin: 0 7.5px;
}
.pagenavi ol li.prev,
.pagenavi ol li.next{
	margin: 0;
}
.pagenavi ol li.prev a,
.pagenavi ol li.next a {
	width: 22px;
    height: 22px;
}
.pagenavi ol li img {
	vertical-align: 2px;
}
.pagenavi ol li a {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 34px;
	font-size: 16px;
	background: #fff;
	color: #000;
	border-radius: 5px;
}
.pagenavi ol li.this a {
	background: #FFC000;
	color: #000;
}


@media screen and (max-width: 480px) {
    .pagenavi ol li {
      margin: 0;
    }
    .pagenavi ol li.prev a,
    .pagenavi ol li.next a {
      width: 18px;
      height: 18px;
    }
    .pagenavi ol li a {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 14px;
    }
    table.table ._regdate_ , table.table  ._no_ {
      display:none;
    }
    table.table tbody td.ta_l {
      text-align:left;
      padding:10px ;
      font-size:15px;
    }
}
