@charset "euc-jp";

/*==============================================
BB_1.css
==============================================*/

.is-forScrollFixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	overflow-y: scroll;
}

ul.MovieChatCommentList {
	margin: 0;
	background-color: #fff;
}

.ChatInputArea {
	background-color: #E9E9E9;
}

.ChatInputArea.Dummy {
	padding-left: 14px;
}

.ChatInputArea.Dummy span.DummyPlaceHolder{
	color:#BFBFBF;
	font-weight: bold;
	position: relative;
}

.ChatInputArea.Dummy span.DummyPlaceHolder:before{
	width: 1px;
	height: 20px;
	background-color: #888;
	content: "";
	display: block;
	position: absolute;
	left:0;
	top: 50%;
	transform: translate(0, -50%);
}

.ChatCommentTxtBox_Inner p.UserName {
	color: #444;
}

.ChatCommentTxtBox_Inner p.Comment {
	color: #444;
}

.ChatInputSubmit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 0;
}

.ChatInputSubmit button.ActionBtn{
	background-color: #9D9D9D;
	border-color: #9D9D9D;
}

.ChatInputArea .StampBtn {
	left: 9px;
}

.ChatInputArea .StampBtn::after{
	background-image: url('/common/img/live/icon_nico.png');
}

.StampListWrap{
	background-color: #E9E9E9;
}

.StampListWrap .KeyboardBtn::after{
	background-image: url('/common/img/live/tv_icon_keyboard01.png?ver1');
}

.ChatInputArea textarea.UserPostsComments_01 {
	color: #BFBFBF;
}

.MoviePlayerBox {
	position: relative;
	overflow: hidden;
}

.MoviePlayerBox .video-js .vjs-big-play-button {
    display: none !important;
}

.MoviePlayerBox video,
.MoviePlayerBox .video-js {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.MoviePlayerBox .video-js {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	position: relative;
}

.MoviePlayerBox .video-js.vjs-user-inactive .vjs-play-control {
	opacity: 0;
	transition: opacity 0.3s;
}

.MoviePlayerBox .settingWrap {
	/* position: absolute; */
    /* left: 0; */
    /* bottom: 0; */
    /* padding: 20px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    position: absolute;
    padding: 0;
    left: 20px;
    bottom: 10px;
    cursor: pointer;
    margin-top: 0 !important;
}

.MoviePlayerBox .video-js .vjs-control-bar {
    background-color: transparent;
    justify-content: flex-end;
    background: #000;
    background: linear-gradient(to bottom, transparent, #000);
    height: 4.5em;
}
.MoviePlayerBox .video-js .vjs-icon-cog {
	cursor: pointer;
}
.MoviePlayerBox .video-js .vjs-icon-cog:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	line-height: 1.67;
}
.MoviePlayerBox .video-js .vjs-icon-cog:hover:before {
	text-shadow: none;
}

.MoviePlayerBox .video-js .vjs-icon-cog:before,
.MoviePlayerBox .video-js .vjs-button>.vjs-icon-placeholder:before {
	font-size: 20px;
}

.MoviePlayerBox .video-js .vjs-control-bar > .vjs-control{
	margin-top: 10px;
}

.MoviePlayerBox .video-js .vjs-play-control {
	width: 100%;
	height: calc(100% - 4.5em);
}

.MoviePlayerBox .video-js .vjs-play-control .vjs-icon-placeholder:before {
	font-size: 50px;
	position: static;
}

.MoviePlayerBox .placeTextWrap{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-right: 10px;
}

.MoviePlayerBox #not-live{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

.MoviePlayerBox .placeTextWrap .status{
	background-color: #E03D3D;
	border-radius: 4px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 26px;
	font-size: 14px;
	font-weight: bold;
	margin-right: 7px;
}


.MoviePlayerBox .placeTextWrap .status.statusEnd{
    background-color: #888888;
}

.MoviePlayerBox .placeTextWrap .place{
	font-weight: bold;
	color: #fff;
	font-size: 14px;
	display: flex;
    align-items: center;
    padding-right: 10px;
}

.MoviePlayerBox .place:after{
    content: "";
    display: block;
    position: relative;
    right: -6px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #fff transparent;
    transform: rotate(180deg);
}



/* ミュート機能 .UserMuteWrap */
.ModalOverlay {
	background: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 7100;
	transition: opacity 0.7s, transform 0s 0.5s;
}
.ModalOverlay.MuteOverlay {
	z-index: 10;
}
ul.MovieChatCommentList li.Tap{
	animation: TapBgColor 0.3s ease-in;
}
@keyframes TapBgColor{
	0%{
		background: rgba(196,196,196,0)
	}
	40%{
		background: rgba(196,196,196,1)
	}
	100%{
		background: rgba(196,196,196,0)
	}
}
.UserMuteWrap {
	display: none;
	position: fixed;
	padding: 6px 10px;
	background: #e9e9e9;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 20;
	padding: 46px 6px 0 6px;
	transform: translateY(100%) translateZ(0);
}
.UserMuteWrap.SlideIn {
	display:block;
	animation: SlideInAnime 0.3s ease-in forwards;
	transform: translateY(0) translateZ(0);
}
@keyframes SlideInAnime{
	0%{
		opacity: 0;
		transform: translateY(100%) translateZ(0);
	}
	30%{
		opacity: 1;
	}
	100%{
		opacity: 1;
		transform: translateY(0) translateZ(0);
	}
}
.UserMuteWrap .CloseBtn {
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-block;
	width: 24px;
	height: 24px;
	text-indent: -9999px;
}
.UserMuteWrap .CloseBtn::before,
.UserMuteWrap .CloseBtn::after {
	content: '';
	height: 2px;
	width: 16px;
	display: block;
	background: #757575;
	position: absolute;
	top: 11px;
	left: 4px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.UserMuteWrap .CloseBtn::after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.UserMuteWrap .UserCommentBox {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	word-break: break-all;
	background: #fff;
	border-radius: 4px;
	padding: 12px;
}
.UserMuteWrap .UserCommentBox .ChatUserProfBox{
	width: 40px;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}
.UserMuteWrap .UserCommentBox .ChatUserProfBox img{
	width: 30px;
	border-radius: 30px;
	overflow: hidden;
}
.UserMuteWrap .UserCommentBox .ChatCommentTxtBox_Inner{
	max-height: 2.6em;
	overflow: hidden;
}
.UserMuteWrap .MuteBtn01 {
	width: 223px;
	height: 32px;
	margin: 16px auto;
}
.UserMuteWrap .MuteBtn01 a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 223px;
	height: 32px;
	border: 1px solid #757575;
	border-radius: 20px;
	color: #444;
	font-size: 72.23%;
}
.UserMuteWrap .MuteBtn01 span.Icon {
	display: block;
	margin-right: 10px;
	height: 16px;
}
.UserMuteWrap p.InfoTxt {
	font-size: 55.56%;
	text-align: center;
	padding-bottom: 16px;
}
