<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS column Document */

/* map pin*/
.icon-map-pin {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    background: currentColor;
    border: 0.1em solid currentColor;
    border-radius: 40% 60% 0% 100% / 40% 100% 0% 60%;
    box-sizing: content-box;
    transform: rotate(45deg);
  }
  .icon-map-pin::before {
    content: '';
    position: absolute;
    top: 18%;
    left: 18%;
    width: 0.336em;
    height: 0.336em;
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
  }

  /* user icon */
  .icon-user {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
  }
  .icon-user::before,
  .icon-user::after {
    content: '';
    display: block;
    margin: 0 auto;
    background: currentColor;
    box-sizing: border-box;
  }
  .icon-user::before {
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    margin-bottom: 0.05em;
  }
  
  .icon-user::after {
    width: 1em;
    height: 0.4em;
    border-bottom: 0;
    border-radius: 50% / 100% 100% 0 0;
  }</pre></body></html>