@charset "UTF-8";
/* ===== @use ===== */
/* ===== common.scss ===== */
/* -- 変数 -- */
/* font */
/* color */
/* switching */
/* ===== @mixin ===== */
/* -- crm -- */
/* -- 中央配置 -- */
/* ===== news.css ===== */
/* -- pager -- */
.pager {
  font-family: "archivo-expanded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.pager a {
  opacity: 0.3;
  transition: color 0.3s, opacity 0.3s;
}
@media screen and (min-width: 901px) {
  .pager a:hover {
    color: #B50033;
    opacity: 1;
  }
}
.pager li {
  /* act */
  /* prev next */
}
.pager li:not(:last-child) {
  margin-right: 20px;
}
.pager li.act a {
  color: #B50033;
  opacity: 1;
}
.pager li:first-child, .pager li:last-child {
  /* act */
}
.pager li:first-child a, .pager li:last-child a {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  background: #FFF;
  border-radius: 50%;
  opacity: 1;
}
.pager li:first-child a svg, .pager li:last-child a svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: inline-block;
  width: 12px;
  height: 4px;
  fill: #8B8B8B;
  transition: fill 0.3s;
}
@media screen and (min-width: 901px) {
  .pager li:first-child a:hover svg, .pager li:last-child a:hover svg {
    fill: #b50033;
  }
}
.pager li:first-child.act a svg, .pager li:last-child.act a svg {
  fill: #b50033;
}
.pager li:first-child a svg {
  transform: scale(-1, 1);
}

/* -- newsDetailBox -- */
.newsDetailBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 6rem;
  border-bottom: 1px solid #D0D0D0;
}
.newsDetailBox h1 {
  margin: 0 0 5rem;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .newsDetailBox .newsListBox-day {
    margin-right: 10px;
  }
  .newsDetailBox .newsListBox-category span {
    font-size: 12px;
    min-width: 64px;
    height: 23px;
  }
}
@media screen and (max-width: 900px) {
  .newsDetailBox {
    padding-bottom: 30px;
  }
  .newsDetailBox h1 {
    margin: 0 0 20px;
  }
}

/* -- newsArticleBox -- */
.newsArticleBox > * > :not(h2):first-child {
  margin-top: 5.4rem;
}
.newsArticleBox > * > h2:first-child {
  margin-top: 9.2rem;
}/*# sourceMappingURL=news.css.map */