@charset "UTF-8";

.p-lp__shop {
  width: 90%;
  margin: 0 auto;
  padding-top: 4rem;
}
.p-lp__shop__list {
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 3rem;
}
.p-lp__shop__list > ul {
  width: 100%;
  margin-right: 0;
}
.p-lp__shop__list > ul > li {
  background: #fff;
  padding: 3rem 0 0 0;
  position: relative;
  margin-bottom: 2rem;
}
.p-lp__shop__list > ul > li ul {
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-lp__shop__list > ul > li ul li {
  margin-right: 3rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.6;
}
.p-lp__shop__list > ul > li ul li span {
  cursor: pointer;
}
.p-lp__shop__list > ul > li ul li span:hover, .p-lp__shop__list > ul > li ul li span:active {
  color: #F79239;
}
.p-lp__shop__list > ul > li h3 {
  background: #F79239;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 2.3rem;
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: 0;
}
.p-lp__shop h2 {
  text-align: center;
  line-height: 1;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-lp__shop h2 {
    font-size: 5rem;
    margin-bottom: 6rem;
  }
}

/*----------------------------------------------------------
modal Window
---------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;
}

.modalBk {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}
.modalContent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  background: #fff;
}
.modalInbox {
  position: relative;
  padding: 2%;
  line-height: 1.8;
}
.modalInbox span {
  position: absolute;
  top: -13%;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modalInbox span {
    top: -8%;
  }
}
.shopInfo {
  max-height: 90vh;
  overflow: auto;
}
.shopInfo h2 {
  font-size: 2vw;
  text-align: center;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .shopInfo h2 {
    font-size: 4vw;
  }
}
.shopInfo ._flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
ul.shopInfoTxt {
  width: 50%;
  padding-right: 1%;
}

ul.shopInfoTxt li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 2% 0;
  border-top: 1px solid #e5e5e5;
}
ul.shopInfoTxt li:last-child {
  border-bottom: 1px solid #e5e5e5;
}
ul.shopInfoTxt .item {
  width: 30%;
  text-align: left;
}
ul.shopInfoTxt .detail {
  width: 70%;
  text-align: left;  
}
ul.shopInfoTxt .item, ul.shopInfoTxt .detail {
  display: block;
  font-size: 0.9vw;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  ul.shopInfoTxt .item, ul.shopInfoTxt .detail {
    font-size: 2.5vw;
  }
}
ul.shopInfoTxt .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

ul.shopInfoTxt .card > div {
  width: 15.8333333333%;
  width: -webkit-calc((100% - 5%) / 6);
  margin-right: 1%;
}

/* Map
---------------------------------------------------------- */
.shopInfo .map {
  position: relative;
  width: 50%;
  margin: 0;
  aspect-ratio: 600/450;
  overflow: hidden;
}

.shopInfo .map iframe,
.shopInfo .map object,
.shopInfo .map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  ul.shopInfoTxt, .shopInfo .map {
    width: 100%;
  }
}