@charset "UTF-8";
.page-head {
  background-image: url("../assets/images/shop/shop-head.jpg");
}

.head-text {
  width: 100%;
  text-align: center;
  margin-bottom: 160px;
}
.head-text p {
  font-size: 15px;
  line-height: 2em;
  letter-spacing: 0.12em;
  font-family: "游明朝", "ヒラギノ明朝", serif;
}
.head-text p a {
  color: #666666;
  text-decoration: underline;
  transition: 0.3s;
}
.head-text p a:hover {
  color: #3B1D06;
}

.shop {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
}

.shop-item {
  width: 100%;
  height: 320px;
  position: relative;
  margin-bottom: 80px;
}
.shop-item:last-child {
  margin-bottom: 0;
}
.shop-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.shop-item__content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding-top: 100px;
}
.shop-item__content h2 {
  font-size: 26px;
  letter-spacing: 0.12em;
  font-family: "游明朝", "ヒラギノ明朝", serif;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.shop-item__content a {
  display: block;
  width: 200px;
  font-size: 13px;
  line-height: 46px;
  border-radius: 24px;
  border: solid 1px #fff;
  color: #fff;
  text-align: center;
  margin: auto;
  position: relative;
  transition: 0.6s;
}
.shop-item__content a span {
  position: relative;
  z-index: 2;
}
.shop-item__content a::before {
  content: "";
  display: block;
  width: 200px;
  height: 48px;
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: #fff;
  border-radius: 24px;
  z-index: 1;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 0.6s;
}
@media screen and (min-width:768px) {
  .shop-item__content a:hover {
    color: #666666;
  }
  .shop-item__content a:hover::before {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@media screen and (max-width:767px) {
  .page-head {
    background-image: url("../assets/images/shop/shop-head-sp.jpg");
  }
  .head-text {
    margin-bottom: 80px;
  }
  .head-text p {
    font-size: 14px;
  }
  .shop {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .shop-item {
    height: 63.6vw;
    margin-bottom: 40px;
  }
  .shop-item__content {
    padding-top: 75px;
  }
  .shop-item__content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 360px) {
  .head-text p br.sp-only {
    display: none;
  }
}