@charset "utf-8";
/* OMデジタルソリューションズ */
/* CSS Document */

/* import css 
-------------------------------------------------- */

/* grid 
-------------------------------------------------- */
body {
	grid-template-rows: 64px 1fr 120px;
}

/* header 
-------------------------------------------------- */
header {
	border-bottom: 1px solid #d4d4d4;
	padding-top: 15px;
}

header img {
	height: auto;
	width: 138px;
}

header button.drawer-toggle {
	background-color: #0084b2;
	border: 2px solid #0084b2;
	border-radius: 0;
}

header button.drawer-toggle:hover {
	background-color: #fff;
    transition: all 400ms ease-in-out 0s;
}

header button.drawer-toggle:hover .drawer-hamburger-icon, 
header button.drawer-toggle:hover .drawer-hamburger-icon::after, 
header button.drawer-toggle:hover .drawer-hamburger-icon::before {
	background-color: #0084b2;
}

header button.drawer-toggle:focus {
	outline: none;
}

.drawer-open header button.drawer-toggle {
	background-color: #f00;
	border: 2px solid #f00;
}

.drawer-open header button.drawer-toggle .drawer-hamburger-icon, 
.drawer-open header button.drawer-toggle .drawer-hamburger-icon::after, 
.drawer-open header button.drawer-toggle .drawer-hamburger-icon::before {
	background-color: #fff;
}

.drawer-open header button.drawer-toggle .drawer-hamburger-icon {
	background-color: transparent;
}

/* breadcrumb 
-------------------------------------------------- */
.breadcrumb {
    background-color: inherit;
    padding: 0;
}

.breadcrumb-item {
	display: block;
}

/* section 
-------------------------------------------------- */
section {
	margin: 5rem auto;
}

section > section {
	margin: 3rem auto;
}

section > section > section {
	margin: 2rem auto;
}

section[name="pmx-dummy"] {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.row > section[name="pmx-dummy"] {
	display: flex;
}

/* hx 
-------------------------------------------------- */
h1 {
	background-color: #333;
	font-weight: bold;
    font-size: 2rem;
	padding: .5rem;
	margin-bottom: 2rem;
}

h2 {
	text-decoration: none;
	border-bottom: solid 4px #e2e2e2;
}

/* text-style 
-------------------------------------------------- */
.note-text {
	margin-bottom: 0;
	padding-left: 1.5rem;
	text-indent: -1.5rem;
}

.footnote-group {
    counter-reset: footnote-cnt;
}

.footnote-number {
    position: relative;
    margin-left: 1.5rem;
    counter-increment: footnote-cnt;
}

.footnote-number::before {
    display: inline-block;
    content: counter(footnote-cnt);
    text-align: right;
    margin-left: -1.5rem;
    width: 1rem;
    position: absolute;
    top: 0;
    left: 0;
}

.footnote-asterisk {
    position: relative;
    margin-left: 1rem;
}

.footnote-asterisk::before {
    display: inline-block;
    content: "*";
    margin-left: -1rem;
    width: 1rem;
    position: absolute;
    top: 0;
    left: 0;
}

html[lang="ja-JP"] .footnote-asterisk::before {
    content: "※";
}

/* anchor 
-------------------------------------------------- */

/* link 
-------------------------------------------------- */
.link li {
	padding-left: 14px;
	text-indent: -14px;
}

.link li::before {
	content: '\f0da';
	font-weight: 900;
}

/* cross-reference
-------------------------------------------------- */

/* card
-------------------------------------------------- */
.card {
	border: 2px solid rgba(0,0,0,.125);
}

/* panel
-------------------------------------------------- */

/* note 
-------------------------------------------------- */
.note {
	border: 4px solid #ccc;
	padding: 0.5rem;
	margin-bottom: 2rem;
}

.note-header {
	font-weight: bold;
	margin-bottom: 0;
	padding-left: 1.25rem;
	text-indent: -1.25rem;
}

.note-header-memo, .note-header-hint, .note-header-caution  {
	font-weight: bold;
	margin-bottom: 0;
	padding-left: 1.5rem;
	position: relative;
}

.note-header-memo::before {
	position: absolute;
	left: 0;
	width: 1rem;
	height: 1rem;
	content: "A";
	font-family: "om01";
	font-weight: normal;
	font-size: 1.2em;
	line-height: 1.5;
}

.note-header-hint::before {
	position: absolute;
	left: 0;
	width: 1rem;
	height: 1rem;
	content: "B";
	font-family: "om01";
	font-weight: normal;
	font-size: 1.2em;
	line-height: 1.5;
}

.note-header-caution::before {
	position: absolute;
	left: 0;
	width: 1rem;
	height: 1rem;
	content: "C";
	font-family: "om01";
	font-weight: normal;
	font-size: 1.2em;
	line-height: 1.5;
}

/* rnum
-------------------------------------------------- */
.rnum {
    height: 1.5rem;
    width: auto;
    margin: 0 0.25rem;
}

/* inline icon
-------------------------------------------------- */

/* caption
-------------------------------------------------- */

/* font size
-------------------------------------------------- */
.font-size-12em {
	font-size: 1.2em;
}

/* unorderd list
-------------------------------------------------- */
ul {
	padding-left: 1.5rem;
}

ul.list-bullet > li {
    list-style: disc !important;
}

ul.list-bullet > li::before {
	display: none !important;
}

ul > li.memo, ul > li.hint, ul > li.caution {
	list-style-type: none;
	position: relative;
}

ul > li.memo::before {
	position: absolute;
	margin-left: -1.5rem;
	width: 1rem;
	height: 1rem;
	content: "A";
	font-family: "om01";
	font-size: 1.2em;
	line-height: 1.5;
}

ul > li.hint::before {
	position: absolute;
	margin-left: -1.5rem;
	width: 1rem;
	height: 1rem;
	content: "B";
	font-family: "om01";
	font-size: 1.2em;
	line-height: 1.5;
}

ul > li.caution::before {
	position: absolute;
	margin-left: -1.5rem;
	width: 1rem;
	height: 1rem;
	content: "C";
	font-family: "om01";
	font-size: 1.2em;
	line-height: 1.5;
}

/* orderd list
-------------------------------------------------- */
.list-parts {
	padding-left: 0;
	counter-reset:parts-number 0;
	list-style-type: none!important;
}

.list-parts > li {
	position: relative;
    padding-left: 1.5rem;
}

.list-parts > li::before {
	position: absolute;
	counter-increment: parts-number;
	content: counter(parts-number);
	display: inline-block;
	font-size: 0.9rem;
	border: 1px solid;
	border-radius: 50%;
	left: 0;
	width: 1.25rem;
	height: 1.25rem;
	line-height: 1rem;
	text-align: center;
	top: 0.25rem;
}

.list-parts-upper-alpha {
    padding-left: 1rem;
    counter-reset:parts-number-upper-alpha 0;
    list-style-type: none!important;
}

.list-parts-upper-alpha > li {
    position: relative;
    padding-left: 1rem;
}

.list-parts-upper-alpha > li::before {
   position: absolute;
   counter-increment: parts-number-upper-alpha;
   content: counter(parts-number-upper-alpha,upper-alpha);
   display: inline-block;
   left: -1rem;
   width: 1.5rem;
   font-weight: bold;
   font-size: 1.25rem;
   line-height: 1.5rem;
   text-align: right;
}

/* definition list 
-------------------------------------------------- */
dt {
    margin-bottom: 0.25rem;
}

dd {
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

dl.bullet dt {
	margin-left: 1.25em;
	text-indent: -1.25em;
}

dl.bullet dt::before {
	content: "●";
	margin-right: 0.25em;
}

dl.bullet dd {
	margin-left: 1.25em;
}

/* numberd (circled number) 
-------------------------------------------------- */
ol.numberd {
	padding-left: 0;
	list-style: none;
}

ol.numberd > li {
	margin-left: 1.75rem;
	text-indent: -1.75rem;
	margin-bottom: 1.5rem;
}

ol.numberd > li:last-child {
	margin-bottom: 0;
}

ol.numberd > li > ul > li {
    margin-left: 0;
    text-indent: 0;
}

dl.numberd dt {
	margin-left: 1.75rem;
    text-indent: -1.75rem;
}

dl.numberd dd {
	margin-left: 1.75rem;
}

ol.numberd > li .rnum,
dl.numberd dt > .rnum {
	margin-left: 0;
}

/* procedure (step) 
-------------------------------------------------- */
.procedure > li::before {
    color: #212529;
	content: counter(step-number);
	font-size: 1.5rem;
	top: -0.125rem;
}

.procedure > li .step-lead {
    font-weight: 600;
}

/* parentheses 
-------------------------------------------------- */

/* table 
-------------------------------------------------- */
.table-bordered > tbody > tr > th {
	white-space: normal;
}

.table-bordered > thead > tr > th.border-right,
.table-bordered > tbody > tr > td.border-right {
	border-right: 1px solid #dee2e6;
}

.table-bordered > thead > tr > th.border-left,
.table-bordered > tbody > tr > td.border-left,
.table-bordered > tbody > tr > th.border-left {
	border-left: 1px solid #dee2e6;
}

.table-parts {
    margin-bottom: 2rem;
}

.table-parts > tbody > tr > td,
.table-parts > tbody > tr > th,
.table-parts > tfoot > tr > td,
.table-parts > tfoot > tr > th,
.table-parts > thead > tr > td,
.table-parts > thead > tr > th {
	border-top: 1px solid #fff;
}

.table-parts th {
	width: 40px;
	text-align: right;
	background-color: #666;
	color: #fff;
}

.table-fys > tbody > tr > th {
    width: 80px;
}

.table-spec > thead > tr > th {
    text-align: left;
}

.table-spec > tbody > tr > th {
    width: 30%;
    text-align: left;
    white-space: normal;
    background-color: #eee;
}

.table-spec > tbody > tr > td p,
.table-spec > tbody > tr > td ul {
    margin-bottom: 0;
}

.table-spec > tbody > tr > td .lead {
    font-size: 1rem;
}

.table-spec-s > thead > tr > th {
    text-align: left;
}

.table-spec-s > tbody > tr > th {
    width: 30%;
    text-align: left;
    white-space: normal;
    background-color: #eee;
}

.table-spec-s > tbody > tr > td p,
.table-spec-s > tbody > tr > td ul {
    margin-bottom: 0;
}

.table-spec-s > tbody > tr > td .lead {
    font-size: 1rem;
}

.table .bg-tableheader {
    background-color: #eee;
}

.w-5 {width: 5% !important;}
.w-10 {width: 10% !important;}
.w-15 {width: 15% !important;}
.w-20 {width: 20% !important;}
.w-30 {width: 30% !important;}
.w-35 {width: 35% !important;}
.w-40 {width: 40% !important;}
.w-45 {width: 45% !important;}
.w-55 {width: 55% !important;}
.w-60 {width: 60% !important;}
.w-65 {width: 65% !important;}
.w-70 {width: 70% !important;}
.w-80 {width: 80% !important;}
.w-85 {width: 85% !important;}
.w-90 {width: 90% !important;}
.w-95 {width: 95% !important;}

/* page break 
-------------------------------------------------- */
.page-break {
    display: none;
}

/* pager 
-------------------------------------------------- */
nav[aria-label="Page navigation"] {
	padding-left: 56px;
	padding-right: 56px;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
	border: 2px solid #0084b2;
	border-radius: 0;
	width: 3rem;
	height: 3rem;
    background-color: #0084b2;
	color: #fff;
	font-size: 1.5rem;
	text-align: center;
}

.page-item:first-child .page-link:hover, .page-item:last-child .page-link:hover {
	opacity: 1;
	background-color: #fff;
	color: #0084b2;
	transition: all 400ms ease-in-out 0s;
}

/* footer 
-------------------------------------------------- */

/* page_top 
-------------------------------------------------- */
#page_top {
	width: 3rem;
	height: 3rem;
	position: fixed;
	right: 15px;
	bottom: 1rem;
	background-color: #0084b2;
	border: 2px solid #0084b2;
	border-radius: 0;
	opacity: 0.6;
	display: none;
}

#page_top:hover {
    background-color: #fff;
	opacity: 1.0;
	transition: all 400ms ease-in-out 0s;
}

#page_top a {
	position: relative;
	display: block;
	width: 3rem;
	height: 3rem;
	color: #fff;
	text-decoration: none;
}

#page_top a:hover {
    color: #0084b2;
    transition: all 400ms ease-in-out 0s;
}

#page_top a .fas {
	font-size: 1.5rem;
	position: absolute;
	top: 0.75rem;
	left: calc(50% - 10px);
}

/* accordion 
-------------------------------------------------- */
.col-lg-8 .accordion_inner {
	margin: 0.5rem;
}

.col-lg-8 .accordion_title, .col-lg-8 .on {
	border-bottom: 1px solid;
	position: relative;
	padding-right: 1.5rem;
}

.col-lg-8 .accordion_title::after {
	position: absolute;
    display: block;
	right: 0;
	bottom: 0;
    font-family: 'Font Awesome 5 Free';
    margin-left: 1em;
    content: "\f067";
}

.col-lg-8 .on::after {
    content: "\f068";
}

/* toc 
-------------------------------------------------- */
nav form {
    display: none;
}

.toc .nav_home a:hover {
	border-radius: 0;
}

.toc .accordion_title {
	position: relative;
	padding-left: 0.5rem;
	padding-right: 2rem;
	text-indent: 0;
	border-top: 1px solid #212529;
}

.toc .accordion_title::before {
	display: none;
}

.toc .accordion_title::after {
	font-family: "Font Awesome 5 Free";
	content: '\f067';
	font-weight: 900;
	position: absolute;
	right: 0.5rem;
	top: 1rem;
}

.toc .on::after {
	font-family: "Font Awesome 5 Free";
	content: '\f068';
	font-weight: 900;
	position: absolute;
	right: 0.5rem;
	top: 1rem;
}

.toc ul {
	padding-left: 0;
}

.toc li a:hover {
    border-radius: 0;
}

.toc li.active {
	font-weight: bold;
	background: #0084b2;
	border-radius: 0;
}

.toc li.active a {
	text-decoration: none;
}

.toc li.active a:hover {
	background: #0084b2;
}

/* top-page 
-------------------------------------------------- */
.top-page nav .nav_home {
	display: none;
}

.top-page nav .accordion_title {
	padding: 0.5rem;
	border-bottom: 1px solid #212529;
	font-size: 1.25rem;
	font-weight: bold;
	position: relative;
}

.top-page nav .accordion_title::after {
	font-family: "Font Awesome 5 Free";
	content: '\f067';
	font-weight: 900;
	position: absolute;
	right: 0.5rem;
}

.top-page nav .on::after {
	content: '\f068';
	font-weight: 900;
}

.top-page nav .accordion_inner {
	list-style: none;
	padding-left: 2rem;
	margin-bottom: 2rem;
	display: none;
}


.top-page nav .accordion_inner li {
	margin-bottom: 1rem;
	padding-left: 2rem;
	text-indent: -1.675rem;
	list-style: none;
}

.top-page nav .accordion_inner li::before {
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
	font-weight: 900;
	margin-right: .5rem;
}

/* conditional
-------------------------------------------------- */
.print_only {
	display: none;
}

/* accordion
--------------------------------------------------
.accordion_inner {
	display: block !important;
} */

/* edit 
--------------------------------------------------
.dir1 {
	color: red;
}

.dir2 {
	color: rebeccapurple;
}

.dir3 {
	color: orangered;
}

.dir4 {
	color: magenta;
}

.tbd {
	color: darkgreen;
}

.delete {
	text-decoration: line-through;
}

.no-translate {
	color: fuchsia;
}
.om-var {
	color: rgb(50, 150, 50);
}
.om-gui {
	color: coral;
} */
