@charset "UTF-8";

/* グローバルメニュー */
#global_navi 
ul {
	list-style-type: none;
	background-color: #770000;
	display: flex;
	border-left: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
        margin: 0 auto;
    padding-left: 7px;
}

#global_navi 
ul li {
	border-right: 1px solid #cccccc;
	display: block;
	padding: 3px 20px;
	font-weight: bold;
	color: #ffffff;
        text-align: center;
}

#global_navi 
 a {
	text-decoration: none;
	color: #ffffff;
}

/* レスポンシブ用CSS */
@media screen and (max-width:599px) {
    /* 自分で設定したコマンド */
#global_navi 
ul {
	display: none;
}
}
    
/* 自分で設定したPCでは非表示にするコマンド */
#nav-content
ul {
	display: none;
}
#nav-input
 {
	display: none;
}
/* 自分で設定したPCでは非表示にするコマンド ここまで */
    
    
/*ヘッダーまわりはサイトに合わせて調整してください*/
#nav-drawer {
  position: relative;
}

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

/*アイコンのスペース PCでは非表示に*/
#nav-open {
  display: none;
  width: 30px;
  height: 22px;
  vertical-align: middle;
        margin-top: 10px;
    margin-left: 15px;
}

/* レスポンシブ用CSS  ハンバーガーを表示*/
@media screen and (max-width:599px) {
    
#nav-open {
  display: inline-block;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  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: 65%;
  background: #F0F8FF;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 85%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 400px;/*最大幅（調整してください）*/
  height: 75%;
  background: #770000;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}
        /* ナビの中身 自作 */
    #nav-content 
   ul {
	display: inline-block;
	list-style-type: none;
    margin-top: 15px;
    }
    
    #nav-content 
    li {
        	font-size: 14pt;
        padding: 10px 60px;
    font-weight: bold;

    }
    
    #nav-content 
a {
	text-decoration: none;
    color: #ffffff;
}
            /* ナビの中身 自作 ここまで */
    
/*チェックが入ったらもろもろ表示*/
#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);
}
}


/* ページ上のローカルナビゲーション水色 */
#local_nav
ul {
    	text-align: center;
	list-style-type: none;
	margin: 8px 0;
    padding: 0;
}

#local_nav
li {
	display: inline-block;
	background: #ccFFFF;
	width: 	150px;
	height: 28px;
	padding: 10px 1px 0;
	margin: 1px 0;
	font-size: 12pt; 
	font-weight: bold; 
	border-bottom: 2px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
}
#local_nav
 a{
	text-decoration: none;
}

/* ▼画面サイズ（横幅）が599px以下の場合に適用 */
@media screen and (max-width: 599px) {
#local_nav
ul { 
    margin: 0.5rem 0;
}
#local_nav
    li{
            margin: 0.3rem 0;
        padding: 0.8rem 0 0;
    }
}
/* ▲画面サイズ（横幅）が599px以下の場合に適用 */


.list1st { color: #708090 ;}


/* ページ上のローカルナビゲーション黄色 ２番目の階層 */
#localnav_yl
ul {
    text-align: center;
	list-style-type: none;
	padding-left: 0;
	margin: 8px 0 30px 0;
}
#localnav_yl
li {
	background: #ffffbb;
	width: 	150px;
	height: 28px;
	padding: 10px 4px 0;
	margin: 3px 0;
	font-size:12pt; 
	font-weight: bold; 
	border-bottom: 2px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
}
#localnav_yl
 li {
	display: inline-block;
}
#localnav_yl
a{
	text-decoration: none;
}

/* ▼画面サイズ（横幅）が599px以下の場合に適用 */
@media screen and (max-width: 599px) {
#localnav_yl
ul { 
    margin: 0.5rem 0 1.8rem;
}
#localnav_yl
    li{
            margin: 0.3rem 0;
        padding: 0.8rem 0 0;
    }
}
/* ▲画面サイズ（横幅）が599px以下の場合に適用 */


.page_nav	/* 言断ページを移動するナビ */
ul {
  list-style: none;
}
.page_navlist
li {	
  	display: inline-block;
	border: 2px solid #cccccc;
	margin: 5px;
	padding: 2px 2px;
	font-size: 12pt;
}
.page_nav
a { 
	text-decoration: none;}



/* ページ下のナビゲーション */
.navi_home2cell 
ul {
	list-style-type: none;
	padding-left: 0;
	border-left: 0px solid #cccccc;
}

.navi_home2cell 
li {
	background: #E6E6FA;
	width: 300px;
	height: 22px;
	padding: 5px;
	margin: 15px;
	text-align:center;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	font-size:12pt; 
}

.navi_home2cell 
 {
	display: table;
	margin: auto;
}

.navi_home2cell 
li {
	display: table-cell;
}


.navi_home3cell 
ul {
	list-style-type: none;
	padding-left: 0;
	border-left: 0px solid #cccccc;
}

.navi_home3cell 
li {
	background: #E6E6FA;
	width: 225px;
	height: 22px;
	padding: 5px;
	margin: 15px;
	text-align:center;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	font-size:12pt; 
}

.navi_home3cell 
 {
	display: table;
	margin: auto;
}

.navi_home3cell 
 li {
	display: table-cell;
}


.navi_home4cell 
ul {
	list-style-type: none;
	padding-left: 0;
	border-left: 0px solid #cccccc;
}

.navi_home4cell 
li {
	background: #E6E6FA;
	width: 160px;
	height: 22px;
	padding: 5px;
	margin: 15px;
	text-align:center;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	font-size:12pt; 
}

.navi_home4cell 
 {
	display: table;
	margin: auto;
}

.navi_home4cell 
li {
	display: table-cell;
}


/* 右サイドバー装飾用CSS */
.side_r 	/* 赤ふせん型サイドナビ */
ul {
	margin-top: 0.2em;
	margin-bottom: 1.0em;
    padding-left: 0.2em;
}
.side_r 
li {
	font-weight: bold;
	padding: 0.8em 0.5em;
	list-style-type: none;
	background-color:#fffafa;
	border-top: 0px solid #AAAAAA; /*ふせん*/
	border-right: 1px solid #AAAAAA;
	border-bottom: 1px solid #AAAAAA;
	border-left:8px solid #d10000;
	margin-bottom: 3px;
}
.side_r 
 a {
	text-decoration:none;
}

.side_b		/* 青ふせん型サイドナビ */
ul {
	margin-top: 0.2em;
	margin-bottom: 1.0em;
    padding-left: 0.2em;
}
.side_b 
li {
	font-weight: bold;
	padding: 0.8em 0.5em;
	list-style-type: none;
	background-color:#fffafa;
	border-top: 0px solid #AAAAAA; /*ふせん*/
	border-right: 1px solid #AAAAAA;
	border-bottom: 1px solid #AAAAAA;
	border-left:8px solid blue;
	margin-bottom: 3px;
}
.side_b 
 a {
	text-decoration:none;
}

.side_g 	/* 緑ふせん型サイドナビ */
ul {
	margin-top: 0.2em;
	margin-bottom: 1.0em;
    padding-left: 0.2em;
}
.side_g 
li {
	font-weight: bold;
	padding: 0.8em 0.5em;
	list-style-type: none;
	background-color:#fffafa;
	border-top: 0px solid #AAAAAA; /*ふせん*/
	border-right: 1px solid #AAAAAA;
	border-bottom: 1px solid #AAAAAA;
	border-left:8px solid #32cd32;
	margin-bottom: 3px;
}
.side_g 
 a {
	text-decoration:none;
}


.side_y 	/* 黄色ふせん型サイドナビ */
ul {
	margin-top: 0.2em;
	margin-bottom: 1.0em;
    padding-left: 0.2em;
}
.side_y  
li {
	font-weight: bold;
	padding: 0.8em 0.5em;
	list-style-type: none;
	background-color:#fffafa;
	border-top: 0px solid #AAAAAA; /*ふせん*/
	border-right: 1px solid #AAAAAA;
	border-bottom: 1px solid #AAAAAA;
	border-left:8px solid #ffff00;
	margin-bottom: 3px;
}
.side_y 
 a {
	text-decoration:none;
}


/* お知らせBox */
.side_box {
	border: 2px solid #E6E6FA;
	background-color:#ffffff;
	margin: 0 0.1em 1.2em 0;
    padding-bottom: 0.5em;
}


.side_box h2 {
	text-align:center;
	font-size: 1.0em;
	line-height:1.6em;
	margin: 0 0 10px;
	padding: 0px 5px;
	border: 1px solid  #cdcdcd;
	background-color: #E6E6FA;
}

.side_box p {
	font-size: 13pt;
    	line-height:1.5em;
	margin: 0.2em 0.5em;

	}


/* フッター 領域 */

#upperfooter {
	background-color: #E6E6FA
}
#upperfooter li {
    flex-grow: 1;
    flex-basis: auto;
    font-size: 11pt;
        padding: 0 ;
    line-height: 0.5rem;
}
footer nav {
    width: 80%;
    margin: 0 auto;
}

#upperfooter  > .contentWrapper {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding: 1px 0;
}
#upperfooter > .contentWrapper 
ul {
        margin: 15px auto;
    list-style-type: none;
}


/* ▼画面サイズ（横幅）が599px以下の場合に適用 */
@media screen and (max-width: 599px) 
{
#upperfooter .contentWrapper,footer nav {
            width: 100%;
}
#upperfooter li {
            flex-grow: 1;
            flex-basis: auto;
        padding: 1.0rem 0;
        font-size: 12pt;
}
}
/* ▲画面サイズ（横幅）が599px以下の場合に適用 */


#bottomfooter {
	background-color: #770000;
    text-align: center;
        padding: 0.6rem 0;
}
#bottomfooter
small {
	color: #ffffff;

}
#bottomfooter
 a {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}
#bottomfooter
 address {
	color: #FFFFFF;	    	/* 文字の色 */
	line-height: 0.5rem;
	font-size: 11pt;
     padding: 0.8rem 0.2rem;
}

/* ▼画面サイズ（横幅）が599px以下の場合に適用 */
@media screen and (max-width: 599px) {
#bottomfooter address {
    line-height: 1.5rem;
}
}
/* ▲画面サイズ（横幅）が599px以下の場合に適用 */


/*** adjust parts ***/
.flex {
    display: flex;
}
/* ▼画面サイズ（横幅）が599px以下の場合に適用 */
@media screen and (max-width: 599px) 
{
.flex {
    display: block;
}
}

/*** adjust parts 使っていないかも ***/
.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

