@charset "UTF-8";
/* CSS */
:root {
  --gold: #003f71;
  --bg: #f7f7f7;
  --radius: 8px;
  --gap: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--gap);
  margin: 0;
  padding: 0;
  margin-top: 30px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg);
  border-radius: var(--radius);
  padding: 9px 6px;
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  transition: background 0.2s;
}

.service-item:hover {
  background-color: #f5f5f5;
}

.service-item__content {
  display: flex;
  align-items: center;
}

.service-item__icon {
  width: 40px;
  height: 40px;
  margin-right: 8px;
  /* アイコンがフォントアイコンなら color: var(--gold); で着色可能 */
}

.service-item__label {
  font-size: 11px;
  white-space: nowrap;
}

.service-item__arrow {
  width: 24px;
  height: 24px;
  /* SVGなら fill: var(--gold); で着色可能 */
}/*# sourceMappingURL=point_parts.css.map */