/* ===== Category Chips polish ===== */
.ym-section.ym-alt { background: #f7f9fc; }

.ym-grid-6{
  display:grid; 
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 768px){ .ym-grid-6{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px){ .ym-grid-6{ grid-template-columns: 1fr; } }

.ym-chip{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  height:64px;
  padding:0 20px;
  border-radius:9999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 20px rgba(28,117,188,.06);
  color:#1f2937;
  font-weight:600;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.ym-chip .ym-emoji{ font-size:1.25rem; line-height:1; }
.ym-chip:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(28,117,188,.12);
  background:#fff;
}
.ym-chip:focus-visible{
  outline:3px solid #3b82f6;
  outline-offset:2px;
}

/* セクションの縦間隔微調整 */
.ym-section .ym-h2{ margin-bottom: 20px; }
.ym-section.ym-alt .ym-h2{ margin-top: 0; }