.tablink {
  background-color: #555;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  /* padding: 14px 16px; */
  font-size: 17px;
  width: 100%;
}

.tablink:hover {
  background-color: #777;
}

/* Style the tab content */
.tabcontent {
  color: white;
  display: none;
  padding: 5px;
  text-align: center;
}
.navbar {
	padding: 0px;
	margin: 0 5px0 5px;
	width: 100%;
}
/**
*
* 	設定ドロップダウンメニュー
*
*/
.tablink {
    background-color: #111111;/* リンク選択時の背景色 */
	 width: 25%;
	 /*@-20260124 width: 34%;*/ /**@+20260116  */
}
.navbar ul {
    list-style-type: none;/* リストマークなし */
    padding: 0;/* リストマークの余白なし */
}
.nav-menu {
    display: flex;/* 要素をFlexboxに定義 */
    justify-content: flex-start;/* 左寄せ配置 */
    text-align: center;/* テキストを中央寄せ */
	padding: 0px;
	margin: 0px;
	width: 100%;
}
.nav-menu li {
    position: relative;/* ボックスの配置基準 */
    z-index: 1;/* 前面に描画 */
    /*min-width: 130px;*//* 親メニューの最小横幅 */
	margin: 0px;
}
.nav-menu a {
    display: block;/* 要素をブロックに定義 */
    text-decoration: none;/* リンク下線なし */
    /*background-color: #FFEBCD;*//* 背景色 */
    /*background-color: #666666;*//* リンク選択時の背景色 */
    /*color: #696969;*//* テキスト色 */
    color: #ffffff;/* テキスト色 */
    padding: 10px;/* 余白 */
}
.nav-menu a:hover {
    background-color: #DEB887;/* リンク選択時の背景色 */
}
.nav-menu li ul {/* 子メニュー */
    position: absolute;/* ボックスの配置基準 */
    top: 100%;/* 親メニュー上部からの表示位置 */
    left: 0;/* 親メニュー左端からの表示位置 */
    width: 100%;/* 親メニュー幅に合わせる */
    background-color: #666666;/* リンク選択時の背景色 */
}
.nav-menu li ul li {
    visibility: hidden;/* 子メニューの非表示 */
    /* スライド表示させる場合は以下も */
    overflow: hidden;/* ボックスからはみ出た部分を非表示 */
    height: 0;
    transition-duration: 1.5s;/* 変化にかかる時間 */
}
.nav-menu li:hover > ul > li {
    visibility: visible;/* 子メニューの表示 */
    /* スライド表示させる場合は以下も */
    overflow: visible;/* ボックスからはみ出た部分を表示 */
    height: 44px;/* 項目名が途切れて隠れないように注意 */
}

#tabcontent-latest {background-color:#72e272;}
#tabcontent-past {background-color:green;}
#tabcontent-setting {background-color:#8080ff;}
#tabcontent-notice {background-color:#ffaa55;}
#tabcontent-help {background-color:#eaea95;}

