@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "M PLUS 1p", sans-serif;
}

.sidebar {
  position: fixed;
  left: 0; 
  /* left: -250px; /* checkboxを実装するとき */ 
  background-color: rgb(78, 172, 171);
  width: 200px;
  height: 100%;
  transition: all 0.5s;
  box-shadow: 2px 0 0 rgb(4, 0, 32);
}

.sidebar header {
  font-size: 15px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  background: rgb(84, 115, 177);
  user-select: none;
}

.sidebar ul a {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 40px;
  font-size: 15px;
  color: #ffffff;
  padding-left: 30px;
  border-top: 3px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0.5px solid black;
  transition: 0.4s;
}

.sidebar ul li:hover a {あ
  padding-left: 50px;
  background-color: rgb(25, 112, 110);
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul li:hover ul {
  display: block;      /* ★5:マウスポインタが載っている項目の内部にあるリストを表示する */
  background-color: rgb(78, 172, 171);
  width: 200px;
  margin-left: 202px;
  margin-top: -44px;/*-54px;  */
  transition: all 0.5s;
  position: absolute;
  color:#000000;
}

.sidebar ul li.active {
    background-color: rgb(4, 0, 32);
}


.sidebar ul a i {
  margin-right: 16px;
}

.content {
    font-size: 40px;
    text-align: center;
    margin-left: 200px;
    height: 100vh;
    background-position: center;
    background-color: rgb(255, 255, 255);
    color: #000000;
  }
  
p {
    padding-bottom: 50px;

v}
ul ul {
  display: none;         /* ★5:非表示にする */
  margin: 0px;         /* ★2:サブメニュー外側の余白(ゼロ) */
  padding: 0px;        /* ★3:サブメニュー内側の余白(ゼロ) */
  position: absolute;  /* ★4:絶対配置にする */
}

section {
  text-align: center;
  margin-left: 250px;
  height: 100vh;
  background-position: center;
  background-color: rgb(4, 0, 32);
  padding-top: 15%;
}


.btn {
  margin-top: 100px; /* 右側の間隔 */
  margin-right: 30px; /* 右側の間隔 */
  margin-bottom: 20px; /* 下側の間隔 */
}
