/* LESS Document */
/*+++++++++++++++++++++++++++++++++++++++++++
	sortBtn
+++++++++++++++++++++++++++++++++++++++++++ */
.sortBtn {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 128px 0 16px;
}
@media screen and (max-width: 767px) {
  .sortBtn {
    gap: 12px;
    margin-top: 60px;
  }
}
.sortBtn a {
  padding: 6px 32px;
  border: #3B8B8B 2px solid;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 700;
  background: #FFF;
  color: #000;
  line-height: 1.2;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .sortBtn a {
    padding: 6px 16px;
    font-size: 4vw;
  }
}
.sortBtn a[data-sort="NEWS"] {
  border-color: #1389EA;
}
.sortBtn a[data-sort="RECRUIT"] {
  border-color: #F36E36;
}
.sortBtn a:hover,
.sortBtn a.current {
  background: #3B8B8B;
  color: #FFF;
}
.sortBtn a:hover[data-sort="NEWS"],
.sortBtn a.current[data-sort="NEWS"] {
  background: #1389EA;
}
.sortBtn a:hover[data-sort="RECRUIT"],
.sortBtn a.current[data-sort="RECRUIT"] {
  background: #F36E36;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	newsList
+++++++++++++++++++++++++++++++++++++++++++ */
.newsList {
  padding: 10px 30px;
  background: #FFF;
  box-shadow: 0 0 10px rgba(129, 129, 129, 0.25);
}
@media screen and (max-width: 767px) {
  .newsList {
    padding: 10px 15px;
  }
}
.newsList a {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 43px 15px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .newsList a {
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 10px 30px 10px 0;
    position: relative;
  }
}
.newsList a:not(:first-child) {
  border-top: #EAEAEA 1px solid;
}
.newsList a:hover .newsTitle {
  color: #3B8B8B;
}
.newsList a:hover i {
  transform: translate(10px, 0);
}
.newsList a .newsTitle {
  flex: 1;
  color: #000;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .newsList a .newsTitle {
    flex-basis: 100%;
  }
}
.newsList a i {
  transition: 0.2s;
  color: #3B8B8B;
}
@media screen and (max-width: 767px) {
  .newsList a i {
    position: absolute;
    top: 50%;
    right: 0;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	time
+++++++++++++++++++++++++++++++++++++++++++ */
time {
  width: 92px;
  font-size: 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #707070;
}
@media screen and (max-width: 767px) {
  time {
    font-size: 3.6vw;
    width: auto;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	tag
+++++++++++++++++++++++++++++++++++++++++++ */
.tag {
  min-width: 110px;
  padding: 3px 5px;
  background: #3B8B8B;
  color: #FFF;
  text-align: center;
  border-radius: 4px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .tag {
    min-width: 15vw;
    padding: 5px 20px;
  }
}
.tag[data-tag="NEWS"] {
  background: #1389EA;
}
.tag[data-tag="RECRUIT"] {
  background: #F36E36;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	pagenation
+++++++++++++++++++++++++++++++++++++++++++ */
.pagenation {
  margin: 50px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: center;
  text-align: center;
}
.pagenation a,
.pagenation span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 10px 10px;
  line-height: 1;
  text-decoration: none;
  font-weight: 400;
  border-radius: 5px;
  border: #C0D7D7 1px solid;
  background: #F5FAFA;
  color: #003D3D;
}
.pagenation a:hover,
.pagenation span:hover {
  background: rgba(59, 139, 139, 0.3);
}
.pagenation a.current,
.pagenation span.current {
  background: #3B8B8B;
  color: #FFF;
}
.pagenation a i,
.pagenation span i {
  position: relative;
  top: 2px;
}
.pagenation span {
  background: #EEE;
  border-color: #EEE;
  color: #ADADAD;
  pointer-events: none;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	returnBtn
+++++++++++++++++++++++++++++++++++++++++++ */
.returnBtn {
  text-align: center;
  clear: both;
}
.returnBtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 296px;
  height: 56px;
  margin: 50px 0 0;
  border-radius: 8px;
  text-decoration: none;
  background: #3B8B8B;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .returnBtn a {
    width: max-content;
    height: auto;
    padding: 10px 30px;
    font-size: 3.6vw;
  }
}
.returnBtn a:hover {
  opacity: 0.7;
}
