@charset "UTF-8";



/* ----------ヘッダー---------- */

/* 全体 */

header {
	height: 30px;
}

.header_pc {
	width: 1200px;
	margin: 0 auto;
	padding-top: 8px;
	color: #6f6f69;
	font-size: 12px;
}

/* タブレット用無効化 */

.header_t {
	display: none;
}



/* ウィンドウ幅が0?479pxの場合に適用するCSS */
@media screen and ( max-width:479px )
{



/* ----------ヘッダー---------- */

/* 全体 */

header {
	height: 58px;
}

.header_t {
	display: block;
}

/* -----タイトル----- */

.header_t ul {
	text-align: right;
	color: #6f6f69;
	line-height: 24px;
	margin-right: 5px;
}

/* 1行目 */

.header_t li:first-child {
	font-size: 12px;
}

/* 2行目 */

.header_t li:last-child {
	font-size: 30px;
	font-weight: bold;
}



/* PC用無効化 */

.header_pc {
	display: none;
}



}