/* ===========================
   STORE PAGE
=========================== */

/* ページヒーロー */
.page-hero {
  padding: 60px 0 48px;
  background: linear-gradient(160deg, var(--color-bg-2) 0%, var(--color-bg) 60%, var(--color-bg-2) 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.page-hero__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.page-hero__desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* 現在ページハイライト */
.header__nav-list a.is-current {
  color: var(--color-primary);
}

/* ===========================
   STORE INFO
=========================== */
.store-info {
  background: var(--color-bg);
}

.store-info__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}

.store-info__heading {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-primary);
}

/* テーブル */
.store-table {
  width: 100%;
  border-collapse: collapse;
}

.store-table th,
.store-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
}

.store-table th {
  width: 32%;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  background: var(--color-bg-2);
}

.store-table td {
  color: var(--color-text);
}

.store-table__tel {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.store-table__tel:hover {
  color: var(--color-primary-dark);
}

.store-table__note {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* 予約・問い合わせ */
.store-info__contact {
  position: sticky;
  top: 100px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.store-info__contact-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.store-info__contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===========================
   STORE MAP
=========================== */
.store-map {
  background: var(--color-bg-2);
}

.store-map__embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.store-map__embed iframe {
  display: block;
  width: 100%;
}

.store-map__directions-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.store-map__directions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.store-map__directions-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 14px;
  line-height: 1.8;
}

.store-map__directions-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-text);
}

.store-map__directions-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-bg-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-map__directions-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .store-info__contact { position: static; }
}

@media (max-width: 768px) {
  .page-hero { padding: 40px 0 32px; }

  .store-info__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .store-table th { width: 38%; }

  .store-map__directions-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .store-table th,
  .store-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .store-info__contact { padding: 24px; }
}
