.dragonsLogoH { fill:#FFF }
.navHeader {
  padding: 0 20px;
  height:100px;
  box-sizing:border-box;
  position:fixed;
  width:100%;
  z-index:100;
  display:flex;
  justify-content: space-between;
  align-items: center;
  background:#129fff
}
.navHeader > div { flex:1; }
.navHeader .dLogo img { width:102px; }
.navHeader .fcLogo { text-align:center; }
.navHeader .fcLogo img { width:101px; }
.navHeader .nav { width:50px; height:50px; }

/* チェックボックスを非表示にする */
.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:#129fff;
  transition: .5s;
  text-align: center;
}
.navCont.off { display:none; }
.navList {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size:min(5.5vw,2em);
  font-family: "condor", sans-serif; font-weight: 500; font-style: italic
}
.navList li a { color: #fff; text-decoration: none }
#drawerInput:checked ~ .navCont { left: 60% }



/*
==================================================
～1040
==================================================
*/
@media screen and ( max-width:1040px) {
  .navHeader { height:80px }
  .navCont { width:60%; top:80px }
  #drawerInput:checked ~ .navCont { left: 40% }
/*～1039 END*/
}
/*
==================================================
～670
==================================================
*/
@media screen and ( max-width:670px ){
  .navHeader .dLogo img { width:60px; }
  .navHeader .fcLogo img { width:55px; }
  .navHeader .nav { width:50px; height:50px; }
  .navHeader { height:50px }
  .navCont { top:50px }
  .drawerOpen { width: 30px; height: 30px }
  .drawerOpen i:before { font-size: 30px; width: 30px; height: 30px }
/*～670 END*/
}
