/* コンポーネント調整 */
.m-search_form {
  margin-top: 64px;
}
.m-search_btn {
  min-width: 160px;
  padding: 18px 40px 16px;
}

/* search */
.search {
  margin-top: 64px;
}
.p-search_heading2 {
  padding-bottom: 16px;
  font-size: 2rem;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #3F4044;
}
.p-search_result {
  margin-top: 64px;
}
.p-search_list {
  list-style-type: none;
}
.p-search_result_info {
  margin-top: 32px;
  font-size: 0.875rem;
  color: #283E59;
}
.p-search_result_info-bottom {
  margin-top: 64px;
  text-align: center;
}
.p-search_list_item {
  padding: 40px 0 38px;
  border-bottom: 1px solid #C6C6C6;

  &:first-child {
    padding-top: 23px;
  }
}
.p-search_list_item a {
  text-decoration: none;
}
.p-search_list_title {
  padding-left: 16px;
  font-size: 1.25rem;
  color: #1371C3;
  background-image: url('/img/icon-search-result.svg');
  background-repeat: no-repeat;
  background-position: left center;
}
.p-search_list_url {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #283E59;
}
.p-search_list_paragraph {
  margin-top: 14px;
  line-height: 1.65;
  color: #3F4044;
}
.p-search_list_paragraph .search-word {
  font-size: 1.375rem;
  color: #1371C3;
}
.p-search_pagination {
  display: flex;
  flex-flow: row;
  gap: 48px;
  justify-content: center;
  margin-top: 16px;
}
.p-search_pagination_btn {
  display: inline-block;
  width: 232px;
  padding: 19px 0 16px;
  font-family: 'San Francisco', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}
.p-search_pagination_btn-prev {
  color: #3F4044;
  background-color: #fff;
  background-image: url('/img/icon-btn-arrow-left-invert.svg');
  background-repeat: no-repeat;
  background-position: left 20px center;
  border: 1px solid #C6C6C6;

  &:hover {
    background-color: #EDEDED;
  }
}
.p-search_pagination_btn-next {
  color: #fff;
  background-color: #1371C3;
  background-image: url('/img/icon-btn-arrow-right.svg');
  background-repeat: no-repeat;
  background-position: right 20px center;

  &:hover {
    background-color: #054B8B;
  }
}