@charset "utf-8";
/* CSS Document */

@media screen and (min-width:1600px){
.menu {
  display: flex;
  justify-content: flex-start;
  list-style-type: none;
  padding: 0;
}
.ddown{
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-bottom: 3px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.menu li,
.menu li a{
text-align: center;
position: relative;
width:auto;
min-width: 125px;
padding: 5px 10px;
text-decoration: none;
color: #565656;
}
.menu li:hover{
color:#00B9EF;
}
.menu li a:hover{

color: #fff;
background:#00B9EF;
}
.menuSub {
  position: absolute;
  margin-left: -6px;
  padding: 0;
  display: none;
 background:#02295A;/*background: #02418E;*/
}
.menuSub li{
list-style: none;

}
.menuSub li a{
  padding: 5px;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: -5px;
  display: block;
  color: #fff;/* color: #00B9EF;*/

  text-decoration: none;
  }
.menuSub:hover {
background:#02295A;/*background: #02418E;*/
}
.menuSub li:hover,
.menuSub li a:hover{
  color: #fff;
  background: #00B9EF;
}
.shinsei{
	text-align: right;
	color: #FFFFFF;
	font-weight: normal;
	font-size: 70%;
	margin-right: 30px;
	}
	
	
}

ol  {
  position: relative;
  margin: 0;
  padding: 0
}
ol li  {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em
}
ol li span {
  position: absolute;
  left: 0;
  margin: 0
}

.att{
	border-bottom: 2px dotted #00B9EF;
}


.shinsei_syorui {
	margin: 16px auto;
	text-align: center;
	display: block;
}
.shinsei_syorui .text {
	text-align: left;
	display: inline-block;
}

#menu-btn-check {
    display: none;
}
@media screen and (max-width:1599px){
.menu-btn {
    position: fixed;
    top: 5px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 600;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #00B9EF;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background: #00B9EF;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #00B9EF;

}
#menu-btn-check {
    display: none;  
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50px!important;
    left: 0;
    z-index: 80;
    background-color: #02418E;
}
ul.menu-content{
    padding: 70px 10px 0;
} 
.menu-content ul {
    padding: 0;
}
ul.menu-content li,
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
ul.menu-content li{
padding: 10px 0;
color:#F5F963;
}
ul.menu-content li a{
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
} 
ul.menu-content li a:hover{
color: #00B9EF;
}
.menu-content ul li a {
color:#ABABAB;
border-top: none!important;
border-right: none!important;
 text-decoration: none!important;   
}
ul.menu-content li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content ul li a::before{
    border-top: none!important;
    border-right: none!important;
 text-decoration: none!important;   
}
.menu-content ul li a:hover{
color: #7e7e7e;
}

.menu-content {
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    background-color: #02418E;
    transition: all 0.5s;/*アニメーション設定*/
    z-index: 500;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
}