

.declare{
  width: 80%;
}

.declare-list{
  list-style-type: none!important;
  position: relative;
  margin-bottom: 10px;
}

.declare-list li::before{
  /* https://www.sejuku.net/blog/56177 */
  content:  "";     /* 空の要素作成 */
    width:  15px;               /* 幅指定 */
    height:  15px;              /* 高さ指定 */
    display:  inline-block;     /* インラインブロックにする */
    background-color: var(--sub-color);  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
    position:  relative;        /* 位置調整 */
    top: 2px;                  /* 位置調整 */
    margin-right: 5px;          /* 余白指定 */
}

.list-left-space{
  margin: 0;
}

@media (min-width: 900px){
  .declare{
    margin-top: 70px;
    position: relative;
  }

  #declare-section{
    margin-bottom: 50px;
  }

  .declare-list{
    font-size: 20pt;
    margin-bottom: 40px;
  }

  .declare-list li{
    margin-bottom: 10px;
  }

  .declare-list li::before{
     /* https://www.sejuku.net/blog/56177 */
     width:  23px;               /* 幅指定 */
     height:  23px;              /* 高さ指定 */
  }

  .list-left-space{
    margin-left: 27px;
  }
}