﻿@charset "UTF-8";
/* ==================== html ==================== */
html {
	font-size: 14pt;
}
* {
	box-sizing: border-box;
	position: relative;
}
a {
	color: rgba(57, 57, 137, 1.00);
	text-decoration: underline;
    cursor:pointer;
}
body {
	font-size: 1.1rem;
	overflow-y: hidden;
}
/* IEの場合は、游ゴシックだと下に空白ができるため調整 */
@media all and (-ms-high-contrast: none) {
    header h1 {
        padding-top: 10px !important;
    }
}
dl, dt, dd, figure, p, ol, ul {
	margin: 0;
	padding: 0;
        line-height: 18px;
}
dt {
	color: rgba(57, 57, 137, 1.00);
	font-weight: bold;
}
dt.align-left {
	float: left;
	margin-right: 10px;
}
h2, h3, h4, h5, h6 {
	color: rgba(57, 57, 137, 1.00);
	margin: 0;
	padding: 0;
}
.orange dt, .orange h2, .orange h3, .orange h4, .orange h5, .orange h6 {
	color: rgba(221, 85, 0, 1.00);
}
hr {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 1.00);
}
img {
	height: auto;
	max-width: 100%;
	width: auto;
}
/* ==================== form（フォーム関連） ==================== */
input {
	font-size: 0.7rem;
	ime-mode: active;
	vertical-align:middle;
	accent-color: Black;
}
input[type="button"], input[type="submit"] {
	border: none;
	border-radius: 50px;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4);
	font-weight: bold;
	padding: 4px 20px;
}
table input[type="button"], table input[type="submit"] {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1.00) 15%, rgba(127, 127, 127, 1.00) 100%);
	border-radius: 3px;
	font-size: 0.7rem;
	font-weight: normal;
 /* リセット */
	margin-top: -6px;
	padding: 0 6px;
}
input[type="button"]:hover, input[type="submit"]:hover {
	cursor: pointer;
}
input[type="button"].red, input[type="submit"].red {
	background: linear-gradient(to bottom, rgba(232, 96, 72, 1.00) 0%, rgba(184, 0, 0, 1.00) 100%);
	background-color: rgba(232, 96, 72, 1.00);
	color: rgba(255, 255, 255, 1.00);
}
input[type="button"].red:hover, input[type="submit"].red:hover {
	background: none;
	background-color: rgba(184, 0, 0, 1.00);
	color: rgba(255, 255, 0, 1.00);
}
input[type="button"].large, input[type="submit"].large {
	font-size: 1.4rem;
	padding: 8px 24px;
}
input[type="button"].small, input[type="submit"].small {
	font-size: 0.8rem;
	padding: 1px 10px;
}
input[type="text"],input[type="password"] {
	border-style: none;
    border-color: inherit;
    border-width: medium;
    -moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 5px;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2) inset, 0 0 0 500px rgb(255, 255, 255) inset;
	display: inline-block;
	margin: 0;
	padding: 5px 10px;
    top: 0px;
    left: 0px;
}
input[type="checkbox"], input[type="radio"] {
	width:			11px;
	height:			25px;
	-moz-transform:		scale(1.4);
	-webkit-transform:	scale(1.4);
	transform:		scale(1.4);
}
input[readonly].:not(:input[type="img"]), textarea[readonly], select:disabled::-ms-value {
	background-color: rgba(211, 211, 211, 1.00) !important;
}
input:read-only..:not(:input[type="img"]), textarea:read-only, select:disabled {
	background-color: rgba(211, 211, 211, 1.00) !important;
}
input[readonly="readonly"].:not(:input[type="img"]), textarea[readonly="readonly"]
{
	background-color: rgba(211, 211, 211, 1.00) !important;
}
input[type="text"]:disabled, input[type="submit"]:disabled, textarea:disabled, select:disabled
{
	background-color: rgba(211, 211, 211, 1.00) !important;
    cursor: default;
}
input[type="submit"]:disabled
{
    color: rgba(255, 255, 255, 1.00);
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url(../Images/icon_select_arrow_01.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	border: none;
	border-radius: 5px;
	box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2);
	display: inline-block;
	margin: 0;
	padding: 8px 32px 8px 8px;
	accent-color: Black;
}
select::-ms-expand {
	display: none;
}

/* 残しておく
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 5px;
	box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2) inset;
	display: inline-block;
    height: 100px;
	ime-mode: active;
	margin: 0;
	overflow: auto;
	padding: 8px 16px;
	width: 100%;
    resize: vertical;    *//* google対応 *//*
}
*/
/* 入力中のフォーカス制御 */
input[type="text"]:focus, input[type="password"]:focus, textarea:focus
{
	background: #ffd2d2;
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2) inset, 0 0 0 1000px rgb(255, 210, 210) inset;
    outline:none;
}
input[type="button"]:focus, input[type="submit"]:focus, select:focus
{
    outline:none;
}
textarea ,a , input{
    outline: none;
}

/*フォーカス制御の後、改めてReadOnlyの制御*/
input[readonly="readonly"], textarea[readonly="readonly"]
{
	box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2) inset, 0 0 0 1000px rgba(211, 211, 211, 1.00) inset !important;
    cursor: default;
}
input[type="text"]:disabled, input[type="submit"]:disabled, textarea:disabled, select:disabled
{
	box-shadow: 0 0 0 1000px rgba(211, 211, 211, 1.00) inset;
    cursor: default;
}

/* ==================== table（テーブル） ==================== */
table {
	border: none;
	border-spacing: 0;
	border-collapse: collapse;
}
table table {
	height: 100%;
}
table th, table td {
	border: 2px solid rgba(90, 90, 90, 1.00);
	margin: 0;
	padding: 1px;
	position: static; /* IEボーダー消失バグ回避用 */
	vertical-align: middle;
}
table th {
	font-size: 0.65rem;
	text-align: center;
	white-space: nowrap;    
}
table td {
/*    overflow-wrap: anywhere;*//* テーブルがページ外に広がってしまうバグを回避 */ 
    white-space:nowrap;
}
table table th, table table td {
	background-color: rgba(255, 255, 255, 1.00);
	border: none; /* リセット */
	border-bottom: 1px solid rgba(153, 153, 153, 1.00);
}
table.pd-5-10 th, table.pd-5-10 td {
	padding: 5px 10px;
}
table input[type="text"], table select, table textarea {
	border-radius: 0; /* リセット */
	display: block;
	height: 100%;
	width: 100%;
}

table input[type="checkbox"] {
	display: inline; /* リセット */
}
table input[type="radio"], table input[type="checkbox"] {
	display: inline; /* リセット */
}
table tr.h-100 > td {
	height: 100px;
}
table tr.h-200 > td {
	height: 200px;
}
table tr.h-300 > td {
	height: 400px;
}
table tr.h-400 > td {
	height: 400px;
}
table tr.h-500 > td {
	height: 500px;
}
table .w-5 {
	width: 5%;
}
table .w-6 {
	width: 6%;
}
table .w-7 {
	width: 7%;
}
table .w-8 {
	width: 8%;
}
table .w-9 {
	width: 9%;
}
table .w-10 {
	width: 10%;
}
table .w-11 {
	width: 11%;
}
table .w-12 {
	width: 12%;
}
table .w-13 {
	width: 13%;
}
table .w-14 {
	width: 14%;
}
table .w-15 {
	width: 15%;
}
table .w-16 {
	width: 16%;
}
table .w-17 {
	width: 17%;
}
table .w-18 {
	width: 18%;
}
table .w-19 {
	width: 19%;
}
table .w-20 {
	width: 20%;
}
table .w-21 {
	width: 21%;
}
table .w-22 {
	width: 22%;
}
table .w-23 {
	width: 23%;
}
table .w-24 {
	width: 24%;
}
table .w-25 {
	width: 25%;
}
table .w-26 {
	width: 26%;
}
table .w-27 {
	width: 27%;
}
table .w-28 {
	width: 28%;
}
table .w-29 {
	width: 29%;
}
table .w-30 {
	width: 30%;
}
table .w-40 {
	width: 40%;
}
table .w-50 {
	width: 50%;
}
table .w-60 {
	width: 60%;
}
table .w-70 {
	width: 70%;
}
table.blue th {
	background-color: rgba(57, 57, 137, 1.00);
	color: rgba(255, 255, 255, 1.00);
	padding: 5px 10px;
}
table.orange th {
	background-color: rgba(221, 85, 0, 1.00);
	color: rgba(255, 255, 255, 1.00);
	padding: 5px 10px;
}
table.blue th a {
	color: rgba(255, 255, 255, 1.00);
}
table.orange th a {
	color: rgba(255, 255, 255, 1.00);
}
table.blue td, table.orange td {
	background-color: rgba(255, 255, 255, 1.00);
}
table.level td {
	padding: 5px 10px;
}
table.tMidashi {
    table-layout: fixed;
    width: 100%;
}
table.tMidashi-center {
    table-layout: fixed;
    margin: auto;
}


/* Tableの中のTable設定 */ 
.subtbl-border-top {
    border-top: 1px solid rgba(153, 153, 153, 1.00);
}
.subtbl-border-left {
    border-left: 1px solid rgba(153, 153, 153, 1.00);
}
.subtbl-border-right {
    border-right: 1px solid rgba(153, 153, 153, 1.00);
}
.subtbl-border-bottom {
    border-bottom: 1px solid rgba(153, 153, 153, 1.00);
}
.subtbl-padding {
    padding:8px 16px;
}


tr.tHeader {
    background-color: #8FBC8F;
}
tr.tMeisai{
    font-size: 0.7rem;
    height: 24.5px;
}
tr.tHeaderINI {
    height: 32px;
    font-size: 0.7rem;
}
tr.tMeisaiINI {
    height: 40px;
}
.tMidashi{
    border: none;
    font-size: 0.83rem;
}

.tMidashi .Torihikisaki{
    width: 19%;
}

.tMidashi .Icon{
    width: 6%;
}
/* ==================== ロゴ ============================ */
.btnIcon{
    height: 35px;
    width: 35px;
}
/* ==================== text（文字） ==================== */
.text-center {
	text-align: center !important;
}
.text-center-block{
    display:block;
    text-align: center;
}
.text-left {
	text-align: left !important;
}
.text-right {
	text-align: right !important;
}
.text-top{
    vertical-align: top !important;
}
.text-bottom{
    vertical-align: bottom !important;
}
.text-large {
	font-size: 1.2rem !important;
}
.text-large-2 {
	font-size: 1.5rem !important;
}
.text-large-3 {
	font-size: 1.8rem !important;
}
.text-large-4 {
	font-size: 1.3rem !important;
}
.text-small {
	font-size: 0.9rem !important;
}
.text-small-2{
    font-size: 0.85rem !important;
}
.text-small-3{
    font-size: 0.95rem !important;
}
h2.text-small {
	font-size: 1.0rem !important;
}
.text-bold {
	font-weight: bold !important;
}
.text-blue {
	color: rgba(57, 57, 137, 1.00) !important;
}
.text-orange {
	color: rgba(221, 85, 0, 1.00) !important;
}
.text-red {
	color: rgba(204, 0, 0, 1.00) !important;
}
.text-gray {
	color: rgba(137, 137, 137, 1.00) !important;
}
.text-scroll {
	background-color: rgba(243, 243, 243, 1.00);
	font-size: 0.9rem;
	line-height: 1.5em;
	max-height: 100px;
	min-height: 100px;
	overflow: auto;
	padding: 15px;
}
.text-nowrap {
	white-space: nowrap;
}
td .text-scroll {
	height: 100%;
	max-height: 100%; /* リセット */
}
.text-vertical span {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl; /* 縦書きをする際は子要素もコンテナで囲む必要があります */
}
.text-w-50{
    width:50%;
}
.text-w-30{
    width:30%;
}
.text-w-25{
    width:25%;
}
.text-w-20{
    width:20%;
}
.text-w-15{
    width:15%;
}
.text-w-10{
    width:10%;
}
.text-w-5{
    width:5%;
}

/* ==================== margin（マージン） ==================== */
.mlr-auto {
	margin-left: auto;
	margin-right: auto;
}
.ml-0 {
	margin-left: 0 !important;
}
.ml-5 {
	margin-left: 5px !important;
}
.ml-10 {
	margin-left: 10px !important;
}
.ml-15 {
	margin-left: 15px !important;
}
.ml-30 {
	margin-left: 30px !important;
}
.ml-45 {
	margin-left: 45px !important;
}
.ml-60 {
	margin-left: 60px !important;
}
.ml-75 {
	margin-left: 75px !important;
}
.ml-90 {
	margin-left: 90px !important;
}
.ml-100 {
	margin-left: 100px !important;
}
.ml-110 {
	margin-left: 110px !important;
}
.ml-120 {
	margin-left: 120px !important;
}
.ml-130 {
	margin-left: 130px !important;
}
.ml-140 {
	margin-left: 140px !important;
}
.ml-150 {
	margin-left: 150px !important;
}
.ml-160 {
	margin-left: 160px !important;
}
.ml-170 {
	margin-left: 170px !important;
}
.ml-5percent{
    margin-left: 5% !important;
}
.ml-10percent{
    margin-left: 10% !important;
}
.ml-15percent{
    margin-left: 15% !important;
}
.ml-20percent{
    margin-left: 20% !important;
}
.ml-25percent{
    margin-left: 25% !important;
}
.mr-0 {
	margin-right: 0 !important;
}
.mr-5 {
	margin-right: 5px !important;
}
.mr-10 {
	margin-right: 10px !important;
}
.mr-15 {
	margin-right: 15px !important;
}
.mr-30 {
	margin-right: 30px !important;
}
.mr-45 {
	margin-right: 45px !important;
}
.mr-60 {
	margin-right: 60px !important;
}
.mr-75 {
	margin-right: 75px !important;
}
.mr-90 {
	margin-right: 90px !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mb-5 {
	margin-bottom: 5px !important;
}
.mb-10 {
	margin-bottom: 10px !important;
}
.mb-15 {
	margin-bottom: 15px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}
.mb-45 {
	margin-bottom: 45px !important;
}
.mb-60 {
	margin-bottom: 60px !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mt-5 {
	margin-top: 5px !important;
}
.mt-10 {
	margin-top: 10px !important;
}
.mt-15 {
	margin-top: 15px !important;
}
.mt-30 {
	margin-top: 30px !important;
}
.mt-45 {
	margin-top: 45px !important;
}
.mt-60 {
	margin-top: 60px !important;
}
/* ==================== padding（パディング） ==================== */
.pl-0 {
	padding-left: 0 !important;
}
.pl-5 {
	padding-left: 5px !important;
}
.pl-10 {
	padding-left: 10px !important;
}
.pl-15 {
	padding-left: 15px !important;
}
.pl-30 {
	padding-left: 30px !important;
}
.pl-45 {
	padding-left: 45px !important;
}
.pl-60 {
	padding-left: 60px !important;
}
.pr-0 {
	padding-right: 0 !important;
}
.pr-5 {
	padding-right: 5px !important;
}
.pr-10 {
	padding-right: 10px !important;
}
.pr-15 {
	padding-right: 15px !important;
}
.pr-30 {
	padding-right: 30px !important;
}
.pr-45 {
	padding-right: 45px !important;
}
.pr-60 {
	padding-right: 60px !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.pb-5 {
	padding-bottom: 5px !important;
}
.pb-10 {
	padding-bottom: 10px !important;
}
.pb-15 {
	padding-bottom: 15px !important;
}
.pb-30 {
	padding-bottom: 30px !important;
}
.pb-45 {
	padding-bottom: 45px !important;
}
.pb-60 {
	padding-bottom: 60px !important;
}
.pt-0 {
	padding-top: 0 !important;
}
.pt-5 {
	padding-top: 5px !important;
}
.pt-10 {
	padding-top: 10px !important;
}
.pt-15 {
	padding-top: 15px !important;
}
.pt-30 {
	padding-top: 30px !important;
}
.pt-45 {
	padding-top: 45px !important;
}
.pt-60 {
	padding-top: 60px !important;
}
/* ==================== cssでのスペースの設定 ========================= */
.space-10{
    margin-left: 10px;
}
.space-25{
    margin-left: 25px;
}
/* ==================== header（ヘッダー共通設定） ==================== */
header {
    width: 100vw;
}
header .blue, header .gray {
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
/* ==================== main（メイン共通設定） ==================== */
main * {
	line-height: 1.5em;
}
main > * {
	padding: 10px 0 10px;
}
main > * > * {
	margin: 1px 1px 1px 1px;
	max-width: 100%;
}
main .width-expand-wrapper
{
    min-width: 1600px;
    width: 100%; 
}
main .width-expand-inner
{
	max-width: 95%;
    width: 100%; 
	margin: 0 auto 30px;
}
main .margin-8
{
    margin: 8px;
}
main .sidemargin8
{
    margin: 0px 8px 0px 8px;
}
main .padding-top20{
    padding: 0px;
}
main .padding0{
    padding: 0px;
}
/* ============ Z000V_00010 お取り引き状況情報ページ ============ */
.txtGenZan{
    width:18.5%;
}
/* ==================== Z000V_00010 ヘッダ部 ==================== */
#btnLogo{
    height:27px;
}
/* ==================== Z000V_00010 明細部 ==================== */
#ToriName, #DownLoadExp {
  border: none;
  font-size: 0.85rem;
  border: none;
}

#ToriName {
  font-weight: bold;
}

.list-search{
    overflow: auto;
    width: 100%;
}

#IniLogo{
    height: 150px;
    width: 300px;
}
/* ==================== sidebar（サイドバー） ==================== */
.sidebar {
	height: auto;
	position: fixed;
	right: 0;
	top :200px;
	width: 40px;
	z-index: 2;
}
.sidebar a {
	background-color: rgba(57, 57, 137, 1.00);
	border-radius: 10px 0 0 10px;
	box-shadow: -2px 2px 8px 0 rgba(0, 0, 0, 0.4);
	color: rgba(255,255,255,1.00);
	display: inline-block;
	font-weight: bold;
	font-size: 1.0rem;
	padding: 20px 10px;
	text-decoration: none;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl; /* 縦書きをする際は子要素もコンテナで囲む必要があります */
}
.sidebar a:hover {
	background-color: rgba(0, 0, 87, 1.00);
	color: rgba(255,255,0,1.00);
}
.sidebar img {
	margin-bottom: 10px;
	width: 22px;
}
/* ==================== scroll-down（下へ） ==================== */
.scroll-down, .scroll-up {
	bottom: 10px;
	right: 10px;
	position: fixed;
}
.scroll-down img, .scroll-up img {
	width: 40px;
}
/* ==================== .container（コンテナ・カラム共通設定） ==================== */
body.bg, main > .bg {
}

body.cyan, main > .cyan {
	background-color: rgba(221, 238, 246, 1.00);
}
body.orange, main > .orange {
	background-color: rgba(249, 233, 214, 1.00);
}
body.white, main > .white {
	background-color: rgba(255, 255, 255, 1.00);
}
.container {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.container.align-left {
	-ms-flex-pack: start; /* リセット */
	justify-content: flex-start; /* リセット */
}
.container.align-left > * {
	margin-right: 1%;
}
.container.align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.container.nowrap {
	-ms-flex-wrap: nowrap; /* リセット */
	flex-wrap: nowrap; /* リセット */
}
.container > * {
	-ms-flex-positive: 0;
	flex-grow: 0;
	margin-bottom: 1%;
}
.container.row-2 > * {
	width: 49%;
}
.container.row-3 > * {
	width: 32%;
}
.container.row-4 > * {
	width: 24%;
}
.container.row-5 > * {
	width: 19%;
}
.container.row-6 > * {
	width: 15%;
}
.container.row-2.align-left > *:nth-child(even), .container.row-3.align-left > *:nth-child(3n), .container.row-4.align-left > *:nth-child(4n), .container.row-5.align-left > *:nth-child(5n), .container.row-6.align-left > *:nth-child(6n) {
	margin-right: 0;
}
.container.row-1 > * {
	width: 100%;
}
.container.row-1-2-2 > *, .container.row-2-2-1 > * {
	width: 39%;
}
.container.row-1-2-2 > *:first-child, .container.row-2-2-1 > *:last-child {
	width: 19%;
}
.container.row-1-1-2-2 > *, .container.row-2-2-1-1 > * {
	width: 33%;
}
.container.row-1-1-2-2 > *:nth-child(-n+2), .container.row-2-2-1-1 > *:nth-last-child(-n+2) {
	width: 15%;
}
.container.row-1-2 > *, .container.row-2-1 > * {
	width: 66%;
}
.container.row-1-2 > *:first-child, .container.row-2-1 > *:last-child {
	width: 32%;
}
.container.row-2-3 > *, .container.row-3-2 > * {
	width: 60%;
}
.container.row-2-3 > *:first-child, .container.row-3-2 > *:last-child {
	width: 38%;
}
.container.row-1-4 > *, .container.row-4-1 > * {
	width: 80%;
}
.container.row-1-4 > *:first-child, .container.row-4-1 > *:last-child {
	width: 19%;
}
.container.row-1-9 > *, .container.row-9-1 > * {
	width: 90%;
}
.container.row-1-9 > *:first-child, .container.row-9-1 > *:last-child {
	width: 9%;
}
.style_display_block{
    display:block;
}
/* ==================== .error（エラー表記） ==================== */
main .error {
	background-color: rgba(255,221,221,1.00);
	padding-top: 70px;
    margin-bottom: 0; /* リセット */
}
main .error p {
	color: rgba(221,0,0,1.00);
	font-weight: bold;
	margin-bottom: 0; /* リセット */
}
main .noerror {
    text-align: center;
}
#lblSystemMsg
{
	text-align: center !important;
	font-weight: bold;
}
.lblErrorMSG, .lblSetumei, .ComHeader1_lblErrorMSG
{
	color: red;
	background-color: rgba(255,221,221,1.00);
	width: 600px;
	display: inline-block;
	text-align: left;
	padding: 0px;
	padding-left: 4px;
	font-size: 24px;
    font-weight: bold;
}
#btnReturn
{
    font-size: 20px;
}
#pMessage
{
    overflow-y: auto;
    max-height:300px;
}
/* ==================== #bottom ==================== */
#bottom {
	height: 0;
	opacity: 0.0;
}
/* ==================== ime制御 ==================== */
.ime_mode_active
{
	ime-mode:active;
}
.ime_mode_inactive
{
	ime-mode:inactive;
}
iframe {
    border: 3px gray solid;
}

