@charset "UTF-8";
/*==================================================
sp pc
==================================================*/
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*--------------------------------------
shop
----------------------------------------*/
.shop-logo {
  text-align: center;
  margin-bottom: 4rem;
}
@media all and (max-width: 768px) {
  .shop-logo {
    margin: 0 -1rem 3rem;
  }
}
.shop-lists {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media all and (max-width: 1080px) {
  .shop-lists {
    grid-template-columns: 1fr;
  }
}
.shop-list {
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 1rem 0.3rem 2.6rem rgba(142, 126, 102, 0.3);
}
.shop-list__head {
  position: relative;
}
.shop-list__img {
  border-radius: 0.8rem 0.8rem 0 0;
  height: 25rem;
  object-fit: cover;
  width: 100%;
}
@media all and (max-width: 768px) {
  .shop-list__img {
    height: 18rem;
  }
}
.shop-list__body {
  padding: 2.4rem 2.4rem 3rem;
}
@media all and (max-width: 768px) {
  .shop-list__body {
    padding: 1.6rem 1.6rem 3rem;
  }
}
.shop-list__ttl {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}
.shop-list__ttl-link {
  display: block;
}
.shop-list__ttl-sm {
  font-size: 1.2rem;
  margin-left: 0.8em;
}
.shop-list__more {
  background-color: var(--gray-lt);
  border-radius: 0.8rem;
  display: grid;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  height: 3.2rem;
  margin: 3rem auto 0;
  max-width: 24rem;
  place-content: center;
  width: 100%;
  position: relative;
}
.shop-list__more::after {
  background: url(/assets/img/ico-arrow-black.svg) center/100% no-repeat;
  content: "";
  height: 1.2rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
}
.shop-dl {
  margin-top: 1.5rem;
}
.shop-dl__item {
  display: grid;
  font-size: 1.4rem;
  gap: 0.5rem;
  grid-template-columns: 7.5rem 1fr;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 0.5em;
}
.shop-dl__dt {
  display: flex;
}
.shop-dl__dt::after {
  content: "：";
  margin-left: auto;
}
@media all and (max-width: 768px) {
  .shop-dl__dd {
    letter-spacing: 0;
  }
}
.shop-btns {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  margin-top: 2rem;
}
@media all and (max-width: 768px) {
  .shop-btns {
    gap: 1.4rem;
  }
}
.shop-btns.-footer-nav {
  flex-direction: column;
  margin-top: 0;
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-index-footer-nav);
}
@media all and (max-width: 768px) {
  .shop-btns.-footer-nav {
    align-items: center;
    background-color: #fff;
    border-top: 0.1rem solid #fff;
    bottom: 0;
    flex-direction: row;
    gap: 0.2rem;
    padding-right: 0.3rem;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
  }
}
.shop-btns.-footer-nav .shop-btn {
  height: 5rem;
  width: 5rem;
}
@media all and (max-width: 768px) {
  .shop-btns.-footer-nav .shop-btn {
    border-radius: 0;
    flex-direction: row;
    gap: 0.8rem;
    height: 6rem;
    max-width: 100%;
    text-align: left;
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .shop-btns.-footer-nav .shop-btn.-line {
    margin-left: 0.1rem;
    height: 5.6rem;
    width: 5.6rem;
  }
}
.shop-btn {
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  border-radius: 0.8rem;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  gap: 0.8rem;
  height: 5.6rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  width: 100%;
  max-width: 18rem;
}
@media all and (max-width: 768px) {
  .shop-btn {
    flex-direction: column;
    font-size: 1.3rem;
    height: 8rem;
    line-height: 1.23;
    text-align: center;
  }
}
.shop-btn.-tel {
  background-color: var(--dark-color);
}
.shop-btn.-tel::before {
  background: url(/assets/img/ico-tel-white.svg) center/100% no-repeat;
  content: "";
  display: block;
  height: 2.4rem;
  width: 2.4rem;
}
.shop-btn.-contact {
  background-color: var(--main-color);
}
@media all and (max-width: 768px) {
  .shop-btn.-contact {
    gap: 0.2rem;
  }
}
.shop-btn.-contact::before {
  background: url(/assets/img/ico-contact-white.svg) center/100% no-repeat;
  content: "";
  display: block;
  height: 3rem;
  width: 3rem;
}
.shop-btn.-line {
  background: url(/assets/img/ico-line.svg) center/100% no-repeat;
  width: 5.6rem;
  flex-shrink: 0;
}
@media all and (max-width: 768px) {
  .shop-btn.-line {
    width: 8rem;
  }
}
.shop-detail {
  padding-bottom: 6rem;
}
@media all and (max-width: 768px) {
  .shop-detail {
    padding-block: 4rem 0;
  }
}
.shop-detail__body {
  padding-right: 63rem;
  position: relative;
}
@media all and (max-width: 1280px) {
  .shop-detail__body {
    padding-right: calc(50% + 2rem);
  }
}
@media all and (max-width: 1080px) {
  .shop-detail__body {
    padding: 37rem 0 0;
  }
}
@media all and (max-width: 768px) {
  .shop-detail__body {
    padding-top: 23rem;
  }
}
.shop-detail__ttl {
  font-size: 3.2rem;
  font-weight: var(--font-weight-base);
  letter-spacing: 0.05em;
}
.shop-detail__ttl-sm {
  display: block;
  font-size: 1.6rem;
}
.shop-detail__txt {
  margin-top: 6rem;
}
@media all and (max-width: 1080px) {
  .shop-detail__txt {
    margin-top: 4rem;
  }
}
.shop-detail__img {
  border-radius: 0.8rem;
  height: 34rem;
  object-fit: cover;
  position: absolute;
  right: -10rem;
  top: 0;
  width: 64rem;
}
@media all and (max-width: 1280px) {
  .shop-detail__img {
    right: 0;
    width: 50%;
  }
}
@media all and (max-width: 1080px) {
  .shop-detail__img {
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .shop-detail__img {
    border-radius: 0;
    height: 20.7rem;
    left: calc(-1 * var(--site-padding));
    max-width: none;
    right: auto;
    width: calc(100% + var(--site-padding) * 2);
  }
}
.shop-detail .shop-dl {
  margin-top: 2rem;
}
.shop-detail .shop-dl__item {
  grid-template-columns: 8.5rem 1fr;
  font-size: 1.6rem;
}
.shop-detail .shop-btns {
  gap: 1rem 1.6rem;
  justify-content: start;
  margin-top: 4rem;
}
@media all and (max-width: 1080px) {
  .shop-detail .shop-btns {
    flex-wrap: wrap;
  }
}
.shop-photo {
  background-color: var(--gray-lt);
  margin-block: 6rem 8rem;
  overflow: hidden;
  padding-block: 4rem 7rem;
}
@media all and (max-width: 768px) {
  .shop-photo__inner {
    padding-inline: 0;
  }
}

.-shop.p-sns__lists {
  margin-top: 1.6rem;
}
@media all and (max-width: 768px) {
  .-shop.p-sns__lists {
    margin: 2.4rem auto 0;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 2.4rem;
  }
}