.headerNav__search {
  cursor: pointer;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.site-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-search-overlay__panel {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translate(-50%, -10px);
  width: calc(100% - 24px);
  max-width: 110rem;
  background: #fff;
  border-radius: 0.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 3.25rem 3.5rem 8rem;
}

.site-search-overlay.is-open .site-search-overlay__backdrop {
  opacity: 1;
}

.site-search-overlay.is-open .site-search-overlay__panel {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-search-overlay__header {
  position: relative;
  padding-right: 56px;
  margin-bottom: 12px;
}

.site-search-overlay__title {
  margin: 0 0 3rem;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
}

.site-search-overlay__form {
  display: flex;
  gap: 8px;
  width: 70%;
  max-width: 80rem;
  margin: 0 auto;
}

.site-search-overlay__form input[type="text"] {
  flex: 1;
  border: 1px solid #82888e;
  border-radius: 4px;
  padding: 1.5rem 2rem;
  cursor: text;
  font-size: 1.8rem;
}

.site-search-overlay__form input[type="text"]:focus {
  border-color: #1666a1;
  background-color: #f4f4f4;
}

.site-search-overlay__form button {
  padding: 10px 14px;
  background-color: #1a4193;
  border-radius: 4px;
  color: #fff;
  width: 10rem;
  font-size: 1.8rem;
}

.site-search-overlay__form button:hover {
  background-color: #153475;
}

body.is-scroll-locked {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-search-overlay__close {
  position: absolute;
  top: -2.5rem;
  right: -1.5rem;
  z-index: 1;
  font-size: 5rem;
  line-height: 1;
  font-weight: 200;
  min-width: 48px;
  min-height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b0b2b5;
}

.site-search-overlay__close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 8px;
}
/* Slider */
.pageArchive .swiper-slide a { color: inherit; }
.pageArchive .swiper-slide a span {font-size: 90%;}
.pageArchiveImgList__sort--kenchiku {background-color: #1f987c;}
/* IR Filter */
.irYearFilterTarget.active {display: block;}
.irYearFilterTarget:not(.active) {display: none;}
.pageArchive .swiper-slide {padding: 0; width: 105.6px;margin-right: 16px;}
.pageArchive .swiper-slide a {
  padding: .8rem 0;
  display: inline-block;
  width: 100%;
}
/* SP */
@media (max-width: 768px) {
  .site-search-overlay__close {
    display: none;
  }
  .site-search-overlay__header {
    padding-right: 0;
  }
  .site-search-overlay__form {
    width: 100%;
    max-width: none;
    flex-direction: column;
  }
  .site-search-overlay__form button {
    width: 100%;
  }
}