@charset "utf-8";
/**************************************
 * page.css
 * 특정페이지에서만 사용되는 스타일
 * 2025/04 By "PARK EUN HEE"
/**************************************/

/******************************  
** S: 메인
*******************************/

/******************************  
** E: 메인
*******************************/

/******************************  
** S: member
*******************************/

/******************************  
** E: member
*******************************/

/******************************  
** S: reservation
*******************************/
/*** 예약 - 시작시간 button  ***/
.btn-time {
  background-color: #fff;
  flex-direction: column;
  gap: 2px;
  border: 1px solid #d8d8d8;
}

.btn-time span {
  display: block;
}

.btn-time .time {
  color: #7f92a6;
}

.btn-time.primary.off-peak .time {
  color: #7f92a6;
}

.btn-time .price {
  font-size: 1.2rem;
}

.btn-time.normal {
  border: 1px solid #2793ff;
}

.btn-time.normal .time {
  color: #2793ff;
}

.btn-time.peak {
  border: 1px solid #ff7a0d;
}
.btn-time.peak .time {
  color: #ff7a0d;
}

.btn-time.off-peak {
  border: 1px solid #d8d8d8;
}
.btn-time.off-peak .time {
  color: #7f92a6;
}

.btn-time.primary {
  border-color: var(--btn-bg-primary);
}

/*** 예약 - 카드 버튼  ***/
.btn-card {
  background-color: #fff;
  gap: 10px;
  border: 1px solid #d8d8d8;
  height: 72px;
  font-size: 1rem;
  width: 184px;
  justify-content: flex-start;
}

.btn-card img {
  display: block;
  pointer-events: auto;
}

.btn-card .txt-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-card .card-name {
  margin-bottom: 2px;
  font-weight: 700;
}

.btn-card .card-number {
  /* margin-bottom: 7px; */
  color: #506273;
}

.btn-card .installment {
  font-weight: 700;
  padding-right: 18px;
  position: relative;
  line-height: 1;
}

.btn-card .installment::after {
  content: '';
  width: 14px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url('/assets/images/ico_select_drop.svg') no-repeat center;
}

.btn-card.selected {
  border: 1px solid #2793ff;
}

.btn-card.selected .card-name {
  color: #2793ff;
}

.btn-card-delete {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
  right: 5px;
  background: url('/assets/images/ico_card_delete.svg') no-repeat center;
}

/*** 예약 - 시작시간 범례 ***/
.time-remark {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #777;
}

.time-remark [class^='state-'] {
}

.time-remark [class^='state-']::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
}

.time-remark .state-peak::before {
  background: #ff7a0d;
}
.time-remark .state-off-peak::before {
  background: #d8d8d8;
}
.time-remark .state-normal::before {
  background: #2793ff;
}

/*** 매장운영시간 안내 - 운영시간 목록  ***/
.store-time {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.store-time-detail {
  font-size: 1.2rem;
  color: #646464;
}

.store-time-detail + .store-time-detail {
  margin-top: 4px;
}

.store-time-detail .off-peak,
.store-time-detail .peak {
  font-size: 0.9rem;
  background: #f2f4f6;
  border-radius: 3px;
  display: inline-block;
  width: 46px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.2px;
  font-weight: 700;
  margin-right: 4px;
}

.store-time-detail .off-peak {
  color: #999;
}
.store-time-detail .peak {
  color: #e73723;
}
/******************************  
** E: reservation
*******************************/

/******************************  
** S: store
*******************************/

/*** S: 매장찾기 : map ***/

.storeInfo {
  position: relative;
  padding: 0 0 0 400px;
}
.storeInfo .mapBox {
  height: 940px;
  position: relative;
}
.storeInfo .mapBox .fixSearch {
  background: url('/assets/images/ico_refresh.svg') no-repeat 18px 50%;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 156px;
  padding: 0 0 0 42px;
  text-align: left;
  letter-spacing: -0.01em;
  color: #fff;
  font-size: 14px;
  line-height: 44px;
  font-weight: 500;
  background-color: #272c30;
  border-radius: 22px;
  z-index: 2;
}
.storeInfo .mapBox .storeName {
  font-size: 14px;
  font-weight: 700;
  /* text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff; */
  text-shadow:
    -1px 0 #fff,
    0 1px #fff,
    1px 0 #fff,
    0 -1px #fff;
  color: #000;
  margin: 75px 0 0 0;
}
.storeInfo .map {
  height: 100%;
}
.storeInfo .storeListBox {
  width: 400px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
}

.storeInfo .storeListBox .storeListHeader {
  padding: 40px 26px 5px;
}
.storeInfo .storeListBox h1 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.storeInfo .storeListBox .searchBox {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.storeInfo .storeListBox .searchBox .ui-selectmenu-button {
  width: 105px;
  height: 48px;
}

.storeInfo .storeListBox .search {
  overflow: hidden;
  margin: 0 0 0 0;
  float: right;
}
.storeInfo .storeListBox .search span {
  float: left;
  position: relative;
}
.storeInfo .storeListBox .search span input {
  height: 48px;
  line-height: 46px;
  padding-left: 48px;
  background: url('/assets/images/ico_search.png') no-repeat 20px 50%;
  background-size: 20px auto;
}
.storeInfo .storeListBox .search span button {
  display: block;
  width: 48px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: url('/assets/images/ico_delete.png') no-repeat center 50%;
  background-size: 20px auto;
  text-indent: -9999px;
  display: none;
}
.storeInfo .storeListBox .filter {
}
.storeInfo .storeListBox .filter {
  width: 120px;
}
.storeInfo .storeListBox .filter .selectric-wrapper .selectric {
  border: none;
}
.storeInfo .storeListBox .filter .selectric-wrapper .selectric .label {
  margin: 0 15px 0 0;
  color: #272c30;
}
.storeInfo .storeListBox .filter .selectric-wrapper .selectric-items {
  width: 128px !important;
}
.storeInfo .storeListBox .paging {
  width: 100%;
  padding: 22px 0;
  background: #fff;
  display: flex;
  justify-content: center;
}
.storeInfo .storeListBox .searchNone {
  line-height: 30px;
  color: #adb9c2;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.storeInfo .store {
  padding: 0;
  margin: 0 0 0 0;
  width: 100%;
  overflow-y: auto;
  height: 700px;
  position: relative;
}
.storeInfo .store .storeList {
  margin: 0 0 0 0;
}
.storeInfo .store .storeList li {
  padding: 26px 26px;
}
.storeInfo .store .storeList li.on {
  background: #f6f8f9;
}
.storeInfo .store .storeList li > span a > .title {
  font-size: 18px;
  line-height: 23px;
}
.storeInfo .store .storeList li > span a > .address {
  font-size: 14px;
  line-height: 23px;
}
.storeInfo .store .storeList li > span .tel {
  font-size: 14px;
  line-height: 23px;
}
.storeInfo .storeDetail {
  width: 400px;
  height: 100%;
  position: absolute;
  left: 400px;
  top: 0;
  background: #fff;
  border-left: 1px solid #d9d9d9;
  display: none;
}
.storeInfo .storeDetail .storeImg {
  width: 399px;
  height: 270px;
  z-index: 0;
}
.storeInfo .storeDetail .img {
  position: relative;
}
.storeInfo .storeDetail .img img {
  width: 100%;
}
.storeInfo .storeDetail .img button {
  background: #fff;
  border-radius: 36px;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.storeInfo .storeDetail .img button img {
  width: 16px;
  height: 16px;
}
.storeInfo .storeDetail .infoBox {
  padding: 15px 25px; /* 30px -> 25px */
}
.storeInfo .storeDetail .infoBox .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 38px;
  margin: 0 0 20px 0;
}
.storeInfo .storeDetail .infoBox dl {
  overflow: hidden;
  position: relative;
  padding: 0 0 0 110px;
  margin: 0 0 20px 0;
}
.storeInfo .storeDetail .infoBox dl dt {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  line-height: 23px;
  color: #6c7883;
}
.storeInfo .storeDetail .infoBox dl dd {
  font-size: 14px;
  line-height: 23px;
}
.storeInfo .storeDetail .infoBox dl dd a {
  color: #2793ff;
}
.storeInfo .storeDetail .infoBox dl dd .sensor {
}
.storeInfo .storeDetail .infoBox dl dd .sensor li {
  overflow: hidden;
  position: relative;
}
.storeInfo .storeDetail .infoBox dl dd .sensor li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 49%;
  border-top: 1px dotted #d0d7dc;
  width: 100%;
}
.storeInfo .storeDetail .infoBox dl dd .sensor li span {
  background: #fff;
  float: right;
  position: relative;
  padding: 0 0 0 4px;
}
.storeInfo .storeDetail .infoBox dl dd .sensor li span:first-child {
  float: left;
  padding: 0 4px 0 0;
}
.storeInfo.on .storeDetail {
  display: block;
}
@media (max-width: 1024px) {
  .storeInfo {
    padding: 56px 0 50px 0;
  }
  .storeInfo .mapBox .fixSearch {
    font-size: 12px;
    line-height: 36px;
    width: 140px;
  }
  .storeInfo .storeListBox h1 {
    display: none;
  }

  .storeInfo .storeListBox .storeListHeader {
    padding: 12px 20px 5px;
  }

  .storeInfo .storeListBox .searchBox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 10px 10px 0;
  }

  .storeInfo .storeListBox .search span input {
    padding-left: 38px;
    background-position: 12px 50%;
  }

  .storeInfo .storeListBox .select,
  .storeInfo .storeListBox .ui-selectmenu-button.ui-button {
    height: 36px;
    flex: 0 0 auto;
  }

  .storeInfo .storeListBox .search {
    width: 100%;
    float: none;
  }
  .storeInfo .storeListBox .search span {
    float: none;
  }
  .storeInfo .storeListBox .search span input {
    width: 100%;
    height: 36px;
    line-height: 34px;
  }
  .storeInfo .mapBox {
    height: 600px;
    width: 100%;
  }
  .storeInfo .storeListBox {
    position: unset;
    width: 100%;
  }

  .storeInfo .storeListBox .searchNone {
    position: relative;
    left: unset;
    top: unset;
    padding: 50px 0 0 0;
  }
  
  /* 모바일에서도 페이지 번호를 보이게 해달라는 요청이 있어 주석 처리
  .storeInfo .storeListBox .paging {
    display: none;
  }
  */

  .storeInfo .store {
    overflow: hidden;
    height: auto;
  }
  .storeInfo .store .storeList li {
    padding: 20px;
  }
  .storeInfo .store .storeList li > span a > span .tag {
    position: absolute;
    left: unset;
    bottom: unset;
    margin: 0 0 0 6px;
    line-height: 30px;
  }
  .storeInfo .store .storeList li > span a > .title {
    font-size: 16px;
    line-height: 30px;
  }
  .storeInfo .store .storeList li > span a > .address {
    font-size: 13px;
    line-height: 22px;
  }
  .storeInfo .storeDetail {
    width: 100%;
    top: unset;
    left: unset;
    border: none;
  }
  .storeInfo .storeDetail .infoBox {
    padding: 15px 20px;
  }
  .storeInfo .storeDetail .storeImg {
    width: 100%;
    height: auto;
  }
  .storeInfo .storeDetail .img img {
    width: 100%;
  }
  .storeInfo.on {
    padding: 0;
  }
  .storeInfo.on .mapBox {
    height: 0;
    overflow: hidden;
  }
  .storeInfo.on .storeListBox {
    height: 0;
    overflow: hidden;
  }
  .storeInfo.on .storeDetail {
    display: block;
    position: relative;
    left: 0;
    top: 0;
  }
}
@media (max-width: 720px) {
  .storeInfo .mapBox {
    height: 300px;
  }
  .storeInfo .gm-err-content {
    padding-bottom: 40px;
  }
}

/*** 스토어 리스트 ***/
.store {
  width: 1520px;
  margin: 0 auto 0;
  padding: 160px 160px 130px;
  overflow: hidden;
}
.store h1 {
  font-size: 58px;
  line-height: 84px;
  font-weight: 700;
}
.store h1 span {
  display: block;
  font-size: 18px;
  line-height: 32px;
  margin: 17px 0 0 0;
}

.store .storeList {
  margin: 20px 0 0 0;
}
.store .storeList li {
  padding: 40px 0 39px 0;
  border-bottom: 1px solid #eceff1;
  overflow: hidden;
  position: relative;
}
.store .storeList li > span {
  float: left;
}
.store .storeList li > span a {
  display: block;
}
.store .storeList li > span a > span {
  display: block;
  font-size: 22px;
  line-height: 38px;
  font-weight: 700;
}
.store .storeList li > span a > span .tag {
  margin: 0 0 0 6px;
}
.store .storeList li > span a > span .tag span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  font-size: 9px;
  line-height: 20px;
  font-weight: 700;
  vertical-align: 4px;
  text-align: center;
  margin: 0 2px 0 0;
}
.store .storeList li > span a > span .tag span.fa {
  background: #523e33;
  color: #ffde11;
}
.store .storeList li > span a > span .tag span.t2 {
  background: #ffde11;
}
.store .storeList li > span a > span .tag span.t1 {
  background: #dc3322;
  color: #fff;
}
.store .storeList li > span a > span .tag span.r {
  background: #2f67d4;
  color: #fff;
}
.store .storeList li > span a > span .tag span.g {
  background: #11a500;
  color: #fff;
}
.store .storeList li > span .tel {
  font-size: 16px;
  line-height: 20px;
  color: #2793ff;
}
.store .storeList li > span .address {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #555f67;
  margin: 12px 0 10px 0;
  font-weight: 400;
}
.store .storeList li > a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.store .search p {
  float: right;
  line-height: 48px;
  font-weight: 500;
  color: #87929c;
}
@media (max-width: 1520px) {
  .store {
    width: 100%;
    padding: 50px 20px 50px;
  }
}

@media (max-width: 1024px) {
  .store {
    width: 100%;
    padding: 50px 20px 50px;
  }
  .store h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .store h1 span {
    font-size: 18px;
    line-height: 30px;
    margin: 18px 0 0 0;
  }
  .store .search {
    margin: 48px 0 0 0;
  }
  .store .search span {
    float: unset;
    display: block;
  }
  .store .search span input {
    width: 100%;
    font-size: 14px;
    padding: 0 0 0 34px;
    background-position: 12px 50%;
    background-size: 16px auto;
  }

  .store .search p {
    display: none;
  }
  .store .storeList li {
    padding: 20px 0 51px;
  }
  .store .storeList li > span {
    float: unset;
    display: block;
  }
  .store .storeList li > span .tel {
    font-size: 16px;
  }
  .store .storeList li > span .address {
    font-size: 16px;
    margin: 6px 0;
  }
  .store .storeList li > a {
    display: none;
  }
}
@media (max-width: 720px) {
  .store h1 {
    font-size: 30px;
    line-height: 43px;
  }
  .store h1 span {
    font-size: 14px;
    line-height: 23px;
    margin: 15px 0 0 0;
  }
  .store .search span input {
    height: 36px;
  }
  .store .storeList li > span a > span {
    font-size: 18px;
  }
  .store .storeList li > span a > span .tag {
    position: absolute;
    left: 0;
    bottom: 20px;
    margin: 0 0 0 0;
    line-height: 17px;
  }
  .store .storeList li > span a > span .tag span {
    width: 17px;
    height: 17px;
    font-size: 7px;
    line-height: 17px;
    margin: 0;
    border-radius: 6;
  }
  .store .storeList li > span .tel {
    font-size: 14px;
  }
  .store .storeList li > span .address {
    font-size: 14px;
    margin: 6px 0;
  }
}

/*** 매장목록 페이징 ***/
.paging {
  text-align: center;
  line-height: 30px;
}
.paging a {
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #555f67;
  display: inline-block;
}
.paging a:hover {
  font-weight: 700;
}
.paging a img {
  width: 50%;
  vertical-align: -3px;
}
.paging a.prev {
  margin: 0 0 0 0;
}
.paging a.next {
  margin: 0 0 0 0;
}
.paging a.on {
  background: #272c30;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
}
.pagingMobile {
  display: none;
  background: #272c30;
  color: #fff;
  width: 100px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin: 30px auto 0;
  border-radius: 100px;
}
.pagingMobile span {
  background: url('/assets/images/ico_more.png') no-repeat right 50%;
  background-size: 15px auto;
  padding: 0 22px 0 0;
}
.paging.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .paging {
    display: none;
  }
  .pagingMobile {
    display: block;
  }
  .paging.mobile {
    display: block;
    line-height: 32px;
  }
  .paging.mobile a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
/*** E: 매장찾기 : map ***/

/******************************  
** E: store
*******************************/
