/*
====================================================
「zoom:1」の指定について
====================================================
IEのhasLayoutプロパティをtrueにするための指定です。
IEには、HTML(XHTML)内の全ての要素にhasLayoutプロパティというものがあります。
要素がレイアウト情報を持つか否かを表しています。
hasLayoutがfalseだと、配置の計算に誤りが生じ、
意図通りの場所に要素が配置されなかったり、
背景画像の表示が乱れたりといった不具合が発生します。
不具合の回避策として、幅や高さを明示する、zoomプロパティを指定する等の方法があります。
*/


body {
	margin: 0;
	padding: 0;
	color: #555;
	background: #c5e4f6 url(../images/common/body_bg.gif) repeat-x;
	font-size: 80%;
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}


/****************************************************
	印刷ページ向け
*****************************************************/

body.print {
	background: #fff none !important;
}
@media print {
	body.print table.base {
		border-collapse: collapse;
		border: 1px #ccc solid;
		background: #fff;
	}
	body.print table.base th,
	body.print table.base td {
		border: 1px #ccc solid;
	}
	body.print .news-info-area {
		border-width: 1px;
	}
	body.print #alpha .news-info-area .news-info-title {
		padding: 4px;
		border-bottom: 1px #cb5150 solid;
	}
}

/****************************************************
	見出し
*****************************************************/

h1 {
	font-size: 150%;
	margin: 0;
}
#alpha h2 {
	height: 60px;
	margin: 0 10px 10px 10px;
	text-indent: -9999px;
	overflow: hidden;
}
#alpha h3 {
	margin: 20px 10px 10px 10px;
	height: 39px;
	line-height: 160%;
/*	text-indent: -9999px;*/
	background: transparent url("../media/img-lib/common/h2-background.gif") no-repeat 0px 0px;
	color: #ffffff;
	overflow: hidden;
	clear: both;
	font-size: 120%;
	font-weight: bold;
	vertical-align: middle;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
#alpha h4 {
	margin: 15px 20px 10px 20px;
	padding: 6px 5px 6px 25px;
	border-top: 1px #e4e4e4 solid;
	border-bottom: 1px #e4e4e4 solid;
	font-size: 100%;
	background: #fafafa url(../images/common/h4_bg.gif) no-repeat left center;
	clear: both;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
#alpha h3.long,
#alpha h3.short,
#alpha h4.long,
#alpha h4.short {
	text-indent: 0;
	overflow: visible;
	height: 39px;
	font-size: 120%;
	position: relative;
	padding: 0;
	border: 0;
}
#alpha h3.long a,
#alpha h3.short a,
#alpha h3.long span,
#alpha h3.short span,
#alpha h4.long a,
#alpha h4.short a,
#alpha h4.long span,
#alpha h4.short span {
	position: absolute;
	left: 10px;
	bottom: 50%;
	margin-bottom: -0.45em;
}
#alpha h3.long {
	background: transparent url(../images/common/h3_bg_long.gif) no-repeat;
}
#alpha h3.short,
#alpha h4.short {
	background: transparent url(../images/common/h3_bg_short.gif) no-repeat;
}
#alpha h5 {
	margin: 15px 30px 10px 30px;
	padding: 3px 0 3px 10px;
	background: url(../images/common/h5_bg.gif) no-repeat left center;
	border-bottom: 1px #e4e4e4 dashed;
	font-size: 100%;
}

#alpha-inner form h3 {
	margin: 20px 20px 10px 10px;
}

/****************************************************
	初期化
*****************************************************/

#content p,
#content li,
#content dt,
#content dd,
#content th,
#content td {
	line-height: 1.5;
}

#alpha-inner p,
#alpha-inner table,
#alpha-inner dl {
	margin: 0 20px 10px 20px;
}
#alpha-inner ul,
#alpha-inner ol {
	margin: 0 20px 10px 45px;
	padding: 0;
}
/* 入れ子リスト */
#alpha-inner li ul,
#alpha-inner li ol {
	margin: 0 0 0 25px;
}

#alpha-inner .level3 {
	margin-left: 20px;
	margin-right: 20px;
}
#alpha-inner ul.level3,
#alpha-inner ol.level3 {
	margin-left: 45px;
}
#alpha-inner .level4 {
	margin-left: 30px;
	margin-right: 30px;
}
#alpha-inner ul.level4,
#alpha-inner ol.level4 {
	margin-left: 55px;
}
#alpha-inner .level5 {
	margin-left: 40px;
	margin-right: 40px;
}
#alpha-inner ul.level5,
#alpha-inner ol.level5 {
	margin-left: 65px;
}

#alpha-inner * h3,
#alpha-inner * h4,
#alpha-inner * h5,
#alpha-inner * p,
#alpha-inner * table,
#alpha-inner * dl {
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
}
#alpha-inner * ul,
#alpha-inner * ol {
	margin: 0 0 10px 25px;
}

form {
	margin: 0;
	padding: 0;
}

#alpha-inner form p,
#alpha-inner form table,
#alpha-inner form dl {
	margin: 0 20px 10px 20px;
}
#alpha-inner form h4 {
	margin: 15px 20px 10px 20px;
}
#alpha-inner form h5 {
	margin: 15px 30px 10px 30px;
}
#alpha-inner form .level3 {
	margin-left: 20px;
	margin-right: 20px;
}
#alpha-inner form .level4 {
	margin-left: 30px;
	margin-right: 30px;
}
#alpha-inner form .level5 {
	margin-left: 40px;
	margin-right: 40px;
}

a img {
	border: 0;
}


/****************************************************
	リンク
*****************************************************/

a {
	text-decoration: underline;
	color: #555;
}
a:visited {
	color: #555;
}
a:hover {
	color: #0088cc;
}

#global-menu a,
#footer a {
	color: #fff;
}
#global-menu a:visited,
#footer a:visited {
	color: #fff;
}
#global-menu a:hover,
#footer a:hover {
	color :#bdeefd;
}


/****************************************************
	テーブル
*****************************************************/

table {
	empty-cells: show;
}

/* 縦書きセル */
table .top-to-bottom {
	width: 1.2em !important;
	text-align: center !important;
	line-height: 1.2 !important;
}

/* 基本テーブル */
table.base {
	width: 555px;
	border-collapse: separate;
	border-spacing: 1px;
	background: #e4e4e4;
}
table.base caption {
	width: 555px;
	margin: 0 auto 5px auto;
	text-align: left;
}
table.base th,
table.base td {
	padding: 5px 8px;
	border: 1px #fff solid;
	text-align: left;
}
table.base th {
	background: #eef8fc;
	font-weight: normal;
}
table.base td {
	background: #fff;
}
table.level4 {
	margin: 0 30px 10px 30px !important;
	width: 535px;
}
table.level4 caption {
	width: 535px;
}
table.level5 {
	margin: 0 40px 10px 40px !important;
	width: 515px;
}
table.level5 caption {
	width: 515px;
}
table.width-auto {
	width: auto;
}

/* ２列に並べるテーブル */
table.half,
table.level4-half {
	float: left;
	width: 267px;
	margin-left: 0 !important;
	position: relative;
	left: 20px;
}
table.half {
	left: 20px;
}
table.level4-half {
	margin-right: 20px !important;
	left: 30px;
}

/* 営業所情報・物流センターテーブル */
table.branch-info,
table.center-info {
	border-collapse: separate;
	border-spacing: 1px;
	width: 555px;
	background: #e4e4e4 url(../images/common/table/branch-info_bg.gif) no-repeat;
}
table.branch-info th,
table.branch-info td,
table.center-info th,
table.center-info td {
	padding: 5px 8px;
	border: 1px #fff solid;
	text-align: left;
}
table.branch-info th,
table.center-info th {
	width: 27%;
	background: #fafafa;
	font-weight: normal;
}
table.branch-info th.branch-name,
table.center-info th.center-name {
	width: auto;
	border-width: 0 0 1px 0;
	background: #eef8fc url(../images/common/table/branch-name_bg.gif) no-repeat;
}
table.branch-info td,
table.center-info td {
	width: 73%;
	background: #fff;
}
table.branch-info caption,
table.center-info caption {
	width: 545px;
	margin: 0 auto 5px auto;
	text-align: left;
}


/****************************************************
	フォーム部品
*****************************************************/

#header input.text,
#beta input.text {
	height: 17px;
	padding: 0;
	border-width: 1px;
	border-color: #aca899 #e4e2d5 #e4e2d5 #aca899;
	border-style: solid;
}


/****************************************************
	仕切り線
*****************************************************/

#alpha div.hr {
	margin: 10px auto;
	padding: 0;
	width: 575px;
	background: url(../images/common/border/1px_d8d8d8_dashed.gif) repeat-x center center;
}
#alpha div.hr hr {
	margin: 0;
	padding: 0;
	height: 1px;
	border: 0;
	visibility: hidden;
}


/****************************************************
	汎用クラス
*****************************************************/

.margin-top-0 {
	margin-top: 0 !important;
}
.margin-right-0 {
	margin-right: 0 !important;
}
.margin-bottom-0 {
	margin-bottom: 0 !important;
}
.margin-left-0 {
	margin-left: 0 !important;
}

.align-right {
	text-align: right !important;
}
.align-center {
	text-align: center !important;
}

.list-style-none {
	list-style-type: none !important;
}
.font-weight-normal {
	font-weight: normal !important;
}
.valign-top {
	vertical-align: top !important;
}

.float-left {
	float: left;
	display: inline;		/* IE6で左マージンが2倍になるバグを回避する */
}
img.float-left {
	margin: 0 12px 12px 0;
}
.float-right {
	float: right;
	display: inline;		/* IE6で左マージンが2倍になるバグを回避する */
}
img.float-right {
	margin: 0 0 12px 12px;
}

.clear-both {
	clear: both;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
.clear-left {
	clear: left;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
.clear-right {
	clear: right;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}

.bg-gray {
	background: #fafafa !important;
}
p.bg-gray,
div.bg-gray {
	padding: 10px;
}

.text-red {
	color: #f00;
}

/****************************************************
	クラス付きリスト
*****************************************************/

ul.arrow01 {
	list-style-image: url(../images/common/icon/arrow01_right.gif);
}
ul.kome {
	list-style-image: url(../images/common/icon/kome.gif);
}


/****************************************************
	クラス付きリンク
*****************************************************/

a.arrow01 {
	background: url(../images/common/icon/arrow01_right.gif) no-repeat left center;
	padding-left: 15px;
}
a.arrow01-left {
	background: url(../images/common/icon/arrow01_left.gif) no-repeat left center;
	padding-left: 15px;
}


/****************************************************
	共通エリア
*****************************************************/

#header-inner,
#global-menu ul,
#flash,
#content {
	/*width: 800px;*/
	width: 1024px;
	margin: 0 auto;
}
#content-agreement {
	width: 800px;
	margin: 0 auto;
}

#container {
	margin: 0 auto;
	background: url(../images/common/container_bg.gif) repeat-y center top;
}

#container-inner {
	background: url(../images/common/container-inner_bg.jpg) no-repeat center top;
}

/* ヘッダー */
#header {
	height: 78px;
	overflow: hidden;
}
#header ul {
	list-style-type: none;
}
#header-name {
	float: left;
	width: 329px;
	height: 78px;
	/* background: url(../images/common/header/header-name.gif) no-repeat 10px 14px; */
}
.header-shd #header-name {
	width: 297px;
}
#header-name a {
	display: block;
	height: 54px;
	margin: 14px 0 0 10px;
	background: url(../images/common/header/header-name.gif) no-repeat;
	text-indent: -9999px;
	overflow: hidden;
}
.header-shd #header-name a {
	background-image: url(../images/common/header/header-name_shd.gif);
}
#header-menu {
	float: right;
	width: 263px;
	height: 23px;
	margin: 15px 0 0 0;
}
.header-shd #header-menu {
	width: 446px;
}
.header-shd #header-menu .ir-eng {
	float: left;
	width: 168px;
	margin-right: 15px;
}
.header-shd #header-menu .ir-eng a {
	display: block;
	height: 14px;
	background: url(../images/common/header/ir_eng.gif) no-repeat 0 0;
	text-indent: -9999px;
	overflow: hidden;
}
.header-shd #header-menu .ir-eng a:hover {
	background-position: -168px 0;
}
#header-menu .sitemap {
	float: left;
	width: 74px;
	margin-right: 15px;
}
#header-menu .sitemap a {
	display: block;
	height: 11px;
	background: url(../images/common/header/sitemap.gif) no-repeat 0 0;
	text-indent: -9999px;
	overflow: hidden;
}
#header-menu .sitemap a:hover {
	background-position: -74px 0;
}
#header-menu .contact {
	float: left;
	width: 174px;
}
#header-menu .contact a {
	display: block;
	height: 23px;
	background: url(../images/common/header/contact.gif) no-repeat 0 0;
	text-indent: -9999px;
	overflow: hidden;
}
#header-menu .contact a:hover {
	background-position: -174px 0;
}
#util-menu {
	clear: right;
	float: right;
	width: 304px;
	height: 19px;
	margin: 10px 0 0 0;
}
.header-shd #util-menu {
	width: 115px;
}
#util-menu .font-size {
	float: left;
	width: 115px;
	margin-right: 15px;
}
.header-shd #util-menu .font-size {
	margin-right: 0;
}
#util-menu .font-size-text {
	display: block;
	float: left;
	width: 58px;
	height: 17px;
	background: url(../images/common/header/font-size.gif) no-repeat;
	text-indent: -9999px;
	overflow: hidden;
}
#util-menu .font-size ul {
	float: left;
	width: 57px;
	margin: 0;
	padding: 0;
}
#util-menu .font-size li {
	float: left;
	width: 17px;
	padding-left: 2px;
}
#util-menu .font-size a {
	display: block;
	height: 17px;
	background: url(../images/common/header/font-size_buttons.gif) no-repeat;
	text-indent: -9999px;
	overflow: hidden;
}
#util-menu .font-size #font-small {
	background-position: 0 0;
}
#util-menu .font-size #font-medium {
	background-position: -17px 0;
}
#util-menu .font-size #font-large {
	background-position: -34px 0;
}
#util-menu .search {
	float: left;
	width: 174px;
}
#util-menu .search input.text {
	width: 108px;
	margin-right: 10px;
	vertical-align: top;
}
#util-menu .search button.submit {
	width: 54px;
	height: 19px;
	vertical-align: top;
}

/* グローバルメニュー */
#global-menu {
	clear: both;
	color: #fff;
}
#global-menu ul {
	padding: 0;
	background: #3568a1;
	height: 48px;
}
#global-menu li {
	display: block;
	float: left;
	overflow: hidden;
}
#global-menu a {
	display: block;
	height: 48px;
	background: url(../images/common/header/global-menu.gif);
	text-indent: -9999px;
	overflow: hidden;
}
#global-menu a.home {
	width: 108px;
	background-position: 0 0;
}
#global-menu a.home:hover,
#global-menu .current a.home {
	background-position: 0 -48px;
}
#global-menu a.service {
	width: 183px;
	background-position: -108px 0;
}
#global-menu a.service:hover,
#global-menu .current a.service {
	background-position: -108px -48px;
}
#global-menu a.branch {
	width: 132px;
	background-position: -291px 0;
}
#global-menu a.branch:hover,
#global-menu .current a.branch {
	background-position: -291px -48px;
}
#global-menu a.estimate {
	width: 139px;
	background-position: -423px 0;
}
#global-menu a.estimate:hover,
#global-menu .current a.estimate {
	background-position: -423px -48px;
}
#global-menu a.company {
	width: 120px;
	background-position: -562px 0;
}
#global-menu a.company:hover,
#global-menu .current a.company {
	background-position: -562px -48px;
}
#global-menu a.recruit {
	width: 118px;
	background-position: -682px 0;
}
#global-menu a.recruit:hover,
#global-menu .current a.recruit {
	background-position: -682px -48px;
}

#flash {
	clear: both;
	height: 228px;
}

#content {
	clear: both;
	padding-bottom: 30px;
	background: #fff url(../images/common/content_bg.gif) repeat-x;
}
#content:after {
  content : "";
  display : block;
  height : 0;
  clear : both;
}

/* フッター */
#footer {
	clear: both;
	height: 101px;
	background: #1a6193;
	color: #fff;
	border-top: 1px #eee solid;
}
#footer a {
	margin-right: 10px;
	padding-left: 12px;
	background: url(../images/common/footer/arrow.gif) no-repeat left center;
}
#footer-inner {
	width: 780px;
	margin: 0 auto;
	padding-top: 10px;
}
#holdings-menu ul,
#footer-menu,
#copyright {
	margin: 0;
	padding: 0;
}
#holdings-menu li,
#holdings-menu ul,
#footer-menu li {
	display: inline;
}
#holdings-menu {
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px #e4e4e4 solid;
}
#copyright {
	margin-top: 10px;
	text-align: right;
	color: #e4e4e4;
	font-size: 85%;
}
#copyright .company-name {
	text-transform: uppercase;
}
.footer-shd #footer-menu {
	margin: 0;
	padding: 0 0 10px 0;
	border-bottom: 1px #e4e4e4 solid;
}
.footer-shd #copyright {
	margin-top: 20px;
	padding-top: 1.2em;
}


/* コンテンツエリア */
.layout-wm #alpha {
	float: left;
	width: 595px;
	padding-left: 10px;
}

/* ローカルナビゲーション・ユーティリティエリア */
.layout-wm #beta {
	float: right;
	width: 175px;
	margin-top: 16px;
	padding-right: 10px;
}

/* パンくずリスト */
#topic-path {
	width: 760px;
	margin: 0 auto;
	padding: 8px 20px;
	background: #fff;
	line-height: 1.2;
}

/* お知らせ一覧 */
.news-list {
	border-collapse: collapse;
}
.news-list th {
	padding: 0 10px 3px 0;
	white-space: nowrap;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}
.news-list td {
	padding: 1px 0;
	vertical-align: top;
}

/* ショートカットメニュー */
.shortcut {
	margin: 0 10px 20px 10px;
	background: url(../images/common/gray-frame.gif) no-repeat;
	text-align: center;
}
.shortcut-inner {
	padding: 8px 10px;
	background: url(../images/common/gray-frame_bottom.gif) no-repeat left bottom;
	line-height: 1.5;
}

/* 一覧を表示するリンク */
/*
.view-all {
	text-align: right;
}
*/

/* ページの先頭等にスクロールするリンク */
.scroll-navi {
	clear: both;
	width: 202px;
	height: 11px;
	margin: 0 10px 0 auto !important;
}
.scroll-navi a {
	height: 11px;
	text-indent: -9999px;
	overflow: hidden;
}
.scroll-navi a.to-section-top {
	width: 100px;
	float: left;
	background: url(../images/common/button/to-section-top.gif) no-repeat;
}
.scroll-navi a.to-section-top-myseino {
	width: 100px;
	float: right;
	background: url(../images/common/button/to-section-top.gif) no-repeat;
}
.scroll-navi a.to-page-top {
	width: 87px;
	float: right;
	background: url(../images/common/button/to-page-top.gif) no-repeat;
}
.scroll-navi-en {
	width: 179px;
}
.scroll-navi-en a.to-section-top {
	width: 105px;
	float: left;
	background: url(../images/common/button/to-section-top_en.gif) no-repeat;
}
.scroll-navi-en a.to-page-top {
	width: 59px;
	float: right;
	background: url(../images/common/button/to-page-top_en.gif) no-repeat;
}

/* 特殊訴求エリア */
.special-area {
	clear: both;
	width: 535px;
	padding: 10px 20px 0 25px;
	margin: 0 10px;
	background: url(../images/common/special-area_bg.gif) no-repeat;
}
#alpha .special-area .special-title {
	margin: 0 0 10px 0;
	padding: 0;
	height: 41px;
}

/* Adobe Reader ダウンロード */
.download-adobe-reader {
	clear: both;
	background: #fafafa;
	margin: 0 10px 10px 10px;
	padding: 10px 10px 5px 10px;
	line-height: 1.5;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
.download-adobe-reader p {
	margin: 0 0 5px 0 !important;
}
.download-adobe-reader img.get-adobe-reader {
	vertical-align: top;
}
.download-adobe-reader .text-link {
	background: url(../images/common/icon/arrow01_right.gif) no-repeat left center;
	padding-left: 15px;
	margin-left: 5px;
}

/* バナーエリア */
#alpha .banner-area {
	margin: 15px 0 0 10px;
}
#alpha .banner-area a {
	float: left;
	width: 185px;
	height: 45px;
	margin: 0 8px 8px 0;
}

/* 背景がグレーで左に矢印が付くリンク */
.body-link,
.branch-link,
.pdf-link {
	float: left;
	margin-right: 10px !important;
	border: 1px #e4e4e4 solid;
	line-height: 1 !important;
	display: inline;		/* IE6の左マージンが2倍になるバグを回避する */
	position: relative;
}
#alpha-inner ul.related-service {
	margin: -5px 10px 10px 20px;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
ul.related-service:after {
	content : "";
	display : block;
	height : 0;
	clear : both;
}
ul.related-service li {
	list-style-type: none;
	display: block;
	float: left;
	margin: 10px 10px 0 0;
	border: 1px #e4e4e4 solid;
	line-height: 1 !important;
	position: relative;
}
.body-link a,
.branch-link a,
.pdf-link a,
ul.related-service a {
	display: block;
	float: left;
	padding: 10px 6px 10px 20px;
	background: #fafafa url(../images/common/icon/arrow01_right.gif) no-repeat 5px center;
	border: 1px #fff solid;
	white-space: nowrap;
}
.body-link .other-window,
.branch-link .other-window,
.pdf-link .other-window,
ul.related-service li .other-window {
	position: absolute;
	bottom: 0;
	margin-left: 10px;
	white-space: nowrap;
}

/* ２列に並べるボックス */
.half-box-outer {
	clear: both;
	width: 596px;
	margin: 0 -21px 20px 10px;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
.half-box-outer:after {
	content : "";
	display : block;
	height : 0;
	clear : both;
}
.half-box-outer h3 {
	margin: 0 !important;
}
.half-box-outer p {
	margin: 5px 10px 0 10px !important;
}
.half-box-outer ul {
	margin: 5px 10px 0 25px !important;
}
.half-box {
	float: left;
	width: 277px;
	margin-right: 21px;
}

/* ２列に並べるボックス(背景付き) */
.special-box-outer {
	clear: both;
	margin-left: 20px;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
.special-box {
	float: left;
	width: 235px;
	padding: 7px 30px 10px 20px;
	background: url(../images/common/box_bg.gif) no-repeat;
}
#alpha .special-box h4,
#alpha .special-box h5 {
	margin: 0 0 10px 0;
	padding: 7px 0 5px 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	border-bottom: 2px #3379ac solid;
	background: transparent none;
}
#alpha .special-box p {
	margin: 0;
}
.special-box .view-detail a {
	float: right;
	height: 18px;
	margin-top: 5px;
	text-indent: -9999px;
	overflow: hidden;
}

/* ３列に並べるボックス */
.one-third-box-outer {
	clear: both;
	width: 594px;
	margin: 0 -20px 20px 10px;
	zoom: 1;		/* IEのhasLayoutをtrueにするための指定 */
}
.one-third-box-outer:after {
	content : "";
	display : block;
	height : 0;
	clear : both;
}
.one-third-box-outer h3 {
	margin: 0 !important;
}
.one-third-box-outer p {
	margin: 5px 10px 0 10px !important;
}
.one-third-box-outer ul {
	margin: 5px 10px 0 25px !important;
}
.one-third-box {
	float: left;
	width: 178px;
	margin-right: 20px;
}


/****************************************************
	フォーム
*****************************************************/

#alpha label {
	margin-right: 15px;
}
/* (STR) 2016.09.29 K16-358 Y.Iwama */
#eID{
	position:fixed;
	z-index:100;
	bottom:2%;
	right:2%;
}
/* (END) 2016.09.29 K16-358 Y.Iwama */