@charset "UTF-8";
/* =============================================================================


     archive


============================================================================= */
.article {
  /*   background: #e50012; */
  background: #00a0e9;
  padding: 0px 0;
  /*   padding-bottom: 120px; */
  padding: 120px 0;
}

.article-ttl {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  font-size: 6rem;
  font-weight: bold;
  margin-top: 40px;
  /*   text-shadow: 0px 0px 5px #000;
  background-image: url(/dist/asset/images/archive/star.svg);
  background-color: #000;
  padding: 80px 0; */
  padding: 20px 0;
  text-align: center;
}

.article-list {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /*   margin-top: 80px; */
  /*   @include mq("sp") {
    margin-top: 60px;
  } */
}

.article-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: calc(25% - ((8px * 3) / 4));
}

.article-item:hover {
  opacity: 0.7;
}

.article-img {
  position: relative;
  width: 100%;
}

.article-img:before {
  content: "";
  display: block;
  padding-top: 75%;
  /* 高さを幅の75%に固定 */
}

.article-img img {
  font-family: "object-fit:cover";
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.article-item-ttl {
  font-size: 2rem;
  font-weight: bold;
}

.article-yen {
  font-weight: bold;
  margin-top: 12px;
}

.article-yen span {
  display: block;
  font-size: 2rem;
}

.article-box {
  background: #fff;
  padding: 28px 12px;
}

.article-ex {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 16px;
  margin-top: 24px;
}

.article-more {
  font-size: 1.2rem;
  margin-top: auto;
  text-align: right;
}

.item-category-list {
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

.item-category-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  color: #313139;
  display: inline-block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 54px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 120px;
}

.item-category-link:hover {
  opacity: 0.7;
}

.article-item-tag {
  border: 1px solid #313139;
  font-size: 1.4rem;
  margin-left: auto;
  padding: 0.25em 0;
  text-align: center;
  text-align: center;
  width: 6em;
}

@media (max-width: 1248px){
  .article-ttl {
    font-size: 4rem;
    padding: 20px 0;
  }
  .article-item {
    width: calc(33.333333% - ((8px * 2) / 3));
  }
}

@media (max-width: 767px){
  .article {
    /*     padding-bottom: 60px; */
    padding: 80px 0;
  }
  .article-ttl {
    font-size: 3rem;
    padding: 10px 0;
  }
  .article-item {
    width: calc(50% - ((8px * 1) / 2));
  }
  .article-item-ttl {
    font-size: 1.6rem;
  }
  .article-yen span {
    font-size: 1.6rem;
  }
  .article-ex {
    font-size: 1.2rem;
  }
  .article-more {
    font-size: 1rem;
  }
  .item-category-list {
    gap: 20px;
  }
  .item-category-link {
    max-width: calc(33.3333% - ((8px * 2) / 3));
  }
}


/*# sourceMappingURL=archive.css.map*/