.category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category-list__item {
  position: relative;
  text-align: center;
  border-radius: 10px;
  z-index: 2;
}

.category-list__item a {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .category-list__item {
    width: 150px;
    padding: 2px 0;
  }
}

@media screen and (max-width: 767px) {
  .category-list__item {
    width: 130px;
    padding: 5px 0;
    margin-bottom: 5px;
  }
}

.category-list__item.is-info {
  background-color: #C28CB4;
}

.category-list__item.is-blog {
  background-color: #EFC100;
}

.category-list__item.is-hibari {
  background-color: #87C13F;
}

.category-list__item.is-photo {
  background-color: #FF99D1;
}

@media screen and (min-width: 768px) {
  .archive {
    width: calc(100% - 310px);
  }
}

@media screen and (max-width: 767px) {
  .archive {
    width: 100%;
  }
}

.archive .article {
  position: relative;
}

@media screen and (min-width: 768px) {
  .archive .article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .archive .article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0;
  }
}

.archive .article:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(to right, #1A1A1A, #1A1A1A 3px, transparent 2px, transparent 2px);
  background-size: 10px 3px;
  background-position: top;
  background-repeat: repeat-x;
}

.archive .article:last-of-type:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(to right, #1A1A1A, #1A1A1A 3px, transparent 2px, transparent 2px);
  background-size: 10px 3px;
  background-position: top;
  background-repeat: repeat-x;
}

.archive .article:hover .article__image {
  border-radius: 10px;
}

.archive .article:hover .article__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.archive .article__image {
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .archive .article__image {
    width: 35%;
  }
}

@media screen and (max-width: 767px) {
  .archive .article__image {
    width: 100%;
  }
}

.archive .article__image img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
}

@media screen and (min-width: 768px) {
  .archive .article__info {
    width: calc(65% - 30px);
  }
}

@media screen and (max-width: 767px) {
  .archive .article__info {
    width: 100%;
  }
}

.archive .article__day {
  display: inline-block;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .archive .article__day {
    margin-top: 5px;
  }
}

.archive .article__category {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .archive .article__category {
    width: 150px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .archive .article__category {
    width: 130px;
    margin-top: 5px;
    font-size: 1.2rem;
  }
}

.archive .article__category.is-info {
  background-color: #C28CB4;
}

.archive .article__category.is-blog {
  background-color: #EFC100;
}

.archive .article__category.is-hibari {
  background-color: #87C13F;
}

.archive .article__category.is-photo {
  background-color: #FF99D1;
}

.archive .article__ttl {
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .archive .article__ttl {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .archive .article__ttl {
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  .archive .article__txt {
    display: none;
  }
}
/*# sourceMappingURL=archive.css.map */