@charset "utf-8";

/**
 * ヘッダー
 *
 * CSS versions	3
 *
 * @category   Web Application
 * @package    Argus
 * @copyright  Polaris, Inc.
 *
 */
.BLK10000
{
	position: fixed;
	width: 100%;
	z-index: 99;
}
.BLK10000 h1,
.BLK10000 p,
.BLK10000 a
{
	display: block;
	color:#222222;
	font-weight:normal;
	box-sizing: border-box;
}

/* ヘッダボディ */
.BLK10000 div.frame.h-body
{
	position:relative;
	width:100%;
	height:4rem;
	background-color:#fff;
	border-bottom:solid 1px #ccc;
}
.BLK10000 div.frame.h-body div.section
{
	margin:0 auto;
	width: calc(100% - 1rem);
}
.BLK10000 div.frame.h-body div.section div:nth-of-type(1)
{
	float:left;
	margin-top:1.3rem;
	margin-left:0.5rem;
	margin-right:1rem;
	width:1.5rem;
}
.BLK10000 div.frame.h-body div.section div:nth-of-type(1) img
{
	width:100%;
}
.BLK10000 div.frame.h-body div.section div:nth-of-type(2)
{
	float: left;
	margin-top:0.6rem;
	width:calc(100% - 6rem);
}
.BLK10000 div.frame.h-body div.section div:nth-of-type(2) a
{
	display:block;
	margin:0 auto;
	width:110px;
}
.BLK10000 div.frame.h-body div.section div:nth-of-type(2) img
{
	width:100%;
}
.BLK10000 div.frame.h-body div.section div:nth-of-type(3)
{
	position:relative;
	float:right;
	margin-top:1rem;
	margin-right:0.5rem;
	width:1.8rem;
}
.BLK10000 div.frame.h-body div.section div:nth-of-type(3) img
{
	width:100%;
}
.BLK10000 div.frame.h-body div.section div:nth-of-type(3) p
{
	position:absolute;
	top:0.5rem;
	right:1rem;
	width:22px;
	height:22px;
	line-height:20px;
	text-align:center;
	color: #fff;
	border-radius:50%;
}

/* スライドメニュー */
#menu
{
	position: fixed;
	top: 0;
	left: 0;
	width: 250px;
	height: 100%;
	z-index: 10;
	transform: translateX(-250px);
	transition: all .5s;
	background-color: #fff;
}
#menu.open
{
	transform: translateX(0); /* left0まで-250px移動 */
}
#menu div.section
{
	padding:1rem;
	width:100%;
}
#menu div.section > div,
#menu div.section > div ul,
#menu div.section > div li,
#menu div.section > div a
{
	display: block;
	width: 100%;
}
#menu div.section > div
{
	margin-bottom: 2rem;
}
#menu div.section > div h2
{	
	color:#222222;
}

/* ポップアップメニュー（総合メニュー） */
#menu div.section > div:nth-of-type(1) li
{
	border-bottom: 1px solid #ddd;
}
#menu div.section > div:nth-of-type(1) li a
{
/*	position: relative;*/
	padding: 0rem 1rem;
	height: 2.6rem;
	line-height: 2.6rem;
	font-weight: bold;
}
#menu div.section > div:nth-of-type(1) li a:hover
{
	color: #222222;
}
#menu div.section > div:nth-of-type(1) li a:hover:before
{
	background: #222222;
}

/* ポップアップメニュー（サイトメニュー） */
#menu div.section > div:nth-of-type(2) li
{
	border-bottom: 1px solid #ddd;
}
#menu div.section > div:nth-of-type(2) li a
{
/*	position: relative;*/
	height: 2.6rem;
	line-height: 2.6rem;
	color: #222222;
	font-weight: bold;
}
#menu div.section > div:nth-of-type(2) li a:hover
{
	color: #222222;
}
#menu div.section > div:nth-of-type(2) li span
{
	display: inline-block;
	margin-left: 1rem;
	height: 100%;
}
/*#menu div.section > div:nth-of-type(2) li:first-of-type
{
	position:relative;
}*/

/* メイン画面背景 */
#menu-background
{
	position: fixed;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
	opacity: 0; /* 透明度を0にすることで隠す */
	transition: opacity 0.5s; /* 透明度の0→1になる速度 */
}
#menu-background.open
{
	width: 100%;
	height: 100%;
	opacity: 1; /* メニューが表示されているときには背景が表示 */
}

/* デザイン変更 */
#menu
{
	overflow:scroll;
	padding-bottom:6rem;
}
#menu div.section > div:nth-of-type(3) li
{
	border-bottom: 1px solid #ddd;
}
#menu div.section > div:nth-of-type(3) li a
{
	height: 2.6rem;
	line-height: 2.6rem;
	color: #222222;
	font-weight: bold;
}
#menu div.section > div:nth-of-type(3) li span
{
	display: inline-block;
	margin-left: 1rem;
	height: 100%;
}