@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=link");
html {
  scroll-padding-top: calc(var(--header-height) + 6rem);
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: calc(var(--header-height) + 9rem);
  }
}

.search-col {
  margin-top: 4rem;
}
.search-col .search__re {
  margin-bottom: 3rem;
  padding: 1.5rem 0;
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: calc(var(--header-height) - 1px);
  z-index: 1;
}
.search-col .search__re .search__re-wrap {
  width: 50%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #CCC;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .search-col .search__re .search__re-wrap {
    width: 100%;
  }
}
.search-col .search__re .search__re-wrap input[type=search] {
  border: none;
  outline: none;
  margin: 0.4rem 0;
  padding: 0;
  font-size: 2rem;
  width: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
}
.search-col .search__re .search__re-wrap input[type=search]::-webkit-input-placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
.search-col .search__re .search__re-wrap input[type=search]::-moz-placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
.search-col .search__re .search__re-wrap input[type=search]:-ms-input-placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
.search-col .search__re .search__re-wrap input[type=search]::-ms-input-placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
.search-col .search__re .search__re-wrap input[type=search]::placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
.search-col .search__re .search__re-wrap input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.search-col .search__re .search__re-wrap button {
  display: block;
  width: 2rem;
  height: 2rem;
  border: none;
  outline: none;
  margin-left: 1rem;
  background-color: #434343;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mask-image: url("../images/icon-search.svg");
  /* Safari対応 */
  -webkit-mask-image: url("../images/icon-search.svg");
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
}
.search-col .search__re .search__re-wrap button:hover {
  background-color: #CCC;
}

.search__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .search__summary {
    display: block;
  }
  .search__summary p:first-child {
    display: none;
  }
  .search__summary p:last-child {
    text-align: right;
  }
}

.search__results {
  list-style-type: none;
  padding: 0;
  border-top: 1px solid #CCC;
}
.search__results .search__results-item {
  border-bottom: 1px solid #CCC;
}
.search__results .search__results-item a {
  display: block;
  padding: 2rem 4rem 2rem 0;
  color: #434343;
  position: relative;
}
.search__results .search__results-item a .item-ttl {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.search__results .search__results-item a .item-description {
  display: block;
  font-size: 1.4rem;
}
.search__results .search__results-item a .item-description strong {
  background: #ffea00;
  font-weight: 400;
}
.search__results .search__results-item a .item-url {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #CCC;
}
.search__results .search__results-item a .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  right: 0;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
}
.search__results .search__results-item a .arrow::before, .search__results .search__results-item a .arrow::after {
  position: absolute;
  content: "";
  top: 50%;
}
.search__results .search__results-item a .arrow::before {
  width: 1.5rem;
  height: 0;
  border-top: 1px solid #434343;
}
.search__results .search__results-item a .arrow::after {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #434343;
  border-right: 1px solid #434343;
  -webkit-transform: rotate(45deg) translateY(-60%);
          transform: rotate(45deg) translateY(-60%);
}
.search__results .search__results-item a:hover {
  color: #8691A3;
}
.search__results .search__results-item a:hover .arrow {
  -webkit-animation: arrow 1s infinite;
          animation: arrow 1s infinite;
}
@-webkit-keyframes arrow {
  from {
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
  to {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
}
@keyframes arrow {
  from {
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
  to {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
}
.search__results .search__results-item a:hover {
  color: #8691A3;
}