/* ==========ブログのプロフィール表示========================== */
.author-profile-box {
  position: relative;
  max-width: 920px;
  margin: 30px auto 20px;
  padding: 20px 22px 20px;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  color: #00264d;
  overflow: hidden;
}
.author-profile-bg {
  position: absolute;
  left: 25px;
  bottom: 45px;
  width: 150px;
  height: 160px;
  background: #d8eaf1;
  z-index: 0;
}

.author-profile-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 42px;
}

.author-profile-photo {
  width: 170px;
  flex-shrink: 0;
  margin-left: 28px;
  margin-top: 22px;
}

.author-profile-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.author-profile-text {
  flex: 1;
  padding-top: 2px;
}

.author-profile-label {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d8d8d8;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

.author-profile-catch {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}

.author-profile-text h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.4;
  color: #00698f;
  font-weight: 700;
}

.author-profile-text p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.85;
}

@media screen and (max-width: 768px) {
  .author-profile-box {
    margin: 35px auto 25px;
    padding: 24px 18px 28px;
  }

  .author-profile-bg {
    left: 50%;
    top: 108px;
    bottom: auto;
    transform: translateX(-50%);
    width: 190px;
    height: 195px;
  }

  .author-profile-inner {
    display: block;
  }

  .author-profile-photo {
    width: 160px;
    max-width: 70%;
    margin: 18px auto 34px;
  }

  .author-profile-label {
    font-size: 21px;
    text-align: center;
  }

  .author-profile-catch {
    font-size: 18px;
    text-align: center;
  }

  .author-profile-text h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 18px;
  }

  .author-profile-text p {
    font-size: 14px;
    line-height: 1.8;
  }
}
/*-------------------ここまで-----------------------------------*/



/*-------------------右に動画固定（足立先生）-----------------------------------*/
.fixed_btn_1 {
//display: grid;
position: absolute;
//position: relative;
//bottom: 180px;
top: 60px;
right: 0px;
z-index: 999;		/フッターの下に隠れないように最前面へ表示*/
}

/* ハッシュタグ群（投稿に表示） */
.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{
		font-size: 0.9rem;	/*--フォントサイズ--*/
//	font-weight: bold;	/*--太字--*/
	display: inline-block;
	padding: .25rem .5rem;
	border: 1px solid gray;
	background-color: #ffffff;	/*--背景色--*/
	color: #F1890E;
}
.hashtag a:hover{
	opacity: .5;
	text-decoration: none;
}