@charset "UTF-8";

/* 読み込んだフォント設定
font-family: 'Kosugi', sans-serif;
font-family: 'Kosugi Maru', sans-serif;
font-family: 'Noto Sans', sans-serif; 

フォントスタイルをgoogleフォントにするときに入れる
font-family: 選択フォント,sans-serif;
*/
/*htmlタグ編集*/

.box {
    position: relative;
    top:0;
    margin: 2em 0;
    padding: 0.5em 1em;
}
.NewsContent
{
    line-height: 1.5;
    overflow-y:scroll ;
}
.NewsContent::-webkit-scrollbar
{
  width: 2vw;
}
.NewsContent::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777;
}
.NewsContent::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
  box-shadow: none;
  }

  .News
{
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 5vw;
    border-bottom: 3px dotted rgb(212, 209, 0);
}