@charset "utf-8";
/* ================================ */
/* スマホ用レイアウト */
/* ================================ */
/* ================================ */
/* 全体 */
/* ================================ */
body {
  /* background-color: azure; */
  color: #333;
  background-color: #FFFEFC;
  font-size: 16px;
  font-family: "Sawarabi Mincho", serif;
}

main {
  background-color: #FFFEFC;
}

.inner {
  width: 100%;
  padding: 90px 20px 0px;
}

main h2 {
  font-size: 32px;
  color: #A44E33;
  text-align: center;
  margin-bottom: 30px;
  font-family: "DotGothic16", sans-serif;
}

.linkButton {
  font-size: 20px;
  color: #fff;
  background-color: #BB5535;
  display: block;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 0.08em;
  transition: 0.3s;
}

.linkButton:hover {
  opacity: 0.8;
}


/* ================================ */
/* ヘッダ */
/* ================================ */
.parallax {
  height: 800px;
  position: relative;
}

.parallax .hero {
  object-fit: cover;
  width: 100%;
  height: 800px;
  position: fixed;
  display: none;
  z-index: -1;
  max-width: 100%;
  /* top: -50px; */
}

.scroll {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 100px;
  color: #fff;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.scroll img {
  display: block;
  margin: 10px auto 0;
}

.top {
  position: absolute;
  width: 100%;
  height: 300px;
  top: 20vh;
  padding-top: 50px;
  text-align: center;
  background: url(../img/circle.png) no-repeat center center/contain;
}



.top h1 {
  font-size: 32px;
  color: #7A3924;
  margin-bottom: 18px;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 0.1em;
}

.top p {
  font-size: 12px;
  margin-bottom: 12px;
}

.linkButtonTop {
  font-size: 20px;
  color: #fff;
  background-color: #BB5535;
  display: block;
  padding: 15px;
  width: 215px;
  margin: 0px auto;
  text-align: center;
  border-radius: 8px;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 0.08em;
  transition: 0.3s;
}

.linkButtonTop:hover {
  opacity: 0.8;
}


/* ================================ */
/* ナビゲーション（スマホ） */
/* ================================ */
.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;
}


/* ================================ */
/* Profile */
/* ================================ */
#profile h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon1.jpg) no-repeat center center/cover;
  margin: 0 auto;
  margin-bottom: 20px;
}

#profile img {
  max-width: 100%;
  margin-bottom: 20px;
}

#profile h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;

}

.profileDetail {
  line-height: 1.8;
}

/* ================================ */
/* Music List */
/* ================================ */
#musiclist h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon2.jpg) no-repeat center center/cover;
  margin: 0 auto;
  margin-bottom: 20px;
}

.musiclistDetail {
  margin-bottom: 30px;
  text-align: center;
}

/* ================================ */
/* Contact */
/* ================================ */
#contact h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon3.jpg) no-repeat center center/cover;
  margin: 0 auto;
  margin-bottom: 20px;
}

.contactDetail {
  margin-bottom: 30px;
  text-align: center;
}

/* ================================ */
/* Link */
/* ================================ */
#link h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon4.jpg) no-repeat center center/cover;
  margin: 0 auto;
  margin-bottom: 20px;
}

#link ul {
  margin-bottom: 90px;
}

#link li {
  margin-bottom: 30px;
}

#link p {
  margin-bottom: 10px;
}

/* ================================ */
/* フッタ */
/* ================================ */
footer {
  background-color: #7A3924;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 20px;
}

/* ================================ */
/* PC用レイアウト */
/* ================================ */
@media screen and (min-width: 1080px) {
  /* ================================ */
  /* 全体 */
  /* ================================ */
  .inner {
    width: 1080px;
    margin: 0px auto;
    padding: 100px 0px;
  }

  main h2 {
    font-size: 64px;
  }

  .linkButton {
    width: 315px;
    margin: 0 auto;
  }

  /* ================================ */
  /* ヘッダ */
  /* ================================ */
  .parallax {
    height: 800px;
  }

  .top {
    top: 240px;
  }
  .scroll {
    bottom: 80px;
  }

  /* ================================ */
  /* ナビゲーション（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;
  }


  /* ================================ */
  /* プロフィール */
  /* ================================ */
  #profile .inner {
    display: grid;
    grid-template-rows: 80px 400px;
    grid-template-columns: 520px 560px;
  }

  .profileImg {
    grid-row: 1/3;
    grid-column: 1/2;
    padding-right: 40px;
  }

  #profile img {
    margin-bottom: 0px;
  }

  #profile h2 {
    grid-row: 1/2;
    grid-column: 2/3;
    text-align: left;
    position: relative;
    padding-left: 60px;
  }
  
  #profile h2::before {
    display: inline-block;
    margin-bottom: 0;
    position: absolute;
    top: 20px;
    left: 0;
  }

  .profileDetail {
    grid-row: 2/3;
    grid-column: 2/3;
    align-self: end;
    font-size: 18px;
  }

  #profile h3 {
    text-align: left;
    font-size: 32px;
  }

  /* ================================ */
  /* リンク */
  /* ================================ */
  #link ul {
    display: flex;
    flex-wrap: wrap;
    width: 650px;
    margin: 0px auto;
  }

  #link ul li {
    width: 315px;
  }

  #link ul li:nth-child(2n+1) {
    margin-right: 20px;
  }

}
