/* ==========================================================================
   Utility / Layout Mixins
   ========================================================================== */
/* ==========================================================================
   Shop Page Styles
   ========================================================================== */
.shop-header {
  margin-bottom: 40px;
}
.shop-header__visual {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .shop-header__visual {
    max-width: 800px;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
.shop-header__visual img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .shop-header__visual img {
    height: 400px;
    object-fit: cover;
    object-position: 50% -50px;
  }
}
.shop-header__concept {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .shop-header__concept {
    padding-left: 5.5vw;
    padding-right: 5.5vw;
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .shop-header__concept {
    max-width: 800px;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}
.shop-header__concept-heading {
  font-family: "Montserrat", sans-serif;
  color: #a0a0a0;
  margin-bottom: 15px;
  font-weight: bold;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.5s forwards;
}
@media screen and (max-width: 767px) {
  .shop-header__concept-heading {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .shop-header__concept-heading {
    font-size: 1.5rem;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.shop-header__concept-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #515151;
}
.shop-news {
  background-color: #f2f2f2;
  padding: 20px 0;
}
.shop-news__text {
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  font-size: 0.75rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .shop-news__text {
    max-width: 800px;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
  }
}
.shop-news__date {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .shop-news__date {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .shop-search {
    padding-left: 5.5vw;
    padding-right: 5.5vw;
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .shop-search {
    max-width: 800px;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
  }
}
.shop-search__heading {
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .shop-search__heading {
    font-size: 1.125rem;
  }
}
.shop-accordion__item {
  border: 2px solid #515151;
  margin-bottom: 20px;
}
.shop-accordion__item:last-child {
  margin-bottom: 0;
}
.shop-accordion__trigger {
  width: 100%;
  background: #fff;
  border: none;
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.shop-accordion__label {
  font-weight: bold;
  font-size: 0.875rem;
}
.shop-accordion__icon {
  position: absolute;
  right: 15px;
  width: 8px;
  height: auto;
  transition: transform 0.3s ease;
}
.shop-accordion__trigger.is-open .shop-accordion__icon {
  transform: rotate(90deg);
}
.shop-accordion__content {
  display: none;
  background-color: #fff;
}
.shop-accordion__content.is-open {
  display: block;
}
.shop-accordion__inner {
  padding-bottom: 20px;
}
.shop-empty-msg {
  text-align: center;
  font-size: 0.75rem;
  color: #707070;
  padding: 20px;
}
.shop-prefecture-group {
  margin-bottom: 30px;
}
.shop-prefecture-group:last-child {
  margin-bottom: 0;
}
.shop-prefecture-label {
  text-align: center;
  font-size: 0.875rem;
  color: #515151;
  margin-bottom: 15px;
  background-color: #f2f2f2;
  padding: 8px;
  margin-left: 5.5vw;
  margin-right: 5.5vw;
}
@media screen and (min-width: 768px) {
  .shop-prefecture-label {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.shop-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 5.5vw;
}
@media screen and (min-width: 768px) {
  .shop-list {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.shop-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  position: relative;
  padding: 20px;
  padding-right: 40px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.shop-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 13px;
  background: url(https://devirockstore.net/s/assets/image/common/arrow/blue.svg) no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
}
.shop-card__name {
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.shop-card .shop-status-label {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: #e84aa1;
}
.shop-card.is-disabled {
  pointer-events: none;
  opacity: 0.7;
  cursor: default;
}
.shop-card.is-disabled::after {
  display: none;
}
.shop-card__info {
  font-size: 0.75rem;
  line-height: 1.5;
}
.shop-card__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.shop-card__row:last-child {
  margin-bottom: 0;
}
.shop-card__icon {
  width: 16px;
  margin-right: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.shop-card__icon img {
  width: 100%;
  height: auto;
}
.shop-card__address {
  color: #515151;
}
.shop-card__tel {
  color: #515151;
}

/* ==========================================================================
   Shop Detail Page Styles
   ========================================================================== */
.shop-detail__visual {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .shop-detail__visual {
    max-width: 800px;
    width: calc(100% - 60px);
    margin: 30px auto 0;
  }
}
.shop-detail__map {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f2f2f2;
}
.shop-detail__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.shop-detail__route-btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .shop-detail__route-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}
.shop-detail__route-btn:hover {
  opacity: 0.8;
}
.shop-detail__container {
  padding: 0 5.5vw;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .shop-detail__container {
    max-width: 800px;
    width: calc(100% - 60px);
    margin: 60px auto 0;
    padding: 0 20px;
  }
}
.shop-detail__section {
  margin-bottom: 30px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 30px;
}
.shop-detail__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.shop-detail__heading {
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .shop-detail__heading {
    font-size: 1.125rem;
  }
}
.shop-detail__content, .shop-detail__dynamic-content {
  font-size: 0.875rem;
  line-height: 1.8;
}
.shop-detail__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}
.shop-detail__row:last-child {
  margin-bottom: 0;
}
.shop-detail__icon {
  width: 22px;
  flex-shrink: 0;
}
.shop-detail__icon img {
  width: 100%;
  height: auto;
}
.shop-detail__text {
  font-size: 0.875rem;
  color: #515151;
}
.shop-detail__tel {
  color: #515151;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .shop-detail__tel {
    pointer-events: none;
  }
}
.shop-detail__list {
  margin-bottom: 20px;
}
.shop-detail__list:last-child {
  margin-bottom: 0;
}
.shop-detail__sub-heading {
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 5px;
  color: #333333;
}
.shop-detail__tags {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-detail__tags li {
  display: block;
  margin-bottom: 0;
}
.shop-detail__sns-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #515151;
  transition: opacity 0.3s;
}
.shop-detail__sns-link:hover {
  opacity: 0.7;
}
.shop-detail__sns-icon {
  width: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}
.shop-detail__sns-text {
  font-size: 0.875rem;
  font-weight: 500;
}