@charset "utf-8";
/* ===============================================
    [Base]
================================================== */
/* --------------------------------------------------
    [] defined animation.
-------------------------------------------------- */
@-webkit-keyframes fadeInPack {
  from {
    opacity: 0;
    top: -18px;
  }

  to {
    opacity: 1;
    top: -8px;
  }
}

/* --------------------------------------------------
	0. Resetting default margin and padding
-------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, p, blockquote, th, td, form, fieldset, legend {
  margin: 0;
  padding: 0;
}

article, header, footer, section, nav, aside {
  display: block;
}

/* --------------------------------------------------
	1. HTML, Body, Anchor
-------------------------------------------------- */
html {
  overflow-y: scroll;
}

/* for mozilla: always display scrollbar */
body {
  color: #000;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  text-shadow: 0 0 1px rgba(255,255,255,.01);
  background: url(../img/common/bg_body_01.png) 50% 0 no-repeat fixed #819a26;
  background-size:cover;
  /* for ie6/7 */
  font-size: 13px;
  line-height: 1.5;
  *font-size: 82%;
  /* for ie6/7 */
}

a:link {
  color: #356586;
  text-decoration: underline;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:visited {
  color: #551a8b;
}

a:hover,
a:active {
  color: #f60;
  text-decoration: none;
}

.btnLink {
	display: block;
	margin: 0 auto;
	border: solid 1px #000;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a:hover .btnLink {
  border: solid 1px #4c5d18;
}

/* --------------------------------------------------
	2. Heading, Paragraph
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  line-height: 1.5;
}

/* p {} */
/* --------------------------------------------------
	3. List
-------------------------------------------------- */
li {
  list-style: none;
}
ul.disk {
	padding-left: 25px;
}
ul.disk li {
	list-style-type: disc;
}


/* --------------------------------------------------
	4. Other
-------------------------------------------------- */
img {
  border: none;
  vertical-align: bottom;
}

object {
  vertical-align: middle;
  outline: none;
}

em, strong {
  font-weight: bold;
  font-style: normal;
}

abbr, acronym {
  border: none;
  font-variant: normal;
}

q:before, q:after {
  content: '';
}

address, caption, cite, code, dfn, var {
  font-weight: normal;
  font-style: normal;
}

code, pre {
  font-family: monospace;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

hr {
  display: none;
}

/* ------------------------------------------------------------
	7. For IE6/7
------------------------------------------------------------ */
/* --- for ie7: page zoom bug fix --- */
*:first-child + html body,
*:first-child + html br {
  letter-spacing: 0;
}


/* -----------------------------------------------
    [Module] 
-------------------------------------------------- */

/* --------------------------------------------------
	1. Common Module
-------------------------------------------------- */
.mod-p {
  margin-bottom: 26px;
}


.note{
	font-size: 11px;
	margin: .5em 0;
}

.note a{
	color: inherit;
}


/* -----------------------------------------
    list styles.
-------------------------------------------- */
.listRelArticle {
	padding-top: 5px;
}
.listRelArticle .unitRelArticle {
	text-shadow: 0 1px 0 rgba(0,0,0,.5);
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 5px;
	border-bottom: 1px dotted #858585;
}
.listRelArticle .unitRelArticle:last-child  {
	border: none;
}
.listRelArticle .unitRelArticle a {
	text-decoration: none;
	margin-bottom: 2px;
}
.listRelArticle .unitRelArticle a:hover {
	text-decoration: underline;
}
.listRelArticle .unitRelArticle .ttlArticle {
  margin-bottom: 0;
}
.listRelArticle .unitRelArticle .ttlArticle .category {
  display: block;
  font-weight: bold;
  line-height: 1.2;
}
.listRelArticle .unitRelArticle .author {
	font-size: 10px;
	color: #ccc;
}
.listRelArticle .unitRelArticle.new .author:after {
	content: "NEW";
	display: inline-block;
	*display: inline;
	*zoom: 1;
	color: #fff;
	font-size: 8px;
	padding: 2px 4px;
	background: #ff7c02;
	line-height: 1;
}

.listLink, .listRelArticle .unitRelArticle .ttlArticle {
  margin-top: 7px;
}
.listLink li, .listRelArticle .unitRelArticle .ttlArticle li {
  margin-bottom: 4px;
}
.listLink a, .listRelArticle .unitRelArticle .ttlArticle a {
	color: #fff;
}

.listMarked li {
  margin-bottom: 13px;
  text-indent: -1em;
  padding-left: 1em;
}

/* -----------------------------------------
    navEntry
-------------------------------------------- */
#navEntry {
	outline: 1px solid #000;
}

#navEntry.subInfoBox {
	float: none;
}

#navEntry > ul > li {
	background-color: #000;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #292929), color-stop(1, #000));
	background-image: -moz-linear-gradient(-90deg, #292929 0%, #000 100%);
	background-image: linear-gradient(-90deg, #292929 0%, #000 100%);
}

#navEntry > ul > li:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #393939), color-stop(1, #111));
  background-image: -moz-linear-gradient(-90deg, #393939 0%, #111 100%);
  background-image: linear-gradient(-90deg, #393939 0%, #111 100%);
}

#navEntry > ul > li.inactive {
	background-image: none;
	background-color: #333;
}

#navEntry > ul > li > span,
#navEntry > ul > li > a{
	display: block;
	background: url(/img/common/ico_arr_02.png) 11px 50% no-repeat;
	color: #fff;
	text-decoration: none;
	padding: 15px 15px 15px 25px;
	box-shadow: 1px 1px 1px rgba(255,255,255,.2) inset;
	-moz-box-shadow: 1px 1px 1px rgba(255,255,255,.2) inset;
	-webkit-box-shadow: 1px 1px 1px rgba(255,255,255,.2) inset;
	font-size: 12px;
}

#navEntry > ul > li.inactive > span:after {
	font-size: 8px;
	background: #666;
	padding: 0 5px;
	margin-left: 10px;
}

#navEntry ul.navEntrySub {
	padding: 15px;
	font-size: 12px;
	background: #333;
	border-bottom: 1px solid #000;
	box-shadow: 0 1px 2px rgba(0,0,0,.5) inset;
}

#navEntry ul.navEntrySub > li {
	margin-bottom: 7px;
}

#navEntry ul.navEntrySub > li:last-child {
	margin-bottom: 0;
}

#navEntry ul.navEntrySub > li a{
	color: #fff;
	text-decoration: none;
	display: block;
	background: url(/img/common/ico_arr_03.png) 0 4px no-repeat;
	padding-left: 14px;
}

#navEntry ul.navEntrySub > li a:hover{
	opacity: .6;
}

/* -----------------------------------------
    button styles.
-------------------------------------------- */
a.btnA, a.btnB, a.btnC {
  display: block;
  width: 100%;
  padding: 16px;
  border: solid 1px #000;
  background-color: #000;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #292929), color-stop(1, #000));
  background-image: -moz-linear-gradient(-90deg, #292929 0%, #000 100%);
  background-image: linear-gradient(-90deg, #292929 0%, #000 100%);
  background-repeat: no-repeat;
  background-position: 10% 50%, left top;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  text-align: center;
  text-shadow: 1px 1px 0 #000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

a.btnA.btnSmall, a.btnB.btnSmall, a.btnC.btnSmall {
	display: inline-block;
	width: auto;
	padding: 9px 16px;
}

a.btnA span, a.btnB span, a.btnC span {
  background: url(/img/common/ico_btnArr.png) left center no-repeat;
  padding-left: 25px;
  text-align: left;
  display: inline-block;
}

a.btnA {
	margin-top: 15px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border: 1px solid #be7400;
  color: #000;
  text-shadow: 2px 2px 2px #ff7900;
  font-weight: bold;
  background-color: #f1db3b;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffbd02), color-stop(1, #ff7002));
  background-image: -moz-linear-gradient(-90deg, #ffbd02 0%, #ff7002 100%);
  background-image: linear-gradient(-90deg, #ffbd02 0%, #ff7002 100%);
}

a.btnA:hover {
  background-color: #f1db3b;
  border-color: #ceb70d;
  -moz-box-shadow: 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9);
  -webkit-box-shadow: 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9);
  box-shadow: 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9);
}

a.btnB {
  background-color: #000;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 0 rgba(255,255,255,.15) inset;
 -moz- box-shadow: 1px 1px 0 rgba(255,255,255,.15) inset;
  -webkit-box-shadow: 1px 1px 0 rgba(255,255,255,.15) inset;
}

a.btnB:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #393939), color-stop(1, #111));
  background-image: -moz-linear-gradient(-90deg, #393939 0%, #111 100%);
  background-image: linear-gradient(-90deg, #393939 0%, #111 100%);
}

a.btnC {
	margin-top: 15px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border: 1px solid #9bae4a;
  color: #000;
  text-shadow: 2px 2px 2px #a3bc23;
  font-weight: bold;
  background-color: #f1db3b;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c1db26), color-stop(1, #a2bb23));
  background-image: -moz-linear-gradient(-90deg, #c1db26 0%, #a2bb23 100%);
  background-image: linear-gradient(-90deg, #c1db26 0%, #a2bb23 100%);
}

a.btnC:hover {
  background-color: #f1db3b;
  -moz-box-shadow: 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9);
  -webkit-box-shadow: 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9);
  box-shadow: 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9), 0 0 5px rgba(241, 219, 59, 0.9);
}

/* -----------------------------------------
    banner
-------------------------------------------- */
a.bnrStyle1{
	position: relative;
	display: block;
	border: 5px solid #333;
	text-decoration: none;
	background: #000;
	text-align: center;
}

a.bnrStyle1:hover{
	border: 5px solid #4c5d18;
}

a.bnrStyle1 .label{
	font-weight: normal;
	padding: 7px 10px;
	font-size: 11px;
	position: absolute;
	background: rgba(0,0,0,.6);
	color: #fff;
	left: 0;
	bottom: 0;
	text-align: left;
}

a.bnrStyle1.new:before {
	content: "";
	background: url(/img/common/ico_new.png) 0 0 no-repeat;
	width: 34px;
	height: 34px;
	position: absolute;
	top: -6px;
	left: -6px;
	z-index: 10;
}

/* -----------------------------------------
    subInfoBox
-------------------------------------------- */
.subInfoBox {
	margin-bottom:26px;
}

.subInfoBox:first-child  {
	margin-top: 1px;
}

/* -----------------------------------------
    subInfoBoxStyle
-------------------------------------------- */
.subInfoBoxStyle1{
	background: #000;
	background: rgba(30,30,30,.9);
	color: #fff;
	font-size: 12px;
}

.subInfoBoxStyle1 > header{
	background: #000;
	color: #fff;
	padding: 10px 15px;
	border: 1px solid #000;
	box-shadow: 1px 1px 0 #595a58 inset;
	-moz-box-shadow: 1px 1px 0 #595a58 inset;
	-webkit-box-shadow: 1px 1px 0 #595a58 inset;
	position: relative;
}

.ie7 .subInfoBoxStyle1 > header,
.ie8 .subInfoBoxStyle1 > header{
	margin: 0;
	border: none;
	border-bottom: 1px solid #222;
}

.subInfoBoxStyle1 > .body{
	padding: 5px;
}

.subInfoBoxStyle1 > .body .prg{
	margin: 5px;
}

.subInfoBoxStyle1 > .body .prg a:visited,
.subInfoBoxStyle1 > .body .prg a:hover,
.subInfoBoxStyle1 > .body .prg a:link,
.subInfoBoxStyle1 > .body .prg a{
	color: #fff;
}

/* --------------------------------------------------
	unitIntro
-------------------------------------------------- */
.unitIntro {
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
	border: 6px solid #dad8d8;
	color: #fff;
}

.unitIntro.new:after {
	content: "";
	display: block;
	width: 76px;
	height: 76px;
	background: url(/img/common/ico_new_02.png);
	position: absolute;
	top: -7px;
	left: -7px;
}

.unitIntro a {
	color: #fff;
}

.unitIntro header {
	line-height: 1.8;
	background: rgba(0,0,0,.8);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	color: #fff;
}

.ie7 .unitIntro header ,
.ie8 .unitIntro header {
	background: #000;
}

.unitIntro header h1 {
	font-size: 16px;
	padding: 13px 13px 0 13px;
}

.unitIntro header p.lead{
	font-size: 12px;
	padding: 0 13px;
}

.unitIntro header p.read{
	text-align: right;
	font-size: 11px;
}

.unitIntro header p.read a{
	background: #000;
	display: inline-block;
	padding: 10px 18px;
	line-height: 1;
	text-decoration: none;
}

.unitIntro header p.read a:hover{
	background: #333;
}

.unitIntro header p.read a:before {
	content: ">";
	margin-right: 5px;
}

.unitIntro .date {
	padding: 5px 0 5px 13px;
	font-size: 11px;
	margin-bottom: -25px;
	color: #a3bc23;
}

/* -----------------------------------------
    Unique Module
-------------------------------------------- */
/* -----------------------------------------
    letsTry
-------------------------------------------- */
#letsTry header{
	position: relative;
	padding-left: 60px;
}

#letsTry header:before {
	content: "";
	background: url(/img/common/ico_try_01.png) 0 0 no-repeat;
	display: block;
	width: 75px;
	height: 75px;
	position: absolute;
	top: -10px;
	left: -20px;
}

/* --------------------------------------------------
	html5 logo
-------------------------------------------------- */
#HTML5logo{
	text-align: center;
	margin-top: 25px;
}

/* --------------------------------------------------
	about
-------------------------------------------------- */
#about{
	line-height: 1.8;
	background: rgba(0,0,0,.8);
	margin-bottom: 10px;
	color: #fff;
	border: 6px solid #DAD8D8;
}

.ie7 #about,
.ie8 #about{
	background: #000;
}

#about .body{
	padding: 20px 20px 10px;
}

#about .body .viewer{
	width: 425px;
	margin: 0 auto 20px;
}

#about .body h1 {
	font-size: 14px;
	background: url(/img/common/ico_information.png) 0 50% no-repeat;
	padding-left: 30px;
	margin-bottom: .75em;
}

/* --------------------------------------------------
	CS5Introduction
-------------------------------------------------- */
#CS5Introduction {
	margin-bottom: 36px;
}

#CS5Introduction h2{
	font-weight: normal;
	margin-top: 10px;
	font-size: 13px;
}



/* --------------------------------------------------
	90. Other
-------------------------------------------------- */
.btn {
  cursor: pointer;
}

/* for Voice Browser */
.hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Noscript Message */
#msgNoscript {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 5px 0;
  border-top: 1px solid #f00;
  border-bottom: 1px solid #f00;
  background: #fcc;
  color: #f00;
  line-height: 1.2;
  text-align: center;
  opacity: 0.7;
}

/* --------------------------------------------------
	99. Clearfix
-------------------------------------------------- */
.group, .siteInfo {
  *zoom: 1;
}

/* for ie6/7 */
.group:after, .siteInfo:after {
  content: "";
  display: block;
  clear: both;
}

