@charset "utf-8";

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }

/*
* layout.css
* date---YYYY/MM/DD
*/


/*===============================================
	layout.css 画面の横幅が641px以上
===============================================*/

/* ----------------------------------------------
 Basic-Design
---------------------------------------------- */
html {
	overflow-y: scroll;
}
body {
	background: #FFF;
	color: #333;
	font-size: 1.3em;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Osaka, Arial, Helvetica, Verdana, sans-serif;
	line-height: 1.8;
}
a { text-decoration: none; }
a:link { color: #FFF; }
a:visited { color: #FFF; }

#wrapper{
	width:100%;
	height:100%;
}
.soudan{
	width: 300px;
	height: auto;
	margin: 0 auto;
	padding: 20px 0 0;
}
.soudan img{
	width: 100%;
}
a.alpha:hover img{
	filter:alpha(opacity=75);  /* IE7以下用 */
	-ms-filter: "alpha(opacity=75)"; /* IE8用 */
	-moz-opacity:0.75; /* Firefox 1.5未満, Netscape用 */
	-khtml-opacity: 0.75;  /* Safari 1.x, 他khtmlに対応したブラウザ用  */
	opacity: 0.75; /* Firefox 1.5以上, Opera, Safari用 */
}


/*-----------------------------------------------------------------
	header
-----------------------------------------------------------------*/
header {
	position: fixed;
	z-index: 10000;
	width: 100%;
	left: 0;
	top: 0;
}
#header_in{
	position: absolute;
	width: 100%;
	margin:0;
	background: #FFF;
	border-bottom: 1px solid #CCC;
}
	#header_in img{
		width:100%;
	}
#header_logo{
	position: relative;
	width: 100%;
	height: 65px;
}
	#header_logo h1{
		position: absolute;
		width: 146px;
		top : 10px;
		left: 10px;
	}
	#header_logo p{
		position: absolute;
		width: 100%;
		height: 20px;
		top :0;
		padding: 0 10px;
		color: #FFF;
		font-size:12px;
		line-height: 20px;
		background: #FF8300;
	}
#header_soudan{
	display: none;
}



/*-----------------------------------------------------------------
globalnavi
-----------------------------------------------------------------*/
#glovalnavi{
	position: absolute;
	top: 0;
}
.nav-collapse ul {
	margin: 0;
	padding: 0;
	width: 100%;
	display: block;
	list-style: none;
}
.nav-collapse li {
	width: 100%;
	display: block;
}
.js .nav-collapse {
	clip: rect(0 0 0 0);
	max-height: 0;
	position: absolute;
	display: block;
	overflow: hidden;
	zoom: 1;
}
.nav-collapse.opened {
	max-height: 9999px;
}
.disable-pointer-events {
	pointer-events: none !important;
}
.nav-toggle {
	position: absolute;
	top: 10px;
	right: 0;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}


/* ------------------------------------------
NAVIGATION STYLES
--------------------------------------------- */
.fixed {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
}
.nav-collapse,
.nav-collapse * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nav-collapse,
.nav-collapse ul{
	float: left;
	width: 100%;
	list-style: none;
	background: #FF8300;
}
.nav-collapse li{
	float: left;
	width: 100%;
}
.nav-collapse a {
	display: block;
	width: 100%;
	padding: 0.7em 10px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	border-top: 1px solid white;
	color: #fff;
	text-decoration: none;
}
.nav-collapse a:active,
.nav-collapse .active a {
	background: #b73214;
}


/* ------------------------------------------
	MASK
--------------------------------------------- */
.mask {
	-webkit-transition: opacity 300ms;
	-moz-transition: opacity 300ms;
	transition: opacity 300ms;
	background: rgba(0,0,0, .8);
	visibility: hidden;
	position: fixed;
	opacity: 0;
	z-index: 2;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
.android .mask {
	-webkit-transition: none;
	transition: none;
}
.js-nav-active .mask {
	visibility: visible;
	opacity: 1;
}


/* ------------------------------------------
NAV TOGGLE STYLES
--------------------------------------------- */
@font-face {
	font-family: "responsivenav";
	src:url("../icons/responsivenav.eot");
	src:url("../icons/responsivenav.eot?#iefix") format("embedded-opentype"),
	url("../icons/responsivenav.ttf") format("truetype"),
	url("../icons/responsivenav.woff") format("woff"),
	url("../icons/responsivenav.svg#responsivenav") format("svg");
	font-weight: normal;
	font-style: normal;
}
.nav-toggle {
	position: relative;
	overflow: hidden;
	float: right;
	margin: 5px 0;
	width: 60px;
	height: 55px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-decoration: none;
	text-indent: -300px;
}
.nav-toggle:before {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	color: #333; /* Edit this to change the icon color */
	font: normal 28px/55px "responsivenav"; /* Edit font-size (28px) to change the icon size */
	text-transform: none;
	text-align: center;
	text-indent: 0;
	content: "\2261"; /* Hamburger icon */
	speak: none;
}
.nav-toggle.active:before {
	font-size: 24px;
	content: "\78"; /* Close icon */
}


/*-----------------------------------------------------------------
contents
-----------------------------------------------------------------*/
#contents{
	width:100%;
	margin: 0 auto;
	padding-top: 65px;
}
.bg_orange{
	width:100%;
	background-color:#FFF6ED;
}
#contents h1{
	margin-bottom: 20px;
	color:#FF8300;
	font-size: 24px;
	text-align:center;
	line-height: 1.4;
}
#contents h3{
	margin-bottom: 15px;
	color:#003366;
	font-size: 17px;
	text-align:center;
	font-weight: bold;
	line-height: 1.4;
}
#contents h1 span,
#contents h3 span{
	display: block;
}


/*-----------------------------------------------------------------
	main
-----------------------------------------------------------------*/
.main{
	position:relative;
	margin: 0 10px;
	padding:20px 0;
	text-align:center;
}
.main h2{
	padding-bottom: 20px;
	font-size: 20px;
	color:#333;
	font-weight:bold;
	text-align: left;
	line-height: 1.4;
}
.main h2 span{
	display: block;
}
.main p{
	margin-bottom: 10px;
	text-align: left;
}
.main p.main_txt{
	position: relative;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: bold;
	color:#003366;
	line-height:1.8em;
}
.main p.main_txt .border {
	background: linear-gradient(transparent 80%, rgba(255,131,0,0.3) 0%);
}
.main .kian_bosyu{
	position:absolute;
	top:10px;
	right:0;
	width:80px;
}
.main img{
	width: 100%;
}
.main .img_r{
	overflow: hidden;
	margin: 0 10px 10px;
}
.main .text_r{
	margin: 0 10px;
}
.main .text_r h3{
	color:#FF8300 !important;
	font-size: 22px !important;
	font-weight: bold !important;
	text-align: left !important;
}
.main .text_r p{
	padding-bottom: 1em;
	font-size: 15px !important;
	text-align: left !important;
}
.main .text_r p.p_big{
	padding-bottom: 0;
	font-size: 20px !important;
	font-weight: bold;
}


/*-----------------------------------------------------------------
	about
-----------------------------------------------------------------*/
#about{
	width: 100%;
	margin: 0 auto;
	padding:20px 0;
	text-align:center;
}
#about .box_area{
	margin: 0 20px;
}
	#about .box_area ul{
		width: 100%;
		list-style: none;
	}
		#about .box_area li{
			width:100%;
			margin: 0 0 20px 0;
		}
			#about .box_area li img{
				width: 100%;
			}

/* team
------------------------------*/
#about div.team{
	margin: 0 10px;
	padding: 20px 0 0;
	background-color:#F8F8F8;
}
.team img{
	width:200px;
}
.team div{
	margin: 0 15px 15px;
	padding-bottom: 15px;
	border-bottom:solid 1px #CCC;
}
	.team div p{
		width: 200px;
		margin: 0 auto 10px;
		padding: 4px;
		background: #FFF;
		border: 1px solid #DDD;
	}
	.team dl{
		clear: both;
	}
	.team dt{
		padding-bottom:10px;
		font-size:120%;
		font-weight:bold;
		text-align: center;
	}
	.team dd{
		font-size: 13px;
		text-align: left;
		text-align: justify;
		line-height: 1.6;
	}


/*-----------------------------------------------------------------
	system
-----------------------------------------------------------------*/
#system{
	padding: 20px 0;
	text-align:center;
}
	#system p{
		margin: 0 10px;
		text-align: left;
	}
	.system_img{
		margin: 0 10px;
		padding:20px 0;
	}
	.system_img img{
		width: 100%;
	}
	#system p.soudan{
		margin: 0 auto;
	}


/* step
------------------------------*/
#system div.step{
	margin: 0 10px;
	padding: 20px 0 10px;
	background-color:#FFF;
	text-align:left;
}
	.step dl{
		margin: 0 15px 15px;
		padding-bottom:15px;
		border-bottom:dotted 1px #CCC;
	}
		.step dt{
			float:left;
			width: 55px;
			vertical-align: middle;
		}
		.step dd{
			display: table-cell;
			line-height: 1.6;
		}
		.step dd span{
			display: block;
			font-size: 12px;
		}
		.step img{
			width:40px;
		}



/*-----------------------------------------------------------------
	support
-----------------------------------------------------------------*/
#support{
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	text-align:center;
}
#support h3{
	margin: 0;
	padding: 20px 0 10px;
	line-height: 1.4;
}
#support p{
}
.sptab3{
}
#sptab3_l1,#sptab3_l2,#sptab3_l3,#sptab3_l4,#sptab3_l5{
	clear: both;
	width: 100%;
}
.sptab3_r{
	clear: both;
	width: 100%;
}
.text_results{
	margin: 20px 10px 0;
	background-color:#F8F8F8;
	border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */  
	padding: 10px;
}
	.text_results dt{
		font-weight: bold;
		text-align: center;
	}
	.text_results dd{
		padding:0;
	}
	#sptab3_l2 .text_results dd{
		text-align: left;
	}
	.text_results ul{
		list-style: none;
	}
	.text_results li{
		padding-left: 1em;
		background: url(img/ico_list.png) no-repeat 0.2em 0.7em;
	}

/*.circle{
	width: 270px;
	height: 270px;
	margin: 70px auto 0 auto;
	background-image:url(img/support_stab_bg.png);
	position:relative;
}
.book{
	width: 128px;
	height: 128px;
	background-image:url(img/support_stab_off.png);
	position:absolute;
	left:71px;
	top:-59px;
}
.event{
	width: 128px;
	height: 128px;
	background-image:url(img/support_stab_off.png);
	position:absolute;
	left:-56px;
	top:31px;
}
.web{
	width: 128px;
	height: 128px;
	background-image:url(img/support_stab_off.png);
	position:absolute;
	left:-9px;
	top:181px;
}
.movie{
	width: 128px;
	height: 128px;
	background-image:url(img/support_stab_off.png);
	position:absolute;
	left:149px;
	top:181px;
}
.cloud{
	display:block;
	width: 128px;
	height: 128px;
	background-image:url(img/support_stab_off.png);
	position:absolute;
	left:200px;
	top:31px;
}
.cloud p{
	margin-top:35px;
}
*/

/*	tab
----------------------------------*/
.tab,
.tab li a {
	color:#333;
}
ul.tab {
	overflow: hidden;
	margin: 0 10px;
	padding: 0;
	border: 2px solid #FFA64D;
	border-radius: 25px;        /* CSS3草案 */  
    -webkit-border-radius: 25px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 25px;   /* Firefox用 */
}
.tab li{
	float: left;
	width: 33.333%;
	font-size: 13px;
	line-height: 1.4;
}
.tab li span{
	display:block;
}
.tab li a{
	display: block;
	width: 100%;
	padding: 5px 0;
}
.tab li.active{
	position: relative;
}
.tab li.active a{
	color:#fff;
	background: #FFA64D;
}

/*エリア*/
.content {
    clear: both;
    overflow: hidden;
    width: 100%;
}
.area {
    display: none;
	margin: 0 10px;
	text-align:center;
}


/*　達成後のサポート中身
------------------------------------------------*/
.support_tab,
.support_tab li a {
	color:#333;
}
.support_tab{
	width: 300px;
	margin: 0 auto;
}
.support_tab li{
	float: left;
	width: 90px;
	margin: 10px 5px 0;
}
.support_tab li a{
	display: block;
	width: 86px;
	padding: 20px 0;
	font-size: 12px;
	text-align: center;
	border-radius: 50%;  
    -webkit-border-radius: 50%; 
    -moz-border-radius: 50%;
	border: 2px solid #CCC;
	line-height: 16px;
}
.support_tab li.cloud a{
	padding: 12px 0 !important;
	text-align: center;
}
.support_tab li.active {
}
.support_tab li.active a{
    color:#fff;
	background: #FF9933;
	border: 2px solid #FF9933;
}
.support_content {
    clear: both;
    overflow: hidden;
}
.support_area {
    display: none;
	text-align:center;
}


/*-----------------------------------------------------------------
	success
-----------------------------------------------------------------*/
#success{
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	text-align:center;
}
#success div.comment{
	margin-bottom:10px;
	padding:10px 10px 0 13px;
	border: solid 5px #EEE;
}
	#success div.comment h3{
		font-size:16px;
	}
	#success div.comment h3 span{
		display:block;
	}
	#success dt{
		font-size: 15px;
	}
	#success ul.result{
		list-style-type:disc;
		margin-left:2em;
	}
	
	.project_page_link{
		width: 230px;
		height: auto;
		margin: 0 auto;
		padding: 10px 0 10px;
	}
	.project_page_link img{
		width: 100%;
	}


/*-----------------------------------------------------------------
	flow
-----------------------------------------------------------------*/
#flow{
	margin: 0 10px;
	padding: 20px 0;
	text-align:center;
}
#flow div.flow{
	position:relative;
	clear: both;
	height:auto;
	margin: 0 auto 20px;
	padding:0 0 20px;
	text-align:left;
	border-bottom:solid 1px #CCC;
}
	.flow:before {
	  border-top-width: 15px;
	  border-right-width: 20px;
	  border-bottom-width: 0;
	  border-left-width: 20px;
	  border-color: #CCC transparent;
	  border-style: solid;
	  display: block;
	  position: absolute;
	  bottom: -16px;
	  left: 50%;
	  width: 0;
	  height: 0;
	  margin-left: -20px;
	  content: "";
	}
	.flow:after {
	  border-top-width: 15px;
	  border-right-width: 20px;
	  border-bottom-width: 0;
	  border-left-width: 20px;
	  border-color: #FFF transparent;
	  border-style: solid;
	  display: block;
	  position: absolute;
	  bottom: -15px;
	  left: 50%;
	  width: 0;
	  height: 0;
	  margin-left: -20px;
	  content: "";
	}
.flow p{
	width: 120px;
	margin: 0 auto 10px;
}
.flow p img{
	width: 100%;
}
.flow dl{
}
	.flow dt{
		padding-left: 1.5em;
		padding-bottom: 5px;
		color:#FF8300;
		font-size: 15px;
		font-weight: bold;
		text-indent: -1.5em;
		line-height: 1.4;
	}
	.flow dd{
		line-height: 1.6;
	}


/*-----------------------------------------------------------------
	link
-----------------------------------------------------------------*/
#link{
	width:100%;
	margin: 0 auto;
	padding: 20px 0;
	text-align:center;
}
	#link p{
		margin: 0 10px;
	}
	#link img{
		width: 100%;
	}


/*-----------------------------------------------------------------
	footer
-----------------------------------------------------------------*/
#footer{
	width:100%;
}
#footer p{
	padding: 10px 0;
	font-size:60%;
	font-weight:bold;
	text-align:center;
}
