@charset "UTF-8";
/* ---------------------------------------------------------------------------------

■CSSルール：
・W3C CSS Validation でエラーがない状態を保つ
　（http://jigsaw.w3.org/css-validator/）
・IAにて決められた【エリア定義】は、CSSと連動してid指定とし、
　サイト内にて重複しないものであること。
・プレフィックス+エリア定義ID（#tano-header等）以下のセレクタを設定すること。
 （名前空間維持のためグローバルでのCSS指定は禁止）
・セレクタ及び属性は、ターゲットブラウザ以降で対応のものを使う。
・ID及びclassの命名規則は、設定した内容の存在理由がわかる内容で書く。（略称はNG）
・コメントアウトは、都度記述する、
　（定義したID及びclassを役割レベルで書く+任意で追加する。）

■目次：
１．グローバルエリア定義
　　・グローバルエリア内設定
　　　　　・ヘッダ内設定
　　　　　・フッタ内設定
２．コンチネンタルエリア定義
　　・コンチネンタルレイアウト定義
　　　　　・ヘッダ内設定
　　　　　・サイド内設定
　　　　　・パンクズ内設定
　　　　　・フッタ内設定
３．コンテンツエリア
　　・標準エレメント設定（hX、p、ul/ol/li、dl/dt/dd、など）
　　・パーツエレメント設定（画像配置、ボックス、テーブル、フロートリスト、など）
　　・特殊エレメント設定（個別定義されるもの、リッチコンテンツなど）
４．１カラム対応（トップページやサイトマップページなど）
５．レスポンシブ対応
６．プリント対応

■目次：CSSの記述順序:
 * display / list-style
 * position / float / clear / z-index
 * width / height / margin / padding / border
 * background
 * color /
   font (font-family / font-style / font-variant / font-weight / font-size / line-height)
   text-decoration / text-align / vertical-align /letter-spacing / white-space / (other text)
 * content
 * cursor

---------------------------------------------------------------------------------- */
/* 1．グローバルエリア定義
---------------------------------------------------------------------------------- */

/*	・グローバルエリア内設定 */

body,table {
	word-wrap: break-word;
}
body {
	word-break: normal;
}
table {
	word-break: break-all;
}
#wrap {
	overflow: hidden;
	width: 1180px;
	height: 100%;
	margin: 0 auto;
	background: #FFF;
	font-family: "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Helvetica, sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
	text-align: left;
}
p.tano-noscript {
	border: 1px solid #F00;
	padding: 1%;
	color: #F00;
	margin: 0 0 1%;
}
#tano-container-left {
	float: left;
	width: 960px;
	margin: 0 0 10px 0;
}
#tano-header {
	margin: 0;
}
#tano-content-top {
	overflow: hidden;
	margin: 0 0 10px 0;
	clear:both;
}
#tano-left-area {
	float: left;
	width: 220px;
	margin: 0 20px 0 0;
}
#tano-main-area {
	position: relative;
	float: left;
	width: 720px;
}
.tano-colum1-plus #tano-main-area {
	width: 960px;
}
#tano-right-area {
	float: left;
	width: 200px;
	margin: 0 0 10px 20px;
}
.tano-mypage-body #wrap #tano-right-area,
.tano-column2-body #wrap #tano-right-area {
	display: none;
}
#tano-content-bottom {
	margin-bottom: 10px;
}
#tano-container-right {
	float: right;
	width: 200px;
	margin: 0 0 10px 0;
}
.tano-mypage-body #tano-container-right,
.tano-column2-body #tano-container-right {
	position:static;
	overflow:inherit;
	width:220px;
}
.tano-mypage-body #wrap #tano-container-left .tano-no-right-content #tano-container-right,
.tano-column2-body #wrap #tano-container-left .tano-no-right-content #tano-container-right {
	display: block;
}
#tano-container-footer {
	position: relative;
	float: none;
	clear: both;
	margin:0 auto;
	padding-top:30px;
}

#tano-container-footer #tano-back-to-top {
	position:absolute;
	right:0;
	top:0;
	z-index:190;
}
#tano-container-footer #tano-back-to-top img {
	display:block;
}
#tano-container-footer small {
	display: block;
}
#tano-container-left,
#tano-container-right,
#tano-container-footer {
/* = modal */
  /* = cart balloon */
}
ul,
li,
ol {
	margin: 0;
	padding: 0;
	outline: 0;
	list-style-type: none;
}
#wrap #tano-main-area input,
input,
#wrap #tano-main-area select,
select {
	vertical-align: middle;
	white-space: nowrap;
}
input,
select,
textarea {
	font-size: 99%;
	font-family: "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Helvetica, sans-serif;
}
#tano-main-area input[type="text"],
#tano-main-area input[type="password"] {
	border: 1px solid #b4b3b1;
}
#tano-container-left a,
#tano-container-right a,
#tano-container-footer a {
	color: #1a5fe7;
	text-decoration: none;
}
#tano-container-left a:visited,
#tano-container-right a:visited,
#tano-container-footer a:visited {
	color: #1a5fe7;
	text-decoration: none;
}
#tano-container-left a:hover,
#tano-container-right a:hover,
#tano-container-footer a:hover {
	color: #1a5fe7;
	text-decoration: underline;
}
#tano-container-left a:active,
#tano-container-right a:active,
#tano-container-footer a:active {
	color: #1a5fe7;
	text-decoration: underline;
}
#tano-container-left a.tano-underline:link,
#tano-container-right a.tano-underline:link,
#tano-container-footer a.tano-underline:link {
	text-decoration: underline;
}
#tano-container-left a.tano-underline:visited,
#tano-container-right a.tano-underline:visited,
#tano-container-footer a.tano-underline:visited {
	text-decoration: underline;
}
#tano-container-left a.tano-white:link,
#tano-container-left a.tano-white:visited,
#tano-container-right a.tano-white:link,
#tano-container-right a.tano-white:visited,
#tano-container-footer a.tano-white:link,
#tano-container-footer a.tano-white:visited {
	color: #FFF;
}
#tano-container-left a.tano-white:hover,
#tano-container-left a.tano-white:active,
#tano-container-right a.tano-white:hover,
#tano-container-right a.tano-white:active,
#tano-container-footer a.tano-white:hover,
#tano-container-footer a.tano-white:active {
	color: #1a5fe7;
}
#tano-container-left a.tano-black:link,
#tano-container-left a.tano-black:visited,
#tano-container-left a.tano-black:hover,
#tano-container-left a.tano-black:active,
#tano-container-right a.tano-black:link,
#tano-container-right a.tano-black:visited,
#tano-container-right a.tano-black:hover,
#tano-container-right a.tano-black:active,
#tano-container-footer a.tano-black:link,
#tano-container-footer a.tano-black:visited,
#tano-container-footer a.tano-black:hover,
#tano-container-footer a.tano-black:active {
	color: #333;
}
#tano-container-left a.tano-arrow-white,
#tano-container-right a.tano-arrow-white,
#tano-container-footer a.tano-arrow-white {
	padding: 0 0 0 10px;
	background: url(/common-tano/img/icon-arrow-right-white.png) 0 0.5em no-repeat;
}
#tano-container-left a.tano-arrow-green,
#tano-container-right a.tano-arrow-green,
#tano-container-footer a.tano-arrow-green {
	padding: 0 0 0 10px;
	background: url(/common-tano/img/icon-arrow-right-green.png) 0 0.3em no-repeat;
}
#tano-container-left a.tano-arrow-green-bottom,
#tano-container-right a.tano-arrow-green-bottom,
#tano-container-footer a.tano-arrow-green-bottom {
	padding: 0 0 0 13px;
	background: url(/common-tano/img/icon-arrow-bottom-green.png) 0 0.5em no-repeat;
}
#tano-container-left .tano-shadow-01,
#tano-container-right .tano-shadow-01,
#tano-container-footer .tano-shadow-01 {
	vertical-align:bottom;
	box-shadow: 1px 1px 3px #666;
	-moz-box-shadow: 1px 1px 3px #666;
	-webkit-box-shadow: 1px 1px 3px #666;
}
#tano-container-left .tano-shadow-02,
#tano-container-right .tano-shadow-02,
#tano-container-footer .tano-shadow-02 {
	box-shadow: 1px 1px 2px #BBB;
	-moz-box-shadow: 1px 1px 2px #BBB;
	-webkit-box-shadow: 1px 1px 2px #BBB;
}
#tano-container-left #tano-gray-layer,
#tano-container-right #tano-gray-layer,
#tano-container-footer #tano-gray-layer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	cursor: pointer;
}
#tano-container-left #tano-over-layer,
#tano-container-right #tano-over-layer,
#tano-container-footer #tano-over-layer {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 20;
	margin-top: 0;
	margin-left: 0;
}
#tano-container-left #tano-over-layer section,
#tano-container-right #tano-over-layer section,
#tano-container-footer #tano-over-layer section {
	margin: 0;
	padding: 0;
}
#tano-container-left * html #tano-gray-layer,
#tano-container-right * html #tano-gray-layer,
#tano-container-footer * html #tano-gray-layer {
	position: absolute;
}
#tano-container-left * html #tano-over-layer,
#tano-container-right * html #tano-over-layer,
#tano-container-footer * html #tano-over-layer {
	position: absolute;
}
#tano-container-left .tano-modal-target,
#tano-container-right .tano-modal-target,
#tano-container-footer .tano-modal-target {
	overflow: auto;
	overflow-y: scroll;
}
#tano-container-left #tano-head-search-category-list-hidden,
#tano-container-right #tano-head-search-category-list-hidden,
#tano-container-footer #tano-head-search-category-list-hidden {
	width: 560px;
	height: 520px;
	padding: 0 20px 10px 20px;
	background: #FFF;
	border: 1px solid #BBB;
}
#tano-container-left #tano-head-search-category-list-hidden .tano-modal-close,
#tano-container-right #tano-head-search-category-list-hidden .tano-modal-close,
#tano-container-footer #tano-head-search-category-list-hidden .tano-modal-close {
	display: block;
	height: 30px;
	padding: 0 28px 0 0;
	border-bottom: 1px solid #999;
	background: url(/common-tano/img/icon-modal-close.gif) 100% 5px no-repeat;
	text-align: right;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 30px;
	cursor: pointer;
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-contents,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-contents,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-contents {
	border: 1px solid #999;
	border-top: none;
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-title,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-title,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-title {
	font-weight: bold;
	font-size: 16px;
	font-size: 1.6rem;
	cursor: pointer;
	background: -moz-linear-gradient(top, #fff 0%, #f3f3f3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #f3f3f3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fff 0%, #f3f3f3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fff 0%, #f3f3f3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fff 0%, #f3f3f3 100%); /* IE10+ */
	background: linear-gradient(to bottom, #fff 0%, #f3f3f3 100%); /* W3C */
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-title .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-title .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-title .tano-title-02 {
	display: block;
	background: 7px 5px no-repeat;
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-title .tano-title-02 .tano-accordion-icon,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-title .tano-title-02 .tano-accordion-icon,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-title .tano-title-02 .tano-accordion-icon {
	display: block;
	padding: 10px 0 10px 45px;
	background: url(/common-tano/img/btn-open-02.png) 510px 10px no-repeat;
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-01 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-01 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-01 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-01.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-02 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-02 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-02 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-02.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-03 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-03 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-03 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-03.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-04 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-04 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-04 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-04.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-05 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-05 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-05 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-05.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-06 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-06 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-06 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-06.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-07 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-07 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-07 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-07.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-08 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-08 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-08 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-08.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-09 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-09 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-09 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-09.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-10 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-10 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-10 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-10.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-11 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-11 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-11 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-11.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-12 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-12 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-12 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-12.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-13 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-13 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-13 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-13.png);
}
#tano-container-left #tano-head-search-category-list-hidden .tano-search-cat-14 .tano-title-02,
#tano-container-right #tano-head-search-category-list-hidden .tano-search-cat-14 .tano-title-02,
#tano-container-footer #tano-head-search-category-list-hidden .tano-search-cat-14 .tano-title-02 {
	background-image: url(/common-tano/img/icon-category-14.png);
}
#tano-container-left #tano-head-search-category-list-hidden ul,
#tano-container-left #tano-head-search-category-list-hidden img,
#tano-container-right #tano-head-search-category-list-hidden ul,
#tano-container-right #tano-head-search-category-list-hidden img,
#tano-container-footer #tano-head-search-category-list-hidden ul,
#tano-container-footer #tano-head-search-category-list-hidden img {
	display: none;
}
#tano-container-left #tano-head-search-category-list-hidden ul
#tano-container-right #tano-head-search-category-list-hidden ul,
#tano-container-footer #tano-head-search-category-list-hidden ul {
	padding: 10px 0;
	background: #FFF;
	border-top: 1px solid #BBB;
}
#tano-container-left #tano-head-search-category-list-hidden li,
#tano-container-right #tano-head-search-category-list-hidden li,
#tano-container-footer #tano-head-search-category-list-hidden li {
	margin: 0 0 10px 20px;
	background: #FFF;
}
#tano-container-left #tano-head-search-category-list-hidden li a,
#tano-container-right #tano-head-search-category-list-hidden li a,
#tano-container-footer #tano-head-search-category-list-hidden li a {
	display: block;
	padding: 3px 10px;
	background-position: 0 7px;
}
#tano-container-left #tano-head-search-narrowing-words-hidden,
#tano-container-right #tano-head-search-narrowing-words-hidden,
#tano-container-footer #tano-head-search-narrowing-words-hidden {
	overflow: hidden;
	width: 563px;
	height: 340px;
	padding: 10px 17px;
	background: #FFF;
	border: 1px solid #999;
}
#tano-container-left #tano-head-search-narrowing-words-hidden .tano-modal-close,
#tano-container-right #tano-head-search-narrowing-words-hidden .tano-modal-close,
#tano-container-footer #tano-head-search-narrowing-words-hidden .tano-modal-close {
	display: block;
	height: 30px;
	padding: 0 30px 0 0;
	background: url(/common-tano/img/icon-modal-close.gif) 100% 5px no-repeat;
	text-align: right;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 30px;
	cursor: pointer;
}
#tano-container-left #tano-head-search-narrowing-words-hidden ul,
#tano-container-right #tano-head-search-narrowing-words-hidden ul,
#tano-container-footer #tano-head-search-narrowing-words-hidden ul {
	overflow: hidden;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
}
#tano-container-left #tano-head-search-narrowing-words-hidden ul li,
#tano-container-right #tano-head-search-narrowing-words-hidden ul li,
#tano-container-footer #tano-head-search-narrowing-words-hidden ul li {
	float: left;
	width: 280px;
	height: 40px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	background: #f3f3f3;
	background: -moz-linear-gradient(top, #fff 0%, #f3f3f3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #f3f3f3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fff 0%, #f3f3f3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fff 0%, #f3f3f3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fff 0%, #f3f3f3 100%); /* IE10+ */
	background: linear-gradient(to bottom, #fff 0%, #f3f3f3 100%); /* W3C */
}
#tano-container-left #tano-head-search-narrowing-words-hidden ul li span,
#tano-container-right #tano-head-search-narrowing-words-hidden ul li span,
#tano-container-footer #tano-head-search-narrowing-words-hidden ul li span {
	display: block;
	padding: 0 15px;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 40px;
}
#tano-container-left #tano-head-search-narrowing-words-hidden ul li span:hover,
#tano-container-left #tano-head-search-narrowing-words-hidden ul li span:active,
#tano-container-right #tano-head-search-narrowing-words-hidden ul li span:hover,
#tano-container-right #tano-head-search-narrowing-words-hidden ul li span:active,
#tano-container-footer #tano-head-search-narrowing-words-hidden ul li span:hover,
#tano-container-footer #tano-head-search-narrowing-words-hidden ul li span:active {
	background-color: #3399fe;
	color: #FFF;
	text-decoration: none;
}
#tano-container-left #tano-cart-balloon,
#tano-container-right #tano-cart-balloon,
#tano-container-footer #tano-cart-balloon {
	display: none;
	overflow: visible;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 230px;
	height: auto;
	padding: 30px 10px 10px 10px;
	background: #FFF;
	border: 1px solid #d4d4d4;
}
#tano-container-left #tano-cart-balloon .tano-balloon-arrow-up,
#tano-container-left #tano-cart-balloon .tano-balloon-arrow-down,
#tano-container-right #tano-cart-balloon .tano-balloon-arrow-up,
#tano-container-right #tano-cart-balloon .tano-balloon-arrow-down,
#tano-container-footer #tano-cart-balloon .tano-balloon-arrow-up,
#tano-container-footer #tano-cart-balloon .tano-balloon-arrow-down {
	display: none;
	position: absolute;
	left: 106px;
}
#tano-container-left #tano-cart-balloon .tano-balloon-arrow-up,
#tano-container-right #tano-cart-balloon .tano-balloon-arrow-up,
#tano-container-footer #tano-cart-balloon .tano-balloon-arrow-up {
	top: -25px;
}
#tano-container-left #tano-cart-balloon .tano-balloon-arrow-down,
#tano-container-right #tano-cart-balloon .tano-balloon-arrow-down,
#tano-container-footer #tano-cart-balloon .tano-balloon-arrow-down {
	bottom: -31px;
}
#tano-container-left #tano-cart-balloon .tano-balloon-inner,
#tano-container-right #tano-cart-balloon .tano-balloon-inner,
#tano-container-footer #tano-cart-balloon .tano-balloon-inner {
	text-align: center;
}
#tano-container-left #tano-cart-balloon .tano-balloon-inner div,
#tano-container-right #tano-cart-balloon .tano-balloon-inner div,
#tano-container-footer #tano-cart-balloon .tano-balloon-inner div {
	margin: 0 0 10px 0;
}
#tano-container-left #tano-cart-balloon .tano-balloon-inner label,
#tano-container-right #tano-cart-balloon .tano-balloon-inner label,
#tano-container-footer #tano-cart-balloon .tano-balloon-inner label {
	font-size: 14px;
	font-size: 1.4rem;
	vertical-align: top;
	line-height: 26px;
}
#tano-container-left #tano-cart-balloon .tano-balloon-inner label input,
#tano-container-right #tano-cart-balloon .tano-balloon-inner label input,
#tano-container-footer #tano-cart-balloon .tano-balloon-inner label input {
	text-align: right;
}
#tano-container-left #tano-cart-balloon .tano-balloon-inner .tano-ballon-note,
#tano-container-right #tano-cart-balloon .tano-balloon-inner .tano-ballon-note,
#tano-container-footer #tano-cart-balloon .tano-balloon-inner .tano-ballon-note {
	text-align: center;
}
#tano-container-left #tano-cart-balloon .tano-balloon-inner .tano-ballon-note a,
#tano-container-right #tano-cart-balloon .tano-balloon-inner .tano-ballon-note a,
#tano-container-footer #tano-cart-balloon .tano-balloon-inner .tano-ballon-note a {
	padding: 5px 0 5px 25px;
	background: url(/common-tano/img/icon-ballon-note.gif) 0 0 no-repeat;
	line-height: 20px;
}

#tano-container-left #tano-favorites-balloon,
#tano-container-right #tano-favorites-balloon,
#tano-container-footer #tano-favorites-balloon {
	display: none;
	overflow: visible;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 300px;
	height: auto;
	padding: 30px 10px 10px 10px;
	background: #FFF;
	border: 1px solid #d4d4d4;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-arrow-up,
#tano-container-left #tano-favorites-balloon .tano-balloon-arrow-down,
#tano-container-right #tano-favorites-balloon .tano-balloon-arrow-up,
#tano-container-right #tano-favorites-balloon .tano-balloon-arrow-down,
#tano-container-footer #tano-favorites-balloon .tano-balloon-arrow-up,
#tano-container-footer #tano-favorites-balloon .tano-balloon-arrow-down {
	display: none;
	position: absolute;
	left: 106px;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-arrow-up,
#tano-container-right #tano-favorites-balloon .tano-balloon-arrow-up,
#tano-container-footer #tano-favorites-balloon .tano-balloon-arrow-up {
	top: -25px;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-arrow-down,
#tano-container-right #tano-favorites-balloon .tano-balloon-arrow-down,
#tano-container-footer #tano-favorites-balloon .tano-balloon-arrow-down {
	bottom: -26px;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-inner,
#tano-container-right #tano-favorites-balloon .tano-balloon-inner,
#tano-container-footer #tano-favorites-balloon .tano-balloon-inner {
	text-align: center;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-inner div,
#tano-container-right #tano-favorites-balloon .tano-balloon-inner div,
#tano-container-footer #tano-favorites-balloon .tano-balloon-inner div {
	margin: 0 0 10px 0;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-inner label,
#tano-container-right #tano-favorites-balloon .tano-balloon-inner label,
#tano-container-footer #tano-favorites-balloon .tano-balloon-inner label {
	font-size: 14px;
	font-size: 1.4rem;
	vertical-align: top;
	line-height: 26px;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-inner label input,
#tano-container-right #tano-favorites-balloon .tano-balloon-inner label input,
#tano-container-footer #tano-favorites-balloon .tano-balloon-inner label input {
	text-align: right;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-inner .tano-ballon-note,
#tano-container-right #tano-favorites-balloon .tano-balloon-inner .tano-ballon-note,
#tano-container-footer #tano-favorites-balloon .tano-balloon-inner .tano-ballon-note {
	text-align: center;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-inner .tano-ballon-note a,
#tano-container-right #tano-favorites-balloon .tano-balloon-inner .tano-ballon-note a,
#tano-container-footer #tano-favorites-balloon .tano-balloon-inner .tano-ballon-note a {
	padding: 5px 0 5px 25px;
	background: url(/common-tano/img/icon-ballon-note.gif) 0 0 no-repeat;
	line-height: 20px;
}
#tano-container-left #tano-favorites-balloon .tano-balloon-inner .tano-ballon-section select,
#tano-container-left #tano-favorites-balloon .tano-balloon-inner .tano-ballon-section a {
	display: inline-block;
	vertical-align: middle;
}
/* 20141014tci */
#tano-container-left #tano-cart-in-dialogue,
#tano-container-right #tano-cart-in-dialogue,
#tano-container-footer #tano-cart-in-dialogue {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 20;
	width: 580px;
	min-height: 50px;
	margin-top: 0;
	margin-left: 0;
	background: #FFF;
	border: 2px solid #909090;
	text-align: center;
	line-height: 2.0em;
}
/* 20141014tci */
* html #tano-container-left #tano-cart-in-dialogue,
* html #tano-container-right #tano-cart-in-dialogue,
* html #tano-container-footer #tano-cart-in-dialogue {
	height: 50px;
}
/* 20141014tci */
#tano-container-left #tano-cart-in-dialogue dl,
#tano-container-right #tano-cart-in-dialogue dl,
#tano-container-footer #tano-cart-in-dialogue dl,
#tano-container-left #tano-cart-in-dialogue p,
#tano-cart-in-dialogue .tano-cart-in-paragraph {
	padding: 10px 10px 10px 10px;
}
/* 20141014tci */

#tano-container-left #tano-cart-in-dialogue dl dt,
#tano-container-right #tano-cart-in-dialogue dl dt,
#tano-container-footer #tano-cart-in-dialogue dl dt,
#tano-container-left #tano-cart-in-dialogue p,
#tano-cart-in-dialogue .tano-cart-in-paragraph {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-size: 1.8rem;
}
#tano-container-left #tano-cart-in-dialogue dl dd,
#tano-container-right #tano-cart-in-dialogue dl dd,
#tano-container-footer #tano-cart-in-dialogue dl dd {
	margin: 0 0 10px 0;
	font-size: 13px;
	font-size: 1.3rem;
}
#tano-container-left #tano-cart-in-dialogue dl #tano-d-sh-cartinmsg-sub {
	margin: 0 0 10px 0;
	font-size: 12px;
	font-size: 1.2rem;
	color: #e80000;
}
#tano-container-left #tano-favorites-in-dialogue,
#tano-container-right #tano-favorites-in-dialogue,
#tano-container-footer #tano-favorites-in-dialogue {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 20;
	width: 400px;
	height: 200px;
	margin-top: 0;
	margin-left: 0;
	background: #FFF;
	border: 1px solid #d4d4d4;
	text-align: center;
}
#tano-container-left #tano-favorites-in-dialogue dl,
#tano-container-right #tano-favorites-in-dialogue dl,
#tano-container-footer #tano-favorites-in-dialogue dl {
	padding: 80px 10px 10px 10px;
}
#tano-container-left #tano-favorites-in-dialogue dl dt,
#tano-container-right #tano-favorites-in-dialogue dl dt,
#tano-container-footer #tano-favorites-in-dialogue dl dt {
	margin: 0 0 30px 0;
	font-size: 24px;
	font-size: 2.4rem;
}
#tano-container-left #tano-favorites-in-dialogue dl dd,
#tano-container-right #tano-favorites-in-dialogue dl dd,
#tano-container-footer #tano-favorites-in-dialogue dl dd {
	margin: 0 0 20px 0;
	font-size: 14px;
	font-size: 1.4rem;
}

#tano-container-left #tano-cart-in-dialogue .tano-error-dialogue, #tano-container-right #tano-d-cart-quick-payment-error-dialogue .tano-error-dialogue, .tano-watch-list-dialogue {
	padding: 15px 0 0;
}
#tano-container-left #tano-cart-in-dialogue .tano-error-dialogue p, #tano-container-right #tano-d-cart-quick-payment-error-dialogue .tano-error-dialogue p, .tano-modal .tano-error-modal p, .tano-watch-list-dialogue p {
	padding: 0;
}
#tano-container-left #tano-cart-in-dialogue .tano-error-dialogue p, #tano-container-right #tano-d-cart-quick-payment-error-dialogue .tano-error-dialogue p, .tano-modal .tano-error-modal p{
	color:#ff3c4a;
}
#tano-container-right #tano-d-cart-quick-payment-error-dialogue {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 18;
	width: 580px;
	min-height: 50px;
	margin-top: 0;
	margin-left: 0;
	background: #FFF;
	border: 2px solid #909090;
	text-align: center;
	line-height: 2.0em;
}

* html #tano-container-right #tano-d-cart-quick-payment-error-dialogue {
	height: 50px;
}

#tano-container-right #tano-d-cart-quick-payment-error-dialogue p {
	padding: 10px 10px 10px 10px;
}

#tano-container-right #tano-d-cart-quick-payment-error-dialogue p {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-size: 1.8rem;
}

/*
.tano-watch-list-dialogue p {
	color:#333;

}*/
.tano-modal .tano-error-modal{
	clear: both;
	padding:10px 0 0 0 ;
}

.tano-modal .tano-error-modal p{
	margin:8px 0 0 0;
}

/*		・ヘッダ内設定 */
#tano-head-top {
	padding: 8px 0;
	line-height: 1.32em;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
}
#tano-head-top h1,
#tano-head-top p {
	float: left;
	font-weight: normal;
	margin-top: 2px;
}
#tano-head-top .tano-head-tel {
	width: 410px;
	font-size: 0;
	float: right;
	text-align: right;
}
body.tano-ac #tano-head-top .tano-head-tel {
	width: 388px;
}
body.tano-ac .tano-bs-top-head #tano-head-top .tano-head-tel {
	width: 410px;
}
#tano-head-top .tano-head-tel > * {
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}
*+html #tano-head-top .tano-head-tel > * {
	display: inline;
}
#tano-head-top .tano-head-tel dt {
	font-size: 12px;
	font-weight: bold;
}
#tano-head-top .tano-head-tel dd img {
	vertical-align: middle;
}
#tano-head-top .tano-head-tel dd.tano-last-child {
	margin-right: 0;
}
#tano-head-top nav {
	float: right;
}
#tano-head-top nav a {
	margin: 0 0 0 15px;
	padding: 0 0 0 14px;
	font-size: 11px;
	font-size: 1.1rem;
	background: url(/common-tano/img/icon-arrow-right-green.png) 0 50% no-repeat;
}
#tano-head-top nav .tano-head-top-first {
	background: url(/common-tano/img/icon-head-utility-first.png) 0 50% no-repeat;
}
#tano-head-top nav .tano-head-top-guide {
	background: url(/common-tano/img/icon-head-utility-guide.png) 0 50% no-repeat;
}
#tano-head-top nav .tano-head-top-qa {
	background: url(/common-tano/img/icon-head-utility-qa.png) 0 50% no-repeat;
}
#tano-head-top nav .tano-head-top-inquiry {
	background: url(/common-tano/img/icon-head-utility-inquiry.png) 0 50% no-repeat;
}
#tano-head-top nav .tano-head-top-sitemap {
	background: url(/common-tano/img/icon-head-utility-sitemap.png) 0 50% no-repeat;
}
#tano-head-middle {
	margin: 0 0 10px 0;
}
#tano-head-middle #tano-head-middle-left {
	float: left;
}
#tano-head-middle #tano-head-middle-right {
	float: right;
	width: 768px;
}
#tano-head-middle .tano-head-login-01#tano-head-middle-right {
	margin-top:6px;
}
#tano-head-middle .tano-head-type-login #tano-head-user-info-left {
	float: right;
	width: 60%;
}
#tano-head-middle .tano-head-type-login .tano-head-img-list {
	width: 40%;
	float: left;
}
#tano-head-middle .tano-head-type-login .tano-head-img-list li {
	width: 100px;
	margin-right: 10px;
	float: left;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-info {
	position: relative;
	float: left;
	width: 482px;
	text-align: right;
	line-height: 1.2em;
}
#tano-head-middle .tano-head-login-01#tano-head-middle-right #tano-head-user-info {
	width: 90%;
	margin: 0 0 4px 0;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-info span {
	display: block;
	top: 5px;
	right: 90px;
	line-height: 1.4em;
}
#tano-head-middle .tano-head-login-01#tano-head-middle-right #tano-head-user-info span {
	position:static;
	margin: 0 0 0 10px;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-info-02 {
	position: relative;
	float: left;
	width: 662px;
	text-align: right;
	line-height: 1.2em;
}
.tano-ps-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-02 {
	position: relative;
	float: left;
	width: 474px;
	text-align: right;
	line-height: 1.2em;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-info-03 {
	position: relative;
	float: left;
	width: 420px;
	margin-top: 5px;
	text-align: right;
	line-height: 1.2em;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-info-04 {
	position: relative;
	float: left;
	width: 557px;
	margin-top: 5px;
	text-align: right;
	line-height: 1.2em;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-info-05 {
	position: relative;
	float: left;
	width: 637px;
	margin-top: 5px;
	text-align: right;
	line-height: 1.2em;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-link,
#tano-head-middle #tano-head-middle-right #tano-head-user-link-02 {
	float: right;
	margin: 6px 0 0 0;
}
#tano-head-middle .tano-head-login-01#tano-head-middle-right #tano-head-user-link {
	margin: 0 0 2px 0;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-link a {
	padding-left: 12px;
	margin: 0 0 0 15px;
	white-space: nowrap;
}
#tano-head-bottom #tano-head-shortcut #tano-head-shortcut-quick {
	display: none;
	float: left;
	width: 155px;
	height: 54px;
	text-align: center;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 54px;
	cursor: pointer;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#tano-head-bottom #tano-head-shortcut #tano-head-shortcut-quick a {
	display: block;
	padding-right: 22px;
	color: #fff;
	background: url(/common-tano/img/icon-head-quick.png) no-repeat 133px center;
}
#tano-head-bottom #tano-head-shortcut {
	position: absolute;
	top: -39px;
	right: 0;
}
*+html #tano-head-bottom #tano-head-shortcut {
	padding-bottom: 5px;
}
* html #tano-head-bottom #tano-head-shortcut {
	padding-bottom: 5px;
}
#tano-head-bottom #tano-head-shortcut nav {
	float: left;
}
#tano-head-bottom #tano-head-shortcut nav ul {
	float: left;
}
#tano-head-bottom #tano-head-shortcut nav ul li {
	float: left;
	margin: 0 0 5px 8px;
	width: 124px;
	height: 34px;
}
#tano-head-bottom #tano-head-shortcut nav ul li a {
	display: block;
	padding: 7px 0 5px 24px;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: #fff;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
}
#tano-head-bottom #tano-head-shortcut nav ul li a:hover {
	opacity: 0.6;
    -moz-opacity: 0.6;
}
#tano-head-bottom .tano-right {
	display: block;
	float: right;
	width: 133px;
	padding: 4px 79px 4px 4px;
	border: 2px solid #bf0000;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	background: url(/common-tano/img/icon-head-cart.png) no-repeat 144px center #d5d5d5;
	background: url(/common-tano/img/icon-head-cart.png) no-repeat 144px center, -moz-linear-gradient(top, #fefefe 0%, #d5d5d5 100%);
	background: url(/common-tano/img/icon-head-cart.png) no-repeat 144px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefefe), color-stop(100%, #d5d5d5));
	background: url(/common-tano/img/icon-head-cart.png) no-repeat 144px center, -webkit-linear-gradient(top, #fefefe 0%, #d5d5d5 100%);
	background: url(/common-tano/img/icon-head-cart.png) no-repeat 144px center, -o-linear-gradient(top, #fefefe 0%, #d5d5d5 100%);
	background: url(/common-tano/img/icon-head-cart.png) no-repeat 144px center, -ms-linear-gradient(top, #fefefe 0%, #d5d5d5 100%);
	background: url(/common-tano/img/icon-head-cart.png) no-repeat 144px center, linear-gradient(to bottom, #fefefe 0%, #d5d5d5 100%);
	color: #333;
}
*+html #tano-head-bottom .tano-right,
*+html #tano-head-bottom .tano-right-gift {
	padding: 2px 79px 2px 4px;
}
#tano-head-bottom .tano-right:hover,
#tano-head-bottom .tano-right:visited,
#tano-head-bottom .tano-right-gift:hover,
#tano-head-bottom .tano-right-gift:visited {
	color: #333333;
	text-decoration: none;
}
#tano-head-bottom .tano-right:hover *,
#tano-head-bottom .tano-right-gif:hover * {
	cursor: pointer;
}
#tano-head-bottom .tano-right dl,
#tano-head-bottom .tano-right-gift dl {
	padding: 2px 3px 0 2px;
	border: 1px solid #ededed;
	background: #fff;
	height: 36px;
}
#tano-head-bottom .tano-right dl dt,
#tano-head-bottom .tano-right dl dd,
#tano-head-bottom .tano-right-gift dl dt,
#tano-head-bottom .tano-right-gift dl dd {
	font-size: 10px;
	font-size: 1.0rem;
}
#tano-head-bottom .tano-right dl dt,
#tano-head-bottom .tano-right-gift dl dt {
}
#tano-head-bottom .tano-right dl dt span,
#tano-head-bottom .tano-right-gift dl dt span {
	margin-left: 0px;
	font-weight: bold;
	font-size: 14px;
	font-size: 1.4rem;
}
#tano-head-bottom .tano-right dl dd,
#tano-head-bottom .tano-right-gift dl dd {
	text-align: right;
}
#tano-head-bottom .tano-right dl dd span,
#tano-head-bottom .tano-right-gift dl dd span {
	color: #e70000;
}
#tano-head-bottom .tano-right dl dd .tano-price,
#tano-head-bottom .tano-right-gift dl dd .tano-price {
	margin: 0 5px 0 0;
	font-weight: bold;
	font-size: 14px;
	font-size: 1.4rem;
}
#tano-head-bottom .tano-right-gift {
	display: block;
	float: right;
	width: 133px;
	padding: 4px 79px 4px 4px;
	border: 2px solid #bf0000;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	background: url(/common-tano/img/icon-head-cart_gift.png) no-repeat 144px center #d5d5d5;
	background: url(/common-tano/img/icon-head-cart_gift.png) no-repeat 144px center, -moz-linear-gradient(top, #fefefe 0%, #d5d5d5 100%);
	background: url(/common-tano/img/icon-head-cart_gift.png) no-repeat 144px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefefe), color-stop(100%, #d5d5d5));
	background: url(/common-tano/img/icon-head-cart_gift.png) no-repeat 144px center, -webkit-linear-gradient(top, #fefefe 0%, #d5d5d5 100%);
	background: url(/common-tano/img/icon-head-cart_gift.png) no-repeat 144px center, -o-linear-gradient(top, #fefefe 0%, #d5d5d5 100%);
	background: url(/common-tano/img/icon-head-cart_gift.png) no-repeat 144px center, -ms-linear-gradient(top, #fefefe 0%, #d5d5d5 100%);
	background: url(/common-tano/img/icon-head-cart_gift.png) no-repeat 144px center, linear-gradient(to bottom, #fefefe 0%, #d5d5d5 100%);
	color: #333;
}
#tano-head-bottom .tano-cart-2column {
	float: right;
	position: relative;
	width: 112px;
	margin-left: 3px;
}
#tano-head-bottom .tano-cart-2column .tano-right,
#tano-head-bottom .tano-cart-2column .tano-right-gift {
	width: 98px;
	padding: 4px;
	height: 56px;
}
#tano-head-bottom .tano-cart-2column .tano-cart-pop {
	display: none;
}
#tano-head-bottom .tano-cart-2column:hover .tano-cart-pop {
	display: block;
	position: absolute;
	right: 2px;
	margin-top: 8px;
	padding: 4px;
	width: 500px;
	/*border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;*/
	border: 3px solid #ccc;
	background: #fff;
	box-shadow: rgba(0,0,0,0.5) 1px 1px 3px;
}
#tano-head-bottom .tano-cart-2column .tano-in-menu-inner {
	padding: 10px 0;
    text-align: center;
    width: 100%;
    display: block;
    border-bottom: 1px solid #BFBFBF;
}
#tano-head-bottom .tano-cart-2column:hover .tano-cart-pop .tano-cart-pop-triangle {
	display: block;
	position: absolute;
	right: 50px;
	top: 0;
	margin-top: -5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #ffffff transparent;
}
#tano-head-bottom .tano-cart-2column .tano-right p,
#tano-head-bottom .tano-cart-2column .tano-right-gift p {
	color: #bf0000;
	text-align: center;
	font-size: 1.1rem;
	font-weight: bold;
}
#tano-head-bottom .tano-cart-2column .tano-right dl dt span,
#tano-head-bottom .tano-cart-2column .tano-right-gift dl dt span {
	margin-left: 0px;
}
#tano-head-bottom .tano-cart-2column .tano-right-gift p {
	letter-spacing: -0.2em;
}

.tano-auction-head #tano-head-middle #tano-head-middle-left #tano-logo a img {
	max-width: 100%;
}
.tano-bs-top-head #tano-head-middle,
.tano-auction-head #tano-head-middle,
.tano-ps-auction-head #tano-head-middle,
.tano-com-simple-head #tano-head-middle {
	position: relative;
}
.tano-bs-top-head #tano-head-middle #tano-head-middle-left {
	width: 520px;
	max-width: 100%;
}
.tano-auction-head #tano-head-middle #tano-head-middle-left,
.tano-ps-auction-head #tano-head-middle #tano-head-middle-left {
	width: 370px;
	max-width: 100%;
}
.tano-bs-top-head #tano-head-middle #tano-head-middle-left #tano-logo,
.tano-auction-head #tano-head-middle #tano-head-middle-left #tano-logo,
.tano-ps-auction-head #tano-head-middle #tano-head-middle-left #tano-logo {
	float: left;
	width: 201px;
}
.tano-bs-top-head #tano-head-middle #tano-head-middle-left #tano-head-middle-right-link-02,
.tano-auction-head #tano-head-middle #tano-head-middle-left #tano-head-middle-right-link-02,
.tano-ps-auction-head #tano-head-middle #tano-head-middle-left #tano-head-middle-right-link-02 {
	float: left;
	margin-top: 13px;
}
.tano-bs-top-head #tano-head-middle #tano-head-middle-left #tano-head-middle-right-link-02 a,
.tano-auction-head #tano-head-middle #tano-head-middle-left #tano-head-middle-right-link-02 a,
.tano-ps-auction-head #tano-head-middle #tano-head-middle-left #tano-head-middle-right-link-02 a {
	float: left;
	margin-right: 10px;
}
.tano-bs-top-head #tano-head-middle #tano-head-middle-right {
	width: 390px;
}
.tano-auction-head #tano-head-middle #tano-head-middle-right,
.tano-ps-auction-head #tano-head-middle #tano-head-middle-right {
	width: 580px;
}
.tano-ps-head #tano-head-middle #tano-head-middle-right #tano-head-user-info,
.tano-ps-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-02,
.tano-ps-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info,
.tano-ps-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-02 {
	margin-top: 8px;
}
.tano-bs-top-head #tano-head-middle #tano-head-middle-right #tano-head-user-info {
	margin-top: 12px;
	width: 177px;
}
.tano-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info,
.tano-ps-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info {
	margin-top: 12px;
	width: 367px;
}
.tano-simple-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-04,
.tano-simple-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-05 {
	margin-top: 12px;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-link .tano-head-user-info-link {
	margin: 0;
	padding: 0;
}
#tano-head-middle #tano-head-middle-right #tano-head-user-link .tano-head-user-info-link img {
	vertical-align: middle;
}
.tano-auction-head #tano-head-middle-left #tano-head-middle-right-link-02,
.tano-ps-auction-head #tano-head-middle-left #tano-head-middle-right-link-02 {
	width: 20%;
}
.tano-bs-top-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-02 .tano-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-02 {
	width: 100%;
	margin-top: 10px;
}
.tano-bs-top-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-02 span .tano-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-02 span {
	display: block;
	position: absolute;
	top: 12px;
	right: 7em;
}
.tano-auction-head #tano-head-user-info-left,
.tano-com-simple-head #tano-head-user-info-left {
	position: absolute;
	top: 0;
	right: 0;
	margin: 8px 0 5px 0px;
}
.tano-bs-top-head #tano-head-user-info-left {
	width: 60%;
	float: right;
}
.tano-bf-head #tano-head-middle #tano-head-middle-right #tano-head-user-info span,
.tano-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info span,
.tano-bs-top-head #tano-head-middle #tano-head-middle-right #tano-head-user-info span,
.tano-bs-top-head #tano-head-middle #tano-head-middle-right #tano-head-user-info a {
	display: inline;
}
.tano-bf-head #tano-head-middle #tano-head-middle-right #tano-head-user-info a,
.tano-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info a,
.tano-bs-top-head #tano-head-middle #tano-head-middle-right #tano-head-user-info a {
	padding: 10px 0 0 10px;
}
.tano-simple-head #tano-head-middle #tano-head-middle-right #tano-head-user-info span,
.tano-simple-head #tano-head-user-info-left #tano-head-user-info a {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
.tano-com-simple-head #tano-head-middle{
	margin-top: 31px;
}
.tano-lp-head #tano-head-middle #tano-head-middle-right {
	width: 430px;
}
.tano-lp-head #tano-head-middle #tano-head-middle-right #tano-head-user-info {
	padding: 0;
}
.tano-lp-head #tano-head-middle {
		margin-bottom: 35px;
}
/*20140925kno*/
#tano-container-left .tano-auction-head #tano-head-middle #tano-head-middle-left{
	width:370px;
}

/*#tano-container-left .tano-auction-head #tano-head-middle #tano-head-middle-right{
	width:740px;
}*/

#tano-container-left .tano-auction-head #tano-head-middle #tano-head-middle-right #tano-head-user-info-03 {
	width:597px;
}


.tano-auction-head .tano-s-text-01{
	min-height:36px;
	padding:6px 0 0 85px;
	background:url(/common-tano/img/icon-s-tel-01.gif) no-repeat 25px 8px;
	clear:both;
	float:right;
}
.tano-auction-head .tano-s-text-01 .tano-s-tel{
	font-size:20px;
	font-size:2rem;
	font-weight:bold;
	color:#00744d;
	line-height:1.2;
}
.tano-auction-head .tano-s-text-01 .tano-s-reception{
	font-size:10px;
	font-size:1rem;
}
/*----グローバルナビ----*/
#tano-global-navi {
	position: relative;
	margin: 0;
	z-index: 102;
}
#tano-global-navi .tano-main-nav {
	background: url(/common-tano/img/bg-gnav.gif) left bottom repeat-x;
	border-top:1px solid #ccc;
	margin-top: 4px;
}

#tano-global-navi .tano-main-nav li {
	float: left;
	width: 63px;
	padding-right: 1px;
	background: url(/common-tano/img/bg-gnav-line.gif) 100% 50% no-repeat;
}
.tano-bs-top-head #tano-global-navi .tano-main-nav li {
	width: 63px;
}
.tano-bs-top-head #tano-global-navi .tano-main-nav .tano-no-border {
	width: 75px;
}
#tano-header #tano-global-navi .tano-main-nav .tano-main-nav-67px li {
	width: 67px;
}
#tano-header #tano-global-navi .tano-main-nav .tano-main-nav-72px li {
	width: 72px;
}
#tano-header #tano-global-navi .tano-main-nav .tano-main-nav-63px li {
	width: 63px;
}
#tano-global-navi .tano-main-nav .tano-no-border {
	background: none;
}
#tano-global-navi .tano-main-nav li a {
	display: block;
	padding: 2px 0 10px;
	text-align: center;
}
#tano-global-navi .tano-main-nav li a:hover {
	background: transparent;
}
#tano-global-navi .tano-main-nav li img {
	vertical-align: top;
}
#tano-global-navi .tano-sub-nav {
	position: absolute;
	top: 83px;
	 display: none;
	width: 938px;
	padding: 8px 0 20px 20px;
	border: 1px solid #666;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 5px 0 5px 0 rgba(0,0,0,0.2);
	-webkitbox-shadow: 5px 0 5px 0 rgba(0,0,0,0.2);
}
#tano-global-navi .tano-sub-nav ul li {
	float: left;
	width: 193px;
	padding: 8px 10px;
	margin-right: 20px;
	border-bottom: 1px dotted #cccccc;
}
#tano-global-navi .tano-sub-nav ul.tano-sub-nav-heading li {
	float: none;
	font-weight: bold;
}
#tano-global-navi .tano-sub-nav ul li a {
	padding-left: 9px;
	background: url(/common-tano/img/icon-arrow-right-pink.png) 0 0.4em no-repeat;
	display:block;
}
#tano-global-navi .tano-sub-nav ul li a:link,
#tano-global-navi .tano-sub-nav ul li a:visited {
	background: url(/common-tano/img/icon-arrow-right-pink.png) 0 0.4em no-repeat;
	color: #333;
}
#tano-global-navi .tano-sub-nav ul li a:hover,
#tano-global-navi .tano-sub-nav ul li a:active {
	background: url(/common-tano/img/icon-arrow-right-pink.png) 0 0.4em no-repeat;
	color: #333;
}
#tano-global-navi ul .tano-hidden-box {
	display: none;
}

#tano-head-bottom {
	position: relative;
	z-index: 103;
}
#tano-head-bottom .tano-left {
	position: relative;
	z-index: 103;
	width: 730px;
	margin-bottom: 5px;
	min-height: 34px;
	padding: 10px 0;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
* html #tano-head-bottom .tano-left {
	height: 34px;
}
.tano-ct-head #tano-head-bottom .tano-left {
	width: 100%;
}
#tano-head-bottom .tano-left #tano-head-search-category {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 180px;
	margin: 0 10px 0 0;
}
#tano-head-bottom .tano-left #tano-head-search-category img {
	cursor: pointer;
}
#tano-head-bottom .tano-left #tano-head-search-category-hidden {
	display: none;
}
#tano-head-bottom .tano-left #tano-head-search-main {
	position: relative;
	margin: 0 152px 0 8px;
}
* html #tano-head-bottom .tano-left #tano-head-search-main {
	height: 1%;
}
#tano-head-bottom .tano-left #tano-head-search-main #tano-head-search-button {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 75px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
}
#tano-head-bottom .tano-left #tano-head-search-main #tano-head-search-textarea {
	position: relative;
	height: 30px;
	margin: 0 75px 0 0;
}
#tano-head-bottom .tano-left #tano-head-search-main #tano-head-search-textarea .tano-head-search-narrowing {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	min-width: 140px;
	height: 30px;
	border: 1px solid #ababab;
	background: url(/common-tano/img/bg-search-narrowing.gif) 0 0 repeat-x;
	line-height: 30px;
	box-shadow: 0 0 0 1px #fff inset;
	-moz-box-shadow: 0 0 0 1px #fff inset;
	-webkitbox-shadow: 0 0 0 1px #fff inset;
}
#tano-head-bottom .tano-left #tano-head-search-main #tano-head-search-textarea .tano-head-search-narrowing a {
	display: block;
	margin: 0 11px 0 0;
	padding: 0 24px 0 15px;
	background: url(/common-tano/img/icon-arrow-bottom.png) 100% 45% no-repeat;
	font-weight: bold;
	font-size: 14px;
	font-size: 1.4rem;
}
#tano-head-bottom .tano-left #tano-head-search-main #tano-head-search-textarea #tano-head-search-narrowing-hidden {
	display: none;
}
#tano-head-bottom .tano-left #tano-head-search-main #tano-head-search-textarea #tano-head-search-text {
	height: 29px;
}
#tano-head-bottom .tano-left #tano-head-search-main #tano-head-search-textarea #tano-head-search-text input {
	display: block;
	float: left;
	width: 95.8%;
	height: 31px;
	margin: 0;
	padding: 0 2%;
	border: none;
	border-top: 1px solid #ababab;
	line-height: 29px;
	box-shadow: 3px 2px 3px 0 #CCC inset;
	-moz-box-shadow: 3px 2px 3px 0 #CCC inset;
	-webkitbox-shadow: 3px 2px 3px 0 #CCC inset;
}
#tano-head-bottom #tano-topic-keyword {
	padding: 8px 0 0;
}
#tano-head-bottom #tano-topic-keyword div {
	display: inline;
	margin: 0 0.3em 0 0;
	font-weight: bold;
}
#tano-head-bottom #tano-topic-keyword a {
	margin: 0 1.2em 0 0;
	white-space: nowrap;
	text-decoration: underline;
}
#tano-head-bottom #tano-topic-keyword a:link,
#tano-head-bottom #tano-topic-keyword a:visited {
	text-decoration: underline;
}
#tano-head-bottom #tano-topic-keyword a:hover,
#tano-head-bottom #tano-topic-keyword a:active {
	text-decoration: none;
}
#tano-head-bottom #tano-menu-list {
	border: 1px solid #ccc;
	padding: 15px 15px 0;
	margin:8px 0 0 ;
}
#tano-head-bottom #tano-menu-list li {
	display: inline-block;
	margin-bottom: 12px;
}
* html #tano-head-bottom #tano-menu-list li {
	display: inline;
}
*+html #tano-head-bottom #tano-menu-list li {
	display: inline;
}
#tano-head-bottom #tano-menu-list li a {
	padding: 0 10px 0 10px;
	background: url(/common-tano/img/arrow-05.png) 0 center no-repeat;
	color: #333;
	font-weight: bold;
}
#tano-head-bottom .tano-left #tano-head-search-extra {
	position: absolute;
	top: 10px;
	right: 8px;
	width: 134px;
}
#tano-head-bottom .tano-left #tano-head-search-extra a,
#tano-head-bottom .tano-left #tano-head-search-extra img {
	display: block;
}
#tano-head-bottom .tano-left #tano-head-search-extra a {
	float: left;
}
#tano-head-bottom .tano-left #tano-head-search-extra .tano-text-link {
	margin: 7px 0 0 8px;
	padding-left: 8px;
	background: url(/common-tano/img/icon-arrow-right-black.png) 0 0.3em no-repeat;
	color: #1c1c1c;
	font-size: 11px;
	font-size: 1.1rem;
}
#tano-head-bottom .tano-left #tano-head-search-category-words {
	overflow: hidden;
	position: absolute;
	top: 45px;
	left: 10px;
	z-index: 10;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title,
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list {
	float: left;
	padding: 5px 10px;
	border: 1px solid #CCC;
	background: #FFF;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title {
	_width: 250px;
	border-right: none;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title li {
	position: relative;
	margin: 0 0 5px 0;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title li:hover,
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title li:active {
	background-color: #3399fe;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title li a {
	display: block;
	height: 10px;
	padding: 10px 0 15px 45px;
	background: 7px 5px no-repeat;
	font-size: 16px;
	font-size: 1.6rem;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title li a img {
	position: absolute;
	top: 0;
	left: 0;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title li a:hover,
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-title li a:active {
	background-color: #3399fe;
	color: #FFF;
	text-decoration: none;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list {
	_width: 400px;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list .tano-search-contents {
	margin: 10px 30px 30px 20px;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list .tano-search-contents .tano-search-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list .tano-search-contents ul {
	padding: 0 0 30px 0;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list .tano-search-contents ul li {
	margin: 0 0 5px 0;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list .tano-search-contents img {
	display: block;
	clear: both;
	margin: 0 0 10px 0;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list .tano-head-search-category-list-line2 {
	overflow: hidden;
	width: 350px;
}
#tano-head-bottom .tano-left #tano-head-search-category-words #tano-head-search-category-list .tano-head-search-category-list-line2 li {
	float: left;
	width: 160px;
	margin-right: 15px;
}
#tano-head-bottom .tano-left #tano-head-search-narrowing-words {
	position: absolute;
	top: 42px;
	left: 8px;
	z-index: 10;
	display: none;
	background: #FFF;
	border: 1px solid #666;
}
#tano-head-bottom .tano-left #tano-head-search-narrowing-words ul {
	padding: 10px 0;
}
/* 20141014tci */
#tano-head-bottom .tano-left #tano-head-search-narrowing-words ul li {
	height: 20px;
	padding: 0 20px;
	margin: 0 0 5px 0;
	font-size: 14px;
	font-size: 1.4rem;
	cursor: pointer;
}
#tano-head-bottom .tano-left #tano-head-search-narrowing-words ul li:hover,
#tano-head-bottom .tano-left #tano-head-search-narrowing-words ul li:active {
	background-color: #3399fe;
	color: #FFF;
}
#tano-head-bottom .tano-left #tano-head-search-narrowing-words ul li span {
	line-height: 20px;
}
/* 20141014tci */
/*		・フッター内設定 */
#tano-container-footer-inner {
	padding: 22px 0 40px 0;
	background-color: #f5f5f5;
}
#tano-container-footer-inner #tano-foot-navi {
	margin: 0 auto;
	text-align: center;
	font-size: 0;
}
#tano-container-footer-inner #tano-foot-navi li {
	width: 180px;
}

#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner {
	display: inline-block;
	padding: 4px 0 4px 20px;
	border-left: 1px dotted #CCC;
	vertical-align: top;
	margin-bottom: 10px;
	font-size: 12px;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner01 {
	padding-left: 0;
	border-left: none;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner .tano-foot-title {
	text-align: left;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner ul {
	text-align: left;
	float: left;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner02 dl  {
	clear: both;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner ul li {
	margin-top: 5px;
	font-size: 12px;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner ul li a {
	color: #333;
}
/* 20141008tci */
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner ul.tano-foot-list {
	text-align: left;
	float:left;
	margin-left:1em;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner ul.tano-foot-list li {
	margin-top: 5px;
}

#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner02 ul.tano-foot-list {
	float:none;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner03 {
	padding-top: 25px;
}
#tano-container-footer-inner #tano-foot-navi .tano-foot-navi-inner03 ul li {
	/* 【WB-073(2)】Start SEO対策 */
	width:155px;
	*width:160px;
	/* 【WB-073(2)】End SEO対策 */
}
#tano-container-footer-inner .tano-foot-tel {
	width: 746px;
	margin: 0 auto;
	border: 1px solid #ccc;
	padding: 10px;
	font-size: 0;
}
#tano-container-footer-inner .tano-foot-tel.tano-foot-narrow {
	width: 370px;
}
#tano-container-footer-inner .tano-foot-tel li {
	display: inline-block;
	width: 49.5%;
	margin-right: 1%;
	text-align: center;
}
#tano-container-footer-inner .tano-foot-narrow li {
    width: 100%;
}*+html #tano-container-footer-inner .tano-foot-tel li {
	display: inline;
}
#tano-container-footer-inner .tano-foot-tel li.tano-last-child,
#tano-container-footer-inner .tano-foot-tel.tano-foot-narrow li {
	margin-right: 0;
}
.tano-foot-tel ul li p {
	font-size: 10px;
	padding-left: 67px;
	padding-top: 5px;
	text-align: left;
}
/*20141008tci */
footer .tano-foot-wrap {
	width: 940px;
	margin: 0 auto;
	padding: 20px 10px 0;
}
footer .tano-foot-left {
	width: 80%;
	float: left;
}

/*tano-foot-navi-unapproved*/
#tano-container-footer-inner nav .tano-foot-navi-unapproved{
	float:left;
	margin-left:20px;
}
#tano-container-footer-inner nav .tano-foot-navi-unapproved ul li{
	float:left;
	margin-right:40px;
}
#tano-container-footer #tano-container-footer-inner .tano-foot-navi-unapproved ul li a{
    color: #333;
    background: url(/common-tano/img/icon-arrow-right-green-02.png) no-repeat 0px 0.4em;
    padding: 0 0 0 10px;
    text-decoration: none;
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
}
#tano-container-footer #tano-container-footer-inner .tano-foot-navi-unapproved ul li a:hover{
	text-decoration:underline;
}

/*simple-foot*/
#tano-container-footer-inner #tano-foot-logo {
	float: right;
	margin-top: 42px;
}
#tano-container-footer-inner #tano-foot-logo-02 {
	float: right;
}
.tano-com-simple-foot #tano-container-footer-inner #tano-foot-logo {
	margin: 0 auto;
	float: none;
}

footer .tano-foot-left .tano-privacy-mark img,
footer .tano-foot-left .tano-privacy-mark p,
footer .tano-foot-left .tano-jadma-mark img,
footer .tano-foot-left .tano-jadma-mark p {
	float: left;
}
footer .tano-foot-left .tano-foot-item-number {
	width: 102px
}
footer .tano-foot-left .tano-jadma-mark p ,
footer .tano-foot-left .tano-privacy-mark p {
	width: 150px;
	margin-left: 10px;
}
footer .tano-foot-left .tano-foot-item-number,
footer .tano-foot-left .tano-jadma-mark,
footer .tano-foot-left .tano-privacy-mark {
	float: left;
	font-size: 0.8em;
	line-height: 1.4;
}
footer .tano-foot-left .tano-jadma-mark,
footer .tano-foot-left .tano-privacy-mark {
	width: 250px;
}
#tano-foot-copyright {
	width: 940px;
	margin: 0 auto;
	padding: 0 10px;
	text-align: right;
}
/* ２．コンチネンタルエリア定義
---------------------------------------------------------------------------------- */
/*	・コンチネンタルレイアウト定義 */
/*		・ヘッダ内設定 */
/*		・サイド内設定 */
/* =tano-left-area */
#tano-left-area #tano-left-area-tub {
	display: none;
}
#tano-left-area #tano-left-area-inner .tano-left-tub-close ,
#tano-left-area #tano-left-area-inner-hidden .tano-left-tub-close {
	display: none;
}
#tano-left-area #tano-left-area-inner section ,
#tano-left-area #tano-left-area-inner-hidden section {
	overflow: visible;
	margin: 0 0 15px 0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search-other {
	border-bottom: 5px solid #6d726a;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li ul ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li ul {
	padding: 5px 0;
	border-left: none;
	border-right: none;
}
#tano-left-area #tano-left-area-inner section h3,
#tano-left-area #tano-left-area-inner-hidden section h3 {
	position: relative;
}
#tano-left-area #tano-left-area-inner section h3 span ,
#tano-left-area #tano-left-area-inner-hidden section h3 span {
	display: block;
	height: 25px;
	padding: 6px 0 3px 15px;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	color: #FFF;
	line-height: 20px;
}
#tano-left-area #tano-left-area-inner section h3 .tano-leftmenu-quark-button,
#tano-left-area #tano-left-area-inner-hidden section h3 .tano-leftmenu-quark-button {
	position: absolute;
	right: 4px;
	top: 4px;
}

#tano-left-area #tano-left-area-inner section h3 .tano-leftmenu-quark-button img,
#tano-left-area #tano-left-area-inner-hidden section h3 .tano-leftmenu-quark-button img {
	display: block;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category h3 span,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category h3 span,
#tano-left-area #tano-left-area-inner .tano-leftmenu-search h3 span,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search h3 span,
#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other h3 span ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search-other h3 span {
	padding-left: 35px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-service ul ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
#tano-left-area #tano-left-area-inner section ul li ,
#tano-left-area #tano-left-area-inner-hidden section ul li {
	border-bottom: 1px dotted #ccc;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-service .tano-service-last-child {
	border-bottom: 1px solid #ccc;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-service ul .tano-last-child ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul .tano-last-child {
	border-bottom: none;
}
#tano-left-area #tano-left-area-inner section ul li span,
#tano-left-area #tano-left-area-inner-hidden section ul li span,
#tano-left-area #tano-left-area-inner section ul li a,
#tano-left-area #tano-left-area-inner-hidden section ul li a,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-02 span,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul .tano-menu-class-02 span,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-02 a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul .tano-menu-class-02 a {
	position: relative;
	padding: 9px 1px 9px 27px;
	display: block;
	line-height: 1.8em;
	color: #333;
	background-position: 10px 15px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li span,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li span,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a {
	padding: 5px 30px 5px 10px;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a.tano-accordion ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a.tano-accordion {
	padding:0;
	background:none;
	font-weight:bold;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a.tano-accordion:hover,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a.tano-accordion:hover{
	color:#000;
}
.tano-care-sample-category-list .tano-accordion-inner,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower .tano-accordion-inner {
	display: none;
}
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a {
	padding: 7px 25px 5px 20px;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-02 ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul .tano-menu-class-02 {
	border-bottom: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-02 span,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul .tano-menu-class-02 span,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-02 a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul .tano-menu-class-02 a {
	padding: 5px 15px 5px 10px;
	background: none;
	font-weight: bold;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-03 a{
	padding: 5px 15px 5px 10px;
	background: none;
	font-weight: bold;
	color:#333;
}
* html #tano-left-area #tano-left-area-inner section ul li span,
* html #tano-left-area #tano-left-area-inner-hidden section ul li span,
* html #tano-left-area #tano-left-area-inner section ul li a ,
* html #tano-left-area #tano-left-area-inner-hidden section ul li a {
	height: 1%;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a:link,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a:link,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a:visited ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a:visited {
	color: #1a5fe7;
	text-decoration: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a:hover,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a:hover,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a:active ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a:active {
	color: #1a5fe7;
	text-decoration: underline;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-03 a:link,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-03 a:visited {
	color: #333;
	text-decoration: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-03 a:hover,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul .tano-menu-class-03 a:active {
	color: #333;
	text-decoration: underline;
}
#tano-left-area #tano-left-area-inner section ul li span ,
#tano-left-area #tano-left-area-inner-hidden section ul li span {
	padding-right: 30px;
}
#tano-left-area #tano-left-area-inner section ul li a img ,
#tano-left-area #tano-left-area-inner-hidden section ul li a img {
	position: absolute;
	top: 2px;
	left: 0;
}
#tano-left-area #tano-left-area-inner section.tano-leftmenu-category ul .tano-menu-class span img ,
#tano-left-area #tano-left-area-inner-hidden section.tano-leftmenu-category ul .tano-menu-class span img {
	position: absolute;
	top: 5px;
	left: 7px;
	vertical-align: top;
}
#tano-left-area #tano-left-area-inner section ul li .tano-accordion ,
#tano-left-area #tano-left-area-inner-hidden section ul li .tano-accordion {
	cursor: pointer;
}
#tano-left-area #tano-left-area-inner section ul li .tano-accordion-icon ,
#tano-left-area #tano-left-area-inner-hidden section ul li .tano-accordion-icon {
	background: url(/common-tano/img/btn-open-01.gif) 190px 6px no-repeat;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a.tano-accordion:link,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a.tano-accordion:link,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a.tano-accordion:visited,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a.tano-accordion:visited{
	color:#333333;
	padding:5px 30px 5px 10px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li a.tano-accordion:hover,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li a.tano-accordion:hover{
	text-decoration:none;
}
#tano-left-area #tano-left-area-inner section ul li a .tano-accordion-icon ,
#tano-left-area #tano-left-area-inner-hidden section ul li a .tano-accordion-icon {
    height: 18px;
    line-height: 100%;
    position: absolute;
    right: 10px;
    top: 6px;;
    width: 18px;
	padding:0;
	background-position:0 0;
}


#tano-left-area #tano-left-area-inner section ul li ul ,
#tano-left-area #tano-left-area-inner-hidden section ul li ul {
	border: none;
	border-top: 1px dotted #bbb;
}

#tano-left-area #tano-left-area-inner section ul li ul li ,
#tano-left-area #tano-left-area-inner-hidden section ul li ul li {
	border: none;
}
#tano-left-area #tano-left-area-inner section ul li ul li span,
#tano-left-area #tano-left-area-inner-hidden section ul li ul li span,
#tano-left-area #tano-left-area-inner section ul li ul li a ,
#tano-left-area #tano-left-area-inner-hidden section ul li ul li a {
	padding: 5px 15px 5px 20px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li ul li span,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li ul li span,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li ul li a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li ul li a {
	padding: 2px 15px 2px 20px;
	background-position: 9px 6px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li ul li.tano-menu-class-no-count a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li ul li.tano-menu-class-no-count a {
	display: inline;
	padding: 0;
	background:none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower ul li ul li a.tano-menu-class-no-count ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower ul li ul li a.tano-menu-class-no-count {
	display: inline-block;
	padding: 2px 0 2px 20px;
}
#tano-left-area #tano-left-area-inner section #tano-close-left-menu,
#tano-left-area #tano-left-area-inner-hidden section #tano-close-left-menu,
#tano-left-area #tano-left-area-inner section ul #tano-leftmenu-category ,
#tano-left-area #tano-left-area-inner-hidden section ul #tano-leftmenu-category {
	position: relative;
}
#tano-left-area #tano-left-area-inner section #tano-close-left-menu ,
#tano-left-area #tano-left-area-inner-hidden section #tano-close-left-menu {
	background: #579c27;
	border: none;
	text-align: center;
	color: #FFF;
}
#tano-left-area #tano-left-area-inner section #tano-close-left-menu span,
#tano-left-area #tano-left-area-inner-hidden section #tano-close-left-menu span,
#tano-left-area #tano-left-area-inner section #tano-close-left-menu a ,
#tano-left-area #tano-left-area-inner-hidden section #tano-close-left-menu a {
	padding: 0;
	color: #fff;
	background: url(/common-tano/img/icon-leftmenu-close.png) no-repeat 10px 2px;
}
#tano-left-area #tano-left-area-inner section #tano-close-left-menu a ,
#tano-left-area #tano-left-area-inner-hidden section #tano-close-left-menu a {
	position: relative;
	display: block;
	padding: 1px 0 3px;
	z-index: 10;
}
#tano-left-area #tano-left-area-inner section #tano-close-left-menu span ,
#tano-left-area #tano-left-area-inner-hidden section #tano-close-left-menu span {
	position: absolute;
	top: 0;
	right: 10px;
	z-index: 0;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower .tano-menu-class span,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower .tano-menu-class span,
#tano-left-area #tano-left-area-inner .tano-leftmenu-category-lower .tano-menu-class a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category-lower .tano-menu-class a {
	display: block;
	padding: 9px 15px 9px 45px;
	font-weight: bold;
	line-height: 1.8em;
	background: 7px 5px no-repeat;
	color: #333;
}
#tano-left-area #tano-left-area-inner section .tano-details-link ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link {
	padding: 0 11px 8px;
	border-bottom: 1px dotted #ccc;
}
#tano-left-area #tano-left-area-inner section .tano-details-link-bottom ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link-bottom {
	padding: 5px 0;
	border-top: 1px dotted #CCCCCC;
}
#tano-left-area #tano-left-area-inner section .tano-details-link-bottom dt ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link-bottom dt {
	padding: 5px 0 0 10px;
	font-weight: bold;
}
#tano-left-area #tano-left-area-inner section .tano-details-link-bottom ul ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link-bottom ul {
	border: none;
}
#tano-left-area #tano-left-area-inner section .tano-details-link ul .tano-look-more ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link ul .tano-look-more {
	text-align: right;
}
#tano-left-area #tano-left-area-inner section .tano-details-link ul .tano-look-more a ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link ul .tano-look-more a {
	padding: 0 26px 0 0;
	background: url(/common-tano/img/btn-open-01.gif) no-repeat 100% 0;
	font-weight: bold;
	line-height: 18px;
}
#tano-left-area #tano-left-area-inner section .tano-details-link .tano-look-more-display .tano-look-more a ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link .tano-look-more-display .tano-look-more a {
	background: url(/common-tano/img/btn-close-01.gif) no-repeat 100% 0;
}
#tano-left-area #tano-left-area-inner section .tano-details-link ul li ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link ul li {
	padding: 2px 0;
}
#tano-left-area #tano-left-area-inner section .tano-details-link ul li label ,
#tano-left-area #tano-left-area-inner-hidden section .tano-details-link ul li label {
	font-weight: normal;
	background-position: 10px 5px;
	line-height:1.5em;
}
#tano-left-area #tano-left-area-inner section .tano-leftmenu-facet-search ,
#tano-left-area #tano-left-area-inner-hidden section .tano-leftmenu-facet-search {
	margin: 0;
	padding: 12px 11px 10px;
	font-weight: bold;
}
/* 全クリア image-button */
#tano-left-area #tano-left-area-inner section .tano-leftmenu-all-conditions-button ,
#tano-left-area #tano-left-area-inner-hidden section .tano-leftmenu-all-conditions-button {
	margin: 0;
	padding: 10px 0 5px;
	border-bottom: 1px dotted #ccc;
	text-align: center;
}
#tano-left-area #tano-left-area-inner section .tano-leftmenu-all-conditions-button-last,
#tano-left-area #tano-left-area-inner-hidden section .tano-leftmenu-all-conditions-button-last {
	border-bottom: none;
}
/* 全クリア image-button */
#tano-left-area #tano-left-area-inner section .tano-leftmenu-all-conditions-button a ,
#tano-left-area #tano-left-area-inner-hidden section .tano-leftmenu-all-conditions-button a {
	display: inline-block;
}
*+html #tano-left-area #tano-left-area-inner section .tano-leftmenu-all-conditions-button a ,
*+html #tano-left-area #tano-left-area-inner-hidden section .tano-leftmenu-all-conditions-button a {
	display: inline;
}
* html #tano-left-area #tano-left-area-inner section .tano-leftmenu-all-conditions-button a ,
* html #tano-left-area #tano-left-area-inner-hidden section .tano-leftmenu-all-conditions-button a {
	display: inline;
}
#tano-left-area #tano-left-area-inner section .tano-leftmenu-all-conditions-button .tano-leftmenu-all-check-up,
#tano-left-area #tano-left-area-inner-hidden section .tano-leftmenu-all-conditions-button .tano-leftmenu-all-check-up{
	width: 66px;
	margin-right: 11px;
}
/* クリア image-button */
#tano-left-area #tano-left-area-inner section .tano-release-image ,
#tano-left-area #tano-left-area-inner-hidden section .tano-release-image {
	margin: -2px 0 0 0;
	padding-right: 3px;
	float: right;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-auction ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-auction {
	margin-bottom: 10px;
	border: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-auction ul ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-auction ul {
	margin-bottom: 20px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
}

body.tano-auction-02 {
	border-top: 3px solid #2d9047;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-auction ul li ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-auction ul li {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	font-weight: bold;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-auction ul li span ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-auction ul li span {
	padding: 9px 15px 9px 44px;
	background: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-auction ul li span img ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-auction ul li span img {
	position: absolute;
	left: 6px;
	top: 5px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-auction ul li a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-auction ul li a {
	padding: 7px 15px 7px 21px;
	background-position: 9px 1em;
}
/* すべて image-button */
#tano-left-area #tano-left-area-inner section .tano-all-release-image ,
#tano-left-area #tano-left-area-inner-hidden section .tano-all-release-image {
	margin: -2px 0 0 0;
	padding-right: 3px;
	float: left;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category h3,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category h3,
#tano-left-area #tano-left-area-inner .tano-leftmenu-search h3,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search h3,
#tano-left-area #tano-left-area-inner .tano-leftmenu-service h3,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service h3,
#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other h3 ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search-other h3,
#tano-left-area #tano-left-area-inner .tano-leftmenu-order h3 {
	background-image: url(/common-tano/img/bg-lnav-ttl-line.png);
	background-position: 0 100%;
	background-repeat: no-repeat;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category h3 span,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category h3 span,
#tano-left-area #tano-left-area-inner .tano-leftmenu-search h3 span ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search h3 span{
	background-image: url(/common-tano/img/icon-leftmenu-h3-01.png);
	background-position: 10px 5px;
	background-repeat: no-repeat;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other h3 span ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search-other h3 span {
	background-image: url(/common-tano/img/icon-leftmenu-h3-03.png);
	background-position: 10px 5px;
	background-repeat: no-repeat;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-category h3,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-category h3,
#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other h3 ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search-other h3,
#tano-left-area #tano-left-area-inner .tano-leftmenu-order h3 {
	background-color: #6d726a;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-service h3 ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service h3 {
	background-color: #91948f;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-order h3 {
	text-align: center;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-order h3 span {
	padding-left: 0;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link {
	padding: 8px;
	border: 1px solid #247e10;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link-care ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link-care {
	border: 1px solid #eb648d;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link h3 ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link h3 {
	font-size: 20px;
	font-size: 2rem;
	color: #237b10;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link-care h3 ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link-care h3 {
	color: #eb648d;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link h3 span ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link h3 span {
	padding: 0;
	font-size: 12px;
	font-size: 1.2rem;
	color: #237b10;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link-care h3 span ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link-care h3 span {
	color: #eb648d;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link-title-tanomail {
	padding: 7px;
	background: #e5f9d8;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	color: #0e5636;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link-title-tanomail span {
	padding: 7px 0 7px 38px;
	background: url(/common-tano/img/icon-leftmenu-tanomail-catalogue.gif) no-repeat left center;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link-title-care {
	padding: 7px;
	background: #fae7ed;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	color: #eb648d;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link-title-care span {
	padding: 7px 0 7px 35px;
	background: url(/common-tano/img/icon-leftmenu-care-catalogue.gif) no-repeat left center;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-text-box ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-text-box {
	display: block;
	margin: 13px 0;
	color: #333333;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-text-box .tano-image ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-text-box .tano-image {
	float: right;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-text-box .tano-text ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-text-box .tano-text {
	float: left;
	width: 135px;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-text-box .tano-text .tano-arrow-green,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-text-box .tano-text .tano-arrow-green {
	padding: 0 0 0 10px;
	background: url(/common-tano/img/icon-arrow-right-green.png) 0 0.3em no-repeat;
	color: #1a5fe7;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-text-box .tano-text .tano-arrow-green:hover,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-text-box .tano-text .tano-arrow-green:hover {
	color: #1a5fe7;
	text-decoration: underline;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-text-box .tano-text .tano-arrow-green:visited,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-text-box .tano-text .tano-arrow-green:visited {
	color: #1a5fe7;
	text-decoration: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-btn-box ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-btn-box {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #ccc;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-btn-box ul li ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-btn-box ul li {
	margin-top: 5px;
	border: 1px solid #96d089;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	background: -moz-linear-gradient(top, #fff 0%, #fff4f8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #fff4f8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fff 0%, #fff4f8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fff 0%, #fff4f8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fff 0%, #fff4f8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #fff 0%, #fff4f8 100%); /* W3C */
}
/* 【SI-250】Start TOP画面にインデックスDLリンク追加 */
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-btn-box ul li.tano-indexnumber {
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	background: -moz-linear-gradient(top, #fff 0%, #f7f7f7 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #f7f7f7)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fff 0%, #f7f7f7 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fff 0%, #f7f7f7 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fff 0%, #f7f7f7 100%); /* IE10+ */
	background: linear-gradient(to bottom, #fff 0%, #f7f7f7 100%); /* W3C */
}
/* 【SI-250】End TOP画面にインデックスDLリンク追加 */
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-btn-box ul li a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-btn-box ul li a {
	background-position: 10px 50%;
	color: #358e21;
	font-weight: bold;
	line-height: 1.4;
}
/*
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-btn-box ul .tano-ask-catalog a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-btn-box ul .tano-ask-catalog a {
	font-size: 14px;
	font-size: 1.4rem;
}
*/
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-btn-box-care ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-btn-box-care {
	padding-bottom: 0;
	border-bottom: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-btn-box-care ul li ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-btn-box-care ul li {
	border: 1px solid #f4c2d1;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-independence-link .tano-btn-box-care ul li a ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-independence-link .tano-btn-box-care ul li a {
	color: #eb648d;
	background: url(/common-tano/img/icon-arrow-right-pink-02.png) 10px 50% no-repeat;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-catalog-info-btn ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-catalog-info-btn {
	margin: -20px 0 30px;
	text-align: center;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other .tano-leftmenu-facet-search .tano-search-type ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search-other .tano-leftmenu-facet-search .tano-search-type {
	float:left;
	width:10em;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other .tano-leftmenu-facet-search .tano-clear-button ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search-other .tano-leftmenu-facet-search .tano-clear-button {
	float:right;
	width:65px;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom {
	border-top: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom h3 ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom h3 {
	height: auto;
	margin: 0 0 26px 0;
	padding: 0;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom h3 img ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom h3 img {
	display: block;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom ul ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom ul {
	border: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom ul li ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom ul li {
	width: 100%;
	margin: 0 auto 10px;
	text-align: center;
	border: none;
	background-image: none;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom ul li a,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom ul li a,
#tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom ul li img ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom ul li img {
	position: static;
	display: block;
	padding: 0;
	background: 0 0 no-repeat;
	left: 0;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other ul ,
#tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-search-other ul {
	border-top: none;
}
#tano-left-area #tano-left-area-inner-hidden {
	display: none;
}

#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other .tano-balloon {
	width: 178px;
	font-weight: normal;
}
#tano-left-area #tano-left-area-inner .tano-leftmenu-search-other .tano-balloon .tano-balloon-text {
	width: 178px;
}



/*officedesign leftmenu*/
#tano-s.tano-ar #tano-left-area #tano-left-area-inner .tano-leftmenu-service,
#tano-s.tano-ar #tano-left-area #tano-left-area-inner-hidden section .tano-leftmenu-service {
	border-top: none;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service h3 span,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service h3 span {
	padding: 6px 0 3px 15px;
	color: #FFF;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul {
	border-bottom: none;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li span,
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li a,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li span,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li a {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.8em;
	font-weight: normal;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li a,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li a {
	padding: 9px 15px 9px 27px;
	background: url(/common-tano/img/icon-arrow-right-green-02.png) 9px 1.1em no-repeat;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li .tano-leftmenu-service-inner,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li .tano-leftmenu-service-inner {
	padding: 0 0 5px 29px;
	background-color: #f7f7f7;
	border-top: 1px dotted #ccc;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li .tano-leftmenu-service-inner p,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li .tano-leftmenu-service-inner p {
	padding: 10px 0 2px;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.8em;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li .tano-leftmenu-service-inner ul,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li .tano-leftmenu-service-inner ul {
	border: none;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li .tano-leftmenu-service-inner ul a,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li .tano-leftmenu-service-inner ul a {
	display: inline;
	padding: 2px 0 2px 10px;
	color: #1a5fe7;
	background: url(/common-tano/img/icon-arrow-right-green-03.png) 0 0.6em no-repeat;
}

#tano-s.tano-ar #tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom,
#tano-s.tano-ar #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom {
	border-top: none;
}
#tano-s.tano-ar #tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom ul,
#tano-s.tano-ar #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom ul {
	border: none;
}
#tano-s.tano-ar #tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom ul li a,
#tano-s.tano-ar #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom ul li a,
#tano-s.tano-ar #tano-left-area #tano-left-area-inner .tano-leftmenu-tanokunroom ul li img,
#tano-s.tano-ar #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-tanokunroom ul li img {
	padding: 0;
}

/* 20141031 tci */
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li:last-child,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li:last-child{
	border-bottom:none;
}

#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service #tano-office-leftmenu ,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service #tano-office-leftmenu {
	border-bottom: 1px solid #ccc;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li span,
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li a,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li span,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li a ,
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li p,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li p{
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.8em;
	font-weight: normal;
}

#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li p,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li p {
	padding: 9px 15px 9px 27px;
}
#tano-s #tano-left-area #tano-left-area-inner .tano-leftmenu-service ul li a,
#tano-s #tano-left-area #tano-left-area-inner-hidden .tano-leftmenu-service ul li a {
	padding: 9px 15px 9px 27px;
	background: url(/common-tano/img/icon-arrow-right-green-02.png) 9px 1.1em no-repeat;
}
/* 20141031 tci */


#wrap .tano-recommend,
#wrap .tano-recommend-02,
#wrap .tano-recommend-03 {
	position: relative;
	width: 100%;
	padding: 0 0 10px 0;
}
/* Recomend Parts caroucelArea */
#wrap .tano-recommend .tano-caroucel-button-left,
#wrap .tano-recommend-02 .tano-caroucel-button-left,
#wrap .tano-recommend-03 .tano-caroucel-button-left {
	left: 0;
}
#wrap .tano-recommend .tano-caroucel-button-right,
#wrap .tano-recommend-02 .tano-caroucel-button-right,
#wrap .tano-recommend-03 .tano-caroucel-button-right {
	right: 0;
}
#wrap .tano-recommend .tano-caroucel-pager,
#wrap .tano-recommend-02 .tano-caroucel-pager,
#wrap .tano-recommend-03 .tano-caroucel-pager {
	z-index: 2;
	width: 100%;
	text-align: center;
}
#wrap .tano-recommend .tano-caroucel-pager-on,
#wrap .tano-recommend-02 .tano-caroucel-pager-on,
#wrap .tano-recommend-03 .tano-caroucel-pager-on {
	padding: 2px;
}
#wrap .tano-recommend .tano-caroucel-pager-off,
#wrap .tano-recommend-02 .tano-caroucel-pager-off,
#wrap .tano-recommend-03 .tano-caroucel-pager-off {
	padding: 2px;
}
#wrap .tano-recommend .tano-caroucel-pager-off:link,
#wrap .tano-recommend-02 .tano-caroucel-pager-off:link,
#wrap .tano-recommend-03 .tano-caroucel-pager-off:link {
	color: #dddddd;
	text-decoration: none;
}
#wrap .tano-recommend .tano-caroucel-pager-off:visited,
#wrap .tano-recommend-02 .tano-caroucel-pager-off:visited,
#wrap .tano-recommend-03 .tano-caroucel-pager-off:visited {
	color: #dddddd;
	text-decoration: none;
}
#wrap .tano-recommend .tano-caroucel-pager-off:hover,
#wrap .tano-recommend-02 .tano-caroucel-pager-off:hover,
#wrap .tano-recommend-03 .tano-caroucel-pager-off:hover {
	color: #61c321;
	text-decoration: none;
}
#wrap .tano-recommend .tano-caroucel-pager-off:active,
#wrap .tano-recommend-02 .tano-caroucel-pager-off:active,
#wrap .tano-recommend-03 .tano-caroucel-pager-off:active {
	color: #61c321;
	text-decoration: none;
}
#wrap .tano-recommend .tano-caroucel-window .tano-item-box div,
#wrap .tano-recommend-02 .tano-caroucel-window .tano-item-box div,
#wrap .tano-recommend-03 .tano-caroucel-window .tano-item-box div {
	margin: 0 0 0 5px;
}
.tano-caroucel-button {
	position: absolute;
	top: 225px;
	width: 21px;
	vertical-align: middle;
	text-align: center;
}
.tano-caroucel-button a {
	display: block;
	width: 100%;
}
.tano-caroucel-button a img {
	display: block;
}
.tano-caroucel-outer {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.tano-caroucel-inner {
	width: 100%;
	position: relative;
	left: 0px;
	top: 0px;
}
.tano-caroucel-window {
	width: 680px;
	margin: 0 0 0 18px;
}
.tano-caroucel-window .tano-item-box {
	position: absolute;
	top: 0;
	left: 0;
}
.tano-caroucel-window .tano-item-box div {
	padding: 0 5px 15px 0;
	background: #FFF;
}
.tano-caroucel-window .tano-item-box .tano-center,
.tano-caroucel-window .tano-item-box .tano-text-right {
	padding: 5px 0 0;
}
.tano-caroucel-window .tano-item-box .tano-item-icon {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	background: none;
}
.tano-caroucel-window .tano-item-box div .tano-recommend-item-pic {
	display: block;
	width: 135px;
	margin: 0 auto;
	border: 1px solid #ccc;
}
#tano-recommend-item .tano-caroucel-window .tano-item-box div .tano-recommend-item-pic {
	width: 148px;
}
.tano-caroucel-window .tano-item-box div .tano-recommend-item-name {
	display: block;
	line-height: 1.4em;
	min-height:8.4em;
}
.tano-caroucel-window .tano-item-box div dl dt {
	margin: 0 0 5px 0;
	border-bottom: 1px dotted #CCC;
}
.tano-caroucel-window .tano-item-box div dl dd {
	text-align: right;
	margin: 0 0 10px 0;
}
.tano-caroucel-window .tano-item-box div dl dd span {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #e70000;
}
.tano-caroucel-window .tano-item-box div dl dd span span {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
}
.tano-caroucel-window .tano-item-box div .tano-recommend-item-iconarea {
	margin: 0;
	padding: 7px 0;
}
.tano-caroucel-window .tano-item-box div .tano-recommend-item-iconarea span {
	margin: 2px 0;
	padding: 2px 3px;
}
.tano-caroucel-window .tano-item-box div .tano-cartin {
	display: block;
}
.tano-caroucel-window .tano-item-box div .tano-favorites-in {
	display: block;
}
#tano-category-ranking .tano-item-price dl dt {
	margin: 0 0 5px 0;
	border-bottom: 1px dotted #CCC;
	text-align:left;
}
#tano-category-ranking .tano-item-price dl dd {
	float:right;
}

#tano-main-area #tano-show-it,
#tano-main-area #tano-bought-it,
#tano-main-area #tano-special-feature #tano-special-feature-list,
#tano-main-area #tano-special-feature #tano-recommend-item-list,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02,
#tano-main-area #tano-special-feature #tano-check-item-list,
#tano-main-area #tano-recommend-item #tano-special-feature-list,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list-02,
#tano-main-area #tano-recommend-item #tano-recommend-item-list,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02,
#tano-main-area #tano-recommend-item #tano-check-item-list,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list,
#tano-main-area #tano-check-item #tano-special-feature-list,
#tano-main-area #tano-check-item-02 #tano-special-feature-list,
#tano-main-area #tano-check-item #tano-recommend-item-list,
#tano-main-area #tano-check-item-02 #tano-recommend-item-list-02,
#tano-main-area #tano-check-item #tano-check-item-list {
	position: relative;
	padding: 15px 0 10px 0;
	border: 1px solid #CCC;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-button-left,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-button-left,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-button-left,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-button-left,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-button-left,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list .tano-caroucel-button-left,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-button-left,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-button-left,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-button-left,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-button-left,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-button-left,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-button-left,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-button-left,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-button-left {
	left: 0;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-button-right,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-button-right,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-button-right,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-button-right,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-button-right,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list .tano-caroucel-button-right,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-button-right,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-button-right,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-button-right,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-button-right,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-button-right,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-button-right,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-button-right,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-button-right {
	right: 0;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-pager,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-pager,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-pager,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-pager,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-pager,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list .tano-caroucel-pager,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-pager,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-pager,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-pager,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-pager,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-pager,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-pager,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-pager,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-pager {
	padding: 30px 0 0 0;
	z-index: 2;
	width: 100%;
	text-align: center;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-pager-on,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-pager-on,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-pager-on,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-pager-on,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-pager-on,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list .tano-caroucel-pager-on,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-pager-on,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-pager-on,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-pager-on,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-pager-on,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-pager-on,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-pager-on,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-pager-on,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-pager-on {
	padding: 2px;
	color: #61c321;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-pager-off,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-pager-off,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-pager-off,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-pager-off,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-pager-off,
#tano-main-area #tano-recommend-item-02#tano-special-feature-list .tano-caroucel-pager-off,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-pager-off,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-pager-off,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-pager-off,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-pager-off,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-pager-off,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-pager-off,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-pager-off,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-pager-off {
	padding: 2px;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-pager-off:link,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-pager-off:link,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-pager-off:link,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-pager-off:link,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-pager-off:link {
	color: #CCC;
	text-decoration: none;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-pager-off:visited,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-pager-off:visited,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-pager-off:visited,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-pager-off:visited,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-pager-off:visited {
	color: #CCC;
	text-decoration: none;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-pager-off:hover,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-pager-off:hover,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-pager-off:hover,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-pager-off:hover,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-pager-off:hover {
	color: #61c321;
	text-decoration: none;
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-special-feature #tano-recommend-item-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-special-feature #tano-recommend-item-list-02 .tano-caroucel-pager-off:active,
#tano-main-area #tano-special-feature #tano-check-item-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-recommend-item #tano-special-feature-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-recommend-item-02 #tano-special-feature-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-recommend-item #tano-recommend-item-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-recommend-item-02 #tano-recommend-item-list-02 .tano-caroucel-pager-off:active,
#tano-main-area #tano-recommend-item #tano-check-item-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-recommend-item-02 #tano-check-item-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-check-item #tano-special-feature-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-check-item #tano-recommend-item-list .tano-caroucel-pager-off:active,
#tano-main-area #tano-check-item #tano-recommend-item-list-02 .tano-caroucel-pager-off:active,
#tano-main-area #tano-check-item #tano-check-item-list .tano-caroucel-pager-off:active {
	color: #61c321;
	text-decoration: none;
}
#tano-main-area #tano-special-feature .tano-caroucel-button,
#tano-main-area #tano-recommend-item .tano-caroucel-button,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-button,
#tano-main-area #tano-check-item .tano-caroucel-button {
	position: absolute;
	top: 100px;
	width: 21px;
	vertical-align: middle;
	text-align: center;
}
#tano-main-area #tano-special-feature .tano-caroucel-button a,
#tano-main-area #tano-recommend-item .tano-caroucel-button a,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-button a,
#tano-main-area #tano-check-item .tano-caroucel-button a {
	display: block;
	width: 100%;
}
#tano-main-area #tano-special-feature .tano-caroucel-button a img,
#tano-main-area #tano-recommend-item .tano-caroucel-button a img,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-button a img,
#tano-main-area #tano-check-item .tano-caroucel-button a img {
	display: block;
}
#tano-main-area #tano-special-feature .tano-caroucel-outer,
#tano-main-area #tano-recommend-item .tano-caroucel-outer,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-outer,
#tano-main-area #tano-check-item .tano-caroucel-outer {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#tano-main-area #tano-special-feature .tano-caroucel-inner,
#tano-main-area #tano-recommend-item .tano-caroucel-inner,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-inner,
#tano-main-area #tano-check-item .tano-caroucel-inner {
	width: 100%;
	position: relative;
	left: 0px;
	top: 0px;
}
#tano-main-area #tano-special-feature .tano-caroucel-window,
#tano-main-area #tano-recommend-item .tano-caroucel-window,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-window,
#tano-main-area #tano-check-item .tano-caroucel-window {
	width: 680px;
	margin: 0 0 0 18px;
}
#tano-main-area #tano-special-feature .tano-caroucel-window li,
#tano-main-area #tano-recommend-item .tano-caroucel-window li,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-window li,
#tano-main-area #tano-check-item .tano-caroucel-window li {
	position: absolute;/*float: left;*/
	/* IE6 hack */
	/** float: none;/*
	/* display: inline*/
}
#tano-main-area #tano-special-feature .tano-caroucel-window .tano-item-box,
#tano-main-area #tano-recommend-item .tano-caroucel-window .tano-item-box,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-window .tano-item-box,
#tano-main-area #tano-check-item .tano-caroucel-window .tano-item-box {
	position: absolute;
	top: 0;
	left: 0;
}
#tano-main-area #tano-special-feature .tano-caroucel-window .tano-item-box div .tano-item-pic,
#tano-main-area #tano-recommend-item .tano-caroucel-window .tano-item-box div .tano-item-pic,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-window .tano-item-box div .tano-item-pic,
#tano-main-area #tano-check-item .tano-caroucel-window .tano-item-box div .tano-item-picture-02 {
	display: block;
	width: 130px;
	margin: 0 auto 10px auto;
	border: 1px solid #CCC;
}
#tano-main-area #tano-special-feature .tano-caroucel-window .tano-item-box div .tano-item-name,
#tano-main-area #tano-recommend-item .tano-caroucel-window .tano-item-box div .tano-item-name,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-window .tano-item-box div .tano-item-name,
#tano-main-area #tano-check-item .tano-caroucel-window .tano-item-box div .tano-item-name {
	display: block;
	line-height: 1.4em;
	min-height: 8.4em;
}
#tano-main-area #tano-special-feature .tano-caroucel-window .tano-item-box div .tano-item-price span,
#tano-main-area #tano-recommend-item .tano-caroucel-window .tano-item-box div .tano-item-price span,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-window .tano-item-box div .tano-item-price span,
#tano-main-area #tano-check-item .tano-caroucel-window .tano-item-box div .tano-item-price span {
	font-weight: bold;
	color: #e60000;
}
#tano-main-area #tano-special-feature .tano-caroucel-window .tano-item-box div .tano-item-price span span,
#tano-main-area #tano-recommend-item .tano-caroucel-window .tano-item-box div .tano-item-price span span,
#tano-main-area #tano-recommend-item-02 .tano-caroucel-window .tano-item-box div .tano-item-price span span,
#tano-main-area #tano-check-item .tano-caroucel-window .tano-item-box div .tano-item-price span span {
	font-weight: normal;
}
#tano-main-area #tano-recommend-item .tano-caroucel-window .tano-item-box .tano-item-balloon {
	width: 155px;
	margin: 0 auto 9px;
	padding: 0 0 8px;
	background: url(/common-tano/img/bg-carousel-balloon-02.gif) no-repeat 50% 100%;
}
#tano-main-area #tano-recommend-item .tano-caroucel-window .tano-item-box .tano-item-balloon p {
	margin-left: 5px;
	padding: 10px 5px;
	color: #b25900;
	background: url(/common-tano/img/bg-carousel-balloon-01.gif) repeat 0 0;
	text-align: left;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
#tano-main-area #tano-special-feature #tano-special-feature-list {
}
#tano-main-area #tano-special-feature #tano-special-feature-list .tano-caroucel-pager {
	top: 165px;
}
#tano-main-area #tano-special-feature .tano-caroucel-button {
	top: 50px;
}
#tano-main-area #tano-product-bought-it,
#tano-main-area #tano-product-show-it {
	margin: 0 0 20px 0;
}
#tano-main-area #tano-product-bought-it #tano-bought-it,
#tano-main-area #tano-product-bought-it #tano-show-it,
#tano-main-area #tano-product-show-it #tano-bought-it,
#tano-main-area #tano-product-show-it #tano-show-it {
	position: relative;
	box-sizing: border-box;
	width: 100%;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-button-left,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-button-left,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-button-left,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-button-left {
	left: 0;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-button-right,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-button-right,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-button-right,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-button-right {
	right: 0;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-pager,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-pager,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-pager,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-pager {
	z-index: 2;
	width: 100%;
	text-align: center;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-pager-on,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-pager-on,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-pager-on,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-pager-on {
	padding: 2px;
	color: #61c321;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-pager-off,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-pager-off,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-pager-off,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-pager-off {
	padding: 2px;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-pager-off:link,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-pager-off:link,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-pager-off:link,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-pager-off:link {
	color: #CCC;
	text-decoration: none;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-pager-off:visited,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-pager-off:visited,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-pager-off:visited,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-pager-off:visited {
	color: #CCC;
	text-decoration: none;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-pager-off:hover,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-pager-off:hover,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-pager-off:hover,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-pager-off:hover {
	color: #61c321;
	text-decoration: none;
}
#tano-main-area #tano-product-bought-it #tano-bought-it .tano-caroucel-pager-off:active,
#tano-main-area #tano-product-bought-it #tano-show-it .tano-caroucel-pager-off:active,
#tano-main-area #tano-product-show-it #tano-bought-it .tano-caroucel-pager-off:active,
#tano-main-area #tano-product-show-it #tano-show-it .tano-caroucel-pager-off:active {
	color: #61c321;
	text-decoration: none;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-button,
#tano-main-area #tano-product-show-it .tano-caroucel-button {
	position: absolute;
	top: 100px;
	width: 16px;
	vertical-align: middle;
	text-align: center;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-button a,
#tano-main-area #tano-product-show-it .tano-caroucel-button a {
	display: block;
	width: 100%;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-button a img,
#tano-main-area #tano-product-show-it .tano-caroucel-button a img {
	display: block;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-outer,
#tano-main-area #tano-product-show-it .tano-caroucel-outer {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-inner,
#tano-main-area #tano-product-show-it .tano-caroucel-inner {
	width: 100%;
	position: relative;
	left: 0px;
	top: 0px;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window,
#tano-main-area #tano-product-show-it .tano-caroucel-window {
	width: 680px;
	margin: 0 0 0 16px;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window li,
#tano-main-area #tano-product-show-it .tano-caroucel-window li {
	position: absolute;/*float: left;*/
	/* IE6 hack */
	/** float: none;/*
	/* display: inline*/
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window .tano-item-box,
#tano-main-area #tano-product-show-it .tano-caroucel-window .tano-item-box {
	position: absolute;
	top: 0;
	left: 0;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window .tano-item-box div,
#tano-main-area #tano-product-show-it .tano-caroucel-window .tano-item-box div {
	padding: 10px 10px 15px 10px;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window .tano-item-box div .tano-item-pic,
#tano-main-area #tano-product-show-it .tano-caroucel-window .tano-item-box div .tano-item-picture-02 {
	display: block;
	width: 135px;
	margin: 0 auto 10px auto;
	border: 1px solid #CCC;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window .tano-item-box div .tano-item-name,
#tano-main-area #tano-product-show-it .tano-caroucel-window .tano-item-box div .tano-item-name {
	display: block;
	line-height: 1.4em;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window .tano-item-box div .tano-item-price,
#tano-main-area #tano-product-show-it .tano-caroucel-window .tano-item-box div .tano-item-price {
	float: left;
	width: 60%;
	text-align: center;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window .tano-item-box div .tano-item-price span,
#tano-main-area #tano-product-show-it .tano-caroucel-window .tano-item-box div .tano-item-price span {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	color: #e60000;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window .tano-item-box div .tano-item-price span span,
#tano-main-area #tano-product-show-it .tano-caroucel-window .tano-item-box div .tano-item-price span span {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
}
#tano-main-area #tano-product-bought-it .tano-caroucel-window .tano-item-box div .tano-cartin,
#tano-main-area #tano-product-show-it .tano-caroucel-window .tano-item-box div .tano-cartin {
	display: block;
	float: left;
	width: 20%;
}
#tano-main-area .tano-list-controller .tano-button-area-02 .tano-care-link-area {
	margin: 0 0 0 3px;
	border-left: 1px solid #d2d2d2;
}
/* =tano-container-right */
#tano-container-right a {
	display: inline-block;
}
#tano-right-area #tano-right-area-tub,
#tano-right-area #tano-container-right-tub,
#tano-container-right #tano-right-area-tub,
#tano-container-right #tano-container-right-tub {
	display: none;
}
#tano-right-area #tano-right-area-inner,
#tano-right-area #tano-container-right-inner,
#tano-container-right #tano-right-area-inner,
#tano-container-right #tano-container-right-inner {
	padding: 6px 0 0 0;
}
.tano-mypage-body #tano-container-right #tano-container-right-inner,
.tano-column2-body #tano-container-right #tano-container-right-inner {
	padding:0;
}
#tano-right-area #tano-right-area-inner .tano-right-tub-close,
#tano-right-area #tano-container-right-inner .tano-right-tub-close,
#tano-container-right #tano-right-area-inner .tano-right-tub-close,
#tano-container-right #tano-container-right-inner .tano-right-tub-close {
	display: none;
}
#tano-right-area #tano-right-area-inner section,
#tano-right-area #tano-container-right-inner section,
#tano-container-right #tano-right-area-inner section,
#tano-container-right #tano-container-right-inner section {
	overflow: hidden;
	margin: 0 0 10px 0;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#tano-right-area #tano-right-area-inner section,
#tano-right-area #tano-container-right-inner section,
#tano-container-right #tano-right-area-inner section,
#tano-container-right #tano-container-right-inner .tano-xhtml-section {
	margin: 0 0 10px 0;
}

#tano-container-right .tano-right-user-info h3,
#tano-right-area .tano-right-user-info h3 {
	text-align: center;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon,
#tano-right-area #tano-container-right-inner .tano-dl-horizon,
#tano-container-right #tano-right-area-inner .tano-dl-horizon,
#tano-container-right #tano-container-right-inner .tano-dl-horizon {
	float: left;
	margin: 0 auto 8px;
	width: 100%;
	border: 1px solid #999999;
	background: #FFF;
}
.tano-dl-horizon-04,
.tano-dl-horizon-05 {
	background: #fff;
	padding: 10px;
}
.tano-dl-horizon-04 {
	border-bottom: 1px dotted #333;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.tano-dl-horizon-04 dt.tano-icon-cart {
	font-weight: bold;
	font-size: 1.3em;
	padding-left: 25px;
	background: url(/common-tano/img/bg-head-shortcut-price-02.gif) 0 0 no-repeat;
}
.tano-dl-horizon-04 dd dl {
	margin-top: 10px;
}
.tano-dl-horizon-04 dd dl dt {
	float: left;
	width: 60%;
}
.tano-dl-horizon-04 dd dl dd {
	float: right;
	width: 40%;
	text-align: right;
}
#tano-right-area #tano-right-area-inner .tano-right-stage,
#tano-right-area #tano-container-right-inner .tano-right-stage,
#tano-container-right #tano-right-area-inner .tano-right-stage,
#tano-container-right #tano-container-right-inner .tano-right-stage {
	padding: 10px;
	border: 3px solid #d1c48f;
	background: #fffcef;
}
#tano-container-left #tano-container-right #tano-right-area-inner .tano-right-stage,
#tano-container-left #tano-container-right #tano-container-right-inner .tano-right-stage {
	padding-left: 20px;
	padding-right: 20px;
}
#tano-right-area #tano-right-area-inner .tano-right-passchange,
#tano-right-area #tano-container-right-inner .tano-right-passchange,
#tano-container-right #tano-right-area-inner .tano-right-passchange,
#tano-container-right #tano-container-right-inner .tano-right-passchange {
	padding: 10px;
	border: 3px solid #abcb52;
	background: #f3f9dc;
}
#tano-right-area .tano-right-passchange .tano-right-passchange-link,
#tano-container-right .tano-right-passchange .tano-right-passchange-link {
	margin-top: 5px;
}
#tano-right-area .tano-right-passchange .tano-right-passchange-link a,
#tano-container-right .tano-right-passchange .tano-right-passchange-link a {
	padding: 0 0 0 10px;
	background: url(/common-tano/img/icon-arrow-right-green.png) 0 0.3em no-repeat;
}
#wrap #tano-container-right #tano-container-right-inner .tano-right-stage .tano-dl-horizon-05 {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	margin-bottom: 15px;
}
#wrap #tano-container-right #tano-container-right-inner .tano-right-stage .tano-center a {
	display: block;
	width: 170px;
	height: 35px;
	margin: 0 auto;
}
#wrap #tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-center a {
	display: block;
	margin: 10px 0 5px;
	width: 190px;
	height: 30px;
}
.tano-dl-horizon-05 dd span {
	display: block;
	font-weight: bold;
	font-size: 1.3em;
	margin: 5px 0 10px;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon dt,
#tano-right-area #tano-container-right-inner .tano-dl-horizon dt,
#tano-container-right #tano-right-area-inner .tano-dl-horizon dt,
#tano-container-right #tano-container-right-inner .tano-dl-horizon dt {
	float: left;
	padding: 5px 0 5px 8px;
	line-height: 20px;
	white-space: nowrap;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon dt.tano-budget-setting {
	float: none;
	padding: 5px 0 0 8px;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon dt.tano-total-box,
#tano-right-area #tano-container-right-inner .tano-dl-horizon dt.tano-total-box,
#tano-container-right #tano-right-area-inner .tano-dl-horizon dt.tano-total-box,
#tano-container-right #tano-container-right-inner .tano-dl-horizon dt.tano-total-box {
	float: none;
	padding-bottom: 0;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon dt.tano-dt-addwidth6,
#tano-right-area #tano-container-right-inner .tano-dl-horizon dt.tano-dt-addwidth6,
#tano-container-right #tano-right-area-inner .tano-dl-horizon dt.tano-dt-addwidth6,
#tano-container-right #tano-container-right-inner .tano-dl-horizon dt.tano-dt-addwidth6 {
	width: 6.0em;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon dd,
#tano-right-area #tano-container-right-inner .tano-dl-horizon dd,
#tano-container-right #tano-right-area-inner .tano-dl-horizon dd,
#tano-container-right #tano-container-right-inner .tano-dl-horizon dd {
	padding: 5px 8px 5px 0;
	text-align: right;
	line-height: 20px;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon dd.tano-total-box,
#tano-right-area #tano-container-right-inner .tano-dl-horizon dd.tano-total-box,
#tano-container-right #tano-right-area-inner .tano-dl-horizon dd.tano-total-box,
#tano-container-right #tano-container-right-inner .tano-dl-horizon dd.tano-total-box {
	padding-top: 0;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon dd.tano-total-box span,
#tano-right-area #tano-container-right-inner .tano-dl-horizon dd.tano-total-box span,
#tano-container-right #tano-right-area-inner .tano-dl-horizon dd.tano-total-box span,
#tano-container-right #tano-container-right-inner .tano-dl-horizon dd.tano-total-box span {
	white-space: nowrap;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon .tano-cartitem-coupon,
#tano-right-area #tano-container-right-inner .tano-dl-horizon .tano-cartitem-coupon,
#tano-container-right #tano-right-area-inner .tano-dl-horizon .tano-cartitem-coupon,
#tano-container-right #tano-container-right-inner .tano-dl-horizon .tano-cartitem-coupon {
	padding: 5px 8px;
}

#tano-right-area #tano-right-area-inner .tano-dl-horizon .tano-cartitem-coupon p,
#tano-right-area #tano-container-right-inner .tano-dl-horizon .tano-cartitem-coupon p,
#tano-container-right #tano-right-area-inner .tano-dl-horizon .tano-cartitem-coupon p,
#tano-container-right #tano-container-right-inner .tano-dl-horizon .tano-cartitem-coupon p {
	margin-bottom: 0px;
	text-align: left;
}


#tano-right-area #tano-right-area-inner .tano-dl-horizon .tano-cartitem-point,
#tano-right-area #tano-container-right-inner .tano-dl-horizon  .tano-cartitem-point,
#tano-container-right #tano-right-area-inner .tano-dl-horizon  .tano-cartitem-point,
#tano-container-right #tano-container-right-inner .tano-dl-horizon  .tano-cartitem-point {
	padding-top: 0;
}
#tano-right-area #tano-right-area-inner .tano-dotline,
#tano-right-area #tano-container-right-inner .tano-dotline,
#tano-container-right #tano-right-area-inner .tano-dotline,
#tano-container-right #tano-container-right-inner .tano-dotline {
	display: block;
	border-bottom: 1px dotted #CCC;
}
#tano-right-area #tano-right-area-inner .tano-font-bold,
#tano-right-area #tano-container-right-inner .tano-font-bold,
#tano-container-right #tano-right-area-inner .tano-font-bold,
#tano-container-right #tano-container-right-inner .tano-font-bold {
	font-weight: bold;
}
#tano-right-area #tano-right-area-inner .tano-font14,
#tano-right-area #tano-container-right-inner .tano-font14,
#tano-container-right #tano-right-area-inner .tano-font14,
#tano-container-right #tano-container-right-inner .tano-font14 {
	font-size: 14px;
	font-size: 1.4rem;
}
#tano-right-area #tano-right-area-inner .tano-font16,
#tano-right-area #tano-container-right-inner .tano-font16,
#tano-container-right #tano-right-area-inner .tano-font16,
#tano-container-right #tano-container-right-inner .tano-font16 {
	font-size: 16px;
	font-size: 1.6rem;
}
#tano-right-area #tano-right-area-inner .tano-color-red,
#tano-right-area #tano-container-right-inner .tano-color-red,
#tano-container-right #tano-right-area-inner .tano-color-red,
#tano-container-right #tano-container-right-inner .tano-color-red{
	color: #e80000;
}

.tano-big-bold{
	font-weight:bold;
	font-size:1.5em;
}

.tano-color-red-bold{
	font-weight:bold;
	color: #e80000;
}

#tano-right-area #tano-right-area-inner .tano-right-btn,
#tano-right-area #tano-container-right-inner .tano-right-btn,
#tano-container-right #tano-right-area-inner .tano-right-btn,
#tano-container-right #tano-container-right-inner .tano-right-btn {
	margin: 0 0 10px 0;
	vertical-align: top;
}
#tano-right-area #tano-right-area-inner .tano-normargin,
#tano-right-area #tano-container-right-inner .tano-normargin,
#tano-container-right #tano-right-area-inner .tano-normargin,
#tano-container-right #tano-container-right-inner .tano-normargin {
	margin: 0;
}
#tano-right-area #tano-right-area-inner .tano-right-todayitem,
#tano-right-area #tano-container-right-inner .tano-right-todayitem,
#tano-container-right #tano-right-area-inner .tano-right-todayitem,
#tano-container-right #tano-container-right-inner .tano-right-todayitem {
	padding: 0 15px 15px 15px;
	border: 3px solid #ef3c28;
	background: url(/common-tano/img/bg-todayitem-head.gif) 100% 0 no-repeat;
}
#tano-right-area #tano-right-area-inner .tano-right-todayitem .tano-datetime,
#tano-right-area #tano-container-right-inner .tano-right-todayitem .tano-datetime,
#tano-container-right #tano-right-area-inner .tano-right-todayitem .tano-datetime,
#tano-container-right #tano-container-right-inner .tano-right-todayitem .tano-datetime {
	position: relative;
	margin: 0 -15px 5px 0;
	height: 30px;
	font-weight: bold;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
}
#tano-right-area #tano-right-area-inner .tano-right-todayitem img,
#tano-right-area #tano-container-right-inner .tano-right-todayitem img,
#tano-container-right #tano-right-area-inner .tano-right-todayitem img,
#tano-container-right #tano-container-right-inner .tano-right-todayitem img {
	display: block;
	margin: 0 auto 15px auto;
}
#tano-right-area #tano-right-area-inner .tano-right-todayitem p,
#tano-right-area #tano-container-right-inner .tano-right-todayitem p,
#tano-container-right #tano-right-area-inner .tano-right-todayitem p,
#tano-container-right #tano-container-right-inner .tano-right-todayitem p {
	margin: 0 0 10px 0;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	line-height: 100%;
	white-space: nowrap;
}
#tano-right-area #tano-right-area-inner .tano-right-todayitem a,
#tano-right-area #tano-container-right-inner .tano-right-todayitem a,
#tano-container-right #tano-right-area-inner .tano-right-todayitem a,
#tano-container-right #tano-container-right-inner .tano-right-todayitem a {
	display: block;
	padding: 0 0 0 .8em;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.4em;
}
#tano-right-area #tano-right-area-inner .tano-right-stage h3,
#tano-right-area #tano-container-right-inner .tano-right-stage h3,
#tano-container-right #tano-right-area-inner .tano-right-stage h3,
#tano-container-right #tano-container-right-inner .tano-right-stage h3 {
	margin: 0 0 15px 0;
	font-weight: bold;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 24px;
}
#tano-right-area #tano-right-area-inner .tano-right-stage h3 span,
#tano-right-area #tano-container-right-inner .tano-right-stage h3 span,
#tano-container-right #tano-right-area-inner .tano-right-stage h3 span,
#tano-container-right #tano-container-right-inner .tano-right-stage h3 span {
	display: block;
}
#tano-right-area #tano-right-area-inner .tano-right-stage h3 .tano-left-text,
#tano-right-area #tano-container-right-inner .tano-right-stage h3 .tano-left-text,
#tano-container-right #tano-right-area-inner .tano-right-stage h3 .tano-left-text,
#tano-container-right #tano-container-right-inner .tano-right-stage h3 .tano-left-text {
	float: left;
}
#tano-right-area #tano-right-area-inner .tano-right-stage h3 .tano-left-text img,
#tano-right-area #tano-container-right-inner .tano-right-stage h3 .tano-left-text img,
#tano-container-right #tano-right-area-inner .tano-right-stage h3 .tano-left-text img,
#tano-container-right #tano-container-right-inner .tano-right-stage h3 .tano-left-text img {
	margin-right: 8px;
	vertical-align: middle;
}
#tano-right-area #tano-right-area-inner .tano-right-stage h3 .tano-right-text,
#tano-right-area #tano-container-right-inner .tano-right-stage h3 .tano-right-text,
#tano-container-right #tano-right-area-inner .tano-right-stage h3 .tano-right-text,
#tano-container-right #tano-container-right-inner .tano-right-stage h3 .tano-right-text {
	float: right;
}
#tano-right-area #tano-right-area-inner .tano-right-stage p,
#tano-right-area #tano-container-right-inner .tano-right-stage p,
#tano-container-right #tano-right-area-inner .tano-right-stage p,
#tano-container-right #tano-container-right-inner .tano-right-stage p {
	margin: 0 0 8px 0;
	line-height: 1.6em;
}
#tano-right-area #tano-right-area-inner .tano-right-stage .tano-stage-point,
#tano-right-area #tano-container-right-inner .tano-right-stage .tano-stage-point,
#tano-container-right #tano-right-area-inner .tano-right-stage .tano-stage-point,
#tano-container-right #tano-container-right-inner .tano-right-stage .tano-stage-point {
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#tano-right-area #tano-right-area-inner .tano-right-stage .tano-stage-point dt.tano-stage-point-text,
#tano-right-area #tano-container-right-inner .tano-right-stage .tano-stage-point dt.tano-stage-point-text,
#tano-container-right #tano-right-area-inner .tano-right-stage .tano-stage-point dt.tano-stage-point-text,
#tano-container-right #tano-container-right-inner .tano-right-stage .tano-stage-point dt.tano-stage-point-text,
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-stage-cartitem dt.tano-stage-point-text,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-stage-cartitem dt.tano-stage-point-text,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-stage-cartitem dt.tano-stage-point-text,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-stage-cartitem dt.tano-stage-point-text {
	line-height: 15px;
}
#tano-right-area #tano-right-area-inner .tano-right-stage .tano-stage-point dd.tano-stage-point-text,
#tano-right-area #tano-container-right-inner .tano-right-stage .tano-stage-point dd.tano-stage-point-text,
#tano-container-right #tano-right-area-inner .tano-right-stage .tano-stage-point dd.tano-stage-point-text,
#tano-container-right #tano-container-right-inner .tano-right-stage .tano-stage-point dd.tano-stage-point-text,
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-stage-cartitem dd.tano-stage-point-text,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-stage-cartitem dd.tano-stage-point-text,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-stage-cartitem dd.tano-stage-point-text,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-stage-cartitem dd.tano-stage-point-text {
	line-height: 30px;
}
#tano-right-area #tano-right-area-inner .tano-right-stage .tano-stage-point .tano-dotline,
#tano-right-area #tano-container-right-inner .tano-right-stage .tano-stage-point .tano-dotline,
#tano-container-right #tano-right-area-inner .tano-right-stage .tano-stage-point .tano-dotline,
#tano-container-right #tano-container-right-inner .tano-right-stage .tano-stage-point .tano-dotline {
	border-bottom: 1px dotted #333;
}
#tano-right-area #tano-right-area-inner .tano-right-stage h4,
#tano-right-area #tano-container-right-inner .tano-right-stage h4,
#tano-container-right #tano-right-area-inner .tano-right-stage h4,
#tano-container-right #tano-container-right-inner .tano-right-stage h4 {
	margin: 0 0 6px 0;
	font-weight: bold;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo {
	padding: 10px;
	border: 3px solid #efb8a2;
	background: #ffede1;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo-point,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo-point,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo-point,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo-point {
	padding: 0;
	border: none;
	background: none;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo-point .tano-right-cartinfo-inner,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo-point .tano-right-cartinfo-inner,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo-point .tano-right-cartinfo-inner,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo-point .tano-right-cartinfo-inner {
	padding: 10px;
	border: 3px solid #efb8a2;
	background: #ffede1;
}
#tano-container-left #tano-container-right #tano-right-area-inner .tano-right-cartinfo,
#tano-container-left #tano-container-right #tano-container-right-inner .tano-right-cartinfo {
	padding-left: 20px;
	padding-right: 20px;
}
#tano-container-left #tano-container-right #tano-right-area-inner .tano-right-cartinfo-point,
#tano-container-left #tano-container-right #tano-container-right-inner .tano-right-cartinfo-point {
	padding-left: 0;
	padding-right: 0;
}
#tano-container-left #tano-container-right #tano-right-area-inner .tano-right-cartinfo-point .tano-right-cartinfo-inner,
#tano-container-left #tano-container-right #tano-container-right-inner .tano-right-cartinfo-point .tano-right-cartinfo-inner {
	padding-left: 20px;
	padding-right: 20px;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo h3,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo h3,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo h3,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo h3,
#tano-right-area #tano-right-area-inner .tano-right-cartinfo h4,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo h4,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo h4,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo h4 {
	margin: 0 0 10px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo-point h3,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo-point h3,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo-point h3,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo-point h3 {
	margin: 0;
	padding: 4px 0 1px;
	background-color: #efb8a2;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo a,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo a,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo a,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo a {
	clear: both;
	display: block;
	margin: 5px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-stage-catitem,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-stage-catitem,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-stage-catitem,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-stage-catitem {
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-stage-catitem-keep,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-stage-catitem-keep,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-stage-catitem-keep,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-stage-catitem-keep {
	margin-bottom: 0;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-button,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-button,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-button,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-button {
	display: block;
	margin: 0 auto;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-button a,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-button a,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-button a,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-button a {
	width: 170px;
	height: 35px;
	display: block;
	margin-top: 10px;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-item-list,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-item-list,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-item-list,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-item-list {
	margin-bottom: 0;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-item-list p,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-item-list p,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-item-list p,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-item-list p {
	margin-top: 10px;
	padding: 5px 0;
	border-bottom: 1px dotted #CCC;
	font-weight: bold;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-item-list ul li,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-item-list ul li,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-item-list ul li,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-item-list ul li {
	padding: 5px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-item-list ul li a,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-item-list ul li a,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-item-list ul li a,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-item-list ul li a {
	display: block;
	padding: 0 0 0 12px;
	background: url(/common-tano/img/icon-arrow-right-green-03.png) 0 0.45em no-repeat;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo .tano-item-list ul .tano-link a,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo .tano-item-list ul .tano-link a,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo .tano-item-list ul .tano-link a,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-item-list ul .tano-link a {
	float: right;
}
#tano-right-area #tano-right-area-inner .tano-right-cartinfo-point .tano-point-detail,
#tano-right-area #tano-container-right-inner .tano-right-cartinfo-point .tano-point-detail,
#tano-container-right #tano-right-area-inner .tano-right-cartinfo-point .tano-point-detail,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo-point .tano-point-detail {
	padding-left: 8px;
	font-size: 10px;
	font-size: 1rem;
	line-height: 1.67;
	text-align: left;
	clear: both;
}
#tano-right-area #tano-right-area-inner .tano-right-budget,
#tano-right-area #tano-container-right-inner .tano-right-budget,
#tano-container-right #tano-right-area-inner .tano-right-budget,
#tano-container-right #tano-container-right-inner .tano-right-budget {
	padding: 10px;
	border: 3px solid #b2b2b2;
	background: #f7f7f7;
}
#tano-container-left #tano-container-right #tano-right-area-inner .tano-right-budget,
#tano-container-left #tano-container-right #tano-container-right-inner .tano-right-budget {
	padding-left: 20px;
	padding-right: 20px;
}
#tano-right-area #tano-right-area-inner .tano-right-budget h3,
#tano-right-area #tano-container-right-inner .tano-right-budget h3,
#tano-container-right #tano-right-area-inner .tano-right-budget h3,
#tano-container-right #tano-container-right-inner .tano-right-budget h3 {
	font-weight: bold;
	margin: 0 0 8px 0;
	padding: 0 0 0 5px;
	border-left: 4px solid #358000;
	clear: both;
}
#tano-right-area #tano-right-area-inner .tano-right-budget .tano-stage-monthlybudget,
#tano-right-area #tano-container-right-inner .tano-right-budget .tano-stage-monthlybudget,
#tano-container-right #tano-right-area-inner .tano-right-budget .tano-stage-monthlybudget,
#tano-container-right #tano-container-right-inner .tano-right-budget .tano-stage-monthlybudget {
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#tano-right-area #tano-right-area-inner .tano-right-budget dt,
#tano-right-area #tano-right-area-inner .tano-right-budget dd,
#tano-right-area #tano-container-right-inner .tano-right-budget dt,
#tano-right-area #tano-container-right-inner .tano-right-budget dd,
#tano-container-right #tano-right-area-inner .tano-right-budget dt,
#tano-container-right #tano-right-area-inner .tano-right-budget dd,
#tano-container-right #tano-container-right-inner .tano-right-budget dt,
#tano-container-right #tano-container-right-inner .tano-right-budget dd {
	line-height: 1.6em;
}
#tano-right-area #tano-right-area-inner .tano-right-budget .tano-dt-addwidth7,
#tano-right-area #tano-container-right-inner .tano-right-budget .tano-dt-addwidth7,
#tano-container-right #tano-right-area-inner .tano-right-budget .tano-dt-addwidth7,
#tano-container-right #tano-container-right-inner .tano-right-budget .tano-dt-addwidth7 {
	width: 7.0em;
}
#tano-right-area #tano-right-area-inner .tano-right-budget .tano-dt-addpadding7,
#tano-right-area #tano-container-right-inner .tano-right-budget .tano-dt-addpadding7,
#tano-container-right #tano-right-area-inner .tano-right-budget .tano-dt-addpadding7,
#tano-container-right #tano-container-right-inner .tano-right-budget .tano-dt-addpadding7 {
	padding-left: 7.0em;
}
#tano-right-area #tano-right-area-inner .tano-right-budget .tano-dt-addwidth10,
#tano-right-area #tano-container-right-inner .tano-right-budget .tano-dt-addwidth10,
#tano-container-right #tano-right-area-inner .tano-right-budget .tano-dt-addwidth10,
#tano-container-right #tano-container-right-inner .tano-right-budget .tano-dt-addwidth10 {
	width: 10.0em;
}
#tano-right-area #tano-right-area-inner .tano-right-budget .tano-dt-addwidth11,
#tano-right-area #tano-container-right-inner .tano-right-budget .tano-dt-addwidth11,
#tano-container-right #tano-right-area-inner .tano-right-budget .tano-dt-addwidth11,
#tano-container-right #tano-container-right-inner .tano-right-budget .tano-dt-addwidth11 {
	width: 11.0em;
}
#tano-right-area #tano-right-area-inner .tano-right-budget .tano-dt-addpadding10,
#tano-right-area #tano-container-right-inner .tano-right-budget .tano-dt-addpadding10,
#tano-container-right #tano-right-area-inner .tano-right-budget .tano-dt-addpadding10,
#tano-container-right #tano-container-right-inner .tano-right-budget .tano-dt-addpadding10 {
	padding-left: 10em;
}
#tano-right-area #tano-right-area-inner .tano-right-budget .tano-dotline,
#tano-right-area #tano-container-right-inner .tano-right-budget .tano-dotline,
#tano-container-right #tano-right-area-inner .tano-right-budget .tano-dotline,
#tano-container-right #tano-container-right-inner .tano-right-budget .tano-dotline {
	margin: 0 0 5px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-budget .tano-2line,
#tano-right-area #tano-container-right-inner .tano-right-budget .tano-2line,
#tano-container-right #tano-right-area-inner .tano-right-budget .tano-2line,
#tano-container-right #tano-container-right-inner .tano-right-budget .tano-2line {
	line-height: 30px;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info,
#tano-right-area #tano-container-right-inner .tano-right-user-info,
#tano-container-right #tano-right-area-inner .tano-right-user-info,
#tano-container-right #tano-container-right-inner .tano-right-user-info {
	padding: 9px 5px 5px;
	border: 3px solid #f67f0b;
	background: #fffaf2;
}
#tano-container-left #tano-container-right #tano-right-area-inner .tano-right-user-info,
#tano-container-left #tano-container-right #tano-container-right-inner .tano-right-user-info {
	padding-left: 15px;
	padding-right: 15px;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info h3,
#tano-right-area #tano-container-right-inner .tano-right-user-info h3,
#tano-container-right #tano-right-area-inner .tano-right-user-info h3,
#tano-container-right #tano-container-right-inner .tano-right-user-info h3 {
	margin: 0 0 5px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info .tano-left-text,
#tano-right-area #tano-container-right-inner .tano-right-user-info .tano-left-text,
#tano-container-right #tano-right-area-inner .tano-right-user-info .tano-left-text,
#tano-container-right #tano-container-right-inner .tano-right-user-info .tano-left-text {
	display: block;
	float: left;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info .tano-right-btn,
#tano-right-area #tano-container-right-inner .tano-right-user-info .tano-right-btn,
#tano-container-right #tano-right-area-inner .tano-right-user-info .tano-right-btn,
#tano-container-right #tano-container-right-inner .tano-right-user-info .tano-right-btn {
	float: right;
	margin: 0;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info section,
#tano-right-area #tano-container-right-inner .tano-right-user-info section,
#tano-container-right #tano-right-area-inner .tano-right-user-info section,
#tano-container-right #tano-container-right-inner .tano-right-user-info section {
	margin: 0 0 5px;
	border: 1px solid #f67f0b;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info section h4,
#tano-right-area #tano-container-right-inner .tano-right-user-info section h4,
#tano-container-right #tano-right-area-inner .tano-right-user-info section h4,
#tano-container-right #tano-container-right-inner .tano-right-user-info section h4 {
	padding: 5px 4px 5px 8px;
	font-weight: bold;
	color: #fff;
	background: #f67f0b;
	background: -moz-linear-gradient(top, #f67f0b 0%, #f4a354 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f67f0b), color-stop(100%, #f4a354)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f67f0b 0%, #f4a354 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f67f0b 0%, #f4a354 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f67f0b 0%, #f4a354 100%); /* IE10+ */
	background: linear-gradient(to bottom, #f67f0b 0%, #f4a354 100%); /* W3C */
}
#tano-right-area #tano-right-area-inner .tano-right-user-info section h4 .tano-accordion-icon,
#tano-right-area #tano-container-right-inner .tano-right-user-info section h4 .tano-accordion-icon,
#tano-container-right #tano-right-area-inner .tano-right-user-info section h4 .tano-accordion-icon,
#tano-container-right #tano-container-right-inner .tano-right-user-info section h4 .tano-accordion-icon {
	display: block;
	background: url(/common-tano/img/btn-close-01.gif) 152px 0 no-repeat;
	cursor: pointer;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info section ul,
#tano-right-area #tano-container-right-inner .tano-right-user-info section ul,
#tano-container-right #tano-right-area-inner .tano-right-user-info section ul,
#tano-container-right #tano-container-right-inner .tano-right-user-info section ul {
	padding: 8px 10px 3px;
	background: #fff;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info section ul li,
#tano-right-area #tano-container-right-inner .tano-right-user-info section ul li,
#tano-container-right #tano-right-area-inner .tano-right-user-info section ul li,
#tano-container-right #tano-container-right-inner .tano-right-user-info section ul li {
	margin: 0 0 5px;
}
#tano-right-area #tano-right-area-inner .tano-right-user-info section ul li a,
#tano-right-area #tano-container-right-inner .tano-right-user-info section ul li a,
#tano-container-right #tano-right-area-inner .tano-right-user-info section ul li a,
#tano-container-right #tano-container-right-inner .tano-right-user-info section ul li a {
	display: block;
	padding: 0 0 0 12px;
	background: url(/common-tano/img/icon-arrow-right-green-03.png) 0 0.45em no-repeat;
}
#tano-right-area #tano-right-area-inner .tano-right-auction,
#tano-right-area #tano-container-right-inner .tano-right-auction,
#tano-container-right #tano-right-area-inner .tano-right-auction,
#tano-container-right #tano-container-right-inner .tano-right-auction {
	padding: 5px 5px 10px;
	border: 3px solid #f6c64d;
}
#tano-right-area #tano-right-area-inner .tano-right-auction ul li,
#tano-right-area #tano-container-right-inner .tano-right-auction ul li,
#tano-container-right #tano-right-area-inner .tano-right-auction ul li,
#tano-container-right #tano-container-right-inner .tano-right-auction ul li {
	margin-top: 5px;
	padding: 0 5px;
}
#tano-right-area #tano-right-area-inner .tano-right-auction ul li a,
#tano-right-area #tano-container-right-inner .tano-right-auction ul li a,
#tano-container-right #tano-right-area-inner .tano-right-auction ul li a,
#tano-container-right #tano-container-right-inner .tano-right-auction ul li a {
	display: block;
	padding: 0 0 0 12px;
	background: url(/common-tano/img/icon-arrow-right-green-03.png) 0 0.45em no-repeat;
}
#tano-right-area #tano-right-area-inner .tano-right-support,
#tano-right-area #tano-container-right-inner .tano-right-support,
#tano-container-right #tano-right-area-inner .tano-right-support,
#tano-container-right #tano-container-right-inner .tano-right-support {
	border: 1px solid #999;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	background-color: #f4f4f4;
}
#tano-right-area #tano-right-area-inner .tano-right-support h3,
#tano-right-area #tano-container-right-inner .tano-right-support h3,
#tano-container-right #tano-right-area-inner .tano-right-support h3,
#tano-container-right #tano-container-right-inner .tano-right-support h3 {
	height: 30px;
	padding: 0 0 0 35px;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	background: #ddd url(/common-tano/img/icon-supportmenu-title.png) 8px 7px no-repeat;
	line-height: 30px;
}
#tano-right-area #tano-right-area-inner .tano-right-support ul,
#tano-right-area #tano-container-right-inner .tano-right-support ul,
#tano-container-right #tano-right-area-inner .tano-right-support ul,
#tano-container-right #tano-container-right-inner .tano-right-support ul {
	padding: 8px 10px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-support ul li,
#tano-right-area #tano-container-right-inner .tano-right-support ul li,
#tano-container-right #tano-right-area-inner .tano-right-support ul li,
#tano-container-right #tano-container-right-inner .tano-right-support ul li {
	margin: 0 0 8px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-support ul li a,
#tano-right-area #tano-container-right-inner .tano-right-support ul li a,
#tano-container-right #tano-right-area-inner .tano-right-support ul li a,
#tano-container-right #tano-container-right-inner .tano-right-support ul li a {
	display: block;
	padding: 0 0 0 12px;
	background: url(/common-tano/img/icon-arrow-right-green-03.png) 0 0.45em no-repeat;
}
#tano-right-area #tano-right-area-inner .tano-right-checkitem h3,
#tano-right-area #tano-container-right-inner .tano-right-checkitem h3,
#tano-container-right #tano-right-area-inner .tano-right-checkitem h3,
#tano-container-right #tano-container-right-inner .tano-right-checkitem h3 {
	height: 27px;
	padding: 6px 0 0 35px;
	background: url(/common-tano/img/icon-checkitem-title.png) 2px 2px no-repeat;
	border-bottom: 1px dotted #ccc;
	font-weight: bold;
}
#tano-right-area #tano-right-area-inner .tano-right-checkitem ul,
#tano-right-area #tano-container-right-inner .tano-right-checkitem ul,
#tano-container-right #tano-right-area-inner .tano-right-checkitem ul,
#tano-container-right #tano-container-right-inner .tano-right-checkitem ul {
	margin-bottom: 10px;
}
#tano-right-area #tano-right-area-inner .tano-right-checkitem ul li,
#tano-right-area #tano-container-right-inner .tano-right-checkitem ul li,
#tano-container-right #tano-right-area-inner .tano-right-checkitem ul li,
#tano-container-right #tano-container-right-inner .tano-right-checkitem ul li {
	padding: 10px 25px 10px 25px;
	border-bottom: 1px dotted #ccc;
}
#tano-right-area #tano-right-area-inner .tano-right-checkitem ul li img,
#tano-right-area #tano-container-right-inner .tano-right-checkitem ul li img,
#tano-container-right #tano-right-area-inner .tano-right-checkitem ul li img,
#tano-container-right #tano-container-right-inner .tano-right-checkitem ul li img {
	display: block;
	margin: 0 0 10px 0;
	border: 1px solid #d4d4d4;
}
#tano-right-area #tano-right-area-inner .tano-right-checkitem ul li a,
#tano-right-area #tano-container-right-inner .tano-right-checkitem ul li a,
#tano-container-right #tano-right-area-inner .tano-right-checkitem ul li a,
#tano-container-right #tano-container-right-inner .tano-right-checkitem ul li a {
	display: block;
	margin: 0 0 10px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-checkitem ul li div,
#tano-right-area #tano-container-right-inner .tano-right-checkitem ul li div,
#tano-container-right #tano-right-area-inner .tano-right-checkitem ul li div,
#tano-container-right #tano-container-right-inner .tano-right-checkitem ul li div {
	text-align: center;
}
#tano-right-area #tano-right-area-inner,
#tano-container-right #tano-right-area-inner {
	padding: 0;
}
.tano-target-blank-link {
	background: url(/common-tano/img/icon-cart-dialog-note.png) 0 0.3em no-repeat;
	padding-left: 15px;
}
/*		・パンクズ内設定 */
.tano-block-bread-top {
	margin: 0;
}
.tano-block-bread-bottom {
	margin: 0 0 5px 0;
}
.tano-block-bread-crumbs {
	clear: both;
	font-size: 10px;
	font-size: 1.0rem;
	margin: 8px 0 5px 0;
}
#wrap .tano-block-bread-crumbs ul {
	padding: 5px 25px;
	background: #eaeaea url(/common-tano/img/icon-bread-crumbs-home-ar.gif) 10px 7px no-repeat;
}
#wrap .tano-block-bread-crumbs ul li {
	float: left;
	margin: 0 0 0 6px;
	list-style: none;
	white-space: nowrap;
}
.tano-block-bread-crumbs li:last-child {
	margin: 0;
}
.tano-block-bread-crumbs li a,
.tano-block-bread-crumbs li .tano-no-link {
	padding: 2px 15px 1px 0;
	min-height: 19px;
	background: url(/common-tano/img/bg-breadcrumbs-right.gif) right center no-repeat;
	text-decoration:none;
}
.tano-block-bread-crumbs li a,
.tano-block-bread-crumbs li a:visited{
	color: #1a5fe7;
	text-decoration:none;
}
.tano-block-bread-crumbs li a:hover,
.tano-block-bread-crumbs li a:active{
	color: #1a5fe7;
	text-decoration:underline;
}

/* tano-column2-wrap */
#tano-main-area .tano-column2-wrap-c01,
#tano-main-area .tano-column2-wrap-c02 {
	width:460px;
}
#tano-main-area .tano-column2-wrap-c01 {
	margin:50px auto 50px;
}
#tano-main-area .tano-column2-wrap-c02 {
	margin-top: 0;
}
#tano-main-area .tano-column2-wrap-c01 .tano-column-block-01 {
	width:88px;
	float:left;
}
#tano-main-area .tano-column2-wrap-c01 .tano-column-block-02 {
	width:357px;
	float:right;
}
#tano-main-area .tano-link-list-03 li a.tano-link-blank-01 {
	padding: 0 0 0 15px;
	background:url(/images/mypage/icon-blank.gif) 0 center no-repeat;
}
/*    ・フッタ内設定 */
/* ３．コンテンツエリア
---------------------------------------------------------------------------------- */
/*  ・標準エレメント設定（hX、p、ul/ol/li、dl/dt/dd、など） */

.tano-float-right {
	float: right;
}
.tano-float-left {
	float: left;
}
.tano-float-none {
	float: none;
}
a.tano-arrow-green {
	padding: 0 0 0 10px;
	background: url(/common-tano/img/icon-arrow-right-green.png) 0 0.4em no-repeat;
}
a.tano-arrow-green-01 {
	padding: 0 0 0 10px;
	background: url(/common-tano/img/icon-arrow-right-green-04.png) 0 3px no-repeat;
}
a.tano-target-blank {
	padding: 0 0 0 20px;
	background: url(/common-tano/img/icon-target-blank.gif) 0 5px no-repeat;
}
/*  ・特殊エレメント設定（個別定義されるもの、リッチコンテンツなど） */

.tano-input-text/*,
.tano-error-item */ {
	float:left;
	line-height:17px;
	margin-bottom:20px;
}
.tano-input-text {
	width:307px;
	padding:3px 0 3px 5px;
	height:17px;
}
.tano-login-box input.tano-input-text.tano-password {
	margin-bottom:35px;
}
.tano-login-box input.tano-input-text:focus {
	outline:none;
}
/* 汎用ダイヤログ */
.tano-dialogue {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 20;
	width: 400px;
	height: 200px;
	margin-top: 0;
	margin-left: 0;
	background: #FFF;
	border: 1px solid #d4d4d4;
	text-align: center;
	box-shadow: 1px 1px 2px #BBB;
	-moz-box-shadow: 1px 1px 2px #BBB;
	-webkit-box-shadow: 1px 1px 2px #BBB;
}
.tano-dialogue dl {
	padding: 80px 10px 10px 10px;
}
.tano-dialogue dl dt {
	margin: 0 0 30px 0;
	font-size: 24px;
	font-size: 2.4rem;
}
.tano-dialogue dl dd {
	margin: 0 0 20px 0;
	font-size: 14px;
	font-size: 1.4rem;
}
/* 131220 fukuoka add
---------------------------------------------------------------------------------- */
#tano-container-right #tano-container-right-inner .tano-dl-horizon.tano-margin-type-01,
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-stage-cartitem dl.tano-margin-type-01 {
	margin: 0 auto;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon dt.tano-point {
	width:9em;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon-02 {
	float: left;
	margin: 0 auto 15px auto;
	padding: 5px 0;
	width: 100%;
	background:#ffebed;
	border-top: 1px dotted #ff3c4a;
	border-bottom: 1px dotted #ff3c4a;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon-02 dt {
	float: left;
	padding: 0 0 0 8px;
	width: 5.0em;
	line-height:1.3;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon-02 dt span.tano-indent-text {
	margin-left:-10px;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon-02 dd {
	padding: 0.5em 10px 0 0;
	text-align: right;
}
#tano-right-area #tano-right-area-inner .tano-dl-horizon .tano-free-send,
#tano-right-area #tano-container-right-inner .tano-dl-horizon .tano-free-send,
#tano-container-right #tano-right-area-inner .tano-dl-horizon .tano-free-send,
#tano-container-right #tano-container-right-inner .tano-dl-horizon .tano-free-send {
	margin: 0 10px 5px;
	padding: 2px;
	background-color: #f7e7e7;
	font-weight: bold;
	text-align:center;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon .tano-cartitem-btn {
	padding: 0 0 5px;
	text-align: center;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon-03 {
	float: left;
	margin: 10px auto;
	padding: 5px 0 0 0;
	width: 100%;
	background: #FFF;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon-03 dt {
	padding: 5px 0 0 5px;
}
#tano-container-right #tano-container-right-inner .tano-dl-horizon-03 dd {
	padding: 5px 10px 10px 0;
	text-align: right;
}
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-button-02 {
	display: block;
	margin: 10px auto 5px auto;
}
#tano-container-right #tano-container-right-inner .tano-right-cartinfo .tano-button-02 a {
	display: block;
	height: 35px;
	margin-bottom: 5px;
}
#tano-right-area #tano-right-area-inner .tano-right-caution-area,
#tano-right-area #tano-container-right-inner .tano-right-caution-area,
#tano-container-right #tano-right-area-inner .tano-right-caution-area,
#tano-container-right #tano-container-right-inner .tano-right-caution-area {
	padding: 10px;
	background: #f8f8f8;
	border:3px solid #ccc;
}
#tano-container-left #tano-container-right #tano-right-area-inner .tano-right-caution-area,
#tano-container-left #tano-container-right #tano-container-right-inner .tano-right-caution-area {
	padding-left: 20px;
	padding-right: 20px;
	word-break: normal;
}
#tano-right-area #tano-right-area-inner .tano-right-caution-area h3,
#tano-right-area #tano-container-right-inner .tano-right-caution-area h3,
#tano-container-right #tano-right-area-inner .tano-right-caution-area h3,
#tano-container-right #tano-container-right-inner .tano-right-caution-area h3 {
	font-size: 15px;
	font-size: 1.5rem;
}
#tano-right-area #tano-right-area-inner .tano-right-caution-area h4,
#tano-right-area #tano-container-right-inner .tano-right-caution-area h4,
#tano-container-right #tano-right-area-inner .tano-right-caution-area h4,
#tano-container-right #tano-container-right-inner .tano-right-caution-area h4 {
	margin-top: 10px;
}
#tano-right-area #tano-right-area-inner .tano-right-caution-area .tano-caution-list,
#tano-right-area #tano-container-right-inner .tano-right-caution-area .tano-caution-list,
#tano-container-right #tano-right-area-inner .tano-right-caution-area .tano-caution-list,
#tano-container-right #tano-container-right-inner .tano-right-caution-area .tano-caution-list {
	margin: 5px 0;
}
#tano-right-area #tano-right-area-inner .tano-right-caution-area .tano-background-line-01,
#tano-right-area #tano-container-right-inner .tano-right-caution-area .tano-background-line-01,
#tano-container-right #tano-right-area-inner .tano-right-caution-area .tano-background-line-01,
#tano-container-right #tano-container-right-inner .tano-right-caution-area .tano-background-line-01 {
	padding-bottom: 10px;
}

/* 20131225 content-bottom add */
#tano-main-area .tano-seo-text {
	line-height:1.5em;
}
#tano-main-area .tano-seo-text .tano-color-red {
	color:#e50000;
}
#tano-main-area .tano-seo-link-block .tano-column-3-wrap-a-01 {
	width:720px;
	margin-top:20px;
}
#tano-main-area .tano-seo-link-block .tano-column-3-wrap-a-01 .tano-column-block-01 {
	width:233px;
	float:left;
	padding-right:10px;
}
#tano-main-area .tano-seo-link-block .tano-column-3-wrap-a-01 .tano-column-block-01.tano-last-child {
	padding-right:0;
}
#tano-main-area .tano-seo-link-block .tano-column-3-wrap-a-01 .tano-column-block-01 img {
	vertical-align:top;
}
#tano-main-area .tano-seo-link-block .tano-column-3-wrap-a-01 .tano-column-block-01 .tano-disc-text {
	margin-top:5px;
}
.tano-link-bottom-block,
.tano-seo-link-block {
	margin-top: 10px;
}
.tano-seo-text {
	margin-top: 10px;
}
.tano-link-bottom-block {
	overflow: hidden;
	padding: 12px 20px;
	border: 1px solid #ccc;
}
.tano-seo-link-text-block {
	overflow: hidden;
	padding: 12px 20px;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
}
.tano-link-bottom-block .tano-link-bottom-block-inner,
.tano-seo-link-text-block .tano-seo-link-text-block-inner {
	margin-top: -20px;
}
.tano-link-bottom-block dl dt,
.tano-seo-link-text-block dl dt {
	margin: 20px 0 10px;
	color: #696969;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}
.tano-link-bottom-block dl dd ul li,
.tano-seo-link-text-block dl dd ul li {
	display: inline-block;
	margin: 3px 10px 0 0;
	padding: 0 0 0 10px;
	background: url(/common-tano/img/icon-arrow-right-green.png) 0 0.35em no-repeat;
	vertical-align: top;
}
*+html .tano-link-bottom-block dl dd ul li,
*+html .tano-seo-link-text-block dl dd ul li {
	display: inline;
	height: 1%;
}
* html .tano-link-bottom-block dl dd ul li,
* html .tano-seo-link-text-block dl dd ul li {
	display: inline;
	height: 1%;
}
.tano-cursor-pointer {
	cursor: pointer;
}
.tano-narrowing-category-list:last-child {
	margin-bottom: 5px;
}
/*---------jscrollpane---------*/

.tano-jsp-container {
	overflow: hidden;
	position: relative;
}
.tano-jsp-pane {
	position: absolute;
}
.tano-jsp-vertical-bar {
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	background: red;
}
.tano-jsp-horizontal-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: red;
}
.tano-jsp-cap {
	display: none;
}
.tano-jsp-horizontal-bar .tano-jsp-cap {
	float: left;
}
.tano-jsp-track {
	background: #f2f2f2;
	position: relative;
}
.tano-jsp-drag {
	background: #bbbbbb;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}
.tano-jsp-horizontal-bar .tano-jsp-track,
.tano-jsp-horizontal-bar .tano-jsp-drag {
	float: left;
	height: 100%;
}
.tano-jsp-arrow {
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}
.tano-jsp-arrow.tano-jsp-disabled {
	cursor: default;
	background: #80808d;
}
.tano-jsp-vertical-bar .tano-jsp-arrow {
	height: 16px;
}
.tano-jsp-horizontal-bar .tano-jsp-arrow {
	width: 16px;
	float: left;
	height: 100%;
}
.tano-jsp-vertical-bar .tano-jsp-arrow:focus {
	outline: none;
}
.tano-jsp-corner {
	background: #eeeef4;
	float: left;
	height: 100%;
}
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .tano-jsp-corner {
	margin: 0 -3px 0 0;
}
ul.tano-search-suggest-box {
	background-color: white;
	border: 1px solid #7799bb;
	list-style: none outside none;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 1000;
	text-align:left;
	cursor:pointer;
	display:none;
}

ul.tano-search-suggest-box li {
	border: 0 solid #7799bb;
	color: #000000;
	font-size: 14px;
	height: auto ;
	line-height: 1;
	margin: 0;
	overflow: hidden;
	padding: 3px 5px;
	position: relative;
	text-align: left;
	white-space: nowrap;
}
ul.tano-search-suggest-box li.tano-search-suggest-box-hover {
	background-color: #3366cc;
	color: #ffffff;
	text-decoration: none;
}
input.tano-readonly-text-box{
	background-color:#FFFFFF;
	color:#000000;
	border-color:#b4b3b1;
}
form label img {
	pointer-events: none;
}
@-moz-document url-prefix() {
	form label img {
		pointer-events: auto;
	}
}
/*-------新規部分 ---------*/
.tano-cart-pop {
position: absolute;
right:5px;
top: 60px;
background-color: #fff;
background-image: none;
padding: 0;
width: 320px;
font-size: 12px;
box-shadow: 3px 3px 5px #aaa;
}
.tano-cart-inner li.tano-itemrecord {
/* font-size: 10px; */
clear: both;
/*height: 85px;*/
border-bottom: 3px solid #BFBFBF;
}
.tano-cart-inner li.tano-itemrecord a {
background-color: #fff;
color: #000;
padding: 0;
text-align:left;
display: block;
}
.tano-cart-inner li.tano-itemrecord span.tano-info span.tano-name {
letter-spacing: 0.1em;
line-height: 100%;
display: block;
padding-bottom: 10px;
}
.tano-cart-inner li.tano-itemrecord a:hover span.tano-info span.tano-name {
color: #20acec;
}
.tano-cart-inner li.tano-itemrecord span.tano-info span.tano-pricefont {
padding-top: 10px;
float: right;
display: block;
color: #000;
font-size: 15px;
font-weight: bold;
text-align: right;
}
.tano-cart-inner li.tano-itemrecord span.tano-info span.tano-qty {
padding-top: 10px;
float: left;
display: block;
}
.tano-cart-inner li.tano-itemrecord span.tano-info {
padding: 10px 10px 10px 0;
vertical-align: top;
display:block;
overflow:hidden;
position:relative;
}
.tano-cart-inner li.tano-itemrecord span.tano-itemimage img {
width: 50px;
height: 50px;
}
.tano-cart-inner li.tano-itemrecord span.tano-itemimage {
width: 50px;
height: 50px;
padding: 10px;
background: white;
float: left;
}
.tano-cart-inner .tano-separator {
padding-top: 0;
border-bottom: 1px dotted #BFBFBF;
display: block;
}
.tano-cart-inner div.tano-cartdetail {
padding:10px 5px;
position: relative;
}
.tano-cart-inner div.tano-cart-watch{
overflow:hidden;
padding:10px 0 10px 10px;;
}
.tano-cart-inner div.tano-cart-watch .tano-cartdetailank img{
}
a.tano-cartdetailank.tano-select {
    display: block;
    float: left;
}
.tano-cart-inner div.tano-cart-watch .tano-coupon-tekiyou {
    vertical-align : baseline;
    margin-left : 15px;
    border-style : solid;
    border-width : 1px;
    padding : 2px;
    font-size: 10px;
    border-color : #e80000;
    color: #e80000;
    display: block;
    float: left;
}
.tano-kago-naka div.tano-sumtano-price {
font-size: 10px;
font-weight:bold;
float:right;
}
.tano-cart-pop div.tano-sumtano-price span.tano-without-tax-price {
padding-left:5px;
font-size: 20px;
}
.tano-kago-naka div.tano-sumtano-price span.tano-without-tax {
font-size: 12px;
}
.tano-kago-naka div.tano-cartListDiv span.tano-without-tax {
font-size: 11px;
}
#tano-head-bottom a.tano-cartdetail{
padding-top:10px;
}
#tano-head-bottom a.tano-cartdetail span{
display:block;
text-align: center;
padding: 5px 0;
color: #000;
font-size: 15px;
font-weight: bold;
border-bottom: 1px solid #BFBFBF;
}
#tano-head-bottom a.tano-cartdetail:hover{
text-decoration:none;
}
/*---------20150908 カート部分編集ここまで---------*/
.tano-head-margin-top-15 {
margin-top:15px;
}

.tano-item-count{
display:inline-block;
*display: inline;
*zoom: 1;
}
body #tano-head-bottom .tano-cart-2column .tano-right,body #tano-head-bottom .tano-cart-2column .tano-right-gift,
body #tano-head-bottom .tano-right dl,body #tano-head-bottom .tano-right-gift dl{
height:auto;
}
.tano-cart-pop{
z-index:1000;
}
.tano-cart-head-z-index{
	z-index: 1;
}

/*---------20151126 おひとり様X点まで表示対応 ---------*/
#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p0 {
font-size: 11px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p1 {
font-size: 11px;
margin-left:220px;
text-align: left;
border-right: 0px;
line-height: 15px;
height: 10px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p2 {
font-size: 11px;
margin-left: 70px;
text-align: left;
border-right: 30px;
line-height: 15px;
height: 10px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p3 {
font-size: 11px;
margin-left: -20px;
text-align: left;
border-right: 30px;
line-height: 15px;
height: 10px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p3-2 {
font-size: 11px;
margin-left: -120px;
margin-right: 80px;
text-align: left;
border-right: 50px;
line-height: 15px;
height: 10px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p5 {
font-size: 11px;
margin-right: 160px;
text-align: right;
border-right: 0px;
line-height: 15px;
height: 10px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p5-2 {
font-size: 11px;
margin-right:10px;
text-align: right;
border-right: 0px;
line-height: 15px;
height: 10px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p5-3 {
font-size: 11px;
margin-right: 65px;
text-align: right;
border-right: 0px;
line-height: 15px;
height: 10px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p7 {
font-size: 11px;
margin-left: 50px;
text-align: left;
border-right: 30px;
line-height: 15px;
height: 10px;
}
#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p8 {
font-size: 11px;
margin-top: -7px;
text-align: center;
}
#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p9 {
font-size: 11px;
margin-left: 0px;
padding-right: 0px;
}
#tano-container-left #tano-content-top #tano-selling-items .tano-seigen-count-p9{
font-size: 11px;
margin-left: 0px;
padding-right: 0px;
position: absolute;
bottom:0px;
}
#tano-container-left #tano-content-top #tano-ptanorank-items .tano-seigen-count-p9 {
font-size: 11px;
margin-left: 0px;
position: absolute;
bottom:-20px;
left:0px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p11 {
font-size: 11px;
margin: 0 0 0 0;
padding: 0 0 0 0;
text-align: right;
border-right: 0px;
}

#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p12 {
font-size: 11px;
margin-left: 10px;
padding: 0 0 0 0;
text-align: left;
border-right: 0px;
}
#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p13 {
font-size: 11px;
margin-left: 10px;
margin-top: 10px;
padding: 0 0 0 0;
text-align: right;
width: 530px;
border-right: 0px;
}
#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p14 {
font-size: 11px;
margin-left: 10px;
padding: 0 0 0 0;
text-align: right;
width: 350px;
border-right: 0px;
}
#tano-container-left #tano-content-top #tano-main-area .tano-seigen-count-p15 {
font-size: 11px;
margin: 10px 0 0 0;
padding: 0 0 0 0;
text-align: right;
border-right: 0px;
}

/*---------20160316 種別トップ調整---------*/
.tano-h3-type-01.noblock{
	position: relative;
	display: block;
	padding: 10px 0 10px 54px;
}
.tano-h3-type-01.noblock a{
	position:inherit;
	display: inline;
	padding: 0;
}
.tano-h3-type-01.noblock a img{
	top: -14px;
	left: -50px;
}

/* recomend add 160328*/
.tano-caroucel-window .tano-item-box div .tano-not-cartin {
	padding-top: 46px;
}
.tano-caroucel-window .tano-item-box div .tano-sales-end {
	padding-top: 27px;
}
/* 【WB-020(2)】Startトップ改修／SEOリンク削除／GIFテキストバナー枠追加対応 */
#tano-campaign-area .tano-campain-gif-banner{
	margin-bottom: 8px;
}
/* 【WB-020(2)】Endトップ改修／SEOリンク削除／GIFテキストバナー枠追加対応 */
/* 【SI-250】Start TOP画面にインデックスDLリンク追加 */
/* btn pdf icon */
#tano-left-area-inner .btn-pdf-icon {
	color: #484848!important;
	background: url(/common-tano/img/icon_pdf.png) 5px center no-repeat!important;
}
/* 【SI-250】End TOP画面にインデックスDLリンク追加 */