@charset "Shift_JIS";

/*** nav ***/
/* PC�E�E�E�X�E�}�E�z�E��E��E��E� */
.navtop{
 	height: 110px;
	 background-color:#000000;
}
.navtop a{
  display: block;
  padding: 11px 0;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
/*	border: solid 1px #ffffff;*/
}
.navtop a{
  background-color: #000000;
}
.navtop a.current{
  background-color:#000088;
  cursor: default;
  pointer-events: none; /* 押せなぁE*/
 
}

.navtop a:hover{
  background-color:#006666;
  color:#ffffff;
}

/* PC�E�i�E��E� 768px �E�ȏ��E�j */
@media (min-width: 768px){
  header{
  width: 100%;
  display:flex;
  align-items:center;
  gap:px;
}
header img{
  height: 110px;     /* ロゴの高さを固宁E*/
  width: 400px;      /* 幁E�E自勁E*/
}
   .navtop{
     width: 100%;
    flex: 1;
	
  }

  .navtop ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}
  .navtop a{
    font-size: 16px;
  /*  padding: 12px 0;*/
  }
  .navtop{
    flex: 1;
  }
 
  .navtop li{
    width: auto;
    text-align: center;
    font-weight: bold;
  }
}

@media (max-width: 767px){
  
   header{
    width: 100%;
    display: block !important;
    text-align: center;
/*  margin-bottom:10px; */

  }
  header img{
    width: 100%;
    height: 100px;   /* スマ��Eでは少し小さめE*/
    margin: 0 auto;
  }
   .navtop{
    width: 100%;
  }
  .navtop ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .navtop a{
    font-size: 14px;
    padding: 10px 0;
  }
  
}