/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}
body {
    background: linear-gradient(-45deg, rgba(0, 80, 255, .6), rgba(200, 255, 255, .6)) fixed, url(../image/background_0529.jpg) fixed;
    background-size: cover;
    font-family: sans-serif;
    font-size: 1.6rem;

}

h1 {
    margin-top: 0px;
    position: relative;
    padding: .25em 0 .25em .75em;
    background-color: #f6f6f6;
    border-bottom: 1px solid #ccc;
    border-left: 12px solid #ccc;
    border-radius: 6px;
    background-image: linear-gradient(-90deg, #ccc, #FFFFFF);
}
h1::before {
    position: absolute;
    left: -12px;
    bottom: 0;
    content: '';
    width: 12px;
    height: 50%;
    background-color: #8992ee;
    border-bottom-left-radius: 6px;
}
h1::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 0;
    border-bottom: 1px solid #ccc;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}
h1 img {
    width: 40px;
    vertical-align : text-bottom;
}
.headUserInfo {
    text-align: right;
    margin:5px;		/*マージン*/
    /*text-indent:1em;*/		/*インデント幅*/
}
p{
    margin:5px 0px 5px 0px;		/*マージン*/
}
p.text{
    text-indent:1em;		/*インデント幅*/
}
/* 上 | 右 | 下 | 左 */
.contentPartsFirst1{
    padding: 10px 5px 10px 20px;
}
.contentPartsFirst2{
    padding: 0 0 0 50px;
}
.contentPartsSecond{
    padding: 5px 40px 20px 40px;
}
.contentPartsSecond p{
    text-align: left;

}
.center{
    margin : 0 auto;
    width: 640px;
    text-align: center;
}
.infoTxt{
    color: #0000ff;
}
.errorTxt{
    color: #ff0000;
}
.pc-words {
}
.sp-words {
    display: none;
}

@media screen and (max-width: 640px) {
    .scroll {
        overflow-x: auto;
    }
    .tbl-r07 {
        min-width: 1024px;
        margin: 0 10px 50px;
    }
    .tbl-r07 td {
        border-top: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
    }
    /* 上 | 右 | 下 | 左 */
    .contentPartsFirst1{
        padding: 5px 0 5px 5px;
    }
    .contentPartsSecond{
        padding: 5px 0px 20px 0px;
        text-align: center;
    }
    .center{
        margin : 0 auto;
        width: auto;
        text-align: center;
    }
    .pc-words {
        display: none;
    }
    .sp-words {
        display: inline-block;
        _display: inline;
    }
}