/* =========================
   Facility Page (施設案内)
========================= */
.facility-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.facility-intro .img-placeholder { min-height: 320px; }

.philosophy-box {
  background: #fff;
  padding: 50px;
  border-radius: 6px;
  border-top: 4px solid #7a9968;
  text-align: center;
  margin-bottom: 60px;
}
.philosophy-box h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #5a3e2b;
}
.philosophy-list {
  max-width: 560px;
  margin: 0 auto 20px;
  text-align: left;
}
.philosophy-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  list-style: none;
  border-bottom: 1px dotted #d4cab8;
}
.philosophy-list li:last-child { border-bottom: none; }
.philosophy-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 20px;
  width: 8px; height: 8px;
  background: #7a9968;
  border-radius: 50%;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-embed {
  position: relative;
  min-height: 360px;
  border-radius: 4px;
  overflow: hidden;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.access-info h3 { font-size: 20px; margin-bottom: 16px; }
.access-info dl { margin-bottom: 20px; }
.access-info dt {
  font-weight: 600;
  color: #5a3e2b;
  margin-bottom: 4px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .facility-intro,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .philosophy-box { padding: 30px 20px; }
}
