/* 基本の日本語フォント設定 */
body {
  font-family: "メイリオ", "San Francisco", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  -webkit-text-size-adjust: 100%;
}

/*==========================================
 グローバルナビゲーションのスタイル
===========================================*/

header nav  {
	background-color:#222;
}

header nav ul {
	overflow:hidden; /*li要素のfloatの回り込みを解除*/
	margin-bottom:24px;
}

/*メニュー１個ごとの設定*/
header nav ul li {
	width: 50%;
	float : left;
	border-bottom: 1px solid #513900;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

header nav ul li a{
	display: block;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	font-size:15px;
	line-height:48px; /*高さを確保*/
	font-family: "Segoe UI", "Helvetica", sans-serif;
}
	
header nav ul li a:hover{
	background: #6d510f;
}

/*奇数番目のメニューの設定*/
header nav ul li:nth-child(odd) {
     border-right: 1px solid #513900;
}

/* タブレット向けレイアウト指定：768px〜959px */
@media screen and (min-width: 768px) {
	
/* ここに768px〜959pxまでのCSSを記述 */

    header nav {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    header nav ul li {
        /*width: 16.6666667%;*/
        border-right: 1px solid #513900;
    }  
		
	/*1番目のメニューの設定
    header nav ul li:nth-child(1){
        border-left: 1px solid #513900;
    }*/
}

/* PC向けレイアウトの指定：960px以上では固定レイアウト */
@media screen and (min-width:960px) {

    /* ここに960px以上の場合のCSSを記述 */

    header nav ul {
        width : 95%;
    }

    header nav ul li {
        width: 150px;
        border-left: 1px solid #513900;
        padding: 2px 5px;
    }

    header nav ul li a{
        text-align: left;
    }

    /*1番目のメニューの設定
    header nav ul li:nth-child(1){
        border-left: 1px solid #513900;
    }*/
}

table {
  font-family: "Segoe UI", "Helvetica", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  table-layout: fixed;
  word-break: break-all;
}

/* iPhoneの数字用のスタイル */
.thread-count {
    margin: 10px 0;
    padding: 0;
    line-height: 1;
}

.thread-count,
.thread-count a,
.thread-count b {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: inline;
    vertical-align: baseline;
    font-size: 1em;
    line-height: 1;
}

/* スマートフォン向け */
@media screen and (max-width: 767px) {
    .thread-count * {
        display: inline;
        vertical-align: baseline !important;
        line-height: 1 !important;
    }
}