﻿@charset "utf-8";
/*====================================================================================================
   CSS information
   file name   : style.css
   style info  : 各設定のcss
====================================================================================================*/

/*----------------------------------------------------------------------------------------------------
   00-基本構造 [html,body,div,span,hr,a,p,h1,h2,h3,h4,h5,h6,address]
----------------------------------------------------------------------------------------------------*/

/* 縦スクロールバーを表示 [Firefox,opera,safari:overflow-y(css3)]
--------------------------------------------------------------------------------*/
html {
	overflow-y: scroll;
	margin: 0;
	padding: 0;
}

/* フォントサイズの統一 [IE6 14px/16px = 87.5%]
--------------------------------------------------------------------------------*/
body {
	line-height: 1.5;
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","MS PGothic","ＭＳ Ｐゴシック",Meiryo,"メイリオ",Sans-Serif;
	font-size: 14px;
	letter-spacing: 1px;
}
* html body {
	font-size: 87.5%;
}

/* ブロックレベル要素のmargin,paddingを0に設定
--------------------------------------------------------------------------------*/
div,p,h1,h2,h3,h4,h5,h6,hr,address {
	margin: 0;
	padding: 0;
}

/* リンクの設定 [link,visited,hover,active]
--------------------------------------------------*/
a {
	color: #03c;
	outline: 0;
}
a:link {}
a:visited {}
a:hover {
	text-decoration: none;
}
a:active {}

/* 見出しの装飾を再設定 [font-size:14px]
--------------------------------------------------*/
h1 {
	font-size: 143%;
}
h2 {
	font-size: 129%;
}
h3 {
	font-size: 115%;
	font-weight: normal;
}
h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}

/* 製作者情報 [address]
--------------------------------------------------*/
address {
	font-style: normal;
	font-weight: normal;
}


/*----------------------------------------------------------------------------------------------------
   テキスト装飾 [em,strong,del,ins,abbr,acronym,dfn,blockquote,q,cite,sup,sub,pre,code,var,kbd,samp]
----------------------------------------------------------------------------------------------------*/

/* 強調,強い強調 [em,strong]
--------------------------------------------------*/
em,strong {
	font-style: normal;
	font-weight: normal;
}
/* 略語,頭字語 [abbr,acronym]
--------------------------------------------------*/
abbr,acronym {
	border-bottom: 1px dotted #000;
	font-family: Arial, Helvetica, sans-serif;
	cursor: help;
}
/* 定義する用語 [dfn]
--------------------------------------------------*/
dfn {
	font-style: normal;
	font-weight: normal;
}

/* 引用(長文)  [blockquote:ブロックレベル要素]
--------------------------------------------------*/
blockquote {
	margin: 10px 0;
	padding: 1em;
	border: 1px dashed #aaaaaa;
	background: transparent url(../images/markicon/quote.gif) no-repeat 5px 5px;
	color: #666666;
}
blockquote p {
	margin-bottom: 0.5em;
}
blockquote p.origin {
	margin-bottom: 0;
	text-align: right;
}

/* 引用(短文) [q]
--------------------------------------------------*/
q {
	color: #666666;
	border-bottom: 1px dashed #bbb;
}
q:before {
	content: open-quote;
}
q:after {
	content: close-quote;
}

/* 引用元 [cite]
--------------------------------------------------*/
cite {
	color: #666666;
	font-style: normal;
}
/* safari */
cite:before,
cite:after  {
	content: '"';
}
cite:before {
	content: open-quote;
}
cite:after {
	content: close-quote;
}

/* 継承されないフォント要素の再設定 [pre,code,kbd,samp]
--------------------------------------------------------------------------------*/
pre,code,kbd,samp {
	font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","MS PGothic","ＭＳ Ｐゴシック",Meiryo,"メイリオ",Sans-Serif;
}

/* 整形済テキストの装飾 [pre:ブロックレベル要素] 
--------------------------------------------------*/
pre {
	overflow: auto;
	margin: 10px 0;
	padding: 1em;
	border: 1px solid #bbb;
	background: #e6e6e6;
	font-size: 85%;
}

/* コード,変数 [code,var]
--------------------------------------------------*/
code,var {
	font-style: normal;
	font-weight: normal;
}


/*----------------------------------------------------------------------------------------------------
   リストの装飾 [dl,dt,dd,ul,ol,li]
----------------------------------------------------------------------------------------------------*/

/* ブロックレベル要素のmargin,paddingを0に設定 [list-styleの設定は個別で行う]
--------------------------------------------------------------------------------*/
dl,dt,dd,ul,ol,li {
	margin: 0;
	padding: 0;
}

/*----------------------------------------------------------------------------------------------------
   画像,オブジェクトの装飾 [img,object,embed]
----------------------------------------------------------------------------------------------------*/

/* img,object,embed [囲み線を消し、余白が出ないようにする]
--------------------------------------------------------------------------------*/
img,object,embed {
	border: 0;
	vertical-align: top;
}

/*----------------------------------------------------------------------------------------------------
   テーブルの装飾 [table,caption,thead,tfoot,tbody,colgroup,col,tr,th,td]
----------------------------------------------------------------------------------------------------*/

/* 隣接するborder間の余白を消す [table:ブロックレベル要素]
   [firefox:margin-topを指定するとcaptionとの間に余白ができる]
--------------------------------------------------------------------------------*/
table {
	margin: 0 0 10px;
	padding: 0;
	border: 1px solid #bbb;
	border-collapse: collapse;
	border-spacing: 0;
}

/* 継承されないフォント要素の再設定 [IE6:table]
--------------------------------------------------------------------------------*/
* html table {
	line-height: 1.5;
	font-size: 100%;
	letter-spacing: 1px;
}

/* 表のタイトル
--------------------------------------------------*/
caption {
	padding-bottom: 2px;
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

/* 行の装飾
--------------------------------------------------*/
tr.odd {
	background: #f9f9f9;
}
tr:hover {
	background: #f2f2f2;
}

/* 見出しセルの装飾
--------------------------------------------------*/
th {
	background: #e6e6e6;
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

/* セルの装飾 [罫線,余白]
--------------------------------------------------*/
th,td {
	padding: 8px;
	border: 1px solid #bbb;
}


/*----------------------------------------------------------------------------------------------------
   フォームの装飾 [form,fieldset,legend,label,input,textarea,select,option,optgroup,button]
----------------------------------------------------------------------------------------------------*/

/* ブロックレベル要素のmargin,paddingを0に設定
--------------------------------------------------------------------------------*/
form,fieldset {
	margin: 0;
	padding: 0;
}

/* 各ブラウザによるフォーム位置の調整をリセット
--------------------------------------------------------------------------------*/
legend,input,textarea,button {
	margin: 0;
	padding: 0;
}

/* 継承されないフォント要素の再設定
--------------------------------------------------------------------------------*/
form,fieldset,legend,input,select,textarea,button {
	font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","MS PGothic","ＭＳ Ｐゴシック",Meiryo,"メイリオ",Sans-Serif;
	font-size: 100%;
	letter-spacing: 1px;
}
/* フォームの罫線を消す
--------------------------------------------------*/
fieldset {
	border: none;
}
/* フォームタイトル
--------------------------------------------------*/
legend {
	display: inline;
	color: #666;
}

/*----------------------------------------------------------------------------------------------------
   フォーム再定義 [input:class名にtype名を付けて個別に設定する]
----------------------------------------------------------------------------------------------------*/

/* .text [1行入力]
--------------------------------------------------*/
.text {
	height: 15px;
	width: 270px;
	padding: 4px;
	border: 1px solid #a5acb2;
}
/*--- boxmodelbug [IE6:過去互換] ---*/
* html .text {
	height: 25px;
}
.text:hover {
	border: 1px solid #6fa1d9;
}

/* .textarea [複数行入力]
--------------------------------------------------*/
.textarea {
	width: 94%;
	height: 90px;
	padding: 4px;
	border: 1px solid #a5acb2;
}
/*--- boxmodelbug [IE6:過去互換] ---*/
* html .textarea {
	height: 100px;
}
.textarea:hover {
	border: 1px solid #6fa1d9;
}

/* select [セレクトボックス]
--------------------------------------------------*/
select {
	height: 20px;
	padding: 0;
	border: 1px solid #a5acb2;
}

/* Opera [装飾をリセット]
--------------------------------------------------*/
optgroup {
	background-color: #fff;
	color: #000;
	font-weight: bold;
	font-style: normal;
}

/* .password [パスワード入力]
--------------------------------------------------*/
.password {
	width: 270px;
	height: 15px;
	padding: 4px;
	border: 1px solid #a5acb2;
}
/*--- boxmodelbug [IE6:過去互換] ---*/
* html .password {
	height: 25px;
}
.password:hover {
	border: 1px solid #6fa1d9;
}

/* .radio [ラジオボタン opera:デフォルトを使用]
--------------------------------------------------*/
.radio {
	padding: 0 1px;
}

/* .checkbox [チェックボックス opera:デフォルトを使用]
--------------------------------------------------*/
.checkbox {
	padding: 0 1px;
}

/* .file [ファイル参照]
--------------------------------------------------*/
.file {
	padding: 4px;
}

/* .button [ボタン]
--------------------------------------------------*/
.button {
	height: 2em;
	padding: 0 2px;
}

/*----------------------------------------------------------------------------------------------------
   .clearfix []
----------------------------------------------------------------------------------------------------*/

/* clear [区切り線]
--------------------------------------------------*/
.clear {
	clear: both;
}
.clear hr {
	display: none;
}
/* .clearfix
--------------------------------------------------*/
.clearfix:after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
}
.clearfix {
	display: inline-block;
	min-height: 1%;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */





/*----------------------------------------------------------------------------------------------------
   01-layout.css [レイアウト]
----------------------------------------------------------------------------------------------------*/

/* page-layout
--------------------------------------------------------------------------------*/
/*--- 中央寄せ [IE6:過去互換] ---*/
* html body {
	text-align: center;
}
#contents {
	width: 960px;
	margin: 0 auto;
}
/*--- 中央寄せ [IE6:過去互換] ---*/
*  html  #contents {
	text-align: left;
}

#page {
	width: 100%;
}
/* 2column [2カラムレイアウト][IE6:過去互換]
--------------------------------------------------------------------------------*/
#contents {
	/*position: relative;*/
}

#main {
	float: left;
	width: 700px;
}
#sub {
	float: right;
	width: 240px;
	z-index: 10;
}
#pagetop {
	clear: both;
	text-align: right;
}
#pagetop a {
	padding: 6px 5px 2px 25px;
	border: 1px solid #ddd;
	background: url(../images/common/pagetop.gif) no-repeat scroll 5px 50%;
	color: #333;
	text-decoration: none;
}
/*----------------------------------------------------------------------------------------------------
   .clearfix []
----------------------------------------------------------------------------------------------------*/

/* .clearfix
--------------------------------------------------*/
#contents:after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
}
#contents {
	display: inline-block;
	min-height: 1%;
}
/* Hides from IE-mac \*/
* html #contents {
	height: 1%;
}
#contents {
	display: block;
}
/* End hide from IE-mac */

/*----------------------------------------------------------------------------------------------------
   header [ヘッダーの基本構造]
----------------------------------------------------------------------------------------------------*/
/* #header-area
--------------------------------------------------*/
#header-area {
	z-index: 10;
	width: 100%;
	height: 130px;
	background: transparent url(../images/common/header-bg.jpg) repeat-x 50% 0%;
}

/* #header-area fixed [IE6:標準モードのみ対応]
--------------------------------------------------
#header-area {
	position: fixed;
	top: 0;
	left: 0;
}
* html body {
	background: url(null) fixed;
}
* html #header-area {
	position: absolute;
	top: expression(eval(document.documentElement.scrollTop+0));
}
#page {
	padding-top: 140px;
}*/

/* #header [z-indexでdropmenu-level2を表示]
--------------------------------------------------*/
#header {
	position: relative;
	z-index: 10;
	width: 960px;
	margin: 0 auto;
}
/*--- 中央寄せ [IE6:過去互換] ---*/
* html #header {
	text-align: left;
}

/*----------------------------------------------------------------------------------------------------
   #site-id [サイト名・ロゴ]
----------------------------------------------------------------------------------------------------*/
/* 画像置換 [テキストをz-indexでa:背景の下へ]
--------------------------------------------------*/
#site-id {
	position: relative;
	height: 70px;
}
/* サイトタイトル
--------------------------------------------------*/
#site-id h1 a {
	display: block;
	width: 250px;
	height: 70px;
	text-decoration: none;
}
/* 画像置換 [テキストをz-indexでa要素の背景の下へ]
--------------------------------------------------
#site-id h1 a span {
	position: absolute;
	top: 25px;
	left: 0;
	z-index: -1;
}*/
/* .description [ディスクリプション]
--------------------------------------------------*/
#site-id .description {
	position: absolute;
	top: 20px;
	left: 250px;
	font-size: 100%;
	font-weight: normal;
}
/* .contact [お問い合わせ]
--------------------------------------------------*/
#site-id .contact {
	position: absolute;
	top: 0;
	right: 0;
	width: 250px;
	height: 70px;
	background:  transparent url(../images/common/contact.jpg) no-repeat 0 0;
	font-size: 100%;
	font-weight: normal;
}
/* 画像置換 [テキストをz-indexでcontact要素の背景の下へ]
--------------------------------------------------*/
#site-id .contact span {
	position: absolute;
	top: 25px;
	left: 0;
	z-index: -1;
	visibility:hidden;
}
* html #site-id .contact span {
	width: 0;
	height: 0;
	overflow: hidden;
}
/*----------------------------------------------------------------------------------------------------
   #global-navi
----------------------------------------------------------------------------------------------------*/

/* navi-title [メニュータイトル]
--------------------------------------------------*/
#global-navi h3 {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}
/* #global-navi .ul [リストの設定リセット]
--------------------------------------------------*/
#global-navi ul {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}

/* .level1 [li要素をfloatで横並びにしてa要素をblock]
--------------------------------------------------------------------------------*/

/* ul [ul要素にclearfixスタイルを適用しli要素のfloatをclear]
--------------------------------------------------*/
#global-navi ul.level1 {
	background: #fff url(../images/common/globalnavi-bg.jpg) no-repeat 0 0;
}

/* li [relativeでlevel2の基準位置を設定、floatで横並び]
--------------------------------------------------*/
#global-navi ul.level1 li {
	position: relative;
	float: left;
}

/* li a [IE6:li要素内のa要素にblockを設定した時にstepdownbugが発生する]
--------------------------------------------------*/
#global-navi ul.level1 li a {
	display: block;
	height: 40px;
	line-height: 40px;
	padding: 0 1em;
	text-decoration: none;
}
/*--- stepdownbug [IE6:標準・過去] ---*/
* html #global-navi ul.level1 li a {
	display: inline;
}
/* link-color a[0.1.1.3] a:hover[0.1.2.3]
--------------------------------------------------*/
#global-navi ul.level1 li a {
	color: #555;
}
#global-navi ul.level1 li.on a,
#global-navi ul.level1 li:hover a {
	color: #00a1e9;
}
#global-navi ul.level1 li.on,
#global-navi ul.level1 li:hover {
	background: #fff none no-repeat 0 -40px;
}

/*----------------------------------------------------------------------------------------------------
   .guide-navi [ガイドナビ]
----------------------------------------------------------------------------------------------------*/

/* positionで位置を設定
--------------------------------------------------*/
#header .guide-navi {
	position: absolute;
	top: 25px;
	right: 0;
}

/* navi-title [メニュータイトル]
--------------------------------------------------*/
#header .guide-navi h3 {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}
/* navi [リストの再設定]
--------------------------------------------------*/
#header .guide-navi ul {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}
#header .guide-navi ul li {
	display: inline;
	padding: 0 0.6em 0 1em;
	border-left: 1px solid #333;
}
/*----------------------------------------------------------------------------------------------------
   #contents-area #key-visual [キービジュアル設定]
----------------------------------------------------------------------------------------------------*/
#contents-area #key-visual {
	width: 960px;
	margin-bottom: 20px;
}
/*--- 中央寄せ [IE6:過去互換] ---*/
* html #contents-area #key-visual  {
	text-align: left;
}

/*----------------------------------------------------------------------------------------------------
   #main .headline [メイン見出し設定]
----------------------------------------------------------------------------------------------------*/
#main h2.headline {
	height: 50px;
	line-height: 50px;
	margin-bottom: 15px;
	text-indent: 15px;
	background: #fff url(../images/common/h2_bg.jpg) no-repeat 0 0;
}

#main .section {
	clear: both;
	overflow: hidden;
	margin-bottom: 10px;
}
#main p {
	margin-bottom: 10px;
}

#main .section h3.headline {
	height: 35px;
	line-height: 35px;	
	margin: 0 0 10px 0;
	border-bottom: 1px solid #e2e2e2;
	text-indent: 15px;
	background: #fff url(../images/common/h3_icon.jpg) no-repeat 0 0;
}
#main .section h4 {
	font-weight: bold;
}
#main .section p img {
	margin: 0 10px;
}
#main .section .banner {
	width: 340px;
}
#main .section .banner p img {
	margin: 0;
}
#main .section .banner a:hover img {
	opacity: 0.6;
}

/*----------------------------------------------------------------------------------------------------
   #sub .local-navi [サイドメニュー]
----------------------------------------------------------------------------------------------------*/
/* 角丸下部分
--------------------------------------------------*/
#sub .local-navi {
	position: relative;
	margin-bottom: 20px;
	padding: 0 6px 6px;
	background: #fff url(../images/common/localnavi-bg.jpg) no-repeat 0 100%;
}
/* 見出部分
--------------------------------------------------*/
#sub .local-navi h3 {
	height: 50px;
	line-height: 50px;
	margin: 0 -6px 0;
	padding: 6px 0 0 20px;
	background: #fff url(../images/common/localnavi_title.jpg) no-repeat 0 100%;
	color: #333;
	font-weight: bold;
}
/* 見出部分
--------------------------------------------------*/
#sub .local-navi h3.contact {
	height: 96px;
	line-height: 96px;
	background: #fff url(../images/common/localnavi_contact.jpg) no-repeat 0 100%;
}
/* 画像置換
--------------------------------------------------*/
#sub .local-navi h3.contact span {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
/* localnavi内ul,dl設定
--------------------------------------------------*/
#sub .local-navi ul {
	list-style: none outside none;
	width: 228px;
}
#sub .local-navi ul li {
	border-top: 1px solid #e2e2e2;
}
#sub .local-navi ul li a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding-left: 20px;
	color: #333;
	font-size: 108%;
	text-decoration: none;
}
#sub .local-navi ul li a:hover {
	color: #00a1e9;
	background-color: #f4f4f4;
}

#sub .local-navi dl {}
#sub .local-navi dl dt {
	padding: 10px 5px 5px;
	border-top: 1px solid #e2e2e2;
}
#sub .local-navi dl dd {
	line-height: 1.8;
	padding:0 10px 10px;
	font-size: 85%;
}

/*----------------------------------------------------------------------------------------------------
   footer [フッターの基本構造]
----------------------------------------------------------------------------------------------------*/
/* #footer-area
--------------------------------------------------*/
#footer-area {
	z-index: 10;
	clear: both;
	width: 100%;
	background: transparent url(../images/common/footer-bg.jpg) repeat-x 50% 0%;
}
/* #header [z-indexでdropmenu-level2を表示]
--------------------------------------------------*/
#footer {
	position: relative;
	z-index: 10;
	width: 960px;
	margin: 0 auto;
}
/*--- 中央寄せ [IE6:過去互換] ---*/
* html #footer {
	text-align: left;
}

/*----------------------------------------------------------------------------------------------------
   #footer .guide-navi
----------------------------------------------------------------------------------------------------*/

/* navi-title [メニュータイトル]
--------------------------------------------------*/
#footer .guide-navi h3 {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}
/* #global-navi .ul [リストの設定リセット]
--------------------------------------------------*/
#footer .guide-navi ul {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}
/* ul [ul要素にclearfixスタイルを適用しli要素のfloatをclear]
--------------------------------------------------*/
#footer .guide-navi ul {
	height: 40px;
}

/* li [relativeでlevel2の基準位置を設定、floatで横並び]
--------------------------------------------------*/
#footer .guide-navi ul li {
	float: left;
}

/* li a [IE6:li要素内のa要素にblockを設定した時にstepdownbugが発生する]
--------------------------------------------------*/
#footer .guide-navi ul li a {
	display: block;
	height: 40px;
	line-height: 40px;
	padding: 0 1em;
	text-decoration: none;
}
/*--- stepdownbug [IE6:標準・過去] ---*/
* html #footer .guide-navi ul li a {
	display: inline;
}
/* link-color a[0.1.1.3] a:hover[0.1.2.3]
--------------------------------------------------*/
#footer .guide-navi ul li a {
	color: #555;
}
#footer .guide-navi ul li.on a,
#footer .guide-navi ul li:hover a {
	color: #00a1e9;
}
#footer .guide-navi ul li.on,
#footer .guide-navi ul li:hover {
	background: #fff url(../images/globalnavi-bg.jpg) no-repeat 0 -40px;
}

/* #footer h3.headline
--------------------------------------------------
#footer h3.headline {
	height: 70px;
	background: transparent url(../images/footer-id.jpg) no-repeat 0 0;
}*/
/* 画像置換 [テキストをz-indexでa要素の背景の下へ]
--------------------------------------------------
#footer h3.headline span {
	position: absolute;
	top: 60px;
	left: 0;
	z-index: -1;
}*/
/* dl
--------------------------------------------------*/
#footer .group-address dl {
	float: left;
	width: 220px;
	margin-right: 20px;
}
#footer .group-address dt {
	margin-bottom: 5px;
}
#footer .group-address dd {
	font-size: 85%;
	margin-bottom: 10px;
}

/* address
--------------------------------------------------*/
#footer #copyright {
	clear: both;
	text-align: right;
}
#footer #copyright small{
	font-size: 85%;
}
/*編集用*/
/* 順不同リスト [表示位置:outside]
--------------------------------------------------*/
#main ul li {
	margin-left: 1.6em;
	padding-left: 0.4em;
}
/* 順序付リスト [リストマーク位置修正]
--------------------------------------------------*/
#main ol li {
	margin-left: 2em;
}
/* フロートの設定
--------------------------------------------------*/
.fl {
	float: left;
}
.fr {
	float: right;
}
.fside {
	overflow: hidden;
}
.cl {
	clear: both;
}

/* .dlTable-01 []
---------------------------------------------------------------------- */
dl.dlTable-01 {
	line-height: 1.5;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	border: 1px solid #ccc;
	border-top: 0;
	background:#eee;
}
dl.dlTable-01 dt {
	border-top: 1px solid #ccc;
	padding: 0.5em 1em;
}
dl.dlTable-01 dd {
	margin: -2.5em 0 0 10em;
	border-left: 1px solid #ccc;
	background:#fff;
	padding: 0.5em 1em;
}
* html dl.dlTable-01 {
	width: 100%;
}
/* .dlTable-02 []
---------------------------------------------------------------------- */
dl.dlTable-02 {
	line-height: 1.5;
	overflow: hidden;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	border-bottom: 1px dotted #666;
	border-top: 0;
	background-color: #f6f6f6;
}
dl.dlTable-02 dt {
	margin-top: -1px;
	border-top: 1px dotted #666;
	padding: 0.5em 1em;
}
dl.dlTable-02 dd {
	margin: -2.5em 0 0 7em;
	background:#fff;
	padding: 0.5em 1em;
}
* html dl.dlTable-02 {
	width: 100%;
}
/* .dlTable-03 []
---------------------------------------------------------------------- */
dl.dlTable-03 {
	line-height: 1.5;
	overflow: hidden;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	border: 1px solid #00a1e9;
}
dl.dlTable-03 dt {
	margin-top: -1px;
	padding: 0.5em 1em;
	color: #666;
	font-weight: bold;
}
dl.dlTable-03 dd {
	margin: -2.5em 0 0 5.5em;
	background:#fff;
	padding: 0.5em 1em;
	color: #666;
}
* html dl.dlTable-03 {
	width: 100%;
}
/* process
------------------------------------------------------------------------------------------*/
#process #repacking ul {
	margin-right: 30px;
}