@charset "UTF-8";
@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 0;
  }
}
@keyframes fadeInSimple {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutSimle {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* regular(normal) */
@font-face {
  font-family: "NotoSansJP";
  src: url("/bootstrap/fonts/NotoSansJP-Regular.woff") format("woff");
}
/* bold */
@font-face {
  font-family: "NotoSansJP";
  src: url("/bootstrap/fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: bold;
}
/* medium */
@font-face {
  font-family: "NotoSansJP";
  src: url("/bootstrap/fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: medium;
}
/* アスタリスク(パスワード用) */
.page--top .postSliderArea {
  margin-top: 8px;
  margin-bottom: 48px;
  padding-left: 10px;
  padding-right: 10px;
}
.page--top .level1-heading {
  margin-bottom: 24px;
}
.page--top .level2-heading {
  margin-bottom: 16px;
}
.page--top .border {
  border-top: 1px solid #DCDFE2;
}
.page--top .infoArea {
  display: flex;
  flex-direction: column;
  margin-bottom: unset;
}
.page--top .infoArea__heading {
  display: inline-block;
  margin-bottom: 31px;
}
.page--top .infoArea .postsList__item {
  padding-top: 16px;
  padding-bottom: 16px;
}
.page--top .infoArea .postsList__link {
  flex-direction: column;
}
.page--top .infoArea .postsList__date {
  margin-bottom: 16px;
}
.page--top .btnArea__btn {
  max-width: 665px;
  margin: 0 auto;
}

@media print, screen and (min-width: 480px) {
  .page--top .postSliderArea {
    margin-top: 44.5px;
    margin-bottom: 32px;
    padding-left: unset;
    padding-right: unset;
  }
}
@media print, screen and (min-width: 768px) {
  .page--top .level1-heading {
    margin-bottom: 32px;
  }
  .page--top .level2-heading {
    margin-bottom: 24px;
  }
}
@media print, screen and (min-width: 1024px) {
  .page--top .searchArea .btnArea {
    margin-top: 23px;
  }
  .page--top .infoArea {
    flex-direction: row;
    justify-content: space-between;
  }
  .page--top .infoArea__body {
    width: calc(100% - 13.6vw);
  }
  .page--top .infoArea .postsList__item {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .page--top .infoArea .postsList__item:first-of-type {
    padding-top: unset;
  }
  .page--top .infoArea .postsList__link {
    flex-direction: row;
    align-items: center;
  }
  .page--top .infoArea .postsList__date {
    margin-bottom: unset;
  }
}