@charset 'UTF-8';

html {
	overflow-y: scroll;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 100%;
	vertical-align: baseline;
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
th {
	font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
	display: block;
}

ol,
ul,
li {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	background: transparent;
	font-size: 100%;
	vertical-align: baseline;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-weight: bold;
	font-style: italic;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

input,
select {
	vertical-align: middle;
}

img,
object,
embed {
	vertical-align: top;
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

html {
	font-size: 100%;

	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
}

body {
	position: relative;
	min-width: 1000px;
	color: #222;
	line-height: 1.625;
}

body.font-m {
	font-size: 1em;
}

body.font-l {
	font-size: 1.5em;
}

body.font-ll {
	font-size: 2em;
}

input,
textarea,
button {
	font-family: inherit;
	font-size: inherit;
}

a {
	color: #00498d;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	outline: 2px dotted #00498d;
}

img {
	max-width: 100%;
}

hr {
	height: 1px;
	margin: 0;
	padding: 0;
	border: none;
	background: #999;
	line-height: 0;
}

input[type='text'],
input[type='search'] {
	margin: 0;
	padding: 7px 12px;
	border: none;
	-webkit-box-shadow: inset .707px .707px 0px 0px rgba(0, 0, 0, .2);
	        box-shadow: inset .707px .707px 0px 0px rgba(0, 0, 0, .2);
	background: #eee;

	-webkit-appearance: none;
}

input[type='text']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder {
	opacity: 1;
	color: #6a6a6a;
}

input[type='text']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder {
	opacity: 1;
	color: #6a6a6a;
}

input[type='text']::-ms-input-placeholder,
input[type='search']::-ms-input-placeholder {
	opacity: 1;
	color: #6a6a6a;
}

input[type='text']::placeholder,
input[type='search']::placeholder {
	opacity: 1;
	color: #6a6a6a;
}

input[type='text']::-moz-placeholder,
input[type='search']::-moz-placeholder {
	opacity: 1;
	color: #6a6a6a;
}

input[type='text'] {
	border-radius: 4px;
}

input[type='search'] {
	border-radius: 4px 0 0 4px;
}

button {
	margin: 0;
	padding: 0;
	border: none;
	cursor: pointer;

	-webkit-appearance: none;
}

.btn {
	display: block;
	border-radius: 4px;
	background: #007d64;
	color: #fff;
}

.btn:hover {
	background: #e7faee;
	color: #007d64;
	text-decoration: none;
}

.btn.btn-search {
	position: relative;
	width: 25%;
	min-width: 125px;
	padding: 7px 19px 7px 12px;
	border-radius: 0 4px 4px 0;
	font-weight: bold;
}

.btn.btn-search::before {
	display: inline-block;
	margin-top: 0px;
	margin-right: 7px;
	line-height: 1;
	vertical-align: middle;
	content: url(/assets/img/common/icon_search.png);
}

.btn.btn-search:hover::before {
	content: url(/assets/img/common/icon_search_on.png);
}

.btn.btn-s {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	position: relative;
	min-width: 115px;
	padding: 2px 25px 2px 20px;
	font-size: .875em;

	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.btn.btn-s::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 12px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	width: 5px;
	height: 5px;
	margin-top: -4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	content: '';
}

.btn.btn-s:hover {
	border: 2px solid;
}

.btn.btn-s:hover::after {
	border-color: #007d64;
}

.l-navskip {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 14px 0;
	background: #e8e8e8;
	font-size: .875em;
}

.l-navskip.is-open {
	clip: auto;
	position: static;
	overflow: visible;
	width: 100%;
	height: auto;
}

.l-navskip .l-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}

.l-navskip .navskip-list li {
	display: inline-block;
}

.l-navskip .navskip-list li + li {
	margin-left: 1em;
}

.l-navskip .navskip-list a {
	position: relative;
	padding-left: 20px;
}

.l-navskip .navskip-list a::before,
.l-navskip .navskip-list a::after {
	display: block;
	position: absolute;
	content: '';
}

.l-navskip .navskip-list a::before {
	top: .5em;
	left: 0px;
	width: 13px;
	height: 13px;
	margin-top: -6px;
	border-radius: 4px;
	background: #007d64;
}

.l-navskip .navskip-list a::after {
	top: .5em;
	left: 3px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	width: 4px;
	height: 4px;
	margin-top: -2px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.l-navskip a {
	color: #222;
	font-weight: bold;
}

.l-header .l-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.l-header .logo {
	width: 50%;
	padding: 10px 0 20px;
}

.font-ll .l-header .logo {
	width: 37.5%;
}

.l-header .header-unit {
	width: 50%;
	padding: 20px 0 16px;
}

.font-ll .l-header .header-unit {
	width: 62.5%;
}

.l-header .links {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	margin-bottom: 10px;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.font-ll .l-header .header-link {
	        flex: 1;

	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
}

.l-header .header-link li {
	display: inline-block;
	margin-left: 10px;
}

.l-header .header-link a {
	padding-left: 20px;
	background: url(/assets/img/common/icon_link_g.png) no-repeat left center;
	color: #222;
	font-size: .875em;
	font-weight: bold;
	line-height: 1.85714;
}

.l-header .fontsize {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.l-header .fontsize dt {
	font-size: .875em;
	font-weight: bold;
	line-height: 1.85714;
}

.l-header .fontsize dd {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	padding: 1px;
	border-radius: 4px;
	background: #eee;

	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	        align-items: stretch;
}

.l-header .fontsize a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	min-width: 65px;
	margin: 1px;
	border-radius: 2px;
	background: #007d64;
	color: #fff;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
}

.l-header .fontsize a:hover {
	background: #e7faee;
	color: #007d64;
	text-decoration: none;
}

.l-header .fontsize a.font-current {
	border: 1px solid;
	background: #fff;
	color: #666;
}

.l-header .fontsize a[data-size='large'] {
	font-size: 1.125em;
}

.l-header .fontsize a[data-size='ex-large'] {
	font-size: 1.25em;
}

.search-unit {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
}

.search-unit .box-search {
	width: 75%;
}

.l-footer {
	padding-top: 38px;
	border-top: 1px solid #666;
}

.l-footer-bottom {
	margin-top: 12px;
	padding: 12px 0 18px 0;
	background: #e8e8e8;
}

.l-footer-bottom .l-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.l-footer-bottom .logo img {
	vertical-align: middle;
}

.l-footer-bottom .footer-link {
	display: table;
	margin-top: 13px;
	font-size: .875em;
	line-height: 1;
}

.l-footer-bottom .footer-link li {
	display: table-cell;
}

.l-footer-bottom .footer-link li + li::before {
	padding: 0;
	content: '\02002|\02002';
}

.l-footer-bottom .footer-link li:nth-child(1) {
	padding-left: 10px;
}

.l-footer-bottom .footer-link a {
	color: #666;
}

.l-footer-bottom .footer-link a[target='_blank']::after {
	display: inline-block;
	margin-top: 0px;
	margin-left: 5px;
	line-height: 1;
	vertical-align: middle;
	content: url(/assets/img/common/icon_blank_g.png);
}

.l-footer-bottom .footer-link iframe {
	overflow: hidden;
	width: 140px;
	height: 21px;
	border: none;
	vertical-align: text-bottom;
}

.l-copyright {
	padding: 30px 0;
}

.l-copyright .l-inner {
	position: relative;
}

.l-copyright p {
	color: #666;
	font-size: .75em;
	text-align: center;
}

.footer-ttl {
	margin-bottom: 15px;
	padding-left: 15px;
	border-left: 4px solid;
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1.6;
}

.related-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	margin-bottom: 40px;

	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}

.related-link li {
	position: relative;
	width: 241px;
	margin-bottom: 10px;
	border: 1px solid #666;
	border-radius: 4px;
}

.related-link li:not(.no-link-item):hover {
	border-color: #007d64;
	-webkit-box-shadow: 0px 0px 0px 2px #007d64 inset;
	        box-shadow: 0px 0px 0px 2px #007d64 inset;
}

.related-link li.no-link-item {
	background: #e8e8e8;
}

.related-link li.no-link-item img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.related-link a {
	display: block;
	height: 100%;
	color: #222;
	font-size: .9375em;
	line-height: 1.13333;
}

.related-link a:hover {
	color: #007d64;
	text-decoration: none;
}

.related-link a:hover img {
	opacity: .3;
	position: relative;
	z-index: -1;
}

.related-link a .related-text {
	display: table-cell;
	position: relative;
	width: 239px;
	height: 50px;
	padding: 9px 33px 9px 10px;
	font-weight: bold;
	vertical-align: middle;
	word-break: break-all;
}

.font-l .related-link a .related-text br {
	display: none;
}

.font-ll .related-link a .related-text br {
	display: none;
}

.related-link a:not([target='_blank']) .related-text::before,
.related-link a:not([target='_blank']) .related-text::after {
	display: block;
	position: absolute;
	content: '';
}

.related-link a:not([target='_blank']) .related-text::before {
	top: 50%;
	right: 10px;
	width: 13px;
	height: 13px;
	margin-top: -6px;
	border-radius: 4px;
	background: #007d64;
}

.related-link a:not([target='_blank']) .related-text::after {
	top: 50%;
	right: 15px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	width: 4px;
	height: 4px;
	margin-top: -2px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.related-link a[target='_blank'] .related-text::before {
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	width: 13px;
	height: 13px;
	margin-top: -6.5px;
	background: url(/assets/img/common/icon_blank.png) no-repeat left top;
	content: '';
}

.footer-sitemap-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}

.footer-sitemap-col {
	width: 314px;
}

.footer-sitemap-col .footer-sitemap-link + .footer-sitemap-ttl {
	margin-top: 55px;
}

.footer-sitemap-ttl {
	position: relative;
	margin-bottom: 15px;
	padding: 6px 5px 5px 50px;
	border-radius: 4px;
	background: #e8e8e8;
	font-size: 1.125em;
}

.footer-sitemap-ttl.adm::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background: url(/assets/img/common/icon_list_adm.png) no-repeat left top;
	content: '';
}

.footer-sitemap-ttl.fees::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background: url(/assets/img/common/icon_list_fees.png) no-repeat left top;
	content: '';
}

.footer-sitemap-ttl.ele::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background: url(/assets/img/common/icon_list_ele.png) no-repeat left top;
	content: '';
}

.footer-sitemap-ttl.monitoring::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background: url(/assets/img/common/icon_list_monitoring.png) no-repeat left top;
	content: '';
}

.footer-sitemap-ttl.freq::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background: url(/assets/img/common/icon_list_freq.png) no-repeat left top;
	content: '';
}

.footer-sitemap-ttl.equ::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background: url(/assets/img/common/icon_list_equ.png) no-repeat left top;
	content: '';
}

.footer-sitemap-ttl.other::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background: url(/assets/img/common/icon_list_other.png) no-repeat left top;
	content: '';
}

.footer-sitemap-ttl a {
	font-weight: bold;
}

.footer-sitemap-link {
	margin-bottom: 28px;
	font-size: .875em;
	line-height: 1.42857;
}

.footer-sitemap-link li {
	margin-bottom: 6px;
	padding-left: 25px;
}

.footer-sitemap-link a {
	display: inline-block;
	padding-left: 23px;
	background: url(/assets/img/common/icon_link.png) no-repeat left .2em;
	font-weight: bold;
}

.footer-sitemap-link a[target='_blank'] {
	background-image: url(/assets/img/common/icon_blank.png);
}

.footer-sitemap-link a * {
	font-weight: inherit;
}

.l-pagetop-fixed {
	display: none;
	position: fixed;
	z-index: 1;
	top: auto;
	right: 10px;
	bottom: 15px;
}

.l-pagetop-fixed.is-fixed {
	margin-bottom: 140px;
}

.btn-pagetop {
	display: block;
	overflow: hidden;
	width: 50px;
	height: 50px;
	background: url(/assets/img/common/btn_pagetop.png);
	white-space: nowrap;
	text-indent: 100%;
}

.btn-pagetop:hover {
	opacity: .8;
}

.footer-sitemap-nav {
	position: relative;
	overflow: hidden;
}

.footer-sitemap-nav > * {
	float: left;
	margin-left: 29px;
}

.footer-sitemap-nav > *.adm,
.footer-sitemap-nav > *.fees {
	clear: left;
	margin-left: 0;
}

.footer-sitemap-nav > *.freq {
	position: absolute;
	top: 0;
	left: 314px;
	float: none;
}

.l-inner {
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

.l-content {
	padding: 30px 0 37px;
}

.l-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	width: 1000px;
	margin: 0 auto;

	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	        align-items: flex-start;
}

.l-container.l-probo-container {
	display: block;
}

.l-main {
	width: 750px;
	padding: 0 45px 100px 0;
}

.l-probo-container .l-main {
	width: 100%;
	padding-right: 0;
}

.l-side {
	width: 250px;
	padding: 30px 0 100px;
}

.l-page-header {
	background: url(/assets/img/common/bg_head.png) no-repeat center top;
	background-size: cover;
}

.l-page-header .l-inner {
	display: table;
	width: 100%;
	height: 140px;
}

.l-page-header .page-ttl {
	display: table-cell;
	width: 1000px;
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 2.25em;
	font-weight: bold;
	line-height: 1.05556;
	vertical-align: middle;
}

.adm .l-page-header .page-ttl {
	background-image: url(/assets/img/common/icon_nav_adm.png);
}

.fees .l-page-header .page-ttl {
	background-image: url(/assets/img/common/icon_nav_fees.png);
}

.ele .l-page-header .page-ttl {
	background-image: url(/assets/img/common/icon_nav_ele.png);
}

.monitoring .l-page-header .page-ttl {
	background-image: url(/assets/img/common/icon_nav_monitoring.png);
}

.freq .l-page-header .page-ttl {
	background-image: url(/assets/img/common/icon_nav_freq.png);
}

.equ .l-page-header .page-ttl {
	background-image: url(/assets/img/common/icon_nav_equ.png);
}

.other .l-page-header .page-ttl {
	background-image: url(/assets/img/common/icon_nav_other.png);
}

.adm .l-page-header .page-ttl,
.fees .l-page-header .page-ttl,
.ele .l-page-header .page-ttl,
.monitoring .l-page-header .page-ttl,
.freq .l-page-header .page-ttl,
.equ .l-page-header .page-ttl,
.other .l-page-header .page-ttl {
	position: relative;
	padding-left: 82px;
}

.adm .l-page-header .page-ttl::before,
.fees .l-page-header .page-ttl::before,
.ele .l-page-header .page-ttl::before,
.monitoring .l-page-header .page-ttl::before,
.freq .l-page-header .page-ttl::before,
.equ .l-page-header .page-ttl::before,
.other .l-page-header .page-ttl::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 64px;
	height: 64px;
	margin-top: -32px;
	background-repeat: no-repeat;
	background-position: left top;
	content: '';
}

.l-page-header .page-ttl .page-ttl-sub {
	font-size: .72222em;
	font-weight: bold;
	line-height: 1.46154;
}

.ttl-hidden {
	display: none;
}

.text-word-break {
	word-break: break-all;
}

.l-navbar {
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}

.guide-hidden {
	display: none;
}

.global-nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	position: relative;
	width: 1000px;
	margin: 0 auto;
}

.global-nav .nav-item {
	width: 12.5%;
	border-left: 1px solid #999;
}

.global-nav .nav-item:last-child {
	border-right: 1px solid #999;
}

.global-nav .nav-item:hover {
	border-color: #007d64;
}

.font-l .global-nav .nav-item > a > br {
	display: none;
}

.font-ll .global-nav .nav-item > a > br {
	display: none;
}

.global-nav .nav-item.is-current > a {
	background-color: #e5f5eb;
	color: #007d64;
}

.global-nav .nav-item > a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	position: relative;
	height: 1px;
	min-height: 3.375em;
	color: #222;
	font-weight: bold;
	line-height: 1.125;

	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.font-ll .global-nav .nav-item > a {
	height: 3.5em;
}

.global-nav .nav-item > a:hover,
.global-nav .nav-item > a.is-open {
	background: #007d64 !important;
	color: #fff !important;
	text-decoration: none;
}

.global-nav .nav-item:not(.is-current) > a::before {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-right: 4px solid #007d64;
	border-bottom: 4px solid #007d64;
	border-left: 4px solid transparent;
	content: '';
}

.sub-nav {
	display: none;
	position: absolute;
	z-index: 1;
	top: 3.375em;
	left: 0;
	width: 100%;
	border: 3px solid #007d64;
	background: #fff;
}

.font-ll .sub-nav {
	top: 3.5em;
}

.sub-nav.is-open {
	display: block;
}

.sub-nav li {
	list-style-image: url(data:0);
}

.sub-nav .sub-nav-unit {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	padding: 25px 4px;
}

.sub-nav .sub-nav-menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	padding: 9px 88px 0 31px;
	border-left: 1px solid #999;
	font-size: .9375em;
	line-height: 1.33333;
	        flex: 1;

	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
}

.sub-nav .sub-nav-menu .sub-nav-group {
	overflow: hidden;
	width: 100%;
}

.sub-nav .sub-nav-menu .sub-nav-group > li {
	float: left;
	width: 50%;
}

.sub-nav .sub-nav-menu .sub-nav-group > li:nth-of-type(2n+1) {
	clear: left;
	padding-right: 5px;
}

.sub-nav .sub-nav-menu .sub-nav-group > li:nth-of-type(2n) {
	padding-left: 5px;
}

.sub-nav .sub-nav-menu li {
	margin-bottom: 13px;
}

.sub-nav .sub-nav-menu a {
	display: inline-block;
	padding-left: 28px;
	background: url(/assets/img/common/icon_link.png) no-repeat left .2em;
	font-weight: bold;
}

.sub-nav .sub-nav-menu a[target='_blank'] {
	background-image: url(/assets/img/common/icon_blank.png);
}

.sub-nav .sub-nav-menu a * {
	font-weight: inherit;
}

.sub-nav .sub-nav-head {
	width: 184px;
	padding: 85px 10px 10px;
	background: no-repeat center 9px;
	font-size: 1.125em;
	font-weight: bold;
	line-height: 1.22222;
	text-align: center;
}

.nav-item.adm .sub-nav-head {
	background-image: url(/assets/img/common/icon_nav_adm.png);
}

.nav-item.fees .sub-nav-head {
	background-image: url(/assets/img/common/icon_nav_fees.png);
}

.nav-item.ele .sub-nav-head {
	background-image: url(/assets/img/common/icon_nav_ele.png);
}

.nav-item.monitoring .sub-nav-head {
	background-image: url(/assets/img/common/icon_nav_monitoring.png);
}

.nav-item.freq .sub-nav-head {
	background-image: url(/assets/img/common/icon_nav_freq.png);
}

.nav-item.equ .sub-nav-head {
	background-image: url(/assets/img/common/icon_nav_equ.png);
}

.nav-item.other .sub-nav-head {
	background-image: url(/assets/img/common/icon_nav_other.png);
}

.sub-nav .sub-nav-footer {
	border-top: 1px solid #999;
	background: #e8e8e8;
}

.sub-nav .sub-nav-btns {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	padding: 14px 12px 15px;

	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
}

.sub-nav .sub-nav-btns li {
	font-size: 0;
}

.sub-nav .sub-nav-btns li:not(:first-child) {
	margin-left: 15px;
}

.sub-nav .sub-nav-btns li.shinsei .btn::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 12px;
	width: 30px;
	height: 31px;
	margin-top: -15.5px;
	background: url(/assets/img/common/icon_btn_shinsei.png) no-repeat left top;
	content: '';
}

.sub-nav .sub-nav-btns li.shinsei .btn:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 12px;
	width: 30px;
	height: 31px;
	margin-top: -15.5px;
	background: url(/assets/img/common/icon_btn_shinsei_on.png) no-repeat left top;
	content: '';
}

.sub-nav .sub-nav-btns li.appli .btn::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 11px;
	width: 33px;
	height: 27px;
	margin-top: -13.5px;
	background: url(/assets/img/common/icon_btn_appli.png) no-repeat left top;
	content: '';
}

.sub-nav .sub-nav-btns li.appli .btn:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 11px;
	width: 33px;
	height: 27px;
	margin-top: -13.5px;
	background: url(/assets/img/common/icon_btn_appli_on.png) no-repeat left top;
	content: '';
}

.sub-nav .sub-nav-btns li.search .btn::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 8px;
	width: 38px;
	height: 29px;
	margin-top: -14.5px;
	background: url(/assets/img/common/icon_btn_search.png) no-repeat left top;
	content: '';
}

.sub-nav .sub-nav-btns li.search .btn:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 8px;
	width: 38px;
	height: 29px;
	margin-top: -14.5px;
	background: url(/assets/img/common/icon_btn_search_on.png) no-repeat left top;
	content: '';
}

.sub-nav .sub-nav-btns .btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	position: relative;
	width: 280px;
	height: 1px;
	min-height: 70px;
	padding: 13px 25px 13px 54px;
	font-size: 1.0625rem;
	font-weight: bold;
	line-height: 1.17647;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.font-l .sub-nav .sub-nav-btns .btn {
	font-size: 1.59375rem;
}

.font-ll .sub-nav .sub-nav-btns .btn {
	width: 300px;
	height: 100px;
	font-size: 2.125rem;
}

.sub-nav .sub-nav-btns .btn::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 13px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	content: '';
}

.sub-nav .sub-nav-btns .btn:hover::after {
	border-color: #007d64;
}

.l-menu {
	padding: 14px 0 21px;
	background: url(/assets/img/top/bg_menu.png) no-repeat center top;
	background-size: cover;
}

.l-menu .menu-ttl {
	position: relative;
	width: 11.25em;
	height: 2.1875em;
	padding: 5px 20px 4px;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	font-weight: bold;
}

.l-menu .menu-ttl::after {
	display: block;
	position: absolute;
	top: 0;
	right: -20px;
	width: 0;
	height: 0;
	border-right: 20px solid transparent;
	border-bottom: 2.1875em solid rgba(0, 0, 0, .5);
	content: '';
}

.top-menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, .6);
	        box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, .6);

	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.top-menu li {
	width: 33.333%;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.font-l .top-menu li br {
	display: none;
}

.font-ll .top-menu li br {
	display: none;
}

.top-menu li.shinsei a::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 23px;
	width: 47px;
	height: 47px;
	margin-top: -23.5px;
	background: url(/assets/img/top/icon_menu_shinsei.png) no-repeat left top;
	content: '';
}

.top-menu li.shinsei a:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 23px;
	width: 47px;
	height: 47px;
	margin-top: -23.5px;
	background: url(/assets/img/top/icon_menu_shinsei_on.png) no-repeat left top;
	content: '';
}

.top-menu li.appli a::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 24px;
	width: 50px;
	height: 43px;
	margin-top: -21.5px;
	background: url(/assets/img/top/icon_menu_appli.png) no-repeat left top;
	content: '';
}

.top-menu li.appli a:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 24px;
	width: 50px;
	height: 43px;
	margin-top: -21.5px;
	background: url(/assets/img/top/icon_menu_appli_on.png) no-repeat left top;
	content: '';
}

.top-menu li.search a::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 17px;
	width: 60px;
	height: 46px;
	margin-top: -23px;
	background: url(/assets/img/top/icon_menu_search.png) no-repeat left top;
	content: '';
}

.top-menu li.search a:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 17px;
	width: 60px;
	height: 46px;
	margin-top: -23px;
	background: url(/assets/img/top/icon_menu_search_on.png) no-repeat left top;
	content: '';
}

.top-menu li.fees a::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 22px;
	width: 52px;
	height: 52px;
	margin-top: -26px;
	background: url(/assets/img/top/icon_menu_fees.png) no-repeat left top;
	content: '';
}

.top-menu li.fees a:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 22px;
	width: 52px;
	height: 52px;
	margin-top: -26px;
	background: url(/assets/img/top/icon_menu_fees_on.png) no-repeat left top;
	content: '';
}

.top-menu li.laws a::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 21px;
	width: 54px;
	height: 44px;
	margin-top: -22px;
	background: url(/assets/img/top/icon_menu_laws.png) no-repeat left top;
	content: '';
}

.top-menu li.laws a:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 21px;
	width: 54px;
	height: 44px;
	margin-top: -22px;
	background: url(/assets/img/top/icon_menu_laws_on.png) no-repeat left top;
	content: '';
}

.top-menu li.contact a::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 17px;
	width: 53px;
	height: 43px;
	margin-top: -21.5px;
	background: url(/assets/img/top/icon_menu_contact.png) no-repeat left top;
	content: '';
}

.top-menu li.contact a:hover::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 17px;
	width: 53px;
	height: 43px;
	margin-top: -21.5px;
	background: url(/assets/img/top/icon_menu_contact_on.png) no-repeat left top;
	content: '';
}

.top-menu a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	position: relative;
	height: 4.4em;
	padding-left: 94px;
	background: #007d64;
	color: #fff;
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1.2;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.top-menu a:hover {
	background: #e7faee;
	color: #007d64;
	text-decoration: none;
}

.l-side nav {
	border-radius: 4px;
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, .3);
	        box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, .3);
	word-break: break-all;
}

.l-side a {
	font-weight: bold;
}

.l-side .local-nav-ttl {
	display: table;
	width: 100%;
	border-bottom: 1px solid #999;
}

.l-side .local-nav-ttl a {
	display: table-cell;
	height: 90px;
	padding: 20px 40px 20px 20px;
	background: url(/assets/img/common/icon_back.png) no-repeat right 10px center #e8e8e8;
	vertical-align: middle;
}

.l-side .local-nav-ttl.freq a {
	padding-left: 56px;
	background-image: url(/assets/img/common/icon_back.png), url(/assets/img/common/icon_local_freq.png);
	background-position: right 10px center, 12px center;
}

.l-side .local-nav-ttl.adm a {
	padding-left: 56px;
	background-image: url(/assets/img/common/icon_back.png), url(/assets/img/common/icon_local_adm.png);
	background-position: right 10px center, 12px center;
}

.l-side .local-nav-ttl.ele a {
	padding-left: 56px;
	background-image: url(/assets/img/common/icon_back.png), url(/assets/img/common/icon_local_ele.png);
	background-position: right 10px center, 12px center;
}

.l-side .local-nav-ttl.equ a {
	padding-left: 56px;
	background-image: url(/assets/img/common/icon_back.png), url(/assets/img/common/icon_local_equ.png);
	background-position: right 10px center, 12px center;
}

.l-side .local-nav-ttl.fees a {
	padding-left: 56px;
	background-image: url(/assets/img/common/icon_back.png), url(/assets/img/common/icon_local_fees.png);
	background-position: right 10px center, 12px center;
}

.l-side .local-nav-ttl.monitoring a {
	padding-left: 56px;
	background-image: url(/assets/img/common/icon_back.png), url(/assets/img/common/icon_local_monitoring.png);
	background-position: right 10px center, 12px center;
}

.l-side .local-nav-ttl.other a {
	padding-left: 56px;
	background-image: url(/assets/img/common/icon_back.png), url(/assets/img/common/icon_local_other.png);
	background-position: right 10px center, 12px center;
}

.l-side .local-nav {
	padding: 10px;
}

.l-side .local-nav li + li {
	border-top: 1px dotted #999;
}

.l-side .local-nav li:not([class]) a {
	background-image: url(/assets/img/common/icon_link.png);
	background-position: 10px calc(.7em - 6px + 10px);
}

.l-side .local-nav li.is-current a {
	background-color: #e5f5eb;
	background-image: url(/assets/img/common/icon_link_current.png);
	background-position: -19px calc(.7em - 3px);
	background-origin: content-box;
	color: #007d64;
}

.l-side .local-nav li.adm a {
	background-image: url(/assets/img/common/icon_local_adm.png);
	background-position: 9px center;
	background-origin: padding-box;
}

.l-side .local-nav li.fees a {
	background-image: url(/assets/img/common/icon_local_fees.png);
	background-position: 12px center;
	background-origin: padding-box;
}

.l-side .local-nav li.ele a {
	background-image: url(/assets/img/common/icon_local_ele.png);
	background-position: 5px center;
	background-origin: padding-box;
}

.l-side .local-nav li.monitoring a {
	background-image: url(/assets/img/common/icon_local_monitoring.png);
	background-position: 10px center;
	background-origin: padding-box;
}

.l-side .local-nav li.freq a {
	background-image: url(/assets/img/common/icon_local_freq.png);
	background-position: 2px center;
	background-origin: padding-box;
}

.l-side .local-nav li.equ a {
	background-image: url(/assets/img/common/icon_local_equ.png);
	background-position: 8px center;
	background-origin: padding-box;
}

.l-side .local-nav li.other a {
	background-image: url(/assets/img/common/icon_local_other.png);
	background-position: 10px center;
	background-origin: padding-box;
}

.l-side .local-nav li.is-blank a {
	position: relative;
	background-image: none;
}

.l-side .local-nav li.is-blank a .blank-icon {
	position: absolute;
	top: calc(.7em - 6px + 10px);
	left: 10px;
}

.l-side .local-nav a {
	display: block;
	padding: 10px 10px 10px 32px;
	background-repeat: no-repeat;
	font-size: .9375em;
}

.l-side .local-nav.l-local a {
	padding: 10px 10px 10px 46px;
}

.l-topicpath {
	margin-bottom: 35px;
	padding-top: 14px;
}

.l-topicpath ol {
	font-size: .8125em;
	line-height: 1.38462;
}

.l-topicpath ol li {
	display: inline;
}

.l-topicpath ol li + li::before {
	content: '\003e';
}

.l-topicpath a {
	text-decoration: underline;
}

.category-lead {
	margin-bottom: 27px;
	line-height: 1.375;
}

.link-list {
	padding-left: 12px;
}

.link-list .link-list-head + .link-list-head {
	margin-top: 25px;
}

.link-list .link-list-head > a {
	font-size: 1.25em;
	font-weight: bold;
}

.link-list li {
	margin-top: 10px;
	line-height: 1.25;
}

.link-list li p {
	line-height: 1.625;
}

.link-list .link-list {
	margin-left: 13px;
}

.link-list .link-list .link-list {
	margin-left: 28px;
}

.link-list a {
	display: inline-block;
	padding-left: 12px;
	text-indent: -12px;
}

.link-list a:link,
.link-list a:visited,
.link-list a:active,
.link-list a:focus {
	text-decoration: none;
}

.link-list a:hover {
	text-decoration: underline;
}

.link-list a::before {
	display: inline-block;
	margin-right: 12px;
	content: url(/assets/img/common/icon_link.png);
}

.link-list a[target='_blank']::before {
	content: url(/assets/img/common/icon_blank.png);
}

.link-list a[target='_blank'] .blank-icon {
	margin-left: -12px;
}

.link-list a[href^='#']:not([href='#'])::before {
	content: url(/assets/img/common/icon_anchor.png);
}

.link-list .link-info {
	margin: 4px 0;
	font-size: .875em;
	line-height: 1.28571;
}

.btn-links {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}

.btn-links li {
	width: 340px;
	margin-bottom: 30px;
}

.btn-links .btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	position: relative;
	height: 100%;
	min-height: 120px;
	padding: 22px 48px 22px 25px;
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1.3;
	        flex: 1 0 auto;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	    -ms-flex: 1 0 auto;
}

.btn-links .btn::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 13px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	content: '';
}

.btn-links .btn:hover::after {
	border-color: #007d64;
}

.btn-links .btn .btn-inner {
	word-break: break-all;
}

.section-header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	margin-bottom: 20px;
	padding: 4px;
	border-radius: 4px;
	background: #e5f5eb;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}

.section-header .section-ttl {
	position: relative;
	padding-left: 50px;
	color: #007d64;
	font-size: 1.25em;
	font-weight: bold;
}

.section-header.update .section-ttl::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 11px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: url(/assets/img/top/icon_update.png) no-repeat left top;
	content: '';
}

.update-list {
	line-height: 1.375;
}

.update-list li {
	display: table;
	width: 100%;
	margin-bottom: 8px;
}

.update-list .update-date,
.update-list .update-text {
	display: table-cell;
	vertical-align: top;
}

.update-list .update-date,
.update-list .update-text a {
	font-weight: bold;
}

.update-list .update-date {
	width: 10.9375em;
}

.update-list .update-text {
	position: relative;
	padding-left: 26px;
}

.update-list .update-text a:first-child::before,
.update-list .update-text a:first-child::after {
	display: block;
	position: absolute;
	content: '';
}

.update-list .update-text a:first-child::before {
	top: .5em;
	left: 0;
	width: 13px;
	height: 13px;
	margin-top: -6px;
	border-radius: 4px;
	background: #007d64;
}

.update-list .update-text a:first-child::after {
	top: .5em;
	left: 3px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	width: 4px;
	height: 4px;
	margin-top: -2px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.update-list .update-text .icon-new {
	display: inline-block;
}

.update-list .update-text .icon-new::after {
	color: #cf000a;
	font-size: .6875em;
	font-weight: bold;
	content: 'NEW';
}

.l-emergency {
	padding: 26px 0 30px;
}

.l-emergency .l-inner {
	padding: 0 70px;
}

.l-emergency .emergency-ttl {
	margin-bottom: 5px;
	font-size: 1.125em;
	font-weight: bold;
	line-height: 1.44444;
}

.l-emergency .emergency-body a {
	font-weight: bold;
}

.l-emergency .emergency-body p,
.l-emergency .emergency-body ul,
.l-emergency .emergency-body ol {
	margin-bottom: 1em;
}

.l-emergency .emergency-body p:last-child,
.l-emergency .emergency-body ul:last-child,
.l-emergency .emergency-body ol:last-child {
	margin-bottom: 0;
}

.l-emergency[data-level='1'] {
	background: #f4f4f4;
}

.l-emergency[data-level='1'] .emergency-ttl {
	color: #007d64;
}

.l-emergency[data-level='1'] .emergency-body {
	color: #222;
}

.l-emergency[data-level='2'] {
	background: #e5f6eb;
}

.l-emergency[data-level='2'] .emergency-ttl {
	color: #007d64;
}

.l-emergency[data-level='2'] .emergency-body {
	color: #222;
}

.l-emergency[data-level='3'] {
	background: #f2e2e2;
}

.l-emergency[data-level='3'] .emergency-ttl {
	color: #b62540;
}

.l-emergency[data-level='3'] .emergency-body {
	color: #222;
}

.l-emergency[data-level='4'] {
	background: #f7d2d4;
}

.l-emergency[data-level='4'] .emergency-ttl {
	color: #b62540;
}

.l-emergency[data-level='4'] .emergency-body {
	color: #b62540;
}

.l-emergency[data-level='0'] {
	display: none;
}

.l-article {
	margin-bottom: 30px;
}

.l-article h2:not(:first-child) {
	margin-top: 50px;
}

.l-article p {
	margin-bottom: 1em;
}

.l-article a,
.l-article b,
.l-article em,
.l-article strong {
	font-weight: bold;
}

.l-article em {
	font-style: normal;
}

.l-article strong {
	color: #b62540;
}

.l-article i {
	font-style: italic;
}

.l-article sup,
.l-article sub {
	font-size: .75em;
}

.l-article sup {
	vertical-align: text-top;
}

.l-article sub {
	vertical-align: baseline;
}

.l-article .figure {
	margin: 34px 0;
	text-align: center;
}

.l-article .figure .figcaption,
.l-article .figure figcaption {
	margin-bottom: 15px;
	font-size: 1em;
	line-height: 1.2;
}

.l-article .figure .figcaption.figcaption-btm,
.l-article .figure figcaption.figcaption-btm {
	margin-top: 15px;
	margin-bottom: 0;
}

.l-article .figure figcaption {
	font-weight: bold;
}

.l-article .no-display {
	display: inline;
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
	z-index: -9999;
	overflow: hidden;
	width: 1px;
	height: 1px;
	font-size: 0;
}

.l-article a .blank-icon {
	max-width: auto;
	max-width: initial;
	margin: 0 5px;
	vertical-align: middle;
}

.l-article .link-list a .blank-icon {
	margin-right: 12px;
}

.l-article .link-list .link-list-head > a + .link-list > li > a {
	font-weight: inherit;
}

.l-article .link-list .link-list-head > a + .link-list > li .link-list > li a {
	font-weight: inherit;
}

.l-article .link-list .link-list-head.fz-base > a {
	font-size: 1em;
}

.l-article a .link-text {
	font-weight: bold;
}

.l-article a[target='_blank']::before {
	display: none;
}

.l-article a[href*='.pdf'] .link-text .file-icon,
.l-article a[href*='.doc'] .link-text .file-icon,
.l-article a[href*='.docx'] .link-text .file-icon,
.l-article a[href*='.xls'] .link-text .file-icon,
.l-article a[href*='.xlsx'] .link-text .file-icon,
.l-article a[href*='.ppt'] .link-text .file-icon,
.l-article a[href*='.pptx'] .link-text .file-icon,
.l-article a[href*='.zip'] .link-text .file-icon {
	margin: 0 5px;
	vertical-align: middle;
}

.l-article a .file-size {
	font-size: .75em;
	font-weight: bold;
}

.l-article ul,
.l-article ol {
	margin-bottom: 1em;
}

.l-article ol {
	margin-top: 2em;
}

.l-article li > ol,
.l-article li .list-text > ol {
	margin-top: .5em !important;
}

.l-article .link-list li {
	margin-top: 25px;
}

.l-article .link-list .link-list.no-link {
	margin-left: 0;
}

.l-article .link-list-side li {
	display: inline-block;
	margin-right: 2em;
}

.l-article .link-list-side li a {
	display: inline-block;
}

.l-article .link-list-side li a[target='_blank'] .blank-icon {
	margin-left: 0;
}

.l-article .link-list-side.adjust-margin {
	margin-top: -17px;
}

.l-article .link-list .link-list-side li {
	margin-top: 0;
}

.l-article .list-side li {
	display: inline-block;
}

.l-article .link-list-head > a ~ .link-list > li {
	margin-top: 10px;
}

.l-article .link-list-head > a ~ .link-list > li .link-list > li {
	margin-top: 10px;
}

.section-ttl-lv1 {
	margin-bottom: 24px;
	padding: 8px 18px;
	border-radius: 4px;
	background: #e5f5eb;
	color: #007d64;
	font-size: 1.25em;
	font-weight: bold;
}

.section-ttl-lv2 {
	display: table;
	width: 100%;
	margin-bottom: 24px;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	font-size: 1.125em;
	line-height: 1;
}

.section-ttl-lv2 span {
	display: table-cell;
	font-weight: bold;
	vertical-align: middle;
}

.section-ttl-lv2 .lv2-icon {
	width: 40px;
	padding: 15px 5px;
	background: #e5f5eb;
	color: #007d64;
	text-align: center;
}

.section-ttl-lv2 .lv2-icon + span {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}

.section-ttl-lv2.no-num:before {
	display: table-cell;
	width: 40px;
	height: 100%;
	background: #e5f5eb;
	color: #007d64;
	text-align: center;
	vertical-align: middle;
	content: '';
}

.section-ttl-lv2.no-num span {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}

.section-ttl-lv3 {
	margin-bottom: 1em;
	padding-left: 12px;
	background: -webkit-gradient(linear, left top, left bottom, from(#222), color-stop(50%, #222), color-stop(50%, transparent), to(transparent));
	background: -webkit-linear-gradient(top, #222 0%, #222 50%, transparent 50%, transparent 100%);
	background:      -o-linear-gradient(top, #222 0%, #222 50%, transparent 50%, transparent 100%);
	background:         linear-gradient(to bottom, #222 0%, #222 50%, transparent 50%, transparent 100%);
	background-repeat: repeat-y;
	background-position: left 1px;
	background-size: 2px 2px;
	font-weight: bold;
}

.section-ttl-lv3 .lv3-icon {
	padding-right: 12px;
	font-weight: bold;
}

.section-ttl-lv4 {
	margin-bottom: 1em;
	padding-top: 20px;
	font-weight: bold;
}

.section-ttl-lv1 + .section-ttl-lv4 {
	padding-top: 0;
}

.section-ttl-lv4 .lv4-icon {
	color: #737373;
	font-weight: bold;
}

.section-ttl-lv4 .lv4-icon::after {
	content: '：';
}

.section-ttl-lv5 {
	display: block;
	position: relative;
	margin: 40px 0 13px;
	padding-left: 20px;
	font-weight: bold;
	line-height: 1.125;
}

.section-ttl-lv5::before {
	display: block;
	position: absolute;
	top: .5em;
	left: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #007d64;
	vertical-align: middle;
	content: '';
}

.dot-list {
	margin-bottom: 1em;
}

.dot-list > li,
.dot-list > div {
	margin-bottom: 1em;
	padding-left: 27px;
	text-indent: -27px;
}

.dot-list > li::before,
.dot-list > div::before {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin: 0 15px 0 7px;
	border-radius: 100%;
	background: #007d64;
	vertical-align: middle;
	content: '';
}

.dot-list > li > *,
.dot-list > div > * {
	text-indent: 0;
}

.decimal-list {
	margin-bottom: 1em;
	counter-reset: number;
}

.decimal-list > li,
.decimal-list > div {
	margin-bottom: 1em;
	padding-left: 2em;
	text-indent: -1.75em;
	counter-increment: number;
}

.decimal-list > li::before,
.decimal-list > div::before {
	margin-right: .5em;
	color: #007d64;
}

.decimal-list > li:nth-of-type(-n+9)::before,
.decimal-list > div:nth-of-type(-n+9)::before {
	content: ' ' counter(number) '.';
}

.decimal-list > li:nth-of-type(n+10)::before,
.decimal-list > div:nth-of-type(n+10)::before {
	content: counter(number) '.';
}

.decimal-list > li > *,
.decimal-list > div > * {
	text-indent: 0;
}

.decimal-list > li > *:first-child.link-list > *:first-child,
.decimal-list > div > *:first-child.link-list > *:first-child {
	margin-top: 1em;
}

.num-simple-list {
	margin-bottom: 1em;
	counter-reset: number;
}

.num-simple-list > li,
.num-simple-list > div {
	margin-bottom: 1em;
	padding-left: 1.75em;
	text-indent: -1.5em;
	counter-increment: number;
}

.num-simple-list > li::before,
.num-simple-list > div::before {
	margin-right: .5em;
	color: #007d64;
}

.num-simple-list > li:nth-of-type(-n+9)::before,
.num-simple-list > div:nth-of-type(-n+9)::before {
	content: ' ' counter(number);
}

.num-simple-list > li:nth-of-type(n+10)::before,
.num-simple-list > div:nth-of-type(n+10)::before {
	content: counter(number);
}

.num-simple-list > li > *,
.num-simple-list > div > * {
	text-indent: 0;
}

.num-simple-list.link-list > * > a {
	padding-left: 0;
}

.num-list {
	margin-bottom: 1em;
	counter-reset: number;
}

.num-list > li,
.num-list > div {
	margin-bottom: 1em;
	padding-left: 2.5em;
	text-indent: -2.25em;
	counter-increment: number;
}

.num-list > li::before,
.num-list > div::before {
	margin-right: .5em;
	color: #007d64;
}

.num-list > li:nth-of-type(-n+9)::before,
.num-list > div:nth-of-type(-n+9)::before {
	content: ' (' counter(number) ')';
}

.num-list > li:nth-of-type(n+10)::before,
.num-list > div:nth-of-type(n+10)::before {
	content: '(' counter(number) ')';
}

.num-list > li > *,
.num-list > div > * {
	text-indent: 0;
}

.num-half-list {
	margin-bottom: 1em;
	counter-reset: number;
}

.num-half-list > li,
.num-half-list > div {
	margin-bottom: 1em;
	padding-left: 2.25em;
	text-indent: -2em;
	counter-increment: number;
}

.num-half-list > li::before,
.num-half-list > div::before {
	margin-right: .5em;
	color: #007d64;
}

.num-half-list > li:nth-of-type(-n+9)::before,
.num-half-list > div:nth-of-type(-n+9)::before {
	content: ' ' counter(number) ')';
}

.num-half-list > li:nth-of-type(n+10)::before,
.num-half-list > div:nth-of-type(n+10)::before {
	content: counter(number) ')';
}

.num-half-list > li > *,
.num-half-list > div > * {
	text-indent: 0;
}

.lower-roman-list {
	margin-bottom: 1em;
}

.lower-roman-list > li,
.lower-roman-list > div {
	margin-bottom: 1em;
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.lower-roman-list > li .list-pre,
.lower-roman-list > div .list-pre {
	margin-right: .5em;
	color: #007d64;
}

.lower-roman-list > li:nth-of-type(1) .list-pre,
.lower-roman-list > div:nth-of-type(1) .list-pre {
	margin-right: .65em;
}

.lower-roman-list > li:nth-of-type(1) .list-pre::after,
.lower-roman-list > div:nth-of-type(1) .list-pre::after {
	content: '\02002';
}

.lower-roman-list > li:nth-of-type(2) .list-pre,
.lower-roman-list > div:nth-of-type(2) .list-pre {
	margin-right: .4em;
}

.lower-roman-list > li:nth-of-type(2) .list-pre::after,
.lower-roman-list > div:nth-of-type(2) .list-pre::after {
	content: '\02002';
}

.lower-roman-list > li > *,
.lower-roman-list > div > * {
	text-indent: 0;
}

.upper-roman-list {
	margin-bottom: 1em;
}

.upper-roman-list > li,
.upper-roman-list > div {
	margin-bottom: 1em;
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.upper-roman-list > li .list-pre,
.upper-roman-list > div .list-pre {
	margin-right: .5em;
	color: #007d64;
}

.upper-roman-list > li:nth-of-type(1) .list-pre,
.upper-roman-list > div:nth-of-type(1) .list-pre {
	margin-right: .65em;
}

.upper-roman-list > li:nth-of-type(1) .list-pre::after,
.upper-roman-list > div:nth-of-type(1) .list-pre::after {
	content: '\02002';
}

.upper-roman-list > li:nth-of-type(2) .list-pre,
.upper-roman-list > div:nth-of-type(2) .list-pre {
	margin-right: .4em;
}

.upper-roman-list > li:nth-of-type(2) .list-pre::after,
.upper-roman-list > div:nth-of-type(2) .list-pre::after {
	content: '\02002';
}

.upper-roman-list > li > *,
.upper-roman-list > div > * {
	text-indent: 0;
}

.lower-alpha-list {
	margin-bottom: 1em;
	color: #007d64;
}

.lower-alpha-list > li,
.lower-alpha-list > div {
	list-style-type: lower-alpha;
	margin-bottom: 1em;
	margin-left: 1.5em;
}

.lower-alpha-list > li > .list-text,
.lower-alpha-list > div > .list-text {
	color: #222;
}

.katakana-list {
	margin-bottom: 1em;
}

.katakana-list > li,
.katakana-list > div {
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.katakana-list > li .list-pre,
.katakana-list > div .list-pre {
	margin-right: .5em;
	color: #007d64;
}

.katakana-list > li > *,
.katakana-list > div > * {
	text-indent: 0;
}

.katakana-iroha-list {
	margin-bottom: 1em;
}

.katakana-iroha-list > li,
.katakana-iroha-list > div {
	margin-bottom: 1em;
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.katakana-iroha-list > li .list-pre,
.katakana-iroha-list > div .list-pre {
	margin-right: .5em;
	color: #007d64;
}

.katakana-iroha-list > li > *,
.katakana-iroha-list > div > * {
	text-indent: 0;
}

.cjk-ideographic-list {
	margin-bottom: 1em;
}

.cjk-ideographic-list > li,
.cjk-ideographic-list > div {
	margin-bottom: 1em;
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.cjk-ideographic-list > li .list-pre,
.cjk-ideographic-list > div .list-pre {
	margin-right: .5em;
	color: #007d64;
}

.cjk-ideographic-list > li > *,
.cjk-ideographic-list > div > * {
	text-indent: 0;
}

.text-dai-list {
	margin-bottom: 1em;
}

.text-dai-list > li,
.text-dai-list > div {
	margin-bottom: 1em;
	padding-left: 2.5em;
	text-indent: -2.5em;
}

.text-dai-list > li > .list-pre,
.text-dai-list > div > .list-pre {
	margin-right: .5em;
	color: #007d64;
}

.text-dai-list > li > *,
.text-dai-list > div > * {
	text-indent: 0;
}

.text-1em-list {
	margin-bottom: 1em;
}

td .text-1em-list:last-child {
	margin-bottom: 0;
}

.text-1em-list > li,
.text-1em-list > div {
	margin-bottom: 1em;
	padding-left: 1.5em;
	text-indent: -1.5em;
}

td .text-1em-list > li:last-child,
td
.text-1em-list > div:last-child {
	margin-bottom: 0;
}

.text-1em-list > li .list-pre,
.text-1em-list > div .list-pre {
	margin-right: .5em;
	color: #007d64;
}

.text-1em-list > li > *,
.text-1em-list > div > * {
	text-indent: 0;
}

.text-string-list {
	margin-bottom: 1em;
}

.text-string-list > .item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	margin-bottom: 1em;
}

td .text-string-list > .item:last-child {
	margin-bottom: 0;
}

.text-string-list > .item > .string {
	white-space: nowrap;
}

.text-string-list > .item > .text > ol {
	margin-top: .5em !important;
}

.text-string-list > .item > a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	width: 100%;
}

.text-string-list > .item > a > .string {
	white-space: nowrap;
}

.text-string-list .link-list {
	margin-top: -22px;
}

.dot-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.dot-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.decimal-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.decimal-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.num-simple-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.num-simple-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.num-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.num-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.num-half-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.num-half-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.lower-roman-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.lower-roman-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.upper-roman-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.upper-roman-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.lower-alpha-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.lower-alpha-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.katakana-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.katakana-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.cjk-ideographic-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.cjk-ideographic-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.text-dai-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.text-dai-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.text-1em-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.text-1em-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child,
.text-string-list > li > *:first-child.link-list:not(.link-list-side) > *:first-child,
.text-string-list > div > *:first-child.link-list:not(.link-list-side) > *:first-child {
	margin-top: .5em;
}

ol.no-reset,
ul.no-reset {
	counter-reset: none;
}

.table {
	width: 100%;
	margin-bottom: 8px;
	border: 1px solid #999;
}

.table caption {
	text-align: left;
}

.table caption.align-center {
	text-align: center;
}

.table caption.align-right {
	text-align: right;
}

.table caption .section-ttl-lv5 {
	display: inline-block;
}

.table tr.align-center th,
.table tr.align-center td {
	text-align: center;
}

.table tr.align-right th,
.table tr.align-right td {
	text-align: right;
}

.table tr.align-top th,
.table tr.align-top td {
	vertical-align: top;
}

.table tr.align-middle th,
.table tr.align-middle td {
	vertical-align: middle;
}

.table tr th.align-left,
.table tr td.align-left {
	text-align: left;
}

.table tr th.align-right,
.table tr td.align-right {
	text-align: right;
}

.table tr th.align-center,
.table tr td.align-center {
	text-align: center;
}

.table tr th.align-top,
.table tr td.align-top {
	vertical-align: top;
}

.table tr th.align-middle,
.table tr td.align-middle {
	vertical-align: middle;
}

.table tr th.align-bottom,
.table tr td.align-bottom {
	vertical-align: bottom;
}

.table tr th.text-nowrap,
.table tr td.text-nowrap {
	white-space: nowrap;
}

.table th,
.table td {
	padding: 7px 17px;
	border: 1px dotted #999;
}

.table th {
	background: #e5f5eb;
	color: #007d64;
	font-weight: bold;
}

.table th.bg-data {
	background: transparent;
}

.table thead th,
.table thead td:empty {
	border-bottom: 1px solid #007d64;
	background: #e5f5eb;
	text-align: center;
}

.table thead tr td:first-child:empty {
	border-right: 1px solid #007d64;
}

.table thead + tbody th,
.table thead + tbody td {
	border-top: none;
}

.table tbody th {
	border-right: 1px solid #007d64;
	text-align: left;
}

.table tbody td > *:first-child:not([class*='mt-']):not([class^='mt-']) {
	margin-top: 0;
}

.table tbody td input[type='text'] {
	width: 100%;
}

form[name='nyuryokuForm'] .table tbody td input[type='text'] {
	width: calc(100% - 2em);
	margin-right: .5em;
}

.table.head-both thead th:first-child {
	border-right: 1px solid #007d64;
}

.table .table-title {
	display: block;
	margin-bottom: .5em;
	text-align: center;
}

.table.no-outerframe-table {
	border: none;
}

.table.no-border-table {
	border-collapse: separate;
}

.table.no-border-table th,
.table.no-border-table td {
	border: none;
}

.table.no-h-border-table {
	border-collapse: separate;
}

.table.no-h-border-table th,
.table.no-h-border-table td {
	border: none;
}

.table.no-h-border-table thead tr.border-row th {
	border-bottom: 1px solid #007d64;
}

.table.no-h-border-table thead tr.border-row th:not(:first-of-type) {
	border-left: 1px dotted #999;
}

.table.no-h-border-table tbody tr > *:not(:first-of-type) {
	border-left: 1px dotted #999;
}

.table.no-h-border-table tbody tr.border-row > * {
	border-bottom: 1px dotted #999;
}

.table.no-body-border-table tbody th,
.table.no-body-border-table tbody td {
	border: none;
}

.table.fixed-table {
	table-layout: fixed;
}

.table.text-break-table th,
.table.text-break-table td {
	word-break: break-all;
}

.table.text-break-table th.text-nowrap,
.table.text-break-table td.text-nowrap {
	white-space: nowrap;
}

.table.small-fz-table th,
.table.small-fz-table td {
	padding: 5px;
	font-size: .75em;
}

.table .border-right-head {
	border-right: 1px solid #007d64 !important;
}

.table .border-left-head {
	border-left: 1px solid #007d64 !important;
}

.table .border-bottom-head {
	border-bottom: 1px solid #007d64 !important;
}

.table .border-right-data {
	border-right: 1px dotted #999 !important;
}

.table .border-left-data {
	border-left: 1px dotted #999 !important;
}

.table .border-right-none {
	border-right: none !important;
}

.table .border-left-none {
	border-left: none !important;
}

.table .w1em {
	width: 1em !important;
}

.table .w10 {
	width: 10% !important;
}

.table .w15 {
	width: 15% !important;
}

.table .w20 {
	width: 20% !important;
}

.table .w25 {
	width: 25% !important;
}

.table .w30 {
	width: 30% !important;
}

.table .w35 {
	width: 35% !important;
}

.table .w40 {
	width: 40% !important;
}

.table .w45 {
	width: 45% !important;
}

.table .w50 {
	width: 50% !important;
}

.table .w55 {
	width: 55% !important;
}

.table .w60 {
	width: 60% !important;
}

.table .w65 {
	width: 65% !important;
}

.table .w70 {
	width: 70% !important;
}

.table .w75 {
	width: 75% !important;
}

.table .w80 {
	width: 80% !important;
}

.table .w85 {
	width: 85% !important;
}

.table .w90 {
	width: 90% !important;
}

.table .w95 {
	width: 95% !important;
}

.table .table-bg {
	background-color: #e8e8e8;
}

.table .table-bg-irregular1 {
	background-color: #fff2cc;
}

.table .table-bg-irregular2 {
	background-color: #deeaf6;
}

.table .table-caption-left {
	display: block;
	text-align: left;
}

.table .table-caption-center {
	display: block;
	text-align: center;
}

.table .table-caption-right {
	display: block;
	text-align: right;
}

.table.table-auto-w {
	width: auto;
}

.scroll-table-wrap {
	overflow: hidden;
	width: 100%;
	margin-bottom: 8px;
}

.scroll-table-wrap .scroll-table {
	overflow-x: auto;
	width: 100%;
}

.scroll-table-wrap .scroll-table .table {
	margin-bottom: 0;
}

.border-box {
	padding: 15px 20px;
	border: 1px solid #999;
}

.border-box.border-double {
	border-width: 5px;
	border-style: double;
}

.border-box.bg-colored {
	background: #f3f3f3;
}

.border-box > *:first-child {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.border-box > *:last-child {
	margin-bottom: 0 !important;
}

.border-box > * ul:last-of-type,
.border-box > * ol:last-of-type,
.border-box > * li:last-of-type {
	margin-bottom: 0 !important;
}

.border-box .box-auto-w {
	display: table;
	width: auto;
	margin-right: auto;
	margin-left: auto;
}

.border-box.no-border {
	border: none;
}

.border-inline-box {
	display: inline;
	border: 1px solid #999;
}

.border-inlineblock-box {
	display: inline-block;
	border: 1px solid #999;
}

.bottom-box {
	margin-top: 38px;
	padding: 30px;
	border: 4px solid #ccc;
}

.col-box-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}

.col-box-container.flex-wrap {
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.col-box-container.align-items-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.col-box-container.align-items-end {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	        align-items: flex-end;
}

.col-box-container.justify-content-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
}

.col-box-container .col-box-item.col-mr-m {
	margin-right: 10px;
}

.col-box-container .col-box-item.col-ml-s {
	margin-left: 5px;
}

.col-box-container .col-box-item.col-ml-m {
	margin-left: 10px;
}

.col-box-container .col-box-item.col-w1em {
	width: calc(1em + 20px);
	padding: 5px;
	text-align: center;
}

.col-box-container .col-box-item.col-w30 {
	min-width: 30%;
}

.col-box-container .col-box-item.col-w80 {
	width: 80%;
	min-width: 50%;
}

.col-box-container.col-2 .col-box-item {
	width: 50%;
	padding-right: 5px;
}

.col-box-container.col-2 .col-box-item + .col-box-item {
	padding-right: 0;
	padding-left: 5px;
}

.col-box-container.col-3 .col-box-item {
	width: 33.333%;
	padding-right: 5px;
}

.col-box-container.col-3 .col-box-item + .col-box-item {
	padding-right: 2.5px;
	padding-left: 2.5px;
}

.col-box-container.col-3 .col-box-item + .col-box-item + .col-box-item {
	padding-right: 0;
	padding-left: 5px;
}

.col-box-float-container {
	display: block;
	overflow: hidden;
}

.col-box-float-container.col-2 .col-box-item {
	width: 50%;
}

.col-box-float-container.col-2 .col-box-item.item-left {
	float: left;
	padding-right: 5px;
}

.col-box-float-container.col-2 .col-box-item.item-right {
	float: right;
	padding-left: 5px;
}

.col-box-float-container.col-3 .col-box-item {
	float: left;
	width: 33.333%;
}

.col-box-float-container.col-3 .col-box-item.item-left {
	padding-right: 5px;
}

.col-box-float-container.col-3 .col-box-item.item-center {
	padding-right: 2.5px;
	padding-left: 2.5px;
}

.col-box-float-container.col-3 .col-box-item.item-right {
	padding-right: 0;
	padding-left: 5px;
}

.accordion-list .accordion-ttl {
	margin-bottom: 10px;
	padding: .5em 1em;
	border: 1px solid #999;
	font-weight: bold;
	cursor: pointer;
}

.accordion-list .accordion-ttl:hover {
	border-color: #007d64;
	color: #007d64;
}

.accordion-list .accordion-item {
	display: none;
	padding-right: 1em;
	padding-left: 1em;
}

.accordion-list.no-js-accordion .accordion-ttl {
	cursor: default;
}

.accordion-list.no-js-accordion .accordion-ttl:hover {
	border-color: #999;
	color: #222;
}

.accordion-list.no-js-accordion .accordion-item {
	display: block;
}

.qa-list .q-item,
.qa-list .a-item {
	display: table;
}

.qa-list .q-item {
	margin-bottom: 1em;
}

.qa-list .a-item {
	margin-bottom: 2em;
}

.qa-list .item-head,
.qa-list .item-body {
	display: table-cell;
}

.qa-list .item-head {
	padding-right: .5em;
	color: #007d64;
	vertical-align: top;
	white-space: nowrap;
}

.qa-list .item-body {
	width: auto;
}

.l-article .mt-0 {
	margin-top: 0 !important;
}

.l-article .mt-s {
	margin-top: .5rem !important;
}

.l-article .mt-m {
	margin-top: 1rem !important;
}

.l-article .mt-l {
	margin-top: 1.5rem !important;
}

.l-article .mt-ll {
	margin-top: 2rem !important;
}

.l-article .mt-3rem {
	margin-top: 3rem !important;
}

.l-article .mt-4rem {
	margin-top: 4rem !important;
}

.l-article .mb-0 {
	margin-bottom: 0 !important;
}

.l-article .mb-0 > li:last-of-type {
	margin-bottom: 0 !important;
}

.l-article .mb-s {
	margin-bottom: .5rem !important;
}

.l-article .mb-m {
	margin-bottom: 1rem !important;
}

.l-article .mb-l {
	margin-bottom: 1.5rem !important;
}

.l-article .mb-ll {
	margin-bottom: 2rem !important;
}

.l-article .mb-3rem {
	margin-bottom: 3rem !important;
}

.l-article .mb-4rem {
	margin-bottom: 4rem !important;
}

.l-article .pt-0 {
	padding-top: 0 !important;
}

.l-article .pr-0 {
	padding-right: 0 !important;
}

.l-article .pb-0 {
	padding-bottom: 0 !important;
}

.l-article .pl-0 {
	padding-left: 0 !important;
}

.l-article .pv-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.l-article .ph-0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.l-article .ph-s {
	padding-right: .5rem;
	padding-left: .5rem;
}

.note {
	font-size: .875em;
	line-height: 1.57143;
}

.em-underline {
	text-decoration: underline;
}

.fz-s {
	font-size: .875em;
}

.fz-m {
	font-size: 1.0625em;
}

.fz-l {
	font-size: 1.125em;
}

.fz-base {
	font-size: 1em !important;
}

.fw-n {
	font-weight: normal !important;
}

.text-colored {
	color: #007d64;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.align-middle {
	vertical-align: middle;
}

.file-icon {
	max-width: initial;
	max-width: auto;
}

.sample-element h3 {
	margin-top: 2em;
	padding-top: 1em;
	border-top: 1px solid #999;
	font-weight: bold;
}
