* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "M PLUS 1p", sans-serif;
}

body{
  background-color: rgb(177, 177, 177);
  color: rgb(0, 0, 0);
}

.sidebar {
  position: fixed;
  left: 0; /* 初期表示位置を変更 */
  background: rgba(0, 0, 0, 0.747);
  width: 170px;
  height: 100%;
  transition: all 0.5s;
}

.sidebar header {
  font-size: 22px;
  color: #a3a3a3;
  text-align: center;
  line-height: 70px;
  background: rgb(46, 46, 46);
  user-select: none;
}

.sidebar ul a {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 40px;
  font-size: 15px;
  color: #a3a3a3;
  padding-left: 40px;
  border-top: 1px solid rgba(255, 5, 5, 0.1);
  border-bottom: 1px solid black;
}

ul li:hover a {
  padding-left: 50px;
}

.sidebar ul a i {
  margin-right: 16px;
}

section {
  height: 100vh;
  background: url("./bg.jpg");
  background-size: cover;
  background-position: center;
  transition: all 0.5s;
}



.mq {
  margin-left: 170px; /* サイドバーの幅に応じて調整 */
  padding: 0px; /* 適切な間隔を設定 */
}

.container {
  margin-left: 170px; /* サイドバーの幅に応じて調整 */
  padding: 20px; /* 適切な間隔を設定 */
}
