@charset "utf-8";
/* ============================= */
/* スマホ用レイアウト */
/* ============================= */
/* ---------------------- */
/* 全体 */
/* ---------------------- */
body {
  color: #333;
  background-color: #FFFEFC;
  font-size: 16px;
  font-family: "Sawarabi Mincho", serif;
}

p {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 12px;
}

.inner {
  width: 100%;
  padding: 20px;
  line-height: 1.6;
}

main h1 {
  font-size: 40px;
  text-align: center;
  margin: 100px 0;
  font-family: "DotGothic16", sans-serif;
  color: #A44E33;
}


main h2 {
  color: #A44E33;
  font-size: 24px;
  border-bottom: #A44E33 1px solid;
  font-family: "DotGothic16", sans-serif;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

main .info {
  margin-bottom: 50px;;
}

main .info ul li {
  list-style-type: disc;
  margin-left: 20px;

}

main .info ul li:not(:nth-child(3n)) {
  margin-bottom: 10px;
}

.scorelist {
  display: flex;
}

.scorelist li {
  width: 48%;
}

.scorelist li:not(:nth-child(2n)) {
  margin-right: 2%;
}

.scorethumb {
  width: 100%;
  height: calc((100vw - 40px)*5/8);
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 3px;
  border-radius: 5px;
  overflow: hidden;
}

.scorethumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hover {
  display: none;
}

.onlyPC {
  display: none;
}

.onlySP {
  display: block;
}

/* ---------------------- */
/* 各楽譜ページ */
/* ---------------------- */

.movie {
  width: 100%;
  height: calc((100vw - 40px)*9/16);
  margin-bottom: 30px;
}

.songinfo {
  margin-bottom: 50px;
}

.scoresample {
  width: 100%;
  margin-bottom: 50px;
}

.scoresample img {
  width: 100%;
}

.downloadbtn {
  display: block;
  font-size: 20px;
  color: #fff;
  background: url(../img/download.png) no-repeat 20px center;
  background-size: 20px 20px;
  background-color: #A44E33;
  padding: 10px;
  width: 100%;
  margin-bottom: 50px;
  font-family: "DotGothic16", sans-serif;
  text-align: center;
  border-radius: 8px;
}

.backbtn {
  display: block;
  font-size: 20px;
  color: #fff;
  background: url(../img/back.png) no-repeat 20px center;
  background-color: #CB9382;
  padding: 10px;
  width: 100%;
  margin-bottom: 50px;
  font-family: "DotGothic16", sans-serif;
  text-align: center;
  border-radius: 8px;
}

/* ---------------------- */
/* フッタ */
/* ---------------------- */
footer {
  background-color: #7A3924;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 20px;
}

/* ================================ */
/* ナビゲーション（スマホ） */
/* ================================ */
.pcNavi {
  display: none;
}

.hamburger-menu {
  display: block;
}

#menu-btn-check {
  display: none;
}
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  cursor: pointer;
  background: url(../img/menu.png) no-repeat center 10px / 40px 40px;
  background-color: #A44E33;
  padding: 60px 10px 20px 10px;
  border-radius: 5px;
}

#menu-btn-check:checked ~ .menu-btn {
  background: url(../img/close.png) no-repeat center 10px / 40px 40px;
}

label {
  color: #fff;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 0.1em;
  font-size: 12px;
}

/* menu content */
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 80;
  background-color: #A44E33;
  transition: 0.5s;
  top: 0;
  left: 100%;
  color: #fff;
  padding: 30px;
}
.menu-content h1 {
  font-size: 36px;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 0.1em;
  margin-top: 30px;
  text-align: left;
}


.menu-content ul {
  font-family: "DotGothic16", sans-serif;
  font-size: 20px;
  padding: 40px 10px 0;
  letter-spacing: 0.08em;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
  margin-bottom: 17px;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 15px 15px 15px 70px;
  transition: 0.3s;
}

.menu-content ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.menuProfile {
  background: url(../img/icon1.jpg) no-repeat left center/48px 48px;
}

.menuMusicList {
  background: url(../img/icon2.jpg) no-repeat left center/48px 48px;
}

.menuScore {
  background: url(../img/icon5.jpg) no-repeat left center/48px 48px;
}

.menuContact {
  background: url(../img/icon3.jpg) no-repeat left center/48px 48px;
}

.menuLink {
  background: url(../img/icon4.jpg) no-repeat left center/48px 48px;
}


#menu-btn-check:checked ~ .menu-content {
  left: 0;
}


/* ============================= */
/* PC用レイアウト */
/* ============================= */
@media screen and (min-width: 1080px) {
  /* ---------------------- */
  /* 全体 */
  /* ---------------------- */  
  .inner {
    width: 1080px;
    margin: 0px auto;
  }

  main h1 {
    margin-top: 170px;
  }

  .scorelist li {
    width: 33%;
  }
  
  .scorelist li:not(:nth-child(3n)) {
    margin-right: 1%;
  }
  
  .scorethumb {
    border-radius: 5px;
    position: relative;
    height: 500px;
  }

  .hover {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 24px;
    font-family: "DotGothic16", sans-serif;
    filter: opacity(0);
    transition-duration: 0.5s;
  }

  .hover:hover {
    filter: opacity(1);
  }

  .onlySP {
    display: none;
  }

  .onlyPC {
    display: block;
  }

  /* 各楽譜ページ */
  .movie {
    height: 720px;
  }

  .downloadbtn, .backbtn {
    width: 350px;
    margin: 0 auto 50px;
    transition: 0.3s;
  }

  .downloadbtn:hover, .backbtn:hover {
    opacity: 0.8;
  }

  
  
  /* ---------------------- */
  /* PC用ナビゲーション */
  /* ---------------------- */
    /* ================================ */
  /* ナビゲーション（PC） */
  /* ================================ */
  .hamburger-menu {
    display: none;
  }

  .pcNavi {
    display: flex;
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: rgba(164, 78, 51, 0.95);
    z-index: 100;
  }

  .pcNavi h1 {
    font-size: 24px;
    color: #fff;
    font-family: "DotGothic16", sans-serif;
    position: absolute;
    top: 20px;
    left: 100px;
    letter-spacing: 0.1em;
  }

  .pcNavi ul {
    display: flex;
    color: #fff;
    font-family: "DotGothic16", sans-serif;
    letter-spacing: 0.05em;
    font-size: 18px;
    position: absolute;
    right: 100px;
  }

  .pcNavi ul li {
    margin-left: 10px;
  }

  .pcNavi ul li a {
    display: block;
    padding: 22px 10px 22px 56px;
    transition: 0.3s;
  }

  .pcNavi ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .menuProfile {
    background: url(../img/icon1.jpg) no-repeat 10px center/36px 36px;
  }

  .menuMusicList {
    background: url(../img/icon2.jpg) no-repeat 10px center/36px 36px;
  }

  .menuScore {
    background: url(../img/icon5.jpg) no-repeat 10px center/36px 36px;
  }

  .menuContact {
    background: url(../img/icon3.jpg) no-repeat 10px center/36px 36px;
  }

  .menuLink {
    background: url(../img/icon4.jpg) no-repeat 10px center/36px 36px;
  }
}