/* ************************************************************
	CSS File Ver.1.1.0
************************************************************ */

@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}
html {
	height: auto;
}
body {
	color: #000000;
	font-family: Arial, sans-serif;
	font-size: 80%;
	-webkit-text-size-adjust: none;
}
section {
	margin-bottom: 2.5em;
}
a {
	text-decoration: underline;
	color: #0000ff;
}
a:hover {
	text-decoration: underline;
	color: #de8e25;
}
@media screen and (min-width: 480px) {
	body { font-size: 100%; }
}
@media screen and (min-width: 480px) {
	#contents .toc-menu { font-size: 80%; }
}
@media screen and (min-width: 1024px) {
	#contents .toc-menu { font-size: 100%; }
}
/* ************************************************************

Header

************************************************************ */
header {
	display: flex;
	position: fixed;
	align-items: center;
	width: calc(100% - 20px);
	top: 0;
	left: 0;
	padding:10px;
	color: #000000;
	background-color: #ffffff;
	border-bottom: 2px solid #000000;
	transition: .3s;
	z-index: 2;
}
.header-menu {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	padding-right: 1em;
}
.header-menu ul li a { color: #000000; }
.header-menu ul li a img {
	margin-right: 0.5em;
	vertical-align: middle;
}
/* Logo */
.logo {
	height: 30px;
	padding: 10px;
	margin-left: 10px;
}
.logo img { width: 100px; }

/* ************************************************************

Search

************************************************************ */
nav.toc-menu .search-s { display: none; }
.header-menu ul .search-l { display: none; }
.header-menu ul li .search-box,
#search_result_main .search-l {
	display: none;
	height: 30px;
}
.header-menu ul li .search-box input:focus,
#search_result_main .search-box input:focus {
	box-shadow: 1px 2px 4px -2px gray inset, 0px -2px 4px -2px gray inset;
	border-radius: 15px 0 0 15px;
}
.header-menu ul li .search-box input {
	width: 250px;
	color: #000000;
	padding-left: 1em;
	padding-right: 1em;
	background: transparent;
	outline: none;
	overflow: hidden;
	border: 1px solid #595757;
	border-radius: 15px 0 0 15px;
}
#search_result_main form {
	width: 100%;
}
#search_result_main .search-box input {
	width: calc(100% - 65px);
	height: 30px;
	color: #000000;
	padding-left: 1em;
	background: transparent;
	outline: none;
	overflow: hidden;
	border: 1px solid #595757;
	border-radius: 15px 0 0 15px;
}
.header-menu ul li .search-box input::-webkit-input-placeholder { color: #aaa; }
.header-menu ul li .search-box input:-ms-input-placeholder { color: #aaa; }
.header-menu ul li .search-box input::-ms-input-placeholder { 	color: #aaa; }
.header-menu ul li .search-box input::placeholder { color: #aaa; }
.header-menu ul li .search-box input.search-btn {
	width: 50px;
	background: url("../common/icon_search.svg") center no-repeat;
	background-color: #595757;
	border: 0;
	padding: 0;
	cursor: pointer;
	border-radius: 0 14px 14px 0;
}
#search_result_main .search-box input.search-btn {
	width: 50px;
	height: 32px;
	background: url("../common/icon_search.svg") center no-repeat;
	background-color: #595757;
	border: 0;
	padding: 0;
	cursor: pointer;
	border-radius: 0 14px 14px 0;
	margin-left: -6px;
	vertical-align: bottom;
}
.search-btn:active,
.search-btn:hover {
	opacity: 0.8;
}
#contents ul#search_page {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2em;
	font-size: 1.3em;
}
ul#search_page li {
	padding: 0 0.8em;
}
.search-caption >.search-caption-text > cite {
	color: #006d21;
	font-size: 0.8em;
	font-style: normal;
	font-family: Arial, sans-serif;
}
@media screen and (min-width: 800px) {
	.header-menu ul .search-l { display: flex; }
	nav.toc-menu .search-s { display: none; }
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	_::-webkit-full-page-media, _:future, :root #search_result_main .search-box input.search-btn {
		vertical-align: bottom;
	}
}
/* ************************************************************

Menu for SP

************************************************************ */
main {
	clear: both;
	float: none;
	width: calc(100% - 2em);
	margin: 0 auto;
	padding: 0;
}
.drawer-menu {
	display: block;
}
.drawer-menu .drawer-btn {
	display: block;
	width: 35px;
	top: 5px;
	margin-right: 30px;
	background-color: #fff;
	border: none;
	outline: none;
	cursor: pointer;
}
.drawer-menu .drawer-bar {
	display: block;
	height: 1px;
	margin: 8px 0;
	border: 1px solid #000;
	border-radius: 1px;
	transition: all 0.2s;
	transform-origin: 0 0;
}
.drawer-menu .drawer-btn .drawer-bar { background-color: #000; }
.drawer-menu .drawer-btn.active .drawer-bar { width: 38px; }
.drawer-menu .drawer-btn.active .drawer-bar1 { margin-left: 1px; transform: rotate(34deg); }
.drawer-menu .drawer-btn.active .drawer-bar2 { width: 29px; opacity: 0; }
.drawer-menu .drawer-btn.active .drawer-bar3 { transform: rotate(-34deg); }
.drawer-menu div.drawer-bg {
	display: none;
	width: 100%;
	height: 100vh;
	top: 72px;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	position: fixed;
}
.toc-menu {
	width: 280px;
	height: 100%;
	background-color: rgba(255,255,255,1);
	top: 72px;
	right: -360px;
	padding: 30px 20px;
	position: fixed;
	transition: all 0.2s;
	z-index: 1000;
}
.toc-menu.open {
	right: 0;
	transition: all 0.2s;
}
.toc-menu p {
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 1.5em;
}
.toc-menu p::after {
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	background-color: #000;
}
.toc-menu > p { text-align: center; }
.toc-menu > ul {
	height: calc(100% - 220px);
	overflow-y: scroll;
}
.toc-menu > ul::-webkit-scrollbar { width: 5px; }
.toc-menu > ul::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.3); }
.toc-menu > ul::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.1); }
.acc-menu li {
	position: relative;
}
.acc-menu li a {
	border-bottom: 1px dotted #ddd;
	align-items: center;
}
/* Button open/close */
.accBtn {
	display: block;
	width: 1em;
	position: absolute;
	top: 0;
	right: 0;
	padding: 1em 1.2em 1.5em 1em;
	cursor: pointer;
}
.accBtn::before,
.accBtn.open::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background-size: contain;
	right: 15px;
}
.accBtn::before {
	background-image: url(../common/icon_plus.svg);
}
.accBtn.open::before {
	background-image: url(../common/icon_minus.svg);
}
/* ************************************************************

Menu for PC

************************************************************ */
@media screen and (min-width: 1024px) {
	aside {
		display: block;
		float: left;
		width: 20em;
	}
	main {
		float: right;
		width: calc(100% - 23em);
		padding: 0 0 0 3em;
	}
	#contents > #search_result_main {
		float: none !important;
		width: 100% !important;
		padding: 2em 0 1em 0;
	}
	.drawer-menu {
		display: none;
	}
	.toc-menu {
		width: 320px;
		position: static;
		padding: 0;
	}
	.toc-menu > p { text-align: left; }
	.toc-menu > ul {
		height: 100%;
		overflow-y: visible;
	}
	.accBtn::before,
	.accBtn.open::before {
		width: 12px;
		height: 12px;
		right: 20px;
	}
}
/* for IE 11 */
_:-ms-fullscreen, :root .selector {
	@media screen and (min-width: 930px) {
		aside {
			display: block;
			float: left;
			width: 20em;
		}
		main {
			float: right;
			width: calc(100% - 23em);
			padding: 0 0 0 3em;
		}
		.drawer-menu {
			display: none;
		}
		.toc-menu {
			width: 320px;
			position: static;
			padding: 0;
		}
	}
}
/* ************************************************************

Menu for Common

************************************************************ */
.toc-menu .acc-menu li {
	background-color: #fff;
}
.toc-menu > .acc-menu > li > .current,
.toc-menu > .acc-menu > li > .current:hover,
.toc-menu > .acc-menu > li > .current:active {
	color: #000;
	background-color: #de8e25;
}
/* Chapter */
.toc-menu > .acc-menu > li {
	background-color: #f5f5f5;
}
.toc-menu > .acc-menu > li > a {
	font-weight: 700;
}
.toc-menu > .acc-menu > li > a:hover { background-color: #eee; }
.toc-menu > .acc-menu > li > a:active { background-color: #ddd; }
.toc-menu > .acc-menu > li > ul {
	background-color: #ffffff;
}
.toc-menu > .acc-menu > li > ul > li a:hover { background-color: #f8f8f8; }
.toc-menu > .acc-menu > li > ul > li a:active { background-color: #f0f0f0; }
/* Section */
.toc-menu > .acc-menu > li > ul > li {
	padding-left: 1em;
}
.toc-menu > .acc-menu > li > ul a {
	border-left: 3px solid #333;
	padding: 0.5em 1.8em 0.5em 1em;
}
.toc-menu > .acc-menu > li > ul > li > .current {
	background-color: #F8E8D3;
	color: #000;
	font-weight: 700;
}
/* Paragraph */
.toc-menu > .acc-menu > li > ul > li > ul li {
	padding-left: 1em;
}
.toc-menu > .acc-menu > li > ul > li > ul a {
	border-left: 3px solid #333;
}
.toc-menu > .acc-menu > li > ul > li > ul .current {
	border-left: 3px solid #de8e25;
	background-color: #FDF9F4;
	color: #000;
}
/* ************************************************************

Contents

************************************************************ */
#contents {
	position: relative;
	width: 100%;
	top: 70px;
	margin: 0;
	padding: 0;
	transition: 0.3s;
}
/* BreadCrumb */
.bottom,
.topic-path {
	display: none;
}
.index .topic-path {
	display: none !important;
}
/* SearchNumber */
.search-num {
	display: inline-block;
	margin: 1em;
	padding: 0 3em;
	border: 1px solid #000000;
}
@media screen and (min-width: 800px) {
	#contents {
		width: calc(100% - 5em);
		max-width: 1024px;
		margin: 0 auto;
		padding: 0 2em;
	}
	.topic-path {
		display: block;
		margin: 0;
		padding: 1em 0;
	}
	#contents .topic-path {
		padding-left: 0;
	}
	.topic-path li {
		position: relative;
		display: inline-block;
		padding-left: 2em;
	}
	.topic-path li:first-child {
		padding-left: 0;
	}
	.topic-path li + li::before {
		content: '';
		width: 0.5em;
		height: 0.5em;
		border: 0px;
		border-top: solid 1px #000;
		border-right: solid 1px #000;
		transform: rotate(45deg);
		position: absolute;
		top: calc(50% - 0.5em);
		left: 0.5em;
	}
	.bottom {
		display: block;
		margin: 0 -10px;
		padding: 0 2.5em;
		border-bottom: 2px solid #000;
	}
	.bottom .topic-path {
		max-width: 1024px;
		margin: auto;
	}
	.search-num {
		margin: 1em 0;
		padding: 0 3em;
	}
}
/* for IE 11 */
_:-ms-fullscreen, :root .selector {
	@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
		#contents {
			width: calc(100% - 2em);
			margin: 0 auto;
		}
		.search-num {
			margin: 1em 0;
		}
	}
	@media screen and (min-width: 800px) {
		#contents {
			width: calc(100% - 5em);
		}
	}
}
/* ************************************************************

Main

************************************************************ */
/* HOME only */
#contents .p-logo {
	width: 100%;
	margin: 0 auto;
}
#contents .p-logo img {
	max-width: 425px;
	width: 100%;
}
#contents .subtitle {
	display: inline-block;
	padding: 0.3em 7em;
	margin: 0 auto;
	margin-top: 10px;
	color: #ffffff;
	background-color: #595757;
	border-radius: 15px;
}
#contents .l-line {
	display: block;
	margin: 20px auto;
	width: 3px;
	height: 50px;
	background-color: #595757;
	border-radius: 10px;
}
@media screen and (max-width: 1024px) {
	#contents .p-logo {
		padding-top: 50px;
	}
	#contents .p-logo img {
		width: 60%;
		display: block;
		margin: auto;
	}
	#contents .subtitle {
		font-size: 0.9em;
		padding: 0.3em 3em;
	}
	#contents .l-line {
		height: 30px;
	}
}
/* Heading */
h1 {
	font-size: 1.5em;
	margin-bottom: 1.5em;
}
h1::after {
	content:"";
	display:block;
	height:2px;
	width:100%;
	background-color: #000;
}
h2 {
	font-size: 1.3em;
	margin: 1.5em 0;
	padding: 0.5em 3em 0.5em 0.5em;
	border-left: 6px solid #333;
	border-bottom: 1px solid #333;
}
#search_result .search-result h2 {
	border: 0;
	margin: 1.5em 0 0 0;
	padding: 0;
}
#search_result .search-result h2 a { text-decoration: none; }
#search_result .search-result h2 a:hover { text-decoration: underline; }
#search_result .search-result h2 a:active { text-decoration: underline; }
h3 {
	font-size: 1.3em;
	margin: 2.5em 0 1em 0;
}
/* Others */
.stc-title {
	font-size: 1.2em;
	margin: 1em 0;
	font-weight: 700;
}
.stc-title + .table-scroll {
	margin-top: -1em;
}
.ts-title {
	font-size: 1.2em;
	font-weight: bold;
	color: #ffffff;
	margin: 1em 0;
	padding: 0.1em 0.5em;
	background-color: #696969;
}
.ts-tbox {
	width: 100%;
	margin: 0 auto;
}
.ts-title2 {
	font-size: 1.2em;
	font-weight: bold;
	margin: 1em 0;
	position: relative;
	padding-bottom: 5px;
	border-bottom: 3px solid #ddd;
}
.ts-title2::after {
	display: block;
	content: "";
	width: 30%;
	left: 0;
	bottom: -3px;
	position: absolute;
	border-bottom: 3px solid #696969;
}
.bc-title {
	font-size: 1.2em;
	font-weight: bold;
	color: #ffffff;
	margin: 1em 0 0 0;
	padding: 0.1em 0.5em;
	background-color: #696969;
}
/* Emphasis */
em {
	font-style: normal;
	font-weight: 700;
}
.prohibit {
	font-weight: 300;
}
.prohibit-b {
	font-weight: 700;
}
#contents .step-list li .step-title {
	font-size: 0.6em;
	font-weight: 700;
}
/* Lead sentence with bottom line */
.border-b {
	border-bottom: 1px solid #808080;
	margin-bottom: 1.5em;
	padding-bottom: 0.2em;
}
/* Reference */
.ref-sup {
	font-size: 0.9em;
	margin-left: 1.1em;
	text-indent: -1.1em;
}
.ref-sup::before,
.ref-num::before {
	content: "*";
	margin: 0 0.2em;
}
.ref-sup ul,
.ref-num ul {
	text-indent: 0;
}
div.table-scroll .ref-sup {
	white-space: normal;
}
/* Superscript */
.sup {
	font-size: 0.7em;
	vertical-align: super;
}
/* Wraparound */
.wraparound {
	border: 1px solid #000;
	padding: 1em;
	margin: 1.5em 0;
}
.wraparound > .headword {
	margin-top: 0;
}
.wraparound > .figure {
	float: left;
	margin: 0;
	padding-right: 1em;
}
.wraparound::after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: "";
}
.contact {
	display: flex;
}
/* Warning */
.warning-title {
	font-size: 2em;
	margin-right: 20px;
	white-space: nowrap;
}
.warning .warning-sub {
	font-size: 1.2em;
	padding: 0.5em 0
}
/* Link icon*/
.link-icon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
	max-width: 20px;
	vertical-align: middle;
	background: url("../common/icon_ref.svg") no-repeat;
	background-size: contain;
}
.link-icon:hover {
	max-width: 20px;
	background: url("../common/icon_ref-hov.svg") no-repeat;
	background-size: contain;
}
.link-icon::before {
	content: "";
	margin: 0.6em;
}
/* Internal links */
#contents .internal-links {
	list-style: none;
	padding-left: 0;
}
#contents .internal-links li {
	margin: 1em 0;
	cursor: pointer;
	margin-left: 2em;
}
#contents .internal-links li a {
	color: #0000ff;
	line-height: 1.7;
}
#contents .internal-links li a:hover { color: #de8e25; }
#contents .internal-links li a::before {
	content: "";
	background: url(../common/icon_internal-links.svg) no-repeat;
	fill: #000;
	float: left;
	display: inline-block;
	position: relative;
	top: 2px;
	width: 1em;
	height: 1em;
	margin: 0 0.5em 0 -2em;
	background-size: contain;
	vertical-align: middle;
}
#contents .internal-links li a:hover::before {
	background: url(../common/icon_internal-links_hov.svg) no-repeat;
	background-size: contain;
	vertical-align: middle;
}
.icon path {
	color: #fff;
	fill: currentColor;
}
#contents .internal-links a::before {
	content: none;
}
@media screen and (min-width: 800px) {
	#contents .internal-links li {
		background-color: #fff;
		border: none;
		cursor: default;
	}
	#contents .internal-links li:hover {
		background-color: #fff;
	}
	#contents .internal-links a {
		cursor: pointer;
	}
}
/* ************************************************************

List

************************************************************ */
/* Bulleted list */
#contents ul {
	font-size: 100%;
	margin: 1em 0;
}
#contents ul ul {
	margin: 0;
}
#contents .figure + ul {
	margin-top: 0;
	margin-bottom: 2em;
}
#contents ul.discL1 {
	padding-left: 1.8em;
	list-style-image: url(../common/icon_list-disc.svg);
}
#contents .discL1.tbl-custom {
	font-size: 0.8em !important;
}
#contents ul {
	list-style: none;
}
#contents ul.discL2 {
	padding-left: 1.8em;
	list-style-type: disc;
}
#contents .figure > .headword + ul.discL2 li {
	list-style-position: inside;
}
#contents ul.discL2 li {
	padding: 0.2em 0;
}
#contents ul.discL3 {
	padding-left: 1.8em;
	list-style-type: circle;
}
@media screen and (min-width: 800px) {
	#contents .figure > .headword + ul.discL2 li {
		list-style-position: outside;
	}
}
/* Step list (number) */
#contents ol {
	list-style-image: none;
	padding-left: 1.8em;
}
#contents .step-list {
	font-size: 2em;
	padding-left: 60px;
	margin-top: 1em;
}
@-moz-document url-prefix() {
	#contents .step-list > li {
		margin-bottom: 1em;
	}
}
#contents .step-list > li > * {
	font-size: 0.5em;
}
/* Step list (number) in Caution / Note */
#contents .caution-box .step-list,
#contents .note-box .step-list {
	font-size: 1em;
	padding-left: 25px;
	font-weight: 700;
	margin-top: 5px;
}
#contents .caution-box .step-list > li > *,
#contents .note-box .step-list > li > * {
	font-size: 1em;
	font-weight: 500;
}
#contents .caution-box .step-list li .step-title,
#contents .note-box .step-list li .step-title {
	font-size: 1em;
	font-weight: 700;
}
/* Step list (number) Single digit */
#contents .step-list li:not([class])::before { padding-left: 0.5em; }
/* List heading */
#contents .headword {
	font-size: 100%;
	font-weight: 700;
	margin-top: 1em;
	margin-bottom: 0.2em;
}
/* Step list (image) */
#contents .step-img img {
	vertical-align: top;
}
/* List indent adjust */
.list-indent {
	margin-left: 1.5em;
	text-indent: 0;
}
/* Step list with background color */
#contents .shade-step > .step-list {
	counter-reset: item;
	list-style: none;
}
#contents .shade-step > .step-list > li {
	position: relative;
	background-color: #f5f5f5;
	padding: 1em 1em 0.1em 0.5em;
	margin-bottom: 0.5em;
	margin-left: -2em;
}
#contents .shade-step > .step-list > li::before {
	position: absolute;
	top: 0.5em;
	right: calc(100% - 2em);
	counter-increment: item;
	content: counter(item)".";
	color: #000;
}
#contents .shade-step > .step-list > li > p,
#contents .shade-step > .step-list > li > div {
	font-size: 0.5em;
	padding-left: 60px;
}
#contents .shade-step > .step-list > li > .step-title {
	font-size: 0.6em;
	margin-top: calc(1em - 3.7%);
	line-height: 100%;
}
#contents .shade-step > .step-list > li > ul:last-child {
	padding-left: 5em;
}
@media screen and (max-width: 480px) {
	#contents .shade-step > .step-list > li::before {
		right: calc(100% - 2.5em);
	}
}
/* ************************************************************

Images

************************************************************ */
#contents .figure {
	text-align: center;
	margin-top: 0.5em;
}
#contents .figure img.border {
	border: 1px solid #000;
}
#contents .figure img {
	max-width: 100%;
}
#contents .figure ul {
	margin-top: 0.5em;
}
#contents .flex-layout + .figure {
	margin: 0.5em;
}
#contents .figure-box {
	border: 1px solid #ffffff;
	padding: 0;
	text-align: center;
	margin-top: 0.5em;
}
#contents .caution-box .flex-box,
#contents .note-box .flex-box {
	margin-bottom: 0;
}
#contents h2 .print_icon,
#contents h2 .icon .print_icon,
#contents h3 .print_icon,
#contents h3 .icon .print_icon,
#contents .stc-title .print_icon,
#contents .ts-title2 .print_icon {
	margin-bottom: 0 !important;
}
#contents .print_icon {
	vertical-align: baseline;
	font-size: x-small !important;
	margin: 0.2em auto -0.2em auto !important;
}
#contents .print_icon.af_points {
	vertical-align: bottom;
}
div.sys_img img[src$=".svg"] {
	width: 100%;
}
@media screen and (min-width: 800px) {
	#contents .figure {
		text-align: left;
	}
	#contents .print_icon {
		max-width: 100% !important;
	}
	#contents td img.print_icon,
	#contents th img.print_icon {
		max-width: none!important;
	}
}
/* ************************************************************

Caution / Note

************************************************************ */
/* Common */
#contents .caution-box > ul > li:first-child, 
#contents .note-box > ul > li:first-child {
	margin-top: 1em;
}
#contents .caution-box ul li.list-title,
#contents .note-box ul li.list-title {
	list-style-image: none;
	margin-left: -1.2em;
	margin-bottom: 0.5em;
}
#contents .caution-box.fixed > *,
#contents .note-box.fixed > * {
	cursor: default;
}
#contents .caution-box.fixed > p::after,
#contents .note-box.fixed > p::after {
	content: none;
}
/* Caution box */
#contents .caution-box {
	position: relative;
	margin-top: 1em;
	margin-bottom: 1em;
	border-bottom: 0.5em solid #333;
	border-radius: 5px;
}
#contents .caution-box > p {
	border-top: 0.5em solid #333;
	border-right: 0.5em solid #333;
	border-left: 0.5em solid #333;
	background-color: #333;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
	padding: 0 2em;
	margin-bottom: -1px;
	border-radius: 5px 5px 0 0;
	position: relative;
}
#contents .caution-box > p::before {
	content: "";
	background: url(../common/icon_caution.svg) no-repeat;
	display: inline-block;
	position: absolute;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	margin-left: 0.3em;
	background-size: contain;
	vertical-align: middle;
}
#contents .caution-box > p::after {
	content: '';
	width: 0.4em;
	height: 0.4em;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -0.3em;
	margin-right: 1.2em;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
}
#contents .caution-box > .active::after {
	border: 0px;
	border-right: solid 2px #fff;
	border-bottom: solid 2px #fff;
	transform: rotate(45deg);
}
#contents .caution-box > ul {
	display: none;
	margin: 0;
	padding: 0 1em 1em 2em;
	list-style-image: url(../common/icon_list-disc.svg);
	border-top: 0.5em solid #333;
	border-right: 0.5em solid #333;
	border-left: 0.5em solid #333;
}
#contents .caution-box.fixed > ul {
	display: block;
	margin: 0;
	padding: 0 1em 1em 2em;
	list-style-image: url(../common/icon_list-disc.svg);
	border-top: 0.5em solid #333;
	border-right: 0.5em solid #333;
	border-left: 0.5em solid #333;
}
/* Note box */
#contents .note-box {
	position: relative;
	margin-top: 1em;
	margin-bottom: 1em;
	border-bottom: 0.5em solid #ccc;
	border-radius: 5px;
}
#contents .note-box > p {
	border-top: 0.5em solid #ccc;
	border-right: 0.5em solid #ccc;
	border-left: 0.5em solid #ccc;
	background-color: #ccc;
	cursor: pointer;
	font-weight: 700;
	padding: 0 2em;
	margin-bottom: -1px;
	border-radius: 5px 5px 0 0;
	position: relative;
}
#contents .note-box > p::before {
	content: "";
	background: url(../common/icon_note.svg) no-repeat;
	display: inline-block;
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	left: 0;
	margin-left: 0.3em;
	background-size: contain;
	vertical-align: middle;
}
#contents .note-box > p::after {
	content: '';
	width: 0.4em;
	height: 0.4em;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -0.3em;
	margin-right: 1.2em;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	transform: rotate(45deg);
}
#contents .note-box > .active::after {	
	border: 0px;
	border-right: solid 2px #000;
	border-bottom: solid 2px #000;
	transform: rotate(45deg);
}
#contents .note-box > ul,
#contents .note-box.fixed > ul {
	display: none;
	margin: 0;
	padding: 0 1em 1em 2em;
	list-style-image: url(../common/icon_list-disc.svg);
	border-top: 0.5em solid #ccc;
	border-right: 0.5em solid #ccc;
	border-left: 0.5em solid #ccc;
}
#contents .note-box > ul {
	display: none;
}
#contents .note-box.fixed > ul {
	display: block;
}
@media screen and (-webkit-min-device-pixel-ratio:0){
	#contents .caution-box.fixed > ul {
		margin-bottom: -1px !important;
	}
	#contents .caution-box > p,
	#contents .note-box > p {
		margin-bottom: -2px;
	}
}
@media screen and (min-width: 480px) {
	#contents .caution-box,
	#contents .note-box {
		border-radius: 10px;
	}
	#contents .caution-box > p,
	#contents .note-box > p {
		border-radius: 10px 10px 0 0;
	}
}
/* ************************************************************

Flex box

************************************************************ */
#contents .flex-box,
#contents .flex-box3 {
	display: block;
	margin-bottom: 5em;
}
#contents .flex-box2 {
	display: block;
	margin-top: 1em;
	margin-bottom: 0;
}
#contents .flex-box2 > .flex-layout {
	margin-bottom: 2em;
}
#contents .flex-box4 > .figure {
	text-align: center;
}
#contents .flex-box ol {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#contents .flex-box ol:last-child {
	margin-left: 0;
}
#contents .flex-box ol:last-child li:first-child {
	border-top: none;
}
#contents .flex-box ol li {
	text-indent: -1.5em;
	padding: 0.3em 1em 0.3em 3em;
	border-top: 1px solid #000;
}
#contents .flex-box ol li:last-child {
	border-bottom: 1px solid #000;
}
#contents .flex-box ol > li > .caption {
	display: inline-block;
	width: 1.5em;
	text-align: left;
}
#contents .flex-box ol li .flex-br {
	text-indent: 0em;
	padding-left: 0em;
}
#contents .flex-box .angle {
	display: flex;
	list-style-type: none;
	margin-left: 0;
	padding: 0;
}
#contents .flex-box .angle li {
	display: block;
	width: 60%;
	margin: auto;
	padding-right: 1em;
	text-align: center;
}
#contents .flex-box .angle li p {
	margin-left: 0;
}
#contents .flex-box + .caution-box,
#contents .flex-box + .note-box,
#contents .flex-box + .flex-sup {
	margin-top: -4em;
	margin-bottom: 2em;
}
#contents .flex-box + .ref-sup:first-child {
	margin-top: -3em;
}
#contents .flex-box + .ref-sup:last-child {
	margin-bottom: 5em;
}
#contents .stand-position {
	display: table-cell;
	width: 100%;
	margin: auto;
}
#contents .stand-position > * {
	text-align: center;
}
#contents .stand-position > .x-position {
	width: 55%;
	float:left;
}
#contents .stand-position > .y-position {
	width: 35%;
	float:left;
}
@media screen and (min-width: 1200px) {
	#contents .flex-box3,
	#contents .flex-box4 {
		display: flex;
		margin-bottom: 2em;
	}
	#contents .flex-box3 div.figure p {
		font-size: 0.75em;
	}
	#contents .flex-box3 div.figure img:not(.print_icon),
	#contents .flex-box4 div.figure img:not(.print_icon) {
		min-width: 80px;
	}
	#contents .flex-box4 div.figure img:not(.print_icon) {
		text-align: center;
	}
}
@media screen and (min-width: 800px) {
	#contents .flex-box,
	#contents .flex-box2 {
		display: flex;
		margin-bottom: 2em;
	}
	#contents .flex-box2 > .flex-layout {
		margin-bottom: 0em;
	}
	#contents .flex-box ol {
		width: 50%;
		margin-left: 0;
	}
	#contents .flex-box ol:last-child {
		margin-left: 2em;
	}
	#contents .flex-box ol:last-child li:first-child {
		border-top: 1px solid #000000;
	}
	#contents .flex-box + .caution-box,
	#contents .flex-box + .note-box,
	#contents .flex-box + .flex-sup {
		margin-top: 1em;
		margin-bottom: 2em;
	}
}
/* ************************************************************

Table

************************************************************ */
#contents table {
	width: 100%;
	font-size: 0.9em;
	margin: 1em 0;
	border-spacing: 0;
	border-collapse: collapse;
}
#contents table.tl-fixed {
	table-layout: fixed;
}
th, td {
	padding: 0.5em;
	border: 1px solid #000000;
	min-height: 2em;
}
th {
	background-color: #cccccc;
	text-align: center;
}
td {
	background-color: #ffffff;
}
.table-scroll, .table-scroll-pc {
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	font-size: 80%;
}
#contents .table-scroll.btn-custom > table {
	width: 100vw;
}
#contents .ts-title + .table-scroll-pc {
	margin-top: 0;
}

/* Table (adjust width) */
.twidth50 { width: 50% !important; }
.twidth40 { width: 40% !important; }
.twidth30 { width: 30% !important; }
.twidth20 { width: 20% !important; }
.twidth15 { width: 15% !important; }
.twidth10 { width: 10% !important; }
.twidth5 { width: 5% !important; }

/* Table (general, parts names) */
.bgcolor {
	background-color: #e9e9e9;
}
.table-sup td {
	border-top: transparent 1px solid;
	border-right: transparent 1px solid;
	border-left: transparent 1px solid;
	text-align: right;
	padding: 0;
}
.nowrap {
	white-space: nowrap;
}
/* Table (th Oblique line) */
.diag {
	background-image: linear-gradient(to top right,
		transparent, transparent 49%,
		#000 51%, #000 51%,
		transparent 52%, transparent);
	line-height:3em;
}
.diag p:first-child{
	float: right;
	clear: both;
	vertical-align: top;
}
.diag p:last-child{
	float: left;
	clear: both;
	vertical-align: bottom;
}
.top-hidden { border-top: hidden; }
.right-hidden { border-right: hidden; }
.left-hidden {border-left-style:hidden; }
@media screen and (min-width: 1024px) {
	.table-scroll {
		overflow-x: visible;
		-webkit-overflow-scrolling: auto;
		white-space: normal;
		word-wrap: break-word;
	}
}
/* ************************************************************

Footer

************************************************************ */
footer {
	padding: 0 10px 10px 10px;
	background-color: #fff;
	margin-top: 100px;
	position: relative;
	border-top: none;
}
/* Next/Prev button */
#contents .page-nav {
	margin-bottom: 50px;
}
#contents main .page-nav ul {
	list-style-type: none;
	margin-top: 0;
	padding-left: 0;
	display: flex;
	justify-content: space-around;
}
#contents main .page-nav a::before {
	content: none;
}
.page-nav ul li:hover {
	opacity: .6;
}
/* Page Top button */
#page-top {
	position: fixed;
	bottom: 10px;
	right: 20px;
}
#page-top a {
	display: block;
	width: 46px;
	height: 34px;
	padding-top: 12px;
	text-align: center;
	text-decoration: none;
	background: rgba(222,142,37,0.6);
	border-radius: 30px;
}
#page-top a:hover {
	text-decoration: none;
	background: rgba(222,142,37,0.8);
}
#page-top a img {
	vertical-align: middle;
}
#contents .page-nav img {
	width: 90%;
	max-width: 60px;
}

/* Copyright, Parts number */
.index > .partno {
	font-size: 0.9em;
	color: #000;
	text-align: center;
	margin-top: 1em;
}
.copyright {
	font-size: 0.9em;
	color: #000;
	text-align: center;
	margin-top: 1em;
}
/* LinkText */
.LinkText {
	display: inline-block;
	width: auto;
	padding: 0;
	text-align: center;
	vertical-align: middle;
	font-size: 0.8em;
	font-weight: bold;
}
#globalLinks {
	text-align: center;
}
#globalLinks > p::after {
	content: "|";
	padding: 0 0 0 0.5em;
}
#globalLinks p:last-child::after {
	content: none;
}
#globalLinks > p::after {
	content: none;
	margin: 0;
}
@media screen and (min-width: 480px) {
	#page-top {
		bottom: 58px;
	}
	#page-top a {
		text-decoration: none;
		font-size: 14px;
		text-align: center;
	}
	footer {
		border-top: 1px solid #000;
		margin-top: 100px;
	}
	#contents .page-nav img {
		width: 100%;
	}
	#globalLinks {
		display: block;
		text-align: center;
		margin-top: 1em;
	}
	#globalLinks p {
		display: inline-flex;
		margin: 0 0.5em
	}
	#globalLinks > p::after {
		content: none;
		margin: 0;
	}
	#globalLinks p:last-child::after {
		content: none;
	}
	.copyright {
		text-align: center;
	}
	.index > .partno {
		text-align: center;
	}
}
@media screen and (min-width: 1024px) {
	#globalLinks {
		display: block;
		height: 0;
		margin-top: 1em;
		margin-left: 1em;
		text-align: left;
	}
	.index >#globalLinks {
		height: auto;
	}
	#globalLinks p {
		display: inline-flex;
		margin: 0
	}
	#globalLinks > p::after {
		content: "|";
		margin: 0;
	}
	#globalLinks p:last-child::after {
		content: none;
	}
	.copyright {
		display: block;
		text-align: right;
		height: 0;
		margin: 0.2em 0 2em 0;
	}
	.index > .copyright {
		margin: 1em 0.2em 0;
		text-align: center;
	}
	.index > .partno {
		display: block;
		text-align: right;
		height: 0;
		margin: 0 1em 2em 0;
	}
}

/* ************************************************************

General Style

************************************************************ */
.clearfix::after {
	clear: both;
	content: '';
	display: block;
}
#contents .center {
	text-align: center;
}
.underline {
	text-decoration: underline;
}
.normal {
	font-weight: 500;
}
p.no-indent {
	text-indent: 0;
	margin-left: -1.4em;
}
/* Adjust the image horizontally */
.img-layout {
	width: 100%;
	display: inline-block;
}
.img-layout > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 0 0.5em;
}
.img-layout div img {
	margin: 0 auto;
	max-width: 100%;
}
.img-layout div img:first-child:not(.print_icon) {
	margin-top: 1em;
	margin-bottom: 1em;
}
.flex-layout {
	flex: 1 0 0%;
	margin-right: 1em;
}
.flex-layout > img {
	max-width: 100%;
	margin: auto;
}
#contents .flex-box .flex-list {
	width: 100%;
}
#contents .flex-box .flex-list + .figure {
	text-align: left;
}
/* Layout adjust */
.p-layout,
.p-layout2 {
	max-width:100%;
	margin: auto;
}
.p-layout > p,
.p-layout2 > p {
	width: 100vw;
	display: table-cell;
}
.p-layout > p:first-child {
	padding-right: 8%;
}
.p-layout > p:last-child {
	padding-left: 8%;
}
.img-layout > .i-block {
	display: inline-block;
	vertical-align: top;
}
.text-layout {
	display: flex;
	justify-content: space-around;
}
.flex-arrow {
	margin: auto 0.5em;
	text-align: center;
}
.flex-arrow > img{
	transform: rotate( 90deg );
	vertical-align: middle;
}
#contents .flex-box .left,
#contents .flex-box .right { text-align: center;}

.para-break{
	margin-top: 2em;
}
.para-break-spec{
	margin-top: 1em;
}
/* Non icon links */
.icon-none::before {
	content: "";
}
/* Non icon lists */
.bullet-none {
		list-style-image: none;
		margin-left: -1em;
}
.print-only {
	display: none;
}
#contents .left {
	text-align: left;
}
#contents .right {
	text-align: right;
}
@media screen and (min-width: 800px) {
	#contents .flex-box .left { text-align: left;}
	#contents .flex-box .right { text-align: right;}
	#contents .flex-box .left + .flex-arrow,
	#contents .flex-box .right + .flex-arrow {
		margin-top: 3.5em;
	}
	.flex-arrow > img{
		transform: rotate(0deg);
	}
	#contents .flex-box3 .flex-arrow > img,
	#contents .flex-box4 .flex-arrow > img{
		transform: rotate(90deg );
	}
	.img-layout {
		align-items: flex-start;
		justify-content: space-around;
		display: flex;
	}
	.img-layout > div { width: 50%; }
	#contents .flex-box .flex-list {
		display: block;
		width: 80%;
	}
	#contents .flex-box .flex-list + .figure {
		display: block;
		text-align: right;
		width: 20%;
	}
}
@media screen and (min-width: 1200px) {
	#contents .flex-box3 .flex-arrow {
		margin-top: 35px;
	}
	#contents .flex-box3 .flex-arrow > img,
	#contents .flex-box4 .flex-arrow > img{
		transform: rotate(0deg);
	}
}

/* ************************************************************

Edit for each language

************************************************************ */
.toc-menu .acc-menu li a {
	display: block;
	padding: 0.7em 3em 0.7em 1em;
	text-decoration: none;
	font-weight: 400;
	color: #0000ff;
	position: relative;
}
/* Warning */
.warning {
	background-color: #727171;
	color: #fff;
	padding: 1px 10px;
	margin: 1em 0;
}
@media screen and (min-width: 480px) {
	.warning { display: flex; }
}
/* Icon */
.icon {
	white-space: nowrap;
	display: inline;
}
.icon::before {
	content: "\03c";
}
.icon::after {
	content: "\03e";
}
#contents .icon .print_icon {
	margin: 0.2em 0.2em -0.2em 0.2em !important;
}
/* UI term */
.ui {
	font-weight: 700;
}
.ref-num {
	font-size: 0.9em;
	margin-left: 2em;
	text-indent: -1.9em;
}
.ref-num-br {
	font-size: 0.9em;
	margin-left: 2em;
	text-indent: 0;
}
/* Style for Thai */
th:lang(th),
td:lang(th),
.flex-box > ol > li:lang(th),
.ts-title:lang(th) {
	line-height: 1.5em
}
@media screen and (min-width: 480px) {
	.toc-menu > .acc-menu > li > ul a {
		padding: 0.7em 2em 0.7em 0.7em;
	}
}
/* for IE 11 */
_:-ms-fullscreen, :root .selector {
	@media screen and (min-width: 800px) {
		#contents .caution-box > ul > li > .flex-box {
			margin-top: -1.2em;
		}
	}
}
/* for Microsoft Edge */
@supports (-ms-ime-align:auto) {
	#contents .caution-box > ul > li > .flex-box {
		margin-top: -1.2em;
	}
}

/* ************************************************************

css update: 2024.6

************************************************************ */
.adv-mark::after {
	content: url(../screens/icon_star-w.svg);
	display: inline-block;
	margin: 0 0 0 5px;
	vertical-align: middle;
}
.icon-area {
	display: block;
	float: right;
	margin-top: 0;
	margin-right: -95px;
}
.adv-icon::after {
	content: url(../screens/icon_star-w.svg);
}
li .adv-icon::after {
	margin-left: 5px;
	vertical-align: middle;
}
.caution-box .adv-icon::after {
	font-size: 0.8em;
}
.caution-box .category-s-icon::after,
.caution-box .category-m-icon::after,
.caution-box .category-sm-icon::after {
	width: 50px;
	height: 18px;
	margin-bottom: 0;
	vertical-align: text-bottom;
}
h1 > .adv-icon::after {
	display: inline-block;
	float: right;
	position: relative;
	white-space: nowrap;
	margin-right: -95px;
}
h2 > .adv-icon::after {
	display: inline-block;
	font-size: 0.7em;
	margin-top: 5px;
	float: right;
	position: relative;
	white-space: nowrap;
	margin-right: -95px;
}
.category-s-icon::after {
	content: "";
	vertical-align: middle;
	display: inline-block;
	background-image: url(../screens/icon_category-s.svg);
	background-size: contain;
	width: 70px;
	height: 25px;
	background-repeat: no-repeat;
	margin-bottom: 5px;
}
.category-m-icon::after {
	content: "";
	vertical-align: middle;
	display: inline-block;
	background-image: url(../screens/icon_category-m.svg);
	background-size: contain;
	width: 70px;
	height: 25px;
	background-repeat: no-repeat;
	margin-bottom: 5px;
}
.category-sm-icon::after {
	content: "";
	vertical-align: middle;
	display: inline-block;
	background-image: url(../screens/icon_category-sm.svg);
	background-size: contain;
	width: 70px;
	height: 25px;
	background-repeat: no-repeat;
	margin-bottom: 5px;
}
h1, h2 {
	padding-right: 95px;
}
h1::after {
	content:"";
	display:block;
	height:2px;
	width: calc(100% + 95px);
	background-color: #000;
}
h1 .adv-icon,
h2 .adv-icon {
	margin-left: 5px;
}
_::-webkit-full-page-media, _:future, :root h1 > .icon-area,
_::-webkit-full-page-media, _:future, :root h2 > .icon-area {
	margin-top: 0;
}
@media screen and (max-width: 480px) {
	h1, h2 {
		padding-right: 100px;
	}
	h1::after {
		width: calc(100% + 100px);
	}
	h1 > .adv-icon::after {
		margin-right: -100px;
		margin-top: 0px;
	}
	.adv-icon::after {
		font-size: 0.6em;
		padding: 1px 5px;
		border-radius: 3px;
	}
	h2 .adv-icon::after {
		padding: 0px 5px;
	}
	h2 > .adv-icon::after {
		margin-right: -100px;
	}
	.icon-area {
		margin-right: -100px;
	}
	.category-s-icon::after,
	.category-m-icon::after,
	.category-sm-icon::after {
		width: 50px;
		height: 20px;
	}
}
@media screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 0) {
	li .adv-icon::after {
	  vertical-align: -moz-middle-with-baseline;
	  vertical-align: -webkit-baseline-middle;
	}
	.caution-box .category-s-icon::after,
	.caution-box .category-m-icon::after,
	.caution-box .category-sm-icon::after {
		width: 45px;
		vertical-align: -5px;
	}
  }
/* ************************************************************

JavaScript disable

************************************************************ */

/* Hide when js enable */
html.enable-js #contents .hide-js-on {
	display: none;
}
/* Hide when js disable */
html:not(.enable-js) #contents .hide-js-off {
	display: none;
}
/* Js disable */
html:not(.enable-js) #contents .show-js-off {
	display: block;
}
html:not(.enable-js) #contents main .caution-box > ul,
html:not(.enable-js) #contents main .note-box > ul {
	display: block;
	cursor: default;
}
html:not(.enable-js) #contents main .caution-box > *,
html:not(.enable-js) #contents main .note-box > * {
	cursor: default;
}
html:not(.enable-js) #contents main .caution-box > p::after,
html:not(.enable-js) #contents main .note-box > p::after {
	content: none;
}
html:not(.enable-js) .search-l,
html:not(.enable-js) .search-s,
html:not(.enable-js) .drawer-menu,
html:not(.enable-js) .select-lang,
html:not(.enable-js) .select-lang-sp,
html:not(.enable-js) .topic-path,
html:not(.enable-js) aside {
	display: none;
}
html:not(.enable-js) .show-js-off > .toc-menu {
	position: static;
	width: auto;
}
html:not(.enable-js) main:not(.home) {
	width: calc(100% - 2em);
}
html:not(.enable-js) .home-btn {
	width: 48px;
	height: 48px;
	cursor: pointer;
}
html:not(.enable-js) .home-btn a {
	display: block;
	width: 48px;
	height: 48px;
	padding: 0 1em;
	background: url("../common/home-button.svg") no-repeat;
	cursor: pointer;
}
html:not(.enable-js) .home-btn a:hover {
	width: 48px;
	height: 48px;
	background: url("../common/home-button_hov.svg") no-repeat;
}
@media screen and (min-width: 800px) {
	html:not(.enable-js) main:not(.home) {
		width: 100%;
	}
}

/* ************************************************************

For Print

************************************************************ */
@media print {
	/* Size */
	@page {
		size: A6 !important;
		padding: 0 !important;
		margin: 0.5em 0 !important;
	}
	main {
		clear: both;
		width: 100%;
	}
	/* Hide when print */
	.header-menu, .drawer-menu, .page-nav,
	#contents>nav, #contents>aside,
	footer:not([class]), #page-top {
		display: none !important;
	}
	#contents .l-line { display: none !important; }
	/* Print display */
	body {
		font-size: 50% !important;
		margin: 0 !important;
		padding: 0 !important;
		-webkit-print-color-adjust: exact !important;
	}
	header {
		position: static !important;
		width: 100% !important;
		padding: 0 !important;
	}
	.logo {
		height: auto !important;
		padding: 10px 5px 5px 10px !important;
		margin-left: 0 !important;
	}
	.logo img {
		max-width: 80% !important;
	}
	#contents {
		top: 0 !important;
	}
	h1 {
		margin-top: 1em !important;
	}
	h1 .adv-icon {
		font-size: 7pt;
		margin-top: 0 !important;
	}
	h2 .adv-icon {
		font-size: 7pt !important;
		right: 10px;
		margin-top: 0 !important;
	}
	.adv-mark::after {
		font-weight: 300;
	}
	a:link,
	a:visited {
		text-decoration: underline !important;
		color: #0000ff !important;
	}
	a:hover {
		text-decoration: underline !important;
		color: #de8e25 !important;
	}
	.print_icon { font-size: x-small !important; }
	.nowrap {
		white-space: nowrap;
	}
	/* Separation prohibited */
	p, table, td, th, tr, tbody,
	div.flex-box, div.figure,
	div.note-box, div.caution-box,
	ul.discL2 li, ul.discL1 li,
	ol.step-list li {
		page-break-inside: avoid !important;
	}

	/* Page break before h2, Warning */
	section > h2, .warning {
		page-break-before: always !important;
	}

	/* index.html */
	#contents .p-logo { margin-top: 50px; }
	#contents .p-logo img {
		display: block !important;
		margin: 0 auto !important;
		max-width: 50% !important;
	}

	/* Internal-links */
	#contents .internal-links {
		margin-top: 1em !important;
		margin-bottom: 1em !important;
	}
	#contents .internal-links li a::before {
		top: 6px;
	}
	/* Image width */
	#contents img { max-width: 70% !important; }
	#contents .figure img.border { max-width: 50% !important; }
	#contents .step-img li img,
	#contents .step-list li img:not([class]),
	#contents table td img:not([class]) {
		max-width: 50% !important;
	}
	#contents .step-list li .flex-layout img { max-width: 100% !important; }
	#contents .step-list li .clearfix img { max-width: 100% !important; }
	#contents .img-layout div img { max-width: 35% !important; }
	#contents img.print_icon{ max-height: 1em !important; }
	#contents .print_icon.af_points { vertical-align: baseline; }
	.p-layout {
		font-size: 0.8em !important;
		max-width:70% !important;
	}
	#contents .p-layout + .figure {
		max-width: 70% !important;
		margin: auto !important;
	}

	/* Backgroud color step */
	#contents .shade-step > .step-list > li > div { padding-left: 30px !important; }
	#contents .shade-step > .step-list > li > p { padding-left: 30px !important; }
	#contents .shade-step li { page-break-inside: avoid !important; }

	/* Warning */
	.warning-title img {
		vertical-align: text-bottom !important;
	}
	.warning .warning-sub {
		padding: 0.8em 0 0 0 !important;
	}

	/* Caution / Note */
	#contents .caution-box > p,
	#contents .note-box > p {
		padding-left: 2.5em !important;
	}
	#contents .note-box p::after,
	#contents .caution-box p::after {
		content: none !important;
	}
	#contents .caution-box > p::before,
	#contents .note-box > p::before {
		top: 0.5em !important;
	}
	#contents .note-box > ul,
	#contents .caution-box > ul {
		display: block !important;
		list-style-image: url(../common/icon_list-disc_s.svg) !important;
	}
	#contents .caution-box > ul {
		border-top: 0.5em solid #333 !important;
		border-right: 0.5em solid #333 !important;
		border-left: 0.5em solid #333 !important;
	}
	#contents .note-box > ul {
		border-top: 0.5em solid #ccc !important;
		border-right: 0.5em solid #ccc !important;
		border-left: 0.5em solid #ccc !important;
	}
	#contents .caution-box,
	#contents .note-box {
		border-radius: 5px !important;
	}
	#contents .caution-box > p,
	#contents .note-box > p {
		border-radius: 5px 5px 0 0 !important;
	}
	#contents .caution-box .list-title:first-of-type > .headword,
	#contents .note-box .list-title:first-of-type > .headword {
		margin-top: 0 !important;
	}
	/* Reference */
	.ref-sup {
		margin-left: 0;
		text-indent: 0;
	}
	/* List / Step list */
	#contents .discL1 { list-style-image: url(../common/icon_list-disc_s.svg) !important; }
	#contents ol.step-list li { padding-top: 1em !important; }

	#contents .step-list li > .figure,
	#contents .caution-box li .figure,
	#contents .note-box li .figure {
		text-align: left !important;
	}
	#contents .figure + ul > li {
		padding-top: 0.5em !important;
	}
	#contents .step-list li:last-child {
		margin-bottom: 1em !important;
	}
	#contents .caution-box ul li .step-list li,
	#contents .note-box ul li .step-list li {
		margin-bottom: 0 !important;
	}
	/* Flex box */
	#contents .flex-box,
	#contents .flex-box3 {
		display: flex !important;
		margin-bottom: 2em !important;
	}
	#contents .flex-box ol { width: 50% !important; }
	#contents .flex-box ol:last-child { margin-left: 2em !important; }
	#contents .flex-box ol:last-child li:first-child { border-top: 0.2px solid #000000 !important; }
	#contents .flex-box ol li { 	padding: 0 1em 0 3em;}
	#contents .flex-box + .caution-box,
	#contents .flex-box + .note-box,
	#contents .flex-box + .flex-sup {
		margin-top: 1em !important;
		margin-bottom: 2em !important;
	}
	#contents .flex-box3 div.figure p {
		font-size: 0.75em !important;
	}
	#contents .flex-box3 div.figure img{
		max-width: 50px !important;
	}
	#contents .step-list li .flex-box3 .figure,
	#contents .step-list li .flex-box4 .figure {
		width: 100% !important;
		text-align: center !important;
	}
	#contents .step-list li .flex-box3 .figure img,
	#contents .step-list li .flex-box4 .figure img {
		width: 30% !important;
	}
	#contents .step-list li > .flex-box3 > .flex-arrow > img,
	#contents .step-list li > .flex-box4 > .flex-arrow > img {
		transform: rotate(90deg) !important;
	}
	.flex-box .left { text-align: left;}
	.flex-box .right { text-align: right;}
	.flex-box .left + .flex-arrow,
	.flex-box .right + .flex-arrow {
		margin-top: 3.5em !important;
	}
	#contents .flex-arrow > img{
		transform: rotate(0deg) !important;
	}
	#contents table tr > td > .caption {
		width: 1.5em;
		text-align: center;
	}
	#contents .caution-box > ul > li > .flex-box {
		margin-top: 0em;
	}
	/* Table */
	th, td {
		border: 0.2px solid #000000 !important;
	}
	#contents .tbl-custom,
	#contents .btn-custom {
		font-size: 0.8em !important;
	}
	#contents table.tbl-custom .print_icon,
	#contents table.btn-custom .print_icon {
		font-size: xx-small !important;
	}
	#contents table th, table td {
		padding: 0 0.5em !important;
	}
	#contents .table-scroll,
	#contents .table-scroll-pc {
		width: 100% !important;
		overflow-x: auto !important;
		white-space: normal !important;
		font-size: 95% !important;
	}
	#contents table td img.print_icon { max-width: 100% !important; }
	#contents .bottom-hidden { border-bottom: solid 0px !important; }
	#contents .top-visible { border-top: solid 0.2px #000000 !important; }
	#contents .top-hidden { border-top-style: hidden !important; }
	/* Display all content */
	ul.discL2, ul.discL1, table, div.table-scroll, div.figure, div.figure img, p {
		overflow: visible !important;
	}
	/* Emphasis */
	em {
		font-style: bold;
	}
	/* General Style */
	#contents .print-w100 { max-width: 100% !important; }
	#contents .print-w90 { max-width: 90% !important; }
	#contents .print-w80 { max-width: 80% !important; }
	#contents .print-w70 { max-width: 70% !important; }
	#contents .print-w60 { max-width: 60% !important; }
	#contents .print-w50 { max-width: 50% !important; }
	#contents .print-w40 { max-width: 40% !important; }
	#contents .print-w30 { max-width: 30% !important; }
	#contents .print-w20 { max-width: 20% !important; }
	#contents .print-w15 { max-width: 15% !important; }
	#contents .print-w10 { max-width: 10% !important; }

	#contents .print-only { display: inline !important; }
	#contents .print-hidden { display: none !important; }
	#contents .page-break { page-break-before: always !important; }
	#contents .no-page-break { page-break-before: avoid !important; }

	/* Copyright/parts number */
	.index > .partno {
		display: inline !important;
		position: fixed !important;
		bottom: 15px !important;
		text-align: left !important;
	}
	.index > .copyright {
		display: inline !important;
		position: fixed !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 6px !important;
		text-align: center !important;
	}
}
