@charset "UTF-8";
 
img{width:100%;}
 
/*ロゴの大きさを調整*/
#logo img {
  max-width:50%;
}
 
nav{
 width: 100%;
 height: 70px;
 position: relative;
 /*background: #F6F6F6;*/
}
 
.drawer{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 position: relative;
 height: 70px;
 padding: 0 1em;
}
 
/*ナビゲーション部分*/
 
.menu ul li a {
display:block;
  font-weight:bold;
padding: 0.5em 2em;
border-bottom: 1px dotted #CCC;
  color:#fff;
  text-decoration:none;
}
 

.menu ul li.g-icon{
border-bottom: 1px dotted #CCC;
}
 
.menu ul li a:hover
{background-color:rgba(0,0,0,0.5);
color:#FFA500;}
 
 
.menu{
 
  text-align:center;
  background-color:rgba(0,0,0,0.6);
  transition: 0.5s ease;/*滑らかに表示*/
  -webkit-transform: translateX(100%);/*画面より100%外へ押し出し非表示にさせる*/
 
/*  transform: translateX(-100%);/*右から出す場合は、マイナス100%としてください*/
 
}
 
/*OPEN時の動き*/
.menu.open {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*メニューを元の位置へ戻す*/
 
}
 
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
  right:15px;
    top: 10px;
    
    background:#000DF2;
    border-radius: 50%;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 20px;
  right:12px;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
 
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    /*top:12px;*/
    top:12px;
}
 .Toggle span:nth-child(2) {
    /*top: 25px;*/
    top: 20px;
}
 .Toggle span:nth-child(3) {
    top: 28px;
}
.Toggle.active span:nth-child(1) {
    top: 20px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
 

/*---------------------------------------------*/
@media screen and (min-width: 860px) {
 
.drawer{
    margin-bottom: 50px;
}
.Toggle {
    top: 40px;
}
}


@media screen and (min-width: 600px) {
    
.menu ul{
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
.menu ul li{
	float:left;
	display:table-cell;
border-bottom: 1px dotted #CCC;
}
	
.menu ul li:nth-child(odd){
    width : -webkit-calc( 50% - 1px );
    width : calc( 50% - 1px );
border-right: 1px dotted #CCC;
}
.menu ul li:nth-child(even){
    width : 50%;
}

.menu ul li.g-icon{
    width : 100%;
border-right: none;
border-bottom: 1px dotted #CCC;
}
 
.menu ul li a {
border-bottom: none;
padding: 1em 2em;
}
}



/*----------------------------------ここからPCモニターの記述-----------*/
@media screen and (min-width: 1100px) {
 
/*ロゴの大きさを調整*/
#logo img{max-width:250px;}	
	
nav{
 display: flex;
}
 
.Toggle{
 display: none;
}
.menu{
width : -webkit-calc( 100% - 300px );
width : calc( 100% - 300px );
font-size:12px;
background-color: transparent;
margin:20px 0 0 0;
-webkit-transform: translateX(0);
transform: translateX(0);
}
.menu ul{
 height: 50px;
    padding: 0 30px 0 0;
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-end;
 /*align-items: center;*/
}

.menu ul li{
	float:left;
	display:table-cell;
border-bottom: none;
}
	
.menu ul li:nth-child(odd){
    width : auto;
border-right: none;
}
.menu ul li:nth-child(even){
    width :  auto;
}
	
.menu ul li a{
 padding: 0 1em;
 border-bottom: none;
}
.menu ul li a:hover{
background-color:transparent;
}
    

.menu ul li.g-icon{
 border-bottom: none;
}
}



.menu ul li.g-icon{
 display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul li.g-icon a{
 border-bottom: none;
}
 
.menu ul li a:hover
{background-color:rgba(0,0,0,0);
color:#FFA500;}
	



.menu ul li .nav-foot
{
	margin: 0 0 0 0 ;
	padding: 10px 0 10px 40px;
	display: block ;
	text-align: center ;
}
@media screen and (max-width: 1099px) {
.menu ul li .nav-foot
{
	margin: 0 0 0 0 ;
	padding: 10px 0 10px 0;
	display: block ;
	text-align: center ;
}
}
.menu ul li .nav-foot a.move-nav-foot
{
	padding: 5px 11px;
    border-radius: 50%;
	background: #00DC3E;

	text-align: center ;
	color: #fff ;
    text-decoration: underline;
    text-decoration-thickness: 2px;

	-webkit-transition:all 0.3s ;
	-moz-transition:all 0.3s ;
	transition:all 0.3s ;
	
	cursor: pointer;
}
@media screen and (max-width: 1099px) {
.menu ul li .nav-foot
{
	margin: 0 0 0 0 ;
	padding: 10px 0 10px 0;
	display: block ;
	text-align: center ;
}
.menu ul li .nav-foot a.move-nav-foot
{
	padding: 5px 13px;
}
}



 
/*トグルボタンのスタイルを指定*/
.Toggle-m {
    display: block;
    position: relative;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    
    background:#000DF2;
    border-radius: 50%;
    margin: 0 0 0 40px;
}
 
.Toggle-m span {
    display: block;
    position: absolute;
    width: 20px;
  right:11px;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
 
}
 /*各ボーダー少しずつずらす*/
.Toggle-m span:nth-child(1) {
    top: 20px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle-m span:nth-child(2) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (min-width: 1100px) {
.Toggle-m{
 display: none;
}
}
    
	