@charset "UTF-8";

/* ===== 施設案内 ===== */
.facility-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.facility-item {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  margin-bottom: 10px;
}

.facility-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.facility-title {
  margin: 5px 0;
  color: var(--main-color);
}

.facility-description {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}

/* スマホ */
@media screen and (max-width: 768px) {
	.facility-title {
	text-align: center;
  }

	.facility-list {
    grid-template-columns: 1fr;
    width: 90%;
  }
}



