@charset "UTF-8";
/* ======================================================================
 * ショップ検索
====================================================================== */
.search-field-container {
  padding: 6.4rem 0;
}
@media screen and (max-width: 768px) {
  .search-field-container {
    padding-top: 3.2rem;
    padding-bottom: 5.6rem;
  }
}

.result-container {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .result-container .c-tab-button {
    font-size: 1.2rem;
  }
}
.result-container .c-tab-button > span {
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .result-container .c-tab-button > span {
    flex-direction: column;
    gap: 0.4rem;
    padding-right: 0;
    padding-left: 0;
  }
}
.result-container .c-tab-button .result {
  line-height: 1;
}
.result-container .c-tab-button .num {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .result-container .c-tab-button .num {
    font-size: 1.8rem;
  }
}

.result-title {
  margin-bottom: 3.2rem;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result-title {
    margin-bottom: 2.4rem;
    font-size: 1.6rem;
  }
}

.result-post-item:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .result-post-item:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}
.result-post-item a {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .result-post-item a {
    gap: 1.6rem;
  }
}
.result-post-item .image {
  flex: 0 0 auto;
  width: 20rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .result-post-item .image {
    width: 13.6rem;
  }
}
.result-post-item .content {
  flex: 1 1 auto;
}
.result-post-item .title {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .result-post-item .title {
    font-size: 1.4rem;
  }
}
.result-post-item .shop {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .result-post-item .shop {
    margin-bottom: 1.6rem;
  }
}
.result-post-item .text {
  margin-top: 1.2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .result-post-item .text {
    display: -webkit-box;
    margin-top: 0.8rem;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.highlight {
  background-color: #fff282;
}