@charset "UTF-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}
/*
ここからリセットCSS
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/

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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	/* [disabled]background:transparent; */
}
ul {
	list-style:none;
}
body {
	line-height:1;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
	vertical-align:middle;
}
/*ここまでリセットCSS*/


#wrapper {
    position: relative;
	z-index:1;
}

/*流用CSS*/
h3{
	color:#255691;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
p{
	font-family:"ヒラギノ明朝 Pro W3","ＭＳ Ｐ明朝", "MS PMincho", "Hiragino Mincho Pro", serifl;
}


.s_title{
	margin-top:50px;
	margin-bottom:50px;
}
.bottom_space {
	margin-bottom:10px;
}
.clear{
	clear:both;
}
.center{
	text-align:center;
}
.contents{
	width:960px;
	margin:auto;
}
.contents_works{
	width:780px;
	margin:auto;
	height:250px;
	background-repeat:repeat;
	background-position:center;
	margin-bottom:50px;
}
/*トップの背景画像*/
.header_fix{
	width:100%;
	height:750px;
	z-index:2;
	background-image:url(../img/04-works1/works1-img01.jpg);
	background-repeat:no-repeat;
	background-position: center center;
	background-clip: border-box;
	background-origin: padding-box;
	background-size: cover;
	text-align:center;
	position:relative;
}

#on_demand{
	width:100%;
	height:289px;
	background-color:#DCDCDD;
}
#on_demand img{
	
	padding-top:30px;
	padding-bottom:30px;
}
/*フェードインアニメーション関係*/
.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}

.fadeInSide {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInSide;
 animation-name: fadeInSide;
 visibility: visible !important;
}

.fadeInSide2 {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInSide2;
 animation-name: fadeInSide2;
 visibility: visible !important;
}


@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(50px); }
 100% { opacity: 1; -webkit-transform: translateY(0px); }

}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(100px); -ms-transform: translateY(100px); transform: translateY(100px); }
 /*どこの位置から始まるか上の場合元の位置から50pxさがったばしょから始まる*/
 100% { opacity: 1; -webkit-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); }
/*終了位置*/
}

@-webkit-keyframes fadeInSide {
 0% { opacity: 0; -webkit-transform: translateY(50px); }
 100% { opacity: 1; -webkit-transform: translateY(0px); }

}
@keyframes fadeInSide {
 0% { opacity: 0; -webkit-transform: translateX(200px); -ms-transform: translateX(200px); transform: translateX(200px); }
 /*どこの位置から始まるか上の場合元の位置から50pxさがったばしょから始まる*/
 100% { opacity: 1; -webkit-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); }
/*終了位置*/
}

@-webkit-keyframes fadeInSide2 {
 0% { opacity: 0; -webkit-transform: translateY(50px); }
 100% { opacity: 1; -webkit-transform: translateY(0px); }

}
@keyframes fadeInSide2 {
 0% { opacity: 0; -webkit-transform: translateX(-200px); -ms-transform: translateX(-200px); transform: translateX(-200px); }
 /*どこの位置から始まるか上の場合元の位置から50pxさがったばしょから始まる*/
 100% { opacity: 1; -webkit-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); }
/*終了位置*/
}
/*ここまでアニメーション*/


/*pege-topトップへ戻るボタン*/
#page-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    font-size: 77%;
	z-index:100;
}
#page-top a {
	padding:0;
	width:50px;
	height:50px;
	background-repeat:no-repeat;
	background-image:url(../img/img_pageicon.png);
	background-position:center;
	background-size:cover;
    text-decoration: none;
    color: #fff;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
	background-image:url(../img/img_pageicon_over.png);
	
}



/*ヘッダー内のナビ*/
#global_nav a{
	display:block;
}

.header_nav a{
	width:100px;
	height:40px;
	margin-left:48px;
}

#head_nav1,#head_nav2,#head_nav3,#head_nav4,#head_nav5,#head_nav6{
	background-position:center;
	background-repeat:no-repeat;
}

#head_nav1 a{
	margin-left:60px;
	background-image:url(../img/01_top_page/1_header/top_icon07.png);
}
#head_nav2 a{
	background-image:url(../img/01_top_page/1_header/top_icon02.png);
}
#head_nav3 a{
	background-image:url(../img/01_top_page/1_header/top_icon03.png);
}
#head_nav4 a{
	background-image:url(../img/01_top_page/1_header/top_icon04.png);
}
#head_nav5 a{
	background-image:url(../img/01_top_page/1_header/top_icon05.png);
}
#head_nav6 a{
	background-image:url(../img/01_top_page/1_header/top_icon06.png);
}
#head_nav1 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon07_over.png);
}
#head_nav2 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon02_over.png);
}
#head_nav3 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon03_over.png);
}
#head_nav4 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon04_over.png);
}
#head_nav5 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon05_over.png);
}
#head_nav6 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon06_over.png);
}

.fixed2 #head_nav1 a{
	background-image:url(../img/01_top_page/1_header/top_icon07_bk.png);
}
.fixed2 #head_nav2 a{
	background-image:url(../img/01_top_page/1_header/top_icon02_bk.png);
}
.fixed2 #head_nav3 a{
	background-image:url(../img/01_top_page/1_header/top_icon03_bk.png);
}
.fixed2 #head_nav4 a{
	background-image:url(../img/01_top_page/1_header/top_icon04_bk.png);
}
.fixed2 #head_nav5 a{
	background-image:url(../img/01_top_page/1_header/top_icon05_bk.png);
}
.fixed2 #head_nav6 a{
	background-image:url(../img/01_top_page/1_header/top_icon06_bk.png);
}
.fixed2 #head_nav1 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon07_over.png);
}
.fixed2 #head_nav2 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon02_over.png);
}
.fixed2 #head_nav3 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon03_over.png);
}
.fixed2 #head_nav4 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon04_over.png);
}
.fixed2 #head_nav5 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon05_over.png);
}
.fixed2 #head_nav6 a:hover{
	background-image:url(../img/01_top_page/1_header/top_icon06_over.png);
}

li{
	float:left;
	z-index:1000;
}

.fixed {
    position: fixed;
    top: 0;
    z-index: 145;
	left:0;
	right:0;
}
.fixed2{
	width:100%;
	background-color:rgba(255,255,255,0.98);
	box-shadow: 0.5px 0.5px 0.5px 0.5px rgba(100,100,100,0.2);
}
.fixed2 #nav_wrapper{
	width:960px;
	margin:auto;
}

.center_main{
	position:absolute;
	top: 300px;
	left: 0;
	right: 0;
}

/*ここまでヘッダー関係のCSS*/


/*ここからabout_us関係*/

/*table関係*/
table{
	margin-top:-10px;
	margin-bottom:50px;
	background-color:#DCDCDD;
	width:50%;
	border-collapse: separate;
	padding-top:30px;
	padding-bottom:30px;
	float:left;
	font-family:"ヒラギノ明朝 Pro W3","ＭＳ Ｐ明朝", "MS PMincho",  "Hiragino Mincho Pro", serif;
	font-size:13px;
}

tr{
	height:30px;
}
.stable{
	width:20%;
	text-align:right;
}
.damy{
	width:10%;
}
.ltable{
	width:50%;
	padding-left:10%;
}

.table_title {
	color:#255691;
	font-size:18px;
	height:50px;
}
.border{
	border-left:solid #255691;
}
/*ここまでtable関係*/
#gyou8{
	line-height:28px;
}
/*ここまでabout_us関係*/

/*contactここから*/
#top_contact {
	width:100%;
	background-color:#255691;
	text-align:center;
}
#top_contact p {
	padding-top:30px;
}
#contact_box a{
	display:block;
	margin:auto;
	position:absolute;
	top:145px;
	left:379px;
}
#top_contact_p{
	padding-bottom:30px;
}
/*contactここまで*/

/*フッターここから*/
footer {
	float:left;
	width:100%;
	background-color:#DCDCDD;
	text-align:center;
}
footer p{
	padding:20px;
	font-size:13px;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
/*フッターここまで*/
#s_sitlepaddingbottom0 {
	margin-bottom:0;
}
