@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* html
---------------------------------------------------- */
html {
	height: 100%;
}

/* ボディー
---------------------------------------------------- */
body {
	height: 100%;
	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	margin: 0;
	padding: 0;
	color: #333;
	background: #fff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

/* リンク
---------------------------------------------------- */
a {
	color: #333;
	background: transparent;
	text-decoration: none;
}
a:visited {
	background: transparent;
}
a:hover,
a:active {
	background: transparent;
	text-decoration: underline;
}

/* 共通
---------------------------------------------------- */
.flex {
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.row-column {
	flex-flow: column;
}
.row-column-reverse {
	flex-flow: column;
}
.column {
	flex-flow: column;
}
/* 幅いっぱいに広げる */
.between {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
}
/* 均等に広げる */
.around {
	-ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
	justify-content: space-around;
}
/* 左寄せ */
.start {	
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
	justify-content: flex-start;
}
/* 右寄せ */
.end {	
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
}
/* 真ん中寄せ */
.center {	
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
}
.centre {
	text-align: center;
}

hr {
	height: 0;
 	margin: 0;
  	border: none;
  	border-top: 1px solid #707070;
}

/* 画像
---------------------------------------------------- */
figure {
	line-height: 0;
}
img {
	line-height: 0;
}
a img {
	border: none;
	color: #fff;
	background: transparent;
}

/* ヘッダー
---------------------------------------------------- */
header {
	width: 100%;
	height: 142px;
	border-bottom: 10px solid #FFE200;
}
header .inner {
	max-width: 1225px;
	margin: auto;
	padding: 0 10px;
}

header .logo {
	width: 113px;
	margin-top: 54px; 
	margin-left: 6px;
	margin-right: 60px;
}
header .logo img {
	width: 100%;
}

/* ナビ
---------------------------------------------------- */
header nav ul {
	margin-top: 85px;
	font-size: 13px;
}

/* メイン
---------------------------------------------------- */
main {
	display: block;
	padding: 70px 0;
}
main p {
	margin-bottom: 1em;
} 
main > .inner {
	width: 1205px;
	margin: 0 auto;
	border: none;
	position: relative;
}

/* 検索窓
---------------------------------------------------- */
.search-box-btn-sort {
	width: 781px;
	position: absolute;
	right: 0;
	top: 30px;
	z-index: 5000;
}
.search-box {
	width: 510px;
	height: 46px;
}
.search-form {
	position: relative;
	border: 3px solid #707070;
	border-radius: 36px;
	display: block;
	height: 46px;
	overflow: hidden;
}
.search-form input[type="text"] {
	border: none;
	width: 100%;
	height: 46px;
	padding: 0 20px 5px 20px;
	font-size: 18px;
	color: #333;
}
.search-form input[type="text"]::placeholder {
 	text-align: center;
	color: #BABABA;
}
.search-form input[type="text"]:focus {
	outline: 0;
}
.search-form input[type="submit"] {
    -webkit-appearance: none;
	cursor: pointer;
	font-family: "Font Awesome 5 Free";
	border: none;
	background: #fff;
	position: absolute;
	width: 40px;
	height: 40px;
	right: 5px;
	top: 0;
	font-size: 25px;
	color: #000;
	outline: none;
	border-radius: 0;
}
.btn-sort {
	width: 152px;
	height: 39px;
	padding-right: 27px;
	border: 1px solid #4D4D4D;
	font-size: 14px;
	line-height: 39px;
	text-align: right;
	color: #707070;
	cursor: pointer;
	position: absolute;
	top: 3px;
	right: 0;
}
.btn-sort::before {
	content: '';
	display: inline-block;
	width: 29px;
	height: 20px;
	background: url(../images/btn-sort-icon.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 9px;
	left: 19px;
}
.sort-box {
	display: none;
	width: 152px;
	border: 1px solid #4D4D4D;
	font-size: 16px;
	line-height: 2em;
	color: #707070;
	cursor: pointer;
	position: absolute;
	top: 41px;
	right: 0;
	list-style: none;
	padding: 20px 30px;
	background: #fff;
	z-index: 9000;
}
.sort-box li a {
	color: #707070;
}

/* ホームページ
---------------------------------------------------- */
.wrapper {
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.index-content {
	width: 848px;
	position: relative;
	margin-left: 118px;
}
.index-content .sections {
	width: 813px;
	margin: 155px 0 0 0;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}

/* カテゴリから見つける
---------------------------------------------------- */
aside {
	width: 239px;
}
aside h2 {
	margin-bottom: 70px;
	font-size: 21px;
	text-align: center;
}
aside h2::after {
	content: "";
	display: block;
	height: 4px;
	background: #656565;
	border-radius: 2px;
	position: relative;
	top: 7px;
}
aside h2 .trans-en {
	display: block;
	margin-bottom: 17px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 8px;
	font-weight: 400;
	color: #707070;
}

/* 検索実行ボタン */
aside button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
aside button.btn-submit {
	display: block;
	width: 239px;
	height: 38px;
	margin-bottom: 50px;
	padding: 0;
	background: #0E99F0;
	border-bottom: 4px solid #DEDEDE;
	font-weight: bold;
	border-radius: 19px;
}
aside button.btn-submit:active {
	height: 38px;
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	border-bottom: 4px solid #fff;
}
aside button.btn-submit span {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
	font-size: 19px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	position: relative;
}
aside button.btn-submit span::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 16px;
	background: url("../images/btn-submit-arrow.svg") no-repeat;
	background-size: 14px 16px;
	position: relative;
	top: 0;
	left: 15px;
}

/* カテゴリリスト */
aside ol {
	width: 209px;
	margin: auto;
	font-size: 14px;
	color: #f00;
}
aside ol li {
	padding: 2px 0 2px 70px;
	line-height: 30px;
	text-indent: -2em;
	list-style-position: inside;
	list-style-type: decimal-leading-zero;
}
aside ol li:nth-child(even) {
	background: #eee;
}
aside label {
	position: relative;
	color: #333; 
}
aside input[type=checkbox] {
	position: absolute;
	left: -40px;
	top: 2px;
	display: none;
}
.checkbox {
    cursor: pointer;
    position: relative;
    width: auto;
}
.checkbox::before {
    background: #fff;
    border: 3px solid #707070;
    content: '';
    display: block;
	width: 12px;
    height: 12px;
	top: -1px;
    left: -60px;
    margin: auto;
    position: absolute;
}
.checkbox::after {
    border-right: 3px solid #f00;
    border-bottom: 3px solid #f00;
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    margin: auto;
    opacity: 0;
    position: absolute;
	top: 0;
	left: -55px;
    transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox::after {
    opacity: 1;
}

/* チャンネルリスト
---------------------------------------------------- */
.index-content .channel-list {
	width: 414px;
	margin-right: 31px;
}
.index-content .channel-list .hash-id {
	margin-bottom: 19px;
}

.index-content .channel-list .hash-id .hash {
	width: 32px;
	height: 23px;
	margin-left: 11px;
	background: #B1B1B1;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.index-content .channel-list .hash-id .id {
	width: 29px;
	height: 23px;
	background: #DBDBDB;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.index-content .channel-list .hash-id h2 {
	width: 347px;
	height: 23px;
	background: #FFE200;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.index-content .channel-list ul {
	list-style: none;
}
.index-content .channel-list ul li {
	margin-top: -1px;
	padding: 4px 0 4px 6px;
	border: 1px solid #4D4D4D;
}
.index-content .channel-list ul li a {
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.index-content .channel-list ul li a:hover {
	text-decoration: none;
}
.index-content .channel-list ul li a .hash-no-id-no {
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.index-content .channel-list ul li a .hash-no-id-no .hash-no {
	width: 32px;
	height: 100%;
	background: #B1B1B1;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.index-content .channel-list ul li a .hash-no-id-no .id-no {
	width: 29px;
	height: 100%;
	background: #DBDBDB;
	font-size: 11px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.index-content .channel-list-icon-detail {
	width: 345px;
	padding: 17px 16px 17px 15px;
	background: #F8F8F8;
}
.index-content .channel-list-icon-detail .channel-list-detail {
	margin-left: 13px;
}
.index-content .channel-list-icon-detail .channel-list-detail h3.channel-name {
	font-size: 14px;
	line-height: 1.7368421em;
	text-decoration: underline;
	margin-bottom: 9px;
	font-weight: normal;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.index-content .channel-list-icon-detail .channel-list-detail dl .dl-wrapper {
	width: 190px;
	padding: 6px 5px 4px 5px;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	background: #fff;
}
.index-content .channel-list-icon-detail .channel-list-detail dl .dl-wrapper:nth-child(even) {
	background: #EBEBEB;
}
.index-content .channel-list-icon-detail .channel-list-detail dl .dl-wrapper dt {
	font-size: 8px;
	line-height: 1em;
	margin-right: 20px;
}
.index-content .channel-list-icon-detail .channel-list-detail dl .dl-wrapper dd {
	font-size: 9px;
	line-height: 1em;
}

/* 動画リスト
---------------------------------------------------- */
.video-list {
	width: 368px;
}
.video-list h2 {
	width: 100%;
	height: 23px;
	margin-bottom: 19px;
	background: #FFE200;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.video-list ol {
  list-style: none;
  counter-reset: ol_li;
}
.video-list ol li {
   position: relative;
}
.video-list ol li:before {
  margin-right: 0;
  counter-increment: ol_li;
  content: counter(ol_li); 
  position: absolute;
  top: 12px;
  left: 9px;
  font-size: 13px;
}
.video-list ol li {
	margin-top: -1px;
	padding: 32px 11px 15px 15px;
	background: #F8F8F8;
	border: 1px solid #4D4D4D;
}
.video-list ol li a:hover {
	text-decoration: none;
}
.video-list ol li a .hash-no-id-no {
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.video-list-thumbnail-detail figure {
	margin-bottom: 15px;
}
.video-list-thumbnail-detail h3 {
	font-size: 11px;
	line-height: 1.7272727em;
	font-weight: normal;
}

.video-list-thumbnail-detail .video-list-detail {
	margin-left: 15px;
}
.video-list-thumbnail-detail .video-list-detail .video-id {
	font-size: 6px;
	margin-bottom: 5px;
}
.video-list-thumbnail-detail .video-list-detail .video-name {
	font-size: 10px;
	line-height: 1.6666666em;
	text-decoration: underline;
	margin-bottom: 12px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.video-list-thumbnail-detail .video-list-detail dl .dl-wrapper {
	width: 183px;
	padding: 6px 5px 4px 5px;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	background: #fff;
}
.video-list-thumbnail-detail .video-list-detail dl .dl-wrapper:nth-child(even) {
	background: #EBEBEB;
}
.video-list-thumbnail-detail .video-list-detail dl .dl-wrapper dt {
	width: 77px;
	font-size: 7px;
	line-height: 1em;
}
.video-list-thumbnail-detail .video-list-detail dl .dl-wrapper dd {
	font-size: 8px;
	line-height: 1em;
}
.fa-thumbs-down {
	transform: scale(-1, 1);
}

.video-list ol li .hash-tags {
	margin-top: 6px;
	margin-bottom: 12px;
	font-size: 8px;
	color: #186C98;
}
.video-list ol li p {
	font-size: 9px;
	line-height: 1.77777777;
	margin-bottom: 0;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
} 

/* チャンネルページ
---------------------------------------------------- */
.channel-content {
	width: 1150px;
	margin: auto;
	padding-top: 155px;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
	position: relative;
}


/* チャンネル情報
---------------------------------------------------- */
.channel-content .channel-info {
	width: 359px;
}
.channel-content .channel-info .hash-id {
	margin-bottom: 19px;
}
.channel-content .channel-info .hash-id .hash {
	width: 32px;
	height: 23px;
	margin-left: 11px;
	background: #B1B1B1;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.channel-content .channel-info .hash-id .id {
	width: 29px;
	height: 23px;
	background: #DBDBDB;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.channel-content .channel-info .hash-id h2 {
	width: 293px;
	height: 23px;
	background: #FFE200;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.channel-content .channel-info .channel-info-box {
	padding: 8px 10px 28px 10px;
	border: 1px solid #4D4D4D;
}
.channel-content .channel-info .channel-info-box .hash-no-id-no {
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.channel-content .channel-info .channel-info-box .hash-no-id-no .hash-no {
	width: 32px;
	height: 100%;
	background: #B1B1B1;
	font-size: 12px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.channel-content .channel-info .channel-info-box .hash-no-id-no .id-no {
	width: 29px;
	height: 100%;
	background: #DBDBDB;
	font-size: 11px;
	color: #383838;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.channel-content .channel-info .channel-info-icon-detail {
	width: 294px;
	padding: 13px 5px 13px 10px;
	background: #F8F8F8;
}
.channel-content .channel-info .channel-info-icon-detail .channel-info-detail {
	margin-left: 10px;
}
.channel-content .channel-info .channel-info-icon-detail figure {
	width: 99px;
}
.channel-content .channel-info .channel-info-icon-detail figure img {
	width: 100%;
}
.channel-content .channel-info .channel-info-icon-detail .channel-info-detail h3.channel-name {
	font-size: 9px;
	line-height: 1.777777;
	text-decoration: underline;
	margin-bottom: 5px;
	font-weight: normal;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.channel-content .channel-info .channel-info-icon-detail .channel-info-detail .subscribers {
	font-size: 9px;
	line-height: 1.777777;
	text-decoration: underline;
	margin-bottom: 9px;
	font-weight: normal;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.channel-content .channel-info .channel-info-icon-detail .channel-info-detail dl .dl-wrapper {
	width: 156px;
	padding: 6px 5px 4px 5px;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	background: #fff;
}
.channel-content .channel-info .channel-info-icon-detail .channel-info-detail dl .dl-wrapper:nth-child(even) {
	background: #EBEBEB;
}
.channel-content .channel-info .channel-info-icon-detail .channel-info-detail dl .dl-wrapper dt {
	width: 60px;
	font-size: 8px;
	line-height: 1em;
}
.channel-content .channel-info .channel-info-icon-detail .channel-info-detail dl .dl-wrapper dd {
	font-size: 9px;
	line-height: 1em;
}
.channel-content .channel-info ul.sns-links {
	width: 314px;
	margin: 20px auto 17px auto;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
	list-style: none;
}
.channel-content .channel-info ul.sns-links li a {
	display: block;
	height: 35px;
	background: #CBCBCB;
	font-size: 10px;
	line-height: 35px;
}
.channel-content .channel-info ul.sns-links li.twitter a {
	width: 135px;
}
.channel-content .channel-info ul.sns-links li.facebook a {
	width: 152px;
}
.channel-content .channel-info ul.sns-links li.twitter a::before {
	content: '';
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-left: 10px;
	margin-right: 10px;
	background: url(../images/icon-twitter.jpg) no-repeat;
	background-size: 26px 26px;
	vertical-align: middle;
}
.channel-content .channel-info ul.sns-links li.facebook a::before {
	content: '';
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-left: 10px;
	margin-right: 10px;
	background: url(../images/icon-facebook.png) no-repeat;
	background-size: 26px 26px;
	vertical-align: middle;
}
.channel-content .channel-info ul.sns-links li a:hover {
	text-decoration: none;
}
.channel-content .channel-info .outline {
	padding: 7px 14px;
	background: #F8F8F8;
}
.channel-content .channel-info .outline h4 {
	margin-bottom: 12px;
	font-size: 13px;
	color: #383838;
	font-weight: normal;
}
.channel-content .channel-info .outline p {
	font-size: 9px;
	color: #383838;
	line-height: 1.777777;
}

.channel-content .channel-info h5 {
	margin-top: 20px;
	margin-bottom: 12px;
	font-size: 13px;
	color: #383838;
	font-weight: normal;
}
.channel-content .channel-info ul.related-channel-list li {
	padding: 9px 24px;
	background: #F8F8F8;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.channel-content .channel-info ul.related-channel-list li:nth-child(odd) {
	background: #EBEBEB;
}
.channel-content .channel-info ul.related-channel-list .related-channel-box {
	margin-left: 14px;
}
.channel-content .channel-info ul.related-channel-list .related-channel-box h6 {
	margin-bottom: 7px;
	font-size: 8px;
	color: #383838;
	font-weight: normal;
}
.channel-content .channel-info ul.related-channel-list .related-channel-box .subscribers {
	margin-bottom: 15px;
	font-size: 6px;
	color: #383838;
}
.channel-content .channel-info ul.related-channel-list .related-channel-box .btn-subscribe a {
	display: block;
	width: 104px;
	height: 21px;
	background: #BFBFBF;
	font-size: 7px;
	line-height: 24px;
	padding-left: 14px;
}
.channel-content .channel-info ul.related-channel-list .related-channel-box .btn-subscribe a:hover {
	text-decoration: none;
}

/* 動画ページ
---------------------------------------------------- */
.video-content {
	width: 1128px;
	margin: auto;
	padding-top: 155px;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
	position: relative;
}
.video-content article {
	width: 727px;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}
.video-content article .youtube-video {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
  padding-top: 56.25%;
}
.video-content article .youtube-video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video-content article h2 {
	margin-bottom: 30px;
	font-size: 16px;
	color: #383838;
}
.video-content article .views-date {
	margin-bottom: 55px;
	font-size: 11px;
	color: #383838;
}
.video-content article .like-dislike {
	margin-left: 15px;
	font-size: 11px;
	color: #383838;
}
.video-content article .like-dislike .like {
	position: relative;
	margin-right: 10px;
}
.video-content article .like-dislike .dislike {
	position: relative;
}
.video-content article .like-dislike .like::before {
	font-family: "Font Awesome 5 Free";
	content: "\f164";
	display: inline-block;
	font-weight: 900;
	margin-right: 5px;
}
.video-content article .like-dislike .dislike::before {
	font-family: "Font Awesome 5 Free";
	content: "\f165";
	display: inline-block;
	font-weight: 900;
	margin-right: 5px;
	transform: scale(-1, 1);
}
.video-content article .channel-name {
	margin-bottom: 64px;
}
.video-content article .channel-name figure {
	margin-right: 10px;
}
.video-content article .channel-name .channel-name-box h3 {
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 15px;
	color: #383838;
}
.video-content article .channel-name .channel-name-box .subscribers {
	font-size: 15px;
	color: #383838;
	font-weight: bold;
}
.video-content article .description .description-box p {
	font-size: 12px;
	font-weight: bold;
	color: #383838;
	
}
@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.slide-up {
	-webkit-animation-name: slideUp;
	animation-name: slideUp;
}
.description {
	height: 49px;
	overflow: hidden;
	position: relative;
	margin: 0;
}
.btn-close,
.btn-more {
	display: block;
	width: 100%;
	padding: 10px 0 0;
	font-size: 16px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: -moz-linear-gradient(
		top,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 1) 60%
	);
	background: -webkit-linear-gradient(
		top,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 1) 60%
	);
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 1) 60%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr='#00ffffff',
		endColorstr='#ffffff',
		GradientType=0
		);
	cursor: pointer;
}
.btn-close {
	background: none;
}
.slide-up {
	height: 49px;
	padding-bottom: 0;
	overflow: hidden;
}
.slide-down {
	height: auto;
	overflow: visible;
	padding-bottom: 50px;
}

.video-content article hr {
	margin: 25px 0 45px 0;
}

.video-content article .comment .comment-count {
	margin-bottom: 30px;
	font-size: 16px;
	color: #383838;
	font-weight: bold;
}

/* フッタ
---------------------------------------------------- */
footer {
	height: 58px;
	padding-top: 36px;
	background: #FFE200;
}
footer p {
	font-size: 10px;
	line-height: 0;
	color: #3E3E3E;
	text-align: center;
}

/* Edgeのみ（EdgeHTML）
---------------------------------------------------- */
_:-ms-lang(x)::backdrop, .checkbox::before {
	top: 3px;
}
_:-ms-lang(x)::backdrop, .checkbox::after {
	top: 7px;
}

/* Edgeのみ（Chromium）
---------------------------------------------------- */
_:lang(x)::-ms-, .checkbox::before {
	top: 3px;
}
_:lang(x)::-ms-, .checkbox::after {
	top: 4px;
}

/* Chromのみ
---------------------------------------------------- */
_:lang(x)::-internal-media-controls-overlay-cast-button, body {

}

/* Firefoxのみ
---------------------------------------------------- */
_:lang(x)::-moz-placeholder, body {

}

