@charset "UTF-8";

/*-------------------------------------
  重要なお知らせ
------------------------------------- */
/* リスト */
.c-importantNewsHeading {
  color: #D1343B;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

.c-importantNewsHeading.--center {
  text-align: center;
}
.c-importantNewsContainer {
  width: 780px;
  max-width: 100%;
  margin-inline: auto;
}
.c-importantNewsList {
  list-style: none;
  display: grid;
  gap: 16px;
}

.c-importantNewsItem {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

.c-importantNewsList.--hasArrow .c-importantNewsItem {
  padding-left: 1em;
}

.c-importantNewsList.--hasArrow .c-importantNewsItem::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 14px;
  background-image: url('/assets/images/common/icon_arrow_red.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 6px;
  left: 0;
}

.c-importantNewsItem a {
  font-size: inherit;
}

.c-importantNewsItem a::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.c-importantNewsItem.--pdf a::after {
  width: 14px;
  height: 16px;
  background-image: url('/assets/images/common/icon_pdf_gray.svg');
  margin-left: 8px;
  position: relative;
  top: 2px;
}

.c-importantNewsItem.--external a::after {
  width: 14px;
  height: 11px;
  background-image: url('/assets/images/common/icon_external_gray.svg');
  margin-left: 8px;
}

/* TOP */
.p-topImportantNews {
  background-color: #FFF5F5;
  padding-block: 16px 24px;
}

.p-topImportantNews .c-importantNewsContainer {
  max-width: 89.33%;
}

/* 一覧ページ */
.p-archiveImportantNews {
  max-width: 1056px;
  width: 89.33%;
  margin-inline: auto;
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 64px;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p-archiveImportantNews {
    padding-bottom: 32px;
    margin-bottom: 40px;
  }
}

