/* ========================================
   SHOP - 店舗一覧ページ
   ======================================== */

/* --- セクション --- */
.p-shop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 130px 30px 70px;
  background-color: var(--color-white);
}

/* --- 店舗カード --- */
.p-shop__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

/* 店名 */
.p-shop__card-name {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.p-shop__card-name-en {
  font-family: var(--font-en-sans);
  font-size: var(--font-size-20);
  font-weight: 500;
}

.p-shop__card-name-jp {
  font-family: var(--font-serif-jp);
  font-size: var(--font-size-18);
  font-weight: 600;
  letter-spacing: 0.09rem;
}

/* 店舗写真 */
.p-shop__card-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.p-shop__card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 情報エリア（アクション + 予約） */
.p-shop__card-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* アクションボタン群 */
.p-shop__card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.p-shop__card-actions-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* MAPボタン */
.p-shop__btn-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 140px;
  height: 47px;
  border: 1px solid var(--color-text);
  border-radius: 30px;
  transition: opacity 0.3s;
}

.p-shop__btn-map-icon {
  display: flex;
  align-items: center;
}

.p-shop__btn-map-text {
  font-family: var(--font-en-serif);
  font-size: var(--font-size-16);
  font-style: normal;
  letter-spacing: 0.08rem;
  line-height: 0.87;
  color: var(--color-text);
  margin-bottom: -5px;
}

@media (any-hover: hover) {
  .p-shop__btn-map:hover,
  .p-shop__btn-map:focus-visible {
    opacity: 0.7;
  }
}

/* SNSボタン（Instagram / LINE） */
.p-shop__btn-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  overflow: hidden;
  padding: 8px;
  transition: opacity 0.3s;
}

.p-shop__btn-sns--line img {
  width: 26px;
  height: 25px;
}

@media (any-hover: hover) {
  .p-shop__btn-sns:hover,
  .p-shop__btn-sns:focus-visible {
    opacity: 0.7;
  }
}

/* 詳細を見る / 閉じるボタン */
.p-shop__btn-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 6px;
  transition: opacity 0.3s;
}

.p-shop__btn-detail-text {
  font-family: var(--font-serif-jp);
  font-size: var(--font-size-12);
  font-weight: 400;
  letter-spacing: 0.06rem;
  line-height: 1;
  color: var(--color-text);
}

.p-shop__btn-detail-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-shop__btn-detail-arrow img {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.p-shop__btn-detail.is-open .p-shop__btn-detail-arrow img {
  transform: rotate(-90deg);
}

.p-shop__btn-detail.is-open .p-shop__btn-detail-arrow {
  order: -1;
}

@media (any-hover: hover) {
  .p-shop__btn-detail:hover,
  .p-shop__btn-detail:focus-visible {
    opacity: 0.7;
  }
}

/* 詳細パネル */
.p-shop__card-detail {
  overflow: hidden;
  height: 0;
  width: 100%;
}

.p-shop__detail-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.p-shop__detail-item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 0.5px solid var(--color-text);
}

.p-shop__detail-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.p-shop__detail-label {
  flex-shrink: 0;
  width: 70px;
  font-family: var(--font-serif-jp);
  font-size: var(--font-size-12);
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: 1.3;
  color: var(--color-text);
}

.p-shop__detail-value {
  flex: 1;
  font-family: var(--font-serif-jp);
  font-size: var(--font-size-12);
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: 1.3;
  color: var(--color-text);
}

.p-shop__detail-value p {
  line-height: 1.3;
}

.p-shop__detail-value p + p {
  margin-top: 10px;
}

/* RESERVATIONボタン */
.p-shop__card-reservation {
  margin-top: 10px;
  width: 100%;
}

.p-shop__card-reservation .c-btn-round {
  width: 200px;
  height: 34px;
  justify-content: center;
  font-family: var(--font-en-serif);
  font-size: var(--font-size-14);
  font-style: normal;
}

.p-shop__card-reservation .c-btn-round {
  padding: 12px 40px 8px;

}