.navHeader { background-color:#111ec1 }
/* チェックボックスを非表示にする */
.drawerHidden { display: none }
/* ハンバーガーアイコン */
.drawerOpen {
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:20%;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.drawerOpen i:before {
  font-family: "Font Awesome 6 Free";
  font-weight:900;
  content: '\f0c9';
  color: #FFF;
  font-size: 50px;
  width: 50px;
  height: 50px;
  font-style: normal;
}
.drawerOpen span:before { bottom: 8px; }
.drawerOpen span:after { top: 8px }
#drawerInput:checked ~ .drawerOpen i:before { content: '\f00d'; }
.navCont {
  width: 40%;
  height: 100%;
  position: fixed;
  top: 100px;
  left: 100%;
  z-index: 1000;
  background: #111ec1;
  transition: .5s;
  text-align: center;
}
.navCont.off { display:none; }
.navList {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size:2em;
  font-family: "proxima-nova", sans-serif; font-weight: 800; font-style: italic
}
.navList li a { color: #fff; text-decoration: none }
#drawerInput:checked ~ .navCont { left: 60% }



/*
==================================================
～1040
==================================================
*/
@media screen and ( max-width:1040px) {
  .navCont { width:60%; top:80px }
  #drawerInput:checked ~ .navCont { left: 40% }
/*～1039 END*/
}
/*
==================================================
～670
==================================================
*/
@media screen and ( max-width:670px ){
  .navCont { width:100% }
  #drawerInput:checked ~ .navCont { left: 0 }
/*～670 END*/
}
