/* ナースフリー「こんなシーンで」セクション */

.nf-scenes {
  padding: 80px 40px;
  background: #f9faf8;
  position: relative;
}

.nf-scenes__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.nf-scenes__header {
  text-align: center;
  margin-bottom: 60px;
}

.nf-scenes__eyebrow {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #1D9E75;
  font-weight: 500;
  margin-bottom: 12px;
}

.nf-scenes__title {
  font-size: 28px;
  font-weight: 700;
  color: #1a4d3e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.nf-scenes__divider {
  width: 60px;
  height: 3px;
  background: #1D9E75;
  margin: 16px auto 0;
}

.nf-scenes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.nf-scene-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #1D9E75;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nf-scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(29, 158, 117, 0.15);
}

.nf-scene-card__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #1D9E75;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.nf-scene-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a4d3e;
  margin-bottom: 20px;
  line-height: 1.5;
}

.nf-scene-card__arrow {
  display: inline-block;
  color: #1D9E75;
  font-weight: 600;
  margin-bottom: 16px;
}

.nf-scene-card__description {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-top: 16px;
}

.nf-scenes__closing {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #0d5a43 0%, #1D9E75 100%);
  border-radius: 8px;
  color: white;
}

.nf-scenes__closing-lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.nf-scenes__closing-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.6;
}

.nf-scenes__closing-cta {
  font-size: 18px;
  font-weight: 700;
  color: #ffd966;
  margin-top: 16px;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .nf-scenes {
    padding: 60px 20px;
  }

  .nf-scenes__grid {
    gap: 24px;
  }

  .nf-scene-card {
    padding: 24px;
  }

  .nf-scenes__title {
    font-size: 22px;
  }

  .nf-scenes__closing {
    padding: 30px 20px;
  }

  .nf-scenes__closing-title {
    font-size: 18px;
  }
}
/* セキュリティー情報バッジ */
.nf-security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 12px;
}

.nf-security-info__icon {
  width: 20px;
  height: 20px;
  color: #ffd966;
  flex-shrink: 0;
}

.nf-security-info__text {
  margin: 0;
  line-height: 1.6;
  color: white;
}

.nf-security-info__text strong {
  color: #ffd966;
  font-weight: 600;
  display: block;
}

.nf-security-info__text span {
  font-size: 11px;
  opacity: 0.95;
}