@charset "utf-8";
/*------------------------------------------------------------
	shop
------------------------------------------------------------*/
#gNavi .naviList .navi06 a span::after {
  opacity: 1;
}
.pageTitle .rBox {
  background-image: url("../img/shop/page_title_bg.jpg");
}

/* Detail */
.detail.pageTitle {
  margin-top: 120px;
}
.shop-detail {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 0 0;
  /* background-color: #00d084; */
}
.shop-detail__photo {
  max-width: 260px;
}
.shop-detail__photo img {
  width: 100%;
}
.shop-detail__content h3 {
  margin-bottom: 24px;
  font-size: 2.5rem;
}
.shop-detail__content p {
  line-height: 2.14;
  color: #292929;
}
.shop-detail__content dl {
  line-height: 2.14;
  color: #292929;
}
.shop-detail__content dt {
  width: 5em;
}
.shop-detail__content dd {
  width: calc(100% - 5em);
}

.visible-sp {
  display: none!important;
}
@media (max-width: 767px) {
  .detail.pageTitle {
    margin-top: 0;
  }
  .shop-detail {
    gap: 24px;
    margin-left: 25px;
    margin-right: 25px;
  }
  .shop-detail__photo {
    max-width: 220px;
  }
  .shop-detail__content h3 {
    margin-bottom: 16px;
    font-size: 2.2rem;
  }

  .visible-sp {
    display: block!important;
  }
}
@media (max-width: 480px) {
  .shop-detail {
    flex-direction: column;
    gap: 24px;
  }
  .shop-detail__photo {
    margin: 0 auto;
  }
}

/* Shop List */
#main .shop-list {
  margin-top: 120px;
}
#main .shop-list .shopList {
  margin: -40px -21px 79px;
}
#main .shop-list .shopList li {
  margin-top: 40px;
  padding: 0 21px;
  width: 20%;
  box-sizing: border-box;
}
#main .shop-list .shopList li a {
  display: block;
  position: relative;
  color: #fff;
}
#main .shop-list .shopList li a:hover {
    opacity: 0.7;
}
#main .shop-list .shopList li .pho {
  position: relative;
}
#main .shop-list .shopList li .pho::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.17);
  content: '';
}
#main .shop-list .shopList li .txtBox {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
}
#main .shop-list .shopList li .txtBox .ttl {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.39;
  letter-spacing: 0.025em;
  text-align: center;
}
#main .shop-list .shopList li .txtBox .link span {
  padding: 0 6px 8px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.145em;
  border-bottom: 1px solid #fff;
}
@media (max-width: 896px) {
  #main .shop-list .shopList {
    margin: -10px 0 0;
    justify-content: space-between;
  }
  #main .shop-list .shopList li {
    margin-top: 10px;
    padding: 0;
    width: 48.5%;
  }
}