@charset "UTF-8";
.search-app {
  --primary: #35B08F;
  --primary-dark: #1F8F78;
  --surface: #F2F3F4;
  --surface-2: #FFFFFF;
  --border: #D6D8DB;
  --text: #222222;
  --muted: #666666;
  --count: #E84B8A;
  --link: #29abe2;
  --r12: 12px;
  --r14: 14px;
  --shadow: 0 6px 18px rgba(0, 0, 0, .08);
  color: var(--text);
}
.search-app a {
  color: var(--link);
  text-decoration: none;
}
.search-app a:hover {
  text-decoration: underline;
}
.search-app__container {
  position: sticky;
  top: 64px;
  z-index: 30;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.search-app__form {
  max-height: 200px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.search-app .form-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
  cursor: pointer;
  flex: 0 0 auto;
  user-select: none;
  position: absolute;
  right: 10px;
  top: calc(100% + 15px);
}
.search-app .form-toggle::after {
  content: "▾";
  font-size: 11px;
  opacity: 0.75;
}
.search-app .form-toggle:active {
  transform: translateY(1px);
}
.search-app__head {
  text-align: left;
  padding: 15px 20px;
}
.search-app__head .container {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.search-app .result > .container {
  padding-bottom: 90px;
  text-align: left;
}
.search-app__main {
  padding-top: 12px;
}
.search-app__perPage {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}
.search-app__countUnit {
  margin-left: 6px;
}
.search-app .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 10px;
}
.search-app .brand {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.search-app .mark {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--primary), #7ee1c7);
  flex: 0 0 auto;
}
.search-app .brandText {
  min-width: 0;
  line-height: 1.15;
}
.search-app .brandText .h1 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-app .brandText .sub {
  font-size: 12px;
  color: var(--muted);
}
.search-app .controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 2px 10px;
}
.search-app .nameWrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 10px;
  padding: 0 10px;
  min-height: 42px;
  min-width: 0;
  grid-column: 1/-1;
}
.search-app .nameWrap input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  padding: 10px 0;
  appearance: none;
}
.search-app .nameWrap input::-webkit-search-cancel-button {
  display: none;
}
.search-app .btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  min-height: 42px;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  cursor: pointer;
}
.search-app .btn:active {
  transform: translateY(1px);
}
.search-app .badge {
  font-size: 12px;
  font-weight: 900;
  color: var(--primary-dark);
  background: rgba(53, 176, 143, 0.12);
  border: 1px solid rgba(53, 176, 143, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
}
.search-app .iconBtn {
  flex-shrink: 0;
  white-space: nowrap;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}
.search-app .iconBtn:active {
  background: rgba(0, 0, 0, 0.06);
}
.search-app .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}
.search-app .chips.is-expanded {
  align-items: flex-start;
}
.search-app .chipsSummary,
.search-app .chipsCollapse {
  appearance: none;
  border: 1px solid rgba(53, 176, 143, 0.25);
  background: rgba(53, 176, 143, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 850;
  color: var(--primary-dark);
  cursor: pointer;
  line-height: 1.3;
  flex: 0 0 auto;
}
.search-app .chipsSummary:active,
.search-app .chipsCollapse:active {
  transform: translateY(1px);
}
.search-app .chipsSummary::after {
  content: " ▾";
  font-size: 11px;
  opacity: 0.75;
}
.search-app .chipsBreak {
  flex-basis: 100%;
  height: 0;
}
.search-app .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 7px 10px;
  font-size: 13px;
  max-width: 100%;
}
.search-app .chip strong {
  font-weight: 950;
  color: var(--primary-dark);
}
.search-app .chip--cond strong {
  color: #4b3bbd;
}
.search-app .chip--name strong {
  color: #3a3a3a;
}
.search-app .chip .x {
  border: 0;
  background: rgba(0, 0, 0, 0.08);
  color: #333;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: 950;
  line-height: 1;
}
.search-app .chip .x:active {
  transform: translateY(1px);
}
.search-app .summaryPanel {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  padding: 12px;
}
.search-app .summaryGrid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.search-app .summaryLeft {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  min-width: 0;
}
.search-app .summaryLeft b {
  color: var(--text);
}
.search-app .countWrap {
  text-align: right;
  white-space: nowrap;
}
.search-app .countWrap .label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}
.search-app .countWrap .count {
  font-size: 20px;
  font-weight: 950;
  color: var(--count);
  letter-spacing: 0.01em;
}
.search-app .loadingDot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}
.search-app .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  animation: search-app-blink 1.05s infinite ease-in-out;
}
.search-app .dot:nth-child(2) {
  animation-delay: 0.15s;
}
.search-app .dot:nth-child(3) {
  animation-delay: 0.3s;
}
.search-app .list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.search-app .card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.search-app .cardHead {
  background: var(--primary);
  color: #fff;
  padding: 10px 12px;
  font-weight: 950;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.search-app .cardHead a {
  color: #fff;
}
.search-app .cardHead a:hover {
  opacity: 1;
}
.search-app .cardBody {
  background: var(--surface);
  padding: 10px 12px 12px;
  display: grid;
  gap: 0;
  font-size: 13px;
}
.search-app .row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}
.search-app .row .k {
  flex: 0 0 64px;
  color: var(--muted);
  font-weight: 850;
}
.search-app .row .v {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text);
  word-break: break-word;
}
.search-app .nighttime {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  font-size: 13px;
}
.search-app .nighttime .k {
  flex: 0 0 64px;
  color: var(--muted);
  font-weight: 850;
}
.search-app .nighttime .v {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text);
  word-break: break-word;
}
.search-app .nighttime .note {
  flex: 1 1 100%;
  min-width: 0;
  color: var(--muted);
  word-break: break-word;
  line-height: 1.3;
}
.search-app .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 2px;
}
.search-app .map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--link);
  font-weight: 850;
}
.search-app .map::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("../images/search/icon_map.svg");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.search-app .detail {
  color: var(--link);
  font-weight: 950;
  text-decoration: none;
  line-height: 1.6;
}
.search-app .detail::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../images/search/icon_detail.svg");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 4px;
  vertical-align: middle;
}
.search-app .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.search-app .pill {
  font-size: 12px;
  line-height: 1.5;
  color: #2e2e2e;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  padding: 4px 8px;
  border-radius: 999px;
}
.search-app .pager {
  position: sticky;
  bottom: 10px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
}
.search-app .pagerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}
.search-app .pagerTop strong {
  color: var(--text);
  font-weight: 950;
}
.search-app .pagerNums {
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.search-app .pagerNums::-webkit-scrollbar {
  height: 6px;
}
.search-app .pagerNums::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
}
.search-app .pnum,
.search-app .pellipsis {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 13px;
}
.search-app .pnum {
  border: 1px solid rgba(53, 176, 143, 0.45);
  background: #fff;
  color: var(--primary-dark);
  cursor: pointer;
}
.search-app .pnum:active {
  transform: translateY(1px);
}
.search-app .pnum[aria-current=page] {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.search-app .pellipsis {
  border: 1px dashed rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.03);
  color: var(--muted);
}
.search-app .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 50;
}
.search-app .overlay.show {
  display: block;
}
@media screen and (max-width: 999px) {
  .search-app .overlay {
    overscroll-behavior: none;
    touch-action: none;
  }
  .search-app .overlay .sheet {
    touch-action: pan-y;
  }
}
.search-app .sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-radius: 10px 10px 0 0;
  padding: 10px 10px 15px;
  overflow: auto;
  box-shadow: 0 -25px 60px rgba(0, 0, 0, 0.25);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.search-app .sheet .inner {
  position: relative;
  padding: 10px;
  max-height: 82dvh;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.search-app .sheetHeader {
  position: sticky;
  top: 0;
  transform: translateY(-10px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}
.search-app .sheetHeader::before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 0;
  border-bottom: 1px solid var(--border);
  left: -10px;
  right: -10px;
  bottom: 0;
}
.search-app .sheetHeader h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
}
.search-app .close {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  padding: 9px 12px;
  font-weight: 950;
  cursor: pointer;
}
.search-app .section {
  margin-top: 10px;
}
.search-app .label {
  font-size: 12px;
  color: var(--muted);
  margin: 10px 2px 8px;
  line-height: 1.35;
  text-align: left;
}
.search-app .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.search-app .opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  user-select: none;
  cursor: pointer;
}
.search-app .opt input {
  width: 18px;
  height: 18px;
}
.search-app .opt .txt {
  flex: 1;
  font-weight: 900;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
}
.search-app .opt small {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}
.search-app details.areaBlock {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.search-app details.areaBlock:nth-of-type(-n+2) {
  grid-column: span 2;
}
.search-app details.areaBlock > summary {
  list-style: none;
  cursor: pointer;
  padding: 12px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 950;
  font-size: 13px;
}
.search-app details.areaBlock > summary::-webkit-details-marker {
  display: none;
}
.search-app details.areaBlock[open] .chev {
  transform: rotate(180deg);
}
.search-app .areaBlock--flat {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.search-app .areaBlock--flat .opt {
  margin: 0;
  border: 0;
  border-radius: 0;
}
.search-app .sumRight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.search-app .chev {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  font-weight: 950;
}
.search-app .areaInner {
  padding: 10px 12px 12px;
  background: #fff;
}
.search-app .areaInner .label {
  margin-top: 0;
}
.search-app .sheetFooter {
  position: sticky;
  bottom: 0;
  transform: translateY(10px);
  margin-top: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  gap: 10px;
}
.search-app .sheetFooter::before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 0;
  border-bottom: 1px solid var(--border);
  left: -10px;
  right: -10px;
  top: 0;
}
.search-app .ghost {
  flex: 1;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  padding: 12px;
  font-weight: 950;
  cursor: pointer;
}
.search-app .primary {
  flex: 1;
  border: 1px solid rgba(53, 176, 143, 0.45);
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 12px;
  font-weight: 950;
  cursor: pointer;
}
.search-app .noteInline {
  margin: 8px 2px 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

@media screen and (min-width: 1000px) {
  .search-app__container {
    top: 74px;
  }
  .search-app__head {
    margin: 0 auto;
    max-width: 1130px;
  }
  .search-app .brandText .h1 {
    font-size: 16px;
  }
  .search-app .brandText .sub {
    font-size: 14px;
  }
  .search-app .controls {
    grid-template-columns: 140px 140px 1fr;
  }
  .search-app .nameWrap {
    grid-column: auto;
  }
  .search-app .nameWrap input {
    font-size: 16px;
  }
  .search-app .summaryPanel {
    padding: 16px;
  }
  .search-app .summaryLeft {
    font-size: 16px;
  }
  .search-app .countWrap .label {
    font-size: 14px;
  }
  .search-app .countWrap .count {
    font-size: 28px;
  }
  .search-app .list {
    margin-top: 20px;
    gap: 16px;
  }
  .search-app .cardHead {
    font-size: 16px;
  }
  .search-app .cardBody {
    font-size: 16px;
  }
  .search-app .nighttime {
    font-size: 16px;
  }
  .search-app .pill {
    font-size: 14px;
  }
  .search-app .pager {
    margin-top: 40px;
  }
  .search-app .pagerTop {
    font-size: 14px;
  }
  .search-app .sheetHeader h2 {
    font-size: 18px;
  }
  .search-app .label {
    font-size: 14px;
  }
  .search-app .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .search-app .opt .txt {
    font-size: 16px;
  }
  .search-app details.areaBlock:nth-of-type(-n+2) {
    grid-column: span 4;
  }
  .search-app .noteInline {
    font-size: 14px;
  }
}
@media screen and (max-width: 999px) {
  .search-app:has(.search-app__container.is-scrolled) {
    padding-top: 64px;
  }
  .search-app__container.is-scrolled {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
  }
  .search-app__container.is-scrolled.is-form-collapsed .search-app__head .container {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .search-app__container.is-scrolled.is-form-collapsed .search-app__form {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }
  .search-app__container.is-scrolled.is-form-collapsed .form-toggle {
    display: inline-flex;
  }
  .search-app__container.is-scrolled.is-form-collapsed .chips {
    flex: 1 1 auto;
    min-width: 0;
  }
  .search-app__container.is-scrolled.is-form-expanded .form-toggle {
    display: none;
  }
}
@keyframes search-app-blink {
  0%, 100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-1px);
  }
}
@media screen and (max-width: 999px) {
  body.is-overlay-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }
}
.main_ttl {
  background-image: url("../images/search/bg_head.jpg");
}