select,
input[type=text] {
  border: 1px solid #d0d3db;
  border-radius: 2px;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
}
select:focus, select:active,
input[type=text]:focus,
input[type=text]:active {
  box-shadow: none;
  border: 1px solid #6a2d8a !important;
  color: #000;
  background-color: #f9f7fa;
}
select:focus-visible,
input[type=text]:focus-visible {
  outline: 0px;
  border: 1px solid #6a2d8a !important;
  background-color: #f9f7fa;
}

select {
  /* Safari and Chrome */
  background: url(../img/map/select_arrow.svg) 95% center/18px no-repeat;
}

h2.page-title {
  padding: 1em 0 0.85em;
  border-bottom: 1px solid #6a2d8a;
}

h3.sub-title {
  padding: 0 0 1em;
  text-align: center;
  color: #6a2d8a;
  font-size: 1.33em;
}

.sub {
  padding-bottom: 0;
}

.pharmacy-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "bar map" "list map";
  height: calc(100vh - 100px);
  gap: 0;
}
@media (max-width: 768px) {
  .pharmacy-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "bar" "map" "list";
    height: auto;
  }
}
.pharmacy-container .top-box {
  width: 400px;
  padding: 1.25em;
  grid-area: bar;
}
@media (max-width: 768px) {
  .pharmacy-container .top-box {
    width: 100%;
  }
}
.pharmacy-container .search-header h2 {
  color: #6a2d8a;
  text-align: center;
  margin-bottom: 20px;
}
.pharmacy-container .notice-box {
  font-size: 0.9em;
  line-height: 1.6;
  background: #fdfdfd;
  padding: 0;
  margin-bottom: 20px;
  color: #888;
}
.pharmacy-container .notice-box b {
  color: #222;
}
.pharmacy-container .search-form .select-group {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.pharmacy-container .search-form .select-group select {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.pharmacy-container .search-form .search-input-wrap {
  position: relative;
}
.pharmacy-container .search-form .search-input-wrap input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.pharmacy-container .search-form .search-input-wrap .btn-search {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../img/map/search.svg);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.pharmacy-container .result-wrap {
  grid-area: list;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.pharmacy-container .result-info {
  font-weight: bold;
  margin: 0 0;
  padding: 1.25em;
}
.pharmacy-container .result-info span {
  color: #6a2d8a;
}
.pharmacy-container #store-list-wrap {
  overflow-y: scroll;
  height: calc(100% - 80px);
  padding: 0 1.25em 1em;
}
@media (max-width: 768px) {
  .pharmacy-container #store-list-wrap {
    height: auto;
  }
}
.pharmacy-container .store-list .store-item {
  border: 1px solid #eee;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pharmacy-container .store-list .store-item:hover {
  border-color: #6a2d8a;
  background: #f9f7fa;
}
.pharmacy-container .store-list .store-item h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 8px 0;
  color: #222;
  font-weight: 600;
  font-size: 1.1em;
}
@media (max-width: 768px) {
  .pharmacy-container .store-list .store-item h4 {
    font-size: 1.3em;
  }
}
.pharmacy-container .store-list .store-item p {
  margin: 4px 0;
  font-size: 14px;
  color: #666;
}
.pharmacy-container .store-list .store-item .addr-wrap {
  vertical-align: middle;
}
.pharmacy-container .store-list .store-item .copy-btn {
  line-height: 1;
}
.pharmacy-container .store-list .store-item .copy-btn img {
  width: 17px;
}
.pharmacy-container .store-list .store-item .zip-code {
  font-weight: 500;
}
.pharmacy-container .store-list .store-item .tel-link {
  color: #666;
  text-decoration: none;
  display: flex;
  gap: 0.2em;
  margin-top: 8px;
  font-size: 14px;
}
.pharmacy-container .store-list .store-item .tel-link::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/map/call_ico.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.pharmacy-container .paging-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 15px 0;
  background: #fff;
}
.pharmacy-container .page-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
}
.pharmacy-container .nav-btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 0;
  border: 0px;
  background: transparent;
}
.pharmacy-container .page-btn.active {
  background: #6a2d8a;
  color: #fff;
  border-color: #6a2d8a;
  font-weight: bold;
}
.pharmacy-container .page-btn:hover:not(.active) {
  background: #f8f9fa;
}
.pharmacy-container #map {
  grid-area: map;
  min-height: 400px;
  height: 100%;
  border-left: 1px solid #6a2d8a;
}
@media (max-width: 768px) {
  .pharmacy-container #map {
    border-left: 0;
    min-height: 400px;
  }
}

.custom-overlay {
  position: relative;
  bottom: 40px;
  background: #fff;
  border: 1px solid #6a2d8a;
  border-radius: 8px;
  padding: 12px;
  min-width: 190px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.custom-overlay .title {
  font-weight: bold;
  color: #6a2d8a;
  margin-bottom: 5px;
  font-size: 15px;
}
.custom-overlay .body {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .custom-overlay .body {
    max-width: calc(100% - 60px);
    min-width: 330px;
  }
  .custom-overlay .body p {
    max-width: 100%;
    word-break: keep-all;
    text-wrap-mode: wrap;
  }
}
@media (max-width: 360px) {
  .custom-overlay .body {
    max-width: 300px;
    min-width: 250px;
  }
}
.custom-overlay::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #6a2d8a;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}/*# sourceMappingURL=map.css.map */