
html, body {
    height: 100%;
}

body {
    background-image: url("../img/bg/body-bg.jpg"); /* 画像 */
    background-size: 100% 100%;               /* 全画面 */
    background-attachment: fixed;         /* 固定 */
    background-position: center center;   /* 縦横中央 */
 }

.logo {
    margin: 20px 0;
    width: 400px;
    max-width: 100%;
    height: auto;
    z-index: 1;
}



/********************************************************************/
/** リスト ***********************************************************/
/********************************************************************/

.list-head {
    position: relative;
    background-color: #444;
    height: 50px;
    border-radius: 6px 6px 0 0;

    padding-top: 8px;
    padding-left: 55px;
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.list-head > .icon-img {
    position: absolute;
    left: 17px;
    top : 13px;

    width : 21px;
    height: 21px;
}

.list-body {
    margin-bottom: 16px;
    padding-top: 20px;
    background-color: #fff;
    border: solid 2px #ccc;
    overflow-x: hidden;
}

.list-body-limit {
    height: 300px;
    overflow-y: scroll;
}

.list-body hr {
    margin-top: 12px;
    margin-bottom: 12px;
}

.list-body-item {
}

.list-body-item-border {
}

.list-body-item-type {
    display: inline-block;
    margin-left: 12px;
    border: solid 1px #c00;
    border-radius: 20px;
    color: #c00;

    width: 100px;
    padding: 2px 0;
    font-size: 17px;
    text-align: center;
    white-space: nowrap;
}

.list-body-item-date {
    padding-top: 6px;
    padding-left: 8px;
    padding-right: 12px;
    font-size: 17px;
}

.list-body-item-text {
    padding-top: 6px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 17px;
}

.list-body-item-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: underline;
}

.list-body-item-title a {
    color: #000;
}

.list-body-item-comment {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/********************************************************************/
/** ボタン ***********************************************************/
/********************************************************************/

.normal-button {
    margin: 16px 0;
    position: relative;
    background-color: white;
    padding-top: 5px;
    padding-left: 40px;
    color: #444;
    font-size: 20px;
    font-weight: bold;

    display: block;
    width: 100%;
    height: 42px;
    border-style: solid;
    border-width: 1px 1px 3px 1px;
    border-color: #444;
    border-radius: 20px;
}

.normal-button:hover {
    color: #444;
    background: #E6E6E6;
    text-decoration: none;
}

.normal-button > .icon-img {
    position: absolute;
    left: 11px;
    top : 11px;

    width : 16px;
    height: 16px;
}

.normal-button > .arrow-img {
    position: absolute;
    right: 11px;
    top  : 11px;

    width : 12px;
    height: 16px;
}
