* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #222;
  background: #f5f5f5;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #0b7a43;
  text-decoration: underline;
}

.site-header {
  padding: 18px 20px;
  text-align: center;
  color: #fff;
  background: #0b5f2a;
}

.site-header h1 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

.site-header p {
  margin: 6px 0 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.container {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 20px 16px 40px;
}

.map-card,
.info-card,
.notes-card {
  margin-bottom: 18px;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.card-body {
  padding: 20px;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pin {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  margin-right: 0.35em;
  vertical-align: middle;
}

.title-row .pin img {
  display: block;
  width: 1.2em;
  height: auto;
}

.title-row h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.4;
  color: #111;
}

.info-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: start;
}

.status-box {
  padding: 14px 10px;
  text-align: center;
  background: #f7fff9;
  border: 3px solid #0b8f49;
  border-radius: 12px;
}

.status-mark {
  margin-bottom: 10px;
}

.status-mark img {
  display: block;
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
}

.status-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
}

.status-label {
  font-size: 1rem;
  font-weight: 700;
  color: #24384d;
}

.status-clock {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #24384d;
}

.details {
  border-top: 2px solid #0b8f49;
  border-bottom: 2px solid #0b8f49;
}

.detail-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #cfe9d8;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: bold;
  color: #111;
}

.detail-value {
  color: #222;
}

.notice {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #444;
}

.provider {
  margin-top: 18px;
  font-size: 0.95rem;
  text-align: center;
  color: #555;
}

.notes-title {
  margin-top: 0;
}

.contact-section {
  margin-top: 40px;
  padding: 32px 28px;
  background: #f7f7f7;
  border-radius: 18px;
}

.contact-section h2 {
  margin: 0 0 20px;
  font-size: 2rem;
  color: #24384d;
}

.contact-section p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}

.contact-button-wrap {
  margin-bottom: 0;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #24384d;
  border-radius: 9999px;
}

.contact-button img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.site-footer {
  padding: 18px 16px;
  font-size: 0.9rem;
  text-align: center;
  color: #fff;
  background: #222;
}

.footer-copy {
  margin: 0;
}

@media (max-width: 767px) {
  .site-header h1 {
    font-size: 1.25rem;
  }

  .container {
    padding: 14px 12px 32px;
  }

  .map-card iframe {
    height: 300px;
  }

  .card-body {
    padding: 16px;
  }

  .title-row h2 {
    font-size: 1.2rem;
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

  .detail-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .detail-label,
  .detail-value {
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 24px 18px;
  }

  .contact-section h2 {
    font-size: 1.6rem;
  }

  .contact-button {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
  }
}