/*
 :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, 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, 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;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、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;
}

/* 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: 1300px;
	}

#all{
	width:100%;
	margin:0 auto;
	text-align:left;
	font-size: 14px;
	line-height: 1.5em;
	color: #333;
	}

#header #logo{
	width: 100%;
	position: absolute;
	top: 10px;
}

#header #logo a{
	display: block;
	margin-left: 10px;
	width: 285px;
	height: 45px;
	background-image: url(../image/logo.png);
	background-repeat: no-repeat;
	text-indent: -9999px;
}


#navi{
	border-bottom:solid 1px #333;
	}

#container{
	min-width: 1200px;
}

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;
}


#pagetop{
	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;
}


/* ------------------------------------------------------------------------- */
/* basic
/* ------------------------------------------------------------------------- */

h2{
	margin: 20px 0 30px 50px;
	font-size: 70px;
	line-height: 0.8em;
}

h2 span{
	display: block;
	font-size: 20px;
	font-weight: normal;
}



/* global_menu
/* ---------------------------------------------------------------- */

#global_menu{
	z-index: 999;
	position: fixed;
	top: 100px;
	right: 0;
	width: 250px;
	list-style: none;
}

#global_menu li{
	line-height: 50px;
	margin-bottom: 1px;
}

#global_menu li a{
	display: block;
	background-image: url(../image/bg_global_menu01.png);
	color: #fff;
	text-decoration: none;
	font-size: 17px;
	text-indent: 10px;
}

#global_menu li ul{
	margin-left: 20px;
	width: 230px;
	list-style: none;
}

#global_menu li ul a{
	background-image: url(../image/bg_global_menu02.png);
}




/* ------------------------------------------------------------------------- */
/* top
/* ------------------------------------------------------------------------- */

 
/* メイン動画 */
#top_main{
	width: 100%;
	height: 100vh;
	/*background-color: #eee;*/
	background-image: url(../image/bg_dotted.png);
}

#top_main div{
	display: block;
	position: absolute;
	width: 100%;
	height: 100vh;
	text-align: center;
}

#top_main div span{
	height: 250px;
	width: 1100px;
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	margin: auto;
}

#top_main .movie{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}

#top_main video{
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100vw;
	min-height: 100vh;
	z-index: -99;
}


/* 新着情報 */

#top_home{
	position: relative;
}

.bn_about_movie{
	position: absolute;
	top: 225px;
	left: 50px;
	margin: auto;
}
.bn_about_relation{
	position: absolute;
	top: 225px;
	left: 300px;
	margin: auto;
}

.bn_about_work{
	position: absolute;
	top: 60px;
	left: 515px;
	margin: auto;
}

.bn_about_event{
	position: absolute;
	top: 225px;
	left: 515px;
	margin: auto;
}

.bn_about_dawn{
	position: absolute;
	top: 225px;
	left: 730px;
	margin: auto;
}

.bn_about_recruit{
	position: absolute;
	top: 60px;
	left: 50px;
	margin: auto;
}

.bn_about_movie a:hover,
.bn_about_relation a:hover,
.bn_about_work a:hover,
.bn_about_event a:hover,
.bn_about_dawn a:hover,
.bn_about_recruit a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}




.news{
	width: 450px;
	position: absolute;
	bottom: 20px;
	left: 50px;
	background-color: rgba(255,255,255,0.7);
}

.news .top_news_tit{
	display: block;
	border-bottom: 1px solid #333;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.5em;
	text-indent: 10px;
}

.news ul{
	list-style: none;
}

.news li strong{
	display: block;
	font-weight: normal;
}

.news li{
	border-bottom: 1px dotted #333;
}

.news li a{
	display: block;
	padding: 10px;
	text-decoration: none;
	color: #333;
}

.news li a:hover{
	background-color: #eee;
}

.news .btn_news{
	display: block;
	width: 140px;
	float: right;
	margin: 10px 10px;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	background-color: #E38616;
	background-image: url(../image/icon_arrow_white_s.png);
	background-repeat: no-repeat;
	background-position: 90%;
	font-size: 18px;
	line-height: 40px;
	color: #fff;
	text-decoration: none;
	text-indent: 10px;
}

.news .btn_news:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

/* TOP */
.top_data{
	width: 460px;
	float: left;
	margin-left: 50px;
	margin-bottom: 100px;
	font-size: 16px;
	line-height: 1.8em;
}

.top_data a{
	display: block;
	margin-top: 20px;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	background-image: url(../image/icon_arrow_white.png);
	background-repeat: no-repeat;
	background-position: 95%;
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	line-height: 60px;
	text-indent: 15px;
}

.top_data a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

.top_in{
	width: 1200px;
	margin: auto;
}


/* HOME */
#top_home{
	height: 750px;
	background-image: url(../image/bg_top_home.jpg);
	background-size: cover;
	background-position: bottom;
}

/* 運送背景 */
#bg_express{
	width: 100%;
	height: 3030px;
	position: absolute;
	background-image: url(../image/bg_express.png);
	background-position: top center;
	background-repeat: no-repeat;
	z-index: 1;
	min-width: 1300px;
}

#bg_express img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	z-index: 1002;
}



/* 運送 */
#top_express{
	float: left;
	width: 100%;
	height: 640px;
	margin-top: 200px;
}

#top_express h2{
	color: #00566A;
	z-index: 3;
	margin-top: 30px;
	position: absolute;
}

#top_express .top_data{
	margin-top: 170px;
}

#top_express .top_data a{
	background-color: #00566A;
}

#top_express .express_img{
	width: 50%;
	float: right;
}

#top_express .express_img ul{
	list-style: none;
	z-index: 0;
	margin-top: 160px;
}

#top_express .express_img li{
	margin-bottom: 20px;
	background-color: #75C3D8;
	-moz-border-radius: 15px 0 0 15px;
	-webkit-border-radius: 15px 0 0 15px;
	border-radius: 15px 0 0 15px;
	font-size: 20px;
	line-height: 60px;
	font-weight: bold;
	color: #fff;
	text-indent: 20px;
}

#bg_top_express{
/*	display: none;*/
	width: 100%;
	min-width: 1200px;
	height: 3030px;
	position: absolute;
	top: 1525px;
}

/* センター業務受託*/
#top_outsourcing{
	float: left;
	width: 100%;
	height: 640px;
	background-image: url(../image/bg_center.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#top_outsourcing .top_in{
	width: 850px;
}

#top_outsourcing h2{
	color: #0097CB;
	text-align: right;
}

#top_outsourcing h2 span{
  text-shadow:none;
}

#top_outsourcing .top_data{
	float: right;
}

#top_outsourcing .top_data a{
	background-color: #0097CB;
}

#top_outsourcing .top_in .top_data .top_data_text{
  margin-bottom:20px
}

.list_outsourcing{
	width: 100%;
	min-width: 1200px;
	margin-top: -145px;
}



/* 倉庫 */

#top_warehouse{
	margin-top: 80px;
	float: left;
	width: 100%;
	height: 640px;
	background-image: url(../image/bg_warehouse.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#top_warehouse h2{
	color: #177801;
}

#top_warehouse .top_data a{
	background-color: #177801;
}

#top_warehouse .top_in{
  position: relative;
  z-index: 1001; /*index.html l32 base*/
}

#top_warehouse .top_in .top_data .top_data_text{
  background-color: rgba(255,255,255,0.6);
  margin-bottom:20px
}

.list_warehouse{
	width: 100%;
	min-width: 1200px;
	margin-top: -135px;
}

.list_warehouse ul{
	width: 405px;
	margin-top: -140px;
	margin-right: 25%;
	list-style: none;
	float: right;
}

.list_warehouse ul li{
	display: inline-block;
	width: 130px;
	height: 130px;
	margin: -5px 20px;
	background-color: #177801;
	-moz-border-radius: 70px;
	-webkit-border-radius: 70px;
	border-radius: 70px;
	font-size: 20px;
	text-align: center;
	color: #fff;
	overflow: hidden;
}

.list_warehouse ul li strong{
	display: block;
	padding-top: 55px;
	line-height: 1.5em;
}


.list_warehouse ul li span{
	display: block;
	font-size: 16px;
}

.list_warehouse ul .list01warehouse{
	margin-left: 210px;
}

.list_warehouse ul .list02warehouse{
	margin-left: 150px;
}

.list_warehouse ul .list03warehouse{
	margin-left:90px;
}

.list_warehouse ul .list04warehouse strong{
	padding-top: 45px;
}


/* メンテナンス */

#top_maintenance{
	float: left;
	width: 100%;
	height: 840px;
	background-image: url(../image/bg_maintenance.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#top_maintenance h2{
	color: #81b300;
	text-align: right;
}

#top_maintenance .top_in{
	width: 850px;
}

#top_maintenance .top_data{
	float: right;
}

#top_maintenance .top_data a{
	background-color: #81b300;
}


/* EC運営支援サービス */

#top_ec_supporte{
	float: left;
	width: 100%;
	height: 640px;
	background-color: #F29C00;
}


#top_ec_supporte h2{
	color: #fff;
}

#top_ec_supporte .top_data a{
	background-color: #fff;
	background-image: url(../image/icon_arrow_orange.png);
	color: #F29C00;
}


/* キャッチトウキョウ */
#top_catch_tokyo{
	float: left;
	width: 100%;
	height: 640px;
	background-color: #eee;
}

#top_catch_tokyo h2{
	display: block;
	min-width: 650px;
	color: #705291;
	position: absolute;
}

#top_catch_tokyo .top_data{
	position: absolute;
	margin-top: 150px;
}

#top_catch_tokyo .top_data a{
	background-color: #705291;
}

.img_catch_tokyo{
	margin-top: 10px;
	float: right;
}


.img_01catch_tokyo, .img_02catch_tokyo, .img_03catch_tokyo{
	width: 320px;
	float: left;
}

.img_01catch_tokyo img, .img_02catch_tokyo img, .img_03catch_tokyo img{
	margin: 0 10px 10px 0;
}

.img_01catch_tokyo{
	margin-top: 470px;
}

.img_02catch_tokyo{
	margin-top: 155px;
}


/* 会社概要 */
#top_about{
	float: left;
	width: 100%;
	height: 450px;
	background-color: #FFB5B5;
	background-image: url(../image/bg_top_about02.gif), url(../image/bg_top_about.gif);
	background-size: auto, cover;
	background-repeat: no-repeat;
	background-position: bottom right, top center;
}

#top_about h2{
	display: block;
	min-width: 650px;
	color: #A60000;
}

#top_about .top_data a{
	background-color: #A60000;
}


/* スタッフ */
#top_staff{
	float: left;
	width: 100%;
	/*height: 640px;*/
}

#top_staff h2{
	display: block;
	min-width: 650px;
	color: #E65769;
}

#top_staff .top_data a{
	background-color: #E65769;
}

.staff_photo{
	float: right;
}

/* ネットワーク */
#top_net{
	float: left;
	width: 100%;
	height: 450px;
	background-color: #DFDDC7;
}

#top_net h2{
	display: block;
	min-width: 650px;
	color: #837E2A;
}

#top_net .top_data a{
	background-color: #837E2A;
}
.top_side{
  opacity: 0;
}



#move_car{
	opacity: 1;
	display: block;
	position: absolute;
}
#move_car2{
    opacity: 1;
    display: block;
    position: absolute;
}
#move_car3{
    opacity: 1;
    display: block;
    position: absolute;
}
#move_car4{
    opacity: 1;
    display: block;
    position: absolute;
}

#global_menu{
    display: none;
}

@media all and (-ms-high-contrast: none)  /* IE10以上 */
{
    #global_menu{
        display: block;
    }
}

#global_menu.show{
	display: block;
	opacity: 1;
    animation: show 0.5s linear 0s;
}
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.tunnel{
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    min-width: 1300px;
	text-align: center;
	width: 100%;
	position : absolute;
}
