/* search_results */

.common__title-block--search-list-wrapper {
  display: none;
  position: relative;
  width: calc(100% - 1.6rem);
  height: 3.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

.common__title-block--search-list-wrapper::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 767px) {
  .common__title-block--search-list-wrapper {
    display: flex;
    margin-left: 3.2rem;
  }
}

@media screen and (max-width: 500px) {
  .common__title-block--search-list-wrapper {
    margin-left: 1.6rem;
  }
}

.common__title-block--search-list {
  position: absolute;
  display: flex;
  gap: 0.8rem;
  height: 100%;
  top: 0;
  left: 0;
  padding-right: 1.6rem;
}

.common__title-block--search-item {
  font-size: 1.2rem;
  line-height: 130%;
  color: #0c090d;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 3.4rem 0.8rem 1rem;
  box-sizing: border-box;
  border-radius: 10rem;
  border: 1px solid #9394a1;
  background-color: #fff;
  position: relative;
}

.common__title-block--search-item::before {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background-image: url("/assets/images/toggle.webp");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.common__title-block--search-item.selected {
  border: 2px solid #606283;
  background-color: #ffeff4;
}

/* experience_story_list */

.report-list__page-wrapper {
  display: grid;
  grid-template-areas:
    "header header"
    "aside main";
  grid-template-columns: 28rem calc(100% - 30.4rem);
  justify-content: start;
  column-gap: 2.4rem;
  padding: 0 3.2rem 9.116rem;
  margin: 0 auto;
  max-width: 128rem;
  width: calc(100% - 6.4rem);
}

@media screen and (max-width: 920px) {
  .report-list__page-wrapper {
    grid-template-columns: 26rem calc(100% - 28rem);
    column-gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .report-list__page-wrapper {
    grid-template-areas:
      "header"
      "main"
      "aside";
    padding: 0 1.6rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: 100%;
  }
}

.report-list__title-block {
  grid-area: header;
  width: 100%;
  display: flex;
  justify-content: center;
}

.report-list__title-block h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem 0 4rem 0;
  position: relative;
}

.report-list__title-block h1::after {
  content: "";
  position: absolute;
  top: -2.571rem;
  right: -4.171rem;
  background-image: url("/assets/images/buble2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 5.911rem;
  height: 5.911rem;
}

.report-list__title {
  font-family: "Tenor Sans", serif;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 100%;
  letter-spacing: 0.384rem;
  color: #0c090d;
}

.report-list__sub-title {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: 0.15rem;
  color: #fc7e9f;
}

@media screen and (max-width: 767px) {
  .report-list__title-block h1 {
    margin: 2.4rem 0;
  }
  .report-list__title-block h1::after {
    width: 4rem;
    height: 4rem;
    top: -1.6rem;
    right: -2.4rem;
  }
  .report-list__title {
    font-size: 3rem;
    letter-spacing: 0.24rem;
  }
  .report-list__sub-title {
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
  }
}

.report-list__left-menu {
  grid-area: aside;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

@media screen and (max-width: 767px) {
  .report-list__left-menu {
    margin-bottom: 6.4rem;
  }
  .report-list__left-menu--container.search-container {
    display: none;
  }
}

.report-list__left-menu--container {
  background-color: #fff;
  border: 0.1rem solid #e9eaf8;
  border-radius: 0.5rem;
  padding: 2.4rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.report-list__left-menu--contains-title {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0.1rem;
  color: #0c090d;
  width: 100%;
  padding-bottom: 2.5rem;
  position: relative;
}

.report-list__left-menu--contains-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2.5rem;
  bottom: 0;
  right: 0;
  background-image: url("/assets/images/search-fillter-line.png");
  background-position: right;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .report-list__left-menu--contains-title {
    font-size: 1.8rem;
    letter-spacing: 0.09rem;
  }
}

.report-list__left-menu--search-filter-block {
  width: 100%;
  position: relative;
}

.report-list__left-menu--search-filter-block:not(:last-child) {
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #e9eaf8;
}

.report-list__left-menu--search-filter-contents-title {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.88rem;
  letter-spacing: 0.08rem;
  color: #0c090d;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
  width: auto;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.report-list__left-menu--search-filter-contents-title::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: -3.2rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("/assets/images/toggle-arrow.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scaleY(-1);
  z-index: 1;
}

.report-list__left-menu--search-input-wrapper {
  position: relative;
  width: 100%;
  height: 4.8rem;
}

.report-list__left-menu--search-input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 10rem;
  border: 0.1rem solid #9394a1;
  padding-left: 1.6rem;
  background: url("/assets/images/search-icon.webp") no-repeat 1.2rem
    center;
  background-size: 2rem;
}

.report-list__left-menu--search-input:focus {
  outline: none;
}

.report-list__left-menu--search-input:not(:placeholder-shown) {
  background-image: none;
}

.report-list__left-menu--auto-complete {
  position: absolute;
  width: 38rem;
  height: 44rem;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0px 0px 16px 0px #6a6c7c14;
  z-index: 8;
}

.report-list__left-menu--auto-complete-input-wrapper {
  width: 100%;
  position: relative;
}

.report-list__left-menu--auto-complete-input {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 0.08rem;
  color: #0c090d;
  width: 100%;
  height: 6.2rem;
  border: none;
  border-bottom: 0.1rem solid #e9eaf8;
  padding-left: 2.4rem;
  box-sizing: border-box;
  position: relative;
}

.report-list__left-menu--auto-complete-input:focus {
  outline: none;
}

.report-list__left-menu--auto-complete-input:placeholder {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 0.08rem;
  color: #606283;
}

.report-list__left-menu--auto-complete-close {
  position: absolute;
  top: 1.9rem;
  right: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  background-color: #fff;
  background: url("/assets/images/cross-icon-brack.webp") no-repeat center
    center;
  background-size: cover;
  cursor: pointer;
  z-index: 9;
}

.report-list__left-menu--auto-complete-ul {
  margin-top: 0.8rem;
  width: 100%;
}

.report-list__left-menu--auto-complete-li {
  width: 100%;
  height: 4.8rem;
  padding-left: 4.4rem;
  padding-right: 1.4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  position: relative;
}

.report-list__left-menu--auto-complete-li:focus {
  outline: none;
  background-color: #f3f5fb;
}

.report-list__left-menu--auto-complete-li-icon {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 1.4rem;
  left: 1.6rem;
}

.report-list__left-menu--auto-complete-li-address {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0.064rem;
  color: #606283;
}

.report-list__left-menu--auto-complete-option {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.82rem;
  letter-spacing: 0.064rem;
}

.report-list__left-menu--select-area-container {
  position: absolute;
  content: "";
  top: -3.1rem;
  right: -88.6rem;
  width: 85rem;
  height: 68rem;
  background: linear-gradient(to right, #ff8fad, #92a3ff);
  box-shadow: 0 0 3.2rem 0 #6a6c7c4d;
  border-radius: 1rem;
  z-index: 5;
}

.report-list__left-menu--select-area-container-header {
  width: 100%;
  height: 6.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  position: relative;
}

.report-list__left-menu--select-area-title-decoration-left {
  width: 5rem;
  height: 1.1rem;
}

.report-list__left-menu--select-area-title-decoration-right {
  width: 5rem;
  height: 1.1rem;
  transform: scale(-1);
}

.report-list__left-menu--select-area-title {
  font-family: "Shippori Mincho";
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 0.1rem;
  color: #fff;
}

.report-list__left-menu--select-area-title-close {
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border: none;
  background-color: transparent;
  background-image: none;
}

.report-list__left-menu--select-area-title-close-icon {
  width: 100%;
  height: 100%;
}

.report-list__left-menu--select-area-container-body {
  background-color: #fff;
  width: calc(100% - 0.4rem);
  height: calc(100% - 6.4rem);
  margin: 0 0.2rem 0.2rem 0.2rem;
  border-radius: 0 0 1rem 1rem;
  padding: 2.4rem 2.2rem 2.2rem 2.2rem;
  box-sizing: border-box;
}

.report-list__left-menu--select-area-container-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.report-list__left-menu--select-area-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.report-list__left-menu--select-prefecture {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.07rem;
  color: #383844;
  background-color: #fff;
  border: none;
  border-left: 0.3rem solid #d3d4db;
  width: 100%;
  height: 3.7rem;
  display: flex;
  align-items: center;
  padding-left: 0.9rem;
  padding-right: 0;
  position: relative;
  cursor: pointer;
  background-image: url("/assets/images/select-prefecture-area-toggle.webp");
  background-repeat: no-repeat;
  background-size: 1.6rem 1.6rem;
  background-position: calc(100% - 1.05rem) center;
}

.report-list__left-menu--select-prefecture-area {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.06rem;
  color: #383844;
  background-color: #fff;
  border: none;
  width: 100%;
  height: 3.7rem;
  display: flex;
  align-items: center;
  padding-left: 0.9rem;
  padding-right: 0;
  border-left: 0.3rem solid #d3d4db;
  position: relative;
  cursor: pointer;
  background-image: url("/assets/images/select-prefecture-area-toggle.webp");
  background-repeat: no-repeat;
  background-size: 1.6rem 1.6rem;
  background-position: calc(100% - 1.05rem) center;
}

.report-list__left-menu--select-prefecture.active {
  border-left: 0.3rem solid #e43b68;
  background-color: #ffeff4;
}

.report-list__left-menu--select-prefecture-area.active {
  border-left: 0.3rem solid #e43b68;
  background-color: #ffeff4;
}

.report-list__left-menu--select-prefecture-area.selected {
  border-left: 0.3rem solid #e43b68;
  background-color: #ffeff4;
}

.report-list__left-menu--select-prefecture-area.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3.6rem;
  width: 2.8rem;
  height: 3.6rem;
  background-color: #ff8fad;
  transform: translate(0) rotate(90%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  z-index: 6;
}

.report-list__left-menu--select-prefecture-area.active::before {
  content: "";
  position: absolute;
  top: 0;
  right: -3.97rem;
  width: 2.8rem;
  height: 3.6rem;
  background-color: #fff;
  transform: translate(0) rotate(90%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  z-index: 7;
}

.report-list__left-menu--checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.report-list__left-menu--checkbox-item {
  padding: 0.8rem;
  height: 3.7rem;
  box-sizing: border-box;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.report-list__left-menu--checkbox-item:hover {
  background-color: #ffeff4;
}

.report-list__left-menu--checkbox-input {
  display: none;
}

.report-list__left-menu--checkbox-label {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.07rem;
  color: #383844;
  width: 100%;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  user-select: none;
}

.report-list__left-menu--checkbox-label::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.3rem;
  border: 0.1rem solid #9394a1;
  background-color: #fff;
  display: inline-block;
}

.report-list__left-menu--checkbox-input:checked
  + .report-list__left-menu--checkbox-label::before {
  background: url("/assets/images/check-mark-pink.webp") no-repeat center
    center;
  background-color: #fff;
}

.report-list__left-menu--checkbox-show-all {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.4rem;
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #0c090d;
  border: none;
  background-color: #fff;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: Auto;
  text-decoration-thickness: Auto;
  text-decoration-skip-ink: auto;
  margin-top: 0.8rem;
  padding: 0;
}

.report-list__left-menu--popular-article-ranking {
  width: 100%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

@media screen and (max-width: 767px) {
  .report-list__left-menu--popular-article-ranking {
    gap: 1.6rem;
  }
}

.report-list__left-menu--rank {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 150%;
  height: 3.6rem;
  letter-spacing: 0.1rem;
  display: flex;
  align-items: center;
  color: #0c090d;
}

.report-list__left-menu--rank-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 0.4rem;
}

.report-list__left-menu--rank span {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 2.4rem;
}

.report-list__left-menu--popular-article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.report-list__left-menu--shop-hashtag {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0.06rem;
  color: #606283;
}

.report-list__left-menu--article-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.report-list__left-menu--home-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.report-list__left-menu--shop-name {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: 0;
  color: #0c090d;
}

.report-list__left-menu--article {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.report-list__left-menu--article-thumbnail {
  width: 9.6rem;
  height: 9.6rem;
  border-radius: 0.48rem;
}

.report-list__left-menu--article-title {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 160%;
  letter-spacing: 0;
  color: #0c090d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 0.8rem 0;
}

.report-list__left-menu--article-author {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 160%;
  letter-spacing: 0;
  color: #0c090d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.report-list__left-menu--article-likes {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0.06rem;
  color: #0c090d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.report-list__left-menu--article-info-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.report-list__left-menu--browsing-history-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.report-list__search-result {
  grid-area: main;
  margin-bottom: 5.6rem;
}

.report-list__search-result .common__title-block--search-list-wrapper {
  width: 100%;
  margin: 0 auto 1.6rem 0;
}

@media screen and (max-width: 767px) {
  .report-list__search-result .common__title-block--search-list-wrapper {
    margin: 0 0 1.6rem 0;
  }
}

.report-list__search-result--header {
  width: 100%;
  margin-bottom: 0.8rem;
}

.report-list__search-result--search-tag-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 3.6rem;
}

@media screen and (max-width: 767px) {
  .report-list__search-result--search-tag-list {
    display: none;
  }
}

.report-list__search-result--search-tag {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.82rem;
  letter-spacing: 0;
  color: #0c090d;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 99.9rem;
  border: 0.1rem solid #606283;
  background-color: #f3f5fb;
}

.report-list__search-result--reset-tag {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.06rem;
  color: #0c090d;
  text-decoration: underline solid;
  text-underline-offset: auto;
  text-decoration-thickness: auto;
  text-decoration-skip-ink: true;
  cursor: pointer;
  margin-left: 0.8rem;
}

.report-list__search-result--search-tag-delete-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.report-list__search-result--search-situation {
  display: flex;
  justify-content: space-between;
}

.report-list__search-result--count-search-result {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.25rem;
  letter-spacing: 0.075rem;
  color: #0c090d;
  display: flex;
  align-items: flex-end;
}

.report-list__search-result--count-search-result-highlight {
  font-size: 2.4rem;
  line-height: 3.6rem;
}

.report-list__search-result--select-order-container {
  width: 28.4rem;
  height: 4.8rem;
  border-radius: 4px;
  border: 1px solid #9394a1;
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .report-list__search-result--select-order-container {
    display: none;
  }
}

.report-list__search-result--select-order-container::before {
  content: "並べ替え";
  position: absolute;
  top: 0.6rem;
  left: 1.2rem;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 0.06rem;
  color: #606283;
}

.report-list__search-result--select-order-container::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  right: 1.2rem;
  width: 2rem;
  height: 2rem;
  background: url("/assets/images/toggle-arrow.webp") no-repeat center
    center;
}

.report-list__custom-select--selected {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.08rem;
  color: #221a15;
  width: 100%;
  height: 100%;
  padding: 1.8rem 1.2rem 0.6rem 1.2rem;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
}

.report-list__custom-select--options {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  width: 27.5rem;
  min-height: 4.5rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 16px 0px #0000001a;
  z-index: 1;
}

.report-list__custom-select--option {
  width: 100%;
  height: 4.5rem;
  padding: 1rem 2rem;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.7rem;
  letter-spacing: 0.075rem;
  color: #606283;
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.report-list__custom-select--option.selected:before {
  position: absolute;
  content: "";
  width: 1.65rem;
  height: 1.65rem;
  top: 1.425rem;
  right: 2rem;
  background: url("/assets/images/check-mark.webp") no-repeat center center;
}

.report-list__custom-select--option:hover {
  background-color: #f3f5fb;
}

.report-list__result-list-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  position: relative;
  padding: 3.4rem 0 0;
}

@media screen and (max-width: 767px) {
  .report-list__result-list-block {
    gap: 0.8rem;
    padding: 0.8rem 0 0;
  }
}

.report-list__result-list--separator {
  width: calc(100% - 3rem);
  height: 1.6rem;
  padding: 0 1.5rem;
  box-sizing: border-box;
  background-image: url("/assets/images/separator-line.webp");
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.report-list__result-list--separator::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 50%;
  left: 0;
  transform: translateX(-100%) translateY(-50%);
  background-image: url("/assets/images/separate-star.webp");
  background-position: center;
  background-size: 100%;
}

.report-list__result-list--separator::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 50%;
  right: 0;
  transform: translateX(100%) translateY(-50%);
  background-image: url("/assets/images/separate-star.webp");
  background-position: center;
  background-size: 100%;
}

.report-list__result-list--article {
  width: 100%;
  display: grid;
  grid-template-areas:
    "thumbnail title"
    "thumbnail info";
  grid-template-columns: 41% calc(59% - 2.4rem);
  justify-content: start;
  column-gap: 2.4rem;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1230px) {
  .report-list__result-list--article {
    grid-template-areas:
      "thumbnail title"
      "info info";
    column-gap: 1.2rem;
    grid-template-columns: 41% calc(59% - 1.2rem);
  }
}

@media screen and (max-width: 390px) {
  .report-list__result-list--article {
    grid-template-columns: 9.1rem calc(100% - 10.3rem);
  }
}

.report-list__result-list--article-link {
  grid-area: thumbnail;
  width: 100%;
  max-width: 40rem;
  min-width: 9.1rem;
  height: auto;
}

.report-list__result-list--article-thumbnail {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.8rem;
}

.report-list__result-list--article-description {
  grid-area: title;
}

.report-list__result-list--article-title {
  font-family: "Shippori Mincho";
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.12rem;
  color: #e43b68;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 500px) {
  .report-list__result-list--article-title {
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
  }
}

.report-list__result-list--article-info {
  display: flex;
  gap: 0.4rem 1.2rem;
  flex-wrap: wrap;
}

.report-list__result-list--article-info-data {
  display: flex;
  gap: 0.8rem;
}

@media screen and (max-width: 900px) {
  .report-list__result-list--article-info {
    gap: 0.4rem 0.8rem;
  }
  .report-list__result-list--article-info-data {
    gap: 0.4rem;
  }
}

.report-list__result-list--article-info-label {
  font-family: "Tenor Sans";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.07rem;
  height: 2.9rem;
  padding: 0.4rem 0.8rem;
  background-color: #e9eaf8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.report-list__result-list--article-info-value {
  font-family: "Tenor Sans";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.07rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  color: #0c090d;
}

@media screen and (max-width: 500px) {
  .report-list__result-list--article-info-label {
    font-size: 1.2rem;
    letter-spacing: 0.06rem;
    padding: 0.2rem 0.4rem;
  }
  .report-list__result-list--article-info-value {
    font-size: 1.2rem;
    letter-spacing: 0.06rem;
  }
}

.report-list__result-list--shop-info {
  grid-area: info;
  width: 100%;
  border-radius: 0.8rem;
  padding: 1.6rem;
  border: 0.1rem solid #d3d4db;
  box-sizing: border-box;
  margin: 1.2rem 0 4rem;
  position: relative;
}

@media screen and (max-width: 500px) {
  .report-list__result-list--shop-info {
    padding: 1.2rem;
    margin: 1rem 0 3.6rem;
  }
}

.report-list__result-list--shop-info-header {
  font-family: "Tenor Sans";
  width: 100%;
  height: 2.8rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid;
  border-image: linear-gradient(90.94deg, #ff8fad -1.38%, #92a3ff 101.39%);
  border-image-slice: 1;
  box-sizing: border-box;
}

.report-list__result-list--shop-info-header-icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.5rem;
}

.report-list__result-list--shop-info-header-text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0.08rem;
  background: linear-gradient(to right, #ff8fad -1.38%, #92a3ff 101.39%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.report-list__result-list--shop-info-header-subtext {
  font-family: "Tenor Sans";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0.06rem;
  margin-left: 1.2rem;
}

@media screen and (max-width: 500px) {
  .report-list__result-list--shop-info-header-icon {
    margin-right: 0.4rem;
  }
  .report-list__result-list--shop-info-header-text {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
  .report-list__result-list--shop-info-header-subtext {
    font-size: 1.1rem;
    letter-spacing: 0.055rem;
  }
}

.report-list__result-list--shop-info-main {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.report-list__result-list--shop-info-image {
  width: 12rem;
  height: 8rem;
  margin: auto 0;
  border-radius: 0.4rem;
}

.report-list__result-list--shop-info-name {
  font-family: "Shippori Mincho";
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.08rem;
  margin-bottom: 0.4rem;
}

.report-list__result-list--shop-info-address {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 180%;
  letter-spacing: 0.06rem;
  color: #0c090d;
  font-style: normal;
  padding-left: 2.2rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.report-list__result-list--shop-info-address::before {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("/assets/images/map-pin.webp");
  background-size: 100%;
  background-position: center;
}

.report-list__result-list--shop-info-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.3rem;
}

.report-list__result-list--shop-info-feature {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.07rem;
  color: #606283;
  margin-top: 0.4rem;
  position: relative;
}

.report-list__result-list--shop-info-feature:not(:last-child)::after {
  position: absolute;
  content: "";
  bottom: 0.25rem;
  right: -0.65rem;
  width: 0.1rem;
  height: 1.4rem;
  background-color: #9394a1;
}

.report-list__result-list--shop-info-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.report-list__result-list--shop-info-tag {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.06rem;
  color: #606283;
  height: 2.2rem;
  padding: 0 0.8rem;
  margin-top: auto;
  background-color: #f3f5fb;
  border: 0.1rem solid #606283;
  border-radius: 2.6rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.report-list__result-list--show-detail {
  display: none;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0.06rem;
  color: #e43b68;
  text-decoration: none;
  width: 9.3rem;
  padding-right: 2.6rem;
  box-sizing: border-box;
  margin: 0.8rem auto 0;
  position: relative;
}

.report-list__result-list--show-detail::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%) rotate(90deg);
  background-image: url("/assets/images/arrow-pink.webp");
  background-size: 100%;
  background-position: center;
}

@media screen and (max-width: 500px) {
  .report-list__result-list--shop-info-main {
    gap: 0.8rem;
  }
  .report-list__result-list--shop-info-image {
    width: 9rem;
    height: 6rem;
  }
  .report-list__result-list--shop-info-name {
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
  }
  .report-list__result-list--shop-info-address {
    font-size: 1.1rem;
    letter-spacing: 0.055rem;
  }
  .report-list__result-list--shop-info-features {
    display: none;
  }
  .report-list__result-list--shop-info-tag-list {
    display: none;
  }
  .report-list__result-list--show-detail {
    display: block;
  }
}

.report-list__result-list--like-button {
  position: absolute;
  width: 7rem;
  height: 2.8rem;
  bottom: -1.2rem;
  left: 0;
  transform: translateY(100%);
  padding: 0.4rem 1.2rem;
  border-radius: 9.6rem;
  background-color: #e9eaf8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  box-sizing: border-box;
}

.report-list__result-list--like-icon {
  width: 2rem;
  height: 2rem;
}

.report-list__result-list--like-count {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.06rem;
  color: #606283;
  width: 2.2rem;
  height: 1.8rem;
  text-align: center;
}

.report-list__pagination {
  margin-top: 6.4rem;
  display: flex;
  justify-content: flex-end;
  gap: 3.2rem;
}

@media screen and (max-width: 500px) {
  .report-list__pagination {
    margin-top: 2.6rem;
    gap: 2.4rem;
  }
}

.report-list__pagination--prev_pc {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.56rem;
  letter-spacing: 0.08rem;
  color: #9394a1;
  width: 12rem;
  height: 5rem;
  min-width: 12rem;
  padding-top: 1.2rem;
  padding-right: 2.4rem;
  padding-bottom: 1.2rem;
  padding-left: 2.4rem;
  border-radius: 0.4rem;
  background-color: #e9eaf8;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
}

.report-list__pagination--prev_pc::before {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
  background-image: url("/assets/images/pagination-prev.webp");
  background: cover;
}

.report-list__pagination--next_pc {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.56rem;
  letter-spacing: 0.08rem;
  color: #fff;
  width: 12rem;
  height: 5rem;
  min-width: 12rem;
  padding-top: 1.2rem;
  padding-right: 2.4rem;
  padding-bottom: 1.2rem;
  padding-left: 2.4rem;
  border-radius: 0.4rem;
  background-color: #e43b68;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  position: relative;
}

.report-list__pagination--next_pc::before {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  background-image: url("/assets/images/pagination-next.webp");
  background: cover;
}

.report-list__pagination--prev_sp,
.report-list__pagination--next_sp {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  display: none;
}

.report-list__pagination--prev_sp img,
.report-list__pagination--next_sp img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 900px) {
  .report-list__pagination--prev_sp,
  .report-list__pagination--next_sp {
    display: block;
  }
  .report-list__pagination--prev_pc,
  .report-list__pagination--next_pc {
    display: none;
  }
}

.report-list__pagination--pages {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.report-list__pagination--page {
  text-decoration: none;
  color: #e43b68;
  font-size: 1.6rem;
  line-height: 1.6rem;
}

.report-list__pagination--page.active {
  color: #606283;
}
