@charset "UTF-8";
/* ------------------------------------- */
/* パンくずリスト
/* ------------------------------------- */
#search {
  background-color: #fff;
}
#search .bread_wrap {
  position: static;
  max-width: 100%;
}
#search .bread_wrap ol {
  justify-content: flex-end;
}

/* ------------------------------------- */
/* ページネーション
/* ------------------------------------- */
#search .pager {
  margin-top: 50px;
}
#search .pager .pager_list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#search .pager .pager_item {
  width: 35px;
  height: 35px;
  line-height: 32px;
  font-family: Arial, sans-serif;
  text-align: center;
}
#search .pager .pager_item a {
  display: block;
  width: 100%;
  height: 100%;
  border: solid 2px #c11b33;
  border-radius: 50px;
  color: #c11b33;
  font-weight: 700;
  transition: all 0.3s;
}
.isPc #search .pager .pager_item a:hover {
  background-color: #c11b33;
  color: #fff;
  transition: all 0.3s;
}
#search .pager .pager_item.prev a, #search .pager .pager_item.next a {
  position: relative;
}
#search .pager .pager_item.prev a::after, #search .pager .pager_item.next a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
}
#search .pager .pager_item.next a::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#search .pager .pager_item.prev a::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
#search .pager .pager_item.prev a::after, #search .pager .pager_item.next a::after {
  border-top: solid 2px #c11b33;
  border-right: solid 2px #c11b33;
  transition: all 0.3s;
}
.isPc #search .pager .pager_item.prev a:hover::after, .isPc #search .pager .pager_item.next a:hover::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transition: all 0.3s;
}
#search .pager .pager_item .current {
  width: 100%;
  height: 100%;
  border: solid 2px #c11b33;
  border-radius: 50px;
  background-color: #c11b33;
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  #search .pager .pager_list {
    gap: 8px;
  }

  #search .pager .pager_item.dotto {
    width: max-content;
  }
}

/* ------------------------------------- */
/* search
/* ------------------------------------- */
.search {
  padding: 50px 0 80px;
}
.search .inner {
  max-width: 820px;
  padding: 0 15px;
}

@media screen and (max-width: 600px) {
  .search {
    padding: 20px 0 80px;
  }
}
.input-area {
  padding: 43px 20px 40px;
  border: solid 1px #ddd;
  border-radius: 4px;
  text-align: center;
}

.input-text {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.9px;
}

.input-wrapper {
  width: 100%;
  max-width: 384px;
  margin: 20px auto 0;
}
.input-wrapper form {
  position: relative;
  width: 100%;
  height: 100%;
}
.input-wrapper form input#search {
  width: 100%;
  height: 100%;
  padding: 15px 40px 15px 20px;
  border: 0;
  border-radius: 22px;
  outline: 0;
  background: #f5f5f5;
}
.input-wrapper form button#submit {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 0;
  background: url(/img/common/icon-search.png) no-repeat center center/contain;
}

@media screen and (max-width: 600px) {
  .input-area {
    padding: 20px;
  }
}
.result-area {
  margin-top: 80px;
}

.result-title {
  padding-left: 30px;
  border-left: solid 10px #c11b33;
  font-weight: 700;
  font-size: 2.4rem;
}
.result-title span {
  font-weight: 700;
}
.result-title .number {
  margin-left: 1em;
  font-weight: 700;
}

.result-list {
  margin-top: 30px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

.result-item:not(:first-child) {
  border-top: solid 1px #ddd;
}
.result-item a {
  display: block;
  width: 100%;
  padding: 25px 30px;
  line-height: 1.67;
  transition: all 0.3s;
}
.isPc .result-item a:hover {
  background-color: #f5f5f5;
  transition: all 0.3s;
}
.result-item-title {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.45px;
}
.result-item-text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 制限したい行数が3の場合 */
  margin-top: 10px;
  overflow: hidden;
  line-height: 2;
  letter-spacing: 0.38px;
}
.result-item-text .target {
  border-bottom: solid 1px #000;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .result-area {
    margin-top: 60px;
  }
  .result-title {
    padding-left: 10px;
    font-size: 2.2rem;
  }
  .result-item a {
    padding: 20px;
  }
}
.notfound-text {
  margin-top: 30px;
  padding: 30px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  line-height: 1.3;
}
