/* ============================================================
   ACCESS.CSS — アクセス・営業時間ページ専用スタイル
   Pasir Putih HP
============================================================ */

/* === 営業時間テーブル === */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 8px;
}

.hours-table th,
.hours-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.hours-table th {
  width: 140px;
  font-weight: 500;
  color: var(--deep);
  font-size: 13px;
  letter-spacing: 0.04em;
  background: var(--sand);
}

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

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-closed {
  color: var(--earth);
  font-weight: 500;
}

.hours-open {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* === 大きな地図ブロック === */
.access-map-full {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 48px;
}

.access-map-full iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

/* === アクセス詳細グリッド === */
.access-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.access-detail-card {
  background: var(--sand);
  border-radius: 4px;
  padding: 36px 32px;
}

.access-detail-card h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
}

.access-detail-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px 16px;
  align-items: start;
}

.access-detail-card dt {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  padding-top: 2px;
}

.access-detail-card dd {
  font-size: 13px;
  color: var(--text);
  line-height: 1.9;
}

.access-detail-card dd a {
  color: var(--earth);
  transition: opacity 0.2s;
}

.access-detail-card dd a:hover {
  opacity: 0.75;
}

/* === 行き方ガイド === */
.directions {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 36px;
  margin-bottom: 40px;
}

.directions h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.directions-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.directions-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.directions-num {
  width: 28px;
  height: 28px;
  background: var(--earth);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
  margin-top: 1px;
}

.directions-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
  padding-top: 3px;
}

/* === SNS・リンク一覧 === */
.link-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.link-card:hover {
  border-color: var(--earth-light);
  background: var(--sand);
  color: var(--earth);
}

.link-card svg {
  color: var(--earth-light);
  transition: color 0.2s;
}

.link-card:hover svg {
  color: var(--earth);
}

@media (max-width: 768px) {
  .access-map-full iframe { height: 320px; }
  .access-detail-grid { grid-template-columns: 1fr; }
  .directions { padding: 24px 20px; }
  .link-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .link-cards { grid-template-columns: 1fr; }
}
