/*色下線、数値が低いほど太くなる*/
    .under1 {
      background: linear-gradient(transparent  50%, #ffff00  50%);
    }
/*-------------------右下に動画固定（こんぱすの本棚　動画）-----------------------------------*/
.fixed_btn_0 { 
position: fixed;
bottom: 110px;
right: 0px;
z-index: 999;		/*フッターの下に隠れないように最前面へ表示*/
  width: 250px;
  height: 141px;
}
.fixed_btn_0 iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*-------------------右下に動画固定（動画）-----------------------------------*/
.fixed_btn { 
//	width: 320px;
//	height: 180px;
position: fixed;
bottom: 280px;
right: 0px;

z-index: 999;		/フッターの下に隠れないように最前面へ表示*/
}

/***************ボタン表示****************************/
.link_1 {
	//line-height: 2.5;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	background: #522B7E;
	padding: 5px 10px;
	border-radius: 10px;

	transition: .3s;
	}
.link_1:hover {
	opacity: 0.6;
	text-decoration: none;/*下線消す*/
	}

/* ハッシュタグ群（投稿に表示） */
.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{
	margin: auto .5rem;
	padding: .25rem .5rem;
	border: 1px solid gray;
	background-color: #ffffff;	/*--背景色--*/
	color: #065FD4;		/*--文字カラー--*/
}
.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{
	display: inline-block;
	padding: .25rem .5rem;
	border: 1px solid gray;
	font-size: 0.9rem;	/*--フォントサイズ--*/
	background-color: #ffffff;	/*--背景色--*/
	color: #065FD4;		/*--文字カラー--*/
}
.hashtag a:hover{
	opacity: .5;
	text-decoration: none;
}