@charset "UTF-8";
/**
 * search result
**/


/**
 * search result list
**/
.search_result_wrap {
  --result-list-gap: 28px;
  --result-item-padding: 12px;
  --result-item-img-width: 90px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  margin: 0;
  padding: 0;
  gap: var(--result-list-gap);
}

@media (max-width: 959px) {
  .search_result_wrap {
    --result-list-gap: 12px;
    --result-item-padding: 12px;
    --result-item-img-width: 104px;
    margin: 0;
    padding: 0;
    gap: var(--result-list-gap);
  }
}

@media (max-width: 767px) {
  .search_result_wrap {
    --result-list-gap: 12px;
    --result-item-padding: 12px;
    --result-item-img-width: 104px;
    margin: 0;
    padding: 0;
    gap: var(--result-list-gap);
  }
}


/**
 * search result list item
**/
.search_result_item {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: var(--btn-radius-l);
  border: 2px solid var(--main_c);
  background: #fff;
  width: calc((100% - var(--result-list-gap)) / 2);
  margin: 0;
  padding: var(--result-item-padding);
  position: relative;
}

@media (max-width: 767px) {
  .search_result_item {
    width: 100%;
  }
}

.search_result_item .company {
  margin: 0;
  padding: 0 25px 0 25px;
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 767px) {
  .search_result_item .company {
    margin: 0;
    padding: 0 16px;
    line-height: 1.6;
    font-size: 14px;
  }
}

.search_result_wrap .title_parts {
  position: relative;
  padding: 0;
  padding-right: 4rem;
}

.search_result_item .tit01 {
  margin: 0 0 8px 0;
  padding: 0 25px 0 25px;
  color: var(--main_c);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .search_result_wrap .title_parts {
    padding-right: 2rem;
  }

  .search_result_item .tit01 {
    margin: 0 0 8px;
    padding: 0 16px;
    line-height: 1.6;
    font-size: 24px;
    font-weight: 700;
  }
}

.search_result_wrap .title_parts .tit01 {
  color: var(--main_c);
  font-size: 20px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.25;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .search_result_wrap .title_parts .tit01 {
    font-size: 18px;
  }
}

.search_result_wrap .title_parts .tit01 a {
  color: inherit;
}

/* fav */
.search_result_wrap .title_parts .btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--main_c);
  font-size: 14px;
  font-weight: 400;
  line-height: inherit;
  text-align: center;
  min-width: 28px;
  width: auto;
  height: auto;
  padding: 0 1.75em 0 0;
  position: absolute;
  right: 0;
  top: calc((1lh - 1em) / 2);
  z-index: 1;
  opacity: 1;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {

  .search_result_wrap .title_parts .btn:focus,
  .search_result_wrap .title_parts .btn:hover {
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--main_c);
    opacity: 1;
  }
}

.search_result_wrap .title_parts .btn.active {
  opacity: 1;
}

/* default style */
.search_result_wrap .title_parts .btn::before,
.search_result_wrap .title_parts .btn::after {
  content: '';
  display: block;
  background-image: url("/common/images/icon_search_fav.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transition: opacity 0.2s ease;
}

@media screen and (max-width: 767px) {

  .search_result_wrap .title_parts .btn::before,
  .search_result_wrap .title_parts .btn::after {
    top: 5px;
  }
}

.search_result_wrap .title_parts .btn::before {
  background-image: url("/common/images/icon_search_fav.svg");
  opacity: 1;
}

.search_result_wrap .title_parts .btn::after {
  background-image: url("/common/images/icon_search_fav_active.svg");
  opacity: 0;
}

/* active style */
@media (min-width: 768px) {

  .search_result_wrap .title_parts .btn:hover::before,
  .search_result_wrap .title_parts .btn:focus::before {
    background-image: url("/common/images/icon_search_fav.svg");
    opacity: 0;
  }

  .search_result_wrap .title_parts .btn:hover::after,
  .search_result_wrap .title_parts .btn:focus::after {
    background-image: url("/common/images/icon_search_fav_active.svg");
    opacity: 1;
  }
}

.search_result_wrap .title_parts .btn.active::before {
  background-image: url("/common/images/icon_search_fav.svg");
  opacity: 0;
}

.search_result_wrap .title_parts .btn.active::after {
  background-image: url("/common/images/icon_search_fav_active.svg");
  opacity: 1;
}



/**
* グレードタグ wrapper（検索ページのみ）
**/
.search_result_wrap .grade_parts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 0 0 16px;
  position: relative;
}

@media (max-width: 767px) {
  .search_result_wrap .grade_parts {
    padding: 0;
  }
}

/* .grade_parts_tags */
.search_result_wrap .grade_parts .grade_parts_tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .search_result_wrap .grade_parts .grade_parts_tags {
    width: 100%;
    padding-right: 36px;
    margin: 0 0 8px;
  }
}

/**
* タグ・カテゴリ（グレードタグ）
* ※詳細ページと共通のスタイル
**/
.grade_parts_tags>label {
  display: block;
  margin: 0 4px 0 0;
  background: #f4f4f4;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.grade_parts_tags>label:focus,
.grade_parts_tags>label:hover {
  opacity: 1;
}

.grade_parts_tags>label>button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  border: none;
  background: transparent;
  cursor: pointer;
}

.grade_parts_tags>label:focus>button,
.grade_parts_tags>label:hover>button,
.grade_parts_tags>label>button:focus,
.grade_parts_tags>label>button:hover {
  opacity: 1;
}

.grade_parts_tags>label>button>img {
  display: none;
}

@media (max-width: 767px) {
  .grade_parts_tags>label {
    font-size: 8px;
    line-height: 12px;
    padding: 4px 8px;
  }

  .grade_parts_tags>label>button {
    top: 6px;
    right: 5px;
  }
}

.grade_parts_tags .grade_parts_tag1,
.grade_parts_tags .grade_parts_tag2,
.grade_parts_tags .grade_parts_tag3,
.grade_parts_tags .grade_parts_tag4,
.grade_parts_tags .grade_parts_tag5,
.grade_parts_tags .grade_parts_tag6,
.grade_parts_tags .grade_parts_tag7,
.grade_parts_tags .grade_parts_tag8,
.grade_parts_tags .grade_parts_tag9,
.grade_parts_tags .grade_parts_tag10,
.grade_parts_tags .grade_parts_tag11,
.grade_parts_tags .grade_parts_tag12,
.grade_parts_tags .grade_parts_tag13,
.grade_parts_tags .grade_parts_tag14,
.grade_parts_tags .grade_parts_tag15,
.grade_parts_tags .grade_parts_tag16,
.grade_parts_tags .grade_parts_tag17,
.grade_parts_tags .grade_parts_tag18,
.grade_parts_tags .grade_parts_tag19,
.grade_parts_tags .grade_parts_tag20,
.grade_parts_tags .grade_parts_tag21,
.grade_parts_tags .grade_parts_tag22,
.grade_parts_tags .grade_parts_tag23 {
  background: #f4f4f4;
  color: inherit;
}

/* .grade_parts_score */
.search_result_wrap .grade_parts .grade_parts_score {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  color: #706e6e;
  margin-left: auto;
  padding-right: 28px;
}

@media (max-width: 767px) {
  .search_result_wrap .grade_parts .grade_parts_score {
    padding-right: 36px;
  }
}

.search_result_wrap .grade_parts .grade_parts_score label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
  opacity: 0.66;
}

.search_result_wrap .grade_parts .grade_parts_score p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.search_result_wrap .grade_parts .grade_parts_score b {
  display: inline-block;
  font-size: 10px;
  font-weight: inherit;
  line-height: 14px;
}

.search_result_wrap .grade_parts .grade_parts_score b>a {
  display: inline-block;
  color: #e2ac40;
  font-size: 14px;
  font-weight: inherit;
  line-height: 14px;
}

.search_result_wrap .grade_parts .grade_parts_score small {
  display: inline-block;
  font-size: 10px;
  font-weight: inherit;
  line-height: 14px;
}

.search_result_wrap .grade_parts .grade_parts_score b+small {
  margin-left: 4px;
}

@media (max-width: 767px) {
  .search_result_wrap .grade_parts .grade_parts_score {
    width: calc(100% - 88px);
  }

  .search_result_wrap .grade_parts .grade_parts_score label {
    text-align: left;
    width: auto;
    margin-right: 4px;
  }

  .search_result_wrap .grade_parts .grade_parts_score p {
    justify-content: flex-end;
    width: auto;
  }

  .search_result_wrap .grade_parts .grade_parts_score b {
    font-size: 10px;
    line-height: 16px;
  }

  .search_result_wrap .grade_parts .grade_parts_score b>a {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
  }

  .search_result_wrap .grade_parts .grade_parts_score small {
    font-size: 10px;
    line-height: 16px;
  }
}

/* エリア名 .ddd_parts */
.search_result_wrap .grade_parts .ddd_parts {
  font-size: 10px;
  padding: 0 8px;
}

@media (max-width: 1300px) {
  .search_result_wrap .grade_parts .ddd_parts {
    padding: 0 8px;
  }
}

@media (max-width: 767px) {
  .search_result_wrap .grade_parts .ddd_parts {
    padding: 0 8px;
    width: 8, 80px;
  }
}

.search_result_wrap .grade_parts .ddd_parts>span {
  font-weight: 700;
}

.search_result_wrap .grade_parts .ddd_parts>span:empty {
  display: none;
}

.search_result_wrap .grade_parts .ddd_parts>span::before {
  content: "\f3a3";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--main_c);
  transform: translate(0, 16.66%) scale(1.5, 1.5);
  margin: 0 8px 0 0;
}

.search_result_item_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
}

/* result item image wrapper(left wrapper) */
.search_result_item .img_parts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  width: var(--result-item-img-width);
  gap: 8px;
}

.search_result_item .img_parts .main_img {
  width: 100%;
}

.search_result_item .img_parts .main_img img {
  border-radius: 0;
  max-width: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.search_result_item .img_parts .sub_img {
  display: none;
  width: calc((100% - 8px) / 2);
  height: auto;
}

.search_result_item .img_parts .sub_img img {
  border-radius: 0;
  width: 100%;
  height: 80px;
  object-fit: cover;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .search_result_item .img_parts {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    background: #fff;
    width: var(--result-item-img-width);
  }

  .search_result_item .img_parts .main_img {
    position: relative;
    width: calc(66.66% - 4px);
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .search_result_item .img_parts .main_img:only-child {
    width: 100%;
  }

  .search_result_item .img_parts .main_img img {
    max-width: none;
    width: 100%;
    /* height: 100%; */
  }

  .search_result_item .img_parts .sub_img {
    position: relative;
    width: calc(33.33% - 4px);
    height: calc(50% - 4px);
    margin: 0 0 0 8px;
  }

  .search_result_item .img_parts .sub_img+.sub_img {
    margin-top: 8px;
  }

  .search_result_item .img_parts .sub_img img {
    max-width: none;
    width: 100%;
    height: 100%;
  }
}

/* result item text wrapper(right wrapper) */
.search_result_item .text_parts {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  width: calc(100% - var(--result-item-img-width));
  padding: 0 0 0 var(--result-item-padding);
  position: relative;
}

.search_result_item .text_parts>* {
  order: 5;
  width: 100%;
}

.search_result_item .text_parts>.title_parts {
  order: 1;
}

.search_result_item .text_parts>.grade_parts {
  order: 0;
  display: none;
}

.search_result_item .text_parts>h4 {
  color: var(--main_c);
  font-size: 20px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 28px;
  margin: 0 0 14px;
}

.search_result_item .text_parts>*+h4 {
  border-top: solid 1px #e1ecc7;
  padding: 16px 0 0;
}

.search_result_item .text_parts>h4 a {
  color: inherit;
}

.search_result_item .text_parts>h5 {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  font-feature-settings: "palt";
  margin: 0 0 8px;
}

.search_result_item .text_parts>*+h5 {
  padding: 16px 0 0;
}

.search_result_item .text_parts>h5 a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .search_result_item .text_parts>h4 {
    font-size: 16px;
    margin: 0 0 6px;
  }

  .search_result_item .text_parts>*+h4 {
    border-top: none;
    padding: 12px 0 0;
  }

  .search_result_item .text_parts>p {
    font-size: 11px;
    line-height: 18px;
    margin: 0;
  }

  .search_result_item .text_parts>h4 a {
    color: #fa5882;
    font-weight: 700;
    text-decoration: underline;
  }

  .search_result_item .text_parts>h4 a * {
    color: inherit;
  }

  .search_result_item .text_parts>p a {
    color: inherit;
    font-size: inherit;
    font-weight: 400;
    letter-spacing: 0.1ex;
    text-decoration: underline;
    opacity: 0.66;
    margin-left: 2.5px;
  }
}

.search_result_item .address_parts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  order: 5;
  font-size: 12px;
}

.search_result_item .address_parts .icon_img {
  padding: 4px 0;
}

.search_result_item .address_parts .address_text {
  padding: 4px 0;
  margin: 0 32px 0 0;
}

.search_result_item .address_parts .movie_icon_img {
  flex-basis: 100%;
  order: 6;
}

.search_result_item .address_parts .movie_icon_img p {
  width: 100%;
  font-size: 14px;
  line-height: 40px;
  height: 40px;
  color: #fff;
  margin: 8px 0;
  background-color: #fc6968;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
}

.search_result_item .address_parts .movie_icon_img p.movie_link_off {
  background-color: #e8e8e8;
}

.search_result_item .address_parts .movie_icon_img p::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 4px;
  left: -5px;
  width: 20px;
  height: 20px;
  background: url("../images/movie_btn.png") center center/12.5px no-repeat;
}

@media (max-width: 767px) {
  .search_result_item .address_parts {
    padding-bottom: 5px;
    position: relative;
  }

  .search_result_item .address_parts .movie_icon_img {
    width: 33.33%;
  }

  .search_result_item .address_parts .movie_icon_img p {
    margin: 0;
    font-size: 12px;
    line-height: 26px;
    max-width: none;
    height: 26px;
  }

  .search_result_item .address_parts .movie_icon_img p::before {
    top: 3px;
    width: 12px;
    height: 12px;
    background: url(../images/movie_btn.png) center center/13px no-repeat;
  }

  .search_result_item .address_parts .icon_img {
    width: 64px;
    font-size: 8px;
  }

  .search_result_item .address_parts .address_text {
    width: calc(100% - 64px);
    font-size: 8px;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .search_result_wrap .box_btn .btn_net {
    margin-bottom: 8px;
  }

  .search_change_view {
    flex-basis: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    clear: both;
    padding: 0 8px 8px;
    margin: 8px 0;
    background: #fff;
  }

  .search_change_view div {
    flex-basis: 52%;
    text-align: left;
    margin: 0 0 6px;
    border: 1px solid var(--main_c);
    border-radius: 6px;
    background: #fff;
  }

  .search_change_view div:nth-child(2n),
  .search_change_view div:nth-child(4n) {
    width: calc((100% - 8px) / 2);
  }

  .search_change_view div:first-child {
    width: 100%;
    text-align: center;
    margin: 8px 0 0;
    border: none;
    box-shadow: none;
  }
}

.search_result_wrap .view_more {
  margin: 28px 0 16px;
}

.search_result_wrap .view_more .view_more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e9be38;
  background-color: #fff;
  color: #e9be38;
  font-size: 18px;
  font-weight: 700;
  width: 80%;
  max-width: 300px;
  min-height: 60px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .search_result_wrap .view_more .view_more_btn {
    width: 80%;
  }
}


/**
* タグ・カテゴリ（住所下のタグ）
**/
.search_result_item .tag_parts {
  width: 100%;
  order: 4;
}


/**
* タグ・カテゴリ（一覧）
**/
.search_result_item .label_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  gap: 1ex;
}

.search_result_item *+.label_list {
  margin-top: 12px;
}

.search_result_item .label_list>li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: #EDE9E2;
  color: #1a1a1a;
  font-size: inherit;
  font-weight: inherit;
  font-feature-settings: 'palt';
  line-height: 1.25;
  height: 28px;
  padding: 0 1ex;
}

.search_result_item .label_list>.list_media,
.tag_parts .list>.cell.on.list_media {
  background-color: #ffddcc;
}

.search_result_item .label_list>.list_target,
.tag_parts .list>.cell.on.list_target {
  background-color: #ccffdd;
}

.search_result_item .label_list>.list_sample,
.tag_parts .list>.cell.on.list_sample {
  background-color: #ddccff;
}


.search_result_item .label_list_comment {
  padding: 1rem 0 0;
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.search_result_item .label_list_map,
.search_result_item .label_list_type,
.search_result_item .label_list_circulation {
  font-size: 1.4rem;
  position: relative;
  padding-left: 2.4rem;
}

.search_result_item .label_list_map {
  min-height: 24px;
  margin-top: 1rem;
}


.search_result_item .label_list_map::before {
  content: "";
  display: inline-block;
  background-image: url('/common/images/icon_home_map.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

.search_result_item .label_list_type {
  min-height: 20px;
  margin-top: .5rem;
}

.search_result_item .label_list_type::before {
  content: "";
  display: inline-block;
  background-image: url('/common/images/icon_home_voice.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  position: absolute;
  top: 0;
  left: -5px;
}

.search_result_item .label_list_circulation {
  margin-top: .5rem;
  min-height: 24px;
}

.search_result_item .label_list_circulation::before {
  content: "";
  display: inline-block;
  background-image: url('/common/images/icon_home_men.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}


/**
 * ボタン wrapper
**/
.search_result_item .box_btn {
  display: none;
  margin: 0;
  padding: 20px 0 0;
  overflow: hidden;
  order: 99;
}

/**
* 閲覧履歴ページ
**/
/* 閲覧履歴ページ削除ボタン */
.search_result_item .btn_bookmark_delete {
  display: block;
  color: #999;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  transform: translate(50%, -50%);
}

/* 削除ボタン アイコン */
.search_result_item .btn_bookmark_delete::before {
  content: "\f12a";
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50%;
  border: solid 1px #f1f1f1;
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 16px;
  width: calc(1em + 8px);
  height: calc(1em + 8px);
}

/* 削除ボタン 文言 */
.search_result_item .btn_bookmark_delete>span {
  display: none;
  margin-left: 4px;
}

/*条件検索　アコーディオン*/

@media (min-width: 960px) {

  .search_item_group>.search_item_submit,
  .search_item_group>.search_item {
    display: none;
  }

  .search_item_group>.search_item_submit.acc_open,
  .search_item_group>.search_item.acc_open {
    display: block;
  }
}
