@charset "UTF-8";
.m-txtbtn {
  font-size: 3.2vw;
  font-size: clamp(12px, 3.2vw, 18px);
  display: block;
  margin-top: 1vw;
  position: relative;
  padding: 8px 5px;
  color: #fff;
  text-align: center;
  -webkit-transition: 400ms ease-in;
  transition: 400ms ease-in;
}

@media (min-width: 1025px) {
  .m-txtbtn {
    font-size: 14px;
    margin-top: 10px;
  }
  .m-txtbtn::after {
    bottom: 0;
    content: "";
    right: 0;
    left: inherit;
    position: absolute;
    -webkit-transition: 300ms ease-in;
    transition: 300ms ease-in;
    height: 3px;
    width: 0;
  }
  .m-txtbtn:hover::after {
    left: 0;
    width: 100%;
  }
}

/* *******************************************************
キービジュアル
***********************************************************/
.p-shop_kv_photo img {
  width: 100%;
}

/* **********************************************************
ショップ一覧
*************************************************************/
.p-shop_list_wrap {
  margin: 14vw auto;
}

@media (min-width: 1025px) {
  .p-shop_list_wrap {
    margin: 100px auto;
  }
}

.p-shop_ttl {
  padding: 0 2%;
  width: 70%;
}

@media (min-width: 1025px) {
  .p-shop_ttl {
    padding: 0;
    width: 48%;
  }
}

@media (min-width: 1025px) {
  .p-shop_list_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-shop_list_block {
  margin-top: 8vw;
}

@media (min-width: 1025px) {
  .p-shop_list_block {
    margin-top: 80px;
    width: 48%;
  }
}

.p-shop_list_photo {
  cursor: pointer;
  position: relative;
  -webkit-transition: 400ms;
  transition: 400ms;
  width: 100%;
}

.p-shop_list_photo img {
  width: 100%;
}

.p-shop_list_photo::before {
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  opacity: 0;
  position: absolute;
  -webkit-transition: 400ms;
  transition: 400ms;
  height: 100%;
  width: 100%;
}

.p-shop_list_photo::after {
  border: 1px solid #fff;
  color: #fff;
  top: 50%;
  left: 50%;
  content: "View photo";
  padding: 10px 5px;
  margin-top: 20px;
  opacity: 0;
  position: absolute;
  text-align: center;
  -webkit-transition: 400ms;
  transition: 400ms;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200px;
}

@media (min-width: 1025px) {
  .p-shop_list_photo:hover::before {
    opacity: 1;
  }
  .p-shop_list_photo:hover::after {
    opacity: 1;
    margin-top: 0;
  }
}

/* *************************************
モーダル
***************************************/
.js-modal {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 400ms;
  transition: 400ms;
  visibility: hidden;
  height: 100vh;
  width: 100%;
  z-index: 200;
}

.js-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.js-modal-bg {
  background-color: #82acba;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.js-modal-content {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 650px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
}

@media (min-width: 1025px) {
  .js-modal-content {
    width: 60%;
  }
}

.js-modal-list img {
  /* width: 100%; */
}

.js-close-btn {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  top: -20px;
  right: -20px;
  height: 40px;
  width: 40px;
  z-index: 1;
}

@media (min-width: 1025px) {
  .js-close-btn {
    top: -30px;
    right: -30px;
    height: 60px;
    width: 60px;
  }
}

.js-close-btn span {
  display: block;
  position: relative;
}

.js-close-btn span::before, .js-close-btn span::after {
  content: "";
  position: absolute;
  background-color: #393938;
  top: 50%;
  left: 15%;
  height: 1px;
  width: 70%;
}

.js-close-btn span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.js-close-btn span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.slide-arrow {
  border-top: 1px solid #fff;
  position: absolute;
  top: calc(50% - 3vw);
  height: 6vw;
  width: 6vw;
  z-index: 1;
}

@media (min-width: 1025px) {
  .slide-arrow {
    top: calc(50% - 15px);
    height: 30px;
    width: 30px;
  }
}

.prev-arrow {
  border-left: 1px solid #fff;
  left: -5vw;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (min-width: 1025px) {
  .prev-arrow {
    left: -25px;
  }
}

.next-arrow {
  border-right: 1px solid #fff;
  right: -5vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (min-width: 1025px) {
  .next-arrow {
    right: -25px;
  }
}

.p-shop_list_txt {
  margin: 0 auto;
  width: 90%;
}

@media (min-width: 1025px) {
  .p-shop_list_txt {
    width: 100%;
  }
}

.p-shop_list_ttl {
  width: 100%;
}

.p-shop_list_detail {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  /* padding-bottom: 4vw; */
  margin: 3vw 0 0;
}

@media (min-width: 1025px) {
  .p-shop_list_detail {
    /* padding-bottom: 25px; */
    margin: 20px 0 0;
  }
}

.p-shop_list_detail_txt {
  font-size: 3vw;
  font-size: clamp(12px, 3.2vw, 18px);
}

@media (min-width: 1025px) {
  .p-shop_list_detail_txt {
    font-size: 12px;
  }
}

.p-shop_list_detail_shopname {
  font-weight: 600;
}

@media (min-width: 1025px) {
  .p-shop_list_detail_address {
    display: inline-block;
  }
}

@media (min-width: 1025px) {
  .p-shop_list_detail_tel {
    display: inline-block;
    margin-left: 10px;
    padding-left: 12px;
    position: relative;
  }
  .p-shop_list_detail_tel::before {
    background-color: #393938;
    content: "";
    position: absolute;
    width: 1px;
    height: 60%;
    top: 20%;
    left: 0;
  }
}

.p-shop_list_map {
  display: block;
  -webkit-transition: 400ms;
  transition: 400ms;
  width: 14%;
}

@media (min-width: 1025px) {
  .p-shop_list_map {
    width: 12%;
  }
  .p-shop_list_map:hover {
    opacity: 0.8;
  }
}

.p-shop_list_anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin: 3vw auto 0;
  padding-bottom: 3vw;
  width: 90%;
}

@media (min-width: 1025px) {
  .p-shop_list_anchor {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 20px auto 0;
    padding-bottom: 15px;
    width: 100%;
  }
}

.p-shop_list_anchor::after {
  background-color: #393938;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}

.p-shop_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (min-width: 1025px) {
  .p-shop_btn_wrap {
    width: 74%;
  }
}

.p-shop_btn_wrap .p-shop_plan_btn,
.p-shop_btn_wrap .p-shop_group_btn {
  width: 50%;
}

.p-shop_btn_wrap .p-shop_group_btn {
  margin: 2vw 0 0 2%;
}

@media (min-width: 1025px) {
  .p-shop_btn_wrap .p-shop_group_btn {
    margin: 0 0 0 2%;
  }
}

.p-shop_plan_btn {
  margin: 2vw 0 0 auto;
  width: 49%;
}

@media (min-width: 1025px) {
  .p-shop_plan_btn {
    margin: 0 0 0 auto;
    width: 36%;
  }
}

.p-shop_plan_btn .m-txtbtn {
  background-color: #82acba;
  margin-top: 0;
}

.p-shop_plan_btn .m-txtbtn::after {
  background-color: #82acba;
}

.p-shop_plan_btn .m-txtbtn:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #82acba;
}

.p-shop_group_btn .m-txtbtn {
  background-color: #f39800;
  margin-top: 0;
}

.p-shop_group_btn .m-txtbtn::after {
  background-color: #f39800;
}

.p-shop_group_btn .m-txtbtn:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #f39800;
}

.l-epark {
  margin: 3vw auto 0;
  width: 90%;
  /* table {
    width: 100%;
  }
  tr,
  td {
    font-size: 14px;
    display: block;
    height: auto !important;
    padding: 0 !important;
    text-align: center;
    width: 100%;
    @include pc {
    }
  }
  div {
    text-align: center;
  } */
}

@media (min-width: 1025px) {
  .l-epark {
    margin: 15px auto 0;
    width: 100%;
  }
}

.l-epark .m-txtbtn {
  background-color: #858585;
  margin-top: 0;
  width: 100%;
}

.l-epark .m-txtbtn::after {
  background-color: #858585;
}

.l-epark .m-txtbtn:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #858585;
}

.l-epark_lists {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.l-epark_lists li {
  font-size: 3.1vw;
  font-size: clamp(10px, 3.1vw, 14px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1025px) {
  .l-epark_lists li {
    font-size: 12px;
  }
}

.l-epark_wait_message {
  height: auto !important;
  padding: 0 !important;
}

.l-epark_btn {
  margin-left: 5%;
  width: 49%;
}

@media (min-width: 1025px) {
  .l-epark_btn {
    width: 36%;
  }
}
/*# sourceMappingURL=shoplist.css.map */