@charset "UTF-8";
/* ローディングインジケーターのスタイル */
#loading {
  text-align: center;
  margin: 20px 0;
}

.loader {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #333;
  -webkit-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.category-list {
  margin-bottom: 100px;
}

.news-list .box {
  border-bottom: 1px solid #747473;
}
.news-list .box:first-child {
  border-top: 1px solid #747473;
}
.news-list .box a {
  padding: 30px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-list .box a .info {
  margin-right: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .news-list .box a .info {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.news-list .box a .info .date {
  font-size: 14px;
  margin-right: 30px;
}
.news-list .box a .info .category {
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
}
.news-list .box a .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .news-list .box a .title {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.load-more-container {
  text-align: center;
  margin-top: 30px;
}

.news {
  margin-bottom: 100px;
}

footer {
  border-top: 1px solid #231815;
}