@charset "UTF-8";
/* CSS Document */
/*===================================================
    スマホ用共通ベースCSS(PCの定義に上書きして使用)
===================================================*/
/*//////////////////////////////////////////////////
    Base set
///////////////////////////////////////////////////*/
body {
	min-width: 320px;
}

/* --------------------------------------------------
    リンク
-------------------------------------------------- */
a:hover {
	text-decoration: none;
}

/*//////////////////////////////////////////////////
    header
///////////////////////////////////////////////////*/
header {
	position: fixed;
	top: 0;
	min-height: 45px;
}
	header .headWrap h1 {
		margin-left: 10px;
		float: left;
		font-size: 18px;
	}
		header .headWrap h1 img {
			width: 98.5px;
		}


/*//////////////////////////////////////////////////
    main
///////////////////////////////////////////////////*/
/* --------------------------------------------------
    コンテンツを全て包む
-------------------------------------------------- */
.wrap {
	padding-top: 45px;
}

/* --------------------------------------------------
    inner
-------------------------------------------------- */
.inner {
	width: 100%;
}


/* --------------------------------------------------
    オーバレイ
-------------------------------------------------- */
#overlay {
    cursor: pointer;
	-webkit-opacity: 1;
	opacity: 1;
}


