@charset "UTF-8";
/* =====================
  記事一覧（お知らせ・ブログ共通）
 ======================= */
.archive-header {
  margin: 8rem 0 14rem;
}

.archive-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30rem 0 30rem 0 30rem;
  grid-template-columns: repeat(3, 30rem);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7rem 0;
}
.archive-list-item .link {
  display: block;
  position: relative;
}
.archive-list-item .thumb {
  margin-bottom: 1.2rem;
}
.archive-list-item .thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 300/200;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-list-item .date {
  position: absolute;
  top: 0;
  right: 2rem;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  font-weight: 500;
  line-height: 1;
}
.archive-list-item .date span {
  font-size: 4rem;
}
.archive-list-item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.2rem;
}
.archive-list-item .cat > span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 100px;
  min-width: 8.4rem;
  text-align: center;
  padding: 0 0.4rem;
}
.archive-list-item .ifw_wrap {
  margin: 0 0 0 auto;
}
.archive-list-item .title {
  font-weight: 700;
  line-height: 1.6;
}
.archive-list-item .tag {
  margin-top: 8px;
  font-weight: 500;
}
.archive-list-item .tag > span:before {
  content: "#";
}
.archive-list-item .tag .senior {
  color: var(--c_senior);
}
.archive-list-item .tag .disabled {
  color: var(--c_disabled);
}
.archive-list-item .tag .child {
  color: var(--c_child);
}

/* PCのみ
  ------------------------ */
@media (min-width: 700px) {
  .archive-list-item:nth-child(3n) .ifw_wrap .ifw_message_wrap.ifw_top_left {
    left: auto;
    right: -1rem;
  }
  .archive-list-item:nth-child(3n) .ifw_wrap .ifw_message_wrap.ifw_top_left .ifw_arrow {
    right: 20px;
    left: auto;
  }
}
/* タブレット
  ------------------------ */
@media (max-width: 1200px) {
  .archive-list {
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  .archive-header {
    margin: 40px 0 60px;
  }
  .archive-list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 32px 16px;
  }
  .archive-list-item .date {
    right: 8px;
    font-size: 12px;
  }
  .archive-list-item .date span {
    font-size: 20px;
  }
  .archive-list-item .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .archive-list-item .ifw_wrap .ifw_message_wrap.ifw_top_left {
    left: auto;
    right: -1rem;
  }
  .archive-list-item .ifw_wrap .ifw_message_wrap.ifw_top_left .ifw_arrow {
    right: 20px;
    left: auto;
  }
  .archive-list-item .cat > span {
    font-size: 12px;
  }
  .archive-list-item .tag {
    font-size: 12px;
  }
}