/*--------------------------------------------------------------
 *
 *
 *
 *      ハンバーガーメニュー オリジナル
 *
 *
 *
 --------------------------------------------------------------*/

.burger-nav {
	padding: 20px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	z-index: 10;
	position: fixed;
	overflow : scroll;
  -webkit-overflow-scrolling: touch;
}

.burger-nav::-webkit-scrollbar {
      display: none;
      -webkit-appearance: none;
}

  .burger-nav {
  	z-index: 10;
    position: fixed;
    display: block;
    color: #fff;
    left: 0;
    top: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
  }
  .burger-nav.open {
    display: block;
  }
  .burger-nav.close {
    display: none;
  }

  .burger-nav a {
    display: block;
    color: #fff;
  }

  #BM_btn_fm {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
    float: right;
	background: #999;
	opacity: 0.6;
	border-radius: 50%;
    z-index: 20;
    margin: 0 0 0 3px;
  }
  #BM_btn_fm.is-burger-nav-open{
  	position: relative;
  	z-index: 20;
  }
  #BM_btn_fm span {
    position: absolute;
    left: 14px;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: all 0.4s;
    transform: translate(0, -50%);
  }
  #BM_btn_fm span:nth-of-type(1) {
    top: 18px;
  }
  #BM_btn_fm span:nth-of-type(2) {
    top: 25px;
  }
  #BM_btn_fm span:nth-of-type(3) {
    top: 32px;
  }
  #BM_btn_fm.is-burger-nav-open span {
    background-color: #fff;
  }
  #BM_btn_fm.is-burger-nav-open span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  #BM_btn_fm.is-burger-nav-open span:nth-of-type(2) {
    opacity: 0;
  }
  #BM_btn_fm.is-burger-nav-open span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }



.scroll-prevent {
  /*動き固定*/
  position: fixed;
  /*奥行きを管理*/
  z-index: -1;
  /*下2つで背景を元のサイズのまま表示することができる*/
  width: 100%;
  height: 100%;
}

/*  サイトロゴ  */

.bm_title_logo {
	padding: 20px;
	width:100%;
	text-align: center;
	display: block;
	background: none;
	color: #fff;
	margin: 0 0 20px 0;
}

.bm_title_logo_content {
	margin: 0 auto;
	padding: 0;
	width: 250px;
	max-width: 60%;
}


/*  公式ページリンク  */

.bm_product_link {
	padding: 20px;
	width:100%;
	text-align: center;
	display: block;
	background: #ff4dac;
	color: #fff;
	margin: 0 0 40px 0;
}

.bm_product_link a {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

/*  参考記事  */

.bm_link_box.related-box002 {
  padding: 0;
  width:100%;
  display: block;
  float: left;
  background: none;
  color: #fff;
  margin: 0 0 40px 0;
}

.bm_link_box.related-box002 ul {
  width: 100%;
  display: block;
  float: left;
  padding: 8px 0 8px 20px;
  font-size: 16px;
}

.bm_link_box.related-box002 ul li:before {/*疑似要素*/
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  content: "\f0da";
  position: absolute;
  font-weight: 900;
  left : 0; /*左端からのアイコンまで*/
  color: #fff; /*アイコン色*/
}

.bm_link_box.related-box002 a {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.bm_link_box.related-box002 a:hover {
  text-decoration: underline;
}

.bm_link_box.related-box002 a, 
.bm_link_box.related-box002 a:link,
.bm_link_box.related-box002 a:hover, 
.bm_link_box.related-box002 a:visited,
.bm_link_box.related-box002 a:active,
.bm_link_box.related-box002 li a, 
.bm_link_box.related-box002 li a:link,
.bm_link_box.related-box002 li a:hover, 
.bm_link_box.related-box002 li a:visited,
.bm_link_box.related-box002 li a:active {
    color: #ffffff;
    width: auto;
    display: block;
    position: relative;
    text-decoration: underline;
    top:0;
}


/*  月額動画記事リスト  */

.bm_link_col {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  float: left;
 }


.bm_link_col table,
.bm_link_col table tr,
.bm_link_col table tr td {
  border: none;
  background: none;
}

.bm_link_col a {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.bm_link_col a:hover {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}


@media only screen and (min-width: 700px) and (max-width: 980px) {
  .burger-nav {
    width: 600px;
  }
}

@media only screen and (min-width: 980px) {
  .bm_link_col {
    margin-left: 50px;
    max-width: 400px;
  }
}

.bm_link_title {
  width: 100%;
  display: block;
  float: left;
  font-size: 22px;
  font-weight: bold;
  margin: 18px 0;
  color: #fff;
}


.bm_link_col table {
  table-layout: fixed;
  border: none;
  margin: 0 0 40px 0;
}

.bm_link_col td {
  padding: 8px 0;
  font-weight: bold;
}

.bm_link_col td a {
  font-weight: bold;
}


