/***************************
    作成日　2023/3/25
    作成者　髙木
****************************/

/****************************
    スクロールバーを表示する
*****************************/
html {
    overflow: scroll;
}

body {
    max-width: 1080px;
    flex-direction: column;
    min-height: 98vh;
    margin: 0 auto;
    box-shadow: 2px 2px 4px;
}

/*************************************
    header の CSS
**************************************/
ul.header {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    background-color: #06357C;
}

li.iConnect {
    width: calc(100% / 3);
    color: #dcdcdc;
    text-align: left;
    list-style: none;
}
li.logo {
    width: calc(100% / 3);
    color: #dcdcdc;
    text-align: center;
    list-style: none;
    margin-top: 20px;
}

li.menu {
    width: calc(100% / 3);
    color: #dcdcdc;
    text-align: right;
    list-style: none;
    font-size: 0.8rem;
    padding: 4px 0px 0px 0px;
}

/*************************************
    header2 の CSS
**************************************/
ul.header2 {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    background-color: #246aaf;
}

li.home {
    color: #dcdcdc;
    text-align: center;
    position: relative;
    left: -20px;
    list-style:none
}

li.home2 {
    color: #dcdcdc;
    text-align: center;
    position: relative;
    list-style:none
}
/*********************
    検収証明書
*********************/

div.div_head {
    max-width: 950px;
    max-height: auto;
    margin: auto;

}

.font1 {
    font-size: 40px;
    color: black;
    text-align:left;
}

h2.GAID {
    height: 1px;
    border: 0;
    position: relative;
    top: -20px;
    left: 850px;
}

table.main {
	background-color:#c0c0c0;
    max-width: 950px;
    max-height: auto;
    margin: 0 auto;
}

/*******************
    footer の CSS
*******************/

ul.tfooter1 {
    background-color: #06357C;
    width: 1040px;
    margin: 0 auto;
    height: 50px;
    display: flex;
    position: fixed; bottom: 30px;
}

li.foot1 {
    position: relative;
    top: 20px;
    color: #dcdcdc;
    text-align: left;
    list-style:none
}

li.foot1.a,a:link,a:hover,a:visited {
    color: #fff;
    text-decoration:none;
}

ul.tfooter2 {
    background-color: #06357C;
    width: 1040px;
    margin: 0 auto;
    height: 30px;
    display: flex;
    position: fixed; bottom: 0;
}

li.foot2 {
    position: relative;
    font-size: 5px;
    color: #e9e9e9d1;
    text-align: left;
    list-style:none
}

hr {
    max-width: 950px;
    height: 1px;
    border: 0;
    border-top: 1px solid #797979;
  }


/**********************
    main の table CSS
**********************/

td{
	padding:10px;
}

tr.Title{
	background:#FAFAFA;
}

tr.Detail1{
	background:#FFFFFF;
}

tr.Detail2{
	background:#E6F8FF;
}

td.ViewNo{
	text-align:center;
	white-space:nowrap;
}

td.ReleaseDate{
	text-align:center;
	white-space:nowrap;
}

td.DocumentName{
	text-align:left;
	white-space:nowrap;
	width:100%;
	border-right:1px;
}

td.NewIcon{
	text-align:center;
	white-space:nowrap;
	border-left:0px;
}

td.Icon1{
	text-align:center;
	white-space:nowrap;
    font-size: 0.8rem;
}

td.Icon2{
	text-align:center;
	white-space:nowrap;
    font-size: 0.8rem;
}


/*****************************
    チェックボタンのCSS
******************************/


.check-box {
    cursor: pointer;
}

.check-text {
    /* チェックボックスとテキストの上下を中央に */
    align-items: center;
    display: flex;
}

.check-box input {
    display: none; /* デフォルトのチェックボックスを非表示 */
}
 
.check-box input + .check-text::before {
    /* チェック入れる前のチェックボックス画像 */
    background-image: url("http://iconnect.ichikawa.co.jp/parts/checkme.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: relative;
    left: 6px;
    height: 32px;
    width: 32px;
}

.check-box input:checked + .check-text::before {
    /* チェック入れた後のチェックボックス画像 */
    background-image: url("http://iconnect.ichikawa.co.jp/parts/checked.png");
}