@charset "UTF-8";
/* 施設基準ページ専用スタイル */
.standards-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.standards-intro-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.standards-intro-text {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1.05rem;
}

.standards-box {
  background: white;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.standards-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2rem 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid #5BA8C9;
  color: #1f2937;
}

.standards-section-title:first-child {
  margin-top: 0;
}

.standards-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.standard-item {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid #5BA8C9;
  transition: all 0.3s ease;
}

.standard-item:hover {
  background: #f3f4f6;
  transform: translateX(5px);
}

.standard-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.standard-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1f2937;
}

.standard-number {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.standard-desc {
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .standards-box {
    padding: 2rem 1.5rem;
  }
  .standards-intro-title {
    font-size: 1.6rem;
  }
  .standards-section-title {
    font-size: 1.3rem;
  }
  .standard-item {
    padding: 1.2rem;
  }
  .standard-name {
    font-size: 1rem;
  }
}