@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;
}

main h1 {
  font-size: 40px;
  text-align: center;
  margin: 100px 0;
  font-family: "DotGothic16", sans-serif;
  color: #A44E33;
}


main h2 {
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  padding: 20px 10px;
  margin-bottom: 20px;
  background: url(../img/down.png) no-repeat 96% 50%/15px;
  background-color: #CB9382;
}

main h2 + div {
  display: none;
}

main h3 {
  background-color: #E0D3C8;
  padding: 8px;
  margin-bottom: 10px;
}

main ul {
  line-height: 1.6;
  margin-bottom: 30px;
}
/* ---------------------- */
/* フッタ */
/* ---------------------- */
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;
  }
  
  /* ================================ */
  /* ナビゲーション（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;
    top: 2px;
    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;
  }
}