@charset "UTF-8";
*,*::before,*::after{box-sizing:border-box}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}html{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img{max-width:100%;display:block}article>*+*{margin-top:1em}input,button,textarea,select{font:inherit}img:not([alt]){filter:blur(10px)}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}
/* コンテンツの中身 */
/* 動画サイトTOPのCSS */

:root{
  --body-bg-color:rgb(255, 255, 255);

  --main-bg-color:#ffffff;  /* */
  /* --main-text-color:#ffffff; */
  --main-text-color:#000000;
  --main-report-text-color:#aaa;
  --top-text-color: rgb(0,0,0);
  --button-color:rgba(255, 255, 255, 0);
  --side-bg-color: rgb(0, 0, 0);
  --menu-bar-text-color:#666565;
  --movie-button-background-color:#333;

  --hover-bg-color:rgb(67, 68, 68);
}

html{
  /* width: 100%; */
  height: 100%;
  min-height: 100%;
  position: relative;
}

body{
  /* background-color: rgb(20, 20, 20); */
  /* background-color: var(--body-bg-color); */
  background-color: var(--main-bg-color);
  /* color:var(--) */
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  /* position: relative;
  min-height: 100vh; */
  /* width: 100%;
  height: 100%; */
  /* position: relative; */

  font-family: "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  Meiryo,
  sans-serif;

}

#wrapper{
  width: 100%;
  height: 100%;
  position: relative;
}

/* ヘッダー関係 */
header{
  /* background-color: var(--side-bg-color); */
  width: 100%;
  display: block;
  height: 60px;
  /* position: fixed; */
  /* z-index: 2; */
}

.movie-page-header{
  background-color: var(--side-bg-color);
}

/* .header-button{
  display:none;
} */
/* .header-button{
  display: block;
} */
/* video{
  width: 50%;
} */

button{
  border-radius: 5px;
  /* color:rgb(156, 156, 156); */
  /* color:#FFF; */
  border: solid 0.5px rgb(0, 0, 0);
  /* background-color: var(--button-color); */
  letter-spacing: 0.5px;
}

#login{
  padding-left:10px;
  padding-right:10px;
}

button:hover{
  background-color:rgb(107, 106, 106);
}

p {
  white-space: pre-wrap;
}

.topLink img{
  /* height: 100%; */
  /* height: 50px; */
  width: 70px;
  padding: 5px;
  display: inline-block;
}

.topLink{
  position: absolute;
  left:5px;
  top:3px;
  width: 11%;
}

#divIcon{
  height: 100%;
}

#divIcon img{
  width: 40px;
  height: 40px;
  padding: 5px;
}

.reportSearch{
  margin: 0 auto;
  padding-top: 7px;
}

.head-side-menu{
  display: none;
}

#open-side-display{
  display: none;
}

/* ヘッダー関係 */

/* #nav-drawer {
  position: relative;
} */

#nav-drawer{
  width: auto;
  height: 50px;
  text-align: left;
  color: var(--menu-bar-text-color);
}

#nav-drawer a{
  text-decoration: none;
  color: var(--main-text-color);
}

#nav-content{
  position: relative;
  display: flex;
  height: 100%;
}

#side-nav-content li,#side-nav-content ul{
  padding: 5px;
}

/* ボディ関係 */

#body{
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
  
  /* display: table; */

  /* padding-top: 60px; */
  /* height: 100%; */
  height: 100vh;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  /* min-height: 100vh; */
  /* padding-bottom: 20px; */

  /* 余計なスクロール削除 */
  overflow: scroll;

}

#body::-webkit-scrollbar{
  display: none;
}

.movie-body{
  background: #000;
}

/* フッター関係 */
footer{
  text-align: center;
  background-color: var(--side-bg-color);

  color: #AAAAAA;
  font-size: 50%;

  width: 100%;
  height: 20px;
  position: absolute;
  bottom: 0;
}

.footer-white{
  background-color: var(--body-bg-color);
  color: var(--main-report-text-color);
}

a{
  /* テキスト下部のラインを無しに */
  text-decoration: none;
  /* 文字は白 */
  /* color: var(--main-text-color); */
  color:var(--top-text-color);
}

/* .body-item{
  height: 100%;
  background-color: var(--side-bg-color);
} */

/* サイドメニュー */
.left-sidebar{
  width: 15%;
  height: 100%;
  background-color: var(--side-bg-color);
  left: 0;
}

/* .mainContents{
  width: 95%;
} */

/* パンくず */

.breadList{
  margin-left: 40px;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  max-width: 600px;
  padding: 50px;
  background-color: #fff;
  z-index: 2;
}
.popup-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  font-size: 20px;
  color: #333;
}
.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 1;
  cursor: pointer;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  margin-left: 0;
  /* font-weight: bold;太字 */
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  /* padding: 0 0.2em; */
  /* color: #555; */
  /* color: #fff; */
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  /* color: #52b5ee;色 */
  /* color: #fff; */
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* ここまでパンくず */

.about-card{
  width: 600px;
  margin: 0 auto;
}

.card-wrap{
  margin-bottom: 20px;
}

.card-wrap-login{
  margin: 0 auto;
  text-align: center;
  border: #000 1px solid;
  width: 300px;
  padding: 20px;
  border-radius: 5px;
}

.speed-mute{
  margin: auto;
}

form{
  margin: auto;
}

.page-title{
  font-size: 30px;
  margin-bottom: 20px;
}

.card-title{
  font-size: 1.2em;
}

.card-text{
  font-size: 0.9em;
}

.card-link{
  font-size: 0.9em;
  /* margin-left: 10px;   */
}

.fieldset-card{
  display: flex;
  margin: 0;
  padding: 0;
}

.fieldset-card-title{
  width: 50%;
  text-align: left;
  padding: 20px;
}

.fieldset-card-input{
  margin: auto;
}

.old-pass-div,.new-pass-div{
  position: relative;
}

.old-new-pass-input{
  padding: 20px;
}

.old-new-pass-input *{
  margin-bottom: 5px;
}

.pass-change-button{
  float: right;
}

.movieData{
  margin-bottom : 20px;
  width: 100%;
  display: flex;
}

div.movieData *{
  float: left;
}

.movieData a{
  width: 50%;
  margin: 15px;
}

.movieData video{
  width: 100%;
  height: 100%;
}

.aboutReport{
  display: flex;
  width: 50%;
  position: relative;
  flex-direction: column;
}

.aboutReport a{
  width: 100%;
  padding: 0%;
  margin: 10px;
  text-align: left;
}

.reportTitle{
  height: 20%;
  font-size: 25px;
}

.reportText{
  height: 80%;
}

.reportText a{
  color: var(--main-report-text-color);
}

.movie-page-movie{
  height: 100%;
  background-color: #000;
}

.movie-page-movie video{
  /* width: 1000px;
  height: 610px; */
  display: block;
  width:70%;
  height:70%;
  /* max-width: 100%;
  max-height: 100%; */
  margin: 0 auto;
  /* margin: auto; */
}

/* .movie-page-movie strong{
  font-size: 30px;
} */

.movie-parts {
  margin-left: 5%;
}

.movie-parts-title{
  display: inline-block;
  font-weight: 600;
  font-size: 1.5rem;
  color:#fff;
}

.moveQuestion{
  display: inline-block;
  /* border: #333 solid 1px; */
  background-color: #2c2c2f;
  padding:0 5px;
}

#favoriteFormId{
  display: inline-block;
  /* font-size: 16px; */
  text-align: center;
  /* float: right; */
  padding:0;
}

.questionForm{
  padding:30px;
  display:inline-block;
}

.questionForm button{
  display: block;
  float:right;
}

.questionForm tr{
  padding: 30px;
}

.questionForm th{
  text-align: right;
}


.questionForm input[type="text"]{
  display: block;
  /* margin: auto; */
  width: 400px;
  height: 30px;
}

.questionForm textarea{
  display: block;
  /* margin: auto; */
  width: 400px;
  height: 100px;
  font-size: 14px;
}

.questionDone *{
  /* display: inline-block; */
  text-align: center;
}

.questionDone img{
  display:block;
  margin: auto;
}

.firstChangeDone{
  padding: 30px;
}

.firstChangeDone a{
  /* display: block; */
  /* padding-top: 20px; */
  margin: 0;
  padding: 0;
}

/* .sendH1{ */
  /* display: inline-block; */
  /* border-bottom: solid 1px #fff; */
/* } */


/* input[type="checkbox"][class="favoriteClass"]:checked + label{
  background:rgb(102, 102, 102);
} */

/* label[for="favoriteCheck"]{
  display:block;
  background:rgb(212, 211, 211);
  color: #000;
  width: 100px;
} */

ul,li{
  list-style: none;
  display: block;
  padding: 0;
  /* margin-left: 10px; */
  text-align: left;
}

.liStrong,.ulCate{
  font-weight: 900;
}

.sideCategory{
  padding: 5px;
}

.sideCategory label:hover,.left-sidebar a:hover,.headLinkLi:hover{
  background-color: var(--hover-bg-color);
}

.headLinkLi{
  z-index: 10;
}

/* .field-iconO{
  color: #555; */
  /* float: right; */
  /* margin-right: 15px; */
  /* margin-left: -30px;
  position: relative;
  z-index: 2;
} */

/* .field-icon{ */
  /* color: #555; */
  /* float: right; */
  /* margin-right: 15px; */
  /* margin-left: -30px;
  margin-top: 7px;
  position: absolute; */
  /* z-index: 2; */
/* } */


/* .old-pass-div div{
  display: inline-block;
} */


/* .field-icon{
  position: relative;
  right:10px;
  top:25px;
  z-index:2;
} */

.field-icon{
  position: absolute;
  left:180px;
  top:2px;
}

input[id="informCheck"]{
  display: inline-block;
}

.informCheckClass{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

label[for="informCheck"]{
  width: 38px;
  height: 20px;
  background: #ccc;
  position: relative;
  display: inline-block;
  border-radius: 46px;
  transition: 0.4s;
  box-sizing: border-box;
}

label[for="informCheck"]:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  left: 2px;
  top: 2px;
  z-index: 2;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.informCheckClass:checked + label[for="informCheck"] {
  background-color: #4BD865;
}
.informCheckClass:checked + label[for="informCheck"]:after {
  left: 19px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 30px;
  margin: auto;
  top:3px;
  left:6px;
}

/* .field-iconN{
  color: #555; */
  /* float: right; */
  /* margin-right: 15px; */
  /* margin-left: -30px;
  position: relative;
  z-index: 2;
} */

.topicDiv p{
  color: red;
  margin-left: 10px;
}

.changeMessage{
  display: inline-block;
  font-size: 20px;
  padding:20px;
}

.empDropdown{
  display:none;
  margin: 0px;
  position: absolute;
  right: 0;
  left:auto;
  border: solid 1px #333;
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
  /* 要素を一番上にする */
  z-index:9999;
}

.empDropdown li{
  border-bottom: solid 1px #333;
  /* padding: 0%; */
  margin: 0%;
  padding: 10px;
}

.sideCategoryDropDown{
  display:none;
  font-weight: lighter;
}

input[type="checkbox"]{
  display: none;
}

input[type="checkbox"]:checked + .sideCategoryDropDown {
  display: block;
}

.cate-parent{
  position: relative;
  display: inline-block;
}

.cate-list-item-ul{
  display: none;
  position: absolute;
  z-index: 2;
  top:45px;
  left: 20px;
  width: 100%;
}

.cate-list-item-ul li{
  font-size: 0.8em;
  padding:5px;
  border:1px solid;
  background: #fff;
}

.cate-list-item:hover{
  cursor: pointer;
}

.cate-list-item-close{
  display: none;
  position:fixed;
  top:0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
}

.CateClass:checked ~ .cate-list-item-ul{
  display: block;
}

/* .CateClass:checked ~ .cate-list-item-close{
  display: block;
} */

.cate-list-item-ul li:hover{
  text-decoration: underline;
}

#emp-close{
  display: none;
  position:fixed;
  top:0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  /* background-color: #aaa; */
}

#employeeIcon:checked ~ .empDropdown{
  display:block;
  margin-right: auto;
}

#employeeIcon:checked ~ #emp-close{
  display: block;
}

.category a:hover{
  background-color: var(--hover-bg-color);
}

.attention-p{
  color: red;
}

.passChangeDiv p{
  display: inline-block;
}

.helpView dt,
.helpView dd{
  border: solid 0.5px #fff;
  /* border: solid 0.5px #000; */
}

.helpView{
  margin: 30px;
}

.helpTitle{
  display: flex;
  justify-content:space-between;
  padding: 10px;
}

.helpText{
  padding: 10px;
  /* color: #555; */
  /* color: #000;
  background-color: #fff; */
}

.helpTitle,.helpText{
  padding: 10px;
  /* color: #aaa; */
}

.helpClump{
  margin-bottom: 15px;
}

/* .body-item span{
  color: red;
} */

.exColor{
  color: red;
  font-size: 1em;
  margin: inherit;
}


/* .exClass::after{
  font-family: "Font Awesome 5 Free";
  content: '\f06a';
  font-weight: 900;
} */
.notCheckReportClass{
  display: none;
}

.cautionAboutNotRead {
  display: inline-block;
  /* padding: 0.5em 1em; */
  /* margin: 2em 0; */
  color: #2c2c2f;
  background: #cde4ff;/*背景色*/
}
.cautionAboutNotRead p {
  /* display: inline-block; */
  font-weight: bold;
  margin: 0; 
  padding: 5px;
}

/* .newAddDiv{
  position: absolute;
  padding: 12px;
  font-size: 0.3em;
} */

.exClass{
  font-size: 0.7em;
  padding-top: 1px;
}

.button-float-pagetop{
  display: none;
}

/* #reportTextId{
  border-top: solid 0.5px #404040;
  width: 95%;
  padding-top: 7px;
  margin-top: 7px;
} */

#reportTextId a{
  color:#3ea6ff;
}

.movieData-cate-th{
  width: 40%;
  padding-bottom:10px;
  padding-left: 10px;
}

.movieData-cate-th video{
  width:100%;
}

.movieData-cate-li-title{
  height: 80%;
  text-align: left;
  vertical-align: top;
  font-size: 1.5em;
}

.movieData-cate-ul{
  padding: 0;
  margin: 0;

}

.movieData-cate-td{
  text-align: left;
  vertical-align: top;
  padding-bottom: 10px;
}

.movieData-cate-li-title{
  padding-bottom: 10px;
}

#sortForm{
  display: inline-block;
}



/* 20230522追加 スライドショー */
/*==================================================
スライダーのためのcss
===================================*/
/* .slider{
  height:50vh;
} */

/* .slider-item img{
  height: 50vh;
  object-fit: cover;
  margin: 0;
} */

.slider-item:not(.slick-center){
  /* color:#000; */
  /* background-color: #000; */
  opacity: 0.2;
  z-index: 2;
}

/* .slider-item img{
  width: 1280px;
  height: 720px;
} */

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  position: absolute;/*絶対配置にする*/
z-index: 3;
  top: 50%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc;/*矢印の色*/
  border-right: 2px solid #ccc;/*矢印の色*/
  height: 25px;
  width: 25px;
  display: block;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left:2.5%;
  transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
  right:2.5%;
  transform: rotate(45deg);
}

.slick-dots button{
  display: none;
}

.scroll-wrapper{
  display: flex;
  flex-wrap:nowrap;
  justify-content: unset; 
  overflow: scroll;
  /* margin-top: 10px; */
  /* width: 100%; */
  /* height: 200px; */
  height: 30%;
}

.scroll-wrapper::-webkit-scrollbar{
  display: none;
}

.movieScrollItem{
  min-width: 15%;
  min-height: 20%;
  margin: 8px;
  width:15%;
  height: 100%;
  overflow: hidden;
}

.movieScrollItem a{
  display: block;
  width: 100%;
  color:#555;
}

.movie-cate{
  position:relative;
  margin-left:40px;
  margin-top: 30px; 
}

.movie-cate-wrap{
  /* margin-left:40px;
  margin-top: 60px; */
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.movieScrollItem video{
  width:100%;
  border-radius: 3%;
}

.movieScrollItem img{
  width:100%;
  border-radius: 3%;
}

.cate-title{
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 15px;
  color:var(--top-text-color);
}

.movie-page-button{
  margin: 20px 0;
}

.movie-page-button *{
  font-size: 0.8em;
  font-weight: bold;
  background-color:var(--movie-button-background-color) ;
  color: #fff;
  border-radius: 20px;
  padding: 10px;
  font-size: 1rem;
}


#rateBtn{
  padding: 3px 10px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.rateCls{
  display: none;
  position: absolute;
  z-index: 2;
  width: 100px;
  vertical-align:top;
  padding: 0;
}

.rateCls li:hover{
  cursor: pointer;
}

.movie-page-gaiyo{
  font-size: 1.1em;
  font-weight: bold;
}

.leftButton,.rightButton {
  font-size: 26px;
  position: absolute;
  top: 30%;
  background-color: #fff;
  color: #000;
  padding: 5px 20px;
}
.leftButton {
  left: 0;
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 1px 1px #888;
}
.rightButton {
  right: 0;
  border-radius: 3px 0 0 3px;
  box-shadow: -1px 1px 1px #888;
}


.video-wrap{
  position:relative;
}

/* .movie-Rate-Btn{
  display: inline-block;
} */

/* #rateBtn{

} */
/* #rateBtn{
  border:none;
  font-weight: bold;
  background-color: transparent;
  color: #FFF;
  text-shadow:1px 1px 0 #000, -1px -1px 0 #000,
              -1px 1px 0 #000, 1px -1px 0 #000,
              0px 1px 0 #000,  0-1px 0 #000,
              -1px 0 0 #000, 1px 0 0 #000;
  letter-spacing: 2px;
  font-size: 1.5rem;
} */

label[for="favoriteCheck"]{
  position: relative;
}

#notFill{
  position: absolute;
}

.image-none{
  display: none;
}

.image-block{
  display: block;
}

.playlistWrapper{
  display: flex;
  color: #000;
    /* flex-wrap: nowrap;
  justify-content: unset; */
}

.leftContent,.rightContent{
  /* color: #000; */
  width: 50%;
}

.playlistItem{
  display: flex;
}

.playlistMovie{
  width: 400px;
  /* padding: 5px; */
  margin: 5px;
}

.playlistMovie video{
  width: 100%;
  border-radius: 10px;
}

.playlistMovieVideo{
  position: relative;
}

.playlistMovieCnt{
  position: absolute;
  bottom: 7px;
  background-color: #737070;
  width: 100%;
  height: 25px;
  opacity: 0.5;
  border-radius: 0 0 10px 10px;
}

.playlistMovieCntFont{
  position: absolute;
  color: #fff;
  opacity: 1;
  z-index: 1;
  text-align: right;
  bottom: 7px;
  right: 10px;
}


.listPageLeft{
  width: 75%;
  padding-left: 40px;
  padding-right:40px;
}

.listPageRight{
  width:25%;
}

.playlistVideoDiv{
  width:100%;

}

.playlistVideoDiv video{
  width:100%;
}

.listUl{
  padding:10px;
  overflow-y: scroll;
  height:90%;
}

.listLi{
  display: flex;
  width:100%;
  padding: 5px;
  position: relative;
}

.listLi video{
  width:50%;
  border-radius: 5px;
}

.listMovieTitle{
  margin-left: 10px;
}

.listTitle{
  height: 10%;
  font-weight: bold;
  font-size: 1.5rem;
  /* text-align: center; */
}

.playlistVideoTitle{
  font-weight: bold;
  font-size: 1.5rem;
}

.playlist{
  height: 800px;
  border:solid 1px #000;
  padding:5px;
  margin-right: 40px;
  border-radius: 20px;
}

/* #listUlId li:first-child{
  background:rgba(255,237,229,1.000);
} */

.listUl::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.listUl::-webkit-scrollbar-thumb {
  background: #525252;
  border-radius: 5px;
}

.video-Edit-icon{
  display: none;
  z-index: 1;
}

.listLi:hover{
  cursor: pointer;
  background-color: #dddddd;
}

.listLi:hover .video-Edit-icon{
  display:block;
  z-index: 1;
}

.video-Edit-icon li{
  display: none;
}

.PLformDiv{
  display: none;
  position: absolute;
  top:20%;
  left: 37%;
  width: 700px;
  height: 450px;
  background-color: #fff;
  z-index: 2;
}

.PLbackGround{
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #555;
  opacity: 0.5;
  z-index: 1;
}

.PLform-item-1{
  color: #000;
  font-size: 1.5rem;
  border-bottom:solid 1px #333;
  padding: 10px;
}

label[for="playListFormId"]{
  color:#000;
}

label[for="playListFormId"]{
  display: block;
  margin: 10px;
}

#playListFormId{
  margin-left: 10px;
}

.playlistFormButtons{
  position: absolute;
  bottom: 0;
  right: 0;
}

.playlistFormButtons button{
  border: none;
}
.cxlBlue{
  color:#002fff;
}

.playlistFormButtons button:hover{
  background-color: #fff;
  cursor: pointer;
}
#playListMenuId{
  float:right;
  padding:5px;
  border:solid 1px #000;
}

#playListMenuId:hover{
  cursor: pointer;
}

.playListMenu{
  color: #000;
  display: inline-block;
}

.noPlaylistMovie{
  width: 100%;
  /* height: 100%; */
  border: solid 1px #000;
}

.noPlaylistMovie a{
  display: block;
  width: 100%;
  /* height: 100%; */
  border: solid 1px #000;
}

.selectVideoWrap{
  width: 100%;
  display: flex;
  float: left;
  overflow-x: scroll;
  overflow-y: hidden;
}

/* .selectVideoWrap::-webkit-scrollbar{
  display: none;
} */

.selectMovieVideoCls{
  width: 200px;
  height: 200px;
}

.selectVideoDivCls{
  display: inline-block;
}

.selectMovieVideoCls video{
display: inline-block;
}

.cate-list{
  margin-left: 40px;
}

.cate-list-item{
  margin-left: 20px;
  padding: 7px;
  display: inline-block;
  border: 1px #000 solid;
  border-radius: 20px;
  color:black ;
}


.unique-item-beginner{
  background: linear-gradient(to bottom right, rgb(108, 207, 108), rgb(250, 250, 126));
}

.unique-item-heart{
  background: linear-gradient(to bottom right,rgb(221, 67, 93),rgb(253, 199, 99));
}

.unique-item-blue{
  background:linear-gradient(to bottom right,rgb(77, 77, 226),rgb(182, 182, 182));
}

.text-white{
  color:var(--main-report-text-color);
}

.sameCateMvWrap{
  /* width: 100%; */
  margin-left: 5%;
  overflow: hidden;
}

.sameCateTitle{
  font-weight: bold;
}


.sameCateMvWrap img{
  width: 300px;
  margin: 0;
}

.search-movie-text{
  display: none;
}

.sameCateMvWrap video{
  width: 300px;
  margin: 0;
}

.sameCateMvPart{
  float: left;
  width: 300px;
  height: 250px;
  margin: 5px;
}

.sameCateMvPart a{
  position: relative;
}

.search-movie-wrap{
  height: 100vh;
  margin-left: 40px;
}

.search-movie-bread{
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.search-movie-part{
  margin-left: 10px;
  float: left;
  clear: both;
}

.search-movie-image{
  width: 300px;
}

.cate-movie-wrap{
  /* height: 100vh; */
  overflow: hidden;
  margin-left: 40px;
  margin-top: 10px;
}


.cate-movie-part{
  margin-left: 10px;
  margin-bottom: 20px;
  float: left;
  height: 180px;
  /* width: 270px; */
}

.cate-movie-image{
  width: 270px;
}

.cate-movie-title{
  font-size: 0.9em;
}

.cate-movie-text{
  display: none;
}

.icon-red{
  color: red;
}

.accountInfoBody{
  margin-left: 30px;
}

.play-icon-class{
  position: absolute;
  top:50px;
  left:120px;
  color: #f00;
  font-size: 70px;
}

.movieSetting{
  color:var(--main-report-text-color)
}

.movie-main{
  position: relative;
}

.search_text{
  text-align: center;
  padding: 60px;
  font-size: 2em;
}

.search_text_a{
  display: block;
  text-align: center;
}
.search_text_a:hover{
  color: #3ea6ff;
  cursor: pointer;
}

.createdUpdatedDiv p{
  font-size: 0.8em;
}

