/*
 :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, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
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;
}

/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:1;
    word-wrap:break-word;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、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;
}



/* ------------------------------------------------------------------------- */
/* base
/* ------------------------------------------------------------------------- */

*{
	padding: 0px;
	margin: 0px;
}

body{
	text-align:center;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック',sans-serif;
	min-width: 1000px;
	}

a{
	color: #E38616;
}


/* ------------------------------------------------------------------------- */
/* layout
/* ------------------------------------------------------------------------- */
#all{
	width:100%;
	text-align: center;
	color: #333;
	font-size: 14px;
	line-height: 1.5em;
	}

#header{
	border-bottom: 3px solid #E38616;
}

#logo{
	width: 1000px;
	padding:10px 0;
	margin: auto;
}

#header #logo a{
	display: block;
	width: 285px;
	height: 45px;
	background-image: url(image/logo.png);
	text-indent: -9999px;
}


#container{
	width: 1000px;
	margin: auto;
}

nav{
	width: 100%;
	border-top: 1px solid #aaa;
	text-align: center;
}

nav ol{
	width: 1000px;
	margin: auto;
	text-align: left;
	list-style: none;
}

nav ol li{
	display: inline-block;
	padding: 20px 0;
	margin-right: 5px;
}

nav ol li:before{
	content:" > "
}

nav ol li:first-child:before{
	content: none;
}

nav ol li a{
	text-decoration: none;
}

nav img{
	vertical-align: middle;
	margin-right: 5px;
}


/* global_menu */

#global_menu{
	z-index: 999;
	position: fixed;
	top: 265px;
	right: 0;
	width: 200px;
	list-style: none;
}

#global_menu li{
	line-height: 40px;
	margin-bottom: 1px;
}

#global_menu li a{
	display: block;
	background-image: url(image/bg_global_menu01.png);
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-indent: 10px;
}

#global_menu li a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

#global_menu li ul{
	margin-left: 20px;
	width: 180px;
	list-style: none;
}

#global_menu li ul a{
	background-image: url(image/bg_global_menu02.png);
}


/* primary
---------------------------------------------------------- */
#primary{
	float: left;
	width: 100%;
	text-align: left;
	padding: 20px 0 100px 0;
}

#primary ul, #primary ol{
	margin-left: 1.5em;
}

#primary ul li, #primary ol li{
	padding: 5px 0;
}



/* pagetop
/* ---------------------------------------------------------------- */

#pagetop{
	clear: both;
	display: none;
}

.pagetop{
	clear: both;
}
.pagetop a{
	display: block;
	width: 100%;
	background-color: #333;
	background-image: url(image/btn_pagetop.png);
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
	height: 60px;
}


/* footer
---------------------------------------------------------- */
.footer_in{
	width: 1000px;
	margin: auto;
}

footer span{
	display: block;
	width: 300px;
	float: right;
}

footer span a{
	float: right;
	display: block;
}

footer span .copy{
	display: block;
	text-align: right;
}

footer img{
	float: left;
	vertical-align: middle;
	margin: 10px 10px 10px 0;
}

#footer_logo{
	margin: 25px 15px 0 0;
}

/* ------------------------------------------------------------------------- */
/* basic
/* ------------------------------------------------------------------------- */

/* title
---------------------------------------------------------- */

h2{
	clear: both;
	font-size: 70px;
	line-height: 1.4em;
	padding: 35px 0;
}

h2 span{
	display: block;
	font-size: 40%;
	font-weight: normal;
	line-height: 1em;
}

.tit_news{
	background-color: #FBFCFF;
}

.tit_express{
	background-color: #B8E0EB;
	color: #00566A;
}

.tit_warehouse{
	background-color: #E8F2E6;
	color: #177801;
}

.tit_outsourcing{
	background-color: #dceff4;
	color: #0097cb;
}

.tit_maintenance{
	background-color: #f8ffe6;
	color: #81b300;
}

.tit_ec{
	background-color: #FFEEB7;
	color: #F27300;
}


.tit_catch{
	background-color: #EEEEEE;
	color: #705291;
}


.tit_about{
	background-color: #FFB5B5;
	color: #A60000;
}

.tit_recruit{
	background-color: #FCEFF1;
	color: #E65769;
}

.tit_network{
	background-color: #DFDDC7;
	color: #837E2A;
}

.tit_work{
	background-color: #E5F2FF;
	color: #053B73;
}

.tit_relation{
	background-color: #FFFAE9;
	color: #EBB605;
}

.tit_event{
	background-color: #F5E999;
	color: #9B8805;
}


h3{
	clear: both;
	width: 100%;
	padding-top: 100px;
	margin-bottom: 20px;
	font-size: 300%;
	line-height: 1.8em;
	text-align: center;
	font-weight: normal;
	border-bottom: 1px solid #e38616;
}

h4{
	font-size: 200%;
	padding-top: 50px;
	margin-bottom: 10px;
	line-height: 1.5em;
	font-weight: normal;
	border-bottom: 1px dashed #e38616;
}


.subtit_txt{
	color: #E38616;
	font-size: 150%;
	line-height: 1.8em;
	font-weight: normal;
}


/* テキスト
---------------------------------------------------------- */

.bikou{
	font-size: 80%;
}

.attention{
	clear: both;
	font-size: 130%;
	background-color: #F7C68F;
	padding: 20px;
	line-height: 1.5em;
}



/* 配置
---------------------------------------------------------- */

.right{
	float: right;
	margin-left: 20px;
}

.left{
	float: left;
	margin-right: 20px;
}

.center{
	text-align: center;
}

.center img{
	margin: 10px auto;
}

.padding_top0{
	padding-top: 0;
}

.map_center{
	clear: both;
	width: 100%;
	height: 350px;
	margin: 20px 0;
}

.clear{
	clear: both;
}

.icon{
	vertical-align: middle;
	margin-left: 5px;
}


/* テーブル
---------------------------------------------------------- */
table{
	border-collapse: collapse;
	font-size: 100%;
	margin: 10px 0;
}

table th,td{
	padding: 10px;
	vertical-align: top;
}

.basic_table{
	width: 100%;
	max-width: 1000px !important;
}

.basic_table th{
	background-color: #eee;
}

.basic_table th, .basic_table td{
	border: 1px solid #aaa;
}

.th_left{
	text-align:left;
}

.th_center{
	text-align:center;
}

/* ボタン
---------------------------------------------------------- */

.btn_basic{
	display: inline-block;
	margin: 20px 0;
	padding: 10px 60px 10px 10px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background-color: #e38616;
	color: #fff;
	text-decoration: none;
	background-image: url(image/icon_arrow_white_s.png);
	background-repeat: no-repeat;
	background-position: 95% center;
	font-size: 130%;
}

.btn_basic:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}


/* ボックス
---------------------------------------------------------- */

.box3{
	width: 100%;
	float: left;
}

.box3 div{
	float: left;
	width: 29%;
	margin: 2%;
}

.box3 div h3{
	width: 100%;
	font-size: 25px;
	padding-top: 20px;
}

.box3 div .btn_basic{
	display: block;
	width: 80%;
	margin: 30px auto;
}

.box3 div h4{
	width: 100%;
	font-size: 25px;
	padding-top: 20px;
	text-align: center;
}



.icon_gaibu{
	vertical-align: middle;
	margin-left: 10px;
}



/* ------------------------------------------------------------------------- */
/* 新着情報
/* ------------------------------------------------------------------------- */

#primary .news ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.news li strong{
	display: block;
	font-weight: normal;
}

#primary .news li{
	border-bottom: 1px dotted #333;
	padding: 0;
	margin: 0;
}

.news li a{
	display: block;
	padding: 10px;
	text-decoration: none;
	color: #333;
}

.news li a:hover{
	background-color: #eee;
}


.news_data h3{
	text-align: left;
	font-size: 30px;
	padding-top: 0;
	line-height: 1.5em;
}

.news_data img{
	max-width: 100%;
	height: auto !important;
}

.news_data table{
	max-width: 1000px !important;
}

.news_data table th{
	background-color: #eee;
}

.news_data table td, .news_data table th{
	border: 1px solid #aaa;
}

.news_time{
	display: block;
	width: 100%;
	padding: 20px 0;
	float: left;
	text-align: right;
	font-size: 130%;
}




/* ページャー */
.pager{
	float: left;
	width: 100%;
	padding: 20px 0;
	text-align: center;
}

.pager a{
	display: inline-block;
	border: 1px solid #aaa;
	padding: 5px 10px;
	margin: 3px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
}

.pager a:hover, .pager .current{
	background-color: #E38616;
	color: #fff;
}



/* ------------------------------------------------------------------------- */
/* 安心の運送システム
/* ------------------------------------------------------------------------- */


.transportation_table{
	border: 5px solid #CBCADD;
}

.transportation_table th, .transportation_table td{
	border-bottom-color: #83ADB6;
	border-style: dashed;
	border-bottom: none;
	border-top: none;
}

.transportation_table .bg_color{
	background-color: #ECECF3;
}

.transportation_table td{
	width: 50%;
}






/* ------------------------------------------------------------------------- */
/* 会社概要
/* ------------------------------------------------------------------------- */
.about_movie{
	width: 90%;
	margin: 20px auto;
}

.about_movie iframe{
	width: 100%;
	height: 500px;
}



/* 会社沿革
---------------------------------------------------------- */

.history th{
	text-align: center;
	vertical-align: middle;
}


/* 代表挨拶
---------------------------------------------------------- */

.txt_president{
	font-size: 150%;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-weight: bold;
}

.idea{
	font-size: 300%;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-weight: bold;
}



/* 担当者一覧
---------------------------------------------------------- */

.contact_list{
	border: 5px solid #A9C952;
}

.contact_list th, .contact_list td{
	border-color: #A9C952;
	border-style: dashed;
	border-top: none;
	border-bottom: none;
}

.contact_list th{
	text-align: center;
	background: #D7F48D;
}

.contact_list .bg_color{
	background-color: #EEF7D4;
}


.list_middle{
	vertical-align: middle;
}

.contact_list02 th{
	width: 230px;
	text-align: left;
	vertical-align: middle;
}





/* プライバシーポリシー
---------------------------------------------------------- */
.privacy h3{
	font-size: 250%;
	text-align: left;
}

.pp_name{
	width: 200px;
	padding: 50px 0 10px 0;
	float: right;
}

.pp_under h4{
	clear: both;
}


/* お問い合わせ */

.form th span{
	float: right;
	display: inline-block;
	padding: 0 5px;
	background-color: #E86DA2;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	color: #fff;
	vertical-align: middle;
	font-size: 90%;
	font-weight: 100;
}

.form .err td{
	background-color: #FCDEEA;
}

.form .err td span{
	display: block;
	padding: 5px 0;
	color: #A00042;
}

.form th{
	text-align: left;
	width: 20%;
}

.form input, .form textarea{
	font-size: 15px;
	line-height: 1.5em;
	margin: 0 3px;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック',sans-serif;
}

.form .long{
	width: 70%;
}

.btn_form{
	text-align: center;
}

.btn_form input{
	display: inline-block;
	padding: 10px 40px;
	background-color: #E38616;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: none;
	color: #fff;
	cursor: pointer
}

.btn_form form{
	display: inline-block;
}


/* ------------------------------------------------------------------------- */
/* スタッフ紹介
/* ------------------------------------------------------------------------- */

.tit_recruit strong{
	display: block;
	width: 1000px;
	margin: auto;
	text-align: left;
	font-size: 80%;
	line-height: 1.3em;
}

.tit_recruit strong strong{
	display: inline-block;
	font-size: 60%;
	width: auto;
	margin-left: 20px;
}

.tit_recruit strong span{
	line-height: 1.2em;
}


.bn_staff{
	text-decoration: none;
	display: block;
	width: 240px;
	height: 240px;
	margin: 0 auto 20px auto;
	line-height: 240px;
	border-radius: 50%;
	/* 動く速度とか設定 */
	transition: all 1.0s ease;
	-webkit-transition: all 1s ease;
}

.bn_staff:hover{
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
}

#staff_data div{
	width: 480px;
	height: 200px;
	float: left;
	margin: 10px;
}

#staff_data div h3{
	padding-top: 0;
	margin-bottom: 10px;
	font-size: 140%;
	line-height: 2em;
	background-color: #E38616;
	color: #fff;
}

#staff_data div p{
	margin: 0 5px;
}



/* ------------------------------------------------------------------------- */
/* 倉庫
/* ------------------------------------------------------------------------- */

.souko_two_box dl{
	float: left;
	width: 460px;
	margin: 0 20px 20px 20px;
}

.souko_two_box dt{
	padding: 10px;
	background-color: #177801;
	-webkit-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
	color: #fff;
	font-size: 150%;
	line-height: 1.5em;
}

.souko_two_box dd{
	padding: 20px;
	border: 3px solid #177801;
	border-top: 0;
}

.souko_two_box .one_box{
	width: 960px;
}


.souko_two_box_warehouse dd{
	height: 110px;
}

.souko_two_box_warehouse_rental dd{
	height: 100px;
}

/* ------------------------------------------------------------------------- */
/* 押入れ産業
/* ------------------------------------------------------------------------- */

.armoire_box img{
	margin-bottom: 40px;
}

.armoire_box dl{
	width: 420px;
	margin-bottom: 40px;
	
}

.armoire_box dt{
	font-size: 200%;
	line-height: 1.5em;
	color: #177801;
}

.armoire_box dd{
	margin: 10px;
}

/*文字間隔の調整*/

.armoire_spacing .armoire_size span,
.rental_spacing .rental_size span{
	display:inline-block;
	margin:0;
	padding:0;
}

.armoire_spacing .armoire_size{
	padding-left:160px;
}

.rental_spacing .rental_size{
	padding-left:40px;
}

.armoire_spacing .armoire_size span:nth-of-type(1){
	width:15%;
}

.armoire_spacing .armoire_size span:nth-of-type(2){
	width:35%;
}
.armoire_spacing .armoire_size span:nth-of-type(3){
	width:15%;
	text-align:right;/*桁数違いも右揃え*/
}

.armoire_spacing .armoire_price{
	text-align:right;
	padding-right:70px;
}

.armoire_spacing .armoire_size2,
.armoire_spacing .armoire_price2{
	padding-left:100px;
}

.thekeep_spacing .thekeep_size{
	padding-left:220px;
}

.thekeep_spacing .thekeep_price{
	padding-left:100px;
	vertical-align: middle;
}


.rental_spacing .rental_size span:nth-of-type(1){
	width:25%;
}

.rental_spacing .rental_size span:nth-of-type(2){
	width:40%
}

.rental_spacing .rental_size span:nth-of-type(3){
	width:20%;
	text-align:right;
}

.rental_spacing .rental_price{
	text-align:right;
	padding-right:50px;
}

.rental_spacing .rental_hoken{
	text-align:center;
	vertical-align: middle;
}


/* ------------------------------------------------------------------------- */
/* ネットワーク
/* ------------------------------------------------------------------------- */
.map_network area{
	border: none;
	outline: none;
}
.lb-caption span{
	font-size: 20px;
	line-height: 1.5em;
}


/* ------------------------------------------------------------------------- */
/* 採用情報
/* ------------------------------------------------------------------------- */
.recruit_attention{
	background-color: #ffdcbd;
}


/* ------------------------------------------------------------------------- */
/* センター業務委託
/* ------------------------------------------------------------------------- */
.tb_outsourcing{
	float: left;
	margin: 0;
	border: 5px solid #CBCADD;
	width: 50%;
	text-align: center;
}
.tb_outsourcing th{
	display: block;
	border: none;
	background: #ECECF3;
}
.tb_outsourcing td{
	display: block;
	border: none;
}

.transportation_table th, .transportation_table td{
	border-bottom-color: #83ADB6;
	border-style: dashed;
	border-bottom: none;
	border-top: none;
}

#primary ol.flow_outsourcing{
	list-style: none;
	margin-left: 0;
}
#primary ol.flow_outsourcing li{
	clear: both;
	display: block;
	padding-bottom: 100px;
	position: relative;
}
.flow_outsourcing li > div{
	border: 10px solid #eee;
	border-radius: 5px;
	padding: 25px;
}
.flow_outsourcing li > div:before,
.flow_outsourcing li > div:after {
	content:"";
	display:table;
}
.flow_outsourcing li > div:after {
	clear:both;
}

.flow_outsourcing li:after {
	position: absolute;
	height: 100px;
	width: 100%;
	content:"";
	background: url(uploads/images/outsourcing/icon_arrow_un_gray.png) no-repeat center center;
}
.flow_outsourcing li:last-child:after {
	background: none;
}

.flow_outsourcing li:last-child{
	padding-bottom: 0 !important;
}

.flow_outsourcing li h4{
	padding-top: 0;
	width: 44%;
	border-bottom: 3px solid #e38616;
}
.flow_outsourcing li h4 span{
	background: #e38616;
	padding: 5px 22px 0;
	margin-right: 10px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}

.consultation{
	clear: both;
	background: #f9f9f9 url(image/bg_consultation.jpg) no-repeat right 30px center;
	padding: 30px;
}
.consultation strong{
	font-size: 23px;
	line-height: 2em;
	border-bottom: 2px dashed #e38616;
}
.consultation ul{
	margin-top: 10px;
}
#primary .consultation ul li{
	padding: 4px 0;
}


.outsourcing_etc{
	text-align: center;
	margin-bottom: 50px;
}

.outsourcing_etc dl{
	width: 30%;
	margin: 20px 1%;
	display: inline-block;
	background-color: #DCEFF4;
	vertical-align: top;
	text-align: left;
}

.outsourcing_etc dl dt{
	padding: 10px;
	background-color: #a0d7e5;
	padding: 10px;
	font-weight: bold;
	text-align: center;
	font-size: 120%;
}

.outsourcing_etc dl dd{
	padding: 10px;
	min-height: 180px;
}


/* ------------------------------------------------------------------------- */
/* ロジコムワーク
/* ------------------------------------------------------------------------- */
.work ul li{
	display: block;
	margin-bottom: 40px;
	overflow: hidden
}

.work ul li span{
	display: block;
	font-size: 150%;
	font-weight: bold;
	margin-bottom: 10px;
	border-bottom: 1px solid #e38616;
}

.work ul li .img_box{
	float: left;
	width: 360px;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.work ul li .img_box img{
	width: auto;
	height: auto;
	max-width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	}

.work ul li .text_box{
	display: block;
	width: 600px;
	float: right;
}


/* ------------------------------------------------------------------------- */
/* ロジコムリレーション
/* ------------------------------------------------------------------------- */
.btn_relation a{
	display: inline-block;
	margin: 10px 10px 0 0;
	width: 150px;
	padding: 10px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	font-size: 130%;font-weight: bold;
	text-align: center;
	cursor: pointer;
}

.btn_relation a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

.btn_relation a.ns{
	background-color: #DA3734;
}

.btn_relation a.sen{
	background-color: #3567D8;
}

#relation_box .basic_table th:first-child{
	width: 25%;
}

#relation_box .basic_table th:nth-child(2){
	width: 50%;
}

#relation_box > *{
	display: none;
}

.table_none{
	display: none;
}

#map{
    height: 600px;
    margin-top: 20px;
    background: #A7A7A7;
}
