/* グレーの箱 */
.gray{
  background-color: #80808014;
  padding-top:15px;
  padding-bottom:15px;
}

.finish{
  text-decoration: line-through;
}

/* 動画 */
video{
  display:block;
  /* margin: 0 auto; */
  /* margin-bottom:40px; */
  width:100%;
}
#samv {
  width: auto;
  margin: auto;
  overflow: hidden;
}
/* 回路画像 */
.kairo img{
  width:100%;
  display: block;
  margin:0 auto;
}
.movie-kairo{
  margin-top:30px;
}

/* 完了ボタンとか */
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  opacity:0.9;
}
.btn--orange_b,
a.btn--orange_b {
  color: black;
  opacity:0.9;
}
.btn--orange:hover {
  color: #fff;
  background: #f56500;
  cursor: pointer;
  opacity:1;
}
.btn--orange_b:hover{
  color: #fff;
  background: #f56500;
  cursor: pointer;
  opacity:1;
}
.jimaku{
  margin-left: auto;
}


/*タブメニュー始まり-----------------------------*/
/*タブ切り替え全体のスタイル*/
.tabs {
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 68%;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/4);
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}
.category_movie{
  margin: 10px;
}
/*選択されているタブのコンテンツのみを表示*/
#about:checked ~ #about_content,
#source:checked ~ #source_content,
#use:checked ~ #use_content,
#question:checked ~ #question_content,
#kairo:checked ~ #kairo_content,
#next:checked ~ #next_content {
  display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}
/* タブメニュー終わり------------------- */
.tab-scroll-contents{
  margin-top:50px;
}

.user_name{
  font-size: 20px;
  font-weight: bold; 
}

.btn_image{
  border-radius: 5px 5px 5px 5px!important;
}

.btn_image:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

/* flex */
.flex1{
  display:flex;
  justify-content: space-between;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ユーザー表内容 */
#user-info {
  height: 200px;
  width: 30%;
  overflow-y: scroll;
  margin-left: 5px;
}
#mypage {
  height: 1000px;
  width: 30%;
  margin-left: 5px;
}

/* タブメニューとコース内容 */
#movie-scroll {
  height: 500px;
  overflow-y: scroll;
}
.contents .lesson_scroll p{
  color:#14171c;
}
.contents{
  padding:15px 5px;
}
.contents p{
  font-size:13px;
}
.lesson-name{
  font-size: 20px!important;
  font-weight: bold; 
  margin-top:5px;
}
.lesson_scroll:hover{
  background-color:#e6f2f5;;
}


/* footer-css開始----------------------------------- */
.footer-flex{
  width:70%;
  margin:0 auto;
  padding-top:40px;
  display: flex;
  justify-content: space-around;
}
.footer-img{
  width:10%;
}
.footer-img img{
  width:100%;
}
.footer-list ul li a{
  font-size:13px;
  color:gray;
}

.copyright p{
  text-align: center;
  font-size:10px;
  color:gray;
  margin-top:30px;
}

/* スマホ表示 */
@media(max-width:480px){
  .tab_content {
    padding: 0px 0px 0!important;
  }
  .tab_item{
    font-size: 10px;
  }
  .tabs{  
    height: 100%;
    min-height: 500px;
  }
}
/* タブレット表示 */
@media(min-width:760px){
  .tab_content {
    padding: 0px 0px 0!important;
  }
  .tab_item{
    font-size: 10px;
  }
}
/* パソコン表示 */
@media(min-width:1001px){
  .tab_content {
    padding: 10px 10px 0!important;
  }
  
  .tab_item{
    font-size: 15px;
  }
}