@charset "UTF-8";

.news-list-wrapper>.title {
  font-size: 28px;
  color: #832a2c;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.news-list-wrapper .news-list {
  margin-top: 10px;
}

.news-list-wrapper .news-list .item {
  display: flex;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
  padding-left: 10px;
}

.news-list-wrapper .news-list .item .date {
  display: flex;
  flex-direction: column;
}

.news-list-wrapper .news-list .item .date .day {
  font-size: 40px;
  font-weight: 700;
  color: #832a2c;
  border-bottom: 2px solid #832a2c;
  padding-bottom: 10px;
}

.news-list-wrapper .news-list .item .date .year-month {
  margin-top: 15px;
  font-size: 16px;
  color: #666;
  white-space: nowrap;
}

.news-list-wrapper .news-list .item .right {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.news-list-wrapper .news-list .item .right .cover {
  width: 200px;
  height: 150px;
  overflow: hidden;
  margin-left: 30px;
  margin-right: 15px;
  flex-shrink: 0;
}

.news-list-wrapper .news-list .item .right .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news-list-wrapper .news-list .item .right .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 25px;
}

.news-list-wrapper .news-list .item .right .info .title {
  font-size: 20px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news-list-wrapper .news-list .item .right .info .desc {
  font-size: 16px;
  color: #999;
  margin: 10px 0 22px;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list-wrapper .news-list .item .right .info .detail {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 40px;
  background-color: #832a2c;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  transition: all 0.5s ease;
}

.news-list-wrapper .news-list .item:hover .right .cover img {
  transform: scale(1.1);
}

.news-list-wrapper .news-list .item:hover .right .info .title {
  text-decoration: underline;
}

.news-list-wrapper .news-list .item:hover .right .info .detail {
  background-color: #ae7e5a;
}

.notify-list-wrapper>.title {
  font-size: 28px;
  color: #832a2c;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.notify-list-wrapper .notify-list {
  margin-top: 20px;
}

.notify-list-wrapper .notify-list .item {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.notify-list-wrapper .notify-list .item:hover .title {
  padding-left: 30px;
  color: #832a2c;
}

.notify-list-wrapper .notify-list .item .title {
  font-size: 16px;
  padding-left: 20px;
  border-left: 3px solid #832a2c;
  flex: 1;
  padding-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all 0.5s ease;
}

.notify-list-wrapper .notify-list .item .date {
  font-size: 14px;
  color: #666;
}

@media (max-width: 980px) {
  .news-list-wrapper {
    margin-top: 4vw;
  }

  .news-list-wrapper>.title {
    font-size: 7vw;
    padding-bottom: 3.5vw;
  }

  .news-list-wrapper .news-list {
    margin-top: 1vw;
  }

  .news-list-wrapper .news-list .item {
    padding: 4vw 0;
    flex-direction: column;
  }

  .news-list-wrapper .news-list .item .date {
    flex-direction: row;
  }

  .news-list-wrapper .news-list .item .date .day {
    margin-right: 2vw;
    font-size: 8vw;
    border-bottom-width: 1vw;
    padding-bottom: 0.8vw;
  }

  .news-list-wrapper .news-list .item .date .year-month {
    margin-top: 3vw;
    font-size: 5vw;
  }

  .news-list-wrapper .news-list .item .right {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .news-list-wrapper .news-list .item .right .cover {
    margin: 0;
    margin-top: 2vw;
    width: 50vw;
    height: 25vw;
  }

  .news-list-wrapper .news-list .item .right .info {
    margin-top: 4vw;
    margin-left: 0;
    width: 100%;
  }

  .news-list-wrapper .news-list .item .right .info .title {
    font-size: 4.5vw;
  }

  .news-list-wrapper .news-list .item .right .info .desc {
    font-size: 4vw;
    margin: 1.2vw 0 2vw;
  }

  .news-list-wrapper .news-list .item .right .info .detail {
    margin-top: 3vw;
    padding: 0 4vw;
    height: 9vw;
    font-size: 3.8vw;
  }

  .notify-list-wrapper {
    margin-top: 4vw;
  }

  .notify-list-wrapper>.title {
    font-size: 7vw;
    padding-bottom: 3.5vw;
  }

  .notify-list-wrapper .notify-list {
    margin-top: 1vw;
  }

  .notify-list-wrapper .notify-list .item {
    flex-direction: column;
    align-items: flex-start;
    padding: 4vw 0;
  }

  .notify-list-wrapper .notify-list .item .title {
    text-align: justify;
    font-size: 4.5vw;
    border-left-width: 1vw;
    padding-left: 3vw;
    padding-right: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .notify-list-wrapper .notify-list .item .date {
    margin-top: 2vw;
    font-size: 3.5vw;
  }
}