/* ===== お知らせ（お知らせページ） ======================= */
.announce-date {
  margin-right: 1rem;
  font-size: 0.85rem;
}

.announce-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.announce-content {
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.announce-list,
.announce-detail {
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1px;
  /* ヘッダーがfixedで170px高さのため */
  margin: 0 auto 60px auto;
}

.ql-editor img{
  max-width: 100%;
}
.announce-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 20px;
}

.announce-table-all {
  max-width: 992px;
  width: 100%;
  margin: 30px auto;
  padding: 0 10px;
}

.announce-table-all h5 {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0;
  background-color: #f1f1f1;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;
}

.announce-table {
  width: 100%;
  font-size: 0.85em;
}

.announce-table th {
  width: 10rem;
}

@media screen and (max-width:575px) {

  .announce-list,
  .announce-detail {
    padding-top: 60px;
    min-height: calc(100vh - 90px);
  }

  .announce-list .text-muted,
  .announce-detail .text-muted {
    font-size: 13px;
  }

  .announce-table-all {
    padding: 0;
  }

  .announce-table {
    font-size: 13px;
  }

}