@charset "UTF-8";

* {
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgb(0, 0, 0);
}

body { /*背景色変更*/
    background-color: rgb(0, 6, 17);
}
/*フェードイン*/
.wrap {
    animation: fadein 3s forwards;
  }
  
  @keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
  }
  
  .bg {
    width: 100%;
    height: 100vh;
    background: url(https://thumb.photo-ac.com/e3/e3b9d5c65f46be7bf71b1a4b8c3ab5a9_t.jpeg) no-repeat center/cover;
  }
  
  body {
    margin: 0;
  }
/**ナビゲーション 共通**/
.nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.822);
    text-align: center;
    font-size: 16px;
  }
  .nav-list ul {
    text-align: center;
    list-style: none;
  }
  .nav ul li { /* 横並び指定 */
    padding: 0 24px;
    display: inline-block;
  }
  .nav ul li a{
    font-size: 16px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  .nav a:hover {
    opacity: 0.6;
  }
  
/**index**/
.ind-div {
  display: flex;
  max-width: 750px;
  height: 200px;
}
.ind-div {
  margin-top: 200px;
  margin-left: 50px;
  width: 100%;
  height: 100%;
}
/**movieヘッダー**/
.movie_header ul {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}
.movie_header ul li {
    list-style: none;
    margin: 20px;
}
.movie_header ul li img {
    border-radius: 5px;
    box-shadow: 0 15px 25px 0 rgba(68, 67, 65, 0.5);
}
.img_wrap{
    border: 1px solid rgba(255, 255, 255, 0);
    width: 300px;
    height: 226px;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
  }
  .img_wrap img{
    width: 100%;
    cursor: pointer;
    transition-duration: 0.3s;
  }
  .img_wrap:hover img{
    opacity: 0.6;
    transition-duration: 0.3s;
  }
  /*****メインコンテンツ・ディスコグラフィー
***********************************************/
.article_discography {
  margin: 30px auto 0;
}
.section_discography {
  width: 100%; /*横幅の指定*/
  padding: 1%; /*余白の指定*/
  margin-bottom: 0;
  background-color: rgba(1, 1, 14, 0.8); /*背景色の指定*/
}
.box_discography {
  display: flex;
  justify-content: space-around;
}
.box_left {
  width: 70%;
}
iframe {
  width : 55vw ; /* 画面幅の50％ */
  height: 30vw;
}
.box_right {
  width: 50%;
}
.section_discography h1 {
  font-size: 24px; /*フォントサイズの指定*/
  color: #fff; /*文字色の変更*/
  letter-spacing: 0.1em; /*文字と文字の間隔をあける*/
}
.section_discography h2 {
  font-size: 20px; /*フォントサイズの指定*/
  color: #fff; /*文字色の変更*/
  letter-spacing: 3px; /*文字と文字の間隔をあける*/
  border-bottom: 1px solid #bababa; /*文字の下部に線を描く*/
  margin-bottom: 20px; /*セクションタイトルの下に余白をつくる*/
}
.section_discography p {
  font-size: 14px;
  color: #ccc; /*文字色の変更*/
  line-height: 1.6; /*行間をあける*/
}
.section_discography img {
  max-width: 90%;
  margin-bottom: 10px;
}
.section_discography ul {
  list-style: none;
}
.section_discography li {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.75;
}
