.no-post {
  text-align: center;
  margin-top: 70px;
}

.search {
  padding-bottom: 40px;
  position: relative;
  text-align: right;
}
.search input {
  background-color: transparent;
  width: 343px;
  height: 50px;
  border: 1px solid #E8E8E8;
  padding: 14px 45px 14px 20px;
  border-radius: 8px;
  outline: none;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.7px;
}
.search input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.7px;
}
.search input::placeholder {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.7px;
}
.search button.search-btn {
  background-image: url("/img/common/search_icon.svg");
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 20px;
  top: 18px;
  border: none;
  background-color: transparent;
}

.notice-list {
  width: 100%;
  border-top: 3px solid #121212;
}
.notice-list li {
  border-bottom: 1px solid #E8E8E8;
  cursor: pointer;
}
.notice-list a {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  font-weight: 400;
  font-size: 1.8rem;
  color: black;
  letter-spacing: -0.7px;
}
.notice-list p {
  margin-bottom: 0;
}
.notice-list .num {
  padding: 0 15px;
}
.notice-list .title {
  width: 80%;
}
.notice-list .cate {
  color: #5364FF;
  width: 61px;
}
.notice-list .date {
  color: #757575;
  text-align: right;
}
.notice-list .date p {
  width: 140px;
}

.notice-list li:hover .title,
.press-list .item:hover .title {
  color: #5364FF;
}

.board-detail {
  margin-top: 140px;
}
.board-detail a {
  color: black;
}

.board-head {
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid #E8E8E8;
}
.board-head .title {
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 20px;
}
.board-head .info {
  font-weight: 400;
  font-size: 1.8rem;
  color: #757575;
}
.board-head .info .cate {
  color: #5364FF;
}
.board-head .info .divide {
  margin: 0 16px;
}

.board-content-box {
  font-weight: 400;
  font-size: 1.8rem;
}
.board-content-box img {
  max-width: 100%;
}
.board-content-box .related-link {
  margin-bottom: 15px;
}
.board-content-box i {
  margin-right: 5px;
}
.board-content-box a {
  color: black;
}

.board-content {
  margin: 60px 0;
}

.detail-button-box {
  display: flex;
  justify-content: space-between;
}
.detail-button-box .icon-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
  border: 1px solid #B7B7B7;
  border-radius: 8px;
  text-align: center;
  color: black;
  margin-right: 20px;
}
.detail-button-box span {
  font-size: 1.6rem;
}
.detail-button-box .prev-next-button img {
  margin-right: 4px;
}
.detail-button-box .prev-next-button .inactive {
  pointer-events: none;
  opacity: 0.5;
}
.detail-button-box a.next-button {
  flex-direction: row-reverse;
  vertical-align: top;
}
.detail-button-box a.next-button img {
  margin-left: 4px;
  margin-right: 0;
}

.press-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  -moz-column-gap: 55px;
       column-gap: 55px;
  row-gap: 60px;
  max-width: 1400px;
}
.press-list a {
  display: inline-block;
  width: 100%;
}
.press-list .thumbnail-box {
  width: 100%;
  height: 300px;
}
.press-list .thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.press-list .title {
  color: black;
  font-weight: 400;
  font-size: 1.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 20px;
  margin-bottom: 10px;
}
.press-list .date {
  font-weight: 400;
  color: #757575;
  margin-bottom: 0;
}

/************ BreakPoints ************/
@media (max-width: 576px) {
  .search input {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .notice-list .num {
    display: none;
  }
  .notice-list a {
    flex-direction: column;
    padding: 20px 0;
  }
  .notice-list .cate, .notice-list .title {
    margin-bottom: 10px;
  }
  .notice-list .date {
    text-align: start;
  }
  .detail-button-box .icon-btn {
    padding: 10px 12px;
  }
  .press-list {
    row-gap: 40px;
  }
  .press-list .title {
    margin-top: 10px;
    margin-bottom: 4px;
  }
}
@media (max-width: 1220px) {
  .board-detail {
    margin-top: 90px;
  }
  .sub-fix-nav {
    display: none;
  }
  .notice-list .title {
    font-size: 17px;
  }
  .notice-list .num, .notice-list .cate, .notice-list .date {
    font-size: 15px;
  }
  .notice-list .no-post {
    font-size: 16px;
  }
  .search input {
    height: 50px;
    font-size: 16px;
  }
  .search button.search-btn {
    top: 14px;
  }
  .search input::-moz-placeholder {
    font-size: 16px;
  }
  .search input::placeholder {
    font-size: 16px;
  }
  .board-head {
    padding-bottom: 20px;
  }
  .board-head .title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .board-head .info {
    font-size: 15px;
  }
  .board-content, .related-link, .related-link h4,
.board-file {
    font-size: 16px;
  }
  .board-content {
    margin: 30px 0;
  }
  .detail-button-box .icon-btn {
    margin-right: 10px;
  }
  .detail-button-box .icon-btn img {
    width: 18px;
    height: 18px;
  }
  .detail-button-box span {
    font-size: 14px;
  }
  .press-list .title {
    font-size: 16px;
  }
  .press-list .date {
    font-size: 14px;
  }
}
