/*-------------------右下に動画固定（動画）-----------------------------------*/
.fixed_btn { 
//	width: 320px;
//	height: 180px;
position: fixed;
bottom: 300px;
right: 0px;
z-index: 999;		/フッターの下に隠れないように最前面へ表示*/
}

/*-------------------右下に動画固定（定額減税）-----------------------------------*/
.fixed_btn_1 {
//display: grid;
position: fixed;
bottom: 120px;
right: 0px;
z-index: 999;		/フッターの下に隠れないように最前面へ表示*/
}
/*-------------------右下に動画固定（インボイス制度）-----------------------------------*/
.fixed_btn_2 { 
//display: grid;
position: fixed;
bottom: 0;
right: 0px;
z-index: 999;		/フッターの下に隠れないように最前面へ表示*/
}
/*-----------------------------------------------*/
ul.sample1{
  padding: 0;
  font: 18px/1.6 'arial narrow', sans-serif;
line-height: 32px;	/* 行間調整*/
  width:820px;
  list-style: none;
}
ul.sample1 li{
  position: relative;
  padding: 0.5em 1em 0.5em 2.3em;
  margin-bottom:5px;
  color:rgb(129,194,250)
  font-size: 16px;
/*color: #FF8202;		フォントカラー*/
  font-weight: bold;
  border-bottom: 3px solid rgba(129,194,250, 0.5);	/*ラインの太さ*/
}
ul.sample1 li:after,
ul.sample1 li:before{
  content: "";
  position: absolute;
  border-radius: 50%;
}
ul.sample1 li:before{
  left: 0.2em;
  width: 17px;
  height: 17px;
  background: rgba(255,130,2,0.5);
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.sample1 li:after{
  top: 1.1em;
  left: 0.7em;
  width: 14px;
  height: 14px;
  background: rgba(129,194,250,0.3);
}

/*黄色下線、数値が低いほど太くなる*/
    .under1 {
      background: linear-gradient(transparent  50%, #ffff00  50%);
    }

/* ハッシュタグ群（投稿に表示） */
.hastags-wrapper .hashtags{
	margin: .25rem 0;
	display: flex;
	gap: .5rem;
}

/* ハッシュタグリスト（ハッシュタグページに表示） */
.hashtags-list h3{
	font-size: 1.0rem;	/*--フォントサイズ--*/
	margin: .5rem 0 1rem;
}
.hashtags-list h3 .hashtag{
	background-color: #ffffff;	/*--背景色--*/
	color: #065FD4;		/*--文字カラー--*/
	margin: auto .5rem;
	padding: .25rem .5rem;
	border: 1px solid gray;
}
.hashtags-list ul{
	margin: 1rem 0 1rem 1rem;
}
.hashtags-list ul li{
	list-style-type: circle;
	margin: .5rem 0;
}
.hashtags-list ul li a{
	color: black;
}
.hashtags-list ul li a:hover{
	opacity: .5;
}

/* ハッシュタグ共通 */
.hashtag a{
	font-size: 0.9rem;	/*--フォントサイズ--*/
	background-color: #ffffff;	/*--背景色--*/
	color: #065FD4;		/*--文字カラー--*/
	display: inline-block;
	padding: .25rem .5rem;
	border: 1px solid gray;
}
.hashtag a:hover{
	opacity: .5;
	text-decoration: none;
}