/*

	GalleryView Stylesheet

	Use the CSS rules below to modify the look of your gallery.

	To create additional rules, use the markup below as a guide to GalleryView's architecture.
	NOTE - The markup below represents the DOM generated by the GalleryView plugin, NOT the markup you would include in your HTML file.
		   Refer to README.txt to review markup requirements.

	<div class="gallery">
		<div class="panel">
			<img src="path/to/image.jpg" />
			<div class="panel-overlay">
				...overlay content...
			</div>
			<div class="overlay-background"></div>
		</div>
		<ul class="filmstrip">
			<li class="frame current">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
			<li class="frame">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
		</ul>
	</div>


*/

/* GALLERY LIST */

/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */

#photos {
  visibility: hidden;
}

/* GALLERY CONTAINER */

.gallery {
  background: none !important;
  border: none !important;
  padding: 0;
  height: 220px !important;
  margin: 0 auto !important;
}

/* LOADING BOX */

/*.loader {
  background: url(/n/common/css/loader.gif) center center no-repeat #ddd;
}*/

/* GALLERY PANELS */

/* DEFINE HEIGHT OF PANEL OVERLAY */

/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */

.panel .panel-overlay,
.panel .overlay-background {
  height: 60px;
  padding: 0 1em;
}

/* PANEL OVERLAY BACKGROUND */

.panel .overlay-background {
  background: #222;
}

/* PANEL OVERLAY CONTENT */

.panel .panel-overlay {
  color: white;
  font-size: 0.7em;
}

.panel .panel-overlay a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}

.nav-next {
  z-index: 101;
}

.nav-prev {
  z-index: 101;
}

#pointer {
  border: #6AB547 3px solid !important;
  position: absolute;
  z-index: 200;
  cursor: pointer;
  top: 230px !important;
  left: 48px !important;
  height: 40px !important;
  width: 212px !important;
}

#pointer img {
  left: 86px !important;
}

/* FILMSTRIP */

.

.filmstrip {
  margin: 10px;
  background: none!important;
}

/* FILMSTRIP FRAMES (contains both images and captions) */

/* WRAPPER FOR FILMSTRIP IMAGES */

.frame .img_wrap {
  border: 1px solid #aaa;
}

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */

.frame.current .img_wrap {
  border-color: #000;
}

/* FRAME IMAGES */

.frame img {
  border: none;
}

/* FRAME CAPTION */

.frame .caption {
  font-size: 11px;
  text-align: center;
  color: #888;
}

/* CURRENT FRAME CAPTION */

.frame.current .caption {
  color: #000;
}

/* POINTER FOR CURRENT FRAME */

.pointer {
  border-color: #000;
}

/* TRANSPARENT BORDER FIX FOR IE6 */

/* NOTE - DO NOT CHANGE THIS RULE */

*html .pointer {
  filter: chroma(color=pink);
}

@charset "utf-8";

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

div {
  box-sizing: border-box;
}

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

a[href^="tel:"] { 
  cursor: default;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
}

td,
th {
  padding: 0;
}

/* reset
------------------------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
}

a {
  color: #3366CC;
}

a:hover {
  color: #666;
  text-decoration: none;
}

@charset "utf-8";

/* ===================================================================
CSS information

 file name  :print.css
 style info :印刷用
=================================================================== */

@media print {
  *html body {
    zoom: 70%;
  }

  *html #main #special .item {
    /* トップページ メインビジュアル下 ３つの枠の並び */
    margin-right: 10px;
  }

  *+html #main #special .item {
    /* トップページ メインビジュアル下 ３つの枠の並び */
    margin-right: 10px;
  }

  .page-top {
    display: none;
  }
}

.waSlideMenu-nav {
  position: relative;
  overflow: hidden;
}

.waSlideMenu-wrapper {
  left: 0;
  position: relative;
  top: 0;
}

.waSlideMenu-menu {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inherit;
  left: 0;
}

.waSlideMenu-inheritedmenu {
  position: absolute;
  left: 100%;
  top: 0;
}

.waSlideMenu-loading {
  height: 31px;
  width: 31px;
  display: block;
}
/* ===================================================================
CSS information

 file name  :finance.css
 style info :/n/finance/ 以下

=================================================================== */

#page-finance #main .backBtn {
  text-align: right;
}

#page-finance .result_attr_str1_6 {
  background-color: #ddffdd;
  margin: 2px;
  padding: 3px;
}

#page-finance .search_result_attr {
  margin: 6px 0;
}

#page-finance .result_attr_str1_7 {
  background-color: #ddffdd;
  margin: 2px;
  padding: 3px;
}

#page-finance #main #searchBox {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
}

#page-finance #keywordSearch {
  overflow: hidden;
}

#page-finance #keywordSearch dt {
  float: left;
  width: 610px;
  height: 26px;
  padding: 3px 0;
  background: #fff;
  border: 1px solid #ccc;
}

#page-finance #keywordSearch dt input {
  width: 98%;
  height: 26px;
  padding: 0;
  border: none;
  vertical-align: middle;
  background: none;
}

#page-finance #keywordSearch dd {
  float: left;
  width: 70px;
  height: 34px;
  margin-left: 5px;
}

#page-finance #keywordSearch dd input {
  height: 34px;
  border: 0;
  vertical-align: middle;
}

#page-finance #categorySearch {
  overflow: hidden;
  margin-top: 20px;
}

#page-finance #categorySearch dt {
  font-weight: bold;
}



#page-finance #categorySearch dd ul {
  overflow: hidden;
  margin-left: 0;
  margin-top: 10px;
  width: 500px;
}

#page-finance #categorySearch dd ul li {
  float: left;
  width: 160px;
  font-size: 85%;
  margin-bottom: 5px;
  list-style-type: none;
}

#page-finance #categorySearch dd ul li input {
  vertical-align: middle;
}

#page-finance #categorySearch dd ul li label {
  margin-left: 5px;
  margin-right: 0;
}

/* purposeSearch */

#page-finance #purposeSearch {
  overflow: hidden;
  margin-top: 20px;
}

#page-finance #purposeSearch dt {
  font-weight: bold;
}



#page-finance #purposeSearch dd ul {
  overflow: hidden;
  margin-left: 0;
  margin-top: 10px;
}

#page-finance #purposeSearch dd ul li {
  float: left;
  width: 50%;
  font-size: 85%;
  margin-bottom: 5px;
  list-style-type: none;
}

#page-finance #purposeSearch dd ul li input {
  vertical-align: middle;
}

#page-finance #purposeSearch dd ul li label {
  margin-left: 5px;
  margin-right: 0;
}

#page-finance #main ul#useMenu {
  overflow: hidden;
  margin-left: -1%;
}

#page-finance #main ul#useMenu li {
  list-style-type: none;
  float: left;
  width: 24%;
  margin-left: 1%;
  margin-bottom: 1%;
}

/* =SearchResult
----------------------------------------------- */

#page-finance .search_result_head {
  padding: 4px 6px;
  margin-bottom: 4px;
  font-size: 110%;
  background-color: #E6E6E6;
}

#page-finance .search_pagelink {
  padding: 8px 0 8px 2px;
}

#page-finance .search_title {
  background: #483D8B;
  color: #f5f5f5;
  padding: 5px;
  text-align: left;
  font-weight: bold;
}

#page-finance .search_c_title {
  background-color: #E6E6FA;
  font-size: 104%;
  padding: 5px;
  word-break: break-all;
}

#page-finance .search_c_title a:link,
#page-finance .search_c_title a:active,
#page-finance .search_c_title a:visited {
  color: #333399;
}

#page-finance .search_c_title a:hover {
  color: #3300FF;
}

#page-finance .search_date {
  float: right;
  padding-top: 5px;
  padding-right: 3px;
  font-size: 85%;
}

#page-finance .emphasis {
  background: #ffd7a6;
}

#page-finance #search_result {
  padding: 4px;
  margin: 5px 0 0;
  text-align: left;
}

#page-finance #search_body {
  background-color: #FFFAF0;
}

#page-finance .search_c_body {
  padding: 13px 4px 4px 13px;
}

#page-finance .search_summary {
  word-break: break-all;
}

#page-finance .search_result_innerImage {
  padding: 5px;
}

#page-finance .search_c_footer {
  clear: both;
  font-size: 90%;
  color: #666666;
  padding: 8px 0 17px 12px;
  word-break: break-all;
  /*margin-bottom:17px;*/
}

#page-finance .pdffile {
  font-size: 70%;
  font-weight: bold;
}

#page-finance .search_title {
  background: #008500 !important;
  color: #ffffff !important;
  display: none;
}

#page-finance .search_c_title {
  background: #f1f5ef !important;
}

#page-finance .search_c_title a {
  color: #008500 !important;
}

#page-finance .search_body {
  background: #FFFFFF !important;
  color: #000000 !important;
}

#page-finance .emphasis {
  background: #ccffcc !important;
}

#page-finance .search_c_footer a:link,
.search_c_footer a:visited,
.search_c_footer a:hover,
.search_c_footer a:active {
  color: #0071BC !important;
}

/* =Thumbnail
----------------------------------------------- */

#page-finance .photo {
  float: left !important;
  width: 96px !important;
  position: relative;
  top: 0;
  left: 0;
}

#page-finance .photo a .small {
  width: 160px;
  height: 120px;
  border: 1px solid #c0c0c0;
}

#page-finance .photo a .large {
  display: none;
  position: absolute;
  border: 0;
  width: 0px;
  height: 0px;
  top: 0;
  left: 0;
}

#page-finance .photo a .largebk {
  position: absolute;
  width: 0px;
  height: 0px;
  top: 0;
  left: 0;
}

#page-finance .photo a.popup,
#page-finance .photo a.popup:visited {
  display: block;
  width: 162px;
  top: 0;
  left: 0;
}

#page-finance .photo a.popup:hover {
  background-color: #fff;
}

#page-finance .photo a.popup:hover .largebk {
  display: block;
  position: absolute;
  width: 414px;
  height: 314px;
  top: -80px;
  left: 170px;
  border: 1px solid #ddd;
}

#page-finance .photo a.popup:hover .large {
  display: block;
  position: absolute;
  width: 352px;
  height: 264px;
  top: 15px;
  left: 30px;
}

#page-finance .photo_left {
  z-index: 6;
}

#page-finance .photo_summary {
  margin-left: 205px;
  z-index: 1;
}

#page-finance .photo_summary .photo a .small {
  border-right: 2px solid #606060;
}

#page-finance .photo_summary .photo_1 {
  z-index: 5;
}

#page-finance .photo_summary .photo_2 {
  z-index: 4;
}

#page-finance .photo_summary .photo_3 {
  z-index: 3;
  _margin-left: -60px;
}

#page-finance .photo_summary .photo_4 {
  z-index: 2;
  _margin-left: -60px;
}

#page-finance .photo_summary .photo_5 {
  z-index: 1;
  _margin-left: -60px;
}
@charset "utf-8";

/* ===================================================================
CSS information

 file name  :module-e.css
 style info :英語ページ共通（ヘッダー、フッター）
=================================================================== */

/*----------------------------------------------------
	基本設定、リンクカラーなど
----------------------------------------------------*/

body#page-english {
  background-image: url(/n/common/img/bg-header-e.gif);
  background-repeat: repeat-x;
  background-position: 0 101px;
  background-color: #fff;
  font-size: .875em;
  /* 14 / 16 = .875 */
  font-family: "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  color: #000;
  line-height: 1.5;
}

/* -----------------------------------------------------------
	#page-english #header
		ヘッダー
----------------------------------------------------------- */

#page-english #header {
  position: relative;
  height: 91px;
  margin-bottom: 10px;
}

#page-english #header .ci {
  position: absolute;
  top: 15px;
  left: 0;
}

#page-english #header #utility {
  position: absolute;
  top: 34px;
  left: 580px;
  width: 200px;
  font-size: .857143em;
}

#page-english #header #styleswitch {
  position: absolute;
  top: 29px;
  left: 826px;
  width: 130px;
  height: 28px;
}

#page-english #header #styleswitch dl {
  float: right;
}

#page-english #header #styleswitch dl dt,
#page-english #header #styleswitch dl dd {
  float: left;
}

#page-english #header #styleswitch dl dt {
  display: inline;
  margin-right: 4px;
}

#page-english #header #styleswitch dl dd {
  width: 24px;
  height: 22px;
}

#page-english #header #styleswitch dl dd a {
  display: block;
  background-image: url(../img/bg-styleswitch-e.png);
  background-repeat: no-repeat;
  width: 24px;
  height: 22px;
}

#page-english #header #styleswitch dl dd a:hover {
  zoom: 1;
  position: relative;
}

#page-english #header #styleswitch dl dd.small a {
  background-position: 0 0;
}

#page-english #header #styleswitch dl dd.medium a {
  background-position: -24px 0;
}

#page-english #header #styleswitch dl dd.large a {
  background-position: -48px 0;
}

#page-english #header #styleswitch dl dd a:hover {
  background-color: transparent;
}

*html #page-english #header #styleswitch dl dd a:hover {
  zoom: 1;
}

#page-english #header #styleswitch dl dd a:hover img {
  visibility: hidden;
}

/* -----------------------------------------------------------
	#page-english #footer
		フッター
----------------------------------------------------------- */

#page-english #footer-outer {
  background-image: url(../img/bg-footer-outer.gif);
  background-repeat: repeat-x;
  /*	background-position: left 26px; */
  background-color: #f9f9f9;
  border-top: 1px #6eb648 solid;
  border-bottom: 1px #6eb648 solid;
}

#page-english #footer {
  width: 960px;
  margin: 0 auto;
  padding-top: 29px;
  color: #000;
}

/* #page-english #footer .ci span {
	margin-left: 16px;
	font-size: .7em;
	font-weight: normal;
} */

#page-english #footer .nav {
  margin: 0 0 26px 72px;
}

#page-english #footer .item {
  float: left;
}

#page-english #footer .item01 {
  width: 210px;
}

#page-english #footer-bottom-outer {
  background-image: url(../img/bg-footer-bottom-outer.gif);
  background-repeat: repeat-x;
}

#page-english #footer-bottom {
  width: 960px;
  margin: 0 auto;
  padding: 10px 0 20px;
}

#page-english #footer-bottom .copyright {
  padding: 12px 0 0 6px;
  text-align: right;
  font-size: .857143em;
  color: #555;
}
/* ===================================================================
CSS information

 file name  :module.css
 style info :共通（ヘッダー、フッター）
=================================================================== */

/* siteHeader
----------------------------------------------------------- */

#siteHeader {
  border-top: 3px solid #6AB547;
  padding-top: 5px;
}

#siteHeader .inner {
  width: 960px;
  margin: 0 auto;
  overflow: hidden;
}

#siteHeader #headerLogo {
  margin: 0;
  padding: 0;
  float: left;
}

/* utilityArea
----------------------------------------------------------- */

#siteHeader #utilityArea {
  float: right;
  width: 560px;
  margin-top: 20px;
}

/* txtSize */

#txtSize {
  overflow: hidden;
  float: left;
  width: 180px;
}

#txtSize dt,
#txtSize dd {
  float: left;
  margin: 0;
  padding: 0;
}

#txtSize ul {
  overflow: hidden;
}

#txtSize li {
  float: left;
  cursor: pointer;
}

#txtSize li a {
  display: block;
  width: 38px;
  height: 26px;
  background-image: url(/n/common/img/txtSize_btns.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

#txtSize .small a {
  background-position: 0 0;
}

#txtSize .small a:hover {
  background-position: 0 -26px;
}

#txtSize .medium a {
  background-position: -38px 0;
}

#txtSize .medium a:hover {
  background-position: -38px -26px;
}

#txtSize .large a {
  background-position: -76px 0;
}

#txtSize .large a:hover {
  background-position: -76px -26px;
}

/*language*/

#language {
  overflow: hidden;
  float: left;
  width: 104px;
  margin-left: 10px;
}

#language li {
  float: left;
  cursor: pointer;
}

#language li a {
  display: block;
  width: 52px;
  height: 26px;
  background-image: url(/n/common/img/language_btns.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

#language .jp a {
  background-position: 0 0;
}

#language .jp a:hover,
#language .jp a.on {
  background-position: 0 -26px;
}

#language .en a {
  background-position: -52px 0;
}

#language .en a:hover,
#language .en a.on {
  background-position: -52px -26px;
}

/*search*/

#search {
  display: block !important;
  float: left;
  margin-left: 10px;
}

#search dt {
  float: left;
  width: 75px;
}

#search dd {
  float: left;
  padding: 0;
}

#search input {
  margin: 0;
  padding: 0;
}

#search .keyword {
  width: 114px;
  height: 26px;
  padding: 3px 5px;
  _padding: 3px 2px 3px;
  background: url(/n/common/img/search_bg.png) left top no-repeat;
}

#search .keyword input {
  width: 114px;
  height: 20px;
  padding: 0;
  border: none;
  vertical-align: middle;
  background: none;
}

/* IE7 hack */

*+html #search .keyword input {
  width: 120px !important;
  height: 20px;
  line-height: 20px;
}

/* IE6 hack */

#search .keyword input {
  _width: 124px !important;
  _height: 22px;
  _border-width: 0;
  _zoom: 1;
}

#search .button {
  width: 54px;
  height: 26px;
}

#search .button input {
  height: 26px;
  border: 0;
  vertical-align: middle;
}

/* globalNavArea
----------------------------------------------------------- */

#globalNavArea {
  display: block !important;
  position: relative;
  z-index: 300;
  background: url(/n/common/img/globalNavArea_bg.png) repeat-x left bottom;
  padding-bottom: 5px;
  padding-top: 11px;
  box-sizing: content-box;
}

#globalNavArea .ClosespBtn {
  display: none;
}

#globalNav {
  margin: 10px auto 0;
  position: relative;
  list-style-type: none;
  width: 960px;
  height: 32px;
  padding: 0;
}

#globalNav ul {
  margin: 0;
  width: 960px;
  height: 32px;
  padding: 0;
}

#globalNavArea li {
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  box-sizing: content-box;
}

#globalNavArea li a {
  display: block;
  background-image: url(/n/common/img/globalNavArea_btns.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

#globalNavArea .nav01 a {
  width: 91px;
  height: 32px;
  background-position: 0 0;
}

#globalNavArea .nav01.open a,
#globalNavArea .nav01.open:hover a {
  width: 91px;
  height: 32px;
  background-position: 0 -64px;
}

#globalNavArea .nav01.current a,
#globalNavArea .nav01:hover a {
  width: 91px;
  height: 32px;
  background-position: 0 -32px;
}

#globalNavArea .nav02 a {
  width: 119px;
  height: 32px;
  background-position: -91px 0;
}

#globalNavArea .nav02.open a,
#globalNavArea .nav02.open:hover a {
  width: 119px;
  height: 32px;
  background-position: -91px -64px;
}

#globalNavArea .nav02.current a,
#globalNavArea .nav02:hover a {
  width: 119px;
  height: 32px;
  background-position: -91px -32px;
}

#globalNavArea .nav03 a {
  width: 89px;
  height: 32px;
  background-position: -210px 0;
}

#globalNavArea .nav03.open a,
#globalNavArea .nav03.open:hover a {
  width: 89px;
  height: 32px;
  background-position: -210px -64px;
}

#globalNavArea .nav03.current a,
#globalNavArea .nav03:hover a {
  width: 89px;
  height: 32px;
  background-position: -210px -32px;
}

#globalNavArea .nav04 a {
  width: 117px;
  height: 32px;
  background-position: -299px 0;
}

#globalNavArea .nav04.open a,
#globalNavArea .nav04.open:hover a {
  width: 117px;
  height: 32px;
  background-position: -299px -64px;
}

#globalNavArea .nav04.current a,
#globalNavArea .nav04:hover a {
  width: 117px;
  height: 32px;
  background-position: -299px -32px;
}

#globalNavArea .nav05 a {
  width: 143px;
  height: 32px;
  background-position: -416px 0;
}

#globalNavArea .nav05.open a,
#globalNavArea .nav05.open:hover a {
  width: 143px;
  height: 32px;
  background-position: -416px -64px;
}

#globalNavArea .nav05.current a,
#globalNavArea .nav05:hover a {
  width: 143px;
  height: 32px;
  background-position: -416px -32px;
}

#globalNavArea .nav06 a {
  width: 81px;
  height: 32px;
  background-position: -559px 0;
}

#globalNavArea .nav06.open a,
#globalNavArea .nav06.open:hover a {
  width: 81px;
  height: 32px;
  background-position: -559px -64px;
}

#globalNavArea .nav06.current a,
#globalNavArea .nav06:hover a {
  width: 81px;
  height: 32px;
  background-position: -559px -32px;
}

#globalNavArea .nav07 a {
  width: 112px;
  height: 32px;
  background-position: -640px 0;
}

#globalNavArea .nav07.open a,
#globalNavArea .nav07.open:hover a {
  width: 112px;
  height: 32px;
  background-position: -640px -64px;
}

#globalNavArea .nav07.current a,
#globalNavArea .nav07:hover a {
  width: 112px;
  height: 32px;
  background-position: -640px -32px;
}

#globalNavArea .nav08 a {
  width: 119px;
  height: 32px;
  background-position: -752px 0;
}

#globalNavArea .nav08.open a,
#globalNavArea .nav08.open:hover a {
  width: 119px;
  height: 32px;
  background-position: -752px -64px;
}

#globalNavArea .nav08.current a,
#globalNavArea .nav08:hover a {
  width: 119px;
  height: 32px;
  background-position: -752px -32px;
}

#globalNavArea .nav09 a {
  width: 89px;
  height: 32px;
  background-position: -871px 0;
}

#globalNavArea .nav09.open a,
#globalNavArea .nav09.open:hover a {
  width: 89px;
  height: 32px;
  background-position: -871px -64px;
}

#globalNavArea .nav09.current a,
#globalNavArea .nav09:hover a {
  width: 89px;
  height: 32px;
  background-position: -871px -32px;
}

#globalNavArea li ul {
  display: none;
  padding: 20px 10px 0;
  width: 940px;
  list-style: none;
  position: absolute;
  top: 90%;
  left: 0;
  margin: 0;
  background: #86BD41;
  overflow: hidden;
  text-align: left;
  z-index: 1100;
  overflow: hidden;
  box-sizing: content-box;
}

#globalNavArea li.open ul {
  height: auto;
}

.waSlideMenu-back {
  display: none !important;
}

#globalNavArea li.open ul li {
  font-size: 90%;
  background-image: none;
  text-indent: 0;
  overflow: hidden;
  float: left;
  width: 17.6%;
  margin: 0 0 20px;
  padding: 0 1%;
  border-right: 1px solid #fff;
  text-align: left;
}

#globalNavArea li.open ul li a {
  background-image: none;
  text-indent: 0;
}

#globalNavArea li.open ul li:nth-child(5),
#globalNavArea li.open ul li:nth-child(10),
#globalNavArea li.open ul li:nth-child(15) {
  border-right: none;
}

#globalNavArea li.open ul li:last-child {
  border-right: none;
}

#globalNavArea li.open ul li a {
  font-weight: bold;
  background-image: url(/n/common/img/arrow_icon01.png);
  background-repeat: no-repeat;
  background-position: left 0.2em !important;
  display: block;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
  text-align: left;
  padding-left: 25px;
  width: auto !important;
  height: auto !important;
}

#globalNavArea li.open ul li ul {
  display: block;
  position: static;
  float: none;
  width: auto;
  padding: 0 0 0 0;
  margin-top: 10px;
}

#globalNavArea li.open ul li ul li {
  display: block;
  position: relative;
  float: none;
  width: auto;
  border: none;
  font-weight: normal;
  margin: 0 0 4px;
}

#globalNavArea li.open ul li ul li.subtit {
  border-bottom: 1px dotted #fff;
  font-weight: bold;
  padding-bottom: 2px;
  padding-top: 5px;
  color: #fff;
  margin-bottom: 8px;
}

#globalNavArea li.open ul li ul li a {
  background-image: url(/n/common/img/arrow_icon06.png);
  background-repeat: no-repeat;
  text-indent: 0;
  background-position: 3px 0.5em !important;
  font-weight: normal;
}

.globalNavClose {
  width: 100% !important;
  padding: 0 !important;
  margin: 0;
  height: auto !important;
  border: none !important;
}

.globalNavClose span {
  display: block;
  margin: 0 auto;
  cursor: pointer;
  background: url(/n/common/img/globalNav_sp_close.png) no-repeat center center;
  background-size: 100px;
  width: 100px;
  height: 28px;
  text-indent: -9999px;
}

.globalNavClose span {
  display: block;
  margin: 0 auto;
  cursor: pointer;
  background: url(/n/common/img/globalNav_sp_close_ie.png) no-repeat center center\9;
  background-size: 100px;
  width: 100px;
  height: 28px;
  text-indent: -9999px;
}

/* siteFooter
---------------------------------------------------------------*/

#siteFooter {
  border-top: #459151 3px solid;
}

#footerMenu1 {
  background: #EFEFEF;
}

#footerMenu1 .inner {
  width: 960px;
  margin: 0 auto;
  padding: 10px 0 80px;
  overflow: hidden;
}

#footerMenu1 .fMenu {
  float: left;
  font-size: 95%;
  padding-right: 2%;
  width: 18%;
  box-sizing: content-box;
}

#footerMenu1 .fMenu ul {
  margin-top: 13px;
}

#footerMenu1 .fMenu ul li {
  margin-bottom: 3px;
}

#footerMenu1  li a {
  display: inline-block;
  background: url(/n/common/img/arrow_icon01.png) no-repeat left 0.3em;
  padding-left: 20px;
  font-size: 90%;
  font-weight: bold;
  color: #333;
}

#footerMenu1 .fMenu ul li ul {
  margin-top: 6px;
}

#footerMenu1  li ul li a {
  background: url(/n/common/img/arrow_icon02.png) no-repeat left 0.3em;
  padding-left: 20px;
  font-size: 80%;
  font-weight: normal;
  color: #333;
  line-height: 1.4;
}

#footerMenu1 .fMenu03 {
  float: left;
}

#footerMenu2 {
  background: #fff;
}

#footerMenu2 .inner {
  width: 960px;
  margin: 0 auto;
  padding: 8px;
  text-align: center;
}

#footerMenu2 .inner ul {
  display: inline;
}

#footerMenu2 .inner ul li {
  display: inline;
  padding: 0 5px;
  font-size: 80%;
  white-space: nowrap; /*20160104 フッター項目追加に伴う修正*/
}

#footerMenu2 .inner ul li a {
  background: url(/n/common/img/arrow_icon01.png) no-repeat left center;
  padding-left: 20px;
  color: #555;
  text-decoration: underline;
}

#footerMenu2 .inner ul li  a:visited {
  color: #555;
  text-decoration: underline;
}

#footerMenu2 .inner ul li  a:hover {
  color: #999;
  text-decoration: none;
}

#copyRight {
  background: #6AB547;
  color: #fff;
  font-size: 90%;
  text-align: center;
  padding: 6px;
}

/* lean_modal_box
--------------------------------------------------------------------------------------------------------------------------------*/

#lean_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none;
}

.lean_modal_box {
  width: 500px;
  padding: 30px 30px 20px 30px;
  display: none;
  background: #FFF;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  box-shadow: 0px 0px 4px rgba(0,0,0,0.7);
  -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7);
  -moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);
}

.lean_modal_box a {
  display: inline !important;
  padding: 0 !important;
  background: none !important;
}

.lean_modal_box .modal_close {
  width: 70px;
  margin: 30px auto 0 auto;
  padding: 3px 10px;
  background: #666;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.lean_modal_box .modal_close a {
  color: #fff;
  text-decoration: none;
}

.lean_modal_box .modal_close a:hover {
  color: #fff;
  text-decoration: none;
}
/* ===================================================================
CSS information

 file name  :seikatsueisei.css
 style info :共通（ヘッダー、フッター）
=================================================================== */

#page-seikatsueisei #main .clearfix {
  zoom: 1;
}

#page-seikatsueisei #main .clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* flowBox01 */

#page-seikatsueisei #main .flowBox01 {
  width: 700px;
  margin-left: 10px;
}

#page-seikatsueisei #main .flowBox02 {
  width: 700px;
  margin-left: 10px;
}

#page-seikatsueisei #main .flowBox01 .flL {
  float: left;
  width: 340px;
}

#page-seikatsueisei #main .flowBox01 .flR {
  float: right;
  width: 340px;
}

#page-seikatsueisei #main .flowBox01 .taCenter {
  text-align: center;
}

#page-seikatsueisei #main .flowBox01 table.green01 {
  border-collapse: collapse;
  border: solid 1px #118411;
}

#page-seikatsueisei #main .flowBox01 table.green01 th {
  padding: 4px 6px;
  text-align: left;
  color: #fff;
  background-color: #118411;
}

#page-seikatsueisei #main .flowBox01 table.green01 td {
  padding: 4px 6px;
  text-align: left;
}

#page-seikatsueisei #main .flowBox01 table.green01 td .list-item04 li {
  margin-left: 25px;
}

#page-seikatsueisei #main .flowBox01 .full {
  width: 700px;
}

#page-seikatsueisei #main .flowBox01 .full table.green01 {
  width: 650px;
  margin-left: 25px;
}
/* ===================================================================
CSS information

 file name  :style-e.css
 style info :英語ページコンテンツエリア関係 他

=================================================================== */

#page-english {
  background-image: url(/n/common/img/bg-header-e.gif);
}

#page-english #contents:after {
  content: "";
  display: block;
  clear: both;
}

#page-english .list-item01-3 li {
  background-position: 4px .55em;
}

#page-english .cap-item04,
#page-english .cap-item05 {
  margin: 10px 0;
  /* 16px */
  /* 相殺 */
}

#page-english .cap-item04,
#page-english .cap-item05 {
  padding: 4px;
  border: 1px #ccc solid;
}

#page-english .cap-item04 .image-r,
#page-english .cap-item05 .image-r {
  /* キャプション画像 */
  float: right;
  margin: 0 0 4px 4px;
}

#page-english .btn-2col a span,
#page-english .btn-3col a span {
  background-image: url(../img/item-list07.gif);
  background-repeat: no-repeat;
  background-position: 0 .35em;
  padding-left: 12px;
}

#page-english .img-item01 .item {
  float: left;
  margin: 0 10px 6px 0;
}

#page-english #main #search-keyword table td.text-box #search-for-key {
  width: 210px;
}

#page-english #main #special-layer #special-layer01 {
  display: none;
  position: absolute;
  top: 10px;
  left: 160px;
  z-index: 10;
}

#page-english #main #special-layer #special-layer02 {
  display: none;
  position: absolute;
  top: 10px;
  left: 160px;
  z-index: 11;
}

#page-english #main #special-layer #special-layer03 {
  display: none;
  position: absolute;
  top: 10px;
  left: 160px;
  z-index: 12;
}

#page-english #main #special-layer .item {
  float: left;
  background-color: #fff;
  width: 638px;
  border: 1px #008500 solid;
}

#page-english #main #special-layer .item .item-header .title {
  background-image: url(/n/img/item-list08.gif);
  background-repeat: no-repeat;
  background-position: left .15em;
  padding-left: 14px;
  line-height: 35px;
}

#page-english #main #special-layer .item .item-body {
  padding: 20px 18px;
}

#page-english #main #main-inner #seminar-info .idTabs li a {
  background-image: url(../img/bg-tab-seminar-info.png);
}

#page-english #main #main-inner .tab-item .item .see-list {
  margin: 4px 4px 8px 0;
  text-align: right;
}

#page-english #main #main-inner .tab-item .item dl dd p {
  overflow: auto;
}

/* -----------------------------------------------------------
	#side
		サイド
----------------------------------------------------------- */

#page-english #side {
  float: right;
  width: 220px;
}

#page-english #main #side-inner {
  /* 1カラムの中での段組サイド */
  float: right;
  width: 220px;
}

#page-english #side .item-body {
  background: #D7D7D7;
  padding: 2px;
}

#page-english #side .item-body ul {
  border: 1px solid #328B46;
}

#page-english #side .item-body li {
  border-top: 1px solid #fff;
  border-bottom: 1px dotted #ddd;
  background: #F1F1F1 url("/n/common/img/locaMenu_bg01.jpg") repeat-x left top;
}

#page-english #side .item-body li a {
  display: block;
  background: url("/n/common/img/arrow_icon01.png") no-repeat 5px center;
  padding: 8px 8px 8px 30px;
  color: #333;
  text-decoration: none;
}

#page-english #side .item-body li.nest span {
  background: url("/n/common/img/arrow_icon01.png") no-repeat 5px center;
  display: block;
  padding: 8px 8px 8px 30px;
  color: #333;
  text-decoration: none;
}

#page-english #side .item-body li.current {
  border-bottom: 1px dotted #ddd;
  background: #328B46 repeat-x left top;
}

#page-english #side .item-body ul li.current a {
  display: block;
  background: url(/n/common/img/arrow_icon07.png) no-repeat 5px center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

#page-english #side .item-body ul li ul,
#page-english #side .item-body ul li.on ul {
  border: none;
}

#page-english #side .item-body ul li ul li,
#page-english #side .item-body ul li.on ul li {
  border-top: 1px dotted #328B46;
  border-bottom: 1px dotted #ddd;
  background: #F0F8D1;
  font-size: 100%;
}

#page-english #side .item-body ul li ul li:hover,
#page-english #side .item-body ul li ul li.current {
  background: #FBFDF0;
}

#page-english #side .item-body ul li ul li a,
#page-english #side .item-body ul li.current  ul li a,
#page-english #side .item-body ul li.on  ul li a {
  background: url(/n/common/img/arrow_icon08.png) no-repeat 10px center;
  color: #333;
}

#page-english #side .item-body ul li ul li:hover a,
#page-english #side .item-body ul li ul li.current a {
  display: block;
  background: url(/n/common/img/arrow_icon08.png) no-repeat 10px center;
  color: #328B46;
  text-decoration: none;
}

#page-english #side .item .list-item01-3 li {
  padding: 0;
}

#page-english #side .item h2 {
  background-image: none;
  background-color: #008500;
  height: auto;
  padding-left: 0;
  font-weight: normal;
  color: #fff;
  border: 1px #008500 solid;
}

#page-english #side .item h2 span {
  display: block;
  background-color: #008500;
  padding: 6px 6px 6px 8px;
  line-height: 1.4;
  border: 1px #fff solid;
}

#page-english #side-inner .item h3 {
  margin: 0;
}

/* ===================================================================

  追加スタイル

=================================================================== */

/* テーブル */

#page-english #main table caption {
  caption-side: top;
  margin: 2px 0;
  font-weight: bold;
  text-align: left;
}

#page-english #main h5 {
  margin: 0 0 8px 0;
  font-weight: normal;
}

#page-english #contents #main .right {
  text-align: right;
}

#page-english #contents #main .center {
  text-align: center;
}

#page-english #contents #main .center table,
#page-english #contents #main .center img {
  margin-left: auto;
  margin-right: auto;
}

#page-english #contents #main .middle {
  vertical-align: middle;
}

/* テキストインデント */

#page-english #main .indent04 {
  padding-left: 1em;
  text-indent: -1em;
}

/* 注意書き（インデント） */

#page-english p.note {
  padding-left: 3.6em;
  text-indent: -3.6em;
}

#page-english p.note02 {
  padding-left: 3em;
  text-indent: -3em;
}

#page-english p.note-e {
  padding-left: 5em;
  text-indent: -5em;
}

/* 図表 */

#page-english #main .figure {
  margin-top: 1em;
  margin-bottom: 1.75em;
  text-align: center;
}

#page-english #main .figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 写真 */

#page-english #main .photo,
#page-english #main .photo2 {
  width: 230px;
  float: right;
  margin: 0 0 0.5em;
  padding: 0 0 10px 10px;
  background-color: #ffffff;
  text-align: center;
}

#page-english #main .photo2 {
  width: 250px;
}

#page-english #main .photo img,
#page-english #main .photo2 img {
  display: block;
  margin: 0;
}

#page-english #main .photo .caption,
#page-english #main .photo2 .caption {
  margin: 2px auto;
  text-align: center;
  line-height: 1.4;
}

/* リスト マージン追加 */

#page-english #main ul.mb05 li,
#page-english #main ol.mb05 li {
  margin-bottom: .5em;
}

/* フォーム */

#page-english #main input {
  margin-right: 2px;
}

#page-english #main input[type="submit"],
#page-english #main input[type="reset"],
#page-english #main input[type="button"] {
  min-width: 8em;
  margin: 0.5em;
  padding: 3px 10px;
}

#page-english #main label {
  margin-right: 2em;
}

#page-english #main form .table-2col-left td {
  vertical-align: middle;
}

#page-english a:hover .fukidasipop {
  display: block;
  /*ブロック要素で表示*/
}

#page-english #main .table,
#page-english #main .table-1col-top,
#page-english #main .table-5col-top,
#page-english #main .table-6col-top,
#page-english #main .table-7col-top,
#page-english #main .table-8col-top,
#page-english #main .table-11col-top,
#page-english #main .table-12col-top,
#page-english #main .table-13col-top {
  width: 100%;
  margin: 16px 0;
}

#page-english #main .table table,
#page-english #main .table-1col-top table,
#page-english #main .table-5col-top table,
#page-english #main .table-6col-top table,
#page-english #main .table-7col-top table,
#page-english #main .table-8col-top table,
#page-english #main .table-11col-top table,
#page-english #main .table-12col-top table,
#page-english #main .table-13col-top table {
  width: 100%;
}

#page-english #main .table th,
#page-english #main .table-1col-top th,
#page-english #main .table-5col-top th,
#page-english #main .table-6col-top th,
#page-english #main .table-7col-top th,
#page-english #main .table-8col-top th,
#page-english #main .table-11col-top th,
#page-english #main .table-12col-top th,
#page-english #main .table-13col-top th {
  text-align: left;
  vertical-align: top;
}

#page-english #main .table-5col-top th {
  width: 20%;
}

#page-english #main .table-6col-top th,
#page-english #main .table-6col-top td {
  width: 16%;
}

#page-english #main .table-7col-top th,
#page-english #main .table-7col-top td {
  width: 14%;
}

#page-english #main .table-8col-top th {
  width: 12%;
}

#page-english #main .table th,
#page-english #main .table td,
#page-english #main .table-1col-top th,
#page-english #main .table-1col-top td,
#page-english #main .table-5col-top th,
#page-english #main .table-5col-top td,
#page-english #main .table-6col-top th,
#page-english #main .table-6col-top td,
#page-english #main .table-7col-top th,
#page-english #main .table-7col-top td,
#page-english #main .table-8col-top th,
#page-english #main .table-8col-top td,
#page-english #main .table-11col-top th,
#page-english #main .table-11col-top td,
#page-english #main .table-12col-top th,
#page-english #main .table-12col-top td,
#page-english #main .table-13col-top th,
#page-english #main .table-13col-top td {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
}

/* テーブル
   table-3col-left:3カラム TH左
    */

#page-english #main .table-3col-left {
  width: 100%;
  margin: 16px 0;
}

#page-english #main .table-3col-left table {
  width: 100%;
}

#page-english #main .table-3col-left th {
  background-color: #c0c0c0;
  text-align: left;
  vertical-align: top;
}

#page-english #main .table-3col-left th,
#page-english #main .table-3col-left .left {
  width: 15%;
}

#page-english #main .table-3col-left th,
#page-english #main .table-3col-left td {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
  border: 1px #808080 solid;
}

/* テーブル
   table-3col-left:3カラム TH左
    */

#page-english #main .table-3col-left2 {
  width: 100%;
  margin: 16px 0;
}

#page-english #main .table-3col-left2 table {
  width: 100%;
}

#page-english #main .table-3col-left2 th {
  background-color: #c0c0c0;
  text-align: left;
  vertical-align: top;
}

#page-english #main .table-3col-left2 th {
  width: 25%;
}

#page-english #main .table-3col-left2 td {
  width: 37%;
}

#page-english #main .table-3col-left2 th,
#page-english #main .table-3col-left2 td {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
  border: 1px #808080 solid;
}

#page-english .arrow a {
  padding-left: 15px;
  background: url(/n/common/img/scroll_img.gif) left center no-repeat;
}

/* 図表 */

#page-english #main .figure {
  margin-top: 1em;
  margin-bottom: 1.75em;
  text-align: center;
}

#page-english #main .figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* リストクラスは UL タグに付ける */

#page-english .list-item07,
#page-english .list-item10,
#page-english .list-item11 {
  margin: 4px 0;
  /* 相殺 */
}

#page-english .list-item08,
#page-english .list-item09,
#page-english .list-item12,
#page-english .list-item14 {
  margin: 2px 0;
  /* 相殺 */
}

/*
リストアルファベット
*/

#page-english .list-item07 li {
  margin-left: 30px;
  list-style: upper-alpha;
}

/*
リスト（注○）等タイトル3.5文字まで
*/

/*list-item08 dt {
	width: 4em;
	float: left;
	.clear: left
}

.list-item08 dd {
	margin-left: 4em;
}*/

#page-english .list-item08 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

#page-english .list-item08 dt {
  width: 4em;
  padding-top: 4px;
}

#page-english .list-item08 dd {
  margin-left: 4em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

/*
リスト（注○）等タイトル2.5文字まで
*/

#page-english .list-item09 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

#page-english .list-item09 dt {
  width: 3em;
  padding-top: 4px;
}

#page-english .list-item09 dd {
  margin-left: 3em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

/*
リスト（注○）等タイトル5文字まで
*/

#page-english .list-item12 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

#page-english .list-item12 dt {
  width: 5.5em;
  padding-top: 4px;
}

#page-english .list-item12 dd {
  margin-left: 6em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

/*
リスト（注○）等タイトル1.5文字まで
*/

#page-english .list-item13 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

#page-english .list-item13 dt {
  width: 2em;
  padding-top: 4px;
}

#page-english .list-item13 dd {
  margin-left: 2em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

/*
入れ子のリストへのスタイル継承
*/

#page-english .list-item13 dd .list-item09 dt {
  width: 3em;
}

#page-english .list-item13 dd .list-item09 dd {
  margin-left: 3em;
}

/*
番号リストに入れ子のリストに番号を出さない
*/

#page-english .list-item04 li ul {
  list-style-type: none;
}

#page-english .list-item04 .list-item01 li {
  list-style: none;
  margin-left: 0;
}

#page-english .list-item01 .list-item02 li {
  list-style: none;
  background-image: none;
  margin-left: -1.5em;
}

#page-english .list-item11 .list-item10 li {
  list-style: disc;
  margin-left: 0;
}

/*
入れ子のリストにスタイルを継承させない
*/

#page-english .cap-item04 .list-item08 dt,
#page-english .cap-item04 .list-item09 dt {
  background-image: none;
  padding-left: 0;
  font-weight: normal;
}

#page-english .cap-item04 {
  _background-color: #ffffff;
  /* IE6 */
  _position: relative;
  /* IE6 */
}

/*
リスト黒丸
*/

#page-english .list-item10 {
  margin-left: 20px;
}

#page-english .list-item10 li {
  background-image: none;
  list-style: disc;
  padding-left: 0px;
}

/*
リストFAQ
*/

#page-english .list-item-faq {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

#page-english .list-item-faq dt {
  width: 2.5em;
  padding-top: 4px;
  font-weight: bold;
  color: #329B00;
}

#page-english .list-item-faq dd {
  margin-left: 2.5em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

#page-english .cap-item-faq {
  padding: 4px 10px;
  border: 1px #ccc solid;
}

#page-english .cap-item-answer {
  padding: 4px 10px;
  border: 1px #ccc solid;
  margin-top: 1em;
}

#page-english .cap-item-answer dd.answer {
  margin-bottom: 1.5em;
}

#page-english .cap-item-answer dl:last-child {
  margin-bottom: 1.5em;
}
@charset "utf-8";

/* ===================================================================
CSS information

 file name  :style.css
 style info :コンテンツエリア関係 他

=================================================================== */

/*----------------------------------------------------
  基本設定、リンクカラーなど
----------------------------------------------------*/

body {
  background-repeat: repeat-x;
  background-position: 0 101px;
  background-color: #fff;
  font-size: .875em;
  /* 14 / 16 = .875 */
  font-family: "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  color: #000;
  line-height: 1.5;
}

a {
  color: #0071bc;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



table img {
  display: block;
}

.spBtn {
  display: none;
}

#container {
  background: url(/n/common/img/conteinar_bg.jpg) no-repeat top center;
  min-width: 1040px;
}

body.index-page-1column #container {
  background: #fff;
}

#globalNavArea.fix {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  padding-top: 0;
}

/* font size change
-------------------------------------------------------------------*/

.fontS {
  font-size: 70%;
}

.fontM {
  font-size: 90%;
}

.fontL {
  font-size: 110%;
}

.fontS #txtSize .small a {
  background-position: 0 -26px;
}

.fontM #txtSize .medium a {
  background-position: -38px -26px;
}

.fontL #txtSize .large a {
  background-position: -76px -26px;
}

/* spOnly
----------------------------------------------------------------------*/

.spOnly {
  display: none !important;
}

/*----------------------------------------------------
  汎用class
----------------------------------------------------*/

/* clearfix */

*html .list-item05,
*html .list-item06,
*html #content,
*html .cap-item-outer,
*html #main .wrapper,
*html #main,
*html #main .new,
*html #main .adobe,
*html #main #keyword-outer,
*html #main .tabSet .tab-menu,
*html #main .tabSet .panel,
*html #main #special-layer,
*html #main #special-layer .item .item-body,
*html #main #special,
*html #main #special .item .item-top .title-line .title-waku,
*html #main .idTabs,
*html #main #main-inner .tab-item .item .item-header,
*html #footer .nav,
*html #footer-bottom {
  height: 1%;
}

*+html .list-item05,
*+html .list-item06,
*+html #content,
*+html .cap-item-outer,
*+html #main .wrapper,
*+html #main,
*+html #main .new,
*+html #main .adobe,
*+html #main #keyword-outer,
*+html #main .tabSet .tab-menu,
*+html #main .tabSet .panel,
*+html #main #special-layer,
*+html #main #special-layer .item .item-body,
*+html #main #special,
*+html #main #special .item .item-top .title-line .title-waku,
*+html #main .idTabs,
*+html #main #main-inner .tab-item .item .item-header,
*+html #footer .nav,
*+html #footer-bottom {
  height: 1%;
}

.list-item05:after,
.list-item06:after,
#content:after,
.cap-item-outer:after,
#main .wrapper:after,
#main:after,
#main .new:after,
#main .adobe:after,
#main #keyword-outer:after,
#main .tabSet .tab-menu:after,
#main .tabSet .panel:after,
#main #special-layer:after,
#main #special-layer .item .item-body:after,
#main #special:after,
#main #special .item .item-top .title-line .title-waku:after,
#main .idTabs:after,
#main #main-inner .tab-item .item .item-header:after,
#footer .nav:after,
#footer-bottom:after {
  content: "";
  display: block;
  clear: both;
}

/* 20140519追記*/

*html #main .clearfix {
  height: 1%;
}

*+html #main .clearfix {
  height: 1%;
}

#main .clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* 外部リンクは別窓用の指定 a タグの外側に span タグを設けて設定 */

.external {
  background-image: url(/n/common/img/item-another-window.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
}

.external_2 {
  background-image: url(/n/common/img/item-another-window_2.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
}

.external_gr {
  background-image: url(/n/common/img/item-another-window_gr.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
}

#page-top #content #main #main-inner .external {
  float: none;
  background-color: #fff;
  border: none;
}

*html .external {
  zoom: 1;
}

*html #page-top #content #main #main-inner .external {
  background-position: 0 0;
  width: 14px;
  margin: 0 0 0 4px;
  padding: 0;
  text-align: left;
}

*+html .external {
  zoom: 1;
}

*+html #page-top #content #main #main-inner .external {
  background-position: 0 0;
  width: 14px;
  margin: 0 0 0 4px;
  padding: 0;
  text-align: left;
}

.btn-2col .external,
.btn-3col .external {
  background-image: url(/n/common/img/item-another-window.gif);
  background-position: 3px center;
  padding: 2px 14px 0 0;
}

/* ポップアップリンクの指定 a タグの外側に span タグを設けて設定 */

.popup {
  background-image: url(/n/common/img/popup_icon02.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
}

#page-top #content #main #main-inner .popup {
  float: none;
  background-color: #fff;
  border: none;
}

*html .popup {
  zoom: 1;
}

*html #page-top #content #main #main-inner .popup {
  background-position: 0 0;
  width: 14px;
  margin: 0 0 0 4px;
  padding: 0;
  text-align: left;
}

*+html .popup {
  zoom: 1;
}

*+html #page-top #content #main #main-inner .popup {
  background-position: 0 0;
  width: 14px;
  margin: 0 0 0 4px;
  padding: 0;
  text-align: left;
  zoom: 1;
}

/* pdf,excel,word(アイコン)リンク a タグの外側に span タグを設けて設定 */

.pdf {
  display: inline-block;
  background-image: url(/n/common/img/pdf_icon.png);
  text-indent: -999px;
  background-repeat: no-repeat;
  background-position: right center;
  width: 20px;
  height: 20px;
  padding: 0;
  vertical-align: middle;
}

.excel {
  background-image: url(/n/common/img/icon_xls.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 18px;
}

.word {
  background-image: url(/n/common/img/icon_doc.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 18px;
}

#page-top #content #main #main-inner .pdf,
#page-top #content #main #main-inner .excel,
#page-top #content #main #main-inner .word {
  float: none;
  background-color: #fff;
  border: none;
}

*html .pdf,
*html .excel,
*html .word {
  zoom: 1;
}

*html #page-top #content #main #main-inner .pdf,
*html #page-top #content #main #main-inner .excel,
*html #page-top #content #main #main-inner .word {
  background-position: 0 0;
  width: 14px;
  margin: 0 0 0 2px;
  padding: 0 2px 0 0;
  text-align: left;
}

*+html .pdf,
*+html .excel,
*+html .word {
  zoom: 1;
}

*+html #page-top #content #main #main-inner .pdf,
*+html #page-top #content #main #main-inner .excel,
*+html #page-top #content #main #main-inner .word {
  background-position: 0 0;
  width: 16px;
  margin: 0 0 0 2px;
  padding: 0 2px 0 0;
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

/* マージンクリア */

body.jfc #page .m0 {
  margin: 0;
}

body.jfc #page .mt0 {
  margin-top: 0;
}

body.jfc #page .mb0 {
  margin-bottom: 0;
}

/* 背景item-list01.gif画像 */

.normal-arrow {
  background-image: url(/n/common/img/item-list01.gif);
  background-repeat: no-repeat;
  background-position: 0 .3em;
  padding-left: 14px;
}

*html .normal-arrow {
  background-position: 0 .1em;
}

/* リストクラスは UL タグに付ける */

.list-item01,
.list-item02,
.list-item03,
.list-item04 {
  margin: 8px 0;
  /* 相殺 */
}

/* リスト笆ｶ 縦並び（＋入れ子対応） */

.list-item01 li {
  background-image: url(/n/common/img/item-list01.gif);
  background-repeat: no-repeat;
  background-position: left .3em;
  margin-left: 6px;
  padding-left: 14px;
}

.list-item01 li li {
  margin-left: 4px;
}

/* リスト笆ｶ 縦並び フッター用 */

.list-item01-2 li {
  background-image: url(/n/common/img/item-list01-2.gif);
  background-repeat: no-repeat;
  background-position: left .3em;
  margin-left: 6px;
  padding-left: 14px;
}

.list-item01-2 li a {
  color: #000;
}

/* リスト笆ｶ 縦並び サイド用 */

.list-item01-3 li {
  background-image: url(/n/common/img/item-list01.gif);
  background-repeat: no-repeat;
  background-position: 4px .5em;
  padding: 3px 0 3px 18px;
  border-bottom: 1px #ccc dotted;
}

.list-item01-3 li.nest {
  background-image: url(/n/common/img/item-list06.gif);
}

.list-item01-3 li ul {
  margin-top: 3px;
  border-top: 1px #ccc dotted;
}

/* リスト▼ 縦並び */

.list-item02 > li {
  background-image: url(/n/common/img/item-list06.gif);
  background-repeat: no-repeat;
  background-position: left .35em;
  margin-left: 5px;
  padding-left: 14px;
}

/* 番号リスト */

.list-item04 li {
  margin-left: 30px;
  list-style-type: decimal;
}

*html .list-item04 li {
  margin-left: 29px;
}

/* リスト笆ｶ 横並び */

.list-item05 li {
  float: left;
  display: inline;
  background-image: url(/n/common/img/arrow_icon03.png);
  background-repeat: no-repeat;
  background-position: left .3em;
  margin-right: 18px;
  padding-left: 13px;
}

/* リスト▼ 横並び */

.list-item06 li {
  float: left;
  display: inline;
  background-image: url(/n/common/img/item-list06.gif);
  background-repeat: no-repeat;
  background-position: left .35em;
  margin-right: 18px;
  padding-left: 12px;
}

/* リスト２カラム用 */

.list-item-half {
  float: left;
  width: 345px;
  /* 345px カラム幅 */
  margin-right: 10px;
}

/* 20140520追加 リスト横三角のみ */

.list-item15 li {
  background-image: url(/n/common/img/item-list15.gif);
  background-repeat: no-repeat;
  background-position: left .3em;
  margin-left: 6px;
  padding-left: 14px;
}

.list-item15 li li {
  margin-left: 4px;
}

/* キャプション共通外枠 */

.cap-item-outer,
.cap-item04 {
  margin: 10px 0 10px;
  /* 16px */
  /* 相殺 */
  overflow: hidden;
  width: 720px;
}

/* キャプション 画像>タイトル>説明 縦並び */

.cap-item01 {
  float: left;
  width: 240px;
  margin-bottom: 6px;
}

.cap-item01 p {
  margin-bottom: 6px;
}

.cap-item01 dl dt {
  background-image: url(/n/common/img/item-list01.gif);
  background-repeat: no-repeat;
  background-position: left .3em;
  margin-bottom: 2px;
  padding-right: .5em;
  padding-left: 14px;
}

.cap-item01 dl dd {
  padding-right: .5em;
}

/* キャプション 画像>説明 横並び ver1 */

.cap-item02 {
  float: left;
  width: 354px;
  border: 1px #ccc solid;
  margin-bottom: 6px;
}

.cap-item02 .image {
  display: table-cell;
  background-image: url(/n/common/img/bg-cap-item02.png);
  background-repeat: no-repeat;
  width: 134px;
  height: 124px;
  vertical-align: middle;
  text-align: center;
}

*html .cap-item02 .image {
  padding-top: 6px;
  height: 118px;
}

*+html .cap-item02 .image {
  padding-top: 6px;
  height: 118px;
}

.cap-item02 .caption {
  float: right;
  width: 187px;
  /* 215px */
  padding: 9px 20px 4px 8px;
}

/*
キャプション 画像>説明 横並び ver2
タイトル付き２カラム枠
*/

.cap-item03 {
  float: left;
  width: 345px;
  /* 345px カラム幅 */
  margin: 0 10px 6px 0;
  padding: 4px;
  border: 1px #ccc solid;
  box-sizing: border-box;
}

.cap-item04 {
  padding: 4px;
  border: 1px #ccc solid;
  clear: both;
  display: block;
}

.cap-item03 .image-l,
.cap-item04 .image-l {
  /* キャプション画像 */
  float: left;
  margin: 0 10px 4px 0;
}

.cap-item03 .image-r,
.cap-item04 .image-r {
  /* キャプション画像 */
  float: right;
  margin: 0 0 4px 4px;
}

.cap-item03 .txt,
.cap-item04 .txt {
  /* キャプションテキスト */
  overflow: hidden;
}

*html .cap-item03 .txt,
*html .cap-item04 .txt {
  zoom: 1;
}

.cap-item03 dt {
  background-image: url(/n/common/img/item-list01.gif);
  background-repeat: no-repeat;
  background-position: left .3em;
  padding-left: 14px;
  font-weight: bold;
}

#main .cap-item03 .linkList {
  padding-left: 8px;
}

/* キャプション 画像>説明 ver3 */



/* ボタン */

.btn-2col,
.btn-3col {
  float: left;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  text-align: center;
}

*html .btn-2col,
.btn-3col {
  line-height: 40px;
  overflow: hidden;
}

.btn-2col {
  width: 345px;
}

.btn-3col {
  width: 230px;
}

*html .btn-3col {
  margin-right: 7px;
}

.btn-2col a {
  display: block;
  background-image: url(/n/common/img/btn-2col.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 345px;
  height: 45px;
}

.btn-3col a {
  display: block;
  background-image: url(/n/common/img/btn-3col.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 230px;
  height: 45px;
}

.btn-2col a:hover,
.btn-3col a:hover {
  background-position: 0 -45px;
}

.btn-2col a span,
.btn-3col a span {
  background-image: url(/n/common/img/item-list-07.gif);
  background-repeat: no-repeat;
  background-position: 0 .35em;
  padding-left: 12px;
}

*html .btn-2col a span,
.btn-3col a span {
  background-position: 0 .1em;
}

*+html .btn-2col a span,
.btn-3col a span {
  background-position: 0 .3em;
}

.cap-item-outer .btn-2col a span,
.cap-item-outer .btn-3col a span {
  background: none;
  padding-left: 0px;
}

/*ボタン黄緑*/

.btn-2col_so,
.btn-3col_so {
  float: left;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  text-align: left;
}

*html .btn-2col_so,
.btn-3col_so {
  line-height: 40px;
  overflow: hidden;
}

.btn-2col_so {
  width: 345px;
}

.btn-3col_so {
  width: 230px;
}

*html .btn-3col_so {
  margin-right: 7px;
}

.btn-2col_so a {
  display: block;
  background-image: url(/n/common/img/btn-2col.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 345px;
  height: 45px;
}

.btn-3col_so a {
  display: block;
  background-image: url(/n/common/img/btn-3col.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 230px;
  height: 45px;
}

.btn-2col_so a:hover,
.btn-3col_so a:hover {
  background-position: 0 -45px;
}

.btn-2col_so a span,
.btn-3col_so a span {
  background-image: url(/n/common/img/item-list-08.png);
  background-repeat: no-repeat;
  background-position: 3px 0px;
  padding-left: 20px;
  font-weight: bold;
}

*html .btn-2col_so a span,
.btn-3col_so a span {
  background-position: 0 .1em;
}

*+html .btn-2col_so a span,
.btn-3col_so a span {
  background-position: 0 .3em;
}

/*ボタン黄*/

.btn-2col_so_ye,
.btn-3col_so_ye {
  float: left;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  text-align: left;
}

*html .btn-2col_so_ye,
.btn-3col_so_ye {
  line-height: 40px;
  overflow: hidden;
}

.btn-2col_so_ye {
  width: 345px;
}

.btn-3col_so_ye {
  width: 230px;
}

*html .btn-3col_so_ye {
  margin-right: 7px;
}

.btn-2col_so_ye a {
  display: block;
  background-image: url(/n/common/img/btn-2col_ye.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 345px;
  height: 45px;
}

.btn-3col_so_ye a {
  display: block;
  background-image: url(/n/common/img/btn-3col_ye.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 230px;
  height: 45px;
}

.btn-2col_so_ye a:hover,
.btn-3col_so_ye a:hover {
  background-position: 0 -45px;
}

.btn-2col_so_ye a span,
.btn-3col_so_ye a span {
  background-image: url(/n/common/img/item-list-08.png);
  background-repeat: no-repeat;
  background-position: 3px 0px;
  padding-left: 20px;
  font-weight: bold;
}

*html .btn-2col_so_ye a span,
.btn-3col_so_ye a span {
  background-position: 0 .1em;
}

*+html .btn-2col_so_ye a span,
.btn-3col_so_ye a span {
  background-position: 0 .3em;
}

/*ボタン赤*/

.btn-2col_so_re,
.btn-3col_so_re {
  float: left;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  text-align: left;
}

*html .btn-2col_so_re,
.btn-3col_so_re {
  line-height: 40px;
  overflow: hidden;
}

.btn-2col_so_re {
  width: 345px;
}

.btn-3col_so_re {
  width: 230px;
}

*html .btn-3col_so_re {
  margin-right: 7px;
}

.btn-2col_so_re a {
  display: block;
  background-image: url(/n/common/img/btn-2col_re.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 345px;
  height: 45px;
}

.btn-3col_so_re a {
  display: block;
  background-image: url(/n/common/img/btn-3col_re.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 230px;
  height: 45px;
}

.btn-2col_so_re a:hover,
.btn-3col_so_re a:hover {
  background-position: 0 -45px;
}

.btn-2col_so_re a span,
.btn-3col_so_re a span {
  background-image: url(/n/common/img/item-list-08.png);
  background-repeat: no-repeat;
  background-position: 3px 0px;
  padding-left: 20px;
  font-weight: bold;
}

*html .btn-2col_so_re a span,
.btn-3col_so_re a span {
  background-position: 0 .1em;
}

*+html .btn-2col_so_re a span,
.btn-3col_so_re a span {
  background-position: 0 .3em;
}

/*ボタン緑*/

.btn-2col_so_gr,
.btn-3col_so_gr {
  float: left;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  text-align: left;
}

*html .btn-2col_so_gr,
.btn-3col_so_gr {
  line-height: 40px;
  overflow: hidden;
}

.btn-2col_so_gr {
  width: 345px;
}

.btn-3col_so_gr {
  width: 230px;
}

*html .btn-3col_so_gr {
  margin-right: 7px;
}

.btn-2col_so_gr a {
  display: block;
  background-image: url(/n/common/img/btn-2col_gr.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 345px;
  height: 45px;
}

.btn-3col_so_gr a {
  display: block;
  background-image: url(/n/common/img/btn-3col_gr.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 230px;
  height: 45px;
}

.btn-2col_so_gr a:hover,
.btn-3col_so_gr a:hover {
  background-position: 0 -45px;
}

.btn-2col_so_gr a span,
.btn-3col_so_gr a span {
  background-image: url(/n/common/img/item-list-08.png);
  background-repeat: no-repeat;
  background-position: 3px 0px;
  padding-left: 20px;
  font-weight: bold;
}

*html .btn-2col_so_gr a span,
.btn-3col_so_gr a span {
  background-position: 0 .1em;
}

*+html .btn-2col_so_gr a span,
.btn-3col_so_gr a span {
  background-position: 0 .3em;
}

/*ボタン青*/

.btn-2col_so_bl,
.btn-3col_so_bl {
  float: left;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  text-align: left;
}

*html .btn-2col_so_bl,
.btn-3col_so_bl {
  line-height: 40px;
  overflow: hidden;
}

.btn-2col_so_bl {
  width: 345px;
}

.btn-3col_so_bl {
  width: 230px;
}

*html .btn-3col_so_bl {
  margin-right: 7px;
}

.btn-2col_so_bl a {
  display: block;
  background-image: url(/n/common/img/btn-2col_bl.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 345px;
  height: 45px;
}

.btn-3col_so_bl a {
  display: block;
  background-image: url(/n/common/img/btn-3col_bl.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 230px;
  height: 45px;
}

.btn-2col_so_bl a:hover,
.btn-3col_so_bl a:hover {
  background-position: 0 -45px;
}

.btn-2col_so_bl a span,
.btn-3col_so_bl a span {
  background-image: url(/n/common/img/item-list-08.png);
  background-repeat: no-repeat;
  background-position: 3px 0px;
  padding-left: 20px;
  font-weight: bold;
}

*html .btn-2col_so_bl a span,
.btn-3col_so_bl a span {
  background-position: 0 .1em;
}

*+html .btn-2col_so_bl a span,
.btn-3col_so_bl a span {
  background-position: 0 .3em;
}

/* タブメニュー下層 */

#main .tabSet .tab-menu {
  display: block;
  margin: 0;
  list-style-type: none;
  position: relative;
  top: 1px;
}

#main .tabSet .tab-menu li {
  float: left;
  width: 358px;
}

#main .tabSet .tab-menu li.panel01 {
  margin-right: 4px;
}

#main .tabSet .tab-menu li a {
  display: block;
  background-image: url(/n/common/img/bg-tab-menu.gif);
  background-repeat: no-repeat;
  width: 358px;
  height: 45px;
  line-height: 45px;
  text-align: center;
}

#main .tabSet .tab-menu li.panel01 a {
  background-position: 0 -45px;
}

#main .tabSet .tab-menu li.panel02 a {
  background-position: -362px -45px;
}

#main .tabSet .tab-menu li.panel01 a:hover {
  background-position: 0 0;
}

#main .tabSet .tab-menu li.panel02 a:hover {
  background-position: -362px 0;
}

#main .tabSet .tab-menu li.panel01 a.selected {
  background-position: 0 0;
}

#main .tabSet .tab-menu li.panel02 a.selected {
  background-position: -362px 0;
}

#main .tabSet .tab-content {
  background-image: url(/n/common/img/bg-tab-content.gif);
  background-repeat: repeat-y;
  border-bottom: 1px #ccc solid;
  border-top: 1px #ccc solid;
}

#main .tabSet .tab-menu li a span {
  background-image: url(/n/common/img/item-list01.gif);
  background-repeat: no-repeat;
  background-position: 0 .35em;
  padding-left: 14px;
}

*html .tabSet .tab-menu li a span {
  background-position: 0 .1em;
}

.minasama {
  height: 160px;
  background-image: url(/n/common/img/stuff_01.png);
  background-repeat: no-repeat;
  background-position: 500px 0px;
}

/*----------------------------------------------------
  #page
----------------------------------------------------*/

#page {
  width: 960px;
  margin: 0 auto;
  padding-top: 20px;
}

#nav-skip {
  position: absolute;
  top: 0;
  left: 0;
}

.page-top {
  position: relative;
  clear: both;
  margin-top: 52px;
  /* 25+27px */
  text-align: right;
}

.page-top img {
  position: absolute;
  right: 0;
  top: -27px;
}

/* sliderVisual
---------------------------------------------------------------*/

#sliderVisual {
  width: 100%;
  background: url(/n/img/slider/sliderVisual_bg.jpg) no-repeat center top;
  position: relative;
  margin-top: -8px;
}

#sliderVisual .inner {
  margin: 0 auto;
  background: url(/n/img/slider/sliderVisual_inner_bg.png) repeat-x left bottom;
}

/* content
---------------------------------------------------------------*/

#page-top #content {
  position: relative;
  background: url(/n/img/slider/sliderVisual_inner_bg.png) repeat-x left top;
  padding-top: 60px;
  margin-top: -10px;
  z-index: 100;
}

#content {
  width: 960px;
  margin: 0 auto;
  overflow: hidden;
}

#content.fix {
  padding-top:58px;
}

/* topic-path
---------------------------------------------------------------*/

#topic-path {
  list-style-type: none;
  width: 960px;
  padding: 10px 0;
  overflow: hidden;
}

#topic-path li {
  font-size: 75%;
  padding: 0 10px 0 0;
  float: left;
  position: relative;
}

#topic-path li a {
  color: #999999;
}

#topic-path li.current {
  background: none;
  color: #444;
}

/*----------------------------------------------------
  #main
    メイン
----------------------------------------------------*/

#main {
  float: left;
  width: 720px;
  margin-right: 20px;
  margin-bottom: 80px;
}

body.index-page-1column #main {
  /* 1カラム用メイン */
  float: none;
  width: 960px;
  margin-right: 0;
  padding-left: 0;
}

body.index-page-1column #main #main-inner {
  /* 1カラムの中での段組メイン */
  float: left;
  width: 720px;
  margin-right: 20px;
}

#main h1 {
  border-top: 2px solid #4E9C53;
  background: url(/n/common/img/h1_bg.png) no-repeat left bottom;
  padding: 12px;
  font-size: 120%;
  margin-bottom: 20px;
}

#main .h1-outer {
  position: relative;
}

#main .hx-outer {
  margin: 20px 0;
  position: relative;
  clear: both;
}

#main h2 {
  margin: 20px 0;
  border-top: 1px solid #4E9C53;
  border-bottom: 1px solid #ccc;
  background: url(/n/common/img/h2_bg.png) no-repeat left top;
  padding: 8px 8px 8px 30px;
  position: relative;
}

#main .hx-outer .more {
  position: absolute;
  top: 8px;
  right: 5px;
  z-index: 50;
  display: block;
}

#main h3 {
  background: #f0f0f0;
  border-left: 4px solid #4E9C53;
  padding: 6px;
  margin: 20px 0;
  clear: both;
}

#main h4 {
  display: table;
  background: #4E9C53;
  padding: 6px;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 10px;
}

#main h4.border {
  display: block;
  background: #FFF;
  padding: 10px 0;
  border-bottom: 1px dotted #666;
  color: #000;
  margin-top: 30px;
}

#main h4 a,
#main h4 a:hover {
  color: #fff;
  text-decoration: none;
}

body.index-page-1column #main #keyword-outer {
  /* キーワードから探す */
  margin-bottom: 16px;
  padding-left: 15px;
  /* インデント */
}

body.index-page-1column #main #keyword-outer .hidden {
  /* アクセラ用selectタグ対応 */
  display: none;
}

body.index-page-1column #main #search-keyword {
  float: left;
  border: 1px #ccc solid;
  padding: 4px 0;
}

body.index-page-1column #main #search-keyword table {
  width: 518px;
  /* 533px - 15px（インデント） */
}

body.index-page-1column #main #search-keyword table th {
  padding-left: 7px;
  text-align: left;
  font-weight: normal;
}

body.index-page-1column #main #search-keyword table th label {
  margin-right: 0;
}

body.index-page-1column #main #search-keyword table td.text-box {
  padding-right: 5px;
  text-align: right;
}

body.index-page-1column #main #search-keyword table td.text-box .search-for-key {
  width: 210px;
}

body.index-page-1column #main #search-keyword table td.btn {
  width: 150px;
  padding-right: 4px;
}

body.index-page-1column #main #search-keyword table td.btn input {
  *position: relative;
}

body.index-page-1column #main #search-finance-list {
  float: left;
  padding: 5px 0 0 5px;
}

body.index-page-1column #main #search-finance-list input {
  *position: relative;
}

body.index-page-1column #main #detail {
  /*検索  詳細条件指定 */
  margin-bottom: 16px;
  padding-left: 15px;
  /* インデント */
}

body.index-page-1column #main #detail .hidden {
  /* アクセラ用selectタグ対応 */
  display: none;
}

body.index-page-1column #main #detail input {
  margin-right: 6px;
  vertical-align: middle;
}

*html body.index-page-1column #main #detail input {
  vertical-align: baseline;
}

body.index-page-1column #main #detail .title {
  margin-bottom: 16px;
}

body.index-page-1column #main #detail table {
  width: 675px;
  /* 690px -15px（インデント） */
  margin-bottom: 10px;
  border: 1px #ccc solid;
}

body.index-page-1column #main #detail table th {
  background-color: #ddd;
  width: 119px;
  font-weight: normal;
}

body.index-page-1column #main #detail table td {
  background-color: #f9f9f9;
  padding: 20px 20px 20px 30px;
}

body.index-page-1column #main #detail table#theme td label {
  float: left;
  width: 50%;
  margin: 0;
}

body.index-page-1column #main #detail table#small-biz td label,
body.index-page-1column #main #detail table#agri-fish td label {
  float: left;
  width: 33%;
  margin: 0;
}

body.index-page-1column #main #useful-info {
  /* お役立ち情報 */
  margin-bottom: 16px;
  padding-left: 15px;
  /* インデント */
}

body.index-page-1column #main #useful-info table th {
  width: 364px;
  text-align: left;
  font-weight: normal;
  border-bottom: 1px #ccc solid;
}

body.index-page-1column #main #useful-info table td {
  padding: 10px 0;
  border-bottom: 1px #ccc solid;
}

body.index-page-1column #main #useful-info table tr.last th,
body.index-page-1column #main #useful-info table tr.last td {
  border-bottom: none;
}

body.index-page-1column #main #useful-info table td p {
  float: left;
  margin-right: 10px;
}

/* 意味あい的に強調 */

#main em {
  margin: 0 4px;
  font-size: 1.5em;
  font-style: normal;
  font-weight: bold;
}

/* Adobeリーダーダウンロード */

#main .adobe p {
  float: left;
  margin: 16px 0;
  /* 相殺 */
}

#main .adobe p.icon {
  margin-right: 15px;
  padding-top: 6px;
}

#main .adobe p.comment {
  width: 82%;
}

/* ニュースリリース、新着 dl タグに付ける */

#main .new dt {
  float: left;
  clear: both;
  width: 10em;
}

#main .new dd {
  overflow: hidden;
}

*html #main .new dd {
  zoom: 1;
}

/* テーブル 外枠の div タグに付ける
   table-4col-top:４カラム TH上
   table-3col-top:３カラム TH上
   table-2col-left:２カラム TH左
   table-2col-top:２カラム TH上 */

#main .table-5col-top,
#main .table-5col-top2,
#main .table-4col-top,
#main .table-4col-top2,
#main .table-3col-top,
#main .table-2col-left,
#main .table-2col-top {
  width: 100%;
  margin: 16px 0;
}

#main .table-5col-top table,
#main .table-5col-top2 table,
#main .table-4col-top table,
#main .table-4col-top2 table,
#main .table-3col-top table,
#main .table-2col-left table,
#main .table-2col-top table {
  width: 100%;
}

#main .table-4col-top .date,
#main .table-2col-left .date {
  text-align: right;
}

#main .table-5col-top th,
#main .table-5col-top2 th,
#main .table-4col-top th,
#main .table-4col-top2 th,
#main .table-3col-top th,
#main .table-2col-left th,
#main .table-2col-top th {
  background-color: #f0f0f0;
  text-align: left;
  vertical-align: top;
}

#main .table-4col-top th,
#main .table-4col-top td,
#main .table-2col-left th,
#main .table-2col-top .left {
  width: 25%;
}

#main .table-5col-top th,
 {
  width: 20%;
}

#main .table-4col-top .souken th,
#main .table-4col-top .souken td {
  width: 10%;
}



#main .table-2col-top .right-ad {
  width: 80%;
}

#main .table-2col-top .left-ad {
  width: 20%;
}



#main .table-3col-top th {
  width: 33%;
}

#main .table-5col-top th,
#main .table-5col-top2 th,
#main .table-4col-top th,
#main .table-4col-top2 th,
#main .table-3col-top th,
#main .table-2col-left th,
#main .table-2col-top th {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
  border: 1px #dddddd solid;
}

#main .table-4col-top td,
#main .table-4col-top2 td,
#main .table-3col-top td,
#main .table-2col-left td,
#main .table-2col-top td {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
  border: 1px #dddddd solid;
  background: #FFFFFF;
}

#main .table-3col-top_seminer {
  width: 100%;
  margin: 16px 0;
}

#main .table-3col-top_seminer table {
  width: 100%;
}

#main .table-3col-top_seminer th {
  background-color: #f0f0f0;
  text-align: left;
  vertical-align: top;
}

#main .table-3col-top_seminer th,
#main .table-3col-top_seminer td {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
  border: 1px #dddddd solid;
}

#main .table-3col-top_seminer .date {
  text-align: right;
}

/* テキストインデント */

#main .indent01 {
  text-indent: 1em;
}

#main .indent02 {
  padding-left: 1em;
}

#main .indent03 {
  padding-left: 1em;
  text-indent: 1em;
}

#main .table-2col-top_gr .left-ad {
  width: 20%;
}

/* トップページ */

#main #main-visual {
  margin-bottom: 10px;
}

#main #main-visual #vnavCtrl {
  top: 232px;
  right: 10px;
  background-color: transparent;
}

#main #main-visual #vnavCtrl p {
  float: left;
}

#main #temp-info {
  position: relative;
  margin-bottom: 10px;
}

#main #temp-info .detail-here {
  position: absolute;
  top: 15px;
  left: 791px;
}

#main #layer-area {
  position: relative;
}

#main #special-layer #special-layer01 {
  display: none;
  position: absolute;
  top: 68px;
  left: 80px;
  z-index: 10;
}

#main #special-layer #special-layer02 {
  display: none;
  position: absolute;
  top: 68px;
  left: 80px;
  z-index: 11;
}

#main #special-layer #special-layer03 {
  display: none;
  position: absolute;
  top: 68px;
  left: 80px;
  z-index: 12;
}

#main #special-layer .item {
  float: left;
  background-color: #fff;
  width: 800px;
  min-height: 200px;
  height: auto !important;
  height: 200px;
  border: 1px #008500 solid;
}

#main #special-layer .item .item-header {
  position: relative;
  background-color: #008500;
  height: 18px;
  /* 35px */
  padding: 3px 0 14px 10px;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  -webkit-border-top-left-radius: 1px;
  -webkit-border-top-right-radius: 1px;
  -moz-border-radius-topleft: 1px;
  -moz-border-radius-topright: 1px;
}

*html #main #special-layer .item .item-header {
  padding: 8px 0 9px 10px;
}

#main #special-layer .item .item-header .title {
  background-image: url(/n/common/img/item-list08.gif);
  background-repeat: no-repeat;
  background-position: left .7em;
  padding-left: 14px;
  line-height: 35px;
}

*html #main #special-layer .item .item-header .title {
  background-position: left .3em;
}

#main #special-layer .item .item-header .title a:link {
  color: #fff;
}

#main #special-layer .item .item-header .title a:visited {
  color: #fff;
}

#main #special-layer .item .item-header .title a:hover {
  color: #fff;
}

#main #special-layer .item .item-header .title .detail-here {
  margin: 0 0 0 8px;
  vertical-align: 2px;
}

*html #main #special-layer .item .item-header .title .detail-here {
  vertical-align: 0;
}

#main #special-layer .item .item-header .close {
  position: absolute;
  top: 7px;
  right: 5px;
}

#main #special-layer .item .item-body {
  padding: 20px 80px;
  font-size: 1.071429em;
}

#main #special-layer .item .item-body .left,
#main #special-layer .item .item-body .right {
  float: left;
  text-align: left;
}

#main #special-layer .item .item-body .left {
  width: 295px;
  border-right: 1px #ccc solid;
}

#main #special-layer .item .item-body .right {
  margin-left: -1px;
  padding: 0 0 0 4px;
  border-left: 1px #ccc solid;
}

*html #main #special-layer .item .item-body .list-item01 li {
  background-position: left .5em;
}

#main #special .item {
  float: left;
  width: 290px;
  margin-right: 12px;
  padding: 10px 10px 5px 10px;
  border: 1px #ccc solid;
}

#main #special .item .item-top {
  cursor: pointer;
}

#main #special .item .item-top .title-line {
  width: 268px;
  padding: 10px;
  border: 1px #ccc solid;
  border-bottom: none;
}

#main #special .item .item-top .title-line .title-waku {
  margin-bottom: 10px;
}

*+html #main #special .item .item-top .title-line .title-waku {
  zoom: 1;
}

#main #special .item .item-top .title-line .title-waku .image {
  float: left;
  margin-right: 12px;
  border: 1px #ccc solid;
}

#main #special .item .item-top .title-line .title-waku .title {
  overflow: hidden;
}

#main #special .item .item-top .title-line .title-waku .one-line {
  padding-top: 19px;
}

#main #special .item .item-top .title-line .title-waku .two-lines {
  padding-top: 9px;
}

#main #special .item .item-top .open {
  margin-bottom: 5px;
}

#main #special .item .btn {
  margin-bottom: 5px;
}

body.index-page-1column #main #main-inner h2#info-all {
  background-image: url(/n/common/img/bg-h2-top.png);
  height: 40px;
  line-height: 40px;
}

body#page-top #main #main-inner h2#info-all {
  width: 720px;
}

*html body#page-top #main #main-inner h2#info-all {
  width: 693px;
}

#main #main-inner .idTabs {
  position: relative;
  top: 1px;
}

#main #main-inner .idTabs li {
  float: left;
}

#main #main-inner .idTabs li a {
  display: block;
  background-repeat: no-repeat;
  width: 120px;
}

#main #main-inner #info .idTabs li a {
  background-image: url(/n/common/img/bg-tab-info.png);
}

#main #main-inner .idTabs li.tab01 a {
  background-position: 0;
}

#main #main-inner .idTabs li.tab02 a {
  background-position: -120px 0;
}

#main #main-inner .idTabs li.tab03 a {
  background-position: -240px 0;
}

#main #main-inner .idTabs li a:hover img,
#main #main-inner .idTabs li a.selected img {
  visibility: hidden;
}

*html #main #main-inner .idTabs li a:hover,
*html #main #main-inner .idTabs li a.selected {
  zoom: 1;
}

#main #main-inner .tab-item {
  margin-bottom: 16px;
}

#main #main-inner .tab-item .item {
  padding: 6px;
  border: 1px #ccc solid;
}

#main #main-inner .tab-item .item .item-header {
  margin: 4px 4px 8px 0;
}

#main #main-inner .tab-item .item .item-header .title-line {
  float: left;
}

#main #main-inner .tab-item .item .item-header .see-list {
  float: right;
  text-align: right;
}

#main #main-inner .tab-item .item dl dt {
  float: left;
  clear: left;
  width: 9em;
  margin-bottom: 6px;
}

#main #main-inner .tab-item .item dl dd {
  overflow: hidden;
  margin-bottom: 6px;
}

*html #main #main-inner .tab-item .item dl dt {
  zoom: 1;
}

*html #main #main-inner .tab-item .item dl dd {
  zoom: 1;
}

#main #main-inner .tab-item .item dl dd span {
  float: left;
  width: 6em;
  margin: 0 4px;
  text-align: center;
  font-size: .857143em;
}

#main #main-inner #info .item dl dd span.info {
  padding: 1px;
  background-color: #36f;
  color: #fff;
}

#main #main-inner #info .item dl dd span.news {
  padding: 1px;
  background-color: #f63;
  color: #fff;
}

#main #main-inner #seminar-info .title {
  position: relative;
  top: 1px;
}

*html #main #main-inner #seminar-info .title {
  zoom: 1;
}

*+html #main #main-inner #seminar-info .title {
  zoom: 1;
}

#main #main-inner #seminar-info .item dl dd span {
  background-color: #baf3e0;
  border: 1px #096 solid;
}

#main #main-inner .tab-item .item dl dd p {
  overflow: hidden;
}

*html #main #main-inner .tab-item .item dl dd p {
  zoom: 1;
}

body#page-top #main #sub-inner ul {
  margin: 20px 0 0 0;
}

body#page-top #main #sub-inner ul li {
  margin-bottom: 6px;
  line-height: 0;
}

/* entryBox
-----------------------------------------------------------*/

#entryBox {
  margin-top: 50px;
  border: 1px solid #ddd;
  border-top: none;
}

#entryBox h2 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

#entryBox .netEntry {
  padding: 0 20px;
  overflow: hidden;
}

#entryBox .netEntry .btn01 {
  float: left;
}

#entryBox .netEntry .btn02 {
  float: right;
}

#entryBox .paperEntry {
  padding: 20px 20px;
  overflow: hidden;
}

#entryBox .paperEntry dl.tell {
  float: left;
  width: 60%;
  border: 3px double #ddd;
  border-radius: 4px;
}

#entryBox .paperEntry dl.tell dt {
  background: #6AB3B3;
  padding: 10px;
}

#entryBox .paperEntry dl.tell dd {
  padding: 10px;
}

#entryBox .paperEntry dl.tell dd p.note2 {
  margin-top: 2px;
  text-indent: -1em;
  padding-left: 1em !important;
  text-align: left;
  font-size: 70%;
}

#entryBox .paperEntry dl.store {
  float: right;
  width: 35%;
  border: 3px double #ddd;
  border-radius: 4px;
}

#entryBox .paperEntry dl.store dt {
  background: #ECA899;
  padding: 10px;
}

#entryBox .paperEntry dl.store dd {
  padding: 10px;
}

#entryBox .paperEntry dl dd p {
  margin-top: 5px;
}

#entryBox .paperEntry dl.store dd  p {
  font-size: 80%;
}

#entryBox .paperEntry dl.store dd  p.btn {
  margin: 25px 0;
}

#entryBox .paperEntry dl.store dd p.note2 {
  margin-top: 2px;
  text-indent: -1em;
  padding-left: 1em !important;
  text-align: left;
  font-size: 70%;
}

#entryBox .paperEntry .box03 {
  float: right;
  padding: 10px 0 0 20px;
}

#entryBox .paperEntry .box03 p {
  display: table-cell;
  vertical-align: middle;
  font-size: 80%;
  text-align: right;
}

/* -----------------------------------------------------------
  #sub
    サイド
----------------------------------------------------------- */

#sub {
  float: right;
  width: 220px;
  margin-bottom: 80px;
}

#sub .bnrList {
  margin-top: 15px;
}

#sub .bnrList li {
  list-style-type: none;
}

#sub .item {
  border: 1px solid #ddd;
  margin-top: 20px;
}

#sub .item-title {
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  text-align: center;
  font-size: 85%;
}

#sub .item-body {
  padding: 10px;
  font-size: 70%;
}

#sub .item-body {
  padding: 10px;
  font-size: 70%;
}

#sub .item-body p {
  margin-top: 4px;
}

#locaMenu {
  background: #D7D7D7;
  padding: 2px;
}

#locaMenu ul li {
  border-bottom: 1px dotted #ccc;
  background: #fafafa;
  font-size: 75%;
}

#locaMenu ul li {
  border-top: 1px solid #fff;
  border-bottom: 1px dotted #ddd;
  background: #F1F1F1 url(/n/common/img/locaMenu_bg01.jpg) repeat-x left top;
}

#locaMenu .list-item01-3 li {
  padding: 0;
}

#locaMenu ul li a {
  display: block;
  background: url(/n/common/img/arrow_icon01.png) no-repeat 5px center;
  padding: 10px 8px 10px 30px;
  color: #333;
  text-decoration: none;
}

#locaMenu ul li span {
  display: block;
  font-weight: bold;
  padding: 10px 8px 10px 10px;
}

#locaMenu ul li:hover,
#locaMenu ul li.on,
#locaMenu ul li.current {
  border-bottom: 1px dotted #ddd;
  background: #328B46 repeat-x left top;
}

#locaMenu ul li:hover a,
#locaMenu ul li.on a,
#locaMenu ul li.current a {
  display: block;
  background: url(/n/common/img/arrow_icon07.png) no-repeat 5px center;
  color: #fff;
  text-decoration: none;
}

#locaMenu ul li ul,
#locaMenu ul li.on ul {
  display: none;
  border: none;
}

#locaMenu ul li.current ul {
  display: block;
  border: none;
}

#locaMenu ul li ul li,
#locaMenu ul li.on ul li {
  border-top: 1px dotted #328B46;
  border-bottom: 1px dotted #ddd;
  background: #F0F8D1;
  font-size: 100%;
}

#locaMenu ul li ul li:hover,
#locaMenu ul li ul li.current {
  background: #FBFDF0;
}

#locaMenu ul li ul li a,
#locaMenu ul li.current  ul li a,
#locaMenu ul li.on  ul li a {
  background: url(/n/common/img/arrow_icon08.png) no-repeat 10px center;
  color: #333;
}

#locaMenu ul li ul li:hover a,
#locaMenu ul li ul li.current a {
  display: block;
  background: url(/n/common/img/arrow_icon08.png) no-repeat 10px center;
  color: #328B46;
  text-decoration: none;
}

/* pageTop
-----------------------------------------------------------*/

#pageTop {
  opacity:0;
  position: fixed;
  right: 0;
  bottom: 50px;
}

#pageTop.end {
  position: relative;
  right: 0;
  text-align: right;
  margin-bottom: 30px;
}

/* テーブル */

#main table caption {
  caption-side: top;
  margin: 2px 0;
  font-weight: bold;
  text-align: left;
}

#main h5 {
  margin: 20px 0 8px 0;
  font-weight: normal;
}

#main .cap-item04 h5 {
  margin-top: 5px;
}

.table-2col-left {
  box-sizing: border-box;
  width: 720px;
}

/*----------------------------------------------------
  汎用class
----------------------------------------------------*/

/* クリア */

#main .clear {
  clear: both;
}

/* アライン */

#main p.left {
  text-align: left;
}

#content #main .right {
  text-align: right;
}

#content #main .center,
#content #main table.center th,
#content #main table.center td {
  text-align: center;
}

#content #main .center table,
#content #main .center img {
  margin-left: auto;
  margin-right: auto;
}

#content #main .middle,
#content #main .middle th,
#content #main .middle td {
  vertical-align: middle;
}

/* テキストに下線をひく */

.underline {
  text-decoration: underline;
}

/* テキストインデント */

#main .indent04 {
  padding-left: 1em;
  text-indent: -1em;
}

/* 注意書き（インデント） */

p.note {
  padding-left: 3.6em;
  text-indent: -3.6em;
}

p.note02 {
  padding-left: 3em;
  text-indent: -3em;
}

p.note-e {
  padding-left: 5em;
  text-indent: -5em;
}

/* その他 */

#content #main .nowrap {
  white-space: nowrap;
}

/* 図表 */

#main .figure {
  margin-top: 1em;
  margin-bottom: 1.75em;
  text-align: center;
}

#main .figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 写真 */

#main .photo,
#main .photo2 {
  width: 230px;
  float: right;
  margin: 0 0 0.5em;
  padding: 0 0 10px 10px;
  background-color: #ffffff;
  text-align: center;
}

#main .photo2 {
  width: 250px;
}

#main .photo img,
#main .photo2 img {
  display: block;
  margin: 0;
}

#main .photo .caption,
#main .photo2 .caption {
  margin: 2px auto;
  text-align: center;
  line-height: 1.4;
}

table.photo3 td {
  padding: 5px;
  text-align: center;
}

/* リスト マージン追加 */

#main ul {
  /*  list-style-type:disc;
  margin-left:1.5em;
  margin-top:15px;*/
}

#main ol {
  list-style-type: decimal;
  margin-left: 1.7em;
  margin-top: 15px;
}

#main ul.mb05 li,
#main ol.mb05 li {
  margin-bottom: .5em;
}

#main table ul,
#main table ol {
  list-style-type: none;
}

/* フォーム */

#main input {
  margin-right: 2px;
}

#main input[type="submit"],
#main input[type="reset"],
#main input[type="button"] {
  min-width: 8em;
  margin: 0.5em;
  padding: 3px 10px;
}

#main label {
  margin-right: 2em;
}

#main form .table-2col-left td {
  vertical-align: middle;
}

/* 店舗案内 吹き出し */

.pop a:hover {
  /*マウスが乗ったら*/
  position: relative;
  top: 0px;
  left: 0px;
}

.fukidasipop {
  /*吹き出し本体*/
  position: absolute;
  top: -180px;
  left: -500px;
  display: none;
  /*何も表示しない*/
  padding: 10px;
  /*内側の余白*/
  width: 480px;
  /*ブロックの幅*/
  font-weight: normal;
  /*文字の太さ*/
  text-decoration: none;
  /*文字飾り*/
  color: #000000;
  /*文字色*/
  background-color: #ffffdd;
  /*背景色*/
  border: #CCCCCC solid 2px;
  text-align: left;
  /*        filter: alpha(opacity=85);
-moz-opacity:0.85;
  opacity:0.85;*/
}

.fukidasipop-btn {
  /*吹き出し本体*/
  position: absolute;
  top: -85px;
  left: 10px;
  display: none;
  /*何も表示しない*/
  padding: 15px;
  /*内側の余白*/
  width: 270px;
  /*ブロックの幅*/
  font-weight: normal;
  /*文字の太さ*/
  text-decoration: none;
  /*文字飾り*/
  color: #000000;
  /*文字色*/
  background-color: #ffffdd;
  /*背景色*/
  border: #CCCCCC solid 2px;
  text-align: left;
  font-size: 110%;
  /*        filter: alpha(opacity=85);
-moz-opacity:0.85;
  opacity:0.85;*/
}

a:hover .fukidasipop,
a:hover .fukidasipop-btn {
  display: block;
  /*ブロック要素で表示*/
}

.cen {
  margin: 0 auto;
}

.fukidasipop .bold {
  font-size: 120%;
  font-weight: bold;
}

/* テーブル
  table:セル横指定なし
  table-1col-top:1カラム TH上
  table-5col-top:5カラム TH上
  table-6col-top:6カラム TH上
  table-7col-top:7カラム TH上
  table-8col-top:8カラム TH上
  */

#main .table,
#main .table-1col-top,
#main .table-5col-top,
#main .table-6col-top,
#main .table-7col-top,
#main .table-8col-top,
#main .table-9col-top,
#main .table-11col-top,
#main .table-12col-top,
#main .table-13col-top {
  width: 100%;
  margin: 16px 0;
}

#main .table table,
#main .table-1col-top table,
#main .table-5col-top table,
#main .table-6col-top table,
#main .table-7col-top table,
#main .table-8col-top table,
#main .table-9col-top table,
#main .table-11col-top table,
#main .table-12col-top table,
#main .table-13col-top table {
  width: 100%;
}

#main .table th,
#main .table-1col-top th,
#main .table-5col-top th,
#main .table-5col-top2 th,
#main .table-6col-top th,
#main .table-7col-top th,
#main .table-8col-top th,
#main .table-9col-top th,
#main .table-11col-top th,
#main .table-12col-top th,
#main .table-13col-top th {
  background-color: #f0f0f0;
  text-align: left;
  vertical-align: top;
}

#main .table-5col-top th {
  width: 20%;
}

#main .table-6col-top th,
#main .table-6col-top td {
  width: 16%;
}

#main .table-7col-top th,
#main .table-7col-top td {
  width: 14%;
}

#main .table-8col-top th {
  width: 12%;
}

#main .table-9col-top th {
  width: 10%;
}

#main .table-11col-top th {
  width: 9%;
}

#main .table-12col-top th {
  width: 8%;
}

#main .table-13col-top th {
  width: 6%;
}

#main .table th,
#main .table td,
#main .table-1col-top th,
#main .table-1col-top td,
#main .table-5col-top th,
#main .table-5col-top td,
#main .table-5col-top2 th,
#main .table-5col-top2 td,
#main .table-6col-top th,
#main .table-6col-top td,
#main .table-7col-top th,
#main .table-7col-top td,
#main .table-8col-top th,
#main .table-8col-top td,
#main .table-9col-top th,
#main .table-9col-top td,
#main .table-11col-top th,
#main .table-11col-top td,
#main .table-12col-top th,
#main .table-12col-top td,
#main .table-13col-top th,
#main .table-13col-top td {
  vertical-align: top;
  border: 1px solid #ddd;
  padding: 6px;
}

/* テーブル
   table-3col-left:3カラム TH左
    */

#main .table-3col-left {
  width: 100%;
  margin: 16px 0;
}

#main .table-3col-left table {
  width: 100%;
}

#main .table-3col-left th {
  padding: 10px;
  background-color: #f0f0f0;
  text-align: left;
  vertical-align: top;
  border: 1px solid #ddd;
}

#main .table-3col-left th,
#main .table-3col-left .left {
  width: 15%;
}

#main .table-3col-left td {
  vertical-align: top;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 10px;
}

/* テーブル
  table-3col-left:3カラム TH左
  */

#main .table-3col-left2 {
  width: 100%;
  margin: 16px 0;
}

#main .table-3col-left2 table {
  width: 100%;
}

#main .table-3col-left2 th {
  background-color: #f0f0f0;
  text-align: left;
  vertical-align: top;
}

#main .table-3col-left2 th {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
  border: 1px #dddddd solid;
}

#main .table-3col-left2 td {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
  border: 1px #dddddd solid;
  background: #ffffff;
}

/* list-item02 li 下マージン空ける
    */

#main .list-item02 {
  margin: 0;
  list-style-type: none;
}

#main .list-item02 > li {
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon04.png) no-repeat left 0.3em;
}

#main .list-item02 li.space {
  margin-bottom: 10px;
}

/* ページの先頭へ
    */

.arrow {
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: right;
}

.arrow a {
  padding-left: 15px;
  background: url(/n/common/img/scroll_img.gif) left center no-repeat;
}

/* ｈ3が二行になる場合
    */

#main h3.two-lines {
  height: 50px;
  line-height: 22px;
}

/* ｈ3が二行になる場合
    */

#main p.waku {
  padding: 8px;
  border: 1px solid #dddddd;
}

/*
キャプション 画像>説明 横並び ver2
タイトル付き２カラム枠
*/

.cap-item04 dt {
  background-image: url(/n/common/img/item-list01.gif);
  background-repeat: no-repeat;
  background-position: left .3em;
  padding-left: 14px;
  font-weight: bold;
}

/*
利率テーブル縦横中央
*/

#main .table-4col-top table.rate th,
#main .table-4col-top table.rate td,
#main .table-5col-top table.rate th,
#main .table-5col-top table.rate td,
#main .table-8col-top table.rate th,
#main .table-8col-top table.rate td,
#main .table-9col-top table.rate th,
#main .table-9col-top table.rate td,
#main .table-12col-top table.rate th,
#main .table-12col-top table.rate td,
#main .table-13col-top table.rate th,
#main .table-13col-top table.rate td {
  padding: 2px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #ddd;
}

#main .table-4col-top table.rate th,
#main .table-4col-top table.rate td,
#main .table-5col-top table.rate th,
#main .table-5col-top table.rate td {
  padding: 6px 6px 6px 8px;
}

/*
利率テーブル日付
*/

#main .table-3col-top .date,
#main .table-3col-left .date,
#main .table-5col-top .date,
#main .table-8col-top .date,
#main .table-9col-top .date,
#main .table-12col-top .date,
#main .table-13col-top .date {
  text-align: right;
}

/*
落札情報 日付セル幅調整
*/

#main .table-2col-top th.date {
  width: 20%;
}

/* リストクラスは UL タグに付ける */

.list-item07,
.list-item10,
.list-item11 {
  margin: 4px 0;
  /* 相殺 */
}

.list-item08,
.list-item09,
.list-item12,
.list-item14 {
  margin: 2px 0;
  /* 相殺 */
}

/*td .list-item07,
td .list-item08,
td .list-item09,
td .list-item10,
td .list-item11,
td .list-item12 {
  margin: 0;
}*/

/*
リストアルファベット
*/

.list-item07 li {
  margin-left: 30px;
  list-style: upper-alpha;
}

/*
リスト（注○）等タイトル3.5文字まで
*/

/*list-item08 dt {
  width: 4em;
  float: left;
  .clear: left
}

.list-item08 dd {
  margin-left: 4em;
}*/

.list-item08 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

.list-item08 dt {
  width: 4em;
  padding-top: 4px;
}

.list-item08 dd {
  margin-left: 4em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

/*
リスト（注○）等タイトル2.5文字まで
*/

.list-item09 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

.list-item09 dt {
  width: 3em;
  padding-top: 4px;
}

.list-item09 dd {
  margin-left: 3em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

/*
リスト（注○）等タイトル5文字まで
*/

.list-item12 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

.list-item12 dt {
  width: 5.5em;
  padding-top: 4px;
}

.list-item12 dd {
  margin-left: 6em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

/*
リスト（注○）等タイトル1.5文字まで
*/

.list-item13 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

.list-item13 dt {
  width: 2em;
  padding-top: 4px;
}

.list-item13 dd {
  margin-left: 2em;
  margin-top: -1.4em;
  padding-bottom: 4px;
}

/*
入れ子のリストへのスタイル継承
*/

.list-item13 dd .list-item09 dt {
  width: 3em;
}

.list-item13 dd .list-item09 dd {
  margin-left: 3em;
}

/*
番号リストに入れ子のリストに番号を出さない
*/

#main .list-item04 {
  margin-left: 0;
}

.list-item04 li ul {
  list-style-type: none;
}

.list-item04 .list-item01 li {
  list-style: none;
  margin-left: 0;
}

.list-item01 .list-item02 li {
  list-style: none;
  background-image: none;
  margin-left: -1.5em;
}

.list-item11 .list-item10 li {
  list-style: disc;
  margin-left: 0;
}

/*
入れ子のリストにスタイルを継承させない
*/

.cap-item04 .list-item08 dt,
.cap-item04 .list-item09 dt {
  background-image: none;
  padding-left: 0;
  font-weight: normal;
}

.cap-item04 {
  _background-color: #ffffff;
  /* IE6 */
  _position: relative;
  /* IE6 */
}

/*
リスト黒丸
*/

.list-item10 {
  margin-left: 20px !important;
}

.list-item10 li {
  margin: 0 0 15px;
  padding: 0;
  background-image: none;
  list-style: disc;
}

#main .linkList .list-item10 li {
  padding: 0;
  background-image: none;
  list-style: disc;
}

.list-item16 {
  margin-left: 20px !important;
}

.list-item16 li {
  margin: 0 0 5px;
  padding: 0;
  background-image: none;
  list-style: disc;
}

#main .linkList .list-item16 li {
  padding: 0;
  background-image: none;
  list-style: disc;
}

/*
メルマガ利用規約
*/

.list-item11 li {
  margin-left: 30px;
  list-style-type: decimal;
  margin-bottom: 2em;
}

.list-item11 li ul li {
  margin-bottom: 0;
}

/*
業務運営計画20140612
*/

.list-item21 ul {
  list-style-type: none;
  margin-left: 0px;
}

.list-item22 ul {
  list-style-type: none;
  margin-left: 2em;
}

/* 定義リスト（ddインデントなし）
.list-item14 dt {
  margin-top: 8px;
}

.list-item14 dd {
  margin-bottom: 8px;
}
 */

/*
  マージン
   */

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

/* 文字色 */

.fontRed {
  color: #f00;
}

/* ===================================================================

  追加スタイル 2015.06.11

=================================================================== */

/* p */

.large {
  font-size: 140%;
  font-weight: bold;
}

/* new icon */

.ico-new {
  display: inline-block;
  background-image: url(/n/common/img/new_icon.png);
  text-indent: -999px;
  background-repeat: no-repeat;
  background-position: right center;
  width: 50px;
  height: 15px;
  padding-left: 5px;
}

/* bulb-icon */

.ico-bulb {
  display: inline-block;
  background-image: url(/n/common/img/bulb_icon.png);
  text-indent: -999px;
  background-repeat: no-repeat;
  background-position: right center;
  width: 17px;
  height: 17px;
  margin-right: 2px;
}

/* zip-icon */

.ico-zip {
  display: inline-block;
  background-image: url(/n/common/img/zip_icon.png);
  text-indent: -999px;
  background-repeat: no-repeat;
  background-position: right center;
  width: 17px;
  height: 17px;
  margin-right: 2px;
}

/* blank-icon */

.ico-blank {
  display: inline-block;
  background-image: url(/n/common/img/blank_icon.png);
  text-indent: -999px;
  background-repeat: no-repeat;
  background-position: right center;
  width: 11px;
  height: 11px;
  margin-right: 2px;
}

/* linkBtn */

#main .linkBtns {
  margin-left: 0;
}

#main .linkBtn {
  display: inline-block;
  border: 1px solid #ddd;
  background: url(/n/common/img/btn_bg.png) repeat-x left top;
}

#main .linkBtn a {
  display: block;
  padding: 12px 12px 12px 34px;
  background: url(/n/common/img/arrow_icon01.png) no-repeat 12px center;
  font-size: 90%;
  color: #333;
}

#main .btn-2col {
  text-align: left;
  width: 345px;
  display: inline-block;
  border: 1px solid #ddd;
  background: url(/n/common/img/btn_bg.png) repeat-x left top;
}

#main .btn-2col a {
  display: block;
  padding: 0 0 0 34px;
  background: url(/n/common/img/arrow_icon01.png) no-repeat 12px center;
  font-size: 90%;
  color: #333;
}

#main .btn-3col {
  text-align: left;
  width: 228px;
  display: inline-block;
  border: 1px solid #ddd;
  background: url(/n/common/img/btn_bg.png) repeat-x left top;
}

#main .btn-3col a {
  display: block;
  padding: 0 0 0 34px;
  background: url(/n/common/img/arrow_icon01.png) no-repeat 12px center;
  font-size: 90%;
  color: #333;
}

/* link-arrow */

#main .link-arrow {
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon03.png) no-repeat left 0.3em;
}

/* loaclLinks */

#main .loaclLinks {
  margin-left: 0;
  overflow: hidden;
}

#main .loaclLinks li {
  float: left;
  list-style-type: none;
  padding-right: 15px;
  white-space: nowrap;
  margin-bottom: 8px;
}

#main .loaclLinks li a {
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon04.png) no-repeat left 0.3em;
}

/* link_pdf */

#main .link_pdf {
  padding-left: 20px;
  background: url(/n/common/img/pdf_icon.png) no-repeat left 1px;
}

.lnk-icon-pdf {
  padding-left: 20px;
  background: url(/n/common/img/pdf_icon.png) no-repeat left 1px;
}

#main .lnk-list-pdf li {
  padding-left: 20px;
  background: url(/n/common/img/pdf_icon.png) no-repeat left 1px;
}

/* link_xls */

#main .lnk-list-xls li {
  padding-left: 20px;
  background: url(/n/common/img/icon_xls.gif) no-repeat left 1px;
}

.lnk-icon-xls {
  padding-left: 20px;
  background: url(/n/common/img/icon_xls.gif) no-repeat left 1px;
}

#main .lnk-icon-xls  li {
  padding-left: 20px;
  background: url(/n/common/img/icon_xls.gif) no-repeat left 1px;
}

/* link_doc */

#main .lnk-list-doc li {
  padding-left: 20px;
  background: url(/n/common/img/icon_doc.gif) no-repeat left 1px;
}

/* link_zip */

#main .link_zip {
  padding-left: 20px;
  background: url(/n/common/img/zip_icon.png) no-repeat left 1px;
}

#main .lnk-list-zip li {
  padding-left: 20px;
  background: url(/n/common/img/zip_icon.png) no-repeat left 1px;
}

/* link_blank */

#main .link_blank {
  padding-left: 16px;
  background: url(/n/common/img/blank_icon.png) no-repeat left 0.3em;
}

#main .lnk-list-blank li {
  padding-left: 20px;
  background: url(/n/common/img/blank_icon.png) no-repeat left 1px;
}

/* link_open */

#main .link_open {
  padding-left: 16px;
  background: url(/n/common/img/icon_open2.png) no-repeat left 0.2em;
}

#main .link_open.close {
  padding-left: 16px;
  background: url(/n/common/img/icon_close2.png) no-repeat left 0.2em;
}

/* pagetop */

#main .pagetop {
  text-align: right;
  margin-top: 1em;
  margin-bottom: 1em;
}

#main .pagetop a {
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon05.png) no-repeat left 0.2em;
}

/* largeBtn */

#main .largeBtn {
  text-align: center;
  margin-top: 20px;
}

/* linkList */

#main .linkList {
  margin-left: 0;
  padding: 8px 0;
  list-style-type: none;
}

#main .linkList li {
  list-style-type: none;
  margin: 0 0 0 5px;
  padding-left: 18px;
  background: url(/n/common/img/arrow_icon03.png) no-repeat left 0.3em;
}

#main .linkList ul {
  margin: 0;
}

#main .linkList .list-item02 li {
  list-style: none;
  background-image: none;
  margin-left: -1.5em;
}

/* 中小企業だより */

.list-info {
  margin: 8px 0;
  /* 相殺 */
}

.list-info li {
  margin: 15px 0 0 5px;
  padding-left: 18px;
  background: url(/n/common/img/arrow_icon03.png) no-repeat left 0.3em;
}

.list-info li li {
  margin-top: 0;
}

.list-info .list-item02 li {
  list-style: none;
  background-image: none;
  margin-left: -0.5em;
}

/* table type01 */

#main table.type01 {
  margin-top: 20px;
  width: 100%;
}

#main table.type01 th {
  background: #f0f0f0;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

#main table.type01 td {
  border: 1px solid #ddd;
  padding: 10px;
}

/* table orangeType */

#main table.orangeType {
  margin-top: 15px;
  width: 100%;
  line-height: 1.3;
  margin-top: 5px;
  padding: 4px;
}

#main table.orangeType th {
  padding: 8px;
  text-align: left;
  color: #fff;
  background: #F8AE3A;
  border: 1px solid #FF5100;
}

#main table.orangeType th a {
  color: #fff;
}

#main table.orangeType th a.popup {
  background-image: url(/n/common/img/popup_icon01.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
}

#main table.orangeType .s-text {
  line-height: 1.3;
  font-weight: normal;
  font-size: 11px;
}

#main table.orangeType td {
  text-align: center;
  border: 1px solid #FF5100;
  padding: 5px;
}

#main table.orangeType .bg1 {
  background-color: #fee3b0;
  font-weight: bold;
  text-align: center;
}

#main table.orangeType .notice {
  font-size: 11px;
  color: #666666;
}

/* table greenType */

#main table.greenType {
  width: 100%;
  line-height: 1.3;
  margin-top: 5px;
  padding: 4px;
}

#main table.greenType th {
  padding: 8px;
  text-align: center;
  color: #fff;
  background: #F8AE3A;
  border: 1px solid #CCCCCC;
  font-weight: bold;
}

#main table.greenType th a {
  color: #fff;
}

#main table.greenType th a.popup {
  background-image: url(/n/common/img/popup_icon01.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
}

#main table.greenType .s-text {
  line-height: 1.3;
  font-weight: normal;
  font-size: 11px;
}

#main table.greenType td {
  color: #333333;
  border: 1px solid #CCCCCC;
  padding: 8px;
  text-align: left;
}

#main table.greenType td .period {
  display: block;
  text-align: center;
}

#main table.greenType .bg1 {
  background-color: #fee3b0;
  font-weight: bold;
  text-align: center;
}

/* table formType */

#main table.formType {
  width: 100%;
}

#main table.formType td,
#main table.formType th {
  border: 1px solid #ccc;
  padding: 18px 10px;
  line-height: 1.4;
}

#main table.formType th {
  width: 160px;
  font-weight: normal;
  background: #f0f0f0;
  text-align: left;
}

#main table.formType th.bg1 {
  background: #666;
  color: #fff;
  border: 1px solid #444;
  padding: 10px;
}

#main table.formType th .must {
  color: #F00;
  display: block;
  margin-top: 5px;
}

#main table.formType td {
  background: #fff;
  vertical-align: middle;
}

#main table.formType * {
  font-size: 100%;
}

#main table.formType ul {
  list-style-type: none;
  overflow: hidden;
}

#main table.formType ul li {
  float: left;
  margin: 0px 15px 3px 0;
}

#main table.formType input {
  vertical-align: auto;
  font-size: 100%;
  padding: 2px;
}

#main table.formType .full {
  width: 95%;
}

#main table.formType .addressBox {
  margin: 8px 0;
}

#main table.formType select {
  font-size: 100%;
  padding: 2px;
}

.formBox p em {
  display: block;
  font-style: normal;
  color: #F00;
  padding-top: 10px;
}

.formBox .consent {
  margin-top: 22px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 130%;
}

#main table.formType .note {
  color: #555;
  font-size: 90%;
  margin-top: 10px;
}

#main .textBox {
  overflow: hidden;
}

#main .textBox .textArea {
  width: 450px;
  float: left;
}

#main .textBox .photoArea {
  float: right;
}

/* phots */

#main .phots {
  overflow: hidden;
  margin-left: 0;
}

#main .phots  li.photoLeft {
  float: left;
  width: 48%;
  list-style-type: none;
}

#main .phots  li.photoRight {
  float: right;
  width: 48%;
  list-style-type: none;
}

#main .phots  li img {
  width: 100%;
  height: auto !important;
}

/* box */

#main .box01 {
  border: 2px solid #D6E384;
  padding: 15px;
  margin-top: 15px;
}

#main .box02 {
  border: 3px double #ddd;
  border-radius: 4px;
  padding: 2%;
}

#main .box02 ul {
  margin: 0;
}

#main .box02 li {
  font-size: 85%;
  padding-left: 18px;
  margin-top: 5px;
  background: url(/n/common/img/share_check_gr.png) no-repeat left 2px;
  line-height: 1.5;
  list-style-type: none;
}

/* columBox */

#main .columBox {
  overflow: hidden;
}

#main .columBox .leftColum {
  float: left;
  width: 48%;
  border: 3px double #ddd;
  border-radius: 4px;
}

#main .columBox .leftColum dt {
  background: #118411;
  padding: 10px;
  color: #fff;
}

#main .columBox .leftColum dd {
  padding: 15px;
}

#main .columBox {
  overflow: hidden;
}

#main .columBox .rightColum {
  float: right;
  width: 48%;
  border: 3px double #ddd;
  border-radius: 4px;
}

#main .columBox .rightColum dt {
  background: #118411;
  padding: 10px;
  color: #fff;
}

#main .columBox .rightColum dd {
  padding: 15px;
}

/* newsBox */

#main .newsBox {
  margin-top: 20px;
  border-top: 2px solid #6AB547;
}

#main .newsBox th {
  background: #EFEFEF;
  padding: 10px;
  vertical-align: top;
}

#main .newsBox td {
  background: #FFF;
  padding: 0 15px;
}

#main .newsBox td.open {
  background: #FFF;
  padding: 0 15px;
}

#main .newsBox td  ul {
  list-style-type: none;
  margin-left: 0;
  margin-top: 0;
}

#main .newsBox td  ul li {
  border-bottom: 2px dotted #ccc;
  padding: 12px 0;
  list-style-type: none;
}

#main .newsBox td  ul li:last-child {
  border-bottom: none;
}

/* newsArea
------------------------------------------------------------------*/

#main .newsArea {
  margin-bottom: 30px;
}

#main .newsArea .newsBox {
  width: 100%;
  border-top: 2px solid #6AB547;
}

#main .newsArea .newsBox th {
  background: #E7F3E1;
  padding: 10px;
  vertical-align: top;
  text-align: left;
  width: 150px;
}

#main .newsArea .newsBox th .more {
  margin-top: 10px;
}

#main .newsArea .newsBox td {
  padding: 10px 0;
}

#main .newsArea .newsBox td.open {
  background: #FFF;
  padding: 0 15px;
}

#main .newsArea .newsBox td  dl {
  list-style-type: none;
}

#main .newsArea .newsBox  dt {
  font-size: 90%;
  line-height: 1.1;
  padding-bottom: 5px;
  padding-top: 10px;
}

#main .newsArea .newsBox  dt span {
  display: inline-block;
  padding: 1px 4px 2px;
  font-size: 70%;
  margin-left: 10px;
  min-width: 90px;
  text-align: center;
}

#main .newsArea .newsBox  .cat01 {
  border: 1px solid #ED5F06;
  color: #ED5F06;
}

#main .newsArea .newsBox  .cat02 {
  border: 1px solid #437DC5;
  color: #437DC5;
}

#main .newsArea .newsBox  dd {
  border-bottom: 1px dotted #aaa;
  padding-bottom: 10px;
  overflow: hidden;
  font-size: 90%;
}

#main .newsArea .newsBox dl:last-child  dd {
  border-bottom: none;
  padding-bottom: 10px;
  overflow: hidden;
  font-size: 90%;
}

#main .newsArea .newsBox dl dd a {
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon03.png) no-repeat left 4.5px;
}

#main .newsArea .newsBox  dd span {
  float: right;
  font-size: 80%;
}

#main .newsArea .newsBox  dd .label01 {
  color: #A13004;
}

#main .newsArea .newsBox  dd .label02 {
  color: #85BA50;
}

#main .newsArea .newsBox  dd .label03 {
  color: #4879AE;
}

#main .newsArea .newsBox  dd .label04 {
  color: #9561A9;
}

/* お問い合わせ先　*/

.font_l5 {
  border: 2px solid #FF9900;
  background-color: #FFFF75;
  text-align: left;
  padding: 10px 10px;
}

.inq_box {
  border: 1px #dddddd solid;
  background-color: #F5FDEE;
  padding: 15px 10px 10px;
}

/* 利用の流れ*/

#main .newflow {
  padding: 20px;
  width: 680px;
  clear: both;
  display: block;
}

#main .newflow_onkyuu {
  padding: 20px 20px 20px 0px;
  width: 680px;
  clear: both;
  display: block;
}

#main .newflow .float-r {
  padding-left: 20px;
  width: 500px;
}

#main .newflow2 {
  padding: 20px;
  width: 600px;
  clear: both;
  display: block;
}

#main .newflow2 .float-r {
  width: 395px;
  margin-left: 5px;
}

/* .sec6 お知らせ  */

#page-finance #main .sec6 {
  margin-bottom: 25px;
}

#page-finance #main .sec6 .info-box {
  height: 70px;
  margin-bottom: 15px;
  padding: 13px 20px 0 160px;
  background: url(/n/finance/search/img/ippan/share_info_box.jpg) no-repeat left top;
}

#page-finance #main .sec6 h2 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #008500;
}

/* 写真つき段落 */

#page-finance .paragraph-box {
  width: 720px;
  margin-bottom: 8px;
}

#page-finance .paragraph-box .txt {
  width: 540px;
  float: left;
}

#page-finance .paragraph-box .photo {
  width: 180px;
  float: right;
}

.line01 {
  padding-top: 1px;
  background: url(/n/service/img/line01.gif) 0 0 repeat-x;
}

.line02 {
  background: url(/n/service/img/line01.gif) 0 50% repeat-x;
}

/* Hides from IE-mac \*/

.explanation01,
.explanation02 {
  display: inline-block;
  min-height: 1%;
}

.explanation01 {
  width: 720px;
  margin-bottom: 15px;
}

.explanation01 .ex-text {
  float: right;
  width: 600px;
  margin-top: -0.2em;
}

.explanation01 .ex-thumb {
  float: left;
  margin-right: 10px;
  width: 100px;
}

.explanation02 {
  width: 720px;
}

.explanation02 .ex-text {
  float: right;
  width: 495px;
  margin-top: 3px;
}

.explanation02 .ex-text02 {
  float: right;
  width: 495px;
  margin-top: 3px;
}

.explanation02 .ex-thumb {
  float: left;
  margin: 5px;
}

.lnk-icon01 {
  margin: 0;
  /* 相殺 */
  padding-left: 18px;
  background: url(/n/common/img/arrow_icon03.png) no-repeat left 0.3em;
  background-repeat: no-repeat;
  background-position: left .3em;
}

.show-box-faq {
  display: none;
  width: 650px;
  margin: 5px 0 10px 20px;
  padding: 10px;
  background-color: #ecf8e3;
  border: 1px solid #419b00;
}

.detail {
  text-align: right;
}

.detail a {
  padding-left: 18px;
  background: url(/n/common/img/arrow_icon03.png) no-repeat left 0.3em;
  background-repeat: no-repeat;
  background-position: left .3em;
}

#page-finance .btn {
  display: block;
  float: left;
  /*Box幅がテキストに追従させるために*/
  background: url(/n/finance/keiei/img/btn_red.gif) no-repeat left top;
  padding: 0 0 0 20px;
  /*右の背景とかぶらないように*/
  text-decoration: none;
}

#page-finance .btn span {
  display: block;
  background: url(/n/finance/keiei/img/btn_red.gif) no-repeat right top;
  padding: 0 20px 0 0;
  /*左の背景とかぶらないように*/
  font-size: 14px;
  line-height: 32px;
  /*50pxの真ん中にテキストがくるように*/
  color: #333;
}

#page-finance a:hover.btn {
  /*マウスをのせたとき*/
  color: #333;
  font-style: normal;
  text-decoration: underline;
}

/* 融資制度一覧から探す */

#page-finance .table-finance table td {
  /*border-bottom: 0px #FFFFFF solid;*/
}

#page-finance .table-finance {
  border-bottom: 1px #DDDDDD solid;
  font-size: 13px;
}

#page-finance .spShow {
  display: none;
}

#page-finance .ttl_finance {
  border-bottom: 0px solid #FFFFFF;
}

#page-finance .ttl_finance th {
  text-align: center;
  font-weight: normal;
  background: #EAF0BD;
  border-bottom: 0px solid #FFFFFF;
}

/* flow */

#page-flow .flow p {
  margin: 0;
  line-height: 0;
}

/*---------------------------------------------
 まずは何から始めたら・・
---------------------------------------------*/

.checkj_c {
  padding: 20px;
  width: 680px;
  clear: both;
  display: block;
}

.checkj_c .float-r {
  padding-left: 10px;
  width: 400px;
}

/*---------------------------------------------
 シミュレーション・相談・予約（オンラインサービス）農林事業
---------------------------------------------*/

#FinanceFlow .section {
  background: url("/n/service/img/finaflow_bg02.gif") no-repeat scroll 0 100% transparent;
  margin: 0;
  padding-bottom: 25px;
}

#FinanceFlow .wrap {
  background: url("/n/service/img/finaflow_bg01.gif") repeat-y scroll 0 0 transparent;
  padding: 10px 0 0 35px;
  margin: 0;
  font-size: 100%;
}

#FinanceFlow div.section.last-child .wrap {
  background: none repeat scroll 0 0 transparent;
}

#FinanceFlow div.section.last-child {
  background: none repeat scroll 0 0 transparent;
}

#FinanceFlow .figure {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  border: medium none;
  font-size: 100%;
}

#FinanceFlow p {
  line-height: 1.4;
}

#FinanceFlow img {
  margin: 0;
  font-size: 100%;
  padding: 0;
  display: block;
}

/*---------------------------------------------
 融資のご案内
---------------------------------------------*/

/* 農業アドバイザー */

.keiei_nogyou_h2 {
  display: table-cell;
  background-image: url(../img/bg-h2-k_nog.gif);
  background-repeat: no-repeat;
  width: 517px;
  /* 525px */
  height: 44px;
  padding: 0 0 0 8px;
  line-height: 1.1;
  vertical-align: middle;
  font-size: 1.071429em;
  /* 15px */
  font-weight: bold;
}

/* 農業アドバイザー　追加 */

#main .table-2col-top_nogyou {
  width: 100%;
}

#main .table-2col-top_nogyou table {
  width: 100%;
}

#main .table-2col-top_nogyou th {
  background-color: #c0c0c0;
  text-align: left;
  vertical-align: top;
}

#main .table-2col-top_nogyou .left {
  width: 25%;
}

#main .table-2col-top_nogyou .right-ad {
  width: 80%;
}

#main .table-2col-top_nogyou td {
  padding: 6px 6px 6px 8px;
  vertical-align: top;
}

/* 画像に隙間が出る問題 */

td a img {
  display: block;
}

/*---------------------------------------------
 日本政策金融公庫について　ガバナンス体制
---------------------------------------------*/

#CollapsiblePanel1,
#CollapsiblePanel2 {
  display: inline;
}

.CollapsiblePanelTab {
  color: #0071bc;
  cursor: pointer;
}

.CollapsiblePanelTab:hover {
  text-decoration: underline;
}

/*---------------------------------------------
 刊行物・各種調査結果
---------------------------------------------*/

.findings-index {
  width: 730px;
  margin: 0 -10px 0 0;
  overflow: hidden;
}

/* AFCフォーラム */

.afc dt {
  width: 160px;
  float: left;
  margin-bottom: 1em;
}

.afc dd {
  float: left;
  padding: 20px;
}

/* 中小企業だより */

.list-info {
  margin: 8px 0;
  /* 相殺 */
}

.list-info li {
  background-image: url(/n/common/img/item-list01.gif);
  background-repeat: no-repeat;
  background-position: left .3em;
  margin-left: 6px;
  margin-top: 15px;
  padding-left: 14px;
}

.list-info li li {
  margin-top: 0;
}

.list-info .list-item02 li {
  list-style: none;
  background-image: none;
  margin-left: -0.5em;
}

/*---------------------------------------------
 調査月報
---------------------------------------------*/

.geppou {
  padding: 20px;
}

.geppou:after {
  content: '';
  clear: both;
  display: block;
}

.geppou-list {
  padding-top: 10px;
  clear: both;
}

/* -----------------------------------------------------------
  #side
    サイド
----------------------------------------------------------- */

#side {
  float: right;
  width: 220px;
}

#page-english #main #side-inner {
  /* 1カラムの中での段組サイド */
  float: right;
  width: 220px;
}

#side .item-body {
  background: #D7D7D7;
  padding: 2px;
}

#side .item-body ul {
  border: 1px solid #328B46;
}

#side .item-body li {
  border-top: 1px solid #fff;
  border-bottom: 1px dotted #ddd;
  background: #F1F1F1 url("/n/common/img/locaMenu_bg01.jpg") repeat-x left top;
}

#side .item-body li a {
  display: block;
  background: url("/n/common/img/arrow_icon01.png") no-repeat 5px center;
  padding: 8px 8px 8px 30px;
  color: #333;
  text-decoration: none;
}

#side .item-body li.nest span {
  background: url("/n/common/img/arrow_icon01.png") no-repeat 5px center;
  display: block;
  padding: 8px 8px 8px 30px;
  color: #333;
  text-decoration: none;
}

#side .item-body li.current {
  border-bottom: 1px dotted #ddd;
  background: #328B46 repeat-x left top;
}

#side .item-body ul li.current a {
  display: block;
  background: url(/n/common/img/arrow_icon07.png) no-repeat 5px center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

#side .item-body ul li ul,
#side .item-body ul li.on ul {
  border: none;
}

#side .item-body ul li ul li,
#side .item-body ul li.on ul li {
  border-top: 1px dotted #328B46;
  border-bottom: 1px dotted #ddd;
  background: #F0F8D1;
  font-size: 100%;
}

#side .item-body ul li ul li:hover,
#side .item-body ul li ul li.current {
  background: #FBFDF0;
}

#side .item-body ul li ul li a,
#side .item-body ul li.current  ul li a,
#side .item-body ul li.on  ul li a {
  background: url(/n/common/img/arrow_icon08.png) no-repeat 10px center;
  color: #333;
}

#side .item-body ul li ul li:hover a,
#side .item-body ul li ul li.current a {
  display: block;
  background: url(/n/common/img/arrow_icon08.png) no-repeat 10px center;
  color: #328B46;
  text-decoration: none;
}

#side .item .list-item01-3 li {
  padding: 0;
}

#side .item h2 {
  background-image: none;
  background-color: #008500;
  height: auto;
  padding-left: 0;
  font-weight: normal;
  color: #fff;
  border: 1px #008500 solid;
}

#side .item h2 span {
  display: block;
  background-color: #008500;
  padding: 6px 6px 6px 8px;
  line-height: 1.4;
  border: 1px #fff solid;
}

#side-inner .item h3 {
  margin: 0;
}

#side:after {
  content: "";
  display: block;
  clear: both;
}

/* -----------------------------------------------------------
  ローンシミュレーター
----------------------------------------------------------- */

#main #sim {
  display: block;
}

#main #sim .error {
  margin: 10px 0;
  color: #F00;
  display: none;
}

#main #result {
  display: none;
}

#main .blockSimulation th,
#main .blockSimulation td {
  padding: 15px !important;
  text-align: left !important;
}

#main .blockSimulation td .short {
  width: 90px;
}

#main .btnSimulation {
  margin: 25px 0;
  text-align: center;
}



#main .simlationNotice .notice {
  list-style: disc;
  margin: 0 0 50px 20px;
  padding-left: 20px;
}

#main .simlationNotice .notice li {
  margin: 0 0 20px;
}



#main .simlationNotice .blockInquiry {
  border: 1px solid #DDDDDD;
  padding: 0;
}

#main .simlationNotice .btnInquiry {
  text-align: center;
  padding: 10px 0 20px;
}

#main .simlationNotice h3 {
  width: 718px;
  height: 88px;
  text-indent: -9999px;
  margin: 0;
  padding: 0;
  border-width: 0;
  background: none;
  background: url(/n/service/img/ttl_sim_01.jpg) no-repeat;
}

#main .simlationNotice h4 {
  margin: 0;
  padding: 0;
  border-width: 0;
  background: none;
  text-indent: -9999px;
}

#main .simlationNotice .unitLeft h4 {
  width: 375px;
  height: 37px;
  background: url(/n/service/img/ttl_sim_02.png) no-repeat;
}

#main .simlationNotice .unitRight h4 {
  width: 293px;
  height: 37px;
  background: url(/n/service/img/ttl_sim_03.png) no-repeat;
}

#main .simlationNotice h4 img {
  display: block;
}

#main .simlationNotice .innerInquiry {
  width: 682px;
  margin: 0 auto;
}

#main .simlationNotice .innerInquiry:after {
  content: '';
  display: block;
  clear: both;
}

#main .simlationNotice .unitLeft {
  float: left;
  width: 375px;
}

#main .simlationNotice .unitLeft p {
  width: 375px;
  height: 209px;
  background: url(/n/service/img/cont_sim_01.png) no-repeat;
  text-indent: -9999px;
}

#main .simlationNotice .unitRight {
  font-size: 13px;
  float: right;
  width: 293px;
  background: url(/n/service/img/bg_sim_01.png) no-repeat 0 100%;
}

#main .simlationNotice .unitRight .inner {
  padding: 10px;
}

#main .simlationNotice .unitRight .inner .text {
  padding: 2px 5px 3px;
}

#main .simlationNotice .unitRight .btnSearchShop {
  padding: 20px;
  text-align: center;
}

#main .simlationNotice .unitRight .btnSearchShop a {
  display: block;
  width: 248px;
  height: 113px;
  margin: 0 auto;
  background: url(/n/service/img/btn_sim_03.jpg) no-repeat 0 0;
  text-indent: -9999px;
}

#main .simlationNotice .blockInquiry ul {
  font-size: 11px;
  padding: 10px 20px;
}

#main .simlationNotice .blockInquiry li {
  margin: 0 0 5px;
}

#main .blockSimulationResult .orangeType th,
#main .blockSimulationResult .orangeType td {
  padding: 15px;
  text-align: left;
}

#main .innerConditions {
  margin: 0 0 40px;
}

#main .innerConditions:after {
  display: block;
  content: "";
  clear: both;
}

#main #resultConditions {
  width: 420px;
  float: left;
}

#main .btnRecalc {
  position: relative;
  width: 214px;
  float: right;
  top: 305px;
}

#main .resultAmount {
  margin: 0 0 30px;
}

#main .resultAmount .orangeType th {
  width: 180px;
}

#main .resultAmount .orangeType td {
  text-align: right;
}

#main .resultAmount .amount {
  font-size: 18px;
  font-weight: bold;
}

#main .resultTable .greenType th {
  background: #EAF0BD;
  color: #000000;
}

#main .resultGraph {
  position: relative;
  width: 692px;
  height: 225px;
  margin: 0 0 30px;
}

#main .rule {
  position: absolute;
  width: 692px;
  height: 225px;
  background: url(/n/service/img/bg_graph_01.png) no-repeat 0 100%;
  z-index: 10;
}

#main .resultGraph .unit {
  position: absolute;
  top: 47px;
  left: 12px;
  width: 25px;
  height: 162px;
}

#main .resultGraph .unit .interest {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 25px;
  height: 120px;
  background: url(/n/service/img/bg_graph_unit_01.png) no-repeat 100% 0;
}

#main .resultGraph .unit .principal {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 25px;
  height: 120px;
  background: url(/n/service/img/graph_unit_01.png) no-repeat 0 100%;
}

.detailArea {
  display: block;
}

/*---------------------------------------------
 教育ローンシミュレーター
---------------------------------------------*/

#main .error_mes_box {
  margin: 5px 0 20px 0;
  padding-top: 4px;
  background: url(/n/finance/search/img/sim/error_mes_bgt.gif) no-repeat left top;
}

#main .error_mes_box .bgb {
  padding-bottom: 4px;
  background: url(/n/finance/search/img/sim/error_mes_bgb.gif) no-repeat left bottom;
}

#main .error_mes_box .bgm {
  background: url(/n/finance/search/img/sim/error_mes_bgm.gif) repeat-y left top;
  color: #ff3f06;
  padding: 8px 12px;
}

#main .error_text {
  background: url(/n/finance/search/img/sim/icon_ex.gif) no-repeat left 2px;
  color: #ff3f06;
  padding-left: 20px;
  font-weight: bold;
}

/* table-orange */

#main .table-orange .none-bdr {
  border-right: none;
}

#main .table-orange .none-bdl {
  border-left: none;
}

#main .table-orange .none-bdt {
  border-top: none;
}

#main .table-orange .none-bdb {
  border-bottom: none;
}

#main .table-orange .s-text {
  font-weight: normal;
}

/* sec1 */

#main .sec1 {
  margin-bottom: 32px;
}

#main .sec1 .table-orange .col1 {
  width: 241px;
}

#main .table-orange .dotted-b {
  border-bottom: 1px dotted #ff5301;
}

#main .table-orange .none-b {
  border-width: 0px;
}

#main .table-orange .dotted-t {
  border-top: 1px dotted #ff5301;
}

#main .sec1 .table-orange th,
#main .sec1 .table-orange td {
  padding: 15px;
}

#main .sec1 .table-orange th {
  border-right: none;
  text-align: left;
}

#main .sec1 .table-orange th .text {
  display: block;
  float: left;
}

#main .sec1 .table-orange th .req {
  display: block;
  float: right;
  padding-right: 10px;
  padding-top: 2px;
}

#main .sec1 .table-orange th .op {
  display: block;
  float: right;
  padding-right: 10px;
  padding-top: 2px;
}

#main .sec1 .table-orange #text1 {
  width: 146px;
  /*line-height: 26px;*/
  margin-right: 10px;
}

#main .sec1 .table-orange #select1,
#main .sec1 .table-orange #select2 {
  width: 90px;
  margin-right: 5px;
  font-size: 16px;
  border: 1px solid #666666;
}

#main .sec1 .table-orange #select2 {
  margin-left: 25px;
}

#main .sec1 .table-orange #check1 {
  margin-right: 10px;
}

#main .sec1 .btn-calc {
  margin-top: 27px;
  text-align: center;
}

#main .sec1 .table-orange .radio_text {
  margin-bottom: 10px;
}

#main .sec1 .table-orange .radio_text input,
#main .sec1 .table-orange .radio_text input {
  margin-right: 15px;
}

#main .sec1 .table-orange .arrow_box {
  margin-top: 10px;
  padding-top: 4px;
  padding-left: 78px;
  background: url(/n/finance/search/img/sim/arrow1.gif) no-repeat 30px top;
}

#main .sec1 .table-orange #select3 {
  margin: 0 10px;
}

#main .sec1 .table-orange #select4,
#main .sec1 .table-orange #select5 {
  width: 90px;
  margin-right: 5px;
  font-size: 16px;
  border: 1px solid #666666;
}

#main .sec1 .table-orange #select5 {
  margin-left: 25px;
}

#main .sec1 .table-orange .inner-table {
  border: none;
}

#main .sec1 .table-orange .inner-table td {
  width: 45%;
  border: none;
  padding: 0;
}

#main .sec1 .table-orange .inner-table label {
  display: block;
  margin: 0 0.5em 0 0;
}

#main .sec1 .table-orange .inner-table td.col1 {
  width: 1%;
}

#main .sec1 .table-orange .checklist li {
  margin: 10px 0;
}

#main .sec1 .table-orange .checklist li label.check {
  margin: 0 0.5em 0 0;
}

#main .sec1 .table-orange .checklist li .s-text {
  display: block;
}

#main .sec1 .table-orange .detail-table {
  display: none;
}

/* sec2 */

#main .sec2 {
  margin-bottom: 30px;
}

#main .sec2 .box-gray {
  margin: 0;
}

#main .sec2 .box-gray-list {
  list-style-type: disc;
}

#main .sec2 .box-gray-list li {
  margin: 0 0 15px;
}

/* result_sec */

#main .result_sec {
  margin-bottom: 32px;
}

#main .result_sec .col_box {
  position: relative;
}

#main .result_sec .col1 {
  float: left;
}

#main .result_sec .col2 {
  float: right;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #CCC;
}

#main .result_sec .table-orange {
  position: relative;
  width: 360px;
}

#main .result_sec .table-orange .colg1,
#main .result_sec .table-orange .colg2 {
  width: 50%;
}

#main .result_sec .table-orange th,
#main .result_sec .table-orange td {
  padding: 10px;
  white-space: nowrap;
}

#main .result_sec .table-orange th {
  text-align: left;
}

#main .result_sec .table-orange .th1 {
  white-space: nowrap;
  background: #FDE2B3;
}

#main .result_sec .table-orange th.th1 {
  color: #333333;
}

#main .result_sec .table-orange td {
  padding-right: 30px;
  text-align: right;
}

#main .result_sec .table-orange .num {
  font-weight: bold;
  font-size: 18px;
}

#main .result_sec .table-orange .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -52px;
  margin: auto;
  height: 32px;
}

#main .result_sec .col2 .inner {
  padding: 108px 24px;
}

#main .result_sec .col2 .text {
  font-size: 16px;
  font-weight: bold;
  color: #FF5000;
  margin-bottom: 20px;
}

/*--------------------

開示請求手続きの流れ

--------------------*/

.flowBoxInfo {
  position: relative;
  background: url(../../publicinfo/img/bg_info_dr-flow.gif) no-repeat left top;
  padding: 14px 0 0 13px;
  height: 225px;
  width: 667px;
}

.flowBoxInfo li {
  float: left;
}

.flowBoxInfo li img {
  vertical-align: bottom;
}

.flowBoxInfo li.flow1 {
  margin: 0 14px 20px 0;
}

.flowBoxInfo li.flow2 {
  margin: 0 13px 20px 0;
}

.flowBoxInfo li.flow3 {
  margin: 0 13px 20px 0;
}

.flowBoxInfo li.flow4 {
  margin: 0 12px 20px 0;
}

.flowBoxInfo li.flow6 {
  margin: 0 13px 0 15px;
}

.flowBoxInfo li.flow6-2 {
  position: absolute;
  left: 43px;
  top: 153px;
}

.flowBoxInfo li.flow7 {
  margin: 0 13px 0 0;
}

.flowBoxInfo li.flow8 {
  margin: 0 12px 0 0;
}

.flowBoxInfo li.flow9 {
  margin: 2px 0 0 0;
}

.flowBoxPrivacy {
  position: relative;
  background: url(../../publicinfo/img/bg_privacy_dr-flow.gif) no-repeat left top;
  padding: 14px 0 0 13px;
  height: 225px;
  height: 225px;
  width: 667px;
}

.flowBoxPrivacy li {
  float: left;
}

.flowBoxPrivacy li img {
  vertical-align: bottom;
}

.flowBoxPrivacy li.flow1 {
  margin: 0 15px 21px 0;
}

.flowBoxPrivacy li.flow2 {
  margin: 0 13px 21px 0;
}

.flowBoxPrivacy li.flow3 {
  margin: 0 13px 21px 0;
}

.flowBoxPrivacy li.flow4 {
  margin: 0 13px 21px 0;
}

.flowBoxPrivacy li.flow6 {
  margin: 0 14px 0 16px;
}

.flowBoxPrivacy li.flow6-2 {
  position: absolute;
  left: 45px;
  top: 154px;
}

.flowBoxPrivacy li.flow7 {
  margin: 0 13px 0 0;
}

.flowBoxPrivacy li.flow8 {
  margin: 0 12px 0 0;
}

/* お問い合わせ先　*/

.font_l5 {
  border: 2px solid #FF9900;
  background-color: #FFFF75;
  text-align: left;
  padding: 10px 10px;
}

.inq_box {
  border: 1px #808080 solid;
  background-color: #F5FDEE;
  padding: 15px 10px 10px;
}

/* ご意見箱 20140519追記*/

#main div.dialboxWrapper {
  width: 720px;
}

#main div.dialboxWrapper div.cell01,
#main div.dialboxWrapper div.cell02 {
  width: 50%;
  float: left;
}

#main div.dialboxWrapper div .dialbox {
  width: 245px;
  text-align: left;
}

#main div.dialboxWrapper div.cell01 .dialbox {
  margin-left: 78px;
}

#main div.dialboxWrapper div.cell02 .dialbox {
  margin-left: 41px;
}

#main div.dialboxWrapper:after {
  display: block;
  content: "";
  clear: both;
}

#main .dialbox .txtbox {
  border: 1px solid #ccc;
}

#main .dialbox .txtbox .title {
  border: 1px solid #fff;
  background-color: #ebebeb;
  padding: 3px 5px;
}

#main .dialbox .txtbox .txtboxInner {
  padding: 10px 5px;
}

#main .dialbox .fontSmall {
  font-size: 0.8em;
}

#main .spBr {
  display: none;
}

/*----------------------------------------------------
  CGI：法人文章ファイル管理簿
----------------------------------------------------*/

#main.search_publicinfo .table-2col-left #filename,
#main.search_publicinfo .table-2col-left #creator,
#main.search_publicinfo .table-2col-left #management_division {
  width: 55%;
}

#main.search_publicinfo .table-2col-left th,
#main.search_publicinfo .table-2col-left td,
#main.search_publicinfo .table-7col-top th,
#main.search_publicinfo .table-7col-top td {
  vertical-align: middle;
}

#main.search_publicinfo .table-2col-left th,
#main.search_publicinfo .table-7col-top th {
  padding: 12px 6px 12px 8px;
}

#main.search_publicinfo .table-7col-top th,
#main.search_publicinfo .table-7col-top td {
  width: auto;
  text-align: center;
}

#main.search_publicinfo .table-7col-top th {
  white-space: nowrap;
}

#main.search_publicinfo .table-7col-top table {
  font-size: 0.857143em;
}

#main.search_publicinfo .table-2col-left th.whitesmoke {
  background-color: #F5F5F5;
}

#main.search_publicinfo #flow {
  margin-top: 20px;
}

#main.search_publicinfo #flow li {
  margin: 10px 0px;
}

#main.search_publicinfo #flow01 a {
  padding: 0;
  width: 416px;
  height: 44px;
  display: block;
  background: url("../img/helpflow01.gif") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  float: left;
}

#main.search_publicinfo #flow01 a:hover {
  background: url("../img/helpflow01.gif") no-repeat bottom;
}

#main.search_publicinfo #flow02 a {
  padding: 0;
  width: 416px;
  height: 44px;
  display: block;
  background: url("../img/helpflow02.gif") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  float: left;
}

#main.search_publicinfo #flow02 a:hover {
  background: url("../img/helpflow02.gif") no-repeat bottom;
}

#main.search_publicinfo #flow03 a {
  padding: 0;
  width: 416px;
  height: 44px;
  display: block;
  background: url("../img/helpflow03.gif") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  float: left;
}

#main.search_publicinfo #flow03 a:hover {
  background: url("../img/helpflow03.gif") no-repeat bottom;
}

#main.search_publicinfo #arrow01 {
  width: 416px;
  height: 50px;
  background: url("../img/helparrow01.gif") no-repeat;
  text-indent: -9999px;
  float: left;
}

#main.search_publicinfo #arrow02 {
  width: 416px;
  height: 50px;
  background: url("../img/helparrow02.gif") no-repeat;
  text-indent: -9999px;
  float: left;
}

/*---------------------------------------------
 個人情報ファイル簿検索
---------------------------------------------*/

.f-search-box {
  padding-bottom: 10px;
}

.f-search-box .anchorList li {
  float: left;
  width: 175px;
  padding-bottom: 5px;
}

.f-search-box .anchorList li a {
  background: url(/n/common/img/item-list06.gif) no-repeat 14px 3px;
  padding-left: 28px;
  display: block;
}

/*---------------------------------------------
 不動産の売却情報
---------------------------------------------*/

.table_01 {
  width: 720px;
  border-collapse: collapse;
}

.table_01 th {
  padding: 6px;
  text-align: center;
  vertical-align: middle;
  color: #333;
  background-color: #C0C0C0;
  border: 1px solid;
  border-color: #999;
}

.table_01 td {
  padding: 6px;
  background-color: #fff;
  border: 1px solid;
  text-align: center;
  border-color: #999999;
}

span.sub {
  font-size: 80%;
  vertical-align: super;
}

/*---------------------------------------------
 お知らせBOX
---------------------------------------------*/

.block-info {
  margin: 0 0 10px;
  padding: 0;
  width: 720px;
}

.block-info .top {
  height: 20px;
  background: url(/n/common/img/background_top.jpg) no-repeat 0 0;
  overflow: hidden;
}

.block-info .inner {
  margin: 0;
  background: url(/n/common/img/background_middle.jpg) repeat-y 0 0;
}

.block-info .inner table {
  width: 100%;
  border-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}



#main .block-info .inner .list {
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 13px;
}

#main .block-info .inner .list dt {
  display: inline-block;
  width: 20%;
  margin: 0 0 5px;
  vertical-align: top;
}

#main .block-info .inner .list dd {
  display: inline-block;
  width: 75%;
  margin: 0 0 5px;
  vertical-align: top;
}

.block-info .bottom {
  height: 20px;
  background: url(/n/common/img/background_under.jpg) no-repeat 0 0;
  overflow: hidden;
}

#main .ttl-column {
  margin: -4px -4px 10px -4px;
  background: #F0F8D1;
  border-width: 0;
  text-align: center;
}

/*----------------------------------------------------
  CGI：融資・経営のご相談
----------------------------------------------------*/

#main.loan .table-2col-left th {
  width: 165px;
}

#main.loan .table-2col-left td {
  width: 524px;
}

#main.loan .table-2col-left #company_info .company_name th,
#main.loan .table-2col-left #company_info .company_name td,
#main.loan .table-2col-left #address_info .email th,
#main.loan .table-2col-left #address_info .email td {
  border-top-style: none;
}

#main.loan .table-2col-left table td table {
  width: 100%;
}

#main.loan .table-2col-left td table th,
#main.loan .table-2col-left td table td {
  padding: 0;
  border-style: none;
  width: 33%;
}

#main.loan p.send-data {
  text-align: center;
}

#main.loan p.send-data button {
  width: 142px;
  margin: 0;
  padding: 0px;
  border-style: none;
  background-color: #ffffff;
}

#main.loan p.send-data .send-back {
  margin-right: 10px;
}

#main.loan p.send-data img,
#main.loan p.send-data .send-step input {
  vertical-align: middle;
}

#main.loan p.error {
  color: #f00;
}

#main.loan .table-2col-left input.name01,
#main.loan .table-2col-left input.company01,
#main.loan .table-2col-left input.city01,
#main.loan .table-2col-left input.house-num01,
#main.loan .table-2col-left input.mail01 {
  width: 75%;
}

#main.loan .table-2col-left input.scale,
#main.loan .table-2col-left input.schedule,
#main.loan .table-2col-left input.hope,
#main.loan .table-2col-left input.average {
  width: 25%;
}

#main.loan .table-2col-left textarea.question {
  height: 6em;
  width: 80%;
}

#main.loan .table-2col-left input.tel01 {
  width: 4.5em;
}

#main.loan .table-2col-left input.fax01 {
  width: 4.5em;
}

/*----------------------------------------------------
  CGI：法人文章ファイル管理簿
----------------------------------------------------*/

#main.search_publicinfo .table-2col-left #filename,
#main.search_publicinfo .table-2col-left #creator,
#main.search_publicinfo .table-2col-left #management_division {
  width: 55%;
}

#main.search_publicinfo .table-2col-left th,
#main.search_publicinfo .table-2col-left td,
#main.search_publicinfo .table-7col-top th,
#main.search_publicinfo .table-7col-top td {
  vertical-align: middle;
}

#main.search_publicinfo .table-2col-left th,
#main.search_publicinfo .table-7col-top th {
  padding: 12px 6px 12px 8px;
}

#main.search_publicinfo .table-7col-top th,
#main.search_publicinfo .table-7col-top td {
  width: auto;
  text-align: center;
}

#main.search_publicinfo .table-7col-top th {
  white-space: nowrap;
}

#main.search_publicinfo .table-7col-top table {
  font-size: 0.857143em;
}

#main.search_publicinfo .table-2col-left th.whitesmoke {
  background-color: #F5F5F5;
}

#main.search_publicinfo #flow {
  margin-top: 20px;
}

#main.search_publicinfo #flow li {
  margin: 10px 0px;
}

#main.search_publicinfo #flow01 a {
  padding: 0;
  width: 416px;
  height: 44px;
  display: block;
  background: url("../img/helpflow01.gif") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  float: left;
}

#main.search_publicinfo #flow01 a:hover {
  background: url("../img/helpflow01.gif") no-repeat bottom;
}

#main.search_publicinfo #flow02 a {
  padding: 0;
  width: 416px;
  height: 44px;
  display: block;
  background: url("../img/helpflow02.gif") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  float: left;
}

#main.search_publicinfo #flow02 a:hover {
  background: url("../img/helpflow02.gif") no-repeat bottom;
}

#main.search_publicinfo #flow03 a {
  padding: 0;
  width: 416px;
  height: 44px;
  display: block;
  background: url("../img/helpflow03.gif") no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  float: left;
}

#main.search_publicinfo #flow03 a:hover {
  background: url("../img/helpflow03.gif") no-repeat bottom;
}

#main.search_publicinfo #arrow01 {
  width: 416px;
  height: 50px;
  background: url("../img/helparrow01.gif") no-repeat;
  text-indent: -9999px;
  float: left;
}

#main.search_publicinfo #arrow02 {
  width: 416px;
  height: 50px;
  background: url("../img/helparrow02.gif") no-repeat;
  text-indent: -9999px;
  float: left;
}

/*----------------------------------------------------
  CGI：財務診断サービス
----------------------------------------------------*/

#main.zaimushindan .table-5col-top th,
#main.zaimushindan .table-6col-top th,
#main.zaimushindan .table-7col-top th,
#main.zaimushindan .table-8col-top th,
#main.zaimushindan .table-5col-top td,
#main.zaimushindan .table-6col-top td,
#main.zaimushindan .table-7col-top td,
#main.zaimushindan .table-8col-top td,
#main.zaimushindan .table-5col-top .left,
#main.zaimushindan .table-6col-top .left,
#main.zaimushindan .table-7col-top .left,
#main.zaimushindan .table-8col-top .left {
  width: auto;
}

#main.zaimushindan .table-2col-top th,
#main.zaimushindan .table-2col-top td,
#main.zaimushindan .table-5col-top th,
#main.zaimushindan .table-5col-top td,
#main.zaimushindan .table-6col-top th,
#main.zaimushindan .table-6col-top td {
  border-color: #B9E09E;
  vertical-align: middle;
}

#main.zaimushindan .table-7col-top th,
#main.zaimushindan .table-7col-top td,
#main.zaimushindan .table-8col-top th,
#main.zaimushindan .table-8col-top td {
  border-color: #666666;
  vertical-align: middle;
}

#main.zaimushindan.result .table-8col-top,
#main.zaimushindan.result .table-7col-top,
#main.zaimushindan.result .graph {
  font-size: 0.857143em;
}

#main.zaimushindan.result #taishaku_table .table-7col-top {
  margin-top: 0;
}

#main.zaimushindan.result #taishaku_table h4 {
  margin-bottom: 0;
}

#main.zaimushindan.result .graph p {
  margin-top: 10px;
  margin-bottom: 16px;
}

#main.zaimushindan .ti {
  font-size: 14px;
  color: #329b00;
  font-weight: bold;
}

#main.zaimushindan .te {
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  color: #000000;
  padding-left: 20px;
  padding-right: 6px;
  padding-top: 5px;
  letter-spacing: 0.08em;
}

#main.zaimushindan .form_1 {
  /*font-size: 12px;
  line-height: 16px;
  color: #000000;
  font-weight: bold;
  padding-left: 10px;
  vertical-align: top;*/
  background-color: #F5FDEE;
  /*letter-spacing: 0.1em;*/
}

#main.zaimushindan .zaimu_table_3 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  text-align: center;
  background-color: #E8FBD7;
  /*height: 35px;*/
  vertical-align: middle;
}

#main.zaimushindan .zaimu_table_21 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  text-align: center;
  background-color: #B0F176;
  /*height: 35px;*/
  vertical-align: middle;
  border-top-width: 2px;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-left-style: solid;
  border-top-color: #000000;
  border-right-color: #000000;
  border-left-color: #000000;
}

#main.zaimushindan .zaimu_table_24 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  text-align: center;
  background-color: #B0F176;
  /*height: 35px;*/
  vertical-align: middle;
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-left-style: solid;
  border-top-color: #000000;
  border-left-color: #000000;
}

#main.zaimushindan .zaimu_table_8 {
  /*font-size: 12px;*/
  font-weight: normal;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  background-color: #F5FDEE;
  /*padding-left: 5px;*/
}

#main.zaimushindan .zaimu_table_28 {
  /*font-size: 12px;*/
  font-weight: normal;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  background-color: #F5FDEE;
  /*padding-left: 17px;*/
}

#main.zaimushindan .zaimu_table_5 {
  text-align: right;
  background-color: #FFFFFF;
  /*font-size: 13px;*/
  font-weight: normal;
  color: #000000;
}

#main.zaimushindan .zaimu_table_9 {
  /*font-size: 12px;*/
  font-weight: normal;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  text-align: right;
  background-color: #FFF2B5;
}

#main.zaimushindan .zaimu_table_22 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  text-align: center;
  background-color: #FFFfff;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #000000;
}

#main.zaimushindan .zaimu_table_23 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  text-align: center;
  background-color: #FFFfff;
  border-right-width: 2px;
  border-left-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-right-color: #000000;
  border-left-color: #000000;
}

#main.zaimushindan .zaimu_table_18 {
  /*font-size: 12px;*/
  font-weight: normal;
  color: #000000;
  text-align: center;
  background-color: #ffffff;
  vertical-align: middle;
}

#main.zaimushindan .zaimu_table_10 {
  background-color: #FFFFFF;
  text-align: center;
}

#main.zaimushindan .zaimu_table_20 {
  background-color: #F5FDEE;
  text-align: center;
  /*font-size: 12px;*/
  color: #000000;
}

#main.zaimushindan .zaimu_table_27 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  background-color: #F5FDEE;
  vertical-align: middle;
  text-align: center;
}

#main.zaimushindan .zaimu_table_22b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: right;
  background-color: #FFFfff;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #000000;
}

#main.zaimushindan .zaimu_table_23b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: right;
  background-color: #FFFfff;
  border-right-width: 2px;
  border-left-width: 2px;
  border-right-style: solid;
  border-left-style: solid;
  border-right-color: #000000;
  border-left-color: #000000;
}

#main.zaimushindan .zaimu_table_24b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: center;
  background-color: #B0F176;
  /*height: 35px;*/
  vertical-align: middle;
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-left-style: solid;
  border-top-color: #000000;
  border-left-color: #000000;
}

#main.zaimushindan .zaimu_table_21b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: center;
  background-color: #B0F176;
  /*height: 35px;*/
  vertical-align: middle;
  border-top-width: 2px;
  border-right-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-left-style: solid;
  border-top-color: #000000;
  border-right-color: #000000;
  border-left-color: #000000;
}

#main.zaimushindan .zaimu_table_29b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: right;
  background-color: #FFFfff;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #000000;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #000000;
}

#main.zaimushindan .zaimu_table_29c {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #000000;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: right;
  background-color: #FFFfff;
  border-left-style: solid;
  border-left-color: #000000;
  border-bottom-style: solid;
  border-bottom-color: #000000;
  border-color: #000000;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

/* 店舗案内 */

#main .block_branch {
  padding: 0 0 0 20px;
}

#main .block_branch table td.branch {
  width: 70%;
}

#main .block_branch table td.info {
  width: 30%;
}

#main .block_branch table a {
  font-weight: bold;
  text-decoration: underline;
}

/* 融資検索一覧テーブル */

#main .table-finance {
  border: 0px solid #FFFFFF;
}

#main .table-finance table {
  /*20160104 IEでtableの左罫線が消えるバグを修正*/
  border-collapse: separate;
  border-spacing: 0;
  enpty-cells: show;
  border-top: 1px solid #CCCCCC;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #CCCCCC;
}

#main .table-finance th {
  background: #EAF0BD;
  /*border: 1px solid #CCCCCC;*/
  /*20160104 IEでtableの左罫線が消えるバグを修正*/
  border-top: none;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  border-left: none;
}

#main .table-finance td {
  /*border: 1px solid #CCCCCC;*/
  /*20160104 IEでtableの左罫線が消えるバグを修正*/
  border-top: none;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  border-left: none;
}
/* ===================================================================
CSS information

 file name  :top.css
 style info :トップページ

=================================================================== */

#page-top #spMode {
  display: none;
}

#page-top #main {
  float: none;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
}

/* threeculom
----------------------------------------------------------------*/

#page-top .threeculom {
  overflow: hidden;
  margin-top: 25px;
}

/* pickupMenuArea
----------------------------------------------------------------*/

#page-top #pickupMenuArea {
  position: relative;
  width: 413px;
  height: 233px;
  float: left;
}

#page-top .pickupMenuArea_close {
  cursor: pointer;
}

#page-top #pickupMenuArea .menu01 {
  position: absolute;
  top: 0px;
  left: 0px;
}

#page-top #pickupMenuArea .menu02 {
  position: absolute;
  top: 0px;
  left: 140px;
}

#page-top #pickupMenuArea .menu02.current {
  height: 114px;
  width: 134px;
  background: url(/n/img/pickupMenu02_pc_on.png) no-repeat left top;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu03 {
  position: absolute;
  top: 0px;
  left: 279px;
}

#page-top #pickupMenuArea .menu04 {
  position: absolute;
  top: 119px;
  left: 0;
}

#page-top #pickupMenuArea .menu04.current {
  position: absolute;
  top: 119px;
  left: 0;
  height: 114px;
  width: 134px;
  background: url(/n/img/pickupMenu04_pc_on.png) no-repeat left top;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu05 {
  position: absolute;
  top: 119px;
  left: 140px;
}

#page-top #pickupMenuArea .menu05.current {
  position: absolute;
  top: 119px;
  left: 140px;
  height: 34px;
  width: 134px;
  background: url(/n/img/pickupMenu05_pc_on.png) no-repeat left top;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu06 {
  position: absolute;
  top: 119px;
  left: 279px;
}

#page-top #pickupMenuArea .menu07 {
  position: absolute;
  top: 159px;
  left: 140px;
}

#page-top #pickupMenuArea .menu08 {
  position: absolute;
  top: 159px;
  left: 279px;
}

#page-top #pickupMenuArea .menu09 {
  position: absolute;
  top: 199px;
  left: 140px;
}

#page-top #pickupMenuArea .menu09.current {
  position: absolute;
  top: 199px;
  left: 140px;
  height: 34px;
  width: 134px;
  background: url(/n/img/pickupMenu09_pc_on.png) no-repeat left top;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu10 {
  position: absolute;
  top: 199px;
  left: 279px;
}

#page-top #pickupMenuArea .menu10.current {
  position: absolute;
  top: 199px;
  left: 279px;
  height: 34px;
  width: 134px;
  background: url(/n/img/pickupMenu10_pc_on.png) no-repeat left top;
  text-indent: -9999px;
}

#page-top #pickupMenuArea dl dd {
  display: none;
}

#page-top #pickupMenuDetailBox {
  margin-top: 10px;
  background: #7CB434;
  border-radius: 6px;
  position: relative;
}

#page-top #pickupMenuDetailBox dd {
  padding: 20px;
}

#page-top #pickupMenuDetailBox ul {
  overflow: hidden;
  margin-top: 15px;
  list-style-type: none;
  margin: 0;
}

#page-top #pickupMenuDetailBox ul li {
  float: left;
  width: 170px;
  margin: 5px 5px 0;
}

#page-top #pickupMenuDetailBox ul li a {
  display: block;
  border: 1px solid #ccc;
  padding: 17px 20px 0px 10px;
  background: #fff url(/n/common/img/arrow_icon10.png) no-repeat right center;
  color: #444;
  text-decoration: none;
  font-size: 85%;
}

#page-top #pickupMenuDetailBox ul li.pickupMenu02_icon01 a {
  background: #fff url(/n/img/menu02Detail_icon01.png) no-repeat right center;
}

#page-top #pickupMenuDetailBox ul li.pickupMenu02_icon02 a {
  background: #fff url(/n/img/menu02Detail_icon02.png) no-repeat right center;
}

#page-top #pickupMenuDetailBox ul li.pickupMenu02_icon03 a {
  background: #fff url(/n/img/menu02Detail_icon03.png) no-repeat right center;
}

#page-top #pickupMenuDetailBox ul li a:hover {
  opacity: 0.7;
}

#page-top #pickupMenuDetailBox .pickupMenuArea_close {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* pickupBnrArea
----------------------------------------------------------------*/

#page-top #pickupBnrArea {
  float: left;
  width: 282px;
  margin: 0 20px;
  padding-right: 20px;
  border-right: 1px solid #ddd;
  box-sizing: content-box;
}

#page-top #pickupBnrArea ul {
  list-style-type: none;
  margin-top: 0;
  margin-left: 0;
}

#page-top #pickupBnrArea ul li {
  margin-bottom: 6px;
  line-height: 0;
  list-style-type: none;
}

#page-top #pickupBnrArea ul li.menu03 a {
  pointer-events: none;
}

/* accessArea
----------------------------------------------------------------*/

#page-top #accessArea {
  float: right;
  width: 181px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 4px;
  box-sizing: content-box;
}

#page-top #accessArea dt {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
}

#page-top #accessArea dd {
  overflow-y: scroll;
  height: 170px;
  margin-bottom: 5px;
  margin-top: 5px;
}

#page-top #accessArea ol {
  margin-left: 1.7em;
  list-style-type: decimal;
  margin-top: 10px;
}

#page-top #accessArea ol li {
  margin-bottom: 5px;
}

/* newsArea
------------------------------------------------------------------*/

#page-top #newsArea {
  margin-top: 30px;
}

#page-top #newsArea .newsBox {
  width: 100%;
  border-top: 2px solid #6AB547;
}

#page-top #newsArea .newsBox th {
  background: #E7F3E1;
  padding: 10px;
  vertical-align: top;
  text-align: left;
  width: 150px;
}

#page-top #newsArea .newsBox th .more {
  margin-top: 10px;
}

#page-top #newsArea .newsBox td {
  background: #FFF;
  padding: 10px 0 10px 20px;
}

#page-top #newsArea .newsBox td.open {
  background: #FFF;
  padding: 0 15px;
}

#page-top #newsArea .newsBox td  dl {
  list-style-type: none;
}

#page-top #newsArea .newsBox  dt {
  font-size: 90%;
  line-height: 1.1;
  padding-bottom: 5px;
  padding-top: 10px;
}

#page-top #newsArea .newsBox  dt span {
  display: inline-block;
  padding: 1px 4px 2px;
  font-size: 70%;
  margin-left: 10px;
  min-width: 90px;
  text-align: center;
}

#page-top #newsArea .newsBox  .cat01 {
  border: 1px solid #ED5F06;
  color: #ED5F06;
}

#page-top #newsArea .newsBox  .cat02 {
  border: 1px solid #437DC5;
  color: #437DC5;
}

#page-top #newsArea .newsBox  dd {
  border-bottom: 1px dotted #aaa;
  padding-bottom: 10px;
  overflow: hidden;
  font-size: 90%;
}

#page-top #newsArea .newsBox dl:last-child  dd {
  border-bottom: none;
  padding-bottom: 10px;
  overflow: hidden;
  font-size: 90%;
}

#page-top #newsArea .newsBox dl dd a {
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon03.png) no-repeat left 4.5px;
}

#page-top #newsArea .newsBox  dd span {
  float: right;
  font-size: 80%;
}

#page-top #newsArea .newsBox  dd .label01 {
  color: #A13004;
}

#page-top #newsArea .newsBox  dd .label02 {
  color: #85BA50;
}

#page-top #newsArea .newsBox  dd .label03 {
  color: #4879AE;
}

#page-top #newsArea .newsBox  dd .label04 {
  color: #9561A9;
}

/* seminarArea
------------------------------------------------------------------*/

#page-top #seminarArea {
  margin-top: 30px;
}

#page-top #seminarArea .newsBox {
  width: 100%;
  border-top: 2px solid #426CC4;
}

#page-top #seminarArea .newsBox th {
  background: #BBCAEA;
  padding: 10px;
  vertical-align: top;
  text-align: left;
  width: 150px;
}

#page-top #seminarArea .newsBox th .more {
  margin-top: 10px;
}

#page-top #seminarArea .newsBox td {
  background: #FFF;
  padding: 10px 0 10px 20px;
}

#page-top #seminarArea .newsBox td.open {
  background: #FFF;
  padding: 0 15px;
}

#page-top #seminarArea .newsBox td  dl {
  list-style-type: none;
}

#page-top #seminarArea .newsBox  dt {
  font-size: 90%;
  line-height: 1.1;
  padding-bottom: 5px;
  padding-top: 10px;
}

#page-top #seminarArea .newsBox  dd {
  border-bottom: 1px dotted #aaa;
  padding-bottom: 10px;
  overflow: hidden;
  font-size: 90%;
}

#page-top #seminarArea .newsBox dl:last-child  dd {
  border-bottom: none;
  padding-bottom: 10px;
  overflow: hidden;
  font-size: 90%;
}

#page-top #seminarArea .newsBox dl dd a {
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon09.png) no-repeat left  4.5px;
}

#page-top #seminarArea .newsBox  dd span {
  float: right;
  font-size: 80%;
  background: url(/n/img/label_bg.png) repeat-x left top;
  padding: 1px 8px;
  border: 1px solid #0066CC;
  border-radius: 4px;
  color: #fff;
}

#page-top #seminarArea .newsBox  dd span {
  float: right;
  font-size: 80%;
  background: url(/n/img/label_bg.png) repeat-x left top;
  padding: 1px 8px;
  border: 1px solid #0066CC;
  border-radius: 4px;
  color: #fff;
}

#page-top #newsArea .newsBox .fixNews dt span {
  margin-left: 0px;
}

#page-top #seminarArea .newsBox  dd span.hokkaido {
  background: url(/n/img/label_bg01.png) repeat-x left top;
  border: 1px solid #959592;
}

#page-top #seminarArea .newsBox  dd span.tohoku {
  background: url(/n/img/label_bg02.png) repeat-x left top;
  border: 1px solid #6D9A40;
}

#page-top #seminarArea .newsBox  dd span.kanto1 {
  background: url(/n/img/label_bg03.png) repeat-x left top;
  border: 1px solid #D9792B;
}

#page-top #seminarArea .newsBox  dd span.kanto2 {
  background: url(/n/img/label_bg04.png) repeat-x left top;
  border: 1px solid #4A7579;
}

#page-top #seminarArea .newsBox  dd span.tokyo {
  background: url(/n/img/label_bg05.png) repeat-x left top;
  border: 1px solid #D43E55;
}

#page-top #seminarArea .newsBox  dd span.hokuriku {
  background: url(/n/img/label_bg06.png) repeat-x left top;
  border: 1px solid #5476BF;
}

#page-top #seminarArea .newsBox  dd span.tokai {
  background: url(/n/img/label_bg07.png) repeat-x left top;
  border: 1px solid #798068;
}

#page-top #seminarArea .newsBox  dd span.kinki1 {
  background: url(/n/img/label_bg08.png) repeat-x left top;
  border: 1px solid #9F7361;
}

#page-top #seminarArea .newsBox  dd span.kinki2 {
  background: url(/n/img/label_bg09.png) repeat-x left top;
  border: 1px solid #A15858;
}

#page-top #seminarArea .newsBox  dd span.chugoku {
  background: url(/n/img/label_bg10.png) repeat-x left top;
  border: 1px solid #4D7A55;
}

#page-top #seminarArea .newsBox  dd span.shikoku {
  background: url(/n/img/label_bg11.png) repeat-x left top;
  border: 1px solid #756995;
}

#page-top #seminarArea .newsBox  dd span.kyushu1 {
  background: url(/n/img/label_bg12.png) repeat-x left top;
  border: 1px solid #4C718F;
}

#page-top #seminarArea .newsBox  dd span.kyushu2 {
  background: url(/n/img/label_bg13.png) repeat-x left top;
  border: 1px solid #876C45;
}

#page-top #seminarArea .newsBox dd span.external {
  float: none;
  background: url(/n/common/img/item-another-window.gif) no-repeat right center;
  border: none;
}

/* bnrArea01
-----------------------------------------------------------------*/

#page-top #bnrArea01 {
  margin-top: 30px;
  background: #f0f0f0;
  padding: 10px;
  overflow: hidden;
  border-radius: 6px;
}

#page-top #bnrArea01 ul {
  float: left;
  margin: 0;
}

#page-top #bnrArea01 ul li {
  float: left;
  margin: 7px;
  line-height: 1;
  list-style-type: none;
}

#page-top #bnrArea01 {
  position: relative;
  overflow: hidden;
}

#page-top #bnrArea01 ul {
  float: left;
  left: 50%;
  position: relative;
}

#page-top #bnrArea01  li {
  float: left;
  left: -50%;
  position: relative;
}

/* bnrArea02
-----------------------------------------------------------------*/

#page-top #bnrArea02 {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 10px;
  overflow: hidden;
  border-radius: 6px;
}

#page-top #bnrArea02 ul {
  float: left;
  margin: 0;
}

#page-top #bnrArea02 ul li {
  float: left;
  margin: 7px;
  line-height: 1;
  list-style-type: none;
}