*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
	height: 0px;
  background-color:;
	position: relative;
}

.container {
  width: ;
  height: ;
}
/* 追加前面に出す */
.relative {
    position: relative;
		z-index:3;/* プルダウンを全面に2 */
}
.relative a {
    position: relative;
			z-index:4;/* 前面に */	
}

.relative b {
    position: relative;
			z-index:5;/* 前面に */	
			filter:alpha(opacity=70);/* 透明 */
	-moz-opacity: 0.7;
	opacity: 0.7;
}

.wrapper {
  min-height: 100%;
 
  /* フッタの高さと等しいネガティブマージン */
  /* また最後の子要素の潜在的なマージンとしても機能 */
  margin-bottom: -50px;
}
#footer {
	position: fixed;
	bottom: 0;
	width: 0px;
	height: 30px;
	z-index:4;/* 前面に */
}

.frame {
    position: relative;
    width: 100px;
    height: 100px;
}
.image {
    position: absolute;
    bottom: 0;
    left: 25px;
}
/* ------- */	
.tutorial {
	width: 100%;/* コンテンンツの幅 */
	margin: 0% auto 0 auto;
	box-shadow: 0;
	background-color: ;/* コンテンツの色 */
	max-width: 100%;
	filter:;/* 透明 */
	-moz-opacity: ;
	opacity: ;
}
.tutorial .slider {
  width: 100%;
  height: 300px;
  background-color: #F03861;
}
.tutorial .information {
  width: 100%;
  padding: 20px 50px;
  margin-bottom: 30px;
  font-family: 'Saira Condensed', sans-serif;
}
.tutorial .information h1 {
  color: #333;
  font-size: 1.5rem;
  padding: 0px 10px;
  border-left: 3px solid #F03861;
}
.tutorial .information h3 {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 0;
  padding: 0px 10px;
  border-left: 3px solid #F03861;
}
.tutorial .information p {
  padding: 10px 0px;
}
.tutorial ul {
  font-size: 0;
  list-style-type: none;
}
.tutorial ul li {
	font-family: 'Open Sans Condensed', sans-serif;/* 全体の書体 */
	font-size: 1.2rem;/* 文字のサイズ */
	font-weight: 0;
	color: #FFF;/* 文字の色 */
	display: inline-block;
	padding: 15;/* コンテンツの広さ */
	position: relative;
	z-index:2;/* プルダウンを前面に2 */
	visibility: inherit;
	-moz-osx-font-smoothing: grayscale;/* fierfoxの文字を細く */
}
.tutorial ul li ul {
  display: none;
}
.tutorial ul li:hover {
	cursor: pointer;
	background-color: #09F;/* コンテンツのオンマウスの色 */
	transition: 0.1s;
	margin: 0% auto 10px auto;/* プルダウンのアクション 上に動く */
}
.tutorial ul li:hover ul {
  display: block;
  margin-top: 15px;
  width: 200px;
  left: 0;
  position: absolute;/* プルダウンを前面に1 */
        transition: 0.1s;
			margin: ;/* コンテンツオンマウスのマージン */
		
}
.tutorial ul li:hover ul li {
  display: block;/* プルダウンの幅で文字を止める */
  background-color: #;/* プルダウンの色 */
  filter:alpha(opacity=70);/* 透明 */
   transition: .3s;/* 動きのスピードの早さ */
-webkit-transition: .3s;/* ブラウザChrom */
-o-transition: .3s;/* ブラウザOpera */
-ms-transition: .3s;/* ブラウザInternet Explorer */
		  -moz-transition: .3s;/* ブラウザFirefox */
		  font-size: 1.0rem;/* プルダウン内の文字のサイズ */
		  padding: 9;/* コンテンツの広さ */
		  top: 8;/* コンテンツとプルダウンの間のアキ */
}
.tutorial ul li:hover ul li span {
  float: ;
	color: #f9f9f9;
	background-color: #09F;/* プルダウンの小窓の色 */
	padding: 2px 5px;
	text-align: center;
	font-size: 1.0rem;
	border-radius: 3px;
		position:relative;/* プルダウンの小窓を左へ */
left: -9px;/* プルダウンの小窓を左へ */
}
.tutorial ul li:hover ul li:hover {
  background-color: transparent;/* プルダウンオンマウスの色を無し（透明）に */
}
.tutorial ul li:hover ul li:hover span {
	background-color: #333;/* プルダウンオンマウス小窓の色 */
}
.tutorial p {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.5rem;
}
