/* ========================================
  SHOP DETAIL
======================================== */
.shop-detail {
    width: 100%;
    padding: 15.4% 0px 8%;
    box-sizing: border-box;
    background: #fff;
    color: #625d58;
}

.shop-detail__inner {
  width: 90%;
  margin: 0 auto;
}

.shop-detail__visual {
  width: 100%;
}

.shop-detail__swiper {
  width: 100%;
  overflow: hidden;
}

.shop-detail__swiper .swiper-slide {
  width: 100%;
}

.shop-detail__swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.shop-detail__swiper .swiper-pagination {
  bottom: 2.5%;
}

.shop-detail__swiper .swiper-pagination-bullet {
  width: 1.5vw;
  height: 1.5vw;
  margin: 0 0.8vw !important;
  background: #fff;
  opacity: 0.55;
}

.shop-detail__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* CONTENT */
.shop-detail__content {
    width: 89%;
    margin-top: 7%;
    margin: 0 auto;
    margin-top: 5%;
}

.shop-detail__heading {
  width: 100%;
}

.shop-detail__name {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: 5.2vw;
  font-weight: 400;
  line-height: 1.3;
}

.shop-detail__kana {
  margin: 1% 0 0;
  font-family: "Hannari", serif;
  font-size: 3.2vw;
  line-height: 1.5;
}

.shop-detail__description {
  margin-top: 6%;
}

.shop-detail__description p {
  margin: 0;
  font-family: "Hannari", serif;
  font-size: 3.2vw;
  line-height: 2;
  letter-spacing: 0.08em;
}

.shop-detail__product {
  margin-top: 5%;
}

.shop-detail__product p {
    margin: 0;
    font-size: 3.2vw;
    line-height: 1.55;
    font-weight: 600;
}

.shop-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  margin-top: 3%;
}

.shop-detail__tags span {
    display: inline-block;
    padding: 1.5vw 1.5vw;
    border: 1px solid #8c8783;
    box-sizing: border-box;
    font-size: 2.7vw;
    line-height: 1;
}

/* WRAPPING */
.shop-detail__wrapping {
  width: 30%;
  margin-top: 4%;
}

.shop-detail__wrapping img {
  display: block;
  width: 100%;
  height: auto;
}

.shop-detail__wrapping p {
  margin: 2% 0 0;
  font-size: 2.6vw;
  line-height: 1.5;
  white-space: nowrap;
}

/* SHOP DATA */
.shop-detail__data {
  width: 100%;
  margin-top: 9%;
}

.shop-detail__data-title {
  position: relative;
  margin: 0;
  padding-left: 5%;
  font-family: Arial, sans-serif;
  font-size: 3.7vw;
  font-weight: 700;
  line-height: 1.3;
}

.shop-detail__data-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 1.5vw solid transparent;
  border-bottom: 1.5vw solid transparent;
  border-left: 2vw solid #aaa6a3;
  transform: translateY(-50%);
}

.shop-detail__data-list {
  width: 100%;
  margin: 4% 0 0;
}

.shop-detail__data-list div {
  display: flex;
  width: 100%;
  margin-top: 1.5%;
}

.shop-detail__data-list dt {
  width: 28%;
  font-size: 3vw;
  font-weight: 600;
  line-height: 1.5;
}

.shop-detail__data-list dd {
  width: 72%;
  margin: 0;
  font-size: 3vw;
  line-height: 1.5;
}

.shop-detail__button {
position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76%;
    margin: 7% auto 0;
    padding: 3vw;
    border: 1px solid #625d58;
    box-sizing: border-box;
    color: #625d58;
    font-size: 3vw;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.5s ease;
}
.shop-detail__arrow {
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 2.8vw;
    font-family: sans-serif;
    font-weight: 300;
    transform: translateY(-50%);
}
/* NOTE */
.shop-detail__note {
    width: 100%;
    margin-top: 7%;
    padding-bottom: 10%;
    border-bottom: 1px dotted #8f8f8f;
}

.shop-detail__note p {
font-size: 2.4vw;
    line-height: 1.8;
    letter-spacing: 0.04em;
    width: 99%;
    margin: 0 auto;
}
    .kanren {
        color: #625d58;
    }

@media (hover: hover) and (pointer: fine) {
  .shop-detail__button:hover {
    opacity: 0.6;
  }
}

/* ========================================
  PC
======================================== */
@media screen and (min-width: 769px) {
  .shop-detail {
        padding: 8% 0 5%;
  }

  .shop-detail__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 62%;
  }

  .shop-detail__visual {
    width: 62%;
  }

  .shop-detail__content {
        width: 34%;
        margin-top: 0;
        margin-left: 4%;
  }

  .shop-detail__name {
        font-size: 1.6vw;
  }

  .shop-detail__kana {
    margin-top: 0.5%;
    font-size: 0.85vw;
  }

  .shop-detail__description {
    margin-top: 10%;
  }

  .shop-detail__description p {
    font-size: 0.8vw;
    line-height: 2;
  }

  .shop-detail__product {
    margin-top: 8%;
  }

  .shop-detail__product p {
    font-size: 0.78vw;
    line-height: 1.7;
  }

  .shop-detail__tags {
    gap: 0.4vw;
    margin-top: 5%;
  }

  .shop-detail__tags span {
    padding: 0.3vw 0.5vw;
    font-size: 0.65vw;
  }

  .shop-detail__wrapping {
    width: 27%;
    margin-top: 5%;
  }

  .shop-detail__wrapping p {
    font-size: 0.65vw;
  }

  .shop-detail__data {
    margin-top: 8%;
    padding-top: 5%;
    border-top: 1px dotted #8f8f8f;
  }

  .shop-detail__data-title {
    padding-left: 5%;
    font-size: 0.9vw;
  }

  .shop-detail__data-title::before {
    border-top-width: 0.45vw;
    border-bottom-width: 0.45vw;
    border-left-width: 0.55vw;
  }

  .shop-detail__data-list {
    margin-top: 5%;
  }

  .shop-detail__data-list div {
    margin-top: 1%;
  }

  .shop-detail__data-list dt {
    width: 30%;
    font-size: 0.75vw;
  }

  .shop-detail__data-list dd {
    width: 70%;
    font-size: 0.75vw;
  }

  .shop-detail__button {
    width: 100%;
    margin-top: 7%;
    padding: 1vw 8%;
    font-size: 0.72vw;
  }
  .shop-detail__arrow {
        right: 5%;
        font-size: 0.9vw;
  }

  .shop-detail__note {
    width: 62%;
    margin-top: 2%;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .shop-detail__note p {
    font-size: 0.6vw;
    line-height: 1.8;
  }

  .shop-detail__swiper .swiper-pagination-bullet {
    width: 0.5vw;
    height: 0.5vw;
    margin: 0 0.3vw !important;
  }

.kanren {
    font-size: 1.5vw;
}
}