@charset "utf-8";
/* -------------------------------------------------------
	style.css for 西日本海運
	creation date	:	03-21-2013
---------------------------------------------------------*/
/* @group Universal */
/*======================================
   HTML5 display definitions
=======================================*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section { display: block }
/*Corrects inline-block display not defined in IE6/7/8/9 & FF3 */
audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
/*Prevents modern browsers from displaying 'audio' without controls*/
audio:not([controls]) { display: none }
/*Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
  Known issue: no IE6 support
 */
[hidden] { display: none }
hr { display: none }
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *	http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *	www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    *font-size: 62.5%;
    *font: x-small; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}
/* Addresses font-family inconsistency between 'textarea' and other form elements.*/
html,
button,
input,
select,
textarea { font-family: sans-serif }
/*
 * Addresses margins handled incorrectly in IE6/7
 */
body { margin: 0 }

/* @group selections */
::-moz-selection {
    background: #0099cc;
    color: #fff;
}
::selection {
    background: #0099cc;
    color: #fff;
}
/* @end */
/* =============================================================================
   Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus { outline: thin dotted }
/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:hover,
a:active { outline: 0; }
/*[ A:TXT ]*******/
a:link { color: #006699; outline: none;}
a:visited { color: #666; }
a:hover,
a:active {
    color: #FF9900;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -ootransition: color 0.2s ease-in-out;
    transion: color .2s ease-in-out;
}
/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
 * Fix IE6/7 heading font-size not being relative to the root font-size
 */
p{
	margin: 0 0 1.6em 0;
	}

h1 {
    font-size: 2em;
    margin: 0 0 0.67em 0;
}
h2 {
    font-size: 1.5em;
    margin: 0 0 0.83em 0;
}
h3 {
    font-size: 1.17em;
    margin: 0 0 1em 0;
}
h4 {
    font-size: 1.17em;
    margin: 0 0 1em 0;
}
h5 {
    font-size: 0.83em;
    margin: 0 0 1.67em 0;
}
h6 {
    font-size: 0.75em;
    margin: 0 0 2.33em 0;
}
/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] { border-bottom: 1px dotted }
/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b,
strong {
    font-weight: bold;
    font-size: 108%;
}
em{
	font-style: normal;
	}
blockquote { margin: 1em 40px }
/*
 * Addresses styling not present in S5, Chrome
 */
dfn { font-style: italic }
/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
    background: #ff0;
    color: #000;
}
/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}
/*
 * Improves readability of pre-formatted text in all browsers
 */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}
/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
q { quotes: none }
/* 2 */
q:before,
q:after {
    content: '';
    content: none;
}
small { font-size: 75% }
/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup { top: -0.5em }
sub { bottom: -0.25em }
/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
    margin-left: 0;
    padding: 0 0 0 20px;
}
li {
    margin-bottom: 0.8em;
    line-height: 1.4;
}
dd { margin: 0 0 0 20px }
nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *	code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
    vertical-align: top;
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
    /*image-rendering: -webkit-optimize-contrast;*/
}
/*
 * Corrects overflow displayed oddly in IE9 
 */
svg:not(:root) { overflow: hidden }
/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure { margin: 0 }
/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form { margin: 0 }
/*
 * Define consistent border, margin, and padding
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 * 3. Corrects alignment displayed oddly in IE6/7
 */
legend {
    border: 0; /* 1 */
    padding: 0;
    white-space: normal; /* 2 */
    *margin-left: -7px; /* 3 */
}
/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}
/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
    line-height: normal; /* 1 */
}
/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *	Known issue: inner spacing remains in IE6
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
    /**overflow: visible;*/ /* 3 */
}
/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] { cursor: default }
/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
	  Known issue: excess padding remains in IE6
 */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    *height: 13px; /* 3 */
    *width: 13px; /* 3 */
}
/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}
/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none }
/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}
/* =============================================================================
   Tables
   ========================================================================== */
/* 
 * Remove most spacing between table cells
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* @end */
/*======================================
	
	Structure Module
	フォントサイズ　ベース13px
	http://aloestudios.com/tools/emchart/
	yahoo UI:http://developer.yahoo.com/yui/fonts
	
	font-size 13px;
	line-height: 1.6;
	(base-box-size 21px)
	
77% = 10px | 123.1% = 16px | 167% = 22px
85% = 11px | 131% = 17px | 174% = 23px
93% = 12px | 136% = 18px | 182% = 24px
100% = 13px | 146% = 19px | 189% = 25px
108% = 14px | 155.9% = 20px | 197% = 26px
116% = 15px | 161.6% = 21px |

=======================================*/
/* @group Structure Module */
/*======================================

	Structure Module

=======================================*/

/*
color-scheme
	#ffffff (background)
	#e0e3e3	(footer)
	#333333	(footer-bottom)
	#e64c51 (catch)
	
	#006699 (link)
*/

html {
    height: 100%;
    min-height: 100%;
    zoom: 1
    }
body {
    *font: x-small;
    *font-size: 1.3em;
    background: #333333;
    color: #fff;
    font: 13px/1.6 verdana, Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    zoom: 1;
    }
body:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
	}
body,
textarea { font-family: "メイリオ", "ＭＳ Ｐゴシック", sans-serif }
input,
select { font-family: Arial, "ＭＳ Ｐゴシック", sans-serif }
#allDocument {
    /*original contents width*/
    background: #fff;
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    width: 100%;
    zoom: 1;
    color: #242424;
    }
#allDocument:after {
    clear: both;
    content: "";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
    }
#unitHeader {
    margin: 0 auto;
    padding: 0;
    width: 940px;
    zoom: 1;
    }
#unitHeader:after {
    clear: both;
    content: "";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
    }
#unitContents {
    margin: 0 auto;
    width: 940px;
    zoom: 1;
    }
#unitContents:after {
    clear: both;
    content: "";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
    }
#unitFooter {
	border-top: 1px solid #D9D9D9;
    background: #E1E4E4;
    clear: both;
    color: #242424;
    display: block;
    margin-top: 30px;
    width: 100%;
    zoom: 1;

    }
/* @group Header Item */
/*======================================
	ヘッダー関係アイテム
=======================================*/
.site-title {
    margin: 0;
    padding: 20px 0 12px 0;
    }
/* @group グローバルナビ */
/*グローバルナビ*/
.gNav {
    background: url(../img/shared/bg_gnav.png) repeat-x;
    clear: both;
    zoom: 1;
    height: 52px;
    }
.gNav:after {
    clear: both;
    content: "";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
    }
.gNav ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 940px;
    }
.gNav li {
    float: left;
    margin: 0 0 0 0;
    padding: 0;
    }

/* @end */
/* @end */

/* @group unitFooter */
/*======================================
	unitFooter フッタ系
=======================================*/
.footer-title {
	width: 360px;
	float: left;
    }
.footer-title dt {
	margin-bottom: 45px;
    }

.blockFooter {
    background: url(../img/shared/bg_f.png) no-repeat right bottom;
    margin: 0 auto;
    width: 940px;
    zoom: 1;
    }
.blockFooter:after {
    clear: both;
    content: "";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
    }
.footer-sitemap{
	width: 430px;
	float: right;
	margin-bottom: 30px;
	}



.sitemap {
    float: left;
    width: 210px;
    }
    .sitemap a:link {
        color: #242424;
        text-decoration: none;
        }
    .sitemap a:visited { color: #696969 }
    .sitemap a:hover,
    .sitemap a:active {
        color: #FF9900;
        text-decoration: underline;
        }

    .sitemap dl {
        margin: 0;
        padding: 0;
        }
    .sitemap dt {
        font-size: 93%;
        margin: 1em 0 0 0;
        padding: 0;
        font-weight: bold;
        }
    .sitemap dd {
        font-size: 85%;
        line-height: 1.6;
        margin: 0 0 0 0.8em;
        padding: 0;
        }
    .sitemap p {
        font-size: 93%;
        margin: 1em 0 0 0;
        padding: 0;
        }
address {
    background: #333333;
    clear: both;
    padding:0;
    height: 30px;
    }
    address span {
        display: block;
        margin: 0 auto;
        text-align: left;
        width: 940px;
        }


/* @end */
/* @end */
/* @group Contents */
/*======================================

	Contetns Module

=======================================*/

.section {
    clear: both;
    position: relative;
    margin-bottom: 35px;
    zoom: 1;
    }

.section:after {
    clear: both;
    content: "";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
    }

.blockContents {
    float: right;
    width: 680px;
    zoom: 1;
    }
.blockContents:after {
    clear: both;
    content: "";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
    }

.blockUtil{width: 220px;float: left;}
.blockUtil-top{width: 450px;float: left;}
.block-index-util{float: right;}

/*サブメニュー*/
.block-local-nav{
	background: #E6E7E8;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0px 0px 4px #bbb;
	box-shadow: inset 0px 0px 4px #bbb;
	padding: 10px;
	margin: 0 0 10px 0;
	}
.block-local-nav dl{
margin: 0;
padding: 0;
	}
.block-local-nav dt{
	margin: 0;
padding: 0;
	}
.block-local-nav dd{
	margin: 0;
padding: 0;
	}
.block-local-nav ul{
	margin: 0;
padding: 0;
list-style: none;
	}
.block-local-nav li{
	margin: 0;
padding: 0;
	}
.block-local-nav li.lastChild{
border-bottom: 1px solid #0181AB;
	}


.banner{
	margin-bottom: 10px;
	}

.banner-moody{
	background: url(../img/shared/bg_bnr.png);
	padding: 5px;
	width: 210px;
	}
.banner-moody-wrp{
	background: #fff;
	padding: 15px;
	width: 180px;
	}
.banner-moody-wrp p{
	margin-bottom: 0;
	font-size: 93%;
	line-height: 1.4;
	}
.banner-moody-wrp p.firstChild{
	margin-bottom: 15px;
	}
 
 
 
 
/*トピックパス*/
.topicPath {
    font-size: 93%;
    line-height: 42px;
    margin: 0 auto 0;
    width: 940px;
    }
    
.heading {
	display: block;
	margin: 0 0 1em 0;
	background: url(../img/shared/bg_h.png) no-repeat;
	line-height: 35px;
	font-size: 14px;
	padding: 1px 0 0 14px;
	}
.headingTOPNEWS {
	display: block;
	margin: 0 0 1em 0;
	background: url(../img/shared/bg_h2.png) no-repeat;
	line-height: 35px;
	font-size: 14px;
	padding: 1px 0 0 14px;
	}
.blockContents .heading {
	background: url(../img/shared/bg_h_680.png) no-repeat;
	margin-bottom: 20px;
	}

.blockContents h1.heading{
	background: none;
	padding: 0 0 19px 0;
	margin: 0 0 20px 0;
	margin-bottom: 19px;
	border-bottom: 1px solid #ccc;
	}


/*table*/
.generalTable{
	border-collapse:collapse;
	padding: 0;
	margin: 0 0 10px 0;
	line-height: 1.4;
	background: #fff;
	border: 1px solid #ccc;
	}

.generalTable th{
	font-weight: normal;
	text-align: center;
	vertical-align: center;
	padding: 15px;
	width: 117px;
	background: #E6E7E8;
	margin: 0;
	border: 1px solid #ccc;
	}
.generalTable td{
	text-align: left;
	vertical-align: center;
	margin: 0;
	padding: 15px;
	width: 500px;
	border: 1px solid #ccc;
	}
.generalTable span{
	color: #3399cc;
	padding-right: 3px; 
	}
/* @end */



.biz-line,
.biz-shops{
	margin: 0 0 10px 0;
	padding: 0;
	border: 1px solid #E6E7E8;
	zoom: 1;
	}
.biz-line:after,
.biz-shops:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
	}
.biz-line dt,
.biz-shops dt{
	background: #E6E7E8;
	margin: 0;
	padding: 0;
	float: left;
	width: 149px;
	}
.biz-line dd,
.biz-shops dd{
	margin: 0;
	padding: 15px 15px 5px 15px;
	float: right;
	width: 490px;
	}
	
.biz-line ul,
.generalTable ul,
.rec-line ul{
	list-style: none;
	margin: 0;
	padding: 0;
	}
.biz-line li,
.generalTable3col{
	float: left;
	margin: 0 0 6px 0;
	padding: 0;
	width: 160px;
	}
.generalTable3col_center{
	float: left;
	margin: 0 0 6px 0;
	padding: 0;
	width: 180px;
	}
.generalTable2col{
	float: left;
	margin: 0 0 6px 0;
	padding: 0;
	width: 200px;
	}
.list2col{
	float: left;
	margin: 0 0 6px 0;
	padding: 0;
	width: 300px;
	}
.biz-shops ul{
	margin: 0 0 0 15px;
	padding: 0;
	color: #3399cc;
	}
.biz-shops li{
	float: left;
	margin: 0 0 6px 0;
	padding: 0 50px 0 0;
	}
.biz-shops li span{color: #242424;}

.rec-line {
	margin: 0;
	padding: 15px 15px 5px 15px;
	}
.rec-line li.rows{
	margin: 0 0 6px 0;
	padding: 0 0 0 20px;
	}
.rec-line li.entry{
	margin: 0 0 6px 0;
	padding: 0px 15px 0 0;
	}
.rec-line li .photo{
	display: block;
	float: left;
	}
.rec-line img{
	width: 200px;
	height: auto;
	}
.rec-line span{
	color: #3399cc;
	padding-right: 3px; 
	}

.service-catch-up {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	zoom: 1;
    }
.service-catch-up:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
	}
    .service-catch-up li {width: 330px;float: left;font-size: 93%;margin-bottom: 30px;}
	.service-catch-up li.even {float: right;}
	.service-catch-up li .photo{
		display: block;
		float: left;
		padding-right: 10px;
		}
	.service-catch-up li .title{
		display: block;
		margin: 0 0 1em 0;
		}
.service-catch-up li a{
		text-decoration: none;
		color: #242424;
		}
		
.service_img{
	height:130px;
}

.s12 li{
	font-size:12px;
}

/* 2013/07/22  */

.tug_1{

}

.tug_text1{
	float: left;
	width: 65%;
	padding:10px;
}

.tug_img1{
	float: left;
	width: 30%;
	padding-top:10px;
}
.tug_text1 span{
	color: #3399cc;
	padding-right: 3px; 
}



/* @end */



/* @group index */
/*======================================

	Index Contetns Module

=======================================*/


.blockCoverImage{
	text-align: center;
	width: 100%;
	margin: 0 auto;
	position: relative;
	}
	
	
.bx-wrapper{
	width: 100% !important;
	overflow: hidden;
	position: relative !important;

}
.bx-window{
	width: 940px !important;
	margin: 18px auto 15px !important;
	overflow: visible !important;
	height: 360px;
}

#slider{
	margin: 0;
	height: 350px;
	zoom: 1;
	}
	#slider:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
	}

#slider div{
	width: 940px;
	height: 350px;
	text-align: center;
	margin: 0 0 15px 0;
	padding: 0 60px 0 0;
	float: left;
}


.bx-pager{
	position: absolute;
	top: 330px;
	left: 0;
	width: 100%; 
	}
	
/* Control Nav */
/*.bx-pager {width: 100%; position: absolute; bottom: 40px; text-align: center;}*/
/*.bx-pager a {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}*/
.bx-pager  a {outline: none;margin: 0 5px;width: 11px; height: 11px; display: inline-block; background: #fff; background: rgba(255,255,255,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(2455,255,255,0.3);}
.bx-pager a:hover { background: #006699; background: rgba(0,102,153,.7); }
.bx-pager a.pager-active { background: #A6CADB; background: rgba(166,202,219,0.9); cursor: default; }

.catch-up {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	zoom: 1;
    }
.catch-up:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
	}
    .catch-up li {width: 220px;float: left;margin-left:19px;}
	.catch-up li.firstChild {margin-left:0;}
	.catch-up li .photo{
		display: block;
		margin: 0 0 20px 0;
		}
	.catch-up li .title{
		display: block;
		margin: 0 0 1em 0;
		}
.catch-up li a{
		text-decoration: none;
		color: #242424;
		}
	
.block-index-contents{
	clear: both;
	float: left;
	width: 480px;
	}
	
		
/*NEWS フォーマット*/			
.news{
	list-style: none;
	margin: 0;
	padding: 0;
	}
.news li{
	line-height: 1.5;
	zoom: 1;
	}
.news li:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
	}

.news span {
    display: block;
    float: right;
    }

.news span.title { width: 380px; }
.news a span { text-decoration: underline }
.news .date {
    float: left;
    width: 85px;
    }
.news a .date {
    color: #242424;
    text-decoration: none;
    }

.li-indent{
	margin-top:1em;
	margin-bottom:0;
}

.hidebox{
	width: 100%;
	height: 393px;
	background-color: #fff;
	top:0;
	left:0;
	z-index: 100;
	overflow: hidden;
}

.formError{
	position: static !important;
	display:block;
	margin:0 !important;
}
/* @end */








