#news .container {
  max-width: 1400px;
  margin: 0 auto;
}
#news #main {
  position: relative;
  display: flex;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 80px;
  margin-top: 30px;
  padding: 0 clamp(20px, 3.4722222222vw, 50px);
}
#news #main .main-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-top: 80px;
}
#news #main .main-visual .main-title {
  margin-top: 0;
  margin-bottom: 0px;
  line-height: 0.5;
  white-space: nowrap;
  color: #2151B3;
}
#news #main .main-visual .main-title .main-subtitle {
  display: block;
  margin: 20px 0 10px 10px;
  padding: clamp(15px, 0.8vw, 25px) clamp(30px, 2vw, 50px);
  background-color: #2151B3;
}
#news .news-filter {
  display: flex;
  justify-content: flex-end;
  padding-right: clamp(16px, 3.4722222222vw, 40px);
  margin-bottom: 60px;
}
#news .news-filter .year-select {
  position: relative;
  width: min(294px, 100%);
}
#news .news-filter .year-select select {
  width: 100%;
  height: 50px;
  padding: 0 60px 0 15px;
  border: none;
  outline: none;
  background: #e8e8e8;
  font-size: 40px;
  color: #535353;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
#news .news-filter .year-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #535353;
  pointer-events: none;
}
#news .news-filter .year-select.open::after {
  border-bottom: none;
  border-top: 12px solid #535353;
}
#news .news-info .year-group .section-title {
  padding: 20px 0px 20px max(50px, (100vw - 1200px) / 2 + 30px);
}
#news .news-info .year-group .news-list {
  width: 85%;
  max-width: 1200px;
  margin: 50px auto 100px auto;
  padding: 0 80px;
}
#news .news-info .year-group .news-list .news-detail {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #585858;
}
@media (max-width: 769px) {
  #news .news-info .year-group .news-list .news-detail {
    flex-wrap: wrap;
  }
}
#news .news-info .year-group .news-list .news-detail .news-detail-date {
  display: block;
  margin-right: 5px;
}
#news .news-info .year-group .news-list .news-detail .news-detail-category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 120px;
  margin: 3px 30px 0 0;
  padding-top: 2px;
  padding-bottom: 4px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}
#news .news-info .year-group .news-list .news-detail .news-detail-category.notice {
  background-color: #9fd7fa;
}
#news .news-info .year-group .news-list .news-detail .news-detail-category.service {
  background-color: #9ffab8;
}
#news .news-info .year-group .news-list .news-detail .news-detail-category.recruit {
  background-color: #fa9fdb;
}
#news .news-info .year-group .news-list .news-detail .news-detail-title {
  color: #585858;
  text-decoration: none;
  word-break: keep-all;
}
@media (max-width: 769px) {
  #news .news-info .year-group .news-list .news-detail .news-detail-title {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
#news .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 100px;
}
#news .pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}
#news .pagination .page-numbers:hover {
  background: #1d4e89;
  color: #fff;
  border-color: #1d4e89;
}
#news .pagination .current {
  background: #1d4e89;
  color: #fff;
  border-color: #1d4e89;
}
#news .pagination .prev,
#news .pagination .next {
  border: none;
  line-height: 1;
  font-size: 22px;
  color: #585858;
}
#news .pagination .prev:hover,
#news .pagination .next:hover {
  border: 1px solid #ddd;
  background: none;
  color: #585858;
}
#news .pagination .disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 1200px) {
  #news #main .main-visual .main-title {
    font-size: clamp(90px, 120px - (1200px - 100vw) * 0.15, 120px);
  }
  #news #main .main-visual .main-title .main-subtitle {
    padding: 15px 50px 15px 30px;
    font-size: clamp(30px, 36px - (1200px - 100vw) * 0.15, 36px);
  }
  #news .news-filter .year-select select {
    font-size: 34px;
  }
  #news .news-info .year-group .section-title {
    font-size: 34px;
  }
  #news .news-info .year-group .news-list {
    padding: 0 30px;
  }
}
@media (max-width: 769px) {
  #news #main {
    flex-direction: column;
    gap: 80px;
    margin-top: 0;
  }
  #news #main .main-visual {
    width: 100%;
    margin-top: 50px;
  }
  #news .news-filter .year-select select {
    font-size: 34px;
  }
  #news .news-info .year-group .section-title {
    font-size: 30px;
  }
  #news .news-info .news-list {
    padding: 0 !important;
  }
}
@media (max-width: 489px) {
  #news #main {
    gap: 50px;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  #news #main .main-visual {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
    margin-top: 30px;
  }
  #news #main .main-visual .main-title {
    font-size: 60px;
  }
  #news #main .main-visual .main-title .main-subtitle {
    font-size: 24px;
    margin-left: 5px;
  }
  #news .news-filter {
    margin-bottom: 50px;
  }
  #news .news-filter .year-select select {
    font-size: 28px;
  }
  #news .news-info {
    margin-top: 0;
  }
  #news .news-info .year-group .section-title {
    padding-left: 30px;
    font-size: 28px;
  }
}/*# sourceMappingURL=news.css.map */