/* 共通CSSを読み込み*/
@import url("/st/css/styles.css");

/* Gmail 専用CSS */
.helpdesk h3 
    background-color: white;
    color: black;
    padding: 0;
}
.helpdesk h3.faq {
    text-decoration: underline solid 3px;
}
.helpdesk hr {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
/* 実線 */
.helpdesk .hr1 {
  border-top: 1px solid #aaa;
}
.helpdesk table {
    margin-left: 1%;
    border-collapse: collapse;
    font-size: 1em;
    width: 100%;
}
.helpdesk th {
    padding: 0.2em;
    background:#a0c0f0;
}
.helpdesk td {
    padding: 0.2em;
    border: 1px solid #8d8c8c;
    word-break: break-all;
}
.helpdesk td img {
    width: 60%;
    max-width: 300px;
}
.helpdesk colgroup.date {
    width: 4em;
    background: #a0c0f0;
}
.helpdesk .return_top {
/*    font-size: 0.75em;     文字サイズ指定 */
    text-align: center;
}
.helpdesk main img {
    border: solid 1px #777777; /* 画像の枠線をグレー */
}
.helpdesk .scroll-box {
    padding-left: 1%;           /* 内側の余白 */
    padding-right: 1%;          /* 内側の余白 */
    height: 800px;              /* 横幅を800pxに指定 */
    border: 1px solid #000;   /* わかりやすくボーダーを引く */
    overflow-y:scroll;          /* 縦方向にスクロール可能にする */
    overflow-x:hidden;          /* 横のスクロールバーを消す */
}
.helpdesk .leftNavigation{
    width: 250px;
    text-align: center;
    background-color: #888;
    color: #fff;
}

nav ul{
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    padding: 0 ;
    width: 70%;
    text-align: center;
    }
    nav li{
    display: table-cell;
    min-width: 50px;
    }
    nav a{
    display: block;
    width: 100%;
    text-decoration: none;
    padding-bottom: 5px;
    }
    nav li.current{
    border-bottom: 3px solid #92D050;
    }
    nav li:hover{
    color: #E7DA66;
    border-bottom: 3px solid #F0E475;
    }