@charset "utf-8";

/* **************************************************

Name: add_style.css

Description: Add Style for Web Design

Create: 2024.12.19
Update: 2025.1.6

Copyright 2025 Hitachi, Ltd.


***************************************************** */

/* content===========================================

[-] for all
===================================================== */
input,textarea,select {font-family: Arial,Helvetica,sans-serif;}

/* for Global Navi
=========================================================================================== */
#GlobalNaviMenu > li > a.GN_as-option:hover {background-color: #cc9999 !important;}
#GlobalNaviMenu > li > a.GN_under-construction:link, #GlobalNaviMenu > li > a.GN_under-construction:visited {color: #999 !important;}
#GlobalNaviMenu > li > a.GN_as-option:visited {
  color: #999 !important; 
}

#SpGlobalNavi a.GN_as-option:hover,
#SpGlobalNavi a.GN_as-option:focus {
background-color: #cc9999 !important;
}
#SpGlobalNavi a.GN_as-option {
color: #999 !important;
}
#SpGlobalNavi a.GN_under-construction {
color: #999 !important;
}
#SpGlobalNavi a.GN_under-construction:hover,
#SpGlobalNavi a.GN_under-construction:focus {
background-color: #999 !important;color: #fff !important;
}

/* for Title
=========================================================================================== */
h2.Comp,
p.Comp {
margin: 0 0 10px;
font-size: 130%;
font-weight: bold;
color: #333;
line-height: 160%;
background: none;
padding: 0;
}
h1.Info,
h2.Info,
p.Info {
margin: 0 0 20px;
padding: 0 0 5px;
line-height: 1.3;
color: #333;
background: none;
font-size: 160%;
font-weight: bold;
border-bottom: 1px #a7a7a7 solid;
}

ul.atListStyle01 li {
background: url("/common/images/ic_arrow_gray.png") no-repeat;
background-size: 22px 22px;
padding-left: 26px;
text-decoration: none;
background-position: left center;
display: flex;
align-items: center;
}
ul.atListStyle01 li a:hover {
text-decoration: underline;
}
ul.atListStyle01 li.atTxt a {
background-image: url("/common/images/ic_txt.png");
background-repeat: no-repeat;
}
ul.atListStyle01 li.atPdf a {
background-image: url("/common/images/ic_pdf.png");
background-repeat: no-repeat;
}
ul.atListStyle01 li.atXls a {
background-image: url("/common/images/ic_excel.png");
background-repeat: no-repeat;
}
ul.atListStyle01 li.atPpt a {
background-image: url("/common/images/ic_ppt.png");
background-repeat: no-repeat;
}
ul.atListStyle01 li.atWd a {
background-image: url("/common/images/ic_word.png");
background-repeat: no-repeat;
}
ul.atListStyle01 li.atImg a {
background-image: url("/common/images/ic_img.png");
background-repeat: no-repeat;
}
ul.atListStyle01 li.atZip a {
background-image: url("/common/images/ic_zip.png");
background-repeat: no-repeat;
}
ul.atListStyle01 li.atFile a {
background-image: url("/common/images/ic_file.png");
background-repeat: no-repeat;
}
ul.atListStyle01 li a {
display: block;
background-size: 22px 22px;
padding-left: 30px;
font-size: 80%;
text-decoration: none;
background-position: left center;
color: #4bacc6;
}

.delete_mk {
width: 25px;
height: 15px;
display: inline-block;
background-image:url("/common/images/ic_close.png");
background-size: 15px;
background-position: 0 50%;
background-repeat: no-repeat;
margin-left: 5px;
}


/* for table
=========================================================================================== */
.CompBoxPatternD {
  clear: both;
  margin: 0 0 15px;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #333;
}
.CompBoxPatternD::after {
  content: "";
  display: block;
  clear: both;
}

.CompTable01 th,
.CompTable01 td {
border: 1px solid #fff;
text-align: center;
}
.CompTable01 th {
background-color: #c8d4e3;
}
.CompTable01 td {
background-color: #ebf0f8;
}

.SortTable01 th {
border: solid 1px #fff;
color: #333;
font-weight: bold;
background-color: #fff;
border-bottom: 2px solid #ddd;
vertical-align: bottom;
font-size: 100%;
}
.SortTable01 td {
border:none;
border-bottom: solid 1px #ddd;
white-space: nowrap;
}
.SortTable01 td.bd01 {
padding: 0;
width: 2em;
}
th.Deg90 {
height: 7.0em;
vertical-align: bottom;
padding: 0;
width: 3%;
}
.Deg90 span {
display: inline-block;
transform: rotate(-90deg);
white-space: nowrap;
transform-origin: 5px 5px;
width: 2em;
height: 20px;
padding: 0;
font-size: 80%;
}
.SortTable01 {
border-collapse:separate;
}
.SortTable01 thead {
position: sticky;
top: 0;
}

/* for button
=========================================================================================== */
a.SimpleBtn01 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: min(100%, 50px); /* 2025-11-11(日立イプ)永川:ボタン幅修正 */
  padding: 5px 8px; /* 2025-11-11(日立イプ)永川:余白修正 */
  font-weight: bold;
  color: #444; /* 2025-11-11(日立イプ)永川:文字色修正 */
  background-color: #fff;
  border: 1px solid #555; /* 2025-11-11(日立イプ)永川:ボタン輪郭色修正 */
  font-size: 12px; /* 2025-11-11(日立イプ)永川:文字大きさ追加 */
  transition-duration: var(--transition-fast);
  transition-property: background-color, color, border-color;
  text-decoration: none;
  border-radius: 5px; /* 2025-11-11(日立イプ)永川:ボタンR追加 */
}
.SimpleBtn01::before {
  content: "";
}
@media (hover: hover) {
  .SimpleBtn01:where(:any-link, :enabled, summary):hover {
    color: #fff;
    background-color: #b1000e;
    border-color: #b1000e;
    text-decoration: none;
  }
}



div.CustomerContaner {
overflow-x: auto;
}

table.CustomerTable .SimpleBtn01 {
  min-width: min(100%, 80px);
}
table.CustomerTable tr td:nth-child(1) {
min-width:300px;
}
table.CustomerTable tr td:nth-child(2) {
width:20em;
}
table.CustomerTable tr td:nth-child(3) {
width:150px;
white-space: nowrap;
box-sizing: border-box;
}
table.CustomerTable tr td:nth-child(3) > p {
width: 120px;
}

ul.CompButtonStyle01 {
display: flex;
flex-direction: column;
min-width: 200px;
}
ul.CompButtonStyle01 li input,
ul.CompButtonStyle01 li a{
}
ul.CompButtonStyle01 li {
margin-bottom: 50px;
}

.CentContainer ul.CompButtonStyle01 {
min-width: 300px;
}

.file-button {
  border: 2px red dotted;
  padding: 100px 100px;
  position: relative;
width: fit-content;
}

.file-button::file-selector-button {
  position: absolute;
  top: 50%;
  font-weight: bold;
  color: white;
  background: red;
  font-size: 14px;
  border: 0;
  border-radius: 10em;
  padding: 8px 16px;
  text-align: center;
}
/* for Form
=========================================================================================== */
.FormContainer01 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.FormBox01 {
width: 300px;
}
.FormBox01 span.Label01 {
display: block;
line-height: 1.35;
text-align: left;
margin-bottom: 3px;
font-size: 90%;
}
.FormBox01 input.TextFrame01 {
box-sizing: border-box;
  display: block;
  ime-mode: active;
  border:2px solid #666;
  width: 100%;
  margin-bottom: 20px;
  padding: 6px 12px;
  height: calc(24px + 12px + 2px);
  font-size: 90%;
  color: #333;
}
input.CompBtn01,
input.CompBtn02,
input.CompBtn03,
label.CompBtn01,
a.CompBtn01{
color: #fff;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
line-height: 160%;
font-size: 110%;
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
padding: 9px 15px;
background-color: #c00;
min-width: 180px;
min-height: 18px;
display: inline-block;
text-align: center;
box-sizing: border-box;
border: 0;
cursor:pointer;
font-family: Arial,Helvetica,sans-serif;
}
input.CompBtn02 {
background-color: #999;
}
input.CompBtn03 {
background-color: #666;
}
input.CompBtn01:hover,
label.CompBtn01:hover,
a.CompBtn01:hover{
background-color: #b1000e;
}
input.CompBtn02:hover {
background-color: #bbb;
}
input.CompBtn03:hover {
background-color: #bbb;
}

select.CompSelect {
padding: 4px 4px 4px 8px;
border: solid 1px #ddd;
margin: 0;
min-width: 300px;
font-size: 90%;
background-color: #fff;
height: 30px;
}
.selectBox01 {
width: 300px;
}

th.downArr01 {
cursor: pointer;

}
th.downArr01 span {
display: inline-block;
position: relative;
}
@media screen and (max-width: 579px) {
  th.downArr01 {
  padding-right: 20px !important;
  }
}
th.downArr01 span::before,
th.downArr01 span::after{
content: "";
width: 10.5px;
position: absolute;
/*border: 5px solid transparent;*/
right: -15px;
top: 45%;
aspect-ratio: 1/cos(30deg);
--b:2px; /* control the border thickness */
background: #333;
}
th.downArr01.enArr span::before,
th.downArr01.enArr span::after{
 top: 83%;
}

th.downArr01 span::before {
margin-top: -10px;
}
th.downArr01 span::after{
margin-top: 2px;
}

/*上向き＋下向きともに白塗り */
th.downArr01.onUD span::before {
clip-path: polygon(50% 0,100% 100%,0 100%);
}
th.downArr01.onUD span::after {
clip-path: polygon(50% 100%,100% 0,0 0);
}

/*上向き＋下向きともに白抜き */
th.downArr01.offUD span::before {
  clip-path: polygon(50% 0,100% 100%,0 100%,50% 0,50% var(--b),calc(var(--b)*cos(30deg)) calc(100% - var(--b)/2),calc(100% - var(--b)*cos(30deg)) calc(100% - var(--b)/2),50% var(--b));
}
th.downArr01.offUD span::after {
  clip-path: polygon(50% 100%,100% 0,0 0,50% 100%,50% calc(100% - var(--b)),calc(var(--b)*cos(30deg)) calc(var(--b)/2),calc(100% - var(--b)*cos(30deg)) calc(var(--b)/2),50% calc(100% - var(--b)));
}
    
  /*上向きのみ白塗り */
th.downArr01.onUoffD span::before {
clip-path: polygon(50% 0,100% 100%,0 100%);
}
th.downArr01.onUoffD span::after {
  clip-path: polygon(50% 100%,100% 0,0 0,50% 100%,50% calc(100% - var(--b)),calc(var(--b)*cos(30deg)) calc(var(--b)/2),calc(100% - var(--b)*cos(30deg)) calc(var(--b)/2),50% calc(100% - var(--b)));
}
/*下向きのみ白塗り */
th.downArr01.offUonD span::before {
  clip-path: polygon(50% 0,100% 100%,0 100%,50% 0,50% var(--b),calc(var(--b)*cos(30deg)) calc(100% - var(--b)/2),calc(100% - var(--b)*cos(30deg)) calc(100% - var(--b)/2),50% var(--b));
}
th.downArr01.offUonD span::after {
  clip-path: polygon(50% 100%,100% 0,0 0);
}

/* チェックボックス*/
.CheckBoxGroup label {
font-weight: bold;
}

/* 検索*/
div.CompSerchBox {
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
column-gap: 10px;
}
.CompSerchText {
font-size: 90%;
min-width: 400px;
border: 2px solid #ccc;
-webkit-appearance: none;
border-radius: 5px;
box-sizing: border-box;

height: calc(24px + 12px + 2px);
padding: 6px 12px;
}
.SerchBtn01 {
min-width: 90px;
color: #fff;
text-decoration: none;
border-radius: 5px;
line-height: 1.5;
font-size: 90%;
/*box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);*/
padding: 8px 15px;
background-color: #c00;
min-height: 18px;
display: inline-block;
text-align: center;
box-sizing: border-box;
border: 0;
cursor:pointer;
font-family: Arial,Helvetica,sans-serif;
}
.SerchBtn01:hover{
background-color: #b1000e;
}

.CompSerchText {
box-sizing: border-box;
}
.CompSerchText:focus {
outline-style: none;
}
.CompSerchText::-webkit-search-decoration {
display: none;
}
@media screen and (max-width: 767px) {
  .CompSerchText {
  min-width: auto;
  width: 100%;
  }
}

.UpdateBox {
padding: 30px 0;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
max-width: 1200px;
width: 100%;
}
.UpdateBox-select {
display: flex;
align-items:center;
flex-wrap: wrap;
gap: 15px 15px;
}
select.UpdateSelect01,
select.UpdateSelect02 {
padding: 4px 4px 4px 8px;
border: solid 1px #ddd;
margin: 0 5px 0px 0;
min-width: 4em;
font-size: 90%;
color: #333;
height: 30px;
background-color: #fff;
}
select.ItemSelect01 {
padding: 4px 4px 4px 8px;
border: solid 1px #ddd;
/*margin: 0 10px 10px 0;*/
min-width: 10em;
font-size: 90%;
color: #666;
height: 30px;
}
select.CategorySelect01 {
padding: 4px 4px 4px 8px;
border: solid 1px #ddd;
/*margin: 0 10px 10px 0;*/
min-width: 10em;
font-size: 90%;
color: #666;
height: 30px;
}

.UpdateForm {
display: flex;
flex-wrap: wrap;
row-gap: 20px;
align-items: flex-end;
width: 100%;
justify-content: space-between;
}
.UpdateForm .ItemNo input {
width: 10em;
}
.UpdateForm span {font-size: 100%;font-weight: bold;}

.UpdateForm span.LabelTop {display: block;}

.UpdateForm div.UpdateText01 input {
border-radius: 5px;
border: 2px solid #ccc;
color: #333;
font-size: 90%;
max-width: 250px;
height: calc(24px + 12px + 2px);
padding: 6px 12px;
margin-right: 20px;
-webkit-appearance: none;
line-height: 1.5;
display: block;
box-sizing: border-box;
}
.UpdateForm div.UpdateText01 > label {
display: block;
}
.UpdateForm .CompSelect {
min-width: 200px;
}

/* ファイル選択 */
.SelectFileGroup01 div {
margin-bottom: 20px;
}
.SelectFileGroup01 label > input{
display:none; /* アップロードボタンのスタイルを無効にする */
}
.SelectFileGroup01 input#fake_text_box {
font-size: 90%;
height: calc(24px + 12px + 2px);
  padding: 6px 12px;
border-radius: 5px;
border: 2px solid #ccc;
color: #333;
width: 100%;
box-sizing: border-box;
}

/* for Pagination
=========================================================================================== */
.Pagination {
display: flex;
align-items: center;
font-size: 90%;
justify-content: center;
}
.Pagination li span,
.Pagination li a {
text-decoration: none;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
width: 30px;
height: 30px;
background: #eee;
color: #999;
font-weight: bold;
transition: all 0.15s linear;
font-size: 68%;
}
.Pagination li span.PageNo {
width: auto;
background: none;
font-size: 90%;
font-weight: normal;
color: #333;
}
.Pagination a.isActive {
background: #ccc;
color: #333;
}
.Pagination a.isActive:hover {
background-color: #999;
}
.Pagination > * + * {
  margin-left: 12px;
}

/* for Top
=========================================================================================== */
ul.Btn3List * {
box-sizing: border-box;
}
ul.Btn3List {
margin-top: 30px;
display: flex;
list-style: none;
flex-wrap: wrap;
margin-left: -10px;
/*align-items: center;*/
justify-content: center;
margin-bottom: 50px;
}
ul.Btn3List li {
width: calc(33.333333% - 10px);
margin: 0 0 10px 10px;
padding: 5px;
display: flex;
  align-items: stretch;
}
ul.Btn3List li a {
width: 100%;
color: #fff;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
min-height: 54px;
line-height: 160%;
font-size: 100%;
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
display: flex;
text-align: left;
}
ul.Btn3List li a span {
padding: 12px 10px 10px 52px;
display: flex;
align-items: center;
}
ul.Btn3List li.remote a {
background: url("/common/images/ic_remote.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li.ai a {
background: url("/common/images/ic_ai.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li.document a {
background: url("/common/images/ic_document.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li.event a {
background: url("/common/images/ic_event.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li.communication a {
background: url("/common/images/ic_communication.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li.technical a {
background: url("/common/images/ic_technical.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li.spare a {
background: url("/common/images/ic_spare.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li.items a {
background: url("/common/images/ic_items.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li.solution a {
background: url("/common/images/ic_solution.png") no-repeat 10px center/30px #c00;
}
ul.Btn3List li a,
ul.Btn3List li a:lilnk,
ul.Btn3List li a:visited{
background-color: #c00;
}
ul.Btn3List li a:hover,
ul.Btn3List li a:active {
background-color: #b1000e;
}
.under-construction {
background-color: #999 !important;
cursor: not-allowed !important;
}
.as-option {
background-color: #cc9999 !important;
cursor: not-allowed !important;
}
ul.Btn3List li a {
position: relative;
}
ul.Btn3List li a .disabled {
position: absolute;
top: 0;
left: 0;
width: 100%;
display: block;
height: 100%;
text-align: right;
font-weight: normal;
font-size: 68%;
padding: 1px 10px;
}
@media screen and (max-width: 994px){
  ul.Btn3List li {
  width: calc((50% - 10px));
  }
}
@media screen and (max-width: 579px){
  ul.Btn3List li {
  width: 100%;
  }
}
.BoxPatternNot.CommInfo {
padding: 0;
margin-bottom: 20px;
box-sizing: border-box;
}
.CommInfo div{
height: 200px;
overflow-y: scroll;
}
.BoxPatternNot.CommInfo > p{
background-color: #c00;
color: #fff;
text-align: center;
display: block;
font-weight: normal;
font-size: 130%;
padding: 5px;
}
.CommInfo table {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
margin-bottom: 0;

border-collapse: separate;
}
.BoxPatternNot.CommInfo table th {
border-bottom: 2px #ddd solid;
font-size: 100%;
font-weight: bold;
}
.BoxPatternNot.CommInfo table th.btLine {
border-top: 2px #ddd solid;
}
.BoxPatternNot.CommInfo table thead {
  position: sticky;
  top: 0;
  z-index: 99999;
}
.CommInfo table.TOP_Info tr td:nth-child(1) {
 width:9em;
 white-space: nowrap;
}
.CommInfo table.TOP_Info tr td:nth-child(2) {
min-width: 15em;
}
.CommInfo table.TOP_Info tr td:nth-child(3) {
 white-space: nowrap;
}
.CommInfo table.TOP_Info tr td:nth-child(4) {
 white-space: nowrap;
}
.CommInfo table.TOP_Info tr td:nth-child(5) {
 white-space: nowrap;
}
.CommInfo table th,
.CommInfo table td {
background-color: #fff;
border: 0;
text-decoration: none;
border-bottom: 1px solid #ddd;
vertical-align: middle;
font-size: 90%;
}
.CommInfo table th a{
text-decoration: none;
}
.CommInfo table td img{
margin-left: 5px;
vertical-align: middle;
}
span.InfoCat {
background-color: #ef7b46;
color: #fff;
padding: 3px 5px 1px;
border-radius: 3px;
display: inline-block;
text-align: center;
font-size: 80%;
line-height: 160%;
width: 138px;
box-sizing: border-box;
}
span.InfoCat02 {
color: #fff;
padding: 3px 5px 1px;
border-radius: 3px;
display: inline-block;
text-align: center;
font-size: 80%;
line-height: 160%;
width: 14em;
box-sizing: border-box;
}
span.InfoCat02.col01 {background-color: #5eb146;}
span.InfoCat02.col02 {background-color: #ab489e;}
span.InfoCat02.col03 {background-color: #34a8df;}
span.InfoCat02.col04 {background-color: #ebbc02;}
.ComCatGroup span.InfoCat,
.ComCatGroup span.InfoCat02 {
width: auto;
margin-right: 5px;
max-width: 100%;
box-sizing: border-box;
font-size: 70%;
}
.ComCatGroup span.InfoCat {width: 138px;}
.ComCatGroup span.InfoCat02 {padding-right: 10px;padding-left: 10px;}

.BtnTd01 a {
background-color: #c00;
color: #fff;
padding: 5px 10px;
border-radius: 3px;
display: inline-block;
text-align: center;
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
text-decoration: none;
}
.BtnTd01 a:hover {
background-color: #b1000e;
}

.CommInfo img {
margin-right: 5px;
}
.CommInfo table th,
.CommInfo table td {
padding: 5px 15px;
}

/* for DateList
=========================================================================================== */
div.CompDateList01 dt {
width: 10em;
text-align: right;
}
div.CompDateList01 dt img {
margin-right: 5px;
}
div.CompDateList01 dd {
margin: 0 0 0 12em;
}
@media screen and (max-width: 579px) {
  div.CompDateList01 dt {
  width: auto;
  text-align: left;
  margin-left:7px !important;
  }
  div.CompDateList01 dd {
  margin-left:7px !important;
  }
}
div.CompDateList01 {
border-collapse: collapse;
height: 200px;
overflow-y: scroll;
}
.bdtnone {border-top: none!important;}
.bdlnone {border-left: none!important;}

.DocTh_w01 {width: 2em;}
.DocTh_w02 {width: 4em;}
.DocTh_w03 {width: 10%;white-space: nowrap;}

div.CompDateList01.nonScroll {
overflow-y: auto;
height: auto;
}
div.CompDateList01 ul.RightAdjust {
margin-right: 10px;
}

div.CompDateList01 .CompDateTitle01 {
display: flex;
justify-content: space-between;
background-color: #666;
border-bottom: solid 2px #333;
margin-bottom: 15px;
}

div.CompDateList01 .CompDateTitle01 .TitDate,
div.CompDateList01 .CompDateTitle01 .TitCont {
background-color: #666;
color: #fff;
text-align: center;
padding: 3px 5px;
box-sizing: border-box;
font-size: 110%;
}

div.CompDateList01 .CompDateTitle01 .TitDate {
border-right: solid 2px #333;
width: 10em;
}
.BDF {
border-color: #fff !important;
}

/* for Communication room
=========================================================================================== */
.ComContainer {
box-sizing: border-box;
max-width: 1100px;
width: 100%;
margin: 0 auto;
padding: 25px 0;
}
.ComContainer.Com02{
background-color: #fff;
}
.ComContainer .CommentBox {
box-sizing: border-box;
width: 100%;
margin: 0 auto 15px;
background-color: #fff;
border-bottom: solid 1px #aaa;
padding: 15px 0 30px;
}
.ComContainer.Com02 .CommentBox {
border-radius: 0;
position: relative;
border: none;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 30px;
}
.ComContainer.Com02 .CommentBox:after {
position: absolute;
content: "";
border-bottom: 1px solid #ccc;
left: 20px;
right: 20px;
padding-bottom: 20px;
}
.ComContainer.Com02 .CommentBox:last-child:after {
border: none;
}
.ComContainer.Com02 .CommentBox:last-child {
padding-bottom: 10px;
}
.CommentBoxShadow {
box-shadow: 0px 0px 3px 1px rgba(3, 0, 0, 0.2);
}
.CommentHead {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 8px;
align-items: center;
column-gap: 10px;
row-gap: 5px;
}
div.ComPerson {display: flex;align-items:center;justify-content: flex-start;flex-wrap: wrap;}
div.ComPerson > div {margin-right: 15px;}
div.ComPerson > div:nth-child(2),
div.ComPerson > div:nth-child(3),
div.ComPerson > div:nth-child(4){font-size: 90%;padding-top: 7px;}

.PersonImg01 img {
width: 35px;
height: auto;
}

.ComTitleBox01 {
display: flex;align-items:center;justify-content: flex-start;flex-wrap: wrap;
column-gap: 10px;
row-gap: 5px;
margin-bottom: 10px;
}
.ComTitleBox01 p.ComTopicTitle01 {
margin-bottom: 0;
}
  @media screen and (max-width: 767px) {
  .ComTitleBox01 .ComCatGroup {
  margin-left: 0;
  }
}
.ComNo01 {
font-size: 90%;
margin-bottom: 5px;
}
.ComNo02 {
font-size: 100%;color: #666;
}
.ComDate01 {
font-size: 60%;color: #666;margin-bottom: 5px;
}

.ComTextStyle01 {
font-size: 90%;margin-bottom: 5px;
}
.ComTextStyle02 {
font-size: 80%;margin-bottom: 5px;
}
.ComTextStyle03 {
font-size: 68%;margin-bottom: 5px;
}
.TextGray01 {
color: #666;
}

.ComCatGroup {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
margin-left: auto;
row-gap: 5px;
}
.ComCatGroup p {
border-radius: 3px;
color: #fff;
text-align: center;
padding: 3px 10px 0;
line-height: 160%;
margin-right: 5px;
font-size: 80%;
}
p.ComTopicTitle01 {margin-bottom: 5px;font-size: 116%;color: #336;font-weight: bold;}

p.ComTopicTitle01 a {
text-decoration: none;
color: #336;
}
p.ComTopicTitle01 a:hover {
text-decoration: underline;
}
p.ComTopicContents01 {font-size: 60%;color: #666;margin-bottom: 16px;border-bottom: solid 1px #ccc;padding-bottom: 10px;}

p.ComHeadTitle01 {
background-color: #c00;
color: #fff;
font-size: 136%;
text-align: center;
display: block;
padding: 5px 10px 3px;
margin-bottom: 10px;
}
.ComHeadTitle02 {
font-size: 160%;
color: #336;
font-weight: bold;
}
.ReviewComment {
color: #666;
width: 100%;
padding: 6px 12px;
border-radius: 5px;
border: 1px solid #ccc;
background-color: #f5f5f5;
font-size: 90%;
margin-bottom: 10px;
box-sizing: border-box;
height: calc(24px + 12px + 2px);
}
.ReviewComment.noEdit {background-color: #fff;}
.ReviewComment.Over2row {
height: auto;
}
.ReviewSubmit {
background-color: #336;
color: #fff;
font-weight: bold;
text-align: center;
border-radius: 5px;
font-size: 110%;
border: none;
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
padding: 9px 30px;
line-height: 160%;
}
.ReviewSubmit:hover {
cursor: pointer;
background-color: #669;
}
.CancelSubmit {
background-color: #666;
color: #fff;
font-weight: bold;
text-align: center;
padding: 9px 30px;
border-radius: 5px;
font-size: 110%;
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
border: none;
  line-height: 160%;
}
.CancelSubmit:hover {
cursor: pointer;
background-color: #999;
}

.CancelSubmit02 {
color: #666;
font-size: 68%;
cursor: pointer;
border-radius: 100px;
display: inline-block;
padding: 3px 15px;
box-sizing: border-box;
text-align: center;
border: 1px solid #ccc;
background-color: #f5f5f5;
}
.CancelSubmit02 span {
display: inline-block;
background:url("/common/images/ic_cancel.png") no-repeat;
background-size: 12px;
padding-left: 17px;
background-position: 0 65%;
line-height: 160%;
padding-top: 5px;
box-sizing: border-box;
}

.SimpleSubmitS {
background-color: #c00;
color: #fff;
font-weight: bold;
text-align: center;
border-radius: 5px;
font-size: 110%;
line-height: 160%;
padding: 9px 20px;
border: none;
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
}
.SimpleSubmitS.color02 {
background-color: #999;
}
.SimpleSubmitS:hover {
cursor: pointer;
background-color: #b1000e;
}
.SimpleSubmitS.color02:hover {
background-color: #bbb;
}

.attachFileTxt {
font-weight: bold;
color: #666;
font-size: 68%;
background:url("/common/images/ic_clip.png") no-repeat;
background-size: 12px;
background-position: 0 25%;
padding-left: 16px;
margin-bottom: 20px;
}
.attachFileBtn {
color: #666;
font-size: 68%;
cursor: pointer;
border-radius: 100px;
display: inline-block;
padding: 3px 15px;
box-sizing: border-box;
text-align: center;
border: 1px solid #ccc;
background-color: #f5f5f5;
}
.attachFileBtn span {
display: inline-block;
background:url("/common/images/ic_clip.png") no-repeat;
background-size: 12px;
background-position: 0 50%;
padding-left: 15px;
height: 100%;
}
.attachFileInput,
.FileInput {display: none;}

.deleteFileBtn {
color: #666;
font-size: 68%;
cursor: pointer;
border-radius: 100px;
display: inline-block;
padding: 3px 15px;
box-sizing: border-box;
text-align: center;
border: 1px solid #ccc;
background-color: #f1f8fe;
}
.deleteFileBtn span {
display: inline-block;
background:url("/common/images/ic_delete.png") no-repeat;
background-size: 12px;
padding-left: 15px;
height: 100%;
background-position: 0 45%;
line-height: 160%;
padding-top: 4.5px;
box-sizing: border-box;
}

.editFileBtn {
color: #fff;
font-size: 68%;
cursor: pointer;
border-radius: 100px;
display: inline-block;
padding: 3px 15px;
box-sizing: border-box;
text-align: center;
border: 1px solid #336;
background-color: #336;
}
.editFileBtn span {
display: inline-block;
background:url("/common/images/ic_edit.png") no-repeat;
background-size: 12px;
padding-left: 17px;
height: 100%;
background-position: 0 45%;
line-height: 160%;
padding-top: 4.5px;
box-sizing: border-box;
}
.exeFileBtn {
color: #fff;
font-size: 68%;
cursor: pointer;
border-radius: 100px;
display: inline-block;
padding: 3px 15px;
box-sizing: border-box;
text-align: center;
border: 1px solid #336;
background-color: #336;
}
.exeFileBtn span {
display: inline-block;
background:url("/common/images/ic_exe.png") no-repeat;
background-size: 12px;
padding-left: 17px;
background-position: 0 60%;
line-height: 160%;
padding-top: 4px;
box-sizing: border-box;
}
.reloadFileBtn {
color: #fff;
font-size: 68%;
cursor: pointer;
border-radius: 100px;
display: inline-block;
padding: 3px 15px;
box-sizing: border-box;
text-align: center;
border: 1px solid #336;
background-color: #336;
}
.reloadFileBtn span {
display: inline-block;
background:url("/common/images/ic_reload.png") no-repeat;
background-size: 12px;
background-position: 0 50%;
padding-left: 17px;
}

.ErrorBox {
font-size: 130%;
line-height: 160%;
color: #f00;
text-align: center;
border-bottom: 2px solid #ccc;
padding-bottom: 20px;
margin-bottom: 50px;
}

/* 登録・編集画面 */
.ProfileGroup {
margin-top: 20px;
align-items: center !important;
row-gap: 10px;
margin-bottom: 30px;
}

.ProfileGroup > div > span{
font-size: 90%;
margin: 5px 0;
}
.addIPText01 {
color: #666;
width: 30em;
border-radius: 5px;
border: 1px solid #ccc;
background-color: #f5f5f5;
font-size: 90%;
box-sizing: border-box;
height: calc(24px + 12px + 2px);
padding: 6px 12px;
}
span.sTextStyle1 {
font-size: 90%;
}

.RegistBox select.CompSelect {
min-width: 200px;
font-size: 90%;
height: 30px;
}
select.CompSelect02 {
padding: 4px 4px 4px 8px;
border: solid 1px #ddd;
/*min-width: 300px;*/
font-size: 90%;
height: 30px;
background-color: #fff;
}

@media screen and (max-width: 399px) {
  select.CompSelect02 {
  max-width: 100%;
  }
}

.ThumnailBox > div:nth-child(3) {
display: flex;
align-items:flex-end;
font-size: 100%;
column-gap: 10px;
grid-row-gap: 10px;
/*min-height: 250px;*/
}

.ThumnailBox .RegistImg img {
max-height: 250px;
}
.ThumnailBox {
display: flex;
flex-wrap: wrap;
column-gap: 20px;
padding-bottom: 50px;
border-bottom: solid 2px #ccc;
margin-bottom: 50px;
align-items: stretch;
row-gap: 15px;
}

/* for remote
=========================================================================================== */
.RedStatus {
border-radius: 5px;
font-weight: bold;
text-align: center;
padding: 5px 15px;
font-size: 116%;
display: block;
border: 3px solid #c00;
margin: 20px 40px 20px 0;
}
.StatusBox {
width: 300px;
}

.progressBar {
-webkit-appearance: none;
-moz-appearance: none;
background-color: #ccc;
width: 100%;
}
.progressBar::-webkit-progress-bar {
  background-color: #ccc;
}
.progressBar::-webkit-progress-value {
  background-color: #e60027;
}
.progressBar::-moz-progress-bar {
  background-color: #e60027;
}
.StatusBox .progressLabel {
font-size: 80%;
margin: 5px 0 0;
}

.ChartContainer {
width: 500px;
box-sizing: border-box;
}
@media screen and (max-width: 994px) {
.ChartContainer {
width: 100%;
padding: 0 50px;
}
}

.ChartBox {
margin-bottom: 20px;
box-sizing: border-box;
max-height: 450px;
overflow: hidden;
}
.ChartBox .user-select-none {margin: auto;}


@media screen and (max-width: 994px) {
.ChartBox {
min-height: auto;
overflow-x: auto;
max-height: 450px;
overflow-y: hidden;
}
}

/* for all
=========================================================================================== */
#StBlock {
display: inline-block;
}

.maxWidth1100px {
max-width: 1100px;
}
.maxWidth768px {
max-width: 768px;
}
.maxWidth400px{
max-width: 400px;
}
.maxWidth300px{
max-width: 300px;
}
.minWidth80px {
min-width: 80px !important;
}
.minWidth120px {
min-width: 120px !important;
}
.minWidth200px {
min-width: 200px !important;
}
.minHeight500px {
min-height: 500px !important;
}
.minHeight400px {
min-height: 400px !important;
}
.minHeight300px {
min-height: 300px !important;
}

.W1150CN {
width: 1150px;
}
.W950CN {
width: 950px;
}
.W600CN {
width: 600px;
}
.W560CN {
width: 560px;
}
.W400CN {
width: 400px;
}
.W300CN {
width: 300px;
}
.H300 {
height: 300px !important;
}
.H400 {
height: 400px !important;
}
.H500 {
height: 500px !important;
}
.text-red {color: #f00;}
.wAuto {width: auto;}
.mwAuto {min-width: auto;}

@media screen and (max-width: 1250px) {
  .W1150CN {
  width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .W950CN {
  width: auto;
  }
}

div.table-scroll table.min767 {min-width: 767px;}
@media screen and (max-width: 994px) {
  div.table-scroll table {overflow-x: scroll;max-width: 100%;}
  div.table-scroll table .noWr {white-space: nowrap;}
}

.noWr {white-space: nowrap;}

.DFlexST {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
}
.DFlexColumn {
display: flex;
flex-wrap: wrap;
flex-flow: column;
}
.DFlexBW {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.DF {
display: flex;
}
.alignCent {
align-items: center;
}
.alignFend {
align-items: flex-end;
}
.alignCentLR {
justify-content: center;
}
.flexRight {
justify-content: flex-end;
}
.mgLRCenter {
margin: 0 auto;
}
.columnGap10 {column-gap: 10px;}
.columnGap20 {
column-gap: 20px;
}
.columnGap40 {
column-gap: 40px;
}
.columnGap100 {
column-gap: 100px;
}
.rowGap20 {
row-gap: 20px;
}
.dis-inlineB {
display: inline-block !important;
}

.SPTopMarginSet  {
	padding-top: 20px;
}

/* モーダルウィンドウ */
body#modalWindow {
background-color: #fff;
}
.modalContainer {
padding: 30px 0;
}
.modalContainer .modalbox01 {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 150px;
row-gap: 15px;
}
.modalContainer .modalbox01 > label,
.modalContainer .modalbox01 > p {
width: 100%;
height: 33px;
}
.modalContainer .modalbox02 {
display: flex;
flex-wrap: wrap;
justify-content: center;
/*width: 315px;*/
row-gap: 15px;
column-gap: 15px;
}
.modalContainer .modalbox02 > label,
.modalContainer .modalbox02 > p {
width: 150px;
height: 33px;
}
.modalContainer .modalbox02 .SimpleBtn01 {
width: 150px;
}

@media screen and (max-width: 579px) {
    .modalContainer .modalbox02 {
    width: auto;
  }
  .modalContainer .modalbox02 > label,
  .modalContainer .modalbox02 > p {
  width: 50%;
  }
}

.modalContainer .modalbox03 {
/*width: 315px;*/
width: 100%;
padding-bottom: 30px;
border-bottom: 1px solid #ccc;
}
.modalContainer .textArea01 {
font-family: Arial,Helvetica,sans-serif;
width: 100%;margin-bottom: 30px;font-size: 90%;color: #333;padding: 5px;box-sizing: border-box;}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
        }
        .close:hover {
            color: black;
        }

.modal2 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);       
    overflow-y: auto;
}
.modal-content2 {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

  .modal3 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content3 {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    box-sizing: border-box;
}

@media screen and (max-width: 579px) {
  .modal-content,.modal-content2,.modal-content3 {
  width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .SPCenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  }
  .SPDCenter {
  justify-content: center;
  }
  .UpdateForm div.UpdateText01 input {
  margin-right: 10px;
  margin-left: 10px;
  }
  .SPTopMarginSet {
  padding-top: 20px;
  }
  .W600CN,
  .W560CN,
  .W400CN {
  width: auto;
  }
  p.RedStatus {margin-top:0;}
}

.ShowRWD579 {display: none;}

@media screen and (max-width: 579px) {
	.ShowRWD579 {display: block;}
	br.ShowRWD579,
	a.ShowRWD579,
	strong.ShowRWD579,
	em.ShowRWD579,
	sub.ShowRWD579,
	sup.ShowRWD579,
	img.ShowRWD579,
	span.ShowRWD579 {display: inline;}
  
  .maxWidth400px {width: auto;}
}

.ShowRWD994 {display: none;}

@media screen and (max-width: 994px) {
	.ShowRWD994 {display: block;}
	br.ShowRWD994,
	a.ShowRWD994,
	strong.ShowRWD994,
	em.ShowRWD994,
	sub.ShowRWD994,
	sup.ShowRWD994,
	img.ShowRWD994,
	span.ShowRWD994 {display: inline;}
}

p.STextStyleB {
font-size: 68%;
line-height: 160%;
font-weight: bold;
color: #666;
}

/* for 全体調整
=========================================================================================== */
.mb0 {margin-bottom: 0 !important;}
.mb5 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb13 {margin-bottom: 13px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb90 {margin-bottom: 90px !important;}
.mb100 {margin-bottom: 100px !important;}

.mt0 {margin-top: 0 !important;}
.mt5 {margin-top: 5px !important;}
.mt7 {margin-top: 7px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt80 {margin-top: 80px !important;}
.mt90 {margin-top: 90px !important;}
.mt100 {margin-top: 100px !important;}

.mr0 {margin-right: 0 !important;}
.mr5 {margin-right: 5px !important;}
.mr10 {margin-right: 10px !important;}
.mr15 {margin-right: 15px !important;}
.mr20 {margin-right: 20px !important;}
.mr30 {margin-right: 30px !important;}
.mr40 {margin-right: 40px !important;}
.mr50 {margin-right: 50px !important;}
.mr60 {margin-right: 60px !important;}
.mr70 {margin-right: 70px !important;}
.mr80 {margin-right: 80px !important;}
.mr90 {margin-right: 90px !important;}
.mr100 {margin-right: 100px !important;}

.pb0 {padding-bottom: 0 !important;}
.pb5 {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb50 {padding-bottom: 50px !important;}
.pb60 {padding-bottom: 60px !important;}
.pb70 {padding-bottom: 70px !important;}
.pb80 {padding-bottom: 80px !important;}
.pb90 {padding-bottom: 90px !important;}
.pb100 {padding-bottom: 100px !important;}

.pt0 {padding-top: 0 !important;}
.pt5 {padding-top: 5px !important;}
.pt10 {padding-top: 10px !important;}
.pt20 {padding-top: 20px !important;}
.pt30 {padding-top: 30px !important;}
.pt40 {padding-top: 40px !important;}
.pt50 {padding-top: 50px !important;}
.pt60 {padding-top: 60px !important;}
.pt70 {padding-top: 70px !important;}
.pt80 {padding-top: 80px !important;}
.pt90 {padding-top: 90px !important;}
.pt100 {padding-top: 100px !important;}

.pl0 {padding-left: 0 !important;}
.pl5 {padding-left: 5px !important;}
.pl10 {padding-left: 10px !important;}
.pl20 {padding-left: 20px !important;}
.pl30 {padding-left: 30px !important;}
.pl40 {padding-left: 40px !important;}
.pl50 {padding-left: 50px !important;}
.pl60 {padding-left: 60px !important;}
.pl70 {padding-left: 70px !important;}
.pl80 {padding-left: 80px !important;}
.pl90 {padding-left: 90px !important;}
.pl100 {padding-left: 100px !important;}

.pr0 {padding-right: 0 !important;}
.pr5 {padding-right: 5px !important;}
.pr10 {padding-right: 10px !important;}
.pr20 {padding-right: 20px !important;}
.pr30 {padding-right: 30px !important;}
.pr40 {padding-right: 40px !important;}
.pr50 {padding-right: 50px !important;}
.pr60 {padding-right: 60px !important;}
.pr70 {padding-right: 70px !important;}
.pr80 {padding-right: 80px !important;}
.pr90 {padding-right: 90px !important;}
.pr100 {padding-right: 100px !important;}


#GlobalNaviMenu > li > a.GN_as-option:hover {
  background-color: #cc9999 !important;
  color: #fff !important;
}
#GlobalNaviMenu > li > a.GN_as-option { color: #999 !important; }




