
/*===矢型の矢印 (右向き)のアイコン================*/
/*--<span class="dli-arrow-right"></span>---*/
.dli-arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 1em;
    height: 0.1em;
    background: currentColor;
  }
  
  .dli-arrow-right::before {
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
  }
/*=======-矢型の矢印 (下向き)のアイコン==========*/
/*--<span class="dli-arrow-down"></span>---*/
.dli-arrow-down {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 0.1em;
    height: 1em;
    background: currentColor;
  }
  
  .dli-arrow-down::before {
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    position: absolute;
    left: 50%;
    bottom: -0.05em;
    box-sizing: border-box;
  }
  /*=======-丸囲み三角の矢印 (塗りつぶし・右向き)==========*/
  /*--<span class="dli-caret-circle-fill-right"></span>---*/
  .dli-caret-circle-fill-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    border: 0.075em solid currentColor;
    background: currentColor;
    border-radius: 50%;
    box-sizing: content-box;
  }
  
  .dli-caret-circle-fill-right::before {
    content: '';
    color: #fff;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.18em 0.31177em;
    border-left-color: currentColor;
    border-right: 0;
    transform: translateX(15%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

   /*=======-三角の矢印 (右向き)のアイコン==========*/
   /*--<span class="dli-caret-right"></span>--*/
   .dli-caret-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.375em 0.64952em;
    border-left-color: currentColor;
    border-right: 0;
  }

  /*==エクスクラメーションマーク（丸囲み）のアイコン======*/
  /*--<span class="dli-exclamation-circle"><span></span></span>--*/
  .dli-exclamation-circle {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 1em;
    height: 1em;
    border: 0.1em solid currentColor;
    border-radius: 50%;
    box-sizing: content-box;
  }
  
  .dli-exclamation-circle > span {
    width: 0.15em;
    height: 0.6em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .dli-exclamation-circle > span::before, .dli-exclamation-circle > span::after {
    content: '';
    display: block;
    width: inherit;
    background: currentColor;
  }
  
  .dli-exclamation-circle > span::before {
    margin-bottom: 0.1em;
    height: 0.35em;
    border-radius: 0.025em;
  }
  
  .dli-exclamation-circle > span::after {
    height: 0.15em;
    border-radius: 50%;
  }
  PREV
  
  ダウンロード
  
  NEXT