@charset "UTF-8";
/* ▼▼▼ 一覧ページ
====================================================== */
.page_ttl .ttl_head:before {
  content: "FAVORITE";
}

.fav_ttl {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 30px;
}
.fav_ttl span {
  position: relative;
}
.fav_ttl span:after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background: linear-gradient(80deg, rgb(255, 250, 224) 0%, rgb(217, 241, 247) 95%, rgb(206, 246, 255) 100%);
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  .fav_ttl {
    font-size: 24px;
    margin-bottom: 60px;
  }
}

.section {
  padding-top: 45px;
}
@media screen and (min-width: 769px) {
  .section {
    padding-top: 60px;
  }
}

.fav_shop .fav_ttl span:after {
  background: linear-gradient(50deg, rgb(255, 237, 249) 0%, rgb(237, 236, 250) 35%, rgb(185, 232, 253) 100%);
}

.article_list {
  gap: 30px 14px;
}
.article_list li {
  position: relative;
}
.article_list li .date_new_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 17px;
  background-color: #D41265;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.article_list li .article_desc .shop {
  color: #707070;
  font-size: 13px;
  margin-top: 4px;
}
@media screen and (min-width: 769px) {
  .article_list {
    gap: 70px 30px;
  }
  .article_list li .date_new_icon {
    width: 45px;
    height: 25px;
    font-size: 14px;
    bottom: -10px;
  }
  .article_list li .article_desc .shop {
    font-size: 16px;
  }
}

.fav_news .article_list li .article_thumb,
.fav_event .article_list li .article_thumb {
  padding-top: 100%;
  background-size: contain;
}

@media screen and (min-width: 769px) {
  .fav_event .article_list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ▼▼▼ お気に入りが登録されていない場合
====================================================== */
.no_fav {
  padding: 32px 0 0;
}
.no_fav .txt {
  color: #505050;
  text-align: center;
  margin-bottom: 28px;
}
.no_fav .fav_btn {
  color: #707070;
  font-size: 12px;
  font-weight: 500;
  max-width: calc(100% - 80px);
  height: 46px;
  background: linear-gradient(50deg, rgb(255, 237, 249) 0%, rgb(237, 236, 250) 35%, rgb(185, 232, 253) 100%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no_fav .fav_btn .bookmark {
  display: inline-block;
  background: url(../img/favorite_mark.svg) center/contain no-repeat;
  width: 1.25em;
  height: 1.5em;
  margin-right: 8px;
}
@media screen and (min-width: 769px) {
  .no_fav {
    padding: 60px 0 0;
  }
  .no_fav .txt {
    margin-bottom: 70px;
  }
  .no_fav .fav_btn {
    font-size: 14px;
    max-width: 270px;
    height: 54px;
  }
}