:root {
  --uix-bg: #fff5f7;
  --uix-accent: #e9b3c6;
  --uix-ink: #2a2a2a;
  --uix-muted: #6b7280;
  --uix-brand: #e7b0c3;
  --uix-card: #ffffff;
  --uix-container: 900px;
  --uix-radius: 12px;
  --uix-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.uix-contact {
  position: relative;
  width: 100%;
  padding: clamp(28px, 5vw, 72px) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.uix-contact__bg {
  display: none;
}

.uix-container {
  max-width: var(--uix-container);
  margin: 0 auto;
  padding: 0 18px;
}

.uix-card {
  background: var(--uix-card);
  box-shadow: var(--uix-shadow);
  border-radius: var(--uix-radius);
  padding: clamp(18px, 3vw, 28px);
}

.uix-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
}

.uix-panel {
  min-width: 0;
}

.uix-panel--right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uix-brand {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.uix-brand p {
  font-size: 25px;
  width: auto;
  color: #80bc00;
  font-weight: 800;
}

.uix-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #80bc00;
  color: #80bc00;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.uix-cta::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.uix-contactblock {
  margin-bottom: 16px;
}

.uix-meta {
  color: var(--uix-muted);
  margin: 0 0 2px;
  font-size: 14px;
}

.uix-tel {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.uix-tel a {
  color: inherit;
  text-decoration: none;
}

.uix-address {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.uix-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #80bc00;
  font-size: 13px;
  font-weight: 700;
  color: #80bc00;
}

.uix-address__text {
  margin: 0;
  font-size: 15px;
}

.uix-hours__title {
  margin: 16px 0 8px;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.uix-tablewrap {
  border: 1px solid #80bc00;
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
}

.uix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: center;
}

.uix-table th,
.uix-table td {
  padding: 10px 6px;
}

.uix-table thead th {
  font-weight: 700;
  color: #32373c;
  border-bottom: 1px dashed #80bc00;
}

.uix-table tbody th {
  text-align: left;
  font-weight: 700;
  color: #444;
  white-space: nowrap;
  width: 140px;
}

.uix-table tbody th,
.uix-table tbody td {
  border-bottom: 1px dashed #80bc00;
}

.uix-table tbody tr:last-child th,
.uix-table tbody tr:last-child td {
  border-bottom: none;
}

.uix-notes {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  color: #32373c;
  font-size: 12px;
}

.uix-notes li + li {
  margin-top: 4px;
}

.uix-map {
  border: 1px solid #80bc00;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.uix-map iframe {
  width: 100%;
  height: min(360px, 46vw);
  display: block;
  border: 0;
}

.uix-access {
  margin: 8px 0 0;
  color: #32373c;
  font-size: 13px;
}

@media (max-width: 980px) {
  .uix-grid {
    grid-template-columns: 1fr;
  }

  .uix-brand {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .uix-cta {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: clamp(14px, 3.5vw, 16px);
    align-self: stretch;
  }

  .uix-cta::after {
    flex: none;
    margin-left: 0.25em;
  }

  .uix-map iframe {
    height: 320px;
  }

  .uix-contact {
    touch-action: pan-y;
    overflow-x: hidden;
  }

  .uix-container,
  .uix-card {
    overflow-x: hidden;
  }

  .uix-map iframe {
    pointer-events: none;
  }
}

@media (max-width: 520px) {
  .uix-table tbody th {
    width: 118px;
  }

  .uix-map iframe {
    height: 260px;
  }
}
