/*

	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;
}

td {
	background-color: #fff;
	font-weight: 500;
}

/* 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;
}

/* 20200930追加  /n/company/plan.html IE11専用 */
_:-ms-lang(x)::-ms-backdrop, .page-break {page-break-before: always;}

/* ===================================================================
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: #333 !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-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;
}

/* 英語ページ印刷修正 */
body#page-english #pageEnglishBorder{
  height:103px;
  background-image: url(/n/common/img/bg-header-e.gif);
  background-repeat: repeat-x;
  background-position: 0 101px;
  background-color: #ffffff;
}

body#page-english #page{
  margin-top:-103px;
}

/* -----------------------------------------------------------
	#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;
}

/* Direct 2021/9/27追加 */

#headerDirectBtn {
  text-align:right;
}

/* 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: 1px;
  box-sizing: content-box;
}

#globalNavArea .jfcDirectBtn,
#globalNavArea .jfcDirectBtnL,
#globalNavArea .jfcDirectBtnR {
  display: none;
}

#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: #333;
  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: #333;
  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: #333;
  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;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* 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 {
  margin: 24px 0;
  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;
  max-width: 100%;
}

#page-seikatsueisei #main .flowBox01 .full table.green01 {
  width: 650px;
  max-width: 100%;
  margin-left: 0;
  /* margin-left: 25px; */
}
/* ===================================================================
CSS information

 file name  :style-e.css
 style info :英語ページコンテンツエリア関係 他

=================================================================== */

#pageEnglishBorder {
  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 #2F8608;
}

#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: #2F8608 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 li a:hover {
  text-decoration: underline;
}

#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 #2F8608;
  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: #2F8608;
  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: 4px 4px 4px 6px;
  /* 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: 5em;
  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;
  mix-blend-mode: multiply;
}

.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 {
  display: block;
  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 {
  overflow: hidden;
  display: inline-block;
  background-image: url(../img/ico_common_pdf.webp);
  /* background-image: url(/n/common/img/pdf_icon.png); */
  text-indent: -999px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  /* width: 20px; */
  /* height: 20px; */
  width: 25px;
  height: 26px;
  margin: 0 4px 0 0;
  padding: 0;
  vertical-align: middle;
  font-size: 0;

}

/* .excel {
  background-image: url(/n/common/img/icon_xls.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 18px;
} */
.excel {
  overflow: hidden;
  background-image: url(/n/common/img/ico_common_excel.webp);
  background-repeat: no-repeat;
  background-position: right center;
  margin: 0 4px 0 0;
  padding-right: 0;
  display: inline-block;
  text-indent: -999px;
  background-size: contain;
  width: 20px;
  height: 27px;
  vertical-align: middle;
  font-size: 0;
}
.excelB {
  display: inline-block;
  background-image: url(/n/common/img/icon_xls.gif);
  background-repeat: no-repeat;
  background-position: right center;
  width: 20px;
  height: 20px;
  padding: 0;
  vertical-align: middle;
}

/* .word {
  background-image: url(/n/common/img/icon_doc.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 18px;
} */
.word {
  background-image: url(/n/common/img/ico_common_word.webp);
  background-repeat: no-repeat;
  background-position: right center;
  margin: 0 4px 0 0;
  padding: 0;
  overflow: hidden;
  display: inline-block;
  text-indent: -999px;
  background-size: contain;
  width: 20px;
  height: 27px;
  vertical-align: middle;
  font-size: 0;
}

.ppt {
  background-image: url(/n/common/img/icon_pptx.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 18px;
}

/* .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: 20px;
  height: 20px;
  padding: 0;
  vertical-align: middle;
} */
.zip {
  background-image: url(/n/common/img/ico_common_zip.webp);
  background-repeat: no-repeat;
  background-position: right center;
  margin: 0 4px 0 0;
  padding: 0;
  overflow: hidden;
  display: inline-block;
  text-indent: -999px;
  background-size: contain;
  width: 20px;
  height: 27px;
  vertical-align: middle;
  font-size: 0;
}

#page-top #content #main #main-inner .pdf,
#page-top #content #main #main-inner .excel,
#page-top #content #main #main-inner .word,
#page-top #content #main #main-inner .ppt {
  float: none;
  background-color: #fff;
  border: none;
}

*html .pdf,
*html .excel,
*html .word,
*html .ppt {
  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,
*html #page-top #content #main #main-inner .ppt {
  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,
*+html .ppt {
  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,
*+html #page-top #content #main #main-inner .ppt {
  background-position: 0 0;
  width: 16px;
  margin: 0 0 0 2px;
  padding: 0 2px 0 0;
  text-align: left;
}

.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.bold {
  font-weight: bold !important;
}

.red {
  color: #f00;
}
.dRed {
  color: #CE0000;
}

/* マージンクリア */

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 {
	position: relative;
  /* background-image: url(/n/common/img/item-list01.gif); */
  /* background-repeat: no-repeat; */
  /* background-position: left .3em; */
  margin-left: 6px;
  padding-left: 16px;
  /* padding-left: 14px; */
}

.list-item01 li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2F8608;
  content: "";
}


.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 {
  position: relative;
  /* 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: 32px;
  /* padding-left: 13px; */
}
.list-item05 li::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-image: url(/n/common/img/ico_common_circle_arrow.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
}

/* リスト▼ 横並び */
.list-item06 {
padding: 24px 0;
border-top: 2px solid #CCC;
border-bottom: 2px solid #CCC;
}

.list-item06 li {
  position: relative;
  float: left;
  display: inline;
  background-image: url(/n/common/img/item-list06.gif);
  background-repeat: no-repeat;
  background-position: .5em 0.25em;
  /* background-position: left .35em; */
  margin-right: 24px;
  /* margin-right: 18px; */
  padding-left: 32px;
  /* padding-left: 12px; */
}

.list-item06 li::before {
  position: absolute;
  top: .2em;
  left: 0;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  background-image: url(/n/common/img/ico_common_circle_arrow.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  content: "";
}

/* リスト２カラム用 */

.list-item-half {
  float: left;
  width: 35%;
  /* width: 48%; */
  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: 24px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* margin: 16px 0 10px; */
  /* 16px */
  /* 相殺 */
  /* overflow: hidden;
  padding: 24px 0;
  border-top: 2px solid #CCC;
  border-bottom: 2px solid #CCC; */
}

/* キャプション 画像>タイトル>説明 縦並び */

.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,
.btn-3col_off {
  float: left;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  text-align: center;
}

*html .btn-2col,
.btn-3col,
.btn-3col_off {
  line-height: 40px;
  overflow: hidden;
}

.btn-2col {
  width: 345px;
}

.btn-3col,
.btn-3col_off {
  width: 230px;
}

*html .btn-3col,
.btn-3col_off {
  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-3col_off a {
  display: block;
  background-image: url(/n/common/img/btn-3col_2.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 230px;
  height: 45px;
}

.btn-2col a:hover,
.btn-3col a:hover,
.btn-3col_off 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,
.btn-3col_off a span {
  background-position: 0 .1em;
}

*+html .btn-2col a span,
.btn-3col a span,
.btn-3col_off 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;
}
	/* variable-height */
	.btn-2col-v,
	.btn-3col-v {
	  float: left;
	  height: auto;
	  margin-right: 10px;
	  line-height: 1.7;
	  text-align: center;
	}
	.btn-2col-v {
	  width: 345px;
	}
	.btn-3col-v {
	  width: 230px;
	  margin-bottom:10px;
	}
	.btn-2col-v a {
	  display: block;
	  background-image: url(/n/common/img/btn-2col.png);
	  background-repeat: no-repeat;
	  background-position: 0 0;
	  width: 345px;
	}
	.btn-3col-v a {
	  display: block;
	  /* background-image: url(/n/common/img/btn-3col.png); */
	  /* background-repeat: no-repeat; */
	  /* background-position: 0 0; */
	  width: 290px;
	  /* width: 230px; */
	}

/*ボタン黄緑*/

.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: none;
  /* 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
---------------------------------------------------------------*/
.sdgs_top #content #topic-path {
    background-color: #fff;
}

.sdgs_top #content #topic-path::after {
    background-color: #fff;
}

/* #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: #0071bc;
} */

/* #topic-path li.current {
  background: none;
  color: #444;
} */

/*----------------------------------------------------
  #main
    メイン
----------------------------------------------------*/

#main {
  /* float: left;
  width: 100%; */
  /* 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: #2B773C;
  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: 9em;
}

#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: #2B773C 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 #2F8608;
  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: #2B773C;
  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;
}

/* 注意書き（インデント） 国144追加*/
#main .indent05 {
  padding-left: 5em;
  text-indent: -3em;
}


/* 注意書き（インデント） */

p.note {
  padding-left: 3.6em;
  text-indent: -3.6em;
}

p.note02 {
  padding-left: 3em;
  text-indent: -3em;
}

p.note03 {
  padding-left: 2.5em;
  text-indent: -2.5em;
}

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;
  mix-blend-mode: multiply;
}

/* 写真 */

#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;
  text-align: left !important;
  font-weight: 500;
}

#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,
.pop a:focus {
  /*マウスが乗ったら*/
  position: relative;
  top: 0px;
  left: 0px;
}

.fukidasipop {
  /*吹き出し本体*/
  position: absolute;
  top: -180px;
  left: -400px;
  display: none;
  /*何も表示しない*/
  padding: 10px;
  /*内側の余白*/
  width: 480px;
  /*ブロックの幅*/
  font-weight: normal;
  /*文字の太さ*/
  text-decoration: none;
  /*文字飾り*/
  color: #333;
  /*文字色*/
  background-color: #ffffdd;
  /*背景色*/
  border: #CCCCCC solid 2px;
  text-align: left;
  /*        filter: alpha(opacity=85);
-moz-opacity:0.85;
  opacity:0.85;*/
  cursor: default;
}

.fukidasipop-btn {
  /*吹き出し本体*/
  position: absolute;
  top: -85px;
  left: 10px;
  display: none;
  /*何も表示しない*/
  padding: 15px;
  /*内側の余白*/
  width: 270px;
  /*ブロックの幅*/
  font-weight: normal;
  /*文字の太さ*/
  text-decoration: none;
  /*文字飾り*/
  color: #333;
  /*文字色*/
  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:focus .fukidasipop,
a:hover .fukidasipop-btn,
a:focus .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;
}

#main table.autoW th {
	width: auto;
}

/* list-item02 li 下マージン空ける
    */

#main .list-item02 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  list-style-type: none;
}

#main .list-item02 > li {
  position: relative;
  padding-left: 32px;
  /* padding-left: 16px; */
  /* background: url(/n/common/img/arrow_icon04.png) no-repeat left 0.3em; */
}

#main .list-item02 > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  background-image: url(/n/common/img/ico_common_circle_arrow.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  content: "";
}

#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: auto;
  line-height: auto;
  /* 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: 5em;
  /* width: 4em; */
  padding-top: 4px;
  font-weight: 500;
}

.list-item08 dd {
  margin-left: 4em;
  margin-top: -1.4em;
  padding-bottom: 4px;
  font-weight: 500;
}

/*
リスト（注○）等タイトル2.5文字まで
*/

.list-item09 {
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
}

.list-item09 dt {
  width: 3em;
  padding-top: 4px;
  font-weight: 500;
}

.list-item09 dd {
  margin-left: 3em;
  margin-top: -1.4em;
  padding-bottom: 4px;
  font-weight: 500;
}

/*
リスト（注○）等タイトル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;
  font-weight: 500;
}

/*
入れ子のリストへのスタイル継承
*/

.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 {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 0 16px;
  /* padding: 0; */
  background-image: none;
  /* list-style: disc; */
}

.list-item10 li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2F8608;
  content: "";
}

#main .linkList .list-item10 li {
  padding: 0 0 0 16px;
  /* padding: 0; */
  background-image: none;
  list-style: disc;
}

.list-item16 {
  margin-left: 20px !important;
}

.list-item16 li {
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 0 16px;
  /* padding: 0; */
  background-image: none;
  /* list-style: disc; */
}

.list-item16 li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2F8608;
  content: "";
}

#main .linkList .list-item16 li {
  padding: 0 0 0 16px;
  /* padding: 0; */
  background-image: none;
  list-style: 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;
}

.ml80{
  margin-left: 80px !important;
}
/*pcのみ*/
.pcmb10 {
  margin-bottom: 10px !important;
}

/* 文字色 */

.fontRed {
  color: #f00;
}

/* ===================================================================

  追加スタイル 2018.07.12

=================================================================== */

.mb0 {
  margin-bottom: 0px !important;
}

/* ===================================================================

  追加スタイル 2015.06.11

=================================================================== */

/* p */

.large {
  font-size: 140%;
  font-weight: bold;
}

/* ===================================================================

  追加スタイル 2020.04

=================================================================== */

.larger {
  font-size: 120%;
}

.largeL {
  font-size: 180%;
  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;
}

/* icon-image */
.icoImg {
  margin: 0 0.2em;
  display: inline;
  vertical-align: middle;
  width: 25px;
  height: 26px;
}

/* 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 {
	display: inline-block;
	width: 345px;
	max-width: 100%;
	height: auto;
	border: none;
	background: none;
	text-align: left;
  /* 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: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  padding: 16px;
  margin: 5px 0 0;
  border-radius: 8px;
  box-shadow: 0 5px 0 0 #1C5A00;
  border: 1px solid #ccc;
  background-color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: .048em;
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;

  /* 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;
}

/*---- 202005追加 off表示時ボタン----*/
  #main .btn-3col_off {
  text-align: left;
  width: 228px;
  display: inline-block;
  border: 1px solid #ddd;
  background: url(/n/common/img/btn_bg_2.png) repeat-x left top;
}

#main .btn-3col_off 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;
}
/*-----------------------------------*/
	/* variable-height */
	#main .btn-2col-v {
	  text-align: left;
	  width: 345px;
	  display: inline-block;
	  margin-bottom: 10px;
	  border: 1px solid #ddd;
	  background: url(/n/common/img/btn_bg.png) repeat-x left top;
	}
	#main .btn-2col-v:nth-of-type(3+X) {
	  margin-top: 10px;
	}
	#main .btn-2col-v a {
	  display: block;
	  padding: 0.8em 0.2em 0.8em 34px;
	  background: url(/n/common/img/arrow_icon01.png) no-repeat 12px 50%;
	  font-size: 90%;
	  color: #333;
	  box-sizing: border-box;
	}
	#main .btn-3col-v {
	  text-align: left;
	  width: 290px;
	  /* width: 228px; */
	  max-width: 100%;
	  display: inline-block;
	  border: none;
	  /* border: 1px solid #ddd; */
	  background: none;
	  /* background: url(/n/common/img/btn_bg.png) repeat-x left top; */
	}
	@media screen and (max-width: 767px) {
		#main .btn-3col-v {
			width: 100%;
		}
	}
	#main .btn-3col-v a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		height: auto;
		padding: 16px;
		margin: 5px 0 0;
		border-radius: 8px;
		box-shadow: 0 5px 0 0 #1C5A00;
		border: 1px solid #ccc;
		background-color: #fff;
		font-weight: 700;
		font-size: 1.8rem;
		letter-spacing: .048em;
		text-decoration: none;
		color: inherit;
		transform: translateY(-5px);
		transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;

	  /* display: block;
	  padding: 0.8em 0.2em 0.8em 34px;
	  background: url(/n/common/img/arrow_icon01.png) no-repeat 12px 50%; */
	  /* font-size: 90%; */
	  /* color: #333;
	  box-sizing: border-box; */
	}

/* link-arrow */

#main .link-arrow {
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon03.png) no-repeat left 0.3em;
}

/* loaclLinks */

#main .loaclLinks,
#main .loaclLinks_2 {
  margin-left: 0;
  overflow: hidden;
}

#main .loaclLinks li,
#main .loaclLinks_2 li {
  float: left;
  list-style-type: none;
  padding-right: 15px;
  white-space: nowrap;
  margin-bottom: 8px;
}

#main .loaclLinks li a,
#main .loaclLinks_2 li{
  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 {
  position: relative;
  margin: 8px 0;
  padding-left: 32px;
  /* padding-left: 20px; */
  /* background: url(/n/common/img/pdf_icon.png) no-repeat left 1px; */
}

#main .lnk-list-pdf li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 25px;
  height: 26px;
  background-image: url(/n/common/img/ico_common_pdf.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  content: "";
}

/* link_xls */

#main .lnk-list-xls li {
  position: relative;
  margin: 8px 0;
  padding-left: 32px;
  /* padding-left: 20px;
  background: url(/n/common/img/icon_xls.gif) no-repeat left 1px; */
}

#main .lnk-list-xls li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 27px;
  background-image: url(/n/common/img/ico_common_excel.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  content: "";
}

.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 {
  position: relative;
  margin: 8px 0;
  padding-left: 32px;
  /* padding-left: 20px; */
  /* background: url(/n/common/img/icon_doc.gif) no-repeat left 1px; */
}

#main .lnk-list-doc li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 27px;
  background-image: url(/n/common/img/ico_common_word.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  content: "";
}

/* link_zip */

/* #main .link_zip {
  padding-left: 20px;
  background: url(/n/common/img/zip_icon.png) no-repeat left 1px;
} */
#main .link_zip {
    padding-left: 20px;
    background: url(/n/common/img/ico_common_zip.webp);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 0;
    display: inline-block;
    text-indent: -999px;
    background-size: contain;
    width: 20px;
    height: 27px;
    vertical-align: middle;
    font-size: 0;
}

#main .lnk-list-zip li {
  position: relative;
  margin: 8px 0;
  padding-left: 32px;
  /* padding-left: 20px;
  background: url(/n/common/img/zip_icon.png) no-repeat left 1px; */
}

#main .lnk-list-zip li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 27px;
  background-image: url(/n/common/img/ico_common_zip.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  content: "";
}

/* link_blank */

#main .link_blank {
  padding-left: 16px;
  background: url(/n/common/img/blank_icon.png) no-repeat left 0.3em;
}

/* link_pptx */

#main .lnk-list-pptx li {
  padding-left: 20px;
  background: url(/n/common/img/icon_pptx.gif) no-repeat left 1px;
}

.lnk-icon-pptx {
  padding-left: 20px;
  background: url(/n/common/img/icon_pptx.gif) no-repeat left 1px;
}

#main .lnk-icon-pptx  li {
  padding-left: 20px;
  background: url(/n/common/img/icon_pptx.gif) no-repeat left 1px;
}

#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: 1em;
  /* margin-left: 0; */
  padding: 8px 0;
  list-style-type: none;
}

#main .linkList li {
  position: relative;
  list-style-type: none;
  margin: 0;
  /* margin: 0 0 0 5px; */
  padding-left: 16px;
  /* padding-left: 18px; */
  font-weight: 500;
  /* background: url(../img/ico_common_circle_arrow.webp) no-repeat left center / contain; */
  /* background: url(/n/common/img/arrow_icon03.png) no-repeat left 0.3em; */
}

#main .linkList li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2F8608;
  content: "";
}

#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: #333;
  background: #F8AE3A;
  border: 1px solid #dc5606;
}

#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 #dc5606;
  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 #AC4506;
  color: #AC4506;
}

#main .newsArea .newsBox  .cat02 {
  border: 1px solid #396BA8;
  color: #396BA8;
}

#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: #48642C;
}

#main .newsArea .newsBox  dd .label03 {
  color: #4879AE;
}

#main .newsArea .newsBox  dd .label04 {
  color: #70497F;
}

/* お問い合わせ先　*/

.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;
  max-width: 100%;
  clear: both;
  display: block;
  margin: 0 auto;
}

#main .newflow .float-l .image_left {
  mix-blend-mode: multiply;
}

.float-l img {
  mix-blend-mode: multiply;
}

#main .newflow_onkyuu {
  padding: 20px 20px 20px 0px;
  clear: both;
  display: block;
}

#main .newflow .float-r {
  padding-left: 20px;
  width: 500px;
  max-width: 100%;
}

#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%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 24px;
}

.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;
  margin: 24px auto;
  max-width: 100%;
}

.explanation02 .ex-text {
  float: right;
  width: 495px;
  margin-top: 3px;
}

.explanation02 .ex-text02 {
  float: right;
  width: 495px;
  margin-top: 3px;
}

  /* 201811追加 */

.explanation02 .ex-text03 {
  float: right;
  width: 360px;
  margin-top: 3px;
}

.explanation02 .ex-text04 {
  /* float: right; */
  width: 100%;
  /* width: 510px; */
  margin-top: 3px;
}

  /* 201811追加ここまで */

.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: 0.9em;
}

#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: #EFEFEF;
  border-bottom: 0px solid #FFFFFF;
}

/* flow */

#page-flow .flow p {
  margin: 0;
  line-height: 0;
}

/*---------------------------------------------
 まずは何から始めたら・・
---------------------------------------------*/

.checkj_c {
  padding: 20px;
  width: 680px;
  max-width: 100%;
  margin: 0 auto;
  clear: both;
  display: block;
}

.checkj_c .float-r {
  padding-left: 10px;
  width: 380px;
  max-width: 100%;
}

/*---------------------------------------------
 シミュレーション・相談・予約（オンラインサービス）農林事業
---------------------------------------------*/

#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 #2F8608;
}

#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: #2B773C 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 #2F8608;
  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: #2F8608;
  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: #d70035;
  display: none;
}

#main #result {
  display: none;
}

#main .blockSimulation th,
#main .blockSimulation td {
  padding: 15px 5px!important;
  text-align: left !important;
}

.parenthesis {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.parenthesis-width {
  width: 98%;
}

.parenthesis::before,
.parenthesis::after {
  position: absolute;
  top: 0;
  content: '';
  width: 10px;
  height: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.parenthesis::before {
  left: 0;
  border-left: 1px solid #000;
  border-radius: 8px 0 0 8px;
}
.parenthesis::after {
  right: 0;
  border-right: 1px solid #000;
  border-radius:   0 8px 8px 0;
}

#main .blockSimulation td .short {
  width: 70px;
}

#main .defaement-title {
  margin-left: 10px;
}

#main .defaement-box {
  margin-left: 20px;
}

#main .defaement-month{
  margin-right: 10px;
}

#main .period-box {
  display: flex;
}

.notice-box {
  width: 475px;
}

#main .defaement {
  margin-left: 25px;
}

#main .blockSimulation td .short.month{
  width: 90px;
  margin-left: 124px;
}

#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;
  position: relative;
}

#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: #EFEFEF;
  color: #333;
}

#main .resultGraph {
  position: relative;
  width: 712px;
  height: 225px;
  margin: 0 0 30px;
}

#main .rule {
  position: absolute;
  width: 712px;
  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: 21px;
  height: 162px;
}

#main .resultGraph .unit .interest {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 21px;
  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: 21px;
  height: 120px;
  background: url(/n/service/img/graph_unit_01.png) no-repeat 0 100%;
}

.detailArea {
  display: block;
}

/*202012追加*/

#main .year{
  width:32px;
  margin-left:15px;
}

#main .rate-input {
  margin-left: 46px !important;
  margin-top: 5px;
}

.next-year{
  padding-bottom: 10px;
}

#main table.orangeType td.month{
  position: absolute;
  top: 204px;
  left: 330px;
  border:0px none;
  margin-top: 1px;
}

tr.rate-box{
  position: relative;
}

#main .blockSimulationResult .orangeType td.rate_title{
  padding-bottom:10px;
}

#main table.orangeType td.cahngeRate{
  position: absolute;
  top: 333px;
  left: 295px;
  margin-top: 1px;
  border:0px none;
}

#main .blockSimulationResult .orangeType td.rate{
  vertical-align: top;
}

.rate_title .firsttime{
  margin-left: 115px;
}

.nextYear {
  margin-top: 17px;
  margin-left: 138px;
}

.rate{
  margin-bottom: 15px;
}

/*---------------------------------------------
 教育ローンシミュレーター
---------------------------------------------*/

#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 ul {
	display: flex;
	flex-direction: column;
}

#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; */
  max-width: 100%;
}

#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; */
  max-width: 100%;
}

#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; */
  max-width: 100%;
}

#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; */
  max-width: 100%;
}

#main.search_publicinfo #arrow02 {
  width: 416px;
  height: 50px;
  background: url("../img/helparrow02.gif") no-repeat;
  text-indent: -9999px;
  /* float: left; */
  max-width: 100%;
}

/*---------------------------------------------
 個人情報ファイル簿検索
---------------------------------------------*/

.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: 60%;
  vertical-align: top;
  margin-bottom: 1em;
  /* 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;
  mix-blend-mode: multiply;
}

#main.search_publicinfo #arrow02 {
  width: 416px;
  height: 50px;
  background: url("../img/helparrow02.gif") no-repeat;
  text-indent: -9999px;
  float: left;
  mix-blend-mode: multiply;
}

/*----------------------------------------------------
  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: #333;
  padding-left: 20px;
  padding-right: 6px;
  padding-top: 5px;
  letter-spacing: 0.08em;
}

#main.zaimushindan .form_1 {
  /*font-size: 12px;
  line-height: 16px;
  color: #333;
  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: #333;
  /*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: #333;
  /*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: #333;
  border-right-color: #333;
  border-left-color: #333;
}

#main.zaimushindan .zaimu_table_24 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #333;
  /*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: #333;
  border-left-color: #333;
}

#main.zaimushindan .zaimu_table_8 {
  /*font-size: 12px;*/
  font-weight: normal;
  color: #333;
  /*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: #333;
  /*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: #333;
}

#main.zaimushindan .zaimu_table_9 {
  /*font-size: 12px;*/
  font-weight: normal;
  color: #333;
  /*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: #333;
  /*line-height: 16px;
  letter-spacing: 0.1em;*/
  text-align: center;
  background-color: #FFFfff;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #333;
}

#main.zaimushindan .zaimu_table_23 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #333;
  /*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: #333;
  border-left-color: #333;
}

#main.zaimushindan .zaimu_table_18 {
  /*font-size: 12px;*/
  font-weight: normal;
  color: #333;
  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: #333;
}

#main.zaimushindan .zaimu_table_27 {
  /*font-size: 12px;*/
  font-weight: bold;
  color: #333;
  /*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: #333;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: right;
  background-color: #FFFfff;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #333;
}

#main.zaimushindan .zaimu_table_23b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #333;
  /*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: #333;
  border-left-color: #333;
}

#main.zaimushindan .zaimu_table_24b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #333;
  /*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: #333;
  border-left-color: #333;
}

#main.zaimushindan .zaimu_table_21b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #333;
  /*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: #333;
  border-right-color: #333;
  border-left-color: #333;
}

#main.zaimushindan .zaimu_table_29b {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #333;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: right;
  background-color: #FFFfff;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #333;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #333;
}

#main.zaimushindan .zaimu_table_29c {
  /*font-size: 11px;*/
  font-weight: bold;
  color: #333;
  /*line-height: 16px;*/
  letter-spacing: normal;
  text-align: right;
  background-color: #FFFfff;
  border-left-style: solid;
  border-left-color: #333;
  border-bottom-style: solid;
  border-bottom-color: #333;
  border-color: #333;
  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: #EFEFEF;
  /*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: 119px;
  left: 140px;
}

#page-top #pickupMenuArea .menu02 {
  position: absolute;
  top: 0px;
  left: 0px;
}

#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: 140px;
}

#page-top #pickupMenuArea .menu14 {
  position: absolute;
  top: 119px;
  left: 0;
}

#page-top #pickupMenuArea .menu14.current {
  position: absolute;
  top: 119px;
  left: 0;
  height: 114px;
  width: 134px;
  background: url(/n/img/pickupMenu14_pc_on.png) no-repeat left top;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu15 {
  position: absolute;
  top: 179px;
  left: 0;
}

#page-top #pickupMenuArea .menu15.current {
  position: absolute;
  top: 179px;
  left: 0;
  height: 114px;
  width: 134px;
  background: url(/n/img/pickupMenu15_pc_on.png) no-repeat left top;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu05 {
  position: absolute;
  top: 159px;
  left: 140px;
}


#page-top #pickupMenuArea .menu05.current {
  position: absolute;
  top: 159px;
  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: 0px;
  left: 279px;
}

#page-top #pickupMenuArea .menu07.current {
  position: absolute;
  height: 114px;
  width: 134px;
  background: url(/n/img/pickupMenu11_pc_on.png) no-repeat left top;
  text-indent: -9999px;
}

#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;*/
  margin: 0 5px;
  box-sizing: content-box;
}

#page-top #pickupBnrArea ul {
  width: 281px;
  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 {
  background-color: #f0f0f0;
  pointer-events: none;
}
#page-top #pickupBnrArea ul li.menu03 a img {
  margin-bottom: 3px;
}
/* #twitterArea
----------------------------------------------------------------*/

#page-top #twitterArea {
  float: right;
  width: 255px;
  box-sizing: content-box;
}

#page-top #twitterArea dl#twitterColumn>dt{
  height:32px;
  font-size:10px;
  background-color:#deeffb;
  border-radius:5px;
}

#page-top #twitterArea dl#twitterColumn>dt>p{
  padding:1px 0 1px 11px;
}

#page-top #twitterArea #twitter_sp{
  display:none;
}

/* importantNotice
------------------------------------------------------------------*/

#page-top #importantNotice {
  margin-top: 20px;
  margin-bottom: -10px;
}

#page-top #importantNotice .linkList {
  padding: 0;
}

/* newsArea
------------------------------------------------------------------*/

#page-top #newsArea {
  margin-top: 20px;
}

#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 #AC4506;
  color: #AC4506;
}

#page-top #newsArea .newsBox  .cat02 {
  border: 1px solid #396BA8;
  color: #396BA8;
}

#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 #6E6E6C;
}

#page-top #seminarArea .newsBox  dd span.tohoku {
  background: url(/n/img/label_bg02.png) repeat-x left top;
  border: 1px solid #557239;
}

#page-top #seminarArea .newsBox  dd span.kanto1 {
  background: url(/n/img/label_bg03.png) repeat-x left top;
  border: 1px solid #8D5C36;
}

#page-top #seminarArea .newsBox  dd span.kanto2 {
  background: url(/n/img/label_bg04.png) repeat-x left top;
  border: 1px solid #4E7A7E;
}

#page-top #seminarArea .newsBox  dd span.tokyo {
  background: url(/n/img/label_bg05.png) repeat-x left top;
  border: 1px solid #A14C5A;
}

#page-top #seminarArea .newsBox  dd span.hokuriku {
  background: url(/n/img/label_bg06.png) repeat-x left top;
  border: 1px solid #5F7197;
}

#page-top #seminarArea .newsBox  dd span.tokai {
  background: url(/n/img/label_bg07.png) repeat-x left top;
  border: 1px solid #6B6F64;
}

#page-top #seminarArea .newsBox  dd span.kinki1 {
  background: url(/n/img/label_bg08.png) repeat-x left top;
  border: 1px solid #7D645A;
}

#page-top #seminarArea .newsBox  dd span.kinki2 {
  background: url(/n/img/label_bg09.png) repeat-x left top;
  border: 1px solid #9B6262;
}

#page-top #seminarArea .newsBox  dd span.chugoku {
  background: url(/n/img/label_bg10.png) repeat-x left top;
  border: 1px solid #50804A;
}

#page-top #seminarArea .newsBox  dd span.shikoku {
  background: url(/n/img/label_bg11.png) repeat-x left top;
  border: 1px solid #786E90;
}

#page-top #seminarArea .newsBox  dd span.kyushu1 {
  background: url(/n/img/label_bg12.png) repeat-x left top;
  border: 1px solid #567691;
}

#page-top #seminarArea .newsBox  dd span.kyushu2 {
  background: url(/n/img/label_bg13.png) repeat-x left top;
  border: 1px solid #7A6545;
}

#page-top #seminarArea .newsBox  dd span.kaigai {
  background: url(/n/img/label_bg14.png) repeat-x left top;
  border: 1px solid #00507E;
}

#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;
}

/* ----------------------------------------------------------------
 add 2017.01
---------------------------------------------------------------- */

/* Seminar
-----------------------------------------------------------------*/
#main .btnApplicationLink {
	padding-top: 5px;
	text-align: right;
	line-height: 1;
}

#main .btnApplicationLink a {
	display: inline-block;
}

#main .btnApplicationLink a:hover {
	opacity: 0.5;
}


#main .eventCategory {
	margin-bottom: 7px;
}

#main .eventCategory li {
	display: inline-block;
	min-width: 90px;
	border: 1px solid #39723D;
	padding: 2px 4px;
	color: #39723D;
	font-size: 65%;
	line-height: 1;
	text-align: center;
}

/* Business Meeting
-----------------------------------------------------------------*/
#main .sectionMeeting {
	margin-bottom: 40px;
}


/* Home
-----------------------------------------------------------------*/
#page-top #seminarArea .newsBox dd span.cat {
	border: 1px solid #a15858;
}

#page-top #seminarArea .newsBox dt span.cat {
	display: inline-block;
	padding: 1px 4px 2px;
	font-size: 70%;
	margin-left: 10px;
	min-width: 90px;
	text-align: center;
}

#page-top #seminarArea .newsBox dt span.cat {
	border: 1px solid #39723D;
	color: #39723D;
}

/* business meeting
------------------------------------------------------------------*/
#page-top #meetingArea {
	margin-top: 30px;
}

#page-top #meetingArea .newsBox {
	width: 100%;
	border-top: 2px solid #FF7700;
}

#page-top #meetingArea .newsBox th {
	background: #FFD0A4;
	padding: 10px;
	vertical-align: top;
	text-align: left;
	width: 150px;
}

#page-top #meetingArea .newsBox th .more {
	margin-top: 10px;
}

#page-top #meetingArea .newsBox td {
	background: #fff;
	padding: 10px 0 10px 20px;
}

#page-top #seminarArea .newsBox td.open {
	background: #fff;
	padding: 0 15px;
}

#page-top #meetingArea .newsBox td dl {
	list-style-type: none;
}

#page-top #meetingArea .newsBox dt {
	font-size: 90%;
	line-height: 1.1;
	padding-bottom: 5px;
	padding-top: 10px;
}

#page-top #meetingArea .newsBox dd {
	border-bottom: 1px dotted #aaa;
	padding-bottom: 10px;
	overflow: hidden;
	font-size: 90%;
}

#page-top #meetingArea .newsBox dl:last-child dd {
	border-bottom: none;
	padding-bottom: 10px;
	overflow: hidden;
	font-size: 90%;
}

#page-top #meetingArea .newsBox dl dd a {
	padding-left: 16px;
	background: url(/n/common/img/arrow_icon09.png) no-repeat left 4.5px;
}

#page-top #meetingArea .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 #06c;
	border-radius: 4px;
	color: #fff;
}

#page-top #meetingArea .newsBox .fixNews dt span {
	margin-left: 0px;
}

#page-top #meetingArea .newsBox dd span.hokkaido {
	background: url(/n/img/label_bg01.png) repeat-x left top;
	border: 1px solid #6E6E6C;
}

#page-top #meetingArea .newsBox dd span.tohoku {
	background: url(/n/img/label_bg02.png) repeat-x left top;
	border: 1px solid #557239;
}

#page-top #meetingArea .newsBox dd span.kanto1 {
	background: url(/n/img/label_bg03.png) repeat-x left top;
	border: 1px solid #8D5C36;
}

#page-top #meetingArea .newsBox dd span.kanto2 {
	background: url(/n/img/label_bg04.png) repeat-x left top;
	border: 1px solid #4E7A7E;
}

#page-top #meetingArea .newsBox dd span.tokyo {
	background: url(/n/img/label_bg05.png) repeat-x left top;
	border: 1px solid #A14C5A;
}

#page-top #meetingArea .newsBox dd span.hokuriku {
	background: url(/n/img/label_bg06.png) repeat-x left top;
	border: 1px solid #5F7197;
}

#page-top #meetingArea .newsBox dd span.tokai {
	background: url(/n/img/label_bg07.png) repeat-x left top;
	border: 1px solid #6B6F64;
}

#page-top #meetingArea .newsBox dd span.kinki1 {
	background: url(/n/img/label_bg08.png) repeat-x left top;
	border: 1px solid #7D645A;
}

#page-top #meetingArea .newsBox dd span.kinki2 {
	background: url(/n/img/label_bg09.png) repeat-x left top;
	border: 1px solid #9B6262;
}

#page-top #meetingArea .newsBox dd span.chugoku {
	background: url(/n/img/label_bg10.png) repeat-x left top;
	border: 1px solid #50804A;
}

#page-top #meetingArea .newsBox dd span.shikoku {
	background: url(/n/img/label_bg11.png) repeat-x left top;
	border: 1px solid #786E90;
}

#page-top #meetingArea .newsBox dd span.kyushu1 {
	background: url(/n/img/label_bg12.png) repeat-x left top;
	border: 1px solid #567691;
}

#page-top #meetingArea .newsBox dd span.kyushu2 {
	background: url(/n/img/label_bg13.png) repeat-x left top;
	border: 1px solid #7A6545;
}

#page-top #meetingArea .newsBox dd span.kaigai {
	background: url(/n/img/label_bg14.png) repeat-x left top;
	border: 1px solid #00507E;
}

#page-top #meetingArea .newsBox dd span.external {
	float: none;
	background: url(/n/common/img/item-another-window.gif) no-repeat right center;
}

/* 行間・余白
------------------------------------------------------------------*/
.lineH16 {
	line-height: 1.6;
}

/* list
------------------------------------------------------------------*/

#main ul.list-item23 li {
	list-style-type: disc;
	background: none;
	padding-left: 1em;
	/* padding-left: 0; */
	margin-left: 0;
	/* margin-left: 1em; */
}

/* ------------- add ol-style ---- */
#main ol.parentheses01 {
	counter-reset: item;
	list-style-type: none;
	margin: 0.7em;
	padding-left: 0;
	line-height: 1.6;
}
#main ol.parentheses01.maMin {
	margin: 0.2em 0;
}
	#main ol.parentheses01 li{
      list-style-type: none;
	  text-indent: -2em;
	  padding-left: 2em;
	}
	#main ol.parentheses01 ol{
		padding-left: 1em;
	}

		#main .list-item04 ol.parentheses01 li{
			padding-left: 0;
		}

#main ol.parentheses01 li:before {
	counter-increment: item;
	content: "(" counter(item) ") ";
	/* 以下は自由に装飾... */
	/* display: marker; */
	padding-right: .2em;
	/* font-weight: 120; */
	color: #333;
}
#main ol.parentheses01.numBold li:before {
	font-weight: bold;
}
	#main ol.parentheses01 ul.linkList {
		counter-reset: item;
		list-style: none;
		margin-left: -2em;
	}
	#main ol.parentheses01 ul.linkList li{
		text-indent: 0;
		background: url(/n/common/img/arrow_icon03.png) no-repeat left 0.3em;
		padding-left: 1.4em;
	}
	#main ol.parentheses01 ul.linkList li:before{
		counter-increment: none;
		content: " ";
	}

	#main ol.parentheses01 li > div{
		text-indent: 0;
	}

#main ol.numList01 {
	margin:0;
	padding:0;
}
	#main ol.numList01 li {
		list-style: none;
		list-style-position:outside;
		margin:0;
		padding-left:1.25em;
	}
	#main ol.numList01 li:before {
		counter-increment: none;
		content: " ";
	}
	#main ol.numList01 li span {
		left:0;
		margin-right: 0.2em;
	}
	#main ol.parentheses01 ol.numList01{
		padding-left: 0.5em;
	}


/* relate_4-document ------------------------------------------- */

.document-list01 {
	margin-top: 0.5em;
	margin-left: 1em;
	font-weight: 500;
}

#main .innerList01 {
	margin: 0.5em 0 0.5em 1em;
}
	#main .innerList01 li {
		background-image: none;
		margin-top: 0.2em;
	}

/* 国154追加 /sme/support.html flexbox------------------------------------------- */

.flexContent{
	width:700px;
	margin:0 auto 30px;
}

.block{
	display:flex;
	justify-content:left;
	align-items:start;
	margin-top:30px;

}

.block .blockTxt{
	box-sizing:border-box;
	width:360px;

}
.block img{
	width:auto;
	margin-left:20px;
	mix-blend-mode: multiply;
}
.flexContent li{
	list-style-type: none;
 	margin: 0;
    padding-left: 0;

}

.listItem{
	 background: url(/n/common/img/arrow_icon03.png) no-repeat 0 center;
	 padding-left:15px;
}

.cap-item_noItem{
	padding: 4px;
    border: 1px #ccc solid;
    clear: both;
    display: block;
}

/* seminar ------------------------------------------- */

.seminar-jigyou{
	position: absolute;
}

.seminar-jigyou ul.list-item01{
	position: relative;
    top: 50px;
    left: 50px;
}

/* 20180907広088追加 トップページ ------------------------------------------- */

.emergencytop{
	margin-bottom: 0;}

.emergencytop .borderbox{
	border:2px solid #f79646;
	margin-top:10px;
	padding:5px;
	font-size:94%;
	text-align:center;}

.emergencytop .borderbox .fsize{
	font-size:150%;}

.emergencytop .listbox{
	margin:0 auto;
	width: 880px;}

.emergencytop .listbox ul{
	text-align:left;}

/* 201907総025追加 sme_reports ------------------------------------------- */

/* sme_sec1 */

#main .sme_sec1 {
	margin-bottom: 50px;
	display: flex;
	justify-content: center;
	gap: 24px;
}

#main .sme_sec1 .profile-table {
	width: 404px;
	/* float: right;
	margin-right:60px; */
}

#main .sme_sec1 .profile-table table {
	width: 100%;
	border-right: 1px solid #007f00;
	border-bottom: 1px solid #007f00;
}

#main .sme_sec1 .profile-table th,
#main .sme_sec1 .profile-table td {
	position:inherit;
	border-left: 1px solid #007f00;
	border-top: 1px solid #007f00;
	text-align: left;
	padding: 6px 10px;
}

#main .sme_sec1 .profile-table th {
	background-color: #a9daa4;
	font-weight: bold;
	width: 125px;
}

/* #main .sme_sec1 .image {
	float: left;
	margin-left:60px;
} */

/*ルビサイズ変更*/
#smeReports p ruby>rt{
    font-size: 8.5px;
    margin:-1px 0 -4px;
}

/* 201907広030追加 summary.html ------------------------------------------- */

#clickableMap .map2{
	display:none;
}

#clickableMap .map{
	margin:0 10px;
}
#clickableMap .map img{
	max-width:100%;
	height:auto;
}

/* 201909国191追加 /n/finance/jigyosyokei/matching/------------------------------------------- */
#main .matching_button{
	width:540px;
	margin:0 auto;
	padding-top:30px;
	text-align:center;
	clear:both;
	}

#main .matching_button ul li{
	float:left;
	margin-right:20px;
	margin-bottom:20px;
}

#main .matching_button ul li:nth-of-type(2n){
	margin-right:0;
}

#main .matching_button ul:after{
	content: "";
	display: block;
	clear: both;
}

#main .why_column{
	width:600px;
	margin:0 auto;
}

#main .why_column dl{
	background-color: #EEEEEE;
	padding: 8px 14px;
	margin-left: 100px;
}

#main .why_column dl>dt{
	color:#E24F00;
	font-weight:bold;
}

#main .why_column dl>dd{
	margin-left:1em;
}
#main .matching_orTxt{
	color:#ed5f00;
	text-decoration:underline;
	font-weight:bold;
}

/* 202012国290-02追加 /n/finance/jigyosyokei/matching/------------------------------------------- */

#main .matching_infocolumn{
	width:500px;
	margin:0 auto;
	color:#001A59;
	font-weight:bold;
}

#main .matching_infocolumn a{
	color:#001A59;
}

#main .matching_infocolumn .column{
	border:3px solid #001A59;
	padding:10px;
}

#main .matching_infocolumn .column .inner{
	width:240px;
	margin:0 auto;
	padding-top:5px;
	text-align:center;
}

#main .matching_infocolumn .column .inner .innercolumn{
	border:2px solid #001A59;
	padding:5px 0px;
}

/* 201909国191追加 Q&Aリスト書式------------------------------------------- */
#main .answerList dl{
	width:708px;
	margin-left:12px;
}

#main .answerList dl dt{
	float:left;
}

#main .answerList dl dd{
	margin-left:1em;
	text-indent:1em;
}

/* 201911国288追加 /n/finance/jigyosyokei/matching/------------------------------------------- */

#main .company_list .company_table table{
	width:100%;
	margin-bottom:20px;
	background-color:#ffffff;
}

#main .company_list tbody,
#main .company_list tbody th,
#main .company_list tbody td{
	border: 1px #dddddd solid;
	text-align:center;
	vertical-align:middle;
}

#main .company_list tbody,
#main .company_list tbody th{
	padding:6px 6px 6px 8px;
}

#main .company_list tbody td{
	padding:8px 8px 8px 8px;
}

#main .company_list .table_title th{
	background-color:#ffffff;
	border:none;
}

#main .company_list th.bottom{
	vertical-align:bottom;
}

#main .company_list th{
	background-color: #f0f0f0;
	font-weight:bold;
}

#main .company_list td ul.linkList{
	padding:0;
}

#main .company_list .icon01{
  border: 1px solid #CC4E01;
  color: #CC4E01;
}

#main .company_list span{
  display: inline-block;
  padding: 2px 4px 0px;
  font-size: 72%;
  min-width: 90px;
  text-align: center;
}

/* 201912国333追加 /n/finance/jigyosyokei/matching/ ＞NEWアイコン追加------------------------------------------- */

#main .company_list tbody th.center{
  padding:0;
}

.company_table .table_title .icon{
  position: relative;
  padding: 6px 6px 6px 8px;
}

.company_table .table_title .new{
position: absolute;
  left: 0px;
  top: 0px;
  height: 80px;
  width: 80px;
  overflow: hidden;
}

.company_table .table_title .new span{
  background: #D80026;
  color: #FFF;
  font-size: 90% !important;
  font-weight: 700;
  padding: 60px 0 2px !important;
  position: absolute;
  left: -103px;
  top: -44px;
  text-align: center;
  width: 200px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

/* 200521追加------------------------------------------- */

#minkan ul {
	width:720px;
}

#minkan ul li {
	width:236px;
	display:inline-block;
	vertical-align:top;
}

#minkan ul li li {
	display:list-item;
	list-style:disc;
}

/* 200609追加 新型コロナ関連ナビ_チャットボット位置調整--------- */

#web_plugin_chat_box{
	right:50px !important;
}

/* 20200610追加_新型コロナウイルス関連レスポンシブ対応-----------*/
#main .yushiIndent01{
	margin-left:2em;
}

#main .yushiIndent02{
	margin-left:6em;
}

#main .movieColumn{
	width:620px;
	margin:0 auto;
}

#main .movieColumn ul li{
	width:280px;
	float:left;
	margin-right:60px;
}

#main .movieColumn ul li:nth-of-type(2n){
	margin-right:0px;
}

#main .movieColumn ul li dl{
	width:280px;
	text-align:left;
	margin-bottom:5px;
}


/*clearfix*/
#main .movieColumn ul:after{
	content: "";
	display: block;
	clear: both;
}

/*200702追加*/
#main .greenRoundIcon{
	padding-left: 29px;
	background: url(/n/common/img/greenroundicon.png) no-repeat 0.4em 0.3em;
	font-size:120%;
	font-weight:bold;
}

/* 202008国164追加 /n/finance/jigyosyokei/matching/ ＞4つの特徴------------------------------------------- */

#main .matching_4points{
  width:680px;
  margin:0 auto;
  text-align:center;
}

#main .matching_4points .title{
  background-color:#E5F2D4;
  color:#238609;
  font-weight:bold;
  font-size:180%;
}

#main .matching_4points .title span{
  font-size:190%;
  color:#C30101;
}

#main .matching_4points .list{
  background-color:#F8FFE3;
  text-align:left;
  padding:20px 35px 30px 35px;
  }

#main .matching_4points .list dl>dt{
  color:#238609;
  font-weight:bold;
  font-size:165%;
}

#main .matching_4points .list dl>dd{
  margin-left:47px;
}


/* 202012広249追加 Top_PickUpMenuテンプレ内コロナ限定css------------------------------------------- */

.importantInformation .borderbox{
  padding:20px 30px;
}

.importantInformation .heading{
   font-size:180%;
  font-weight:bold;
   text-align:center;
}

.importantInformation .infoContainer{
  font-size:140%;
  font-weight:bold;
  text-align:left;
}

.importantInformation .subHeading1,
.importantInformation .subHeading2{
  font-size:120%;
}

.importantInformation .subHeading1{
  margin-left:1.6em; text-indent:-1.6em;
}

.importantInformation .innerColumn{
  border:1px solid #333; padding:15px;
}

.importantInformation .innerColumn .txt{
  margin-left:2em;
}

.importantInformation .importantInformationTable{
  width:100%;
  margin:16px 0;
}

.importantInformation .importantInformationTable table{
  width:100%;
}
.importantInformation .importantInformationTable th,
.importantInformation .importantInformationTable td{
  border:1px solid #333;
  text-align:center;
  vertical-align:middle;
}

/* 202105国055追加------------------------------------------- */

#main .flowBoxContainer{
  position:relative;
}

/* #main .flowBox{
  color:#fff;
  background-color:#3A61A7;
  text-align:center;
  border-radius:6px;
  padding:10px 20px;
} */

#main .orangeBox{
  background-color:#C86310;
}

#main .flowBox a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  /* height: 88px; */
  padding: 16px;
  margin: 5px 0 0;
  border-radius: 8px;
  box-shadow: 0 5px 0 0 #1C5A00;
  border: 1px solid #ccc;
  background-color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: .048em;
  text-decoration: none;
  transform: translateY(-5px);
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;
}

#main .sdgs .flowBox a {
    color: #fff !important;
    position: static;
    display: block;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    transform: translateY(0);
    letter-spacing: normal;
}

@media screen and (min-width: 768px) {
  #main .flowBox a:hover {
    box-shadow: 0 0 0 0 #1C5A00;
    transform: translateY(0);
  }
}

#main .flowBox a p {
  display: auto;
  /* display: flex; */
  /* align-items: center; */
  /* gap: 16px; */
  margin: 0;
  font-weight: 700;
  text-align: center;
}

#main .flowBox:hover {
  opacity:0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
  zoom: 1;
}

#main .flowBox a,
#main .flowBox a:hover,
#main .flowBox_2 {
  color:#333 !important;
  /* color:#ffffff !important; */
  text-decoration:none;
}

/* #main .flowBox a,
#main .flowBox a:hover,
#main .flowBox_2,
#main .flowBox_2 a {
  color:#ffffff !important;
  text-decoration:none;
} */

#main .flowBox_2 a {
  color:#fff !important;
}

#main table.flowcolumn {
  width:100%;
  margin-left:1em;
}

#main  table.flowcolumn td {
  border:none;
}


#main .flowBox_2 {
  color:#fff !important;
  /* color:#fff; */
  background-color:#5C75A2;
  width: 720px;
  padding:20px;
  max-width: 100%;
  margin: 0 auto;
}

#main .flowArrowArea_pc {
  width:100%;
  text-align:center;
  padding:20px;
  background:url(/n/finance/flow/img/flowArrowArea_bg.jpg) no-repeat top center;
  mix-blend-mode: multiply;
}

#main .btnInquiry {
  text-align: center;
  overflow:hidden;
}

#main .flowArrowArea_sp {
  display:none;
}

#main a.phoneLink {
  pointer-events:none;
}

/* 20230904 apply.html ------------------------------------------- */

#main .bgRedBox {
  background-color: #fae9e1;
  padding: 10px;
  border: 2px solid #C86310;
  border-radius: 10px;
  display: inherit;
}

/* #main .internet_btn {
  border: 4px solid;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
} */

#main .internet_btn .text{
  display: inline-block;
  vertical-align: text-top;
}

@media screen and (max-width: 767px) {
  #main .internet_btn .text {
    font-size: 16px;
    line-height: normal;
  }
}

#main .internet_btn .icon01{
  display: none;
  /* display: block; */
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 1;
  box-sizing: content-box;
  width: 56px;
  height: 56px;
}

#main .internet_btn .icon01::before{
	display: none;

  /* content: '';
  color: #3A61A7;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.40em 0.50em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto; */
}

#main .internet_btn .icon02{
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

#main .internet_btn .icon02::before{
  content: '';
  color: #C86310;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.40em 0.50em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* 20240304 procedure.html ------------------------------------------- */

#main .af_procedure .signup {
  background-color: #b6ede3;
  width: 70%;
  margin: 0 auto;
  padding: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-align: center;
}

#main .af_procedure .signup a {
  display: block;
  color: #10984b;
  font-weight: bold;
}

/* 20210927 top iframe ------------------------------------------- */

#child-iframe {
  margin-top:30px;
}

/* 202201広245追加 下層コロナページ------------------------------ */

#main .layout .matching_button {
  margin:12px 4px;
  width:720px; padding-top: 0;
}

#main .layout .red-blue li {
  margin-bottom:4px;
}

#main .layout .red-blue li:first-child {
  margin-right:4px;
}

#main .layout .matching_button .gray li {
  margin-bottom:0;
  margin-right:2px;
}

#main .layout .gray li:last-child {
  margin-right:0;
}

#main .layout .borderbox .heading {
  font-size:140%;
}

#main .layout .borderbox .large {
  font-size:120%;
}

#main .layout .borderbox .innerColumn .txt{
  font-size:80%;
}

#main .layout .borderbox .infoContainer .subHeading1 {
  font-size:100%;
}

#main .layout .borderbox .infoContainer .txt {
  font-size:80%;
}

#main #covid-19_info .ml10 {
  font-size:90%;
}

/* 202201広245追加 トップページ------------------------------ */

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

#top-slider {
  margin-top: 10px;
}

#top-slider .slick-dots {
  bottom: -20px;
}

#top-slider p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 100px;
  color: #666;
  margin: 5px;
  text-align: center;
}

.attention {
  width: 100%;
  text-align: center;
  background-color: #eee;
  height: 40px;
  line-height: 3.0;
}

#page-top #newsArea.nA-red {
}

#page-top #newsArea.nA-red .newsBox {
  border-top: 2px solid #a30716;
}

#page-top #newsArea.nA-red .newsBox th {
  background: #fef4f5;
}

#page-top #newsArea.nA-red .newsBox dl dd p {
  padding-top: 10px;
  padding-left: 16px;
  background: url(/n/common/img/arrow_icon03_red.png) no-repeat left 13px;
}

#page-top #newsArea.nA-red .newsBox dl dd p a {
  padding-left: 0;
  background:none;
}

#page-top #newsArea.nA-red .newsBox dl dd p span {
  float: none;
  font-size: 105%;
}
/* 202201国420追加 インターネット申込ページ------------------------------ */

#main .internet .flowBox {
  width: 79.8214285714%;/* 894px */
  /* background: linear-gradient(#3A61A7, #294b88); */
  /* width: 600px; */
  margin: 0 auto;
}

#main .internet .orangeBox {
  background: linear-gradient(#C86310, #b85302);
  width: 600px;
  margin: 0 auto;
}

#main .internet .green {
  background-color: #E9F4E1;
  padding: 10px;
  border: 2px solid #70ac47;
  border-radius: 10px;
  display: inherit;
}

#main .internet .nowrap {
  vertical-align: top;
}
/* 202312国337追加 インターネット申込ページ------------------------------ */

#main .internet .green .green_btn .linkBtn {
  background: #548235;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  width: 49%;
  padding: 0.5rem 0;
  text-decoration: none;
}

#main .internet .green .green_btn .linkBtn:hover{
  opacity:0.5;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

/* 20220401国004追加 生活衛生関係者ページ------------------------------ */

#page-seikatsueisei #main .flowBox01 table.green01 table th {
  background-color: #EFEFEF;
  color: #000;
}

/* 202205企001追加 融資制度とSDGsとの関係ページ------------------------------ */
#main .sdgs_yuusi table td img {
  display: inline;
  margin: 4px;
}

/* 202205企001追加 日本公庫の取組みを通じたSDGsへの貢献 ページ------------------------------ */

#main .sdgs_gyoumu .flowBox {
  background-color: #d9e6d0;
}

#main .sdgs_gyoumu .flowBox a {
  color: #000 !important;
}

/* 202205企001追加 融資制度におけるSDGsマッピング ページ------------------------------ */

#main .sdgs_yuusi .flowBox {
  background-color: #d9e6d0;
}

#main .sdgs_yuusi .flowBox a {
  color: #000 !important;
}
/* 202205企001追加 SDGsトップページ------------------------------ */
.sdgs_top {
  background-color: #fff;
}
.sdgs_top #content {
  width: 1160px;
  margin: 0 auto;
}
#main .sdgs .sdgs_gl_nav {
  width: 1160px;
  margin: auto;
  display: flex;
}
#main .sdgs .flowBox {
  background-color: #92d050;
  text-align: center;
  padding: 10px 20px;
  border-radius: 0;
  border-top: 2px solid;
  border-left: 2px solid;
  border-bottom: 2px solid;
  border-color: #6fad2d;
  flex: 1;
}
#main .sdgs .flowBox:last-child {
  border-right: 2px solid;
  border-color: #6fad2d;
}

/* 202205広050追加 金利 国民------------------------------ */
.rate_container{
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #ddd;
}
.rate_container dl.rate_item{
  width: 59px; /* PC 59px,sp 20% */
}
.rate_container dl.rate_item:nth-child(-n+12){ /* PC 12,sp 5 */
  border-top:  1px solid #ddd;
}
.rate_container dl.rate_item dt,
.rate_container dl.rate_item dd{
  padding: 2px;
  text-align: center;
  border-left: none;
  border-right: 1px solid #ddd;
  border-top: none;
  border-bottom: 1px solid #ddd;
}
.rate_container dl.rate_item dt{
  font-weight: bold;
  background-color: #f0f0f0;
}

/* 202206国132追加 経営お役立ち情報 国民 事例-------------- */
.jirei_k .container {
  letter-spacing: -0.5em;
}
.jirei_k .container a {
  color: #000;
}
.jirei_k .box {
  display: inline-block;
  width: 50%;
  letter-spacing: normal;
  padding: 0 0.5em;
  margin-top: 1rem;
}
.jirei_k .box:nth-child(odd) {
  padding-right: 0;
}
.jirei_k .box .box_inner {
  padding: 0.8em;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.jirei_k .box .box_inner:hover {
  outline: 1px solid #6AB547;
}
.jirei_k .box .text {
  display: inline-block;
  width: 70%;
  vertical-align: middle;
}
.jirei_k .text img {
  display: block;
}
.jirei_k .box .image {
  display: inline-block;
}
.jirei_k .box .image img{
  vertical-align: middle;
}

/* 202303 トップページ改修 Notice-------------- */
#newsArea .noticeBox .attention {
  height: 46px;
  text-align: left;
  padding-left: 12px;
  border-top: 2px solid #a30716;
  background-color: #fef4f5;
}
#newsArea .noticeBox .attention img {
  padding-top: 10px;
}
#newsArea .noticeBox ul li {
  padding-left: 20px;
  background: url(/n/common/img/arrow_icon03_red.png) no-repeat left 4px;
  border-bottom: 1px dotted #aaa;
  letter-spacing: 0.05em;
  padding-bottom: 1em;
  margin-top: 1em;
  line-height: 1.7;
}

/* 202303 トップページ改修 #pickupMenuArea-------------- */
#page-top .area {
  overflow: hidden;
}

#page-top #content {
  overflow: visible;
}

#page-top #content #main .covid19{
  margin-top: 10px;
}
#page-top #container #pageTop {
  z-index: 100;
}
#page-top .threeculom{
  background-color: #f0f8dc;
  margin-left: calc(45% - 50vw);
  margin-right: calc(45% - 50vw);
  padding-left: calc(50vw - 50% + 50px);
  padding-right: calc(50vw - 50% + 50px);
}
#page-top .threeculom #pickupMenuArea{
  width: 100%;
  height: auto;
  float: none;
  margin: 40px auto 0;
}

/* 202303 トップページ改修 #pickupMenuArea first-------------- */
.threeculom #pickupMenuArea .first {
  display: flex;
  justify-content: space-between;
  font-size: 0;
  line-height: 0;
}
.threeculom #pickupMenuArea .first li {
  display: flex;
  margin-bottom: 12px;
}

/* 202303 トップページ改修 #pickupMenuArea second-------------- */
.threeculom #pickupMenuArea .second {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0;
  line-height: 0;
}

.threeculom #pickupMenuArea .second .detailBox{
  display: none;
}

.threeculom #pickupMenuDetailBox .menu14Detail ul:after {
  content:"";
  width: 300px;
  height: 0;
}
.threeculom #pickupMenuArea .second li{
 margin-bottom: 8px;
}
#page-top #pickupMenuArea .menu01 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu02 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu02.current {
  height: 173px;
  width: 310px;
  background: url(/n/img/first_area01_pc_on.png) no-repeat;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu03 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu14 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu14.current {
  position: relative;
  top: auto;
  left: auto;
  height: 73px;
  width: 230px;
  background: url(/n/img/second_area01_pc_on.png) no-repeat;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu15 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu05 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu05.current {
  position: relative;
  top: auto;
  left: auto;
  height: 73px;
  width: 230px;
  background: url(/n/img/second_area07_pc_on.png) no-repeat;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu06 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu07 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu07.current {
  position: relative;
  height: 73px;
  width: 230px;
  background: url(/n/img/second_area04_pc_on.png) no-repeat;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu08 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu09 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu09.current {
  position: relative;
  top: auto;
  left: auto;
  height: 73px;
  width: 230px;
  background: url(/n/img/second_area03_pc_on.png) no-repeat;
  text-indent: -9999px;
}

#page-top #pickupMenuArea .menu10 {
  position: relative;
  top: auto;
  left: auto;
}

#page-top #pickupMenuArea .menu10.current {
  position: relative;
  top: auto;
  left: auto;
  height: 73px;
  width: 230px;
  background: url(/n/img/second_area06_pc_on.png) no-repeat;
  text-indent: -9999px;
}

/* 202303 トップページ改修 .third-------------- */
.threeculom .third {
  display: flex;
  justify-content: space-between;
  font-size: 0;
  line-height: 0;
  padding-bottom: 40px;
}
.threeculom .third .yuushi img{
  vertical-align: bottom;
}
#page-top #twitterArea {
  width: 310px;
  height: 300px;
  border: 2px solid #afe286;
  border-radius: 7px;
  box-sizing: border-box;
  background-color: #fff;
}
#page-top #twitterArea dl#twitterColumn>dt {
  height: 112px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 1em 0 0;
  border-bottom: 1px solid #aaa;
}
.threeculom .third #twitterArea #twitterColumn #twitter_pc{
  display: inline-block;
}
#page-top #twitterArea #twitterColumn dt p {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  padding: 0;
}
#page-top #twitterArea #twitterColumn dt .twitter_acount{
  font-size: 12px;
  margin-bottom: 6px;
}
#page-top #twitterArea #twitterColumn dt .twitter_text{
  color: #000;
  font-size: 19px;
  margin: 8px 12px 0;
  text-align: start;
  font-weight: bold;
}

#page-top #pickupMenuDetailBox {
  background: #d6f098;
  margin-bottom: 20px;
}

#page-top #pickupMenuDetailBox dd {
  padding: 16px;
}
#page-top #pickupMenuDetailBox ul {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#page-top #pickupMenuDetailBox ul li {
  float: none;
  width: auto;
  margin: 0;
}
#page-top #pickupMenuDetailBox ul li a {
  border: none;;
  padding: 0;
  background: none;
}
#page-top #pickupMenuDetailBox ul li.pickupMenu02_icon01 a {
  background: none;
}
#page-top #pickupMenuDetailBox ul li.pickupMenu02_icon02 a {
  background: none;
}
#page-top #pickupMenuDetailBox ul li.pickupMenu02_icon03 a {
  background: none;
}

/* 202310 電子契約サービス新規 econtract-------------- */
#main .econtract_cn .Login_btn {
  text-align: center;
}
#main .econtract_cn .faq_btn {
  text-align: center;
}
#main .econtract_cn .Login_btn .text{
  border-radius: 10px;
  background-color: #92d050;
  padding: 10px 60px;
  display: inline-block;
  font-size: 140%;
  color: #fff;
}
#main .econtract_cn .faq_btn .text{
  border-radius: 10px;
  background-color: #9dc3e6;
  padding: 10px 30px;
  display: inline-block;
  font-size: 140%;
  color: #fff;
}
#main .econtract_cn .flowBox {
  width: 100%;
  /* width: 70%; */
  text-align:center;
  border-radius:6px;
  padding:10px 20px;
}
#main .econtract_cn .blue {
  background: #248fb1;
  color: #fff;
}
#main .econtract_cn .green {
  background: #6cb349;
  color: #fff;
}
#main .econtract_cn .flowBox a {
  display: inline-block;
}
#main .econtract_cn .flowBox:hover {
  opacity:1.0;
  filter: alpha(opacity=100);
  -ms-filter: "alpha( opacity=100 )";
}
#main .econtract_cn .box::after {
  content: "";
  display: table;
  clear: both;
}
#main .econtract_cn .box .img {
  width: 25%;
  display: inline-block;
}
#main .econtract_cn .box .text{
  width: 75%;
  display: inline-block;
}

/* 202504 電子契約サービス econtract-------------- */
#main .econtract_cn .column2_btn {
  display: flex;
  margin-top: 10px;
}
#main .econtract_cn .column2_btn .box {
  width: 100%;
}

#main .econtract_cn .column2_btn .box .text {
  width: 60%;
  padding: 0.6rem 0;
}

/* 202401 事業再生関連資料 publication-------------- */
#main .signal_movie .text_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#main .signal_movie .text_img .box {
  width: 50%;
  text-align: center;
}

/* 202401 使命 mission-------------- */
#main .bgGreenLineBox {
  padding: 10px;
  border: 2px solid #70ac47;
  border-radius: 10px;
}

/* 202401 創業融資のご案内 sogyoyushi-------------- */
#main .bgGreenBox {
  background-color: #E9F4E1;
  padding: 10px;
  border-radius: 10px;
}
#main .bgGreenBox .point_lead{
  width: 350px;
  margin: 0 auto;
}
#main .dashedGreen {
  border: 2px dashed #70ac47;
  padding: 10px;
}

/* 202405 調達情報サービスのご案内 service_guide-------------- */
.jfcLinkBtn {
  margin-bottom:5px;
}

.jfcLinkBtn .LeftArea,
.jfcLinkBtn .RightArea{
  display: inline-block;
  width: 49%;
  text-align:center;
}
.jfcLinkBtn .btnL {
  border: 1px solid #92d050;
  border-radius: 10px;
  background-color: #92d050;
  margin-right: 3px;
  width: 90%;
  height:auto !important;
  /* height:50px; */
  padding: 10px;
  display: inline-block;
  font-size: 180%;
  color: #fff;
  line-height: 2.0;
}
.jfcLinkBtn .btnR {
  border: 1px solid #92d050;
  border-radius: 10px;
  background-color: #92d050;
  margin-right: 0px;
  width: 90%;
  height:auto !important;
  /* height:50px; */
  padding: 10px;
  display: inline-block;
  font-size: 180%;
  color: #fff;
  line-height: 2.0;
}
.jfcLinkBtn .btnL:hover,
.jfcLinkBtn .btnR:hover {
    background-color: #348b0b;
    border-color:#348b0b;
}

/* 202405 ダイレクトアプリ公開 direct-------------- */
.column2_movie {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column2_box{
   width: 48%;
}
@media(max-width:640px){
    .column2_movie{
        flex-direction: column;
    }
    .column2_box{
        width: 100%;
    }
}
/* 202405 ダイレクトアプリ公開 direct_app-------------- */
#main .direct_app_point {
  margin-left: 1rem;
}
#main .direct_app_point dt {
  margin-top: 1rem;
}
#main .direct_app_point dt span {
  border: 1px #000 solid;
  padding: 2px 6px;
}
#main .direct_app_point dd {
  margin-top: 0.5rem;
}
/* 202407 刊行物 国民 出版物 kokumin_publications-------------- */
#main .pub_block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
#main .pub_box2 {
  width: 50%;
}
#main .pub_box2:nth-child(n+3){
  margin-top: 1rem;
}
#main .pub_box3 {
  width: calc(100%/3);
}
#main .pub_text {
  margin: 0 1rem;
}
/* 202408 刊行物 新規開業に関する調査 eb_findings-------------- */
#main .eb_findings table{
  table-layout: fixed;
}
#main table .w_20 {
  width: 20%;
}
#main table .w_40 {
  width: 40%;
}
#main table .w_60 {
  width: 60%;
}
/* 202408 刊行物 ここにこの人あり kokohito firefox-------------- */
@-moz-document url-prefix() {
  .kokohito_keieisya rt {
    margin-bottom: -4px;
    font-size: 10px;
  }
}

/* 202504 国民生活事業 財務診断 zaimu_kokumin-------------- */
.border_Green {
  border: 2px solid #70ac47;
}
.column2_evenly {
  display: flex;
  justify-content: space-evenly;
}
/* 202504 プロフィール profile-------------- */
  .symbol_mark {
    border: 2px solid #92d75a;
    border-radius:10px;
    padding: 10px;
    margin-top: 20px;
  }
  .symbol_mark .title {
    display: flex;
    align-items: center;
    color: #4c822e;
    font-weight: bold;
  }
  .symbol_mark .title:after {
    content: "";
    height: 3px;
    flex-grow: 1;
    background-image: repeating-linear-gradient(90deg, #70be46, #fefefe);
    margin-left: 1.5rem;
  }
  .symbol_mark .box {
    display: flex;
    margin-top: 15px;
  }
  .symbol_mark .image {
    width: 25%;
    text-align: center;
  }
  .symbol_mark .text {
    width: 75%;
  }
/* 202505 direct　資料請求 -------------- */
.shiryoseikyu {
  margin-bottom: 80px;
  margin-top: 20px;
  width: 1240px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;

}
.shiryoseikyu img {
  vertical-align: bottom;
}
.shiryoseikyu .lead {
  text-indent: 1rem;
}
.Direct-LP-title1 {
  padding: 0 0 15px;
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.Direct-LP-title1_icon {
  margin: 0 14px 0 0;
}
.Direct-LP-title1_icon img {
  mix-blend-mode: multiply;
}
.Direct-LP-title1_txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: -7px 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #222222;
  font-weight: bold;
}
.Direct-LP-title1::after {
  content:"";
  width: 100%;
  height: 3px;
  background: #eaeaea;
  border-radius: 30px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.siryo_dl {
  border: 4px solid #f0f8ec;
  display: flex;
  justify-content: center;
  /* justify-content: space-between; */
  padding: 1.5rem 2.0rem;
  /* padding: 1.5rem 3.0rem; */
  margin-top: 1rem;
  gap: 24px;
  flex-wrap: wrap;
}
.siryo_dl .LeftArea p {
  margin: 2.5rem 0 4rem 0;
}
.siryo_dl .btn {
  border-radius: 10px;
  background-color: #3ba808;
  padding: 1rem 4rem 1rem 2rem;
  color: #fff;
  display: inline-block;
  position: relative;
  font-size: 120%;
}
.siryo_dl .btn.kyouiku {
  background-color: #f07c34;
}
span.btn::after {
  content: url(/n/finance/direct/img/lp/icon_download.png);
  display: inline-block;
  position: absolute;
  margin-left: 0.7rem;
}
.siryo_dl .btn:hover {
  background-color: #348b0b;
}
.siryo_dl .btn.kyouiku:hover {
  background-color: #e06011;
}
/* 202507 15_kankyoutaisaku　環境・エネルギー対策資金 -------------- */
.gx_movie {
  padding: 0 1rem;
}
.gx_movie .text_img {
  display: flex;
  flex-wrap: wrap;
}
.gx_movie .text_img .box {
  width : calc(100% / 3 - 1rem);
  margin-right: 1.5rem;
}
.gx_movie .text_img .box:nth-child(3n) {
  margin-right: 0;
}
.gx_movie .text_img .box img {
  width : 100%;
  height: auto;
}
.gx_movie .text_img .box p {
  text-align: left;
}
/* 202508 doc_internet　インターネット申込の必要書類のご案内 -------------- */
.border_solid {
  border-bottom: 1px solid #70ac47;
}
.border_dashed {
  border-bottom: 1px dashed #70ac47;
}
.list-item17 li {
  background-image: url(/n/common/img/item-list06.gif);
  background-repeat: no-repeat;
  background-position: left .35em;
  margin-right: 18px;
  padding-left: 12px;
}
.list-item17 .list-item16 li {
  background-image: none;
  padding-left: 0px;
}

/* 202512 /n/company/sme/insurance_outline.html 信用保険業務（概要） -------------- */
#main .clearfix:has(img[alt*="保証利用率"]) {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

#main .newflow:has(.block-orange) {
  width: 680px;
  max-width: 100%;
  margin: 0 auto;
}
#main p.mt30.mb15:has(+ .newflow .block-orange) {
  width: 680px;
  max-width: 100%;
  margin: 30px auto 15px !important;
}

/* 202512 /n/company/sme/outline.html 業務の概要・特徴 -------------- */
#main .figure.clearfix.mb30:has(img[src*="outline_2025"]) {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* 202512 /n/match/matching4.html 商談会等の開催結果 -------------- */
#main .table table:has(img[src*="matching"]) {
  table-layout: fixed;
  width: 100%;
}

/* ヘッダー行の列幅設定 */
#main .table table:has(img[src*="matching"]) > tbody > tr:first-child > th:nth-child(1) {
  width: 60px;
}

#main .table table:has(img[src*="matching"]) > tbody > tr:first-child > th:nth-child(2) {
  width: 340px;
}

#main .table table:has(img[src*="matching"]) > tbody > tr:first-child > th:nth-child(3) {
  width: 120px;
}

#main .table table:has(img[src*="matching"]) > tbody > tr:first-child > th:nth-child(4) {
  width: 240px;
}

#main .table table:has(img[src*="matching"]) > tbody > tr:first-child > th:nth-child(5) {
  width: auto;
}

@media (max-width: 768px) {
  #main .table table:has(img[src*="matching"]) {
      display: block;
      overflow-x: auto;
    }
}

/* 202512 /n/company/summary.html 国民生活事業の業務の概要 -------------- */
#main .figure:has(img[src*="summary_2025_01"]) {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: flex-start;
}

#main .figure:has(img[src*="summary_2025_01"]) .float-l, #main .figure:has(img[src*="summary_2025_01"]) .float-r {
  float: none;
  max-width: 50%;
}

#main .figure:has(img[src*="summary_2025_01"]) img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #main .figure:has(img[src*="summary_2025_01"]) {
    flex-direction: column;
    align-items: center;
  }

  #main .figure:has(img[src*="summary_2025_01"]) .float-l,
  #main .figure:has(img[src*="summary_2025_01"]) .float-r {
    max-width: 100%;
  }
}

/* 202512 /n/service/mail_kokumin.html メール配信サービス -------------- */
.cap-item04-block {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 0;
  padding: 24px;
  border: 1px solid #ccc;
}

.cap-item04-block .image-l {
  flex: 0 0 340px;
}

.cap-item04-block .txt {
  flex: 1;
}

@media (max-width: 768px) {
  .cap-item04-block {
  	flex-direction: column;
  	align-items: center;
  }

  .cap-item04-block .image-l {
    flex: auto;
	text-align: center;
  }
}

/* 202512 /n/company/af/outline.html 農林水産事業の業務の概要 -------------- */
/* このページ専用のスタイル */
#main .figure:has(img[src*="outline_2025_01"]) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: flex-start;
}

#main .figure:has(img[src*="outline_2025_01"]) .float-l,
#main .figure:has(img[src*="outline_2025_01"]) .float-r {
  float: none;
  flex: 0 0 auto;
}

#main .figure:has(img[src*="outline_2025_01"]) .clear {
  display: none;
}

#main .figure:has(img[src*="outline_2025_01"]) img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  #main .figure:has(img[src*="outline_2025_01"]) {
    flex-direction: column;
    align-items: center;
  }

  #main .figure:has(img[src*="outline_2025_01"]) .float-l,
  #main .figure:has(img[src*="outline_2025_01"]) .float-r {
    width: 100%;
  }
}

/* 202512 /n/info/info_bn/news210903.html 地域経済活性化シンポジウムin熊本を開催します。 -------------- */
#main .mb10 + .mt10 table {
  background-color: #FAF8F0;
}

/* セルの背景色も変更する場合 */
#main .mb10 + .mt10 table td {
  background-color: #FAF8F0;
}

/* 202512 /n/company/national/guarantor.html 保証人に依存しない融資 -------------- */
.cap-item-outer.fixHeight:has(.in_h2) {
  display: block;
}

/* 202512 新デザインで画像を横並びセンター配置にする -------------- */
.img-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 0;
}
@media (max-width: 767px) {
  .img-wrap {
	flex-direction: column;
  }
}

#main .linkList table td {
    background-color: transparent;
}

#main .list-item100 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  list-style-type: none;
}
#main .list-item100 > li {
  position: relative;
  padding-left: 16px;
}
#main .list-item100 > li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 11px;
  height: 11px;
  background-image: url(/n/common/img/arrow_icon03.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  content: "";
}

/* table-transparenntクラスを追加でtable背景透過 */
table.table-transparent td {
  background-color: transparent;
}

div[align="center"] img {
  mix-blend-mode: multiply;
}

.flexContent.align-left {
  margin: 0 0 30px;
}

/* インラインでfont-weight: normalが指定されている要素を500に上書き */
[style*="font-weight: normal"],
[style*="font-weight:normal"] {
	font-weight: 500 !important;
}
[style*="font-weight: normal"],
[style*="font-weight:normal"],
[style*="font-weight: 400"],
[style*="font-weight:400"] {
	font-weight: 500 !important;
}

.flow p img {
  mix-blend-mode: multiply;
}

/* 202512 /n/finance/saftynet/202007saigai.html 令和2年7月3日からの大雨による災害に関する特別相談窓口 -------------- */
@media (max-width: 767px) {
  .page-202007saigai #main .table-4col-top th[style*="min-width"] {
    min-width: 80px !important;
  }
}

/* 202512 /n/company/f_statements.html 業務と財務の状況 -------------- */
.cap-item-outer.cap-item03-lists {
  display: grid;
  grid-template-columns: repeat(2, auto);
}
.cap-item-outer.cap-item03-lists .cap-item03 {
  margin: 0 24px 24px 0;
}
@media (max-width: 767px) {
  .cap-item-outer.cap-item03-lists {
    grid-template-columns: 1fr;
  }

  .cap-item-outer.cap-item03-lists .cap-item03 {
    margin: 0 0 24px 0;
  }
}
