/*
 :title "common stylesheet";
 :shortdesc "Common stylesheet for HTML pages of this site";
*/


/* ------------------------------------------------------------------------- */
/* clear
/* ------------------------------------------------------------------------- */

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, ins, kbd, q, samp,
small, strong, var,
b,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption,
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;
	background:transparent;
}
img{
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	box-sizing: border-box;
}

/*clearfix*/
.floatcontainer:after{
	content: "."; 
	display: block;
	height: 0;
	font-size:0;
	clear: both;
	visibility:hidden;
}	
.floatcontainer{display: inline-block;} 

/* Hides from IE Mac \*/
* html .floatcontainer {height: 1%;}
.floatcontainer{display:block;}
/* End Hack */ 

/*行の高さをフォントサイズと同じにしています*/
body {
	line-height:1;
	-webkit-text-size-adjust: 100%;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
	list-style:none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
	quotes:none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

/* a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	outline: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
	background-color:#ff9;
	color:#000; 
	font-style:italic;
	font-weight:bold;
}

/* テキストに打ち消し線が付くようにしています*/
del {
		text-decoration: line-through;
}

/* IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
		border-bottom:1px dotted;
		cursor:help;
}

/* 隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
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;
}
 
/* 要素のフォントスタイルをリセットしています*/
dl {
	font-style: normal;
}



/* ------------------------------------------------------------------------- */
/* base
/* ------------------------------------------------------------------------- */

body{
	width: 100%;
	min-width: 1000px;
	text-align: center;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

#header,
#container{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	line-height: 1.5em;
	color: #000;
}

#header_in,
#fixedbox_in,
#primary,
#footer_in{
	width: 1000px;
	margin: auto;
}

#primary{
	min-height: 600px; /* fixedbox */
}

#footer{
	background: #e3e3e3;
}

address{
	line-height: 3em;
	text-align: center;
	color: #4d4d4d;
	font-size: 14px;
	font-style: normal;
}


/* SP */
@media only screen and (max-width: 768px) {
	body{
		min-width: 320px;
		font-size: 90%;
	}
	
	#header_in,
	#fixedbox_in,
	#primary,
	#footer_in{
		width: 100%;
		margin: auto;
	}
	
	#primary{
		padding: 0 10px;
		width: calc(100% - 20px);
	}
	
	address{
		font-size: 10px;
	}
}


/* ------------------------------------------------------------------------- */
/* 共通スタイル
/* ------------------------------------------------------------------------- */

/* SP */
@media only screen and (max-width: 768px) {
	h2 img{
		width: 40%;
		max-width: 185px;
	}
}


/* テキスト
--------------------------------------------------------- */
#primary p{
	text-align: left;
}

.kome{
	text-indent: -1em;
	padding-left: 1em;
}

.align_left{
	text-align: left;
}
.align_center{
	text-align: center;
}
.align_right{
	text-align: right;
}

.focus{
	padding: 10px 15px;
	margin: 10px auto;
	background: #f4f4f4;
}

.attention{
	padding: 10px 15px;
	margin: 10px auto;
	background-color: #ffd9d4;
	border-radius: 7px;
}

.cf:after{
	content:" ";
	display:block;
	clear:both;
}

.text_strong{
	margin: 0 2px;
	padding: 0 15px;
	background: #f6f091;
	border-radius: 10px;
}
.text_blue{
	color: #07569f;
}

.text_red{
	color: #C21313;
}

.text_deco{
	font-weight: bold;
	font-size: 120%;
	color: #666;
}

.bikou{
	font-size: 80%;
}

.sup_text{
	font-size: 70%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
	}

.tag_color{
	margin-left: 0.5em;
	border-radius: 2px;/* CSS3草案 */  
	-webkit-border-radius: 2px;/* Safari,Google Chrome用 */  
	-moz-border-radius: 2px;/* Firefox用 */  
	padding: 0 4px;
	color: #fff;
	font-size: 85%;
	}

.body_digital .tag_color{
	background: #90278C;
	}
.body_server .tag_color{
	background: #F8AD3B;
	}
.body_system .tag_color{
	background: #F9EB21;
	color: #4d4d4d;
	}
.body_web .tag_color{
	background: #29A8DF;
	}
.body_dtp .tag_color{
	background: #EA1E79;
	}


/* リスト
--------------------------------------------------------- */
#primary ol,
#primary ul{
	text-align: left;
}

.basic_ul{
	margin: 10px 0;
	margin-left: 1.5em;
}
.basic_ul li{
	margin: 3px 0;
}

.basic_ol{
	margin: 10px 0;
	margin-left: 1.5em;
}
.basic_ol li{
	margin: 3px 0;
}

.no_list{
	list-style: none;
	margin-left: 0;
}

.basic_dl dt{
	clear: both;
	color: #666;
	font-size: 18px;
	font-weight: bold;
	background: #edf3f4;
	padding: 5px;
	margin: 10px auto 10px;
}
.basic_dl dd{
	margin-bottom: 30px;
	padding: 5px;
}


/* テーブル
--------------------------------------------------------- */
#primary table{
	max-width: 100%;
	font-size: 100%;
}
#primary table th,td{
	padding: 10px;
	font-weight: normal;
}

.basic_table{
	margin: 10px 0;
}

.basic_table th, .basic_table td{
	border: 1px solid #ccc;
	padding: 10px;
}

.basic_table th{
	background-color: #f5f5f5;
	vertical-align: middle;
	text-align: left;
}

/* リンク
--------------------------------------------------------- */
.btn_link{
	color: #29a8df;
	border: 1px solid #29a8df;
	text-decoration: none;
	border-radius: 19px;
	height: 37px;
	line-height: 37px;
	margin: 10px 0;
	padding: 0 45px 0 30px;
	
	/* Fade */
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	overflow: hidden;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: color, background;
	transition-property: color, background;
}
.btn_link:hover, .btn_link:focus, .btn_link:active {
	background :#29a8df;
	color: white;
}

.btn_link_pdf span{
	padding-right: 20px;
	background-image: url(image/icon_pdf.gif);
	background-position: right 0;
	background-repeat: no-repeat;
	padding-bottom: 3px;
}

.btn_link_pdf{
	color: #29a8df;
	border: 1px solid #29a8df;
	text-decoration: none;
	height: auto;
	line-height: 37px;
	margin: 40px 0;
	padding: 0 45px 0 30px;
	
	/* Fade */
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition-property: color, background;
	transition-property: color, background;
}

.btn_link_pdf:hover{
	background: #29a8df;
	color: #fff;
	border: 1px solid #29a8df;
}

.go_gaibu{
	background: url(image/icon_gaibu_web.png) no-repeat right 5% center;
}

.list_btn_link{
	list-style: none;
}
.list_btn_link .btn_link{
	width: 90%;
	padding: 0 15px 0 15px;
}

/* 画像
--------------------------------------------------------- */
#primary img{
	max-width: 100%;
	height: auto;
}

.center{
	text-align: center;
	margin: 10px auto;
	display: block;
}

.right{
	float: right;
	margin-left: 15px;
}

.left{
	float: left;
	margin-right: 15px;
}

/* SP */
@media only screen and (max-width: 768px) {
	.right,
	.left{
		float: none;
		margin: auto;
		display: block;
		margin-bottom: 15px;
	}
}


/* ------------------------------------------------------------------------- */
/* header
/* ------------------------------------------------------------------------- */

h1{
	clear: both;
	text-align: center;
	display: table-cell;
	height: 110px;
	vertical-align: middle;
	width: 1000px;
}
h1 a{
	display: block;
	width: 77px;
	height: 77px;
	background: url(image/logo.png) no-repeat center center;
	margin: auto;
	text-indent: -9999px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
h1 a:hover{
	opacity:0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}


/* SP */
@media only screen and (max-width: 768px) {
	h1{
		height: 60px;
	}
	h1 a{
		background-size: contain;
		max-width: 47px;
		max-height: 40px;
	}
}



/* global_menu
--------------------------------------------------------- */
#fixedbox{
	background: #f5f5f5;
}
.fixed{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
	opacity: 0.95;
}

#global_menu ul{
	margin: 0;
	padding: 0;
	border-right: 1px solid  #e3e3e3;
	letter-spacing: -0.5em; /* 文字間を詰めて隙間を削除する */
	height: 90px;
}
#global_menu li{
	display: inline-block;
	float: left;
	box-sizing: border-box;
	border-left: 1px solid  #e3e3e3;
	letter-spacing: normal; /* 文字間を通常に戻す */
}
#global_menu li a{
	width: calc( 993px / 6 );
	height: calc( 90px - 3px );
	text-align: center;
	vertical-align: middle;
	font-size: 18px;
	color: #4d4d4d;
	text-decoration: none;
	font-weight: lighter;
}
#global_menu li a div{
	display: table-cell;
	width: calc( 993px / 6 );
	height: calc( 90px - 3px );
	text-align: center;
	vertical-align: middle;
}

#global_menu .home a{
	border-bottom: 3px solid #bf0606;
}
#global_menu .digital a{
	border-bottom: 3px solid #90278c;
}
#global_menu .server a{
	border-bottom: 3px solid #f8ad3b;
}
#global_menu .system a{
	border-bottom: 3px solid #f9eb21;
}
#global_menu .web a{
	border-bottom: 3px solid #29a8df;
}
#global_menu .dtp a{
	border-bottom: 3px solid #ea1e79;
}

/* Sweep To Top */
#global_menu li a{
	display: inline-block;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
#global_menu li a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #2098d1;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

#global_menu li.home a:before,
.body_home #global_menu li.home a{
	background: #bf0606;
	color: #fff;
}
#global_menu li.digital a:before,
.body_digital #global_menu li.digital a{
	background: #90278c;
	color: #fff;
}
#global_menu li.server a:before,
.body_server #global_menu li.server a{
	background: #f8ad3b;
	color: #fff;
}
#global_menu li.system a:before,
.body_system #global_menu li.system a{
	background: #f9eb21;
}
#global_menu li.web a:before,
.body_web #global_menu li.web a{
	background: #29a8df;
	color: #fff;
}
#global_menu li.dtp a:before,
.body_dtp #global_menu li.dtp a{
	background: #ea1e79;
	color: #fff;
}

#global_menu li a:hover, #global_menu li a:focus, #global_menu li a:active{
	color: white;
}
#global_menu li.system a:hover, #global_menu li.system a:focus, #global_menu li.system a:active{
	color: #000;
}
#global_menu li a:hover:before, #global_menu li a:focus:before, #global_menu li a:active:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}


#global_menu span:before{
	content: "\A";
	white-space: pre;
}


.navbg{
	position: absolute;
	display: none;
	background-color: rgba(0,0,0,0.8);
	min-height: 100%;
	width: 100%;
	z-index:10;
	opacity: 0;
}

#navToggle {
    display:none; /*通常時は非表示にしておきます*/
    position: absolute; /*bodyに対しての絶対位置指定です*/
    right:13px;
    top: 12px;
    width:30px;
    height:25px;
    cursor:pointer}
#navToggle > div {position:relative} /*spanの絶対位置指定の親にします*/
#navToggle span {
    display:block;
    position:absolute; /*#navToggle div に対して*/
    width:100%;
    border-bottom:solid 3px #999;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out}
#navToggle span:nth-child(1) {top:0}
#navToggle span:nth-child(2) {top:11px}
#navToggle span:nth-child(3) {top:22px}


#navToggle .navToggle_menu{
	position: relative;
	top: 31px;
	right: 0.5px;
	font-size: 10px;
}

.navToggle_menu:after {
	content: attr(data-txt-menu);
}
/* 開閉用ボタンがクリックされた時のスタイル */
.openNav .navToggle_menu:after {
	content: attr(data-txt-close);
}


/* SP */
@media only screen and (max-width: 768px) {
	.fixed{
		position: absolute;
	}
	
	#global_menu span:before{
		content: " ";
	}
	
	#fixedbox{
		width:100%;
		z-index:2;
	}
	#fixedbox nav {
		position: absolute; /*bodyに対しての絶対位置*/
		right:0;
		top: -515px; /*通常時はビュー外*/
		background:rgba(245,245,245,.95);
		width:100%;
		-webkit-transition:.5s ease-in-out; /*transitionで動きを*/
		-moz-transition:.5s ease-in-out;
		transition:.5s ease-in-out;
		text-align:left}
	#fixedbox ul {margin:0}
	#fixedbox ul li {
		display:block;
		margin:0;
	}
	#fixedbox ul li a {display:block}
	#fixedbox ul li::after {content:''}
	#fixedbox ul li:last-child {border-bottom:none}
	 
	/* Toggle(Button) */
	/*display:noneだったボタンを display:blockにして表示します*/
	#navToggle {display:block}
	 
	/* Click Toggle(Button) */
	  /*ここから jQueryで header要素に付けた「.openNav」を利用します*/
	  /*.openNavが付いた要素内のボタン（#navToggle）内のspanへの指定*/
	  /*最初のspanをマイナス45度に*/
	.openNav #navToggle span:nth-child(1) {
		top: 11px;
		-webkit-transform:rotate(-45deg);
		-moz-transform:rotate(-45deg);
		transform:rotate(-45deg)}
	  /*2番目と3番目のspanを45度に*/
	.openNav #navToggle span:nth-child(2),
	.openNav #navToggle span:nth-child(3) {
		top: 11px;
		-webkit-transform:rotate(45deg);
		-moz-transform:rotate(45deg);
		transform:rotate(45deg)}
	 
	/*header menu*/
	  /*.openNavが付いた要素の中のnavを 縦方向に351px移動（=表示される）*/
	.openNav nav{
		-moz-transform: translateY(575px);
		-webkit-transform: translateY(575px);
		transform: translateY(575px);
	}
	
	#global_menu{
		display: block;
		height: 235px;
		z-index: 10;
	}
	#global_menu ul{
		border-top: 1px solid #ccc;
		border-right: none;
	}
	#global_menu li{
		width: 100%;
		height: 38px;
		border-left: none;
		border-bottom: 1px solid #ccc !important;
	}
	#global_menu li a{
		border-bottom: none !important;
		width: 100%;
		height: 40px;
		line-height: 40px;
	}
	#global_menu li a div{
		display: block;
		width: 100%;
		height: 40px;
	}
	
	.sp_fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}
}



/* ------------------------------------------------------------------------- */
/* メイン画像
/* ------------------------------------------------------------------------- */

#main{
	z-index: -1;
}
#main_in{
	height: 170px;
	z-index: 1;
}
#main_in h2{
	color: #fff;
	font-size: 49px;
	font-weight: lighter;
	line-height: 170px;
}
.body_digital #main_in{
	background-image: url(image/bg_h2_web.jpg);
}
.body_server #main_in{
	background-image: url(image/bg_h2_web.jpg);
}
.body_system #main_in{
	background-image: url(image/bg_h2_web.jpg);
}
.body_web #main_in{
	background-image: url(image/bg_h2_web.jpg);
}
.body_dtp #main_in{
	background-image: url(image/bg_h2_web.jpg);
}


/* SP */
@media only screen and (max-width: 768px) {
	#main_in{
		height: 100px;
		background-size: cover;
	}
	#main_in h2{
		font-size: 250%;
		line-height: 100px;
	}
}



/* ------------------------------------------------------------------------- */
/* side_content (pagetop)
/* ------------------------------------------------------------------------- */
.side_content a{
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	display: block;
	width: 100px;
	height: 80px;
	position: fixed;
	right: 0;
	text-indent: -9999px;
	z-index: 100;
}
.side_content a:hover{
	opacity: 0.7;
}
/* パララックス時
.body_home .side_content a{
	right: 17px;
}
*/
.side_cotact{
	background: #bf0606 url(image/icon_contact.png) no-repeat center center;
	bottom: 80px;
}

.pagetop{
	background: #666 url(image/icon_pagetop.png) no-repeat center center;
	bottom: 0;
}


/* SP */
@media only screen and (max-width: 768px) {
	.side_content a{
		width: 50px;
		height: 40px;
		background-size: 40%;
	}
	.side_cotact{
		bottom: 140px;
	}
	.pagetop{
		bottom: 100px;
	}
}



/* ------------------------------------------------------------------------- */
/* footer
/* ------------------------------------------------------------------------- */

#footer{
	margin-top: 165px;
	padding-top: 25px;
}

.foot_logo img{
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.foot_logo:hover img{
	opacity:0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}
.foot_logo img{
	margin-bottom: 25px;
}

#footer_office{
	letter-spacing: -0.5em; /* 文字間を詰めて隙間を削除する */
}
#footer_office > div{
	display: inline-block;
	padding-left: 40px;
	width: 265px;
	font-size: 14px;
	color: #4d4d4d;
	letter-spacing: 1.8px;
	font-weight: bold;
	text-align: left;
}
#footer_office span{
	display: block;
	margin-top: 3px;
	font-size: 30px;
	letter-spacing: 2.0px;
}
#footer_office span:not(:target){ /* IE9 10 */
	font-size: 30px\9;
	letter-spacing: 1px\9;
}
.office_saga{
	background: url(image/icon_foot_saga.png) no-repeat left top;
}
.office_tokyo{
	background: url(image/icon_foot_tokyo.png) no-repeat 5px top;
}
.office_fukuoka{
	background: url(image/icon_foot_fukuoka.png) no-repeat 5px top;
}

#footer_office a{
	color: #4d4d4d;
}

.foot_contact{
	display: block;
	margin: 15px auto 35px;
	width: 635px;
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	background-color: #bf0606;
	background-image:
		url(image/icon_contact.png),
		url(image/arrow_white.png);
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		138px center,
		right 118px center;
	letter-spacing: 1.8px;
	text-indent: 30px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.foot_contact:hover{
	opacity: 0.7;
}

/* SP */
@media only screen and (max-width: 768px) {
	#footer{
		margin-top: 80px;
	}
	
	.foot_logo img{
		width: 18%;
		max-width: 60px;
	}
	
	#footer_office{
		width: 93%;
		margin: auto;
	}
	#footer_office > div{
		background-size: contain;
		width: 160px;
		padding-left: 28px;
		font-size: 75%;
	}
	#footer_office span{
		font-size: 160% !important;
		letter-spacing: 1.5px !important;
	}
	
	.foot_contact{
		margin: 10px auto 15px;
		width: 93%;
		max-width: 635px;
		height: 50px;
		line-height: 50px;
		font-size: 15px;
		background-position:
			10% center,
			right 7% center;
	}
}
@media only screen and (max-width: 460px) {
	#footer{
		margin-top: 50px;
	}
	
	#footer_office > div{
		display: block;
		margin: 0 auto;
		padding-left: 30px;
		background-position: 5px top;
	}
	#footer_office div:first-child, #footer_office div:nth-child(2){
		margin: 0 auto 8px;
	}
	
}
@media only screen and (max-width: 375px) {
	.foot_contact{
		letter-spacing: normal;
		background-position:
			5% center,
			right 2% center;
	}
}



/* ------------------------------------------------------------------------- */
/* 2階層目以降 共通
/* ------------------------------------------------------------------------- */

#text{
	clear: both;
	text-align: left;
	padding-bottom: 50px;
}

.content{
	padding-top: 35px;
}


/* SP */
@media only screen and (max-width: 500px) {
	.content{
		padding-top: 20px;
	}
}


/* 2階層目以降_ぱんくずリスト
---------------------------------------------------------- */
#breadline{
	width: 1000px;
	margin: 5px auto 5px;
	font-weight: 500;
}
#breadline ul li{
	list-style: none;
	display: inline-block;
	margin-right: 3px;
}
#breadline ul li a{
	color: #969696;
	margin-right: 6px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
#breadline ul li a:hover{
	text-decoration: none;
}
#breadline ul li:last-child{
	color: #969696;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 54em;
	vertical-align: bottom;
}
#breadline ul li:after{
	content: '>';
}
#breadline ul li:last-child:after{
	content: '';
}


/* SP */
@media only screen and (max-width: 768px) {
	#breadline {
		display: none;
	}
}


/* 2階層目以降 title
--------------------------------------------------------- */
.second h3{
	padding: 6px 20px;
	margin: 20px 0 25px;
	font-size: 24px;
	text-align: left;
}

.third h3{
	display: inline-block;
	padding: 6px 20px;
	margin: 20px auto 120px;
	line-height: 1.5em;
	color: #4d4d4d;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 1.8px;
}

.third h4{
	clear: both;
	line-height: 2em;
	min-height: 50px;
	margin: 70px auto 10px;
	padding: 0 5px 5px 0;
	color: #4d4d4d;
	font-weight: bold;
	font-size: 23px;
	text-align: left;
}

.third h5{
	clear: both;
	font-size: 21px;
	font-weight: bold;
	margin: 30px auto 10px;
	padding: 0 5px 5px 0;
	color: #4d4d4d;
	text-align: left;
}

.body_digital h3{
	border-bottom: 2px solid #90278c;
}
.body_server h3{
	border-bottom: 2px solid #f8ad3b;
}

.body_server h4{
	border-bottom: 1px dotted #f8ad3b;
}

.body_system h3{
	border-bottom: 2px solid #f9eb21;
}
.body_web h3{
	border-bottom: 2px solid #29a8df;
}
.body_dtp h3{
	border-bottom: 2px solid #ea1e79;
}

/* SP */
@media only screen and (max-width: 768px) {
	.second h3{
		margin-top: 0;
		font-size: 135%;
	}
	.third h3{
		margin: 0 auto 70px;
		line-height: 1.4em;
		font-size: 135%;
	}
}
@media only screen and (max-width: 500px) {
	.second h3{
		padding: 6px 5px;
		font-size: 120%;
	}
	.third h3{
		margin: 0 auto 40px;
		font-size: 120%;
	}
}


/* 2階層目以降 一覧へ戻る
--------------------------------------------------------- */
.go_index{
	display: inline-block;
	margin-top: 95px;
	padding: 15px 40px;
	opacity: 0.85;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	font-weight: lighter;
	letter-spacing: 1.8px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.go_index:hover{
	opacity: 0.65;
}

.body_digital .go_index{
	background: #90278c;
}
.body_server .go_index{
	background: #f8ad3b;
}
.body_system .go_index{
	background: #f9eb21;
	color: #4d4d4d;
}
.body_web .go_index{
	background: #29a8df;
}
.body_dtp .go_index{
	background: #ea1e79;
}


/* SP */
@media only screen and (max-width: 768px) {
	.go_index{
		margin-top: 50px;
		font-size: 90%;
	}
}


/* pager
--------------------------------------------------------- */
.pager{
	clear: both;
	margin: 0px;
	padding: 80px 0;
	text-align: center;
	font-size: 14px;
}
.pager a, .pager span{
	border: 1px solid #609fb0;
	color: #609fb0;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 3px;
	text-decoration: none;
	background-color: #FFF;
	cursor: pointer;
	border-radius: 5px;
}
.pager a:hover,
.pager span.current{
	color: #fff;
	background-color: #609fb0;
}
.pager a.go_list{
	padding: 5px 30px;
}


/* レイアウトブロック
--------------------------------------------------------- */
.block_2col,
.block_3col{
	clear: both;
	overflow: hidden;
}
.block_2col > div{
	width: 49%;
	padding: 0;
	margin-right: 2%;
	margin-bottom: 5%;
	float: left;
}
.block_2col > div:nth-child(even){
	margin-right: 0;
}

.block_3col{
	margin-right: -3.333%;
}
.block_3col > div{
	width: 30%;
	padding: 0;
	margin-right: 3.333%;
	margin-bottom: 3%;
	float: left;
}

/* 写真等box */
.ul_box_2col,
.ul_box_3col{
	display: flex;
	flex-wrap: wrap;
	clear: both;
	overflow: hidden;
	width: 100%;
	list-style: none;
	text-align: center;
}
.ul_box_2col > li,
.ul_box_3col > li{
	box-sizing: border-box;
	margin-right: 2%;
}
.ul_box_2col > li{
	width: 49%;
}
.ul_box_3col > li{
	width: 32%;
}

.ul_box_3col > li > h4{
	margin-top: 0px;
}

/* レイアウトブロック・写真等box title */
.block_2col .title,
.block_3col .title,
.ul_box_2col > li .title,
.ul_box_3col > li .title,
.ul_box_2col > li h4,
.ul_box_3col > li h4{
	position: relative;
	background-color: #D9E6E8;
	padding: 0.5em 15px;
	border-radius: 4px;
	margin-bottom: 15px;
	text-align: left;
	color: #666;
	font-size: 18px;
	font-weight: normal;
	border-bottom: none;
}
.block_2col .title::after,
.block_3col .title::after,
.ul_box_2col > li .title::after,
.ul_box_3col > li .title::after,
.ul_box_2col > li h4::after,
.ul_box_3col > li h4::after{
  position: absolute;
  top: 100%;
  left: 2em;
  content: '';
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top: 10px solid #D9E6E8;
}

/* clerfix */
.clear:after {
	content:"";
	display:block;
	overflow:hidden;
}
.clear:after {
	clear:both;
}
.clear {
	zoom:1;
}

/* PC */
@media only screen and (min-width: 767px) {
	.ul_box_2col > li:nth-child(2n),
	.ul_box_3col > li:nth-child(3n){
		margin-right: 0;
	}
}


/* SP */
@media only screen and (max-width: 768px) {
	.box_contact{
		width: 95%;
		padding: 20px 10px;
	}
	
	.block_2col{
		margin-right: 0;
	}
	
	.block_2col > div{
		width: 100%;
		padding: 0;
		margin-right: 0;
		margin-bottom: 20px;
		float: none;
	}
	
	.ul_box_3col > li{
		width: 49%;
	}
	
	.ul_box_3col > li:nth-child(2n){
		margin-right: 0;
	}	
	
	.block_2col .title,
	.block_3col .title,
	.ul_box_2col > li .title,
	.ul_box_3col > li .title,
	.ul_box_2col > li h4,
	.ul_box_3col > li h4{
		font-size: 14px;
	}
}



/* ------------------------------------------------------------------------- */
/* Web以外の2階層目 index
/* ------------------------------------------------------------------------- */
.ul_index{
	margin-bottom: 100px;
}

.ul_index li{
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-bottom: 40px;
}

.ul_index a{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	text-decoration: none;
}

.ul_index img,
.ul_index a img{
	display: block;
	box-sizing: border-box;
	border: 1px solid #adadad;
}

.ul_box_3col.ul_index a span{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: rgba(41, 168, 223, 0.8);
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	padding:15px;
	width: 100%;
	height: 0px;
	overflow: hidden;
	opacity: 0;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	box-sizing: border-box;
	}
	
.ul_index a:hover span{
	height: 100%;
	opacity: 1;
}

.ul_index div{
	min-height: 3em;
	color: #4d4d4d;
	font-weight: lighter;
	margin-top: auto;
	padding: 5px ;
	text-align: center;
}

.ul_index.box_movie a:hover span{
	opacity: 1;
}

.body_server .ul_index a:hover span,
.body_system .ul_index a:hover span {
	opacity: 1;
}

.body_digital .ul_box_3col.ul_index a span{
	background: rgba(144, 39, 140, 0.8);
}
.body_server .ul_box_3col.ul_index a span{
	background: rgba(248, 173, 59, 0.8);
}
.body_system .ul_box_3col.ul_index a span{
	background: rgba(249, 235, 33, 0.8);
	color: #4d4d4d;
}
.body_dtp .ul_box_3col.ul_index a span{
	background: rgba(234, 30, 121, 0.8);
}
	
.body_digital .ul_index a span.view_site,
.body_server .ul_index a span.view_site,
.body_dtp .ul_index a span.view_site {
	background-image: url(image/icon_gaibu_white.png);
	background-repeat: no-repeat;
	background-position: 70% center;
}

.body_system .ul_index a span.view_site{
	background-image: url(image/icon_gaibu_system.png);
	background-repeat: no-repeat;
	background-position: 70% center;
}

.body_digital .ul_box_3col.ul_index .go_gaibu{
	background: url(image/icon_gaibu_digital.png) no-repeat right center;
	padding-right: 30px;
	}

.body_system .ul_box_3col.ul_index .go_gaibu{
	background: url(image/icon_gaibu_system.png) no-repeat right center;
	padding-right: 30px;
}

.body_web .ff-items.cf .go_gaibu{
	background: url(image/icon_gaibu_web.png) no-repeat right center;
	padding-right: 30px;
}

/* PC */
@media only screen and (min-width: 767px) {
	.ul_index a{
		min-height: 183px;
	}
}

/* SP */
@media only screen and (max-width: 768px) {
	.ul_index{
		margin-bottom: 40px;
	}
	
	.ul_index li {
		margin-bottom: 24px;
	}
	
	.ul_index div{
		min-height:inherit;
		margin-top: 0;
	}

	.body_digital .ul_index a span,
	.body_server .ul_index a span,
	.body_system .ul_index a span,
	.body_dtp .ul_index a span {
		display: none;
	}	
}




/* ------------------------------------------------------------------------- */
/* Web
/* ------------------------------------------------------------------------- */

/* index
--------------------------------------------------------- */
.ff-container{
	margin-top: 25px;
}
.ff-container label{
	display: inline-block;
	width: 185px;
	height: 60px;
	margin: 0 12.5px 20px 0;
	cursor: pointer;
	color: #fff;
	font-weight: lighter;
	letter-spacing: 1.8px;
	line-height: 60px;
	background: #7fcbec;
}
.ff-container label:nth-child(5n){
	margin-right: 0;
}
.ff-container input.ff-selector-type-all:checked ~ label.ff-label-type-all,
.ff-container input.ff-selector-type-1:checked ~ label.ff-label-type-1,
.ff-container input.ff-selector-type-2:checked ~ label.ff-label-type-2,
.ff-container input.ff-selector-type-3:checked ~ label.ff-label-type-3,
.ff-container input.ff-selector-type-4:checked ~ label.ff-label-type-4,
.ff-container input.ff-selector-type-5:checked ~ label.ff-label-type-5,
.ff-container input.ff-selector-type-6:checked ~ label.ff-label-type-6,
.ff-container input.ff-selector-type-7:checked ~ label.ff-label-type-7,
.ff-container input.ff-selector-type-8:checked ~ label.ff-label-type-8,
.ff-container input.ff-selector-type-9:checked ~ label.ff-label-type-9{
	background: #29a8df;
	color: #fff;
}
.ff-container input{
	display: none;
}

.clr{
	clear: both;
	display: block;
	margin: 15px auto 0;
	height: 12px;
	width: 996px;
	background: url(image/bg_stripe.png);
}


.ff-items{
	position: relative;
	margin: 20px auto 0;
	padding-top: 20px;
}
.ff-items a{
	display: block;
	position: relative;
	background: #fff;
	margin: auto;
	width: 326px;
	height: 203px;
	border: 1px solid #adadad;
}
.ff-items a span{
	display: block;
	background: rgba(41, 168, 223, 0.8);
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 91px 20px 18px;
	width: calc(326px - 40px); /* - padding */
	height: 0px;
	overflow: hidden;
	opacity: 0;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.ff-items a:hover span{
	height: calc(184px - 90px); /* - padding */
	height: 94px;
	opacity: 1;
}
.ff-items a span.view_site{
	background-image: url(image/icon_gaibu_white.png);
	background-repeat: no-repeat;
	background-position: 70% center;
}


.ff-items li img{
	display: block;
}

.ff-items li{
	margin: 0px;
	padding-bottom: 70px;
	float: left;
	height: 203px;
	width: calc(1000px / 3);
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	list-style: none;
}

.ff-items li > div{
	text-align: center;
	color: #4d4d4d;
	font-weight: lighter;
	width: 285px;
	margin: 10px auto 0;
}

.ff-container input.ff-selector-type-all:checked ~ .ff-items li{
	width: calc(1000px / 3);
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition: -webkit-transform 0.3s linear;
	-o-transition: -o-transform 0.3s linear;
	-ms-transition: -ms-transform 0.3s linear;
	transition: transform 0.3s linear;
}
.ff-container input.ff-selector-type-1:checked ~ .ff-items .ff-item-type-1,
.ff-container input.ff-selector-type-2:checked ~ .ff-items .ff-item-type-2,
.ff-container input.ff-selector-type-3:checked ~ .ff-items .ff-item-type-3,
.ff-container input.ff-selector-type-4:checked ~ .ff-items .ff-item-type-4,
.ff-container input.ff-selector-type-5:checked ~ .ff-items .ff-item-type-5,
.ff-container input.ff-selector-type-6:checked ~ .ff-items .ff-item-type-6,
.ff-container input.ff-selector-type-7:checked ~ .ff-items .ff-item-type-7,
.ff-container input.ff-selector-type-8:checked ~ .ff-items .ff-item-type-8,
.ff-container input.ff-selector-type-9:checked ~ .ff-items .ff-item-type-9
{
	-webkit-transition: -webkit-transform 0.3s linear, width 0s linear 0.3s;
	-moz-transition: -moz-transform 0.3s linear, width 0s linear 0.3s;
	-o-transition: -o-transform 0.3s linear, width 0s linear 0.3s;
	-ms-transition: -ms-transform 0.3s linear, width 0s linear 0.3s;
	transition: transform 0.3s linear, width 0s linear 0.3s;
	-webkit-animation: scaleUp 0.3s linear 0.4s forwards;
	-moz-animation: scaleUp 0.3s linear 0.4s forwards;
	-o-animation: scaleUp 0.3s linear 0.4s forwards;
	-ms-animation: scaleUp 0.3s linear 0.4s forwards;
	animation: scaleUp 0.3s linear 0.4s forwards;
}
.ff-container input.ff-selector-type-1:checked ~ .ff-items li:not(.ff-item-type-1),
.ff-container input.ff-selector-type-2:checked ~ .ff-items li:not(.ff-item-type-2),
.ff-container input.ff-selector-type-3:checked ~ .ff-items li:not(.ff-item-type-3),
.ff-container input.ff-selector-type-4:checked ~ .ff-items li:not(.ff-item-type-4),
.ff-container input.ff-selector-type-5:checked ~ .ff-items li:not(.ff-item-type-5),
.ff-container input.ff-selector-type-6:checked ~ .ff-items li:not(.ff-item-type-6),
.ff-container input.ff-selector-type-7:checked ~ .ff-items li:not(.ff-item-type-7),
.ff-container input.ff-selector-type-8:checked ~ .ff-items li:not(.ff-item-type-8),
.ff-container input.ff-selector-type-9:checked ~ .ff-items li:not(.ff-item-type-9)
{
	-webkit-animation: scaleDown 0.3s linear forwards;
	-moz-animation: scaleDown 0.3s linear forwards;
	-o-animation: scaleDown 0.3s linear forwards;
	-ms-animation: scaleDown 0.3s linear forwards;
	animation: scaleDown 0.3s linear forwards;
}
@-webkit-keyframes scaleUp {
	50% { width: calc(1000px / 3); -webkit-transform: scale(0,0); }
    100% { width: calc(1000px / 3); -webkit-transform: scale(1,1); }
}
@-webkit-keyframes scaleDown {
	0% { width: calc(1000px / 3);-webkit-transform: scale(1,1);}
	99% { width: calc(1000px / 3); -webkit-transform: scale(0,0);}
    100% { width: 0px; -webkit-transform: scale(0,0); }
}
@-moz-keyframes scaleUp {
	50% { width: calc(1000px / 3); -moz-transform: scale(0,0); }
    100% { width: calc(1000px / 3); -moz-transform: scale(1,1); }
}
@-moz-keyframes scaleDown {
	0% { width: calc(1000px / 3);-moz-transform: scale(1,1);}
	99% { width: calc(1000px / 3); -moz-transform: scale(0,0);}
    100% { width: 0px; -moz-transform: scale(0,0); }
}
@-o-keyframes scaleUp {
	50% { width: calc(1000px / 3); -o-transform: scale(0,0); }
    100% { width: calc(1000px / 3); -o-transform: scale(1,1); }
}
@-o-keyframes scaleDown {
	0% { width: calc(1000px / 3);-o-transform: scale(1,1);}
	99% { width: calc(1000px / 3); -o-transform: scale(0,0);}
    100% { width: 0px; -o-transform: scale(0,0); }
}
@-ms-keyframes scaleUp {
	50% { width: 333.33333333px; -ms-transform: scale(0,0); }
    100% { width: 333.33333333px; -ms-transform: scale(1,1); }
}
@-ms-keyframes scaleDown {
	0% { width: 333.33333333px;-ms-transform: scale(1,1);}
	99% { width: 333.33333333px; -ms-transform: scale(0,0);}
    100% { width: 0px; -ms-transform: scale(0,0); }
}
@keyframes scaleUp {
	50% { width: 333.333.33333333px; transform: scale(0,0); }
    100% { width: 333.33333333px; transform: scale(1,1); }
}
@keyframes scaleDown {
	0% { width: 333.33333333px; transform: scale(1,1);}
	99% { width: 333.33333333px; transform: scale(0,0);}
    100% { width: 0px; transform: scale(0,0); }
}

.body_web .ff-items.cf .span_icon_gaibu{
	background: url(image/icon_gaibu_web.png) no-repeat center right 5px;
}

/* SP */
@media only screen and (max-width: 768px) {
	.ff-container{
		margin-top: 15px;
	}
	.ff-container label{
		display: inline-block;
		width: 45%;
		height: 40px;
		margin: 0 5px 10px;
		letter-spacing: 1.8px;
		line-height: 40px;
		font-size: 90%;
	}
	.ff-container label:nth-child(5n){
		margin-right: 5px;
	}
	
	.clr{
		margin: 10px auto 0;
		width: 100%;
	}
	
	.ff-items{
		position: relative;
		margin: 20px auto 0;
		padding-top: 20px;
	}
	.ff-items a{
		position: relative;
		margin: auto;
		max-width: 326px;
		width: 90%;
		height: 184px;
		height: auto;
	}
	.ff-items a span{
		display: none;
	}
	
	.ff-items li{
		margin: 0px;
		padding-bottom: 70px;
		height: 184px;
		max-width: calc(1000px / 3);
		width: 99%;
	}
	
	.ff-items li > div{
		text-align: center;
		width: 285px;
		margin: 10px auto 0;
	}
	
	.ff-container input.ff-selector-type-all:checked ~ .ff-items li{
		max-width: calc(1000px / 3);
		width: 99%;
	}
	@-webkit-keyframes scaleUp {
		50% { max-width: calc(1000px / 3); width: 99%; -webkit-transform: scale(0,0); }
		100% { max-width: calc(1000px / 3); width: 99%; -webkit-transform: scale(1,1); }
	}
	@-webkit-keyframes scaleDown {
		0% { max-width: calc(1000px / 3); width: 99%;-webkit-transform: scale(1,1);}
		99% { max-width: calc(1000px / 3); width: 99%; -webkit-transform: scale(0,0);}
		100% { width: 0px; -webkit-transform: scale(0,0); }
	}
	@-moz-keyframes scaleUp {
		50% { max-width: calc(1000px / 3); width: 99%; -moz-transform: scale(0,0); }
		100% { max-width: calc(1000px / 3); width: 99%; -moz-transform: scale(1,1); }
	}
	@-moz-keyframes scaleDown {
		0% { max-width: calc(1000px / 3); width: 99%;-moz-transform: scale(1,1);}
		99% { max-width: calc(1000px / 3); width: 99%; -moz-transform: scale(0,0);}
		100% { width: 0px; -moz-transform: scale(0,0); }
	}
	@-o-keyframes scaleUp {
		50% { max-width: calc(1000px / 3); width: 99%; -o-transform: scale(0,0); }
		100% { max-width: calc(1000px / 3); width: 99%; -o-transform: scale(1,1); }
	}
	@-o-keyframes scaleDown {
		0% { max-width: calc(1000px / 3); width: 99%;-o-transform: scale(1,1);}
		99% { max-width: calc(1000px / 3); width: 99%; -o-transform: scale(0,0);}
		100% { width: 0px; -o-transform: scale(0,0); }
	}
	@-ms-keyframes scaleUp {
		50% { max-width: calc(1000px / 3); width: 99%; -ms-transform: scale(0,0); }
		100% { max-width: calc(1000px / 3); width: 99%; -ms-transform: scale(1,1); }
	}
	@-ms-keyframes scaleDown {
		0% { max-width: calc(1000px / 3); width: 99%;-ms-transform: scale(1,1);}
		99% { max-width: calc(1000px / 3); width: 99%; -ms-transform: scale(0,0);}
		100% { width: 0px; -ms-transform: scale(0,0); }
	}
	@keyframes scaleUp {
		50% { max-width: calc(1000px / 3); width: 99%; transform: scale(0,0); }
		100% { max-width: calc(1000px / 3); width: 99%; transform: scale(1,1); }
	}
	@keyframes scaleDown {
		0% { max-width: calc(1000px / 3); width: 99%; transform: scale(1,1);}
		99% {max- width: calc(1000px / 3); width: 99%; transform: scale(0,0);}
		100% { width: 0px; transform: scale(0,0); }
	}
}
@media only screen and (max-width: 680px) {
	.ff-items li{
/*		margin: 0 auto;
		float: none;
*/	}
}


/* Web 3階層目
--------------------------------------------------------- */
.content > img,
.introduction{
	display: inline-block;
}

.introduction{
	width: 420px;
	margin-left: 100px;
	vertical-align: top;
	text-align: left;
}

.a_site_name{
	font-size: 18px;
	font-weight: 500;
	color: #29a8df;
	letter-spacing: 1.8px;
	text-decoration: none;
	padding-right: 25px;
	background-image: url(image/icon_gaibu_web.png);
	background-repeat: no-repeat;
	background-position: center right;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.a_site_name:hover{
	opacity: 0.7;
}
.div_site_name{
	font-size: 18px;
	font-weight: 500;
	color: #29a8df;
	letter-spacing: 1.8px;
	text-decoration: none;
}

.web_url{
	font-weight: 500;
}

.icon_tag{
	margin: 10px 0 5px;
}
.icon_tag li{
	list-style: none;
	display: inline-block;
	padding: 3px 15px 1px;
	margin-bottom: 5px;
	border-radius: 14px;
	background: #29a8df;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1.8px;
	font-weight: 500;
}

.num_page{
	display: block;
	color: #666;
	font-size: 14px;
	font-weight: 500;
}

.site_content{
	margin-top: 35px;
	width: 415px;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
}

.more_page{
	margin: 155px auto 0;
}
.more_page ul{
	letter-spacing: -0.5em; /* 文字間を詰めて隙間を削除する */
}
.more_page li{
	display: inline-block;
	width: 50%;
	letter-spacing: normal; /* 文字間を通常に戻す */
	text-align: center;
	vertical-align: top;
	margin-top: 50px;
}
.more_page img{
	border: 1px solid #c9c9c9;
}
.more_page img.no_border{
	border: none;
}
.more_page li:first-child,
.more_page li:nth-of-type(2){
	margin-top: 0;
}


.more_page .ul_box_3col li{
	width: 32%;
	margin-right: 1%;
}

.more_page .ul_box_3col li:first-child,
.more_page .ul_box_3col li:nth-of-type(2),
.more_page .ul_box_3col li:nth-of-type(3){
	margin-top: 0;
}

.more_page .ul_box_3col li:nth-of-type(3){
	margin-right: 0;
}


.btn_link.web_gaibu{
	margin-top: 10px;
	background-image: url(image/icon_gaibu_web.png);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	}
.btn_link.web_gaibu:hover{
	background-image: url(image/icon_gaibu_white.png);
}



/* SP */
@media only screen and (max-width: 768px) {
	.introduction{
		width: auto;
		margin: 10px auto 0;
	}
	
	.web_url{
		word-break: break-word;
	}
	
	.icon_tag{
		margin: 10px 0 5px;
	}
	.icon_tag li{
		font-size: 70%;
	}
	
	.site_content{
		margin-top: 25px;
		width: auto;
		font-size: 98%;
		line-height: 1.7em;
	}
	
	.more_page{
		margin-top: 50px;
	}
	.more_page img{
		width: calc(90% - 2px);
	}

	.btn_link.web_gaibu{
		display: block;
		margin-top: 30px;
		text-align: center;
	}
}



/* ------------------------------------------------------------------------- */
/* Digital Contents
/* ------------------------------------------------------------------------- */

/* Digital Contents リンク */

.third.body_digital .btn_link{
	color: #8F278B;
	border: 1px solid #8F278B;
	background: #fff;
}

.third.body_digital .btn_link:hover{
	color: #fff;
	border: 1px solid #8F278B;
	background: #8F278B;
}

.third.body_digital .btn_link.go_gaibu{
	background: #fff url(image/icon_gaibu_digital.png) no-repeat right 5% center ;
}

.third.body_digital .btn_link.go_gaibu:hover{
	background: #8F278B url(image/icon_gaibu_white.png) no-repeat right 5% center ;
}


.third.body_digital .a_site_name{
	background-image: url(image/icon_gaibu_digital.png);
	color: #90278c;
	}
.third.body_digital .div_site_name{
	color: #90278c;
	display: inline-block;
}
.third.body_digital .icon_tag li{
	background: #90278c;
	}

.icon_tag_parent > ul{
	list-style: none;
	margin: 10px 0 5px;
}
.icon_tag_parent > ul > li{
	margin-bottom: 5px;
}
.icon_tag_parent > ul > li:last-child{
	margin-bottom: 0;
}
.icon_tag_parent ul.icon_tag{
	margin: 0;
}

.strong_title{
	display: block;
	margin: 30px 0 -5px;
	text-align: left;
}

/* ------------------------------------------------------------------------- */
/* Server_Network
/* ------------------------------------------------------------------------- */

/* Server Network リンク*/
.third.body_server .btn_link,
.third.body_server .btn_link_pdf{
	border: solid 1px #F7B044;
	color: #F7B044;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	}

.btn_link_pdf:hover{
	background: #F7B044;
	color: #Ffff !important;
	}

/* server_solutions */
.server_solutions .ul_box_3col.hosting{
	margin-top: 20px;
	}

	
.server_solutions .focus.eng_support{
	background-color: #C10E0E;
	text-align: center;
	margin: 40px 0 80px 0;
	padding: 20px 0;
	color: #fff;
	}

.server_solutions .focus.eng_support dt{
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 10px;
	}
	

.server_solutions .box_giga_box img{
	border: solid 1px #E1EBEE;
	}
	
.server_solutions .box_giga_box p{
	overflow: auto;
	}
	
.server_solutions .basic_table td{
	text-align: right;
}
	
.server_solutions .basic_table.table_row_5 th,
.server_solutions .basic_table.table_row_5 td{
	width: 200px;
	box-sizing: border-box;
}

/* SP */
@media only screen and (max-width: 768px) {
	
	.server_solutions .basic_table{
		width: 100%;
		}
	
	.server_solutions .basic_table th,
	.server_solutions .basic_table td{
		padding: 5px !important;
		font-size: 11px;
		}
		
	.server_solutions .ul_box_3col.hosting{
		margin: 40px 0 20px 0;
		}
		
	.server_solutions .ul_box_3col.hosting li{
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
		}
		
	.server_solutions .ul_box_3col.hosting dl dd:nth-child(3){
		text-align: left;
		height: auto;
		}
		
	.server_solutions .box_giga_box img {
		float: none;
		margin: 0 0 10px 0;
	}
}

/* nutanix */

ul.tab {
 border-bottom: 2px solid #f8ad3b;
	margin: 0 3px 0 0;
}

ul.tab li:last-child {
	margin-right: 0;
}

ul.tab li {
	border: 2px solid #f8ad3b;
	border-radius: 10px 10px 0 0;
	bottom: -2px;
	color: #4d4d4d;
	float: left;
	font-size: 21px;
	font-weight: bold;
	line-height: 2em;
	list-style-type: none;
	margin-right: 5px;
	position: relative;
	text-align: center;
	width: 325px
	}

ul.tab li a {
	color: #4d4d4d;
	display: block;
	box-sizing: border-box;
	padding: 5px;
	text-decoration: none;
	border-radius: 10px 10px 0 0;/* CSS3草案 */  
	-webkit-border-radius: 10px 10px 0 0;/* Safari,Google Chrome用 */  
	-moz-border-radius: 10px 10px 0 0;/* Firefox用 */  
}

ul.tab li.current,
ul.tab li:hover{
	background: #F8AD3B;
}

ul.tab li.current a span{
	color: #fff;
	border-bottom: 2px #FFF solid;
}

ul.tab li a:hover{
	color: #fff;
}

/* Nutanixとは */

.nutanix .box_about_nutanix{
	overflow: hidden;
	}


/* 弊社導入事例 */
.nutanix .import_bg dt,
.nutanix .import_bg dd{
	text-align: left;
	}

.nutanix .import_merit{
	text-align: left;
	}
	
.nutanix .import_merit .basic_dl dt{
	background: #F8B145;
	color: #fff;
	}


/* SP */
@media only screen and (max-width: 768px) {
	
	ul.tab {
		width: 100%;
		border-bottom: none;
	}
	
	ul.tab li {
		width: 100%;
		display: block;
		border-radius: 10px;/* CSS3草案 */  
		-webkit-border-radius: 10px;/* Safari,Google Chrome用 */  
		-moz-border-radius: 10px 10px;/* Firefox用 */  
		margin-bottom: 10px;
		}
		
	/* Nutanixとは */
	
	.ul_box_2col.select_reason li{
		width: 100%;
		margin-right: 0;
		}
			
	.ul_box_2col.select_reason li dl dd.left{
		text-align: center;
		}
		
	/* Nutanix ソリューション紹介 */
	
	.ul_box_2col.about_vdi li{
		width: 100%;
		}
			
	.ul_box_2col.about_vdi li dl dd.left{
		text-align: center;
		}
		
	/* 弊社導入事例 */
	.btn_link_pdf.report_nutanix{
		text-align:left;
		padding: 0 10px;
		}
	
	
}


/* ------------------------------------------------------------------------- */
/* System
/* ------------------------------------------------------------------------- */

.third.body_system .a_site_name{
	background: #f9eb21 url(image/icon_gaibu_system.png) no-repeat center right 5px;
	color: #000;
	padding: 5px 30px 5px 10px;
}
.third.body_system .div_site_name{
	color: #000;
	background-color: #f9eb21;
	padding: 5px 10px;
	display: inline-block;
}
.third.body_system .web_url{
	display: inline-block;
	margin-top: 10px;
}

.third.body_system .icon_tag li{
	background: #f9eb21;
	color: #4d4d4d;
	}


.box_point{
	margin-top: 30px;
	text-align: left;
}
.box_point strong{
	display: block;
	font-weight: bold;
	font-size: 17px;
	padding-top: 10px;
}
.box_point ul.basic_ul{
	list-style: none;
	margin-left: 0;
}
.box_point ul.basic_ul li{
	background: url(image/icon_list.png) no-repeat 3px 3px;
	padding-left: 25px;
	margin-bottom: 10px;
}



/* ------------------------------------------------------------------------- */
/* DTP
/* ------------------------------------------------------------------------- */

.third.body_dtp .a_site_name{
	background-image: url(image/icon_gaibu_dtp.png);
	color: #EB2980;
	}

.third.body_dtp .div_site_name{
	color: #EB2980;
	display: inline-block;
}

.third.body_dtp .icon_tag li{
	background: #EB2980;
	}

.third.body_dtp .deep h4{
	border-bottom: 1px dotted #EB2980;
	margin-bottom: 20px;
}
.third.body_dtp .deep h5{
	margin-top: 70px;
}
.third.body_dtp .deep h5.first{
	margin-top: 30px;
}



/* ------------------------------------------------------------------------- */
/* 印刷プレビュー
/* ------------------------------------------------------------------------- */
@media print{
	#fixedbox,
	#breadline,
	.go_index,
	.foot_logo,
	.foot_contact,
	.side_content{
		display: none !important;
	}
	
	#header,
	#header_in{
		float: left;
		width: 20%;
		height: 100px;
	}
	.body_digital #header{
		background: #90278c;
	}
	.body_server #header{
		background: #f8ad3b;
	}
	.body_system #header{
		background: #f9eb21;
	}
	.body_web #header{
		background: #2098d1;
	}
	.body_dtp #header{
		background: #EB2980;
	}
	h1{
		width: 20%;
		height: 100px;
	}
	h1 a{
		background-image: url(image/logo_print.png);
		padding-left: 30px;
	}
	
	#main{
		float: right;
		width: 80%;
		text-indent: -25%;
	}
	#main_in{
		height: 100px;
	}
	#main_in h2{
		line-height: 100px;
	}
	.body_digital #main_in{
		background: #90278c none;
	}
	.body_server #main_in{
		background: #f8ad3b none;
	}
	.body_system #main_in{
		background: #f9eb21 none;
	}
	.body_system #main_in h2{
		color: #4d4d4d;
	}
	.body_web #main_in{
		background: #2098d1 none;
	}
	.body_dtp #main_in{
		background: #EB2980 none;
	}
	
	#container{
		clear: both;
	}
	#container:after {
		content:" ";
		display:block;
		clear:both;
	}
	
	.third h3{
		margin-bottom: 80px;
	}
	
	.ul_index:after {
		content:" ";
		display:block;
		clear:both;
	}
	
	.more_page{
		margin-top: 50px;
	}
	
	#footer{
		clear: both;
		margin-top: 70px;
		position: relative;
	}
	#footer:after {
		content:" ";
		display:block;
		clear:both;
	}
	#footer_in{
		width: 700px;
		float: left;
		padding-bottom: 20px;
		text-align: left;
	}
	#footer_office > div{
		width: auto;
	}
	address{
		position: absolute;
		bottom: 10px;
		right: 10px;
	}
	
}

@media print and (-ms-high-contrast:none){ /* IE11 */
	*::-ms-backdrop, .ff-items { width: 1000px; }
	*::-ms-backdrop, .ff-container input:checked.ff-selector-type-all ~ .ff-items li { width: 33%;}
}

/* ------------------------------------------------------------------------- */
