@charset "utf-8";
html {
  scroll-behavior: smooth;
}


/**　【SP】header内　***********************************************************************************/
/**　ドロワーメニュー　ここから　******************************************/
/*ヘッダーまわりはご自由に*/
#nav-drawer {
    display: inline-block;
    position: relative;
    padding: 11px 12px 8px 17px;
    margin: 0 80% 0 0;
    background: #204DA0;
        /** 角丸 ******************************/
    border-radius: 50px;        /* CSS3草案 */  
    -webkit-border-radius: 50px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 50px;   /* Firefox用 */  
        /** 半透明（背景のみ） ******************************/
	background-color: rgba( 32, 81, 160, 0.40 );
	color: #1B1464;
/*********************
0が「完全に透明」　1が「完全に不透明」で、小数を使って不透明割合を指定
「55％不透明(＝45％透明)」
**********************/
}

#nav-drawer p.menu {
    display: block;
    font-size: 11px;
    color: #ffffff;
    padding: 0;
    margin: 0 0 0 -3px;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}


/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;/*線の太さ*/
    width: 25px;/*長さ*/
    border-radius: 3px;
    background: #FFFFFF;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 85%;/*右側に隙間を作る*/
    max-width: 90%;/*最大幅*/
    height: 100%;
    background: #ffffff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/}


/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}



#nav-content p.okclogo {
    width: 100%;
    margin: 0;
    padding: 0;
}


#nav-content p.title {
    float: left;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 20px 0 5px 20px;
    padding: 0;
    letter-spacing: normal;
}


/***********************************/
#nav-content ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    clear: both;
}

#nav-content ul.top {
    margin: 0 0 20px;
    border-top: 2px solid #D1DEF8;
    padding: 0;
    list-style-type: none;
}


#nav-content ul.middle {
    overflow: hidden;
    padding: 0;
    list-style-type: none;
}


#nav-content ul.info {
    margin: 20px 0 0;
    border-top: 2px solid #D1DEF8;
    padding: 0;
    list-style-type: none;

}


/***********************************/
#nav-content li {
    list-style-type: none;
}

#nav-content li a {
    display: block;
    font-size: 14px;
    color: #000000;
    padding: 9px 0 6px;
    list-style-type: none;
    text-decoration:  none;
    border-bottom: 1px solid #eeeeee;
 /** マウスオーバー（ふわっと切換える） ******************************/
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;}   


/*******************************************/
#nav-content ul.top li a:before {
    content: "●";
    color: #4CA5FF;
    margin: 0 5px 0 20px;
 /** マウスオーバー（ふわっと切換える） ******************************/
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}   


#nav-content ul.info li a:before {
    content: "●";
    color: #1F4C9F;
    margin: 0 10px 0 20px;
 /** マウスオーバー（ふわっと切換える） ******************************/
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}   


#nav-content ul li a:hover {
    background: #D7D7D7;
}
#nav-content ul li a:hover:before {
    color: #F3F900;
}


/*******************************************/

#nav-content ul.middle li {
    text-align: center;
}


#nav-content ul.middle li a {
    float: left;
    width: 50%;
    padding: 15px 0;
    color: #FFFFFF;
}


#nav-content ul.middle li.botton01 a {
    background: #00B050;
    border-bottom: 0px solid #FFFFFF;
}
#nav-content ul.middle li.botton02 a {
    background: #00B0F0;
    border-bottom: 0px solid #FFFFFF;
}
#nav-content ul.middle li.botton03 a {
    background: #FF7373;
    border-bottom: 0px solid #FFFFFF;
}
#nav-content ul.middle li.botton04 a {
    background: #B973FF;
    border-bottom: 0px solid #FFFFFF;
}
#nav-content ul.middle li.botton05 a { 
    background: #265CFF;
    border-bottom: 0px solid #FFFFFF;
}
#nav-content ul.middle li.botton06 a {
    background: #FF9326;
    border-bottom: 0px solid #FFFFFF;
}

#nav-content ul.middle li a:hover {
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
/*********************
『filter:alpha(opacity=50);』--【IE】/ 透過無しの状態"100%"を指定する際は「filter:alpha(opacity=100);」。
『-moz-opacity: 0.5;』--【Firefox（Mozilla）】/ 透過無しの状態"100%"を指定する際は「-moz-opacity:1;」。
『opacity: 0.5;』--【SafariやOpera】/ 透過無しの状態"100%"を指定する際は「opacity:1;」。
**********************/
}

#nav-content p.last {
    font-size: 18px;
    color: #1F4D9F;
    line-height: 150%;
    text-align: center;
    border-bottom: 10px solid #AC0000;
    margin: 50px 0 0;
    padding: 0;
}
/**　ドロワーメニュー ここまで　*******************************************/
/**************************************************************************/


/**　メニュー（ヘッダー内）　**********/
/*****************************************************/



