@charset "UTF-8";


* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
div,p,dl,dt,dd,ul,ul,li {
	display: block;
}
body {
	width:100%;
	height: 100%;
	font-family: 'Lucida Grande', Arial, 'Hiragino Kaku Gothic Pro', Meiryo, 'メイリオ', sans-serif;
	font-size: 13px;
	line-height: 1.4;
	color: #333;
	background-color: #EEE;
}
table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
}
address, caption, cite, code, dfn, em, strong, th, var, i, u {
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}
ul, ol {
	list-style: none;
}
a {
	-webkit-transition: 0.1s;
	-moz-transition: 0.1s;
	transition: 0.1s;
	text-decoration: none;
/*
	color: #EB6A5A;
*/
	color: #D02C1A;
}
a:hover {
	text-decoration: underline;
	color: #333;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align:bottom;
}
input.df,
select.df,
textarea .df {
	padding: 0 4px;
	height: 26px;
	line-height: 26px;
	border: 1px #CCC solid;
	background-color: #FFF;
}
.cf:after,
div.side:after {
	content: "";
	display: block;
	clear: both;
	height: 0px;
	overflow: hidden;
}
/*
.container {
	width: 1290px;
	margin: 0 auto;
}
*/

/* font
----------------------------------------------- */

[class^="icon-"]:before, [class*=" icon-"]:before {
	margin-right: 6px;
	font-family:'WebHostingHub-Glyphs';
}


/* contents
----------------------------------------------- */

#Wrapper {
	clear: both;
}
#Inner {
	width: 100%;
	position: relative;
}
#Inner div.Contents {
	display: block;
}
#ContentsSide,
#ContentsBody {
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
}
#ContentsSide {
	float: left;
	padding-bottom: 50px;
	width: 350px;
	color: #DDD;
	background-color: #2E404E;
}
#ContentsSubWrap {
	float: right;
	position: relative;
	width: 100%;
	opacity: 1;
}
#ContentsSide a {
	color: #FFF;
}
#ContentsBody {
	position: absolute;
	top: auto;
	left: auto;
	width: auto;
	margin-left: 350px;
}
body.NSiC #ContentsBody {
	position: static;
	width: 100%;
	margin: 0;
	padding: 0;
}
#ContentsBodyWrap {
	display: block;
	position: relative;
	padding: 15px 10px 55px 15px;
}
#Inner.mainView #ContentsSide {
	position: absolute;
	opacity: 0;
}
#Inner.mainView #ContentsBody {
	margin-left: 0;
}
#Inner.mainView #ContentsBodyWrap {
	padding: 15px 10px 55px;
}

.strong {
	font-weight: bold;
}

/* marquee
----------------------------------------------- */

.marquee {
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
}
.marquee i:after {
	content: "";
	white-space: nowrap;
}

.marquee i {
	margin: 0;
	padding-left: 100%;
	display: inline-block;
	white-space:nowrap;
	-webkit-animation-name:marquee;
	-webkit-animation-timing-function:linear;
	-webkit-animation-duration: 10s;
	-webkit-animation-iteration-count:infinite;
	-moz-animation-name:marquee;
	-moz-animation-timing-function:linear;
	-moz-animation-duration: 10s;
	-moz-animation-iteration-count:infinite;
	-ms-animation-name:marquee;
	-ms-animation-timing-function:linear;
	-ms-animation-duration: 10s;
	-ms-animation-iteration-count:infinite;
	-o-animation-name:marquee;
	-o-animation-timing-function:linear;
	-o-animation-duration: 10s;
	-o-animation-iteration-count:infinite;
	animation-name:marquee;
	animation-timing-function:linear;
	animation-duration: 10s;
	animation-iteration-count:infinite;
}
@-webkit-keyframes marquee {
  from   { -webkit-transform: translate(0%);}
  99%,to { -webkit-transform: translate(-100%);}
}
@-moz-keyframes marquee {
  from   { -moz-transform: translate(0%);}
  99%,to { -moz-transform: translate(-100%);}
}
@-ms-keyframes marquee {
  from   { -ms-transform: translate(0%);}
  99%,to { -ms-transform: translate(-100%);}
}
@-o-keyframes marquee {
  from   { -o-transform: translate(0%);}
  99%,to { -o-transform: translate(-100%);}
}
@keyframes marquee {
  from   { transform: translate(0%);}
  99%,to { transform: translate(-100%);}
}
