.oshirase_wrapper {
      width: 100%;
}

.oshirase_contents {
      margin:0px;
      padding:10px 0px;
      color: #333;
      display: flex;
      flex-wrap: wrap;
      background-image : linear-gradient(to right, #bababa, #bababa 2px, transparent 2px, transparent 8px);  /* 幅2の線を作る */
      background-size: 8px 2px;          /* グラデーションの幅・高さを指定 */
      background-position: left bottom;  /* 背景の開始位置を指定 */
      background-repeat: repeat-x;   
}

.oshirase_contents li {
      font-variant-caps: normal;
      color: #333;
      box-sizing: border-box;
      list-style:none;
      display: flex;
      align-items: center;
}

.oshirase_contents img {
      width: 60%;
      max-width: 190px;
      min-width: 100px;
      margin:0px;
      border-radius: 3px;
}

.oshirase_contents p {
      margin:0px;
      font-family: メイリオ;
      font-size: clamp(14px, 2vw, 18px);
}

.oshirase_date {
      width: 20%;
}

.oshirase_icon {
      width: 20%;
}

.oshirase_text {
      width: 60%;
}

@media screen and (max-width:768px) {

      .oshirase_contents li {
            display: unset;
            padding: 5px 0 5px 5px;
      }

      .oshirase_date {
            width: 100%;
      }
      
      .oshirase_icon {
            width: 100%;
      }
      
      .oshirase_text {
            width: 100%;
      }

      .oshirase_contents img {
            width: 100px;
      }
}