/*body*/
body {
	background-color: #ffffff;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

img {
	border: 0;
}

td {
	font-size: 12px;
	line-height: 18px;
}

a:link {
	text-decoration: none;
}
a:visited {
	text-decoration:none;
}
a:hover {
	color: #99cc00;text-decoration: underline;
}


/* Footer Setting */
.site-footer {
  position: fixed;        /* 画面に固定 */
  bottom: 0;              /* 常に下に配置 */
  left: 0;
  width: 100%;            /* 幅は常に100% */
  background: #f7f7f7;
  padding: 14px 20px 5px; /* ← 下だけ少し広めに */
  border-top: 1px solid #e1e1e1;
  z-index: 9999;          /* 他要素より前面に */
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copyright {
  display: block;
  width: 100%;
  font-size: 8px;   /* 小さめ */
  color: #666;
  margin-bottom: 12px; /* コピーライトの下だけ余白 */
  text-align: center;  /* コピーライトだけ中央寄せ */
}

/* フッター高さ分を本文に余白として確保 */
body {
  margin: 0;
  padding-bottom: 60px; /* フッターの高さに合わせて調整 */
}


/*Main*/
#Main {
	width: 100%;
	text-align:center;
	margin-left: auto;
	margin-right: auto;
}


/*headerTable*/
#headerTable {
	background-color: #990000;
}

#header {
	text-align: center;
}


/*tub navigation*/
.snav {
	width: 100%; /* ナビゲーションの幅 */
	padding-top: 15px; /* ナビゲーションの上パディング */
	background: #ffffff url(../img/header/title.gif) no-repeat fixed left top;
	border-bottom: 3px #990000 solid; /* 下枠線 */
	font-size: 80%;
}


/*tubmenuArea*/
.snav .nl {
	width: 99%; /* メニューの幅 */
	margin: 0 65%; /* メニューのマージン（上下、左右） */
	padding: 0;
	list-style-type: none;
	text-align: center;
}


/*tubmenuDetail*/
.snav .nl li {
	margin-right: 4px; /* タブの右マージン */
	background: #f9f9f9 url(../img/navi/tab_smenu_left_off.gif) no-repeat left top; /* タブの背景（左） */
	float: left;
}


/*tubmenuWidth*/
.snav .nl li.item1 {
	width: 4em;
}
.snav .nl li.item2 {
	width: 4em;
}
.snav .nl li.item3 {
	width: 4em;
}
.snav .nl li.item4 {
	width: 4em;
}
.snav .nl li.item5 {
	width: 4em;
}
.snav .nl li.item6 {
	width: 4em;
}
.snav .nl li.item7 {
	width: 6em;
}



/*tubmenuLinks*/
.snav .nl li a {
	display: block;
	padding: 6px 2px 5px 2px; /* リンクエリアのパディング（上右下左） */
	background: url(../img/navi/tab_smenu_right_off.gif) no-repeat right top; /* タブの背景（右） */
	text-decoration: none; /* テキストの下線（なし） */
}


/*tubmenuPointer*/
.snav .nl li a:hover {
	text-decoration: underline; /* テキストの下線（あり） */
}


/*tubmenuActive*/
.snav .nl li.active {
	background: #004080 url(../img/navi/tab_smenu_left_on.gif) no-repeat left top; /* タブの背景（左） */
}
.snav .nl li.active a {
	background: url(../img/navi/tab_smenu_right_on.gif) no-repeat right top; /* タブの背景（右） */
	color: #ffffff; /* アクティブタブの文字色 */
}


/*navigationBar*/
.nav {
	width: 100%;
	background-color: #f9f9f9;
	border-top: 1px #cccccc solid;
	border-bottom: 1px #cccccc solid;
	font-size: 80%;
	position: fixed;   /* 上部固定 */
	top: 0;
	left: 0;
	z-index: 9999;
}

/*mainmenuArea*/
.nav .nl {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
	background-color: #ffffff;
	border-right: 1px #cccccc solid;
	list-style-type: none;
	text-align: center;
	display: flex;
	flex-wrap: wrap;          /* 幅が狭いときに折り返し */
	justify-content: center;  /* 均等に並べる */
}

/*mainmenuDetail*/
.nav .nl li {
	flex: 1 1 120px;    /* 最小120pxで、余った幅をシェア */
	box-sizing: border-box;
}

/*mainmenuLinks*/
.nav .nl li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	white-space: nowrap;   /* 改行を防止 */
	height: 42px;          /* 高さ統一 */
	background: url(../img/navi/menu_bar_off.gif) repeat-x bottom;
	border-left: 1px #cccccc solid;
	text-decoration: none;
	box-sizing: border-box;
}

/*hover時*/
.nav .nl li a:hover {
	background: url(../img/navi/menu_bar_on.gif) repeat-x bottom;
}

/*clearfix*/
.clearFix:after {
	content: ".";
	display: block;
	height: 0;
	clear: left;
	visibility: hidden;
}
.clearFix {
	min-height: 1px;
}

/* 固定ナビで本文が隠れないように余白を追加 */
body {
	padding-top: 60px;  /* ナビの高さ分 */
}

/* --- タブレット用調整 --- */
@media screen and (max-width: 768px) {
	.nav .nl {
		max-width: 100%;
	}

	.nav .nl li {
		flex: 1 1 45%;   /* 2列に分ける */
	}

	.nav .nl li a {
		height: 50px;   /* 指でも押しやすい高さに少し拡大 */
		font-size: 90%; /* 文字を少し大きめ */
	}
}



/*mainTable*/
.mainTable {
	padding-top: 4px;
	background-color: #FFFFFF;
	text-align: center;
	vertical-align: top;
}


/*border kuuki*/
.border1 {
	margin: 0px;
	padding: 0px;
	height: 10px;
	width: 100%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #006600;
	border-right-color: #006600;
	background-color: #006600;
}


/*border yousi*/
.border2 {
	margin: 0px;
	padding: 0px;
	height: 10px;
	width: 100%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #003366;
	border-right-color: #003366;
	background-color: #003366;
}


/*border computer*/
.border3 {
	margin: 0px;
	padding: 0px;
	height: 10px;
	width: 100%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #660066;
	border-right-color: #660066;
	background-color: #660066;
}


/*border index*/
.border4 {
	margin: 0px;
	padding: 0px;
	height: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #990000;
	border-right-color: #990000;
	background-color: #990000;
}


/*topicPath*/
.topicPath {
margin: 0px 10px;
padding: 0;
list-style-type: none;
font-size: 80%;
}

/*topicPathArea*/
.topicPath li {
display: inline;
}

/*topicPathLinks*/
.topicPath li a {
padding-right: 12px; /* リンクエリアの右パディング */
background: url(../img/navi/path1.gif) no-repeat right; /* 区切りの記号 */
}


/*contentList*/
.list1 {
list-style-type: decimal;
}
.list2 {
list-style-type: square;
}
.list3 {
list-style-type: disc;
}


/*footer*/
#footer {
	text-align:left;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
	padding-bottom: 15px ;
	padding-top: 50px ;
}

#footer td {
	vertical-align: bottom;
}


/*txt img setting*/

.subTitle {
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	color: #444444;
	padding: 5px 10px;
	width: 98%;
	margin-top: 0px;
	margin-bottom: 10px;
	background-color: #e3f0fd;
	border-color: #0066cc;
	border-width: 0 0 2px 0;
	border-style: solid;
	clear: both;
}


strong.s_use {
	font-weight: bold;
	color: #F58220;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 20px;
}

.ms_midashi {
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 5px;
	width: 533px;
	margin-top: 5px;
	margin-bottom: 10px;
	background-color: #666666;
	clear: both;
}

.ms_description {
	background-color: #EDDFFC;
	padding: 10px;
	color: #333333;
}

.ms_img {

	padding-left: 25px;
	padding-right: 35px;
	text-align: center;
}

.ms_add {
	text-align: left;
	vertical-align: top;
}

.ms_top {
	text-align: right;
	margin-right: 0px;
	margin-left: auto;
}

.img_left {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.img_center {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

.img_right {
	float: right;
	margin-left: 20px;
	margin-bottom: 10px;
}


/*noc*/
#sn_noc01 {
	margin: 10px;
}

#sn_noc01 td {
	padding: 3px;
}

#sn_noc01 td {
	border-bottom: 1px solid #666666;
	border-right: 1px solid #666666;
}

#sn_noc01 table {
	border-top: 1px solid #666666;
	border-left: 1px solid #666666;
}
.p10 {
	font-size: 10px;
	line-height: 14px;
}
.p12 {
	font-size: 12px;
	line-height: 16px;
}
.p14 {
	font-size: 14px;
	line-height: 20px;
}
.p14_bk {
	font-size: 14px;
	line-height: 20px;
	color: #000000
}
.b_p14 {
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
}
.P {
	text-indent: 1em;
}
