.headborder {
    border-bottom: 6px double #000;
  }

.titleborder  {
    padding: 1rem 2rem;
    border-left: 4px solid #000;
  }
 .pointborder {
    position: relative;
    padding: 1rem 2rem;
    text-align: center;
    border: 3px solid #000;
    border-radius: 0 10px 10px 10px;
  }
  
 .pointborder:before {
    font-size: 15px;
    font-size: 1.5rem;
    position: absolute;
    top: -24px;
    left: -3px;
    height: 24px;
    padding: 0 1em;
    content: 'POINT';
    color: #fff;
    border-radius: 10px 10px 0 0;
    background: #000;
  }
  
  .tag_maru {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem 1rem 4rem;
    color: #fff;
    border-radius: 100vh 0 0 100vh;
    background: #4169e1;
  }
  
  .tag_maru:before {
    position: absolute;
    top: calc(50% - 7px);
    left: 10px;
    width: 14px;
    height: 14px;
    content: '';
    border-radius: 50%;
    background: #fff;
  }