@charset "Shift_JIS";

/* -----------------------------------------------------------
CSS Information

Site URL:       https://www.cosme.net/product/product_id/*
File name:      product.css
Created:        2010-04-15
by Author Style Info: product内共通ファイル
----------------------------------------------------------- */

/* -----------------------------------------------------------
Table of Contents
 * product common AD
   -- #main for AD (stickyAD)
   -- #sub-inr for stickyAD
 * product common
   -- imp-billboard
   -- product-sbm
   -- product-info
   -- product-navi
   -- product-bottom-navi
   -- product-footer-bread

 * product main modules
   -- product-cmn-pagetop
   -- product-recommend-item
   -- product-relation-link
   -- product-for-brand
   -- product-qa-list
   -- product-limit-search
   -- mod-pdt-cdtn
   -- product-sort
   -- product-review-navi
   -- product-display#main
   -- product-review-list
   -- product-paging-simple
   -- #main product-inst-qa
   -- #main product-inst-blog
   -- #main product-inst-review
   -- #main product-inst-newphoto

 * product side modules
   -- #sub product-inst-ranking
   -- #sub product-inst-present
   -- #sub product-inst-newblog
   -- #sub product-inst-qa
   -- #sub product-inst-blog
   -- #sub product-inst-review
   -- #sub product-inst-newphoto

 * product-top
 * bnr-rvw-pup
 * brd-pup-rvw
 * product-review
 * product-photo
 * product-photo-indivi
 * product-video
 * product-video-indivi
 * product-qa
 * product-top-member-list
 * product-blog
 * product-mobile

 * product-view
   -- product-view-detail
   -- product-view-ctg
   -- product-view-pht-list 共通
   -- product-view-col-list 共通
   -- product-view-mov-list 共通
   -- product-view-pht-list
   -- product-view-col-list
   -- product-view-mov-list

--------------------------------------------------------
 * 201606新設DB用商品TOP・バリエーション詳細・バリエーション一覧
--------------------------------------------------------
 * product main modules
   -- pdt-info-newdb-1606（独自id）
   -- vri-item（独自class）
   -- product-spec.newdb-1606 （マルチクラス）
   -- inr-ttl-1606 (aタグからspanに変更)
   -- thumb-newdb-1606（独自id）
   -- pdt-newdb-vri-info1606（独自id）
   -- sku-vri-qa（バリエーションをみるクリック時の噴出し）
   -- .product-info(brand-infoから変更)
   -- product-list-block SKU一覧
----------------------------------------------------------- */

/** product common AD ----------------------------------------------------------------**/

/**
 * 右カラムの広告 （.js-trigger-stickyが付与されている場合は追従）
 */

/*
 * pms#30588
 * #main内にAdが入る場合
 * #main内ある場合、無理矢理サブナビの上に表示させる。
 * 高さはjsで取得
 *
 * product, matome, featureにこのコードが入っていますが、
 * productだけscss化されていないのでベタ書きしています。
 * 他はパーシャルscssでimportされています。修正する際はimportのscssも一緒に修正してください。
 */
#main {
	position: relative;
}

#main #pr-banner {
	position: absolute;
	top: 0;
	right: -315px;
	z-index: 1;
	width: 300px;
}

/*
 * pms#25892, pms#30588
 * #sub ラージレクタングル追従
 * #sub内にラッパーとして、#sub-inrをJSで生成
 * ※ Adの下に追従するコンテンツを#sub-inrでwrap
 */
#sub #js-sub-inr {
	margin-bottom: 15px; /* #mainの一番下に余白があるため、#sub-inrの下のラインをそろえるため設定 */
	width: 300px;
}
#sub #js-sub-inr.is-sticky {
	position: fixed;
	top: 15px !important; /* jsでbottomのときのtopを指定しているのでimportantしないと15pxで上書きできない */
}
#sub #js-sub-inr.is-bottom {
	position: absolute;
}
#sub #js-sub-inr.is-static {
	position: static;
}

/** product common navi-tab--------------------------------------------------------**/

/*
 * pms#33533
 * このファイルの他に、
 * css/cnt/product/product.css,  （ベタ書き）
 * sass/cnt/keywors/keywords.scss, （@import 'utils/_navi-tab'）
 * sass/cnt/tag/tag.scss,          （@import 'utils/_navi-tab'）
 * に、このコードが入っていますが、
 * productだけscss化されていないのでベタ書きしています。
 * 他はパーシャルscssでimportされています。修正する際はどちらも同じように修正してください。
 */

/*
.navi-tab-wrap.navi-tab-top    画面上部のナビ
.navi-tab-wrap.navi-tab-bottom 画面下部のナビ
*/
.navi-tab-wrap * {
  box-sizing: border-box;
}
.navi-tab-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  border-radius: 3px;
}
.navi-tab-top {
  background: linear-gradient(to bottom, #fdfaf3 0%, #fdfaf3 60%, #efece7 90%);
}
.navi-tab-bottom {
  background: linear-gradient(to bottom, #efece7 16%, #fdfaf3 40%, #fdfaf3 100%);
}
.navi-tab-wrap::before {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 3px;
  background: #76bbab;
  content: '';
}
.navi-tab-bottom::before {
  top: 0;
}
.navi-tab-top::before {
  bottom: 0;
}
.navi-tab {
  display: flex;
  width: 100%;
  height: 32px;
  border: 1px solid #e5e0d5;
  border-radius: 3px;
  box-shadow: 0 2px 2px 2px #fff inset;
}
.navi-tab li {
  height: 31px;
  color: #fff;
  font-size: 108%;
  font-weight: bold;
}
.navi-tab li > a,
.navi-tab li > span {
  display: block;
  position: relative;
  padding: 1px 10px;
  line-height: 28px;
}
.navi-tab li > a {
  height: 30px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
.navi-tab li > span {
  height: 31px;
}
.navi-tab li .num {
  display: inline-block;
  padding-left: 5px;
  opacity: .7;
  font-size: 80%;
  font-weight: normal;
  line-height: 1;
}
/* .topのみ調整 */
.navi-tab li.top > a,
.navi-tab li.top > span {
  padding-right: 15px;
  padding-left: 15px;
}
.navi-tab li.top > span {
  margin-left: -1px;
}

/* 上部ナビのみ */
.navi-tab-top .navi-tab li > span {
  margin-top: -1px;
  border-top: 1px solid #95c6bb;
}

/* 下部ナビのみ */
.navi-tab-bottom .navi-tab {
  box-shadow: 0 0 2px 2px #fff inset;
}
.navi-tab-bottom .navi-tab li > a,
.navi-tab-bottom .navi-tab li > span {
  line-height: 31px;
}
.navi-tab-bottom .navi-tab li > span {
  margin-bottom: -1px;
  border-bottom: 1px solid #95c6bb;
}

/* hover */
.navi-tab-top .navi-tab li > a:hover {
  box-shadow: 0 2px 0 0 #fff inset;
  background: linear-gradient(to bottom, #f9f5ee 15%, #e4d5ad 85%);
}
.navi-tab-bottom .navi-tab li > a:hover {
  box-shadow: 0 -2px 0 0 #fff inset;
  background: linear-gradient(to bottom, #e4d5ad 15%, #f9f5ee 85%);
}
.navi-tab-top .navi-tab li.top > a:hover {
  box-shadow: 0 2px 1px 1px #fff inset;
}
.navi-tab-bottom .navi-tab li.top > a:hover {
  box-shadow: 1px -2px 0 0 #fff inset;
}

/* radius */
.navi-tab-top .navi-tab li:first-of-type > a,
.navi-tab-top .navi-tab li:first-of-type > span {
  border-radius: 4px 0 0;
}
.navi-tab-bottom .navi-tab li:first-of-type > a,
.navi-tab-bottom .navi-tab li:first-of-type > span {
  border-radius: 0 0 0 4px;
}

/* 横線 */
.navi-tab li > a::after,
.navi-tab li > span::after {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 1px;
  height: 28px;
  content: '';
}
.navi-tab-top li > a::after,
.navi-tab-top li > span::after {
  top: 0;
}
.navi-tab-bottom li > a::after,
.navi-tab-bottom li > span::after {
  bottom: 0;
}
.navi-tab-top li > a::after {
  background: linear-gradient(to bottom, #e5e0d5 15%, #ded7c7 85%);
}
.navi-tab-bottom li > a::after {
  background: linear-gradient(to bottom, #ded7c7 15%, #e5e0d5 85%);
}
.navi-tab-top li > span,
.navi-tab-top li > span::after {
  background: linear-gradient(to bottom, #9bd1c5 15%, #6fb9a8 85%);
}
.navi-tab-bottom li > span,
.navi-tab-bottom li > span::after {
  background: linear-gradient(to bottom, #6fb9a8 15%, #9bd1c5 85%);
}


/** product common ----------------------------------------------------------------**/

.product {
	color: #333;
}
/* ヘッダー枠　アドタグ */
.product .imp-billboard {
	width: 970px;
	margin: 0 0 10px -10px;
}
/* socila button Sprite */
.clip-off,
.clip a,
.google a,
.hatena a,
.mobile a {
	display: block;
	overflow: hidden;
	height: 0;
	padding-top: 22px;
	background: url("/images/general/common/btn/ico_sbm.png") no-repeat;
}
.hatena a {
	width:20px;
	background-position:-15px -16px;
}
.google a {
	width:16px;
	background-position:-35px -16px;
}

.loadSvg {
	display: none;
}

/* preview_attention ------------------------*/
.product .preview-attention {
	margin: 0 0 20px;
	padding: 5px;
	border: 1px solid #fac465;
	background: #fdf5d9;
	color: #f30;
	font-size: 95%;
	text-align: center;
}

/* asid-sbm-smp ------------------------*/
#asid-sbtm {
	position: relative;
	z-index: 10;
}
* html #asid-sbtm {
	zoom: 1;
}
#asid-sbtm .brand-info {
	position: absolute;
	top: -20px;
	left: 0;
	display: block;
	width: 136px;
	height: 19px;
	background: #fff;
}
#asid-sbtm .brand-info a {
	position: absolute;
	display: block;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 136px;
	height: 0;
	padding-top: 19px;
	background: url("/images/cnt/product/btn_brand_info.png") top left no-repeat;
	line-height: 2;
}
#asid-sbtm .brand-info a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
#asid-sbtm .sbm-list {
	display: flex;
	position: absolute;
	top: 13px;
	right: 0;
}
#asid-sbtm .sbm-list li:not(:first-child) {
	margin-left: 10px;
}

/* product-large-photo */
#product-large-photo {
	position: absolute;
	top: 64px;
	width: 580px;
	margin-left: 20px;
	border: 1px solid #d4ccbb;
	background: #fff;
	z-index: 40010;
}
#product-large-photo .close {
	background: #f5f3ed;
	padding: 5px 10px;
	margin-bottom: 20px;
	text-align: right;
	border-bottom: 1px dotted #d4ccbb;
}
#product-large-photo .close span {
	overflow: hidden;
	display: inline-block;
	width: 22px;
	height: 0;
	padding-top: 21px;
	line-height: 2;
	background: url(/images/general/common/btn/btn_150728.png) no-repeat -118px 0;
	cursor: pointer;
}
#product-large-photo .back,
#product-large-photo .next {
	position: absolute;
	top: 185px;
	overflow: hidden;
	display: block;
	width: 16px;
	height: 0;
	padding-top: 70px;
	line-height: 2;
	background: url(/images/general/common/btn/btn_150728.png) no-repeat;
	cursor: pointer;
}
#product-large-photo .back {
	left: 10px;
	background-position: -68px -67px;
}
#product-large-photo .next {
	right: 10px;
	background-position: -100px -67px;
}
#product-large-photo .next-off {
	background-position: -116px -67px;
	cursor: default;
}
#product-large-photo .back-off {
	background-position: -84px -67px;
	cursor: default;
}
#product-large-photo div {
	margin: 0 26px 0;
	padding-top: 80px;
	height: 260px;
	text-align: center;
	border: 1px solid #d4ccbb;
}
#product-large-photo ul {
	margin: 0px 0px 15px 26px;
}
#product-large-photo li {
	float: left;
	margin: 10px 7px 0 0;
}
#product-large-photo li img {
	border: 1px solid #d4ccbb;
	cursor: pointer;
}
#product-large-photo li img:hover {
	filter: alpha(opacity=65);
	-moz-opacity: 0.65;
	opacity: 0.65;
}

/* product-termination ------------------------*/
#product-termination {
	margin-bottom: 12px;
	padding: 7px 10px;
	border: 1px solid #ccc;
	font-size: 95%;
	text-align: center;
	border: 1px dotted #e89baa;
	background: #fbeaee;
	line-height: 1.4;
}

/* null ------------------------*/
#product-instructions-review .cmn-null .post-review a,
#product-review .cmn-null .post-review a {
	overflow: hidden;
	display: block;
	width: 118px;
	height: 0;
	margin: 10px 0 0 0;
	padding-top: 21px;
	background: url("/images/general/common/btn/btn_150728.png") no-repeat 0 0;
	line-height: 2;
}
#product-instructions-review .cmn-null .post-review-edit a,
#product-review .cmn-null .post-review-edit a {
	overflow: hidden;
	display: block;
	width: 145px;
	height: 0;
	margin: 10px 0 0 0;
	padding-top: 21px;
	background: url("/images/general/common/btn/btn_150728.png") no-repeat 0 -46px;
	line-height: 2;
}
#product-instructions-review .cmn-null .post-review a:hover,
#product-review .cmn-null .post-review a:hover,
#product-instructions-review .cmn-null .post-review-edit a:hover,
#product-review .cmn-null .post-review-edit a:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
#product-review .cmn-null {
	margin-top: 5px;
}

/* null ------------------------*/
#review-notfound {
	width: 605px;
	margin: 50px 0 100px;
	height: 120px;
	background: #fff url("/images/general/common/bg/bg_csm_error.png") no-repeat left 5px;
	line-height: 1.2;
}
#review-notfound .msg {
	margin: 0 0 20px 120px;
}
#review-notfound .cosmeet {
	margin: 0 0 15px 120px;
	padding: 12px 0 12px 43px;
	background: #e4f4ee url("/images/cnt/product/ico-loupe.png") no-repeat 7px 3px;
	border: 1px solid #bbddd1;
	font-weight: bold;
	font-size: 105%;
}
#review-notfound .cosmeet a {
	margin-left: 8px;
}
#review-notfound .top {
	margin-left: 120px;
	font-size: 95%;
	text-align: right;
}
#review-notfound .top a {
	padding-left: 15px;
	background: url("/images/general/common/icons/ico_arw_sq_brn_top.png") no-repeat left center;
}

/* product-footer-bread */
#product-footer-bread {
	padding-top: 12px;
	color: #555;
	font-size: 95%;
	line-height: 1.5;
}
#product-footer-bread .general-top {
	color: #555;
	text-decoration: none;
}
#product-footer-bread .general-top:hover {
	text-decoration: underline;
}

/* product cmn-paging */
body.product .cmn-paging ul {
	display: block;
}


/** product main modules ----------------------------------------------------------------**/

/* product-cmn-pagetop ------------------------*/
#product-cmn-pagetop {
	text-align: right;
	margin-bottom: 25px;
}

/* product-like-reviews ------------------------*/
#product-like-reviews {
	padding-top: 10px;
}

#product-like-reviews h3 {
	padding: 13px 10px 8px;
	margin-bottom: 10px;
	background: url("/images/general/common/bg/bg_sub_title_flower_635.png") no-repeat 0 0;
	font-size: 105%;
	color: #000;
	font-weight: bold;
}
#product-like-reviews table {
	width: 635px;
}
#product-like-reviews td {
	height: 32px;
	border-bottom: 1px dotted #bdb8ad;
}
#product-like-reviews td.photo {
	padding: 3px 0 3px 11px;
	text-align: center;
}
#product-like-reviews td.photo img {
	border: 1px solid #ccc;
}
#product-like-reviews td.name {
	width: 70px;
	padding: 5px 0 5px 6px;
	font-size: 83%;
	line-height: 1.2;
}
#product-like-reviews td.name a {
	padding-right: 2px;
	text-decoration: none;
}
#product-like-reviews td.name a:hover {
	text-decoration: underline;
}
#product-like-reviews td.summary {
	padding: 5px 0 5px 18px;
}
#product-like-reviews td.summary a {
	padding-left: 5px;
}

/* product-recommend-item ------------------------*/
#product-recommend-item {
	position: relative;
	background: url("/images/cnt/product/bg_product_sub.png") left top repeat-x;
}
#product-recommend-item h3 {
	padding: 13px 10px 8px;
	margin-bottom: 10px;
	font-size: 105%;
	color: #000;
	font-weight: bold;
}
#product-recommend-item .back ,
#product-recommend-item .next {
	overflow: hidden;
	display: block;
	width: 17px;
	height: 0;
	padding-top: 118px;
	position: absolute;
	top: 68px;
	background: url("/images/general/common/btn/btn_150728.png") no-repeat;
	line-height: 2;
	cursor: pointer;
}
#product-recommend-item .back {
	left: 0;
	background-position: -51px -67px;
}
* html #product-recommend-item .back {
	left: -10px;
}
#product-recommend-item .back.off {
	background-position: -34px -67px;
	cursor: default;
}
#product-recommend-item .next {
	right: 0;
	background-position: 0 -67px;
}
#product-recommend-item .next.off {
	background-position: -17px -67px;
	cursor: default;
}
#product-recommend-item .clip-list {
	overflow: hidden;
	position: relative;
	width: 581px;
	margin: 0 27px 10px;
}
#product-recommend-item ul {
  width: 1764px;
}
#product-recommend-item.carousel ul.carouselTray {
	min-height: 155px;
}
#product-recommend-item li {
  position: relative;
  float: left;
  width: 137px;
  padding-right: 10px;
  text-align: center;
  line-height: 1.3;
}
#product-recommend-item a {
  text-decoration: none;
}
#product-recommend-item .act-button {
  position: absolute;
  right: 10px;
}
#product-recommend-item .checked {
  text-align: center;
  margin-bottom: 14px;
}
#product-recommend-item .checked span {
  overflow: hidden;
  display: inline-block;
  width: 11px;
  height: 0;
  padding-top: 9px;
  background: url("/images/cnt/product/ico-product-check.png") no-repeat 0 0;
  line-height: 2;
}
#product-recommend-item .item-photo {
  display: block;
  padding-right: 30px;
  text-align: center;
}
#product-recommend-item .item-photo img {
  display: block;
  margin: 0 auto 8px;
  pointer-events: none;
}
#product-recommend-item .rec-brand ,
#product-recommend-item .rec-item {
  text-align: left;
}
#product-recommend-item .rec-item {
  display: block;
  margin-bottom: 8px;
  font-size: 95%;
  word-wrap: break-word;

}
#product-recommend-item .icon-cmn-new {
  margin-left: 5px;
  vertical-align: middle;
}
#product-recommend-item .rec-brand {
  margin-bottom: 4px;
  font-size: 83%;
  color: #999;
}
#product-recommend-item .rec-brand a {
  padding-right: 2px;
}
#product-recommend-item .rec-brand a:hover {
  text-decoration: underline;
}
#product-recommend-item .icon-cmn-tieup {
  margin-left: 0;
}
#product-recommend-item .campaign {
	margin-bottom: 1px;
	text-align: left;
}
#product-recommend-item .clip {
  margin: 20px 0;
		font-size: 12px;
  text-align: right;
}
#product-recommend-item .clip span {
		display: inline-block;
		margin-top: 8px;
		margin-right: 5px;
		vertical-align:top
}

/* product-relation-link ------------------------*/
#product-relation-link {
  margin-bottom: 15px;
  border-top: 3px double #bdb8ad;
}
#product-relation-link p {
  padding: 5px 10px;
  margin-bottom: 10px;
  background: #f4f2ec;
  font-weight: bold;
}
#product-relation-link p strong {
  font-weight: bold;
}
#product-relation-link dl {
  margin: 0 10px;
  padding-bottom: 7px;
  line-height: 1.5;
}
#product-relation-link dt {
  float: left;
  width: 105px;
  color: #555;
}
#product-relation-link dd {
  float: left;
  padding-left: 10px;
  width: 815px;
  background: url("/images/general/common/icons/ico_arw_s_pnk_right.png") no-repeat 0 5px;
}
#product-relation-link ul {
    margin-top: 2px;
}
#product-relation-link li {
  display: inline;
  margin-right: 7px;
  padding-right: 7px;
    background: url("/images/general/common/icons/ico_arw_s_gry_right.png") no-repeat right;
}
#product-relation-link li.last {
  margin-right: 0;
  padding-right: 0;
    background: none;
}
#product-relation-link a {
  display: inline;
  margin-right: 8px;
}
#product-relation-link .item-cat a {
  margin-right: 0;
}

/* product-for-brand ------------------------*/
#product-for-brand {
  margin-bottom: 15px;
  border-top: 1px dotted #bdb8ad;
  border-bottom: 1px dotted #bdb8ad;
  padding: 6px 10px;
  line-height: 1.5;
}
#product-for-brand p.title {
  font-weight: bold;
}
#product-for-brand a {
  font-weight: bold;
  padding-left: 10px;
}

/* product-qa-list ------------------------*/
#product-qa-list > a {
	display: block;
	text-decoration: none;
}
#product-qa-list > a > dl {
	padding: 15px 0;
	border-bottom: 1px dotted #bdb8ad;
	line-height: 1.5;
}
#product-qa-list > a > dl > dt {
	margin-bottom: 10px;
	padding-left: 20px;
	color: #068681;
	font-size: 0;
	font-weight: bold;
	word-break: break-all;
}
#product-qa-list > a:hover > dl > dt {
	color: #07b0a9;
	text-decoration: underline;
}
#product-qa-list > a > dl > .question {
	background: url("/images/general/common/qa_icons/ico_qa_201603.png") no-repeat 0 -99px;
}
#product-qa-list > a > dl > .questionnaire {
	background: url("/images/general/common/qa_icons/ico_qa_201603.png") no-repeat 0 -199px;
}
#product-qa-list > a > dl > dt > .ttl {
	margin-right: 10px;
	font-size: 15px;
}
#product-qa-list > a > dl > dt > .questionTtl {
	font-weight: bold;
}
#product-qa-list > a .name {
	display: inline-block;
	color: #755;
	font-size: 12px;
	font-weight: normal;
}
#product-qa-list > a .name > span {
	font-size: 11px;
}
#product-qa-list > a > dl > dd {
	position: relative;
	word-wrap: break-word;
}
#product-qa-list .post-pic {
	float: right;
	width: 63px;
	height: 63px;
	border: 1px solid  #d9d2c3;
}
#product-qa-list > a:hover .post-pic img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
/* jq-img-rspsv */
#product-qa-list .post-pic .jq-img-rspsv {
	display: block;
	overflow: hidden;
	width: 63px;
	height: 63px;
}
#product-qa-list .post-pic .jq-img-rspsv img {
	display: block;
}
#product-qa-list .post-pic .jq-img-rspsv:last-child:not(.is-loaded),
#product-qa-list .post-pic .jq-img-rspsv.jq-img-rspsv-noextend:not(.is-loaded) {
	background: url("/images/general/common/icons/ico_prg_s.gif") center center no-repeat;
}
#product-qa-list .post-pic .jq-img-rspsv:not(.is-loaded) img {
	visibility: hidden;
}
#product-qa-list .post-pic .jq-img-rspsv-noextend {
	position: absolute;
	right: 0;
	top: 0;
}
#product-qa-list .post-pic + .post-txt {
	padding-right: 75px;
}
#product-qa-list .post-txt {
	color: #333;
}
#product-qa-list .post-info {
	margin-top: 15px;
	font-size: 0;
	line-height: 1.3;
}
#product-qa-list .post-pic + .post-info {
	padding-top: 52px;
}
#product-qa-list .post-pic + .post-info,
#product-qa-list .post-pic + .post-txt + .post-info {
	padding-right: 75px;
}
#product-qa-list .post-info dl,
#product-qa-list .post-info dt,
#product-qa-list .post-info dd,
#product-qa-list .post-info .post-info-day {
	display: inline-block;
}
#product-qa-list .post-info dt {
	margin-right: 5px;
	color: #755;
	font-size: 13px;
}
#product-qa-list .post-info .post-info-total {
	color: #755;
	font-size: 13px;
	font-weight: bold;
}
#product-qa-list .post-info .post-info-new {
	height: 14px;
	padding: 1px 5px 0;
	background-color: #e29bac;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	line-height: 14px;
}
#product-qa-list .post-info .post-info-total + .post-info-new,
#product-qa-list .post-info .post-info-total + .post-info-expert {
	margin-left: 10px;
}
#product-qa-list .post-info .post-info-expert {
	height: 14px;
	margin-left: 5px;
	padding: 1px 5px 0;
	background-color: #0fb3d6;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	line-height: 14px;
}
#product-qa-list .post-info dl + dl {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px dotted #bdb8ad;
}
#product-qa-list > a .post-info-day {
	float: right;
	font-size: 12px;
	color:#755;
}

/* product-limit-search ------------------------*/
#product-limit-search {
	margin-bottom: 10px;
}
#product-limit-search .condition-title {
	float: left;
	margin-top: 2px;
	padding-left: 17px;
	background: url(/images/cnt/product/ico_product_search.png) no-repeat 0 1px;
	color: #755;
	font-size: 95%;
	font-weight: bold;
}
* html #product-limit-search .condition-title {
	margin-top: 0;
}
*:first-child+html #product-limit-search .condition-title {
	margin-top: 0;
}
#product-limit-search .rnklgc {
	position: relative;
	margin: -26px 0 10px;
	font-size: 12px;
	text-align: right;
}
#product-limit-search .rnklgc .question {
	display: inline-block;
	padding: 2px 3px 0 3px;
	border: 1px solid #df8da4;
	background-color: #ea9cb2;
	color: #fff;
	font-weight: bold;
	line-height: 0.9;
	text-decoration: none;
}
#product-limit-search .rnklgc a {
	color: #333;
	padding-left: 3px;
}
#product-limit-search .rnklgc a:hover {
	color: #07b0a9;
}
#product-limit-search .condition {
	width: 635px;
	margin-bottom: 5px;
}
#product-limit-search .condition dl {
	float: right;
	width: 490px;
}
#product-limit-search .condition dt,
#product-limit-search .condition dd {
	display: inline;
	line-height: 18px;
}
#product-limit-search .condition dt {
	color: #666;
	font-size: 85%;
	vertical-align: middle;
}
#product-limit-search .condition dd {
	margin-right: 6px;
	font-size: 95%;
	font-weight: bold;
}
#product-limit-search .condition-limit {
	padding: 5px;
	border: 1px solid #bcded2;
	background-color: #e4f4ee;
}
#product-limit-search .condition-limit-inner {
	border: 1px solid #bcded2;
	background-color: #fff;
	padding: 8px 8px 6px;
}
#product-limit-search .condition-limit dt {
	float: left;
	width: 72px;
	height: 18px;
	margin: 4px 6px 0 0;
	padding: 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #ada28a;
	color: #fff;
	font-size: 95%;
	text-align: center;
	line-height: 20px;
}

* html #product-limit-search .condition-limit dt {
	margin-top: 3px;
}
*:first-child+html #product-limit-search .condition-limit dt {
	margin-top: 5px;
}
#product-limit-search .condition-limit dd {
	float: right;
	width: 526px;
	padding: 3px 0 0;
	font-size: 95%;
	line-height: 1.8;
}
#product-limit-search .condition-limit dd span,
#product-limit-search .condition-limit dd a {
	display:inline-block;
	height: 18px;
	margin-right: 8px;
	line-height: 20px;
}
#product-limit-search .condition-limit dd a:visited {
	color: #068681;
}
#product-limit-search .condition-limit dd span {
	padding: 0 4px;
	background-color: #f2e8d8;
	color: #333;
	font-weight: bold;
}
#product-limit-search .condition-limit-inner ul {
	width: 528px;
	margin: 10px 0 0 78px;
	border-top: 1px dotted #bdb8ad;
}
*:first-child+html #product-limit-search .condition-limit-inner ul {
	width: 528px;
}
#product-limit-search .rvw-cdt {
	display: inline-block;
	float: left;
	margin: 10px 20px 0 0;
}
#product-limit-search .rvw-cdt .rvw-cdt-in {
	width: 100px;
	padding-top: 7px;
}
#product-limit-search .rvw-cdt a {
	padding-left: 17px;
	background: url("/images/cnt/product/ico_checkbox.png") no-repeat left 3px;
}
*:first-child+html #product-limit-search .rvw-cdt a {
	background: url("/images/cnt/product/ico_checkbox.png") no-repeat left 0;
}
#product-limit-search .rvw-cdt .cdt-checked {
	background-position: left -31px;
}
*:first-child+html #product-limit-search .rvw-cdt .cdt-checked {
	background-position: left -34px;
}
#product-limit-search .rvw-cdt .cdt-checked span {
	padding: 0 2px;
	background-color: #f2e8d8;
}
#product-limit-search .search-more {
	float: right;
	font-size: 95%;
}
* html #product-limit-search .search-more {
	margin-top: 0;
}
*:first-child+html #product-limit-search .search-more {
	margin-top: 0;
}
#product-limit-search .search-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_brwn_right.png") no-repeat right center;
	color: #755;
}
#product-limit-search .search-more a:hover {
	color: #9f8787;
}

/* mod-pdt-cdtn ------------------------*/
#mod-pdt-cdtn {
	display: none;
}
#mod-pdt-cdtn-frm {
	width: 635px;
	height: 457px;
	padding: 3px;
	border: 1px solid #bdb8ad;
	background-color: #e8e5e0;
	box-shadow: 4px 4px 5px rgba(0,0,0,0.4);
}
#mod-pdt-cdtn-frm .mod-pdt-cdtn-inner {
	height: 446px;
	padding: 4px 6px 7px;
	background-color: #f4f2ec;
}
#mod-pdt-cdtn-frm .mod-pdt-cdtn-header {
	margin-bottom: 3px;
}
* html #mod-pdt-cdtn-frm .mod-pdt-cdtn-header {
	margin-bottom: 2px;
}
*:first-child+html #mod-pdt-cdtn-frm .mod-pdt-cdtn-header {
	margin-bottom: 2px;
}
#mod-pdt-cdtn-frm .mod-pdt-cdtn-inner .mod-pdt-cdtn-header-title {
	float: left;
	padding-top: 3px;
	font-size: 125%;
	font-weight: bold;
}
#mod-pdt-cdtn-frm .mod-pdt-cdtn-inner .close {
	float: right;
	margin: 0;
	padding-bottom: 4px;
	background: #f5f3ed;
}
#mod-pdt-cdtn-frm .cdtn-btn a {
	overflow: hidden;
	display: block;
	height: 0;
	padding-top: 21px;
	background: url(/images/general/common/review_icons/btn_bg.png) no-repeat 0 -85px;
	line-height: 2;
}
#mod-pdt-cdtn-frm .cdtn-btn .close {
	display: block;
	overflow: hidden;
	height: 0;
	padding-top: 21px;
	background: url(/images/general/common/review_icons/btn_bg.png) no-repeat 0 -64px;
	line-height: 2;
}
#mod-pdt-cdtn-frm form .inner {
	display: block;
	clear: both;
	border: 1px solid #bdb8ad;
	background-color: #fff;
}
#mod-pdt-cdtn-frm dl.changing-line {
	padding: 6px 0;
	/padding: 6px 0 5px;/*IE7以下*/
	border-bottom: 1px dotted #bdb8ad;
}
#mod-pdt-cdtn-frm dl.changing-line-last {
	padding:6px 0;
	/padding: 6px 0 5px;/*IE7以下*/
	border: none;
}
#mod-pdt-cdtn-frm dt,
#mod-pdt-cdtn-frm dd {
	float: left;
}
#mod-pdt-cdtn-frm label {
	margin-right: 8px;
}
* html #mod-pdt-cdtn-frm label {
	margin-right: 4px;
}
*:first-child+html #mod-pdt-cdtn-frm label {
	margin-right: 4px;
}
#mod-pdt-cdtn-frm input {
	vertical-align: middle;
}
#mod-pdt-cdtn-frm dt {
	display: inline-block;
	width:72px;
	margin: 1px 20px 0 8px;
	padding: 2px 0 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #ada28a;
	color: #fff;
	font-size: 95%;
	text-align: center;
}
* html #mod-pdt-cdtn-frm dt {
	margin-left: 4px;
}
#mod-pdt-cdtn-frm dd {
	width:510px;
	padding-top: 2px;
}
* html #mod-pdt-cdtn-frm dd {
	padding-top: 0;
}
*:first-child+html #mod-pdt-cdtn-frm dd {
	padding-top: 0;
}
#mod-pdt-cdtn-frm form select {
	height: 20px;
}
#mod-pdt-cdtn-frm dd.age-select {
	padding-top: 1px;
}
* html #mod-pdt-cdtn-frm dd.age-select {
	padding-top: 0;
}
*:first-child+html #mod-pdt-cdtn-frm dd.age-select {
	padding-top: 0;
}
#mod-pdt-cdtn-frm dd.age-select {
	color: #555;
}
#mod-pdt-cdtn-frm dd.age-select select {
	width: 54px;
}
#mod-pdt-cdtn-frm dd.effect-select{
	padding-top:1px;
}
#mod-pdt-cdtn-frm dd.effect-select select {
	width: 200px;
}
#mod-pdt-cdtn-frm dd.place-select,
#mod-pdt-cdtn-frm dd.review-date-select {
	line-height:22px;
}
* html #mod-pdt-cdtn-frm dd.place-select {
	width: 490px;
}
*:first-child+html #mod-pdt-cdtn-frm dd.place-select {
	width: 490px;
}
#mod-pdt-cdtn-frm dd.keyword {
	position: relative;
	width: auto;
	margin-right: 0;
	padding-top: 1px;
}
* html #mod-pdt-cdtn-frm dd.keyword {
	padding-top: 0;
}
*:first-child+html #mod-pdt-cdtn-frm dd.keyword {
	padding-top: 0;
}
#mod-pdt-cdtn-frm dd.keyword span {
	clear:both;
	position: absolute;
	top: 2px;
	left: 5px;
	color: #999;
	line-height: 20px;
}
#mod-pdt-cdtn-frm dd.keyword input {
	width: 240px;
	height: 16px;
	padding: 0 3px;
	border: 1px solid #bbb;
}
#mod-pdt-cdtn-frm dd.sort {
	padding-top: 1px;
}
* html #mod-pdt-cdtn-frm dd.sort {
	padding-top: 0;
}
*:first-child+html #mod-pdt-cdtn-frm dd.sort {
	padding-top: 0;
}
#mod-pdt-cdtn-frm dd.sort select {
	width: 110px;
}
#mod-pdt-cdtn-frm dd.sort input {
	margin-right: 3px;
	margin-left: 7px;
	/margin-right: 0px;/*IE7以下*/
	/margin-left: 3px;/*IE7以下*/
}
#mod-pdt-cdtn-frm .form-btn {
	clear: both;
	padding: 10px 0 0 195px;
}
#mod-pdt-cdtn-frm .form-btn input:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#mod-pdt-cdtn-frm .btn-clear {
	float: left;
	cursor: pointer;
	width: 111px;
	height: 25px;
	margin-right:8px;
	background: url(/images/general/common/review_icons/btn_bg.png) no-repeat scroll left -164px;
	border: none;
}
#mod-pdt-cdtn-frm .btn-search {
	cursor: pointer;
	width: 143px;
	height: 24px;
	background: url(/images/general/common/review_icons/btn_bg.png) no-repeat scroll left -106px;
	border: none;
}
/* product-sort ------------------------*/
#product-sort {
  padding-bottom: 3px;
  border-bottom: 1px dotted #bdb8ad;
}
#product-sort dt {
  display: block;
  float: left;
		height: 19px;
  margin-right: 3px;
  padding-left: 20px;
  background: url(/images/cnt/product/ico_arw_product_sort.png) no-repeat left center;
  color: #755;
  font-size: 95%;
		font-weight: bold;
		line-height: 22px;
}
#product-sort dd {
  display: block;
  float: left;
		height: 19px;
  font-size: 95%;
  border-right: 1px dotted #bdb8ad;
		line-height: 22px;
}
#product-sort .link-data-url {
	color: #068681;
	cursor: pointer;
}
#product-sort a,
#product-sort .link-data-url {
  display: block;
  padding: 0 5px;
  text-decoration: none;
}
#product-sort a:visited {
  color: #068681;
}
#product-sort a:hover,
#product-sort .link-data-url:hover {
  color: #07B0A9;
		text-decoration: underline;
}
#product-sort .on-down {
  padding: 0 3px;
  background: #f2e8d8;
}
#product-sort .on-down a,
#product-sort .on-down .link-data-url {
		padding-right: 14px;
  background: url(/images/general/common/icons/ico_sort_ascend.png) no-repeat right center;
  font-weight: bold;
}
#product-sort .on-up {
  padding: 0 3px;
  background-color: #f2e8d8;
  font-weight: bold;
}
#product-sort .on-up a,
#product-sort .on-up .link-data-url {
		padding-right: 14px;
  background: url(/images/general/common/icons/ico_sort_descend.png) no-repeat right center;
  font-weight: bold;
}

/* #product-review-navi ------------------------*/
#product-review-navi {
  position: relative;
  width: 635px;
}

/* #product-display ------------------------*/
#product-display {
  position: absolute;
  top: 0;
  right: 0;
}
#product-display ul {
  display: inline;
  margin: 0;
  padding: 0;
}
#product-display li {
  float: left;
  margin: 0;
  padding: 0;
}
#product-display li.title {
	display: block;
	height: 19px;
	margin-right: 3px;
	color: #555;
	font-size: 95%;
	text-align: right;
	line-height: 23px;
}
#product-display .list-on,
#product-display .list a,
#product-display .all-on,
#product-display .all a {
	display: block;
 overflow: hidden;
	width: 60px;
	height: 0;
	padding-top: 19px;
	background: url("/images/cnt/product/btn_display.png") no-repeat;
	line-height: 2;
}
#product-display .list-on {
  background-position: left -38px;
}
#product-display .list a {
  background-position: left top;
}
#product-display .list a:hover {
  background-position: left -19px;
}
#product-display .all-on {
  background-position: -60px -38px;
}
#product-display .all a {
  background-position: -60px top;
}
#product-display .all a:hover {
  background-position: -60px -19px;
}

/* product-review-list ------------------------*/

/* review-sec -----*/

#product-review-list .review-sec {
	width: 100%;
	margin-bottom: 10px;
	padding-top: 8px;
	background: #f4f0e9 url(/images/general/common/review_icons/flm_review_sec.png) no-repeat left top;
	color: #69511a;
}
#product-review-list .inner {
	padding: 0 8px 8px;
	background: url(/images/general/common/review_icons/flm_review_sec.png) no-repeat right bottom;
}
#product-review-list .review-sec .reviewer-rating {
	padding-top: 2px;
	vertical-align: top;
}
#product-review-list .review-sec .reviewer-rating.rtg-1 {
	background-position: 0 0px;
}
#product-review-list .review-sec .reviewer-rating.rtg-2 {
	background-position: 0 -17px;
}
#product-review-list .review-sec .reviewer-rating.rtg-3 {
	background-position: 0 -37px;
}
#product-review-list .review-sec .reviewer-rating.rtg-4 {
	background-position: 0 -57px;
}
#product-review-list .review-sec .reviewer-rating.rtg-5 {
	background-position: 0 -77px;
}
#product-review-list .review-sec .reviewer-rating.rtg-6 {
	background-position: 0 -97px;
}
#product-review-list .review-sec .reviewer-rating.rtg-7 {
	background-position: 0 -117px;
}

/* .head */
#product-review-list .head {
	display: flex;
	min-height: 34px;
	margin-bottom: 3px;
	align-items: center;
}
#product-review-list .reviewer-img {
	width: 37px;
}
#product-review-list .reviewer-img img {
	border: 1px solid #e8e5e0;
}
#product-review-list .reviewer-info {
	overflow: hidden;
	padding-right: 5px;
	line-height: 1.2;
	word-wrap: break-word;
	overflow-wrap: break-word;
	flex: 1;
}
#product-review-list .reviewer-name {
	font-size: 15px;
}
#product-review-list .honorific {
	margin: 0 5px 0 2px;
	color: #69511a;
	font-size: 85%;
}
#product-review-list .ico-cmn-auth {
	padding-right: 5px;
}
#product-review-list .clip-on {
	float: right;
}
#product-review-list .head ul,
#product-review-list .head li {
	display: inline-block;
}
#product-review-list .head li {
	font-size: 95%;
}
#product-review-list .head li:not(:first-child) {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px dotted #bdb8ad;
}
#product-review-list .head li span {
	font-size: 105%;
	font-weight: bold;
}
#product-review-list .head .act-button {
	width: 91px;
}
#product-review-list .clip-on a,
#product-review-list .clip-off {
  float: right;
  overflow: hidden;
  display: block;
  width: 121px;
  height: 0;
  padding-top: 15px;
  line-height: 2;
}
#product-review-list .clip-on a {
  background: url(/images/general/common/review_icons/btn_bg.png) no-repeat left top;
}
#product-review-list .clip-on a:hover {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}
#product-review-list .clip-off {
  background: url(/images/general/common/review_icons/btn_bg.png) no-repeat left -15px;
}

/* .body */
#product-review-list .body {
  clear: both;
  margin-bottom: 5px;
  padding: 8px 8px 4px;
  border: 1px solid #e6d9c3;
  background-color: #fff;
}
#product-review-list .rating {
		margin-bottom: 12px;
}
#product-review-list .reviewer-rating {
  float: left;
  color: #000;
}
#product-review-list .repeat {
  overflow: hidden;
  display: inline-block;
  margin-left: 6px;
  width: 50px;
  height: 0;
  padding-top: 13px;
  background: url(/images/general/common/review_icons/btn_bg.png) no-repeat left -151px;
  line-height: 2;
  vertical-align: middle;
}
#product-review-list .buy {
  overflow: hidden;
  display: inline-block;
  margin-left: 6px;
  width: 50px;
  height: 0;
  padding-top: 13px;
  background: url(/images/general/common/review_icons/btn_bg.png) no-repeat -50px -151px;
  line-height: 2;
  vertical-align: middle;
}
#product-review-list .date {
  float: right;
}
.review-sec .body .date,
.review-sec .body .mobile-date {
  float: right;
}
#product-review-list .mobile-date {
  padding-left: 11px;
  background: url(/images/general/common/review_icons/ico_mobile.png) no-repeat left center;
}
#product-review-list .read {
  clear: both;
  padding-bottom: 5px;
  line-height: 1.6;
  color: #000;
  word-break: break-all; /* IE only */
}
#product-review-list .read span.word {
	background: #eeccdc;
}
#product-review-list .read .read-more {
		display:block;
		text-align:right;
}
#product-review-list .read .cmn-viewmore {
		font-weight: bold;
}
/* クチコミ一覧　画像・動画サムネイル */
#product-review-list .cmn-review-photo {
	margin: 0 0 15px -20px;
}
#product-review-list .cmn-review-photo li {
	float: left;
	margin: 0 0 0 20px;
	padding-right: 16px;
 background: url("/images/general/common/review_icons/bg_review_photo.png") no-repeat right bottom;
	zoom: 1;
	vertical-align: top;
}
#product-review-list .cmn-review-photo .video_nolink {
	background: none;
}
#product-review-list .cmn-review-photo a:link,
#product-review-list .cmn-review-photo a:visited {
	text-decoration: none;
}
/* 画像サムネイル */
#product-review-list .cmn-review-photo .thum {
	display: table-cell;
	width: 100px;
	height: 100px;
	layout-grid-line: 100px;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#product-review-list .cmn-review-photo .thum {
	height: 102px;
}
}
* html #product-review-list .cmn-review-photo .thum {
	display: block;
}
*:first-child+html #product-review-list .cmn-review-photo .thum {
	display: block;
}
* html #product-review-list .cmn-review-photo .thum img {
	margin-top: -1px;
}
*:first-child+html #product-review-list .cmn-review-photo .thum img {
	margin-top: -1px;
}
#product-review-list .cmn-review-photo .thum img  {
	filter: alpha(opacity=100);
}
#product-review-list .cmn-review-photo a.thum:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
/* 動画サムネイル */
#product-review-list .cmn-review-photo .video {
	position: relative;
	background: #000;
}
#product-review-list .cmn-review-photo .ico-video {
	position: absolute;
	left: 3px;
	bottom: 10px;
}
#product-review-list .cmn-review-photo .time {
	display: block;
	position: absolute;
	right: 1px;
	bottom: 10px;
	padding: 2px;
	background: #000;
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
	color: #fff;
	font-size: 75%;
	line-height: 1;
	text-decoration: none;
}
* html #product-review-list .cmn-review-photo .time {
	right: 17px;
	padding: 0 2px;
	layout-grid-line: none;
	cursor: pointer;
}
*:first-child+html #product-review-list .cmn-review-photo .time {
	padding: 0 2px;
	layout-grid-line: none;
	cursor: pointer;
}
#product-review-list .cmn-review-photo .bg-layer {
	display: block;
	line-height: 1;
	background: #fff;
}
* html #product-review-list .cmn-review-photo .bg-layer {
	display: inline;
}
*:first-child+html #product-review-list .cmn-review-photo .bg-layer {
	display: inline;
}
#product-review-list .cmn-review-photo .pic {
	display: table-cell;
	width: 100px;
	height: 100px;
	layout-grid-line: 100px;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
#product-review-list .cmn-review-photo .pic-photo,
#product-review-list .cmn-review-photo .pic-movie {
	filter: alpha(opacity=100);
}
#product-review-list .cmn-review-photo a.pic:hover img {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#product-review-list .cmn-review-photo a.pic:hover .pic-photo,
#product-review-list .cmn-review-photo a.pic:hover .pic-movie {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-review-list .cmn-review-photo .video-nolink {
	background: none;
}

@-moz-document url-prefix() { /* FF */
#product-review-list .cmn-review-photo li .pic {
	height: 102px;
}
}
* html #product-review-list .cmn-review-photo li .pic {
	display: block;
}
*:first-child+html #product-review-list .cmn-review-photo li .pic {
	display: block;
}
* html #product-review-list .cmn-review-photo li .pic img {
	margin-top: -1px;
}
*:first-child+html #product-review-list .cmn-review-photo li .pic img {
	margin-top: -1px;
}
#product-review-list .cmn-review-photo .view-more-photo {
	display: table;
	width: 70px;
	height: 70px;
}
#product-review-list .cmn-review-photo .view-more {
	display: table-cell;
	width: 70px;
	height: 70px;
	vertical-align: middle;
}
* html #product-review-list .cmn-review-photo .view-more-photo {
	position: relative;
}
*:first-child+html #product-review-list .cmn-review-photo .view-more-photo {
	position: relative;
}
* html #product-review-list .cmn-review-photo .view-more {
	position: absolute;
	top: 25%;
}
*:first-child+html #product-review-list .cmn-review-photo .view-more{
	position: absolute;
	top: 25%;
}
#product-review-list .cmn-review-photo .view-more-photo .view-more a:link,
#product-review-list .cmn-review-photo .view-more-photo .view-more a:visited {
	text-decoration: underline;
}
#product-review-list .cmn-review-photo .ico-list {
	display: inline-block;
	width: 14px;
	height: 0;
	padding-top: 14px;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") right 0 no-repeat ;
	overflow: hidden;
	line-height: 2;
	vertical-align: middle;
}
* html #product-review-list .cmn-review-photo .ico-list {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-review-list .cmn-review-photo .ico-list {
	display: inline;
	zoom: 1;
}
#product-review-list .item-status {
	margin: 10px 0 20px;
}
#product-review-list .item-status dt,
#product-review-list .item-status dd {
	display: inline-block;
}
*:first-child+html #product-review-list .item-status dt,
*:first-child+html #product-review-list .item-status dd {
	display: inline;
	zoom: 1;
}
#product-review-list .item-status dt {
	float: left;
	width: 67px;
	padding: 1px 2px 0;
	border: 1px solid #bdb8ad;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #bdb8ad;
	color: #fff;
	font-size: 85%;
	text-align: center;
}
#product-review-list .item-status dd {
	float: left;
	width: 515px;
	word-break: break-all;
}
#product-review-list .item-status ul {
 _zoom: 1;
 overflow: hidden;
}
#product-review-list .item-status li {
	display: inline-block;
	margin: 0 0 3px -1px;
	padding: 0 8px;
	line-height: 16px;
	border-left: 1px dotted #ccc;
}
#product-review-list .tag-list {
	border-top: 1px dotted #bdb8ad;
	line-height: 1.7;
	font-size: 95%;
}
#product-review-list .tag-list dl {
	margin-top: 8px;
	padding-right: 10px;
}
#product-review-list .tag-list dt {
	position: relative;
	float: left;
	height: 20px;
	margin: 0 5px 5px 0;
	padding-right: 8px;
	background: url(/images/general/common/review_icons/ico_arw2_s_pnk_right.png) no-repeat right 7px;
}
#product-review-list .tag-list dd {
	float: left;
	min-height: 20px;
	margin: 0 5px 5px 0;
	font-size: 90%;
}
#product-review-list .review-sec dd a,
#product-review-list .review-sec dd span {
	display: inline-block;
	padding: 0 4px;
	border: 1px solid #dfd9ce;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #f9f7f5;
	text-decoration: none;
	word-break: break-all;
}
#product-review-list .review-sec dd span {
	color: #999;
	border: 1px solid #ddd;
	background: #f8f8f8;
}
#product-review-list .tag-list dt:not(:first-child) {
	margin-left: 3px;
	padding-left: 6px;
}
#product-review-list .tag-list dt:not(:first-child):before {
	position: absolute;
	width: 1px;
	height: 12px;
	top: 2px;
	left: 0;
	background: #ddd;
	content: "";
}
/* .foot */
#product-review-list foot {
  font-size: 95%;
}
#product-review-list .foot ul {
	width:100%;
}
#product-review-list .foot .frm-action-rvw {
	float: right;
}
#product-review-list .foot .frm-action-rvw-all {
	display: flex;
	float: right;
	-webkit-border-radius: 5px;
}
#product-review-list .foot .action-like-rvw > span {
	padding-right: 3px;
	color: #888;
	font-size: 10px;
	line-height: 30px;
	letter-spacing: -0.5px;
}
#product-review-list .foot .action-like-rvw .act-button {
	min-width: 100px;
}
#product-review-list li.kuchikomi-on {
	float:left;
	text-indent:-9999;
}
#product-review-list li.kuchikomi-on a{
	display: block;
	overflow: hidden;
	width: 78px;
	height: 0;
 padding: 17px 0 0 0;
	background: url(/images/general/common/review_icons/btn_report.png) no-repeat left top;
}
#product-review-list li.kuchikomi-on a:hover{
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
#product-review-list li.kuchikomi-off {
	display: block;
	overflow: hidden;
	float:left;
	text-indent:-9999;
	width: 78px;
	height: 0;
 padding: 17px 0 0 0;
	background: url(/images/general/common/review_icons/btn_report.png) no-repeat left -17px;
}

/* view-more ------------------------*/
#product-review-indivi .view-more {
    margin-bottom: 25px;
    text-align: right;
    font-size: 95%;
}
#product-review-indivi .view-more a {
    padding-right: 14px;
    background: url(/images/general/common/icons/ico_arw_l_grn_right.png) no-repeat right center;
}

/* product-paging-simple ---------------*/
.product-paging-simple {
  position: relative;
  margin-top: 14px;
  margin-bottom: 10px;
  line-height:1;
  font-size: 105%;
  text-align: center;
}
*:first-child+html .product-paging-simple {
	position: static;
}
.product-paging-simple p {
  position: absolute;
  color:#555;
  top: 0;
  left: 0;
  padding-top: 2px;
  font-size: 85%;
}
.product-paging-simple ul {
  text-align: center;
}
.product-paging-simple li {
  display: inline;
}
.product-paging-simple li a,
.product-paging-simple li a:visited {
    color: #068681;
}
.product-paging-simple li a:hover,
.product-paging-simple li a:active {
    color: #07b09a;
}
/*
.product-paging-simple .back {
  padding-right: 2px;
		padding-left: 11px;
  background: url("/images/general/common/icons/ico_paging_back.png") no-repeat scroll left center transparent;
}
.product-paging-simple .to-list {
  padding-right: 2px;
  padding-left: 7px;
  border-left: 1px dotted #bdb8ad;
}
.product-paging-simple .next {
  padding: 0 12px 0 7px;
  border-left: 1px dotted #bdb8ad;
  background: url("/images/general/common/icons/ico_paging_next.png") no-repeat scroll right center transparent;
}
* html .product-paging-simple .next {
  padding-right: 6px;
}
*:first-child+html .product-paging-simple .next {
  padding-right: 6px;
}
.product-paging-simple .next.none,
.product-paging-simple .back.none {
  background: none;
  color: #999;
}*/
.product-paging-simple .back {
  padding-right: 2px;
}
.product-paging-simple .back a{
		padding-left: 12px;
  background: url("/images/general/common/icons/ico_paging_back.png") no-repeat scroll left center transparent;
}
.product-paging-simple .to-list {
  padding-right: 2px;
  padding-left: 7px;
  border-left: 1px dotted #bdb8ad;
}
.product-paging-simple .next {
  padding-left: 7px;
  border-left: 1px dotted #bdb8ad;
}
.product-paging-simple .next a {
  padding-right: 12px;
  background: url("/images/general/common/icons/ico_paging_next.png") no-repeat scroll right center transparent;
}
* html .product-paging-simple .next {
  padding-right: 6px;
}
*:first-child+html .product-paging-simple .next {
  padding-right: 6px;
}
.product-paging-simple .next.none,
.product-paging-simple .back.none {
  background: none;
  color: #999;
}

/* 関連ランキング: product-inst-ranking ------------------------*/
#sub .product-inst-ranking {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#sub .product-inst-ranking .title {
	margin-bottom: 10px;
	padding: 12px 10px 0;
}
#sub .product-inst-ranking .title-txt {
	font-weight: bold;
	font-size: 105%;
}
#sub .product-inst-ranking .category {
	margin-bottom: 5px;
	color: #755;
	font-size: 95%;
}
#sub .product-inst-ranking .ranking-body {
	margin: 0 10px 7px;
}
#sub .product-inst-ranking .ranking-list {
	margin-bottom: 7px;
}
#sub .product-inst-ranking .product-rank {
	margin: 0 10px 10px;
	border-bottom: 1px solid #bdb8ad;
}
* html #sub .product-inst-ranking .product-rank{
	padding-bottom: 10px;
}
*:first-child+html #sub .product-inst-ranking .product-rank {
	padding-bottom: 10px;
}
#sub .product-inst-ranking .product-rank-item {
	padding: 15px 0 15px 60px;
	background: url("/images/cnt/product/ico_product_rank.png") left 50% no-repeat;
	font-size: 105%;
}
* html #sub .product-inst-ranking .product-rank-item {
	padding-bottom: 5px;
}
*:first-child+html #sub .product-inst-ranking .product-rank-item {
	padding-bottom: 5px;
}
#sub .product-inst-ranking .product-rank-item span {
	margin-left: 5px;
	font-weight: bold;
}
#sub .product-inst-ranking .ranking-pict {
	float: right;
	width: 70px;
	padding-left: 10px;
	background: #fff;
	text-align: center;
}
#sub .product-inst-ranking .pic {
	display: table-cell;
	width: 70px;
	height: 70px;
	layout-grid-line: 70px;
	border: 1px solid #bdb8ad;
	text-align: center;
	vertical-align: middle;
	filter: alpha(opacity=100);
}
#sub .product-inst-ranking .pic:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
@-moz-document url-prefix() { /* FF */
#sub .product-inst-ranking .ranking-pict .pic {
	height: 72px;
}
}
* html #sub .product-inst-ranking .ranking-pict .pic {
	display: block;
}
*:first-child+html #sub .product-inst-ranking .ranking-pict .pic {
	display: block;
}
* html #sub .product-inst-ranking .ranking-pict .pic img {
	margin-top: -1px;
}
*:first-child+html #sub .product-inst-ranking .ranking-pict .pic img {
	margin-top: -1px;
}
#sub .product-inst-ranking .ranking-pict span {
	display: block;
	margin-top: 3px;
	font-size: 95%;
}
#sub .product-inst-ranking ol {
	overflow: hidden;
}
#sub .product-inst-ranking ol li {
	padding: 7px 0 7px 37px;
	color: #999;
	border-bottom: 1px dotted #d9d2c3;
	font-size: 95%;
}
#sub .product-inst-ranking ol li a {
	text-decoration: none;
}
#sub .product-inst-ranking ol li a:hover {
	text-decoration: underline;
}
#sub .product-inst-ranking .product-item {
	font-weight: bold;
	font-size: 106%;
}
#sub .product-inst-ranking li.no1 {
	background:url("/images/general/common/ranking_icons/ico_sub_ranking_s_01.png") no-repeat 0% 50%;
}
#sub .product-inst-ranking li.no2 {
	background:url("/images/general/common/ranking_icons/ico_sub_ranking_s_02.png") no-repeat 0% 50%;
}
#sub .product-inst-ranking li.no3 {
	background:url("/images/general/common/ranking_icons/ico_sub_ranking_s_03.png") no-repeat 0% 50%;
}
#sub .product-inst-ranking .view-more {
	margin-bottom: 10px;
 text-align: right;
}
#sub .product-inst-ranking .view-more a {
	padding: 0 15px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right 2px;
}
* html #sub .product-inst-ranking .view-more a {
	background-position: right -1px;
}

#sub .product-inst-ranking .other {
	padding: 7px;
	background: #e4f4ee;
	border: 1px solid #beded3;
	line-height: 1.4;
}
#sub .product-inst-ranking .other p {
	margin-bottom: 4px;
	color: #755;
}
#sub .product-inst-ranking .other li {
	margin-bottom: 3px;
	padding-left: 12px;
	background:url("/images/general/common/icons/ico_arw_m_grn_right.png") no-repeat 0 5px;
}
#sub .product-inst-ranking .rnklgc {
	margin-top: 10px;
	font-size: 12px;
	text-align: right;
}
#sub .product-inst-ranking .rnklgc a {
	margin-left: 3px;
	color: #333;
}
#sub .product-inst-ranking .rnklgc .question {
	display: inline-block;
	padding: 2px 3px 0 3px;
	border: 1px solid #df8da4;
	background-color: #ea9cb2;
	color: #fff;
	font-weight: bold;
	line-height: 0.9;
	text-decoration: none;
}
/* 最新プレゼント: product-inst-present ------------------------*/
#sub .product-inst-present {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#sub .product-inst-present .title {
	margin-bottom: 15px;
	padding: 12px 10px 0;
}
#sub .product-inst-present .title-txt {
	font-weight: bold;
	font-size: 105%;
}
#sub .product-inst-present .present-link {
	cursor: pointer;
	display: block;
	margin: 0 10px;
	outline: medium none;
	text-decoration: none;
}
#sub .product-inst-present .present-ttl {
	margin-bottom: 7px;
}
#sub .product-inst-present .present-ttl .ttl-txt {
	font-size: 105%;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: underline;
}
#sub .product-inst-present .present-pic {
	float: left;
	width: 85px;
	margin-right: 10px;
}
#sub .product-inst-present .icon-csm-up {
	margin-left: 5px;
	vertical-align: middle;
}
#sub .product-inst-present .present-body {
	overflow: hidden;
}
#sub .product-inst-present .body-txt{
	color: #333;
	text-decoration: none;
}
#sub .product-inst-present .present-link:visited .body-txt {
	text-decoration: none;
}
#sub .product-inst-present .present-link:hover .body-txt {
	text-decoration: none;
}
#sub .product-inst-present .present-link:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}

/* この商品のビューティニュース: product-inst-news ------------------------*/
#sub .product-inst-news {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#sub .product-inst-news .title {
	margin-bottom: 15px;
	padding: 12px 10px 0;
}
#sub .product-inst-news .title-txt {
	font-weight: bold;
	font-size: 105%;
}
#sub .product-inst-news .news-ttl {
	margin-bottom: 7px;
}
#sub .product-inst-news .ttl-txt {
	font-size: 105%;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: underline;
}
#sub .product-inst-news .news-subttl {
	margin-bottom: 4px;
	text-indent: -.6em;
	color: #755;
	font-size: 83%;
}
#sub .product-inst-news .news-pic {
	float: left;
	width: 85px;
	margin-right: 10px;
}
#sub .product-inst-news .news-link {
	cursor: pointer;
	display: block;
	margin: 0 10px;
	outline: medium none;
	text-decoration: none;
}
#sub .product-inst-news .news-body {
	overflow: hidden;
}
#sub .product-inst-news .body-txt {
	color: #333;
	text-decoration: none;
}
#sub .product-inst-news .news-link:visited .body-txt {
	text-decoration: none;
}
#sub .product-inst-news .news-link:hover .body-txt {
	text-decoration: none;
}
#sub .product-inst-news .news-date {
	color: #666;
	font-size: 83%;
	text-decoration: none;
}
#sub .product-inst-news .news-link:visited .news-date {
	text-decoration: none;
}
#sub .product-inst-news .news-link:hover .news-date {
	text-decoration: none;
}
#sub .product-inst-news .news-link:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#sub .product-inst-news .icon-csm-up {
	vertical-align: middle;
}

/* 最新のQA widget: product-inst-qa ------------------------*/
#sub .product-inst-qa {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#sub .product-inst-qa .title {
	margin-bottom: 10px;
	padding: 12px 10px 0;
}
#sub .product-inst-qa .title-txt {
	float:left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#sub .product-inst-qa .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	word-wrap: break-word;
	overflow: hidden;
}
* html #sub .product-inst-qa .cat-name{
	padding-top: 3px;
	zoom: 1;
}
#sub .product-inst-qa .lead {
	padding: 0 10px 15px 10px;
	color: #666;
	font-size: 83%;
	line-height: 1.4;
	word-wrap: break-word;
}
#sub .product-inst-qa .icon-cmn-up {
	margin-left: 5px;
}
#sub .product-inst-qa > a {
	display: block;
	text-decoration: none;
	margin: 0 10px 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #BDB8AD;
}
#sub .product-inst-qa > a > dl {
	line-height: 1.5;
}
#sub .product-inst-qa > a > dl > dt {
	margin-bottom: 10px;
	padding-left: 20px;
	color: #068681;
	font-size: 0;
	font-weight: bold;
	word-break: break-all;
}
#sub .product-inst-qa > a:hover > dl > dt {
	color: #07b0a9;
	text-decoration: underline;
}
#sub .product-inst-qa > a > dl > .question {
	background: url("/images/general/common/qa_icons/ico_qa_201603.png") no-repeat 0 -99px;
}
#sub .product-inst-qa > a > dl > .questionnaire {
	background: url("/images/general/common/qa_icons/ico_qa_201603.png") no-repeat 0 -199px;
}
#sub .product-inst-qa > a > dl > dt > .ttl {
	margin-right: 10px;
	font-size: 15px;
}
#sub .product-inst-qa > a .name {
	display: inline-block;
	color: #755;
	font-size: 12px;
	font-weight: normal;
}
#sub .product-inst-qa > a .name > span {
	font-size: 11px;
}
#sub .product-inst-qa > a > dl > dd {
	word-wrap: break-word;
}
#sub .product-inst-qa .post-pic {
	float: right;
	width: 63px;
	height: 63px;
	margin-bottom: 10px;
	border: 1px solid #d9d2c3;
}
#sub .product-inst-qa > a:hover .post-pic img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
/* jq-img-rspsv */
#sub .product-inst-qa .post-pic .jq-img-rspsv {
	display: block;
	overflow: hidden;
	width: 63px;
	height: 63px;
}
#sub .product-inst-qa .post-pic .jq-img-rspsv img {
	display: block;
}
#sub .product-inst-qa .post-pic .jq-img-rspsv:last-child:not(.is-loaded),
#sub .product-inst-qa .post-pic .jq-img-rspsv.jq-img-rspsv-noextend:not(.is-loaded) {
	background: url("/images/general/common/icons/ico_prg_s.gif") center center no-repeat;
}
#sub .product-inst-qa .post-pic .jq-img-rspsv:not(.is-loaded) img {
	visibility: hidden;
}
#sub .product-inst-qa .post-pic .jq-img-rspsv-noextend {
	position: absolute;
	right: 0;
	top: 0;
}
#sub .product-inst-qa .post-pic + .post-txt {
	padding-right: 75px;
}
#sub .product-inst-qa .post-txt {
	margin-bottom: 10px;
	color: #333;
}
#sub .product-inst-qa .post-info {
	font-size: 0;
	line-height: 1.3;
}
#sub .product-inst-qa .post-pic + .post-info {
	padding-right: 75px;
}
#sub .product-inst-qa .post-info dl,
#sub .product-inst-qa .post-info dt,
#sub .product-inst-qa .post-info dd {
	display: inline-block;
}
#sub .product-inst-qa .post-info .post-info-day {
	display: block;
	width: 100%;
	text-align: right;
}
#sub .product-inst-qa .post-info dl {
	margin-bottom: 5px;
	margin-right: 8px;
	padding-right: 8px;
	border-right: 1px dotted #bdb8ad;
}
#sub .product-inst-qa .post-pic + .post-info > dl {
	margin-bottom: 0;
	border: none;
}
#sub .product-inst-qa .post-pic + .post-info > dl dt,
#sub .product-inst-qa .post-pic + .post-info > dl dd {
	margin-bottom: 5px;
}
#sub .product-inst-qa .post-pic + .post-info > dl .post-info-new + .post-info-expert {
	margin-left: 0;
}
#sub .product-inst-qa .post-info dt {
	margin-right: 5px;
	color: #755;
	font-size: 13px;
}
#sub .product-inst-qa .post-info .post-info-total {
	color: #755;
	font-size: 13px;
	font-weight: bold;
}
#sub .product-inst-qa .post-info .post-info-new {
	height: 14px;
	padding: 1px 5px 0;
	background-color: #e29bac;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	line-height: 14px;
}
#sub .product-inst-qa .post-info .post-info-total + .post-info-new,
#sub .product-inst-qa .post-info .post-info-total + .post-info-expert {
	margin-left: 8px;
}
#sub .product-inst-qa .post-info .post-info-expert {
	height: 14px;
	margin-left: 5px;
	padding: 1px 5px 0;
	background-color: #0fb3d6;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	line-height: 14px;
}
#sub .product-inst-qa .post-info dl + dl {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
#sub .product-inst-qa > a .post-info-day {
	float: right;
	font-size: 12px;
	color:#755;
}
#sub .product-inst-qa .view-more {
	text-align: right;
}
* html #sub .product-inst-qa .view-more a {
	background-position: right -1px;
}
#sub .product-inst-qa .view-more a {
	padding: 0 15px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right 2px;
	font-weight: bold;
}

/* 最新美容記事 widget: product-inst-blog ------------------------*/
#sub .product-inst-blog {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#sub .product-inst-blog .title {
	margin-bottom: 15px;
	padding: 12px 10px 0;
}
#sub .product-inst-blog .title-txt {
	float: left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#sub .product-inst-blog .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	word-wrap: break-word;
	overflow: hidden;
}
* html #sub .product-inst-blog .cat-name{
	padding-top: 3px;
	zoom: 1;
}
#sub .product-inst-blog .lead {
	padding: 0 10px 10px 10px;
	color: #666;
	font-size: 83%;
	line-height: 1.4;
	word-wrap: break-word;
}
#sub .product-inst-blog .blog-pic {
 position: relative;
	float: right;
	margin-left: 5px;
}
#sub .product-inst-blog .jq-img-rspsv {
	display: block;
	overflow: hidden;
	width: 120px;
	height: 120px;
	border: 1px solid #d9d2c3;
}
#sub .product-inst-blog .jq-img-rspsv img {
	display: block;
}
#sub .product-inst-blog .jq-img-rspsv:last-child:not(.is-loaded),
#sub .product-inst-blog .jq-img-rspsv.jq-img-rspsv-noextend:not(.is-loaded) {
	background: url("/images/general/common/icons/ico_prg_s.gif") center center no-repeat;
}
#sub .product-inst-blog .jq-img-rspsv:not(.is-loaded) img {
	visibility: hidden;
}
#sub .product-inst-blog .jq-img-rspsv-noextend {
	position: absolute;
	right: 0;
	top: 0;
}
#sub .product-inst-blog .blog-link {
	position:relative;
	cursor: pointer;
	display: block;
	margin: 0 10px 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #BDB8AD;
	outline: medium none;
	text-decoration: none;
}
#sub .product-inst-blog .blog-link .blog-ttl {
	margin-bottom: 7px;
	color: #068681;
	font-size: 105%;
	font-weight: bold;
	text-decoration: none;
}
#sub .product-inst-blog .blog-link:visited .blog-ttl {
	color: #709293;
	text-decoration: underline;
}
#sub .product-inst-blog .blog-link:hover .blog-ttl {
	color: #07b0a9;
	text-decoration: underline;
}
#sub .product-inst-blog .blog-body {
	margin-bottom: 7px;
	color: #333;
	text-decoration: none;
	line-height: 1.4;
}
#sub .product-inst-blog .blog-link:visited .blog-body {
	text-decoration: none;
}
#sub .product-inst-blog .blog-link:hover .blog-body {
	text-decoration: none;
}
#sub .product-inst-blog .blog-date {
	display: inline-block;
	color: #755;
	font-size: 11px;
	text-decoration: none;
}
#sub .product-inst-blog .blog-body p {
	word-break: break-all;
	word-wrap: break-word;
}
#sub .product-inst-blog .blog-body .blog-txt {
	margin-bottom: 10px;
}
#sub .product-inst-blog .beautist {
	display: inline;
	margin-right: 10px;
	color: #755;
	font-size: 95%;
	text-decoration: none;
	word-break: break-all;
}
#sub .product-inst-blog .beautist .beautist-title,
#sub .product-inst-blog .beautist .beautist-name,
#sub .product-inst-blog .beautist .brand-name {
	margin-left: 5px;
}
#sub .product-inst-blog .beautist .beautist-name,
#sub .product-inst-blog .beautist .brand-name {
	font-weight: bold;
}
#sub .product-inst-blog .beautist .ico-official-bb,
#sub .product-inst-blog .beautist .ico-specialist-bb {
	margin-top: -2px;
}
#sub .product-inst-blog .beautist .ico-official-bb + .beautist-title,
#sub .product-inst-blog .beautist .ico-specialist-bb + .beautist-title {
	margin-left: 10px;
}
#sub .product-inst-blog .blog-link:visited .beautist {
	text-decoration: none;
}
#sub .product-inst-blog .blog-link:hover .beautist-name {
	text-decoration: none;
}
#sub .product-inst-blog .blog-link:visited .blog-date {
	text-decoration: none;
}
#sub .product-inst-blog .blog-link:hover .blog-date {
	text-decoration: none;
}
#sub .product-inst-blog .blog-link:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#sub .product-inst-blog .read-more {
	float: right;
}
#sub .product-inst-blog .beautist + .blog-date + .read-more {
	margin-top: 5px;
}
#sub .product-inst-blog .cmn-viewmore {
	color: #068681;
	text-decoration: underline;
}
#sub .product-inst-blog .blog-link:visited .cmn-viewmore {
 	color: #709293;
	text-decoration: underline;
}
#sub .product-inst-blog .blog-link:hover .cmn-viewmore {
	color: #07b0a9;
	text-decoration: underline;
}
#sub .product-inst-blog .view-more {
	text-align: right;
}
#sub .product-inst-blog .view-more a {
	padding: 0 15px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right 2px;
	font-weight: bold;
}
* html #sub .product-inst-blog .view-more a {
	background-position: right -1px;
}

/* 最新クチコミ widget: product-inst-review ------------------------*/
#sub .product-inst-review {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#sub .product-inst-review .title {
	margin-bottom: 10px;
	padding: 12px 10px 0;
}
#sub .product-inst-review .title-txt {
	float:left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#sub .product-inst-review .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	overflow: hidden;
	word-wrap: break-word;
}
* html #sub .product-inst-review .cat-name {
	padding-top: 3px;
	zoom:1 ;
}
#sub .product-inst-review .lead {
	padding: 0 10px 15px 10px;
	font-size: 83%;
	line-height: 1.4;
	word-wrap: break-word;
}
#sub .product-inst-review .view-more {
	text-align: right;
}
#sub .product-inst-review .view-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
	font-weight: bold;
}
* html #sub .product-inst-review .view-more a {
	background-position: right -1px;
}
#sub .product-inst-review .review-link  {
	cursor: pointer;
	display: block;
	margin: 0 10px 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #BDB8AD;
	outline: medium none;
	text-decoration: none;
}
#sub .product-inst-review .review-pic {
	float: right;
	margin: 0 0 5px 5px;
}
#sub .product-inst-review .review-pic .pic {
	display: table-cell;
	width: 70px;
	height: 70px;
	layout-grid-line: 70px;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#sub .product-inst-review .review-pic .pic {
	height: 72px;
}
}
* html #sub .product-inst-review .review-pic .pic {
	display: block;
}
*:first-child+html #sub .product-inst-review .review-pic .pic {
	display: block;
}
* html #sub .product-inst-review .review-pic .pic img {
	margin-top: -1px;
}
*:first-child+html #sub .product-inst-review .review-pic .pic img {
	margin-top: -1px;
}

/* reviewer-info */
#sub .product-inst-review .reviewer-info {
	margin-bottom: 5px;
}
#sub .product-inst-review .buy,
#sub .product-inst-review .repeat {
	overflow: hidden;
	display: inline-block;
	height: 0;
	margin: -2px 0 0 6px;
	padding-top: 13px;
	background: url(/images/general/common/review_icons/btn_bg.png) no-repeat;
	line-height: 2;
	vertical-align: middle;
}
* html #sub .product-inst-review .buy,
* html #sub .product-inst-review .repeat {
	display: inline;
	zoom: 1;
}
*:first-child+html #sub .product-inst-review .buy,
*:first-child+html #sub .product-inst-review .repeat {
	display: inline;
	zoom: 1;
}
#sub .product-inst-review .buy {
	width: 50px;
	background-position: -50px -151px;
}
#sub .product-inst-review .repeat {
	width: 50px;
	background-position: 0px -151px;
}
#sub .product-inst-review .reviewer-pic {
	float: left;
	margin-right: 5px;
}
#sub .product-inst-review .reviewer-pic .pic {
	display: table-cell;
	width: 30px;
	height: 30px;
	layout-grid-line: 30px;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#sub .product-inst-review .reviewer-pic .pic {
	height: 32px;
}
}
* html #sub .product-inst-review .reviewer-pic .pic {
	display: block;
}
*:first-child+html #sub .product-inst-review .reviewer-pic .pic {
	display: block;
}
* html #sub .product-inst-review .reviewer-pic .pic img {
	margin-top: -1px;
}
*:first-child+html #sub .product-inst-review .reviewer-pic .pic img {
	margin-top: -1px;
}
#sub .product-inst-review .reviewer-desc {
	overflow: hidden;
	margin-bottom: 3px;
	color: #333;
	letter-spacing: -.4em;
}
#sub .product-inst-review .prm {
	display: inline-block;
	margin-right: 10px;
	color: #755;
	font-size: 95%;
	letter-spacing: normal;
}
* html #sub .product-inst-review .prm {
	display: inline;
	zoom: 1;
}
*:first-child+html #sub .product-inst-review .prm {
	display: inline;
	zoom: 1;
}
#sub .product-inst-review .prm-rate {
	display: block;
}
#sub .product-inst-review .icon-cmn-fav{
	padding-bottom: 2px;
}
#sub .product-inst-review .reviewer-rating {
	display: inline-block;
	padding-top: 2px;
	color: #000;
}
* html #sub .product-inst-review .reviewer-rating {
	display: inline;
	zoom: 1;
}
*:first-child+html #sub .product-inst-review .reviewer-rating {
	display: inline;
	zoom: 1;
}
#sub .product-inst-review .review-body {
	margin-bottom: 7px;
	color: #333;
	word-break: break-all; /* IE only */
	line-height: 1.4;
}
#sub .product-inst-review .date {
	float: left;
	color: #755;
	font-size: 95%;
}
#sub .product-inst-review .read-more {
	float: right;
}
#sub .product-inst-review .cmn-viewmore {
	color: #068681;
	text-decoration: underline;
}
#sub .product-inst-review .review-link:visited .cmn-viewmore {
 color: #709293;
	text-decoration: underline;
}
#sub .product-inst-review .review-link:hover .cmn-viewmore {
	color: #07b0a9;
	text-decoration: underline;
}
#sub .product-inst-review .review-link:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}

/* 最新投稿写真・動画 widget: product-inst-newphoto ------------------------*/
#sub .product-inst-newphoto {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#sub .product-inst-newphoto .title {
	margin-bottom: 10px;
	padding: 12px 10px 0;
}
#sub .product-inst-newphoto .title-txt {
	float: left;
 margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#sub .product-inst-newphoto .cat-name {
	display: block;
	margin-left: 5px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	vertical-align: middle;
	word-wrap: break-word;
	overflow: hidden;
}
* html #sub .product-inst-newphoto .cat-name{
	line-height: 1.4;
}
#sub .product-inst-newphoto .lead {
	padding: 0 10px 15px 10px;
	font-size: 83%;
	line-height: 1.4;
	word-wrap: break-word;
}
/* newphoto-list */
#sub .newphoto-list {
	margin-bottom: 10px;
}
#sub .newphoto-list ul {
	margin-bottom: 5px;
}
#sub .newphoto-list ul:after { content:"."; display:block; height:0px; clear:both; visibility:hidden; }
#sub .newphoto-list li {
	float: left;
	margin: 0 3px 5px 0;
}
* html #sub .newphoto-list ul {
	height: 1%;
}
#sub .newphoto-list li.last-item {
	margin-right: 0;
}
#sub .newphoto-list .pic:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#sub .newphoto-list .pic {
	display: table-cell;
	width: 70px;
	height: 70px;
	layout-grid-line: 70px;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#sub .newphoto-list .pic {
	height: 72px;
}
}
* html #sub .newphoto-list .pic {
	display: block;
}
*:first-child+html #sub .newphoto-list .pic {
	display: block;
}
* html #sub .newphoto-list .pic img {
	margin-top: -1px;
}
*:first-child+html #sub .newphoto-list .pic img {
	margin-top: -1px;
}

/* newmovie-list */
#sub .newmovie-list {
	margin-bottom: 10px;
}
#sub .newmovie-list ul {
	margin-bottom: 5px;
}
#sub .newmovie-list ul:after { content:"."; display:block; height:0px; clear:both; visibility:hidden; }
#sub .newmovie-list li {
	float: left;
	position: relative;
	margin: 0 3px 5px 0;
}
#sub .newmovie-list li a:link,
#sub .newmovie-list li a:visited {
	text-decoration: none;
}
#sub .newmovie-list .pic {
	display: table-cell;
	width: 70px;
	height: 70px;
	layout-grid-line: 70px;
	background: #000;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#sub .newmovie-list .pic {
	height: 72px;
}
}
* html #sub .newmovie-list .pic {
	display: block;
}
*:first-child+html #sub .newmovie-list .pic {
	display: block;
}
* html #sub .newmovie-list .pic img {
	margin-top: -1px;
}
*:first-child+html #sub .newmovie-list .pic img {
	margin-top: -1px;
}
#sub .newmovie-list .pic-movie {
	height: 53px;
	filter: alpha(opacity=100);
}
#sub .newmovie-list .pic:hover .pic-movie {
	height: 53px;
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#sub .newmovie-list .bg-layer {
	display: block;
	background: #fff;
	margin-bottom: -1px;
}
* html #sub .newmovie-list .bg-layer {
	display: inline;
}
*:first-child+html #sub .newmovie-list .bg-layer {
	display: inline;
}
#sub .newmovie-list .ico-video {
	position: absolute;
	left: 3px;
	bottom: 10px;
}
#sub .newmovie-list .time {
	display: block;
	position: absolute;
	right: 1px;
	bottom: 10px;
	padding: 2px;
	background: #000;
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
	color: #fff;
	font-size: 75%;
	text-decoration: none;
	line-height: 1;
}
* html #sub .newmovie-list .time {
	padding: 0 2px;
	layout-grid-line: none;
	cursor: pointer;
}
*:first-child+html #sub .newmovie-list .time {
	padding: 0 2px;
	layout-grid-line: none;
	cursor: pointer;
}
#sub .product-inst-newphoto .view-more {
	clear: both;
	text-align: right;
}
#sub .product-inst-newphoto .view-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
	font-weight: bold;
}
* html #sub .product-inst-newphoto .view-more a {
	background-position: right -1px;
}

/** product top ----------------------------------------------------------------**/

/* #pup-mov ------------------------*/
#pup-mov {
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#pup-mov h3 {
	margin-bottom: 18px;
	padding: 12px 10px 0 64px;
	background: url("/images/cnt/make-movie/bg_pup_mov_sp.png") 10px -191px no-repeat;
	font-size: 115%;
	font-weight: bold;
}
#pup-mov ul {
	margin-bottom: 19px;
}
#pup-mov li {
	float: left;
	width: 146px;
	margin-left: 10px;
}
#pup-mov a {
	display: block;
	text-decoration: none;
}
#pup-mov img {
	margin-bottom: 7px;
	border: 1px solid #bdb8ad;
}
#pup-mov a:hover img {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
#pup-mov p {
	margin: 0 2px;
	font-size: 95%;
	line-height: 1.45;
	word-wrap: break-word;
}

/* #product-spec ------------------------*/
#product-spec {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#product-spec .title {
	margin-bottom: 15px;
	padding: 12px 10px 0;
}
#product-spec .title-txt {
	float: left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#product-spec .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	border-left: 1px dotted #bdb8ad;
	color: #555;
	font-size: 83%;
	word-wrap: break-word;
	overflow: hidden;
}
* html #product-spec .cat-name{
	display: inline;
	zoom: 1;
}
*:first-child+html #product-spec .cat-name {
	display: inline;
	zoom: 1;
}
#product-spec dl {
	background: #fff;
	border-bottom: 1px dotted #bdb8ad;
}
#product-spec dt {
	float: left;
	width: 127px;
	padding: 4px 5px 4px 10px;
	color: #444;
	font-size: 95%;
	line-height: 1.5;
}
#product-spec dd {
	float: right;
	width: 480px;
	padding: 4px 4px 4px 0;
	line-height: 1.5;
	word-wrap:break-word;
}
#product-spec dd a {
	text-decoration: none;
}
#product-spec dd a:hover {
	text-decoration: underline;
}
#product-spec .item-category span {
	display: block;
}
#product-spec .ico-brand-info {
	display: block;
	width: 85px;
	height: 0;
	padding-top: 16px;
	background: url("/images/cnt/product/btn_brandinfo.png") no-repeat top left;
	overflow: hidden;
	line-height: 2;
}
#product-spec .brand-info {
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;
}
* html #product-spec .brand-info {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-spec .brand-info {
	display: inline;
	zoom: 1;
}
#product-spec .ico-brand-info:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-spec .brand-info .icon-cmn-tieup {
	vertical-align: middle;
}
#product-spec .bestcosme li {
	padding-left: 16px;
	background: url("/images/general/common/ranking_icons/ico_csm_bestcosme_s.png") top left no-repeat;
}
#product-spec .bestcosme .trigger {
	padding-right: 10px;
 background: url("/images/general/common/icons/icon_arw_s_brn.png") right 7px no-repeat;
	font-size: 83%;
	text-align: right;
}
#product-spec .bestcosme .trigger a {
	color: #533;
	text-decoration: underline;
}
#product-spec .bestcosme .trigger a:hover {
 color: #8E7C53;
}
#product-spec .bestcosme .trigger.active {
 background: url("/images/general/common/icons/icon_arw_s_brn.png") right -8px no-repeat;
}
#product-spec .bestcosme .toggle {
	display: none;
}
#product-spec .ranking-in ul {
	padding: 2px 0 2px 14px;
	background: url("/images/general/common/ranking_icons/ico_csm_rankingin_s.png") no-repeat left 3px
}
#product-spec .ranking-in li {
	float: left;
	margin-right: 8px;
	padding-left: 8px;
	border-left: 1px dotted #bdb8ad;
}
* html #product-spec .ranking-in li {
	display: inline;
	float: none;
	zoom: 1;
}
*:first-child+html #product-spec .ranking-in li {
	display: inline;
	float: none;
	zoom: 1;
}
#product-spec .ranking-in li.first {
	border-left: none;
}
#product-spec .item-description a {
	text-decoration: underline;
}
#product-spec .ingredient dt a {
	display: inline-block;
	height: 13px;
	padding: 2px 3px 0;
	background: #7abeaf;
	border: 1px solid #5b9f90;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	line-height: 14px;
}
#product-spec .ingredient li {
	float: left;
	margin-right: 15px;
}
* html #product-spec .ingredient li {
	display: inline;
	float: none;
	zoom: 1;
}
*:first-child+html #product-spec .ingredient li {
	display: inline;
	float: none;
	zoom: 1;
}
#product-spec .ingredient li a {
	text-decoration: underline;
}
#product-spec .line-up dd {
	padding-top: 10px;
}
#product-spec .line-up img {
	border: 1px solid #D9D2C3;
}
#product-spec .line-up a:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-spec .product-lineup-list li {
	float: left;
	padding: 0 8px 10px 0;
}
#product-spec .line-up .view-more {
	display: block;
	float: left;
	width: 430px;
}
#product-spec .line-up .view-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
	text-decoration: underline;
}
#product-spec .line-up .trigger {
	padding-right: 10px;
 background: url("/images/general/common/icons/icon_arw_s_brn.png") right 7px no-repeat;
	font-size: 83%;
	text-align: right;
}
#product-spec .line-up .trigger a {
	color: #533;
	text-decoration: underline;
}
#product-spec .line-up .trigger.active {
 background: url("/images/general/common/icons/icon_arw_s_brn.png") right -8px no-repeat;
}
#product-spec .line-up .toggle {
	display: none;
}
#product-spec .news dd {
	margin-top: 0;
	margin-bottom: 0;
}
#product-spec .news p {
	margin: 7px 0;
	padding-left: 5px;
	border-left: 3px solid #bbddd1;
}
#product-spec .color-txt-list li {
	display: inherit;
	margin: 0 10px 5px 2px;
	padding-left: 10px;
	background: url("/images/general/common/icons/ico_list_brn.png") no-repeat left 0.6em;
	word-wrap: break-word;
}
* html #product-spec .color-txt-list li {
	zoom: 1;
}
*:first-child+html #product-spec .color-txt-list li {
	zoom: 1;
}
#product-spec .color-pic-list li {
	display: inline-block;
	margin: 0 10px 10px 0;
	vertical-align: top;
}
* html #product-spec .color-pic-list li {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-spec .color-pic-list li {
	display: inline;
	zoom: 1;
}
#product-spec .color-pic-list a {
	display: block;
	outline: medium none;
	cursor: pointer;
	vertical-align: top;
}
* html #product-spec .color-pic-list a {
	display: inline;
	zoom: 1;
}
#product-spec .color-pic-list .color-pic {
	float: left;
	margin-right: 3px;
}
#product-spec .color-pic-list .color-txt {
	float: left;
	width: 90px;
	line-height: 1.15;
	word-break: break-all;
	word-wrap: break-word;
}
* html #product-spec .color-pic-list .color-txt {
	line-height: 1.3;
	vertical-align:baseline;
}
*:first-child+html #product-spec .color-pic-list .color-txt {
	line-height: 1.3;
	vertical-align:baseline;
}
#product-spec .color-pic-list a:hover .color-txt {
	text-decoration: underline;
}
#product-spec .color-pic-list .pic {
	display: table-cell;
	width: 50px;
	height: 50px;
	layout-grid-line: 50px;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#product-spec .color-pic-list .pic {
	height: 52px;
}
}
* html #product-spec .color-pic-list .pic {
	display: block;
}
*:first-child+html #product-spec .color-pic-list .pic {
	display: block;
}
* html #product-spec .color-pic-list .pic img {
	margin-top: -1px;
}
*:first-child+html #product-spec .color-pic-list .pic img {
	margin-top: -1px;
}
#product-spec .color-pic-list a:hover .pic img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
 text-decoration: none;
}
#product-spec .color-ptn dd {
	margin-bottom: -10px;
}
#product-spec .color-ptn .trigger {
	margin: -10px 0 10px 0;
	padding-right: 10px;
 background: url("/images/general/common/icons/icon_arw_s_brn.png") right 7px no-repeat;
	font-size: 83%;
	text-align: right;
	zoom: 1;
}
#product-spec .color-ptn .trigger a {
	color: #533;
	text-decoration: underline;
}
#product-spec .color-ptn .trigger a:hover {
	color: #8E7C53;
}
#product-spec .color-ptn .trigger.active {
 background: url("/images/general/common/icons/icon_arw_s_brn.png") right -8px no-repeat;
}
#product-spec .color-ptn .toggle {
	display: none;
}
#product-spec .specials .trigger {
	padding-right: 10px;
 background: url("/images/general/common/icons/icon_arw_s_brn.png") right 7px no-repeat;
	font-size: 83%;
	text-align: right;
}
#product-spec .specials .trigger a {
	color: #533;
	text-decoration: underline;
}
#product-spec .specials .trigger a:hover {
 color: #8E7C53;
}
#product-spec .specials .trigger.active {
 background: url("/images/general/common/icons/icon_arw_s_brn.png") right -8px no-repeat;
}
#product-spec .specials .toggle {
	display: none;
}

/* jan-code ----------------- */
#product-spec .jan-code .toggle {
    display: none;
}
#product-spec .jan-code .trigger {
    margin: 0 10px 10px 0;
    padding-right: 10px;
    background: url("/images/general/common/icons/icon_arw_s_brn.png") right 7px no-repeat;
    font-size: 83%;
    text-align: right;
}
#product-spec .jan-code .trigger.active {
    background: url("/images/general/common/icons/icon_arw_s_brn.png") right -8px no-repeat;
}
#product-spec .jan-code .trigger a {
    color: #533;
    text-decoration: underline;
}

/* #product-line-up ------------------------*/
#product-line-up {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#product-line-up .title {
	margin-bottom: 15px;
	padding: 12px 10px 0;
}
#product-line-up .title-txt {
	float: left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#product-line-up .cat-name {
	display: block;
	float: left;
	margin-top: 2px;
	padding-left: 5px;
	border-left: 1px dotted #bdb8ad;
	color: #555;
	font-size: 83%;
}
* html #product-line-up .cat-name{
	display: inline;
	zoom: 1;
}
*:first-child+html #product-line-up .cat-name {
	display: inline;
	zoom: 1;
}
#product-line-up .pro-list {
	float: left;
	width: 550px;
	margin-top: 2px;
	padding-left: 10px;
	color: #555;
	text-align: left;
	font-weight: bold;
}
#product-line-up .pro-list a {
	padding-right: 14px;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
	text-decoration: underline;
}
#product-line-up .item-list {
	padding: 0 5px;
}
#product-line-up .item-list li {
	display: inline-block;
	float: none;
	width: 195px;
	height: auto;
	padding: 0 5px 10px 5px;
	vertical-align: top;
}
#product-line-up .item-list .item-list-pic {
	display: block;
	float: left;
	width: 70px;
}
#product-line-up .item-list img {
	border: 1px solid #D9D2C3;
	pointer-events: none;
}
#product-line-up .item-list a:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-line-up .item-list .item-list-txt {
	display: inline-block;
	float: right;
	width: 118px;
	margin-top: 5px;
	line-height: 1.15;
	word-break: break-all;
	word-wrap: break-word;
}
* html #product-line-up .item-list .item-list-txt {
	line-height: 1.3;
	vertical-align: baseline;
}
*:first-child+html #product-line-up .item-list .item-list-txt {
	line-height: 1.3;
	vertical-align: baseline;
}
#product-line-up .item-list a:hover .item-list-txt {
	text-decoration: underline;
}
#product-line-up .trigger {
	margin: 0 10px 10px 0;
	padding-right: 10px;
	background: url("/images/general/common/icons/icon_arw_s_brn.png") right 7px no-repeat;
	font-size: 83%;
	text-align: right;
}
#product-line-up .trigger a {
	color: #533;
	text-decoration: underline;
}
#product-line-up .trigger.active {
	background: url("/images/general/common/icons/icon_arw_s_brn.png") right -8px no-repeat;
}
#product-line-up .toggle {
	display: none;
}

/* #product-special-news ------------------------*/
#product-special-news {
  margin-bottom: 20px;
  padding: 3px;
  background: #e8e5e0;
  border: 1px solid #bdb8ad;
}
* html #product-special-news {
	z-index:100;
}
*:first-child+html #product-special-news {
	z-index:100;
}
#product-special-news .news-col {
  background: #fff;
  padding: 6px 10px;
  position: relative;
}
#product-special-news .news-modules.plural {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px dotted #bdb8ad;
}
#product-special-news h3 {
  margin-bottom: 6px;
  font-size: 105%;
  font-weight: bold;
}
#product-special-news .pr {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 95%;
  color: #666;
}
#product-special-news .photo a:hover img {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
opacity: 0.75;
}
#product-special-news .news-photo.left {
  float: left;
  padding: 0 10px 5px 0;
}
#product-special-news .news-photo.right {
  float: right;
  padding: 0 0 5px 10px;
}
#product-special-news .text {
	display: inline;
	line-height: 1.4;
}
#product-special-news .text span.title {
  display: block;
  font-weight: bold;
}
#product-special-news .text span.title a {
  text-decoration: none;
}
#product-special-news .text span.title a:hover {
  text-decoration: underline;
}
#product-special-news a.cmn-viewmore {
  display: block;
  margin-top: 6px;
  text-align: right;
}

/* #product-tu-bnr ------------------------*/
#product-tu-bnr {
	margin-bottom: 20px;
}
/* #product-sp-bnr ------------------------*/
#product-sp-bnr {
	margin-bottom: 20px;
}

/** クチコミまとめバナー ----------------------------------------------------------------**/
/* bnr-rvw-pup ------------------------*/
#bnr-rvw-pup {
	margin-bottom: 10px;
}

/** ブランド クチコミPickUp ----------------------------------------------------------------**/
/* brd-pup-rvw ------------------------*/
#cmn-product-info + #brd-pup-rvw {

}
#brd-pup-rvw {
	margin-bottom: 10px;
	padding: 10px 10px 0;
	background: url("/images/product/bg_brd_pup_rvw.png") top left no-repeat;
}
#brd-pup-rvw .review-link {
	display: block;
	outline: medium none;
	text-decoration: none;
	cursor: pointer;
}
#brd-pup-rvw .review-link:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#brd-pup-rvw .review-pic {
	float: right;
	margin: 0 0 5px 5px;
}
#brd-pup-rvw .review-pic .pic {
	display: table-cell;
	width: 70px;
	height: 70px;
	layout-grid-line: 70px;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#brd-pup-rvw .review-pic .pic {
	height: 72px;
}
}
* html #brd-pup-rvw .review-pic .pic {
	display: block;
}
*:first-child+html #brd-pup-rvw .review-pic .pic {
	display: block;
}
* html #brd-pup-rvw .review-pic .pic img {
	margin-top: -1px;
}
*:first-child+html #brd-pup-rvw .review-pic .pic img {
	margin-top: -1px;
}
/* reviewer-info */
#brd-pup-rvw .reviewer-info {
	position: relative;
	margin-bottom: 5px;
}
#brd-pup-rvw .reviewer-info .pr {
	position: absolute;
	top: 0;
	right: 0;
	padding: 2px 5px 0;
	background-color: #b3a986;
	color: #fff;
	font-size: 95%;
	font-weight: bold;
	line-height: 1;
}
#brd-pup-rvw .ico-pup {
	float: left;
	width: 85px;
	height: 0;
	padding-top: 52px;
	background: url("/images/product/ico_brd_pup_rvw.png") top left no-repeat;
	overflow: hidden;
	line-height: 2;
}
#brd-pup-rvw .reviewer-pic {
	float: left;
	margin: 10px 5px 0 5px;
}
#brd-pup-rvw .reviewer-pic .pic {
	display: table-cell;
	width: 30px;
	height: 30px;
	layout-grid-line: 30px;
	border: 1px solid #D9D2C3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#brd-pup-rvw .reviewer-pic .pic {
	height: 32px;
}
}
* html #brd-pup-rvw .reviewer-pic .pic {
	display: block;
}
*:first-child+html #brd-pup-rvw .reviewer-pic .pic {
	display: block;
}
* html #brd-pup-rvw .reviewer-pic .pic img {
	margin-top: -1px;
}
*:first-child+html #brd-pup-rvw .reviewer-pic .pic img {
	margin-top: -1px;
}
#brd-pup-rvw .reviewer-desc {
	float: left;
	width: 450px;
	margin-top: 10px;
	color: #333;
	letter-spacing: -0.4em;
}
#brd-pup-rvw .reviewer-desc .rvw-num span,
#brd-pup-rvw .reviewer-desc .thk-num span {
	margin-left: 5px;
}
#brd-pup-rvw ul li{
	display: inline-block;
	margin-right: 10px;
	color: #755;
	font-size: 95%;
	letter-spacing: normal;
}
* html #brd-pup-rvw ul {
	display: inline;
	zoom: 1;
}
*:first-child+html #brd-pup-rvw ul {
	display: inline;
	zoom: 1;
}
#brd-pup-rvw .ico-cmn-auth {
	margin-bottom: 2px;
}
#brd-pup-rvw .reviewer-rating {
	display: inline-block;
	margin-right: 10px;
	padding-top: 2px;
	letter-spacing: normal;
}
* html #brd-pup-rvw .reviewer-rating,
*:first-child+html #brd-pup-rvw .reviewer-rating {
	display: inline;
	zoom: 1;
}
#brd-pup-rvw .review-body {
	margin-bottom: 7px;
	color: #333;
	word-break: break-all; /* IE only */
	line-height: 1.4;
}
#brd-pup-rvw .date {
	color: #755;
	font-size: 95%;
	text-align: left;
}
#brd-pup-rvw .read-more {
	float: right;
}
#brd-pup-rvw .viewmore {
	color: #068681;
	text-decoration: underline;
}
#brd-pup-rvw .review-link:visited .viewmore {
 	color: #709293;
	text-decoration: underline;
}
#brd-pup-rvw .review-link:hover .viewmore {
	color: #07b0a9;
	text-decoration: underline;
}

/** product-review ----------------------------------------------------------------**/

/* #product-review .paging ------------------------*/
#product-review .cmn-modules-paging,
#product-review .cmn-paging {
	margin-bottom: 20px;
}
#product-review #product-review-navi + .cmn-paging {
	margin-bottom: 9px;
}
#product-review .cmn-paging li {
	margin: 0;
	padding: 0;
}
#product-review .cmn-paging .back {
	float:left
}
#product-review .cmn-paging .back span {
	display: block;
	overflow: hidden;
	width: 49px;
	height: 0;
	margin-right: 5px;
	padding: 26px 0 0 0;
	background: url("/images/cnt/product/btn_pager.png") no-repeat left top;
	line-height: 26px;
}
#product-review .cmn-paging .back a {
	display: block;
	overflow: hidden;
	width: 49px;
	height: 0;
	margin-right: 5px;
	padding: 26px 0 0 0;
	background: url("/images/cnt/product/btn_pager.png") no-repeat left -26px;
	line-height: 26px;
}
#product-review .cmn-paging .next {
	float: right;
}
#product-review .cmn-paging .next span {
	display: block;
	overflow: hidden;
	width: 49px;
	height: 0;
	margin: 0;
	padding: 26px 0 0 0;
	background: url("/images/cnt/product/btn_pager.png") no-repeat -49px top;
	line-height: 26px;
}
#product-review .cmn-paging .next a {
	display: block;
	overflow: hidden;
	width: 49px;
	height: 0;
	margin: 0;
	padding: 26px 0 0 0;
	background: url("/images/cnt/product/btn_pager.png") no-repeat -49px -26px;
	line-height: 26px;
}
#product-review .cmn-paging .back a:hover,
#product-review .cmn-paging .next a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
	cursor: pointer;
}
#product-review .cmn-paging .number {
	float: left;
	margin: 0;
	padding: 4px 10px 2px;
	min-height: 26px;
	box-sizing: border-box;
	border: 1px solid #d9d2c3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	width: 527px;
}
#product-review .cmn-paging .number li {
	margin: 0 4px;
	font-size: 13px;
}

/* #product-review-note ------------------------*/
#product-review-note {
	margin-bottom: 20px;
	color: #666;
	font-size: 85%;
	text-align: right;
}

/* product-review-null ------------------------*/
#product-review .cmn-null{
    margin-bottom: 50px;
}
#product-review .product-review-null{
    margin-top: 20px;
}

/** product-review-indivi ----------------------------------------------------------**/

#product-review-indivi {
  margin-bottom:30px;
}

#product-rev-ind-more a {
  overflow: hidden;
  display: block;
  margin: 20px auto 18px;
  width: 241px;
  height: 0;
  padding-top: 30px;
  background: url(/images/cnt/product/btn_rev_ind_more.png) no-repeat top left;
  line-height: 2;
}
#product-rev-ind-more a:hover {
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  opacity: 0.65;
}


/** product-photo-list ----------------------------------------------------------**/
#product-photo-list {
    margin-bottom: 30px;
}
#product-photo-list #product-sort {
    margin-top: 20px;
}
#product-photo-list .cmn-modules-paging,
#product-photo-list .cmn-paging {
    margin-bottom: 12px;
}
#product-photo-list .cmn-null {
    margin-top: 20px;
}

/** product-photo ------------------------------**/
#product-photo {
 overflow: hidden;
	border-bottom: 1px dotted #bdb8ad;
}
#product-photo .cmn-review-photo {
	margin-left: -10px;
	margin-bottom: 5px;
	padding-top: 1px;
	padding-bottom: 13px;
}
#product-photo .cmn-review-photo li {
	float: left;
	margin: 0 0 10px 10px;
	padding-right: 16px;
 background: url("/images/general/common/review_icons/bg_review_photo.png") no-repeat right 85px;
	vertical-align: top;
	zoom: 1;
}
* html #product-photo .cmn-review-photo li {
	float: none;
	display: inline;
}
#product-photo .cmn-review-photo table {
	border: 1px solid #ccc;
	width: 100px;
	height: 100px;
}
* html #product-photo .cmn-review-photo table {
	display: inline;
}
#product-photo .cmn-review-photo td {
	vertical-align:center;
	text-align:center;
}
html>body #product-photo .cmn-review-photo a:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
#product-photo .cmn-review-photo p {
	margin-top: 7px;
	font-size: 83%;
	line-height: 1.2;
	color: #69511a;
	text-align: center;
}
/* null */
#product-photo .cmn-null {
	margin-bottom: 50px;
}
#product-photo .cmn-null .post-review a {
	overflow: hidden;
	display: block;
	width: 118px;
	height: 0;
	margin-top: 10px;
	padding-top: 21px;
	background: url("/images/general/common/btn/btn_150728.png") no-repeat 0 0;
	line-height: 2;
}
#product-photo .cmn-null .post-review a:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}

/** product-photo-indivi ----------------------------------------------------------**/
#product-photo-indivi {
  margin: 14px auto 0;
}
#product-photo-indivi table {
    width: 635px;
}
#product-photo-indivi td {
    padding-bottom: 7px;
  font-size: 105%;
  line-height: 1.1;
    color: #999;
}
#product-photo-indivi .photo-img {
    width: 440px;
  padding: 0 15px 7px 15px;
    text-align: center;
}

/* paging */
#product-photo-indivi .to-list {
    text-align: center;
}
#product-photo-indivi .to-list a {
  display: inline-block;
  margin-bottom: 8px;
    padding-left: 11px;
    background: url("/images/general/common/icons/ico_paging_tolist.png") no-repeat scroll left center transparent;
}
#product-photo-indivi .to-list a:visited {
    color: #078581;
}
#product-photo-indivi .to-list a:hover {
    color: #07B0A9;
}
#product-photo-indivi .back {
    width: 82px;
    text-align: right;
}
#product-photo-indivi .back a {
    padding-left: 11px;
    background: url("/images/general/common/icons/ico_paging_back.png") no-repeat scroll left center transparent;
}
#product-photo-indivi .back a:visited {
    color: #078581;
}
#product-photo-indivi .back a:hover {
    color: #07B0A9;
}
#product-photo-indivi .next {
    width: 82px;
    text-align: left;
}
#product-photo-indivi .next a {
    padding-right: 10px;
    background: url("/images/general/common/icons/ico_paging_next.png") no-repeat scroll right center transparent;
}
#product-photo-indivi .next a:visited {
    color: #078581;
}
#product-photo-indivi .next a:hover {
    color: #07B0A9;
}

/* .detail */
#product-photo-indivi .photo-sec {
	margin-bottom: 6px;
	padding: 10px;
	border: 1px solid #bdb8ad;
	background-color: #f4f2ec;
}
/* .head */
#product-photo-indivi .head {
	display: flex;
	margin-bottom: 8px;
	padding-bottom: 7px;
	border-bottom: 1px dotted #bdb8ad;
	color: #69511a;
	line-height: 1.4;
	align-items: center;
}
#product-photo-indivi .head dl {
	overflow: hidden;
	margin-right: 5px;
	margin-bottom: 2px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	flex: 1;
}
#product-photo-indivi .head dt,
#product-photo-indivi .head dd {
	display: inline-block;
}
#product-photo-indivi .head dt {
	padding-right: 5px;
}
#product-photo-indivi .head dt a {
	margin-left: 4px;
	font-size: 15px;
}
#product-photo-indivi .head dt span {
	margin-left: 4px;
	font-size: 83%;
}
#product-photo-indivi .head dd ul,
#product-photo-indivi .head dd li {
	display: inline;
}
#product-photo-indivi .head dd li {
	font-size: 95%;
}
#product-photo-indivi .head dd li:not(:first-child) {
	margin-left: 8px;
	padding-left: 8px;
	border-left: 1px dotted #bdb8ad;
}
#product-photo-indivi .head .act-button {
	width: 91px;
}
/* .body */
#product-photo-indivi .body {
	margin-bottom: 2px;
	line-height: 1.4;
}
#product-photo-indivi .body a {
	margin-left: 5px;
}
#product-photo-indivi .body span {
	display: block;
	text-align: right;
}

/* view-more ------------------------*/
#product-photo-indivi .view-more {
	margin-bottom: 25px;
	font-size: 95%;
	text-align: right;
}
#product-photo-indivi .view-more a {
	padding-right: 14px;
	background: url(/images/general/common/icons/ico_arw_l_grn_right.png) no-repeat right 1px;
	font-weight: normal;
}
/* paging ------------------------*/
#product-photo .product-paging-simple {
    margin-bottom: 40px;
}
/** product-video-list ----------------------------------------------------------**/
#product-video-list {
		margin-bottom: 30px;
}
#product-video-list #product-sort {
		margin-top: 20px;
}
#product-video-list .cmn-modules-paging,
#product-video-list .cmn-paging {
		margin-bottom: 12px;
}
#product-video-list .cmn-null {
		margin-top: 20px;
}
/** product-video ------------------------------**/
/* null */
#product-video .cmn-null {
		margin-bottom: 50px;
}
#product-video .cmn-null .post-review a {
		display: block;
		overflow: hidden;
		width: 118px;
		height: 0;
		margin-top: 10px;
		padding-top: 21px;
		background: url("/images/general/common/btn/btn_150728.png") no-repeat 0 0;
		line-height: 2;
}
#product-video .cmn-null .post-review a:hover {
		filter: alpha(opacity=85);
		-moz-opacity: 0.85;
		opacity: 0.85;
}

/** product-video-indivi ----------------------------------------------------------**/
#product-video-indivi {
		margin: 14px auto 0;
}
#product-video-indivi table {
		width: 615px;
}
#product-video-indivi td {
		padding-bottom: 7px;
		color: #999;
		font-size: 105%;
		line-height: 1.1;
}
#product-video-indivi .video-img {
		width: 480px;
		padding: 0 15px 7px;
		text-align: center;
}
/* paging */
#product-video-indivi .to-list {
		text-align: center;
}
#product-video-indivi .to-list a {
		display: inline-block;
		margin-bottom: 8px;
		padding-left: 11px;
		background: url("/images/general/common/icons/ico_paging_tolist.png") no-repeat scroll left center transparent;
}
#product-video-indivi .to-list a:visited {
		color: #078581;
}
#product-video-indivi .to-list a:hover {
		color: #07b0a9;
}
#product-video-indivi .back {
		width: 82px;
		text-align: right;
}
#product-video-indivi .back a {
		padding-left: 11px;
		background: url("/images/general/common/icons/ico_paging_back.png") no-repeat scroll left center transparent;
}
#product-video-indivi .back a:visited {
		color: #078581;
}
#product-video-indivi .back a:hover {
		color: #07b0a9;
}
#product-video-indivi .next {
		width: 82px;
		text-align: left;
}
#product-video-indivi .next a {
		padding-right: 10px;
		background: url("/images/general/common/icons/ico_paging_next.png") no-repeat scroll right center transparent;
}
#product-video-indivi .next a:visited {
		color: #078581;
}
#product-video-indivi .next a:hover {
		color: #07b0a9;
}
/* .video-expl */
#product-video-indivi .video-expl {
	margin-bottom: 10px;
	padding: 10px;
	border: 1px dotted #ccc;
	background: #fff;
	color: #333;
	font-size: 100%;
	line-height: 1.4;
	word-wrap: break-word;
}
/* .detail */
#product-video-indivi .video-sec {
	margin-bottom: 6px;
	padding: 10px;
	border: 1px solid #bdb8ad;
	background-color: #f4f2ec;
}
/* .head */
#product-video-indivi .head {
	display: flex;
	margin-bottom: 8px;
	padding-bottom: 7px;
	border-bottom: 1px dotted #bdb8ad;
	color: #69511a;
	line-height: 1.4;
	align-items: center;
}
#product-video-indivi .head dl {
	overflow: hidden;
	margin-right: 5px;
	margin-bottom: 2px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	flex: 1;
}
#product-video-indivi .head dt,
#product-video-indivi .head dd {
	display: inline-block;
}
#product-video-indivi .head dt {
	padding-right: 5px;
}
#product-video-indivi .head dt a {
	margin-left: 4px;
	font-size: 15px;
}
#product-video-indivi .head dt span {
	margin-left: 4px;
	font-size: 83%;
}
#product-video-indivi .head dd ul,
#product-video-indivi .head dd li {
	display: inline;
}
#product-video-indivi .head dd li {
	font-size: 95%;
}
#product-video-indivi .head dd li:not(:first-child) {
	margin-left: 8px;
	padding-left: 8px;
	border-left: 1px dotted #bdb8ad;
}
#product-video-indivi .head .act-button {
	width: 91px;
}
/* .body */
#product-video-indivi .body {
	margin-bottom: 2px;
	line-height: 1.4;
}
#product-video-indivi .body a {
	margin-left: 5px;
	font-weight: normal;
}
#product-video-indivi .body span {
	display: block;
	text-align: right;
}
/* view-more ------------------------*/
#product-video-indivi .view-more {
	margin-bottom: 25px;
	font-size: 95%;
	text-align: right;
}
#product-video-indivi .view-more a {
	padding-right: 14px;
	background: url(/images/general/common/icons/ico_arw_l_grn_right.png) no-repeat right center;
	font-weight: normal;
}
/* paging ------------------------*/
#product-video .product-paging-simple {
	margin-bottom: 40px;
}
/** product-qa ----------------------------------------------------------------**/

/* #product-qa .paging ------------------------*/
#product-qa .cmn-modules-paging,
#product-qa .cmn-paging {
	margin-bottom: 10px;
}
#product-qa .cmn-paging.paging-top {
	margin-bottom: 0;
	padding: 0;
}
#product-qa .cmn-paging.paging-top ul {
	margin-bottom: 10px;
	padding: 8px 0 7px;
}

/* .product-qa-paging ------------------------*/
#product-qa .product-qa-paging {
	padding-bottom: 5px;
	border-bottom: 1px dotted #bdb8ad;
}
#product-qa .product-qa-paging .total {
	float: left;
	width: 440px;
	padding-top: 4px;
	color: #555;
	text-align: left;
}
#product-qa .product-qa-paging .product-qa-sort {
	float: right;
}
#product-qa .product-qa-paging .product-qa-sort li {
	float: left;
	padding: 3px 4px;
	border-right: 1px dotted #bdb8ad;
	font-size: 95%;
}
#product-qa .product-qa-paging .product-qa-sort li .link-data-url {
	padding: 0 4px;
	color: #068681;
	text-decoration: underline;
	cursor: pointer;
}
#product-qa .product-qa-paging .product-qa-sort li a {
	padding: 0 4px;
}
#product-qa .product-qa-paging .product-qa-sort li a:visited {
	color: #068681;
}
#product-qa .product-qa-paging .product-qa-sort li.current {
	background: #f2e8d8;
	font-weight: bold;
}
#product-qa .product-qa-paging .product-qa-sort li:last-child {
	border: none;
}

/* #product-qa .product-qa-footer */
#product-qa .product-qa-footer {
	margin: 30px 0;
}
#product-qa .product-qa-footer > p {
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 1.4;
}
#product-qa .product-qa-footer-inr {
	padding: 10px;
	border: 1px solid #dad3c3;
	background: url(/svg/logo/logo_qa_191203.svg) no-repeat 15px 50%;
	background-size: 130px 20px;
}
#product-qa .product-qa-footer-inr > p {
	margin-left: 150px;
	color: #755;
	font-size: 12px;
	line-height: 1.6;
}

/* product-qa-ask-chieco
------------------------------------ */
#product-qa .product-qa-ask-chieco {
	width: 340px;
	margin-top: 5px;
}
#product-qa .product-qa-ask-chieco a {
	display: block;
	height: 26px;
	line-height: 26px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #c1679e;
	background: -moz-linear-gradient(top, #bb5b96, #9f166a);
	background: -ms-linear-gradient(top, #bb5b96, #9f166a);
	background: -webkit-gradient(linear, left top, left bottom ,from(#bb5b96), to(#9f166a));
	background: linear-gradient(to bottom, #bb5b96, #9f166a);
}
#product-qa .product-qa-ask-chieco span {
	display: block;
	padding: 0 10px 0 32px;
	border-top: 1px solid #deaecb;
	border-left: 1px solid #deaecb;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: url("/images/general/common/qa_icons/ico_qa_201603.png") no-repeat 40px 4px;
	text-align: center;
}
#product-qa .product-qa-ask-chieco:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}

/* null */
#product-qa-list .cmn-null {
	margin: 20px 0 50px;
}
#product-qa-list .cmn-null-head {
	padding-top: 0;
}
#product-qa-list .cmn-null .cmn-null-head + p + p {
	margin-bottom: 10px;
}
#product-qa .cmn-null .product-qa-ask-chieco {
	float: inherit;
	margin-top: 10px;
}
#product-qa .cmn-null .product-qa-ask-chieco:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-qa .cmn-null .product-qa-ask-chieco span {
	padding: 0 10px 0 32px;
	background: url("/images/general/common/qa_icons/ico_qa_201603.png") no-repeat 40px 4px;
}


/** product-blog ----------------------------------------------------------------**/
#product-blog {
	position: relative;
	margin-bottom: 10px;
}
#product-blog .titile {
	padding: 13px 10px 8px;
	margin-bottom: 5px;
	background: url("/images/general/common/bg/bg_sub_title_flower_635.png") no-repeat 0 0;
	font-size: 105%;
	color: #000;
	font-weight: bold;
}
#product-blog .post-blog {
	position: absolute;
	right: 0;
	top: -44px;
}
#product-blog .post-blog a {
	display: block;
	overflow: hidden;
	width: 135px;
	height: 22px;
	margin-top: 10px;
	background: url("/images/general/common/btn/btn_150728.png") no-repeat 0 -185px;
}
#product-blog .post-blog a span {
	display: inline-block;
	padding: 6px 0 3px 32px;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
}
#product-blog .post-blog a:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
/* null */
#product-blog .cmn-null .post-blog {
	position: static;
}
#product-blog-list {
	padding-top: 10px;
	border-top: 1px dotted #bdb8ad;
}

/** product-mobile ----------------------------------------------------------------**/
#product-mobile {
	margin: 10px 0 100px;
	color: #333;
}
#product-mobile h2 {
	width: 585px;
	padding: 13px 10px 8px;
	margin-bottom: 30px;
	background: url("/images/general/common/bg/bg_sub_title_flower_635.png") no-repeat 0 0;
	font-size: 105%;
	color: #000;
	font-weight: bold;
}

/* product-mobile_box */
#product-mobile .mobile-box {
	width: 595px;
	margin: 0 0 10px 10px;
	padding: 0 0 12px;
	background: url("/images/general/common/bg/bg-grn-595.png") no-repeat left bottom;
}
#product-mobile .mobile-adress {
	padding: 12px 20px 10px;
	background: url("/images/general/common/bg/bg-grn-595.png") no-repeat left top;
}
#product-mobile .lavel {
	padding-left: 20px;
	background: url("/images/general/common/icons/ico_mobile-send.png") no-repeat left 3px;
}
#product-mobile .text {
	margin: 0 20px;
	padding-top: 5px;
	background: url("/images/general/common/bg/bg_green_line.png") repeat-x left top;
	color: #555;
	line-height: 1.5;
	font-size: 95%;
}

/* send ------------------------*/
#product-mobile .send {
	width: 605px;
	margin-bottom: 30px;
	padding-left: 10px;
	font-size: 105%;
	line-height: 1.2;
	color: #000;
}
#product-mobile .mobile-adress input {
	width: 358px;
	margin-left: 15px;
}
#product-mobile .mobile-err {
	margin: 0 0 10px 20px;
	color: #cc3333;
	font-weight: bold;
}
#product-mobile .transmit-btn {
	display: block;
	overflow: hidden;
	width: 151px;
	height: 26px;
	margin: 10px auto 0;
	background: url("/images/cnt/product/btn_product_transmit.png") no-repeat left top;
	border: none;
	cursor: pointer;
}
#product-mobile .link_top {
	margin: 10px 30px 0 0;
	text-align: right;
}
#product-mobile .link_top a {
	padding-left: 15px;
	background: url("/images/general/common/icons/ico_arw_sq_brn_top.png") no-repeat left center;
	font-size: 95%;
}
#product-mobile ul {
	margin: 0 30px 0 10px;
}
#product-mobile li {
	margin-bottom: 7px;
	font-size: 95%;
}

/* comp ------------------------*/
#product-mobile .comp {
	width: 605px;
	margin-bottom: 30px;
	font-size: 105%;
	color: #000;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}
#product-mobile .address {
	margin-left: 15px;
	font-weight: bold;
}

/* product-header -------------------------------------*/
#product-header {
	margin-bottom: 10px;
	padding-top: 19px;
	background: url(/images/cnt/product/bg_main_line_top.png)  0 7px repeat-x;
}
/* ブランド・商品名 */
#product-header .item-name {
	width: 790px;
	margin-bottom: 10px;
	padding-top: 10px;
	word-wrap:break-word;
}
#product-header .item-name .brd-name a{
	color:	#068681;
	font-size: 125%;
	font-weight: bold;
	text-decoration: none;
	vertical-align: middle;
}
#product-header .item-name .pdct-name a {
	margin-left: 5px;
	color: #333;
	font-size: 170%;
	font-weight: bold;
	text-decoration: none;
	vertical-align: middle;
}
#product-header .item-name .brd-name a:hover,
#product-header .item-name .pdct-name a:hover {
	color: #07B0A9;
	text-decoration: underline;
}
#product-header .item-name a.icon-cmn-tieup {
	display: inline-block;
	vertical-align: -3px;
}
* html #product-header .item-name a.icon-cmn-tieup {
	vertical-align: 6px;
}
*:first-child+html #product-header .item-name a.icon-cmn-tieup {
	vertical-align: 6px;
}

/* 公式ラベル */
#product-header .item-name .product-official-label {
	display: inline-block;
	margin: 2px 0 0 6px;
	padding: 2px 4px 1px;
	background: #888;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	vertical-align: text-top;
}

/* product-footer -------------------------------------*/
#product-footer {
	margin-bottom: 5px;
	padding-bottom: 10px;
	background: url("/images/cnt/product/bg_main_line_btm.png") bottom left repeat-x;
}
/* ブランド・商品名 */
#product-footer .item-name .brd-name a{
	color:	#068681;
	font-weight: bold;
	text-decoration: none;
	line-height: 2;
	vertical-align: middle;
	word-wrap:break-word;
}
* html #product-footer .item-name .brd-name a {
	line-height: 1;
}
*:first-child+html #product-footer .item-name .brd-name a {
	line-height: 1;
}
#product-footer .item-name .pdct-name a {
	font-size: 125%;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	vertical-align: middle;
	word-wrap:break-word;
}
* html #product-footer .item-name .pdct-name a {
	line-height: 1.5;
}
*:first-child+html #product-footer .item-name .pdct-name a {
	line-height: 1.4;
}
#product-footer .item-name .brd-name a:hover,
#product-footer .item-name .pdct-name a:hover {
	color: #07B0A9;
	text-decoration: underline;
}
#product-footer .item-name .icon-cmn-tieup {
	display: inline-block;
	vertical-align: -3px;
}
* html #product-footer .item-name a.icon-cmn-tieup {
	vertical-align: 3px;
}
*:first-child+html #product-footer .item-name a.icon-cmn-tieup {
	vertical-align: 3px;
}
/* product-action */
#product-footer .product-action {
	float: right;
	margin-top: 10px;
	padding: 5px;
	background: #f4f2ec;
	text-align: right;
	letter-spacing: -4px;
}
#product-footer .product-action li:not(:first-child) {
	margin-left: 5px;
}
#product-footer .product-action li {
	display: inline-block;
	vertical-align: bottom;
	letter-spacing: normal;
}

/* 「クチコミする」「クリップする」「購入サイトへ」ボタン */
#product-footer .btn-cmn-product-act {
	display: block;
	width: 120px;
	height: 0;
	padding-top: 34px;
	overflow: hidden;
	background: url("/images/cnt/product/btn_product_act_201410.png") no-repeat;
	line-height: 2;
}
#product-footer .btn-cmn-product-act.post-review:hover,
#product-footer .btn-cmn-product-act.add-clip:hover,
#product-footer .btn-cmn-product-act.link-shop:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
#product-footer .btn-cmn-product-act.post-review {
	background-position: left top;
}
#product-footer .btn-cmn-product-act.add-clip {
	background-position: left 0;
}
#product-footer .btn-cmn-product-act.done-clip {
	background-position: left -25px;
}
#product-footer .btn-cmn-product-act.link-shop {
	width: 120px;
	background-position: left -34px;
}

/* act-button */
#product-footer .act-button {
	min-width: 120px;
	height: 34px;
}

/* ブランドについて: product-recommend-brand */
#product-recommend-brand {
	margin-bottom: 20px;
	padding: 10px;
	background: #f4f2ec;
	border: 1px solid #c2beb3;
}
#product-recommend-brand li {
	float: left;
	padding-left: 15px;
	margin-right: 20px;
	background:url("/images/general/common/icons/ico_arw_l_grn_right.png") left top no-repeat;
}
#product-recommend-brand h3 {
	margin-bottom: 15px;
	color: #433;
	font-size: 105%;
	font-weight: bold;
}
#product-recommend-brand .to-maker {
	margin-top: 15px;
	padding: 7px;
	background: #fff;
	font-size: 95%;
	line-height: 1.4;
}
#product-recommend-brand .to-maker-title {
	font-weight: bold;
}
/* 商品情報TOP: product-info ------------------------*/
#product-info {
	margin-bottom: 10px;
}
#product-info .pict {
	float: left;
	width: 180px;
	margin-right: 15px;
}
#product-info .info {
	overflow: hidden;
}
* html #product-info .info {
	zoom: 1;
}
#product-info .info-rating {
	margin-bottom: 10px;
}
#product-info .info-rating li {
	display: block;
	padding: 5px 0 3px;
	border-bottom: 1px dotted #bdb8ad;
	word-wrap:break-word;
}
* html #product-info .info-rating li {
	zoom: 1;
}
#product-info .info-rating .info-rev {
	padding-top: 0;
}
#product-info .info-ttl {
	float: left;
	width: 105px;
	font-size: 83%;
	color: #755;
}
#product-info .info-ttl a {
	display: inline-block;
	height: 13px;
	margin: 0 0 2px 3px;
	padding: 0 3px;
	background: #7abeaf;
	border: 1px solid #5b9f90;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	line-height: 14px;
}
#product-info .info-rev .info-ttl {
	padding-top: 5px;
}
#product-info .info-rank .info-ttl {
	padding-top: 5px;
}
#product-info .info-desc {
	overflow: hidden;
}
#product-info .info-ranking {
	float: left;
	display: block;
	padding: 1px 7px 0 30px;
	background:url("/images/cnt/product/ico_product_rank_s.png") 0 0 no-repeat;
	font-size: 105%;
	font-weight: bold;
}
#product-info .info-ranking span {
	font-size: 130%;
}
#product-info .info-ctg{
	display: block;
	padding-top: 5px;
	overflow: hidden;
}
#product-info .info-ctg a:link,
#product-info .info-ctg a:visited {
	color: #755;
	text-decoration: none;
}
#product-info .info-ctg a:hover {
	color: #8e7c53;
}
#product-info .point {
	display: inline-block;
	margin-left: 5px;
	padding-left: 26px;
	background:url("/images/general/common/ranking_icons/ico_csm_point.png") 7px 0px no-repeat;
	border-left: 1px dotted #bdb8ad;
	vertical-align: middle;
}
* html #product-info .point {
	display: inline;
	background-position: 5px 2px;
	zoom: 1;
}
*:first-child+html #product-info .point {
	display: inline;
	background-position: 5px 2px;
	zoom: 1;
}
#product-info .average {
	display: inline-block;
	padding: 2px 0 0 164px;
	background: url("/images/general/common/review_star/ico_star_large_all.png") no-repeat;
	color: #755;
	font-size: 139%;
	font-weight: bold;
	vertical-align: middle;
}
* html #product-info .average {
	display: inline;
	padding-top: 0;
	zoom: 1;
}
*:first-child+html #product-info .average {
	display: inline;
	padding-top: 0;
	zoom: 1;
}
#product-info .avr-0 {
  background-position: 0 0;
}
#product-info .avr-0_5 {
  background-position: 0 -30px;
}
#product-info .avr-1 {
  background-position: 0 -60px;
}
#product-info .avr-1_5 {
  background-position: 0 -90px;
}
#product-info .avr-2 {
  background-position: 0 -120px;
}
#product-info .avr-2_5 {
  background-position: 0 -150px;
}
#product-info .avr-3 {
  background-position: 0 -180px;
}
#product-info .avr-3_5 {
  background-position: 0 -210px;
}
#product-info .avr-4 {
  background-position: 0 -240px;
}
#product-info .avr-4_5 {
  background-position: 0 -270px;
}
#product-info .avr-5 {
  background-position: 0 -300px;
}
#product-info .avr-5_5 {
  background-position: 0 -330px;
}
#product-info .avr-6 {
  background-position: 0 -360px;
}
#product-info .avr-6_5 {
  background-position: 0 -390px;
}
#product-info .avr-7 {
  background-position: 0 -420px;
}
#product-info .check {
	position: absolute;
	top :0;
	right: 0;
	padding-left: 16px;
	background: url("/images/cnt/product/ico_check.png") 0 0 no-repeat;
	font-size: 95%;
	line-height: 1.2;
}
#product-info .check a:link ,
#product-info .check a:visited {
	color: #755;
}
#product-info .check a:hover {
	color: #8e7c53;
}
#product-info .ico-new,
#cmn-product-info .ico-new {
	display: inline-block;
	width: 26px;
	height: 0;
	margin-left: 3px;
	padding-top: 11px;
	background: url("/images/cnt/product/icon_csm_new.png") 0 0 no-repeat;
	overflow: hidden;
	line-height: 2;
	vertical-align: middle;
}
#product-info .cnt {
	font-size: 125%;
	font-weight: bolder;
}
#product-info .rev-btn {
	display: inline-block;
	margin-bottom: 7px;
	padding: 5px;
	background: #f4f2ec;
}
#product-info .rev-btn li {
	float: left;
}
#product-info .rev-btn li:not(:first-child) {
	margin-left: 5px;
}
#product-info .rev-btn li .act-button {
	min-width: 120px;
	height: 34px;
}
#product-info .rev-btn li .act-button .act-button-text {
	font-size: 14px;
}
#product-info .info-related {
	position: relative;
}
#product-info .btn-cmn-product-act {
	display: block;
	width: 120px;
	height: 0;
	padding-top: 34px;
	overflow: hidden;
	background: url("/images/cnt/product/btn_product_act_201410.png") no-repeat;
	line-height: 2;
}
#product-info .btn-cmn-product-act.post-review:hover,
#product-info .btn-cmn-product-act.add-clip:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
#product-info  .btn-cmn-product-act.post-review {
	background-position: left top;
}
#product-info  .btn-cmn-product-act.add-clip {
	background-position: left 0;
}
#product-info  .btn-cmn-product-act.done-clip {
	background-position: left -25px;
}
/* product-pm-list */
#product-pm-list {
	margin-bottom: 20px;
	padding: 5px;
	border: 1px solid #d9d2c3;
}
#product-pm-list ul {
	float: left;
}
#product-pm-list li {
	float: left;
	margin-right: 5px;
	border: 1px solid #d9d2c3;
}
#product-pm-list a:link,
#product-pm-list a:visited {
	text-decoration: none;
}
#product-pm-list .video {
	position: relative;
}
#product-pm-list .video .pic-movie {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#product-pm-list .ico-video {
	position: absolute;
	left: 3px;
	bottom: 3px;
}
#product-pm-list .time {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 2px;
	background: #000;
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
	color: #fff;
	font-size: 75%;
	line-height: 1;
	text-decoration: none;
}
#product-pm-list .pic {
	display: table;
	cursor: pointer;
}
#product-pm-list .pic-photo,
#product-pm-list .pic-movie {
	filter: alpha(opacity=100);
}
#product-pm-list .pic-movie {
	height: 53px;
}
#product-pm-list .bg-layer {
	display: table-cell;
	height: 70px;
	vertical-align: middle;
	background-color: #000;
}
#product-pm-list .bg-layer:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-pm-list .video .bg-layer {
	display: block;
	overflow: hidden;
	position: relative;
	width: 70px;
	height: 70px;
}
#product-pm-list .video-nolink .pic {
	background: #000;
}
#product-pm-list .view-more-photo {
	display: table;
	width: 70px;
	height: 70px;
}
#product-pm-list .view-more {
	display: table-cell;
	width: 70px;
	height: 70px;
	vertical-align: middle;
}
#product-pm-list .view-more-photo .view-more a:link,
#product-pm-list .view-more-photo .view-more a:visited {
	text-decoration: underline;
}
#product-pm-list .ico-list {
	display: inline-block;
	width: 14px;
	height: 0;
	padding-top: 14px;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") right 0 no-repeat ;
	overflow: hidden;
	line-height: 2;
	vertical-align: middle;
}

/* 注意喚起：product-risk-attention */
#product-risk-attention {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid #d00;
	color: #d00;
	line-height: 1.4;
	text-align: center;
}
#product-risk-attention .product-risk-attention-icon {
	height: 22px;
	margin: 0 15px;
}
#product-risk-attention .product-risk-attention-icon svg {
	width: 22px;
	height: 22px;
	fill: #d00;
}
#product-risk-attention .product-risk-attention-info {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	padding: 0 20px;
	word-break: break-all;
}
#product-risk-attention .product-risk-attention-info > a {
	padding-top: 5px;
	color: #d00;
}
#product-risk-attention .product-risk-attention-info > a:hover {
	opacity: .8;
}

/* 生産終了：product-att-info */
#product-att-info {
	margin-bottom: 10px;
	padding: 10px 10px 5px 10px;
	background: #fdd;
	border: 1px dotted #e9a;
	text-align: center;
}
#product-att-info .att-info {
	margin-bottom: 5px;
}
#product-att-info .att-link {
	margin-bottom: 5px;
}

/* 年齢制限注意文言：product-agelimit-attention */
#product-agelimit-attention {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 20px 0 15px;
	padding: 5px 10px;
	box-sizing: border-box;
	background: #efefef;
}
#product-risk-attention + #product-agelimit-attention,
#product-att-info + #product-agelimit-attention {
	margin-top: 10px;
}
#thumb-newdb-1606 + #product-agelimit-attention {
	margin: -20px 0 30px;
}
#product-agelimit-attention > p {
	flex: 1;
	font-size: 83%;
	color: #555;
	line-height: 1.5;
	vertical-align: middle;
}
#product-agelimit-attention .attention-icon {
	width: 31px;
	box-sizing: border-box;
	vertical-align: middle;
}
#product-agelimit-attention .attention-icon svg {
	width: 21px;
	height: 18px;
	fill: #888;
}

/* この商品の購入サイト: product-shopping-site ------------------------*/
#product-shopping-site {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#product-shopping-site .title {
	padding: 12px 10px 0;
	margin-bottom: 15px;
}
#product-shopping-site .title-txt {
	float:left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#product-shopping-site .cat-name {
	display: block;
	float: left;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	overflow: hidden;
}
* html #product-shopping-site .cat-name{
	padding-top: 3px;
	zoom: 1;
}
#product-shopping-site .brand-shop-list {
	float: right;
}
#product-shopping-site .brand-shop-list .cmn-viewmore{
	line-height: 20px;
}
#product-shopping-site .shopping-list {
	margin: 0 10px 5px 10px;
	border-bottom: 1px dotted #bdb8ad;
}
#product-shopping-site .shopping-list li {
	padding-bottom: 7px;
}
#product-shopping-site .shopping-ttl {
	display: inline-block;
	width: 130px;
	padding-left: 20px;
	color: #755;
	font-weight: bold;
}
* html #product-shopping-site .shopping-ttl {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-shopping-site .shopping-ttl {
	display: inline;
	zoom: 1;
}
#product-shopping-site .affiliatetry .shopping-ttl {
	background: url("/images/cnt/product/ico_try.png") left top no-repeat;
}
#product-shopping-site .affiliate .shopping-ttl {
	background: url("/images/cnt/product/ico_shop_bag.png") left top no-repeat;
}
#product-shopping-site .cosmecom .shopping-ttl {
	background: url("/images/cnt/product/ico_cosmecom.png") 1px top no-repeat;
}
#product-shopping-site .cosmestore .shopping-ttl {
	background: url("/images/cnt/product/ico_cosmestore.png") left top no-repeat;
}
#product-shopping-site .retail-stock .shopping-ttl {
	background: url("/images/cnt/product/ico_retail_pr.png") left 3px no-repeat;
}
#product-shopping-site .shopping-desc {
	display: inline-block;
}
* html #product-shopping-site .shopping-desc {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-shopping-site .shopping-desc {
	display: inline;
	zoom: 1;
}
#product-shopping-site .shopping-desc a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_green_right.png") left 5px no-repeat;
}
#product-shopping-site .affiliate a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_pink_right.png") left 5px no-repeat;
}
#product-shopping-site .affiliatetry a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_pink_right.png") left 5px no-repeat;
}
#product-shopping-site .retail-stock a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_pink_right.png") left 5px no-repeat;
}
#product-shopping-site .shopping-desc span{
	font-size: 11px;
}
#product-shopping-site .shopping-desc a:link,
#product-shopping-site .shopping-desc a:visited{
	color: #333;
}
#product-shopping-site .shopping-desc a:hover {
	color: #07b0a9;
}
#product-shopping-site .att-shopping-cmp {
	display: inline-block;
	margin-left: 5px;
	color: #fa3e30;
	font-weight: bold;
}
#product-shopping-site .att-shopping-cmp a:link,
#product-shopping-site .att-shopping-cmp a:visited {
	padding-left: 0;
	background-image: none;
	color: #fa3e30;
}
#product-shopping-site .att-shopping-cmp a:hover {
	color: #fb7b71;
}
* html #product-shopping-site .ico-shopping-cmp {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-shopping-site .ico-shopping-cmp {
	display: inline;
	zoom: 1;
}
#product-shopping-site .shopping-cpn a {
	background-image: none;
	font-weight: bold;
}
#product-shopping-site .shopping-cpn a:link,
#product-shopping-site .shopping-cpn a:visited {
	padding-left: 0;
	background-image: none;
	color: #fa3e30;
}
#product-shopping-site .shopping-cpn a:hover {
	color: #fb7b71;
}
#product-shopping-site .store-navi {
	margin: 0 10px;
	color: #755;
	text-align: right;
}
#product-shopping-site .store-navi span {
	font-size: 83%;
}
#product-shopping-site .store-navi a{
	font-size: 105%;
 font-weight: bold;
}
#product-shopping-site .store-navi a:link,
#product-shopping-site .store-navi a:visited {
	text-decoration: none;
}
#product-shopping-site .cosmestore {
	position:relative;
}
* html #product-shopping-site .cosmestore {
	zoom: 1;
}
#product-shopping-site .toggle {
	position: absolute;
	width: 320px;
	bottom: 0;
	right: 35px;
	background: #f4f2ec;
	border: 1px solid #bdb8ad;
	display: none;
	-moz-box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
	-webkit-box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
	-o-box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
	-ms-box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
	box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
}
#product-shopping-site .toggle-inr {
	padding: 15px 10px 10px;
	border: 3px solid #e8e5e0;
}
#product-shopping-site .toggle a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_green_right.png") left 5px no-repeat;
}
#product-shopping-site .toggle a:link,
#product-shopping-site .toggle a:visited {
	color: #333;
}
#product-shopping-site .toggle a:hover {
	color: #07b0a9;
}
#product-shopping-site .toggle ul {
	margin-bottom: 10px;
}
#product-shopping-site .toggle li {
	display: inline-block;
	margin-right: 10px;
}
* html #product-shopping-site .toggle li {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-shopping-site .toggle li {
	display: inline;
	zoom: 1;
}
#product-shopping-site .btn-close {
	position: absolute;
	display: block;
	width: 16px ;
	height: 0;
	top : 5px;
	right: 5px;
	padding-top: 16px;
	background: url("/images/cnt/product/btn_share_social.png") left -42px no-repeat;
	line-height: 2;
	cursor: pointer;
	overflow: hidden;
}
#product-shopping-site .notes {
	font-size: 83%;
}

/* このブランドの商品が買える店舗: brand-retail-store ------------------------*/
#brand-retail-store {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#brand-retail-store .title {
	padding: 12px 10px 0;
	margin-bottom: 15px;
}
#brand-retail-store .title-txt {
	float:left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#brand-retail-store .cat-name {
	display: block;
	float: left;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	overflow: hidden;
}
* html #brand-retail-store .cat-name{
	padding-top: 3px;
	zoom: 1;
}
#brand-retail-store .retail-list {
	margin: 0 10px;
}
#brand-retail-store .retail-list li {
	padding-bottom: 7px;
}
#brand-retail-store .retail-ttl,
#product-shopping-site .retail-ttl {
	display: inline-block;
	width: 130px;
	padding-left: 20px;
	color: #755;
	font-weight: bold;
}
* html #brand-retail-store .retail-ttl,
* html #product-shopping-site .retail-ttl {
	display: inline;
	zoom: 1;
}
*:first-child+html #brand-retail-store .retail-ttl,
*:first-child+html #product-shopping-site .retail-ttl {
	display: inline;
	zoom: 1;
}
#brand-retail-store .retail-store .retail-ttl,
#product-shopping-site .retail-store .retail-ttl {
	background: url("/images/cnt/product/ico_retail_store.png") left top no-repeat;
}
#brand-retail-store .retail-desc,
#product-shopping-site .retail-desc {
	display: inline-block;
}
* html #brand-retail-store .retail-desc,
* html #product-shopping-site .retail-desc {
	display: inline;
	zoom: 1;
}
*:first-child+html #brand-retail-store .retail-desc,
*:first-child+html #product-shopping-site .retail-desc {
	display: inline;
	zoom: 1;
}
#brand-retail-store .retail-desc a,
#product-shopping-site .retail-desc a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_yellow_right.png") left 5px no-repeat;
}
#brand-retail-store .retail-desc span,
#product-shopping-site .retail-desc span {
	font-size: 11px;
}
#brand-retail-store .retail-desc a:link,
#brand-retail-store .retail-desc a:visited,
#product-shopping-site .retail-desc a:link,
#product-shopping-site .retail-desc a:visited {
	color: #333;
}
#brand-retail-store .retail-desc a:hover,
#product-shopping-site .retail-desc a:hover {
	color: #07b0a9;
}

/* retail thickbox ------------------------*/
#retail-top,
#retail-rslt {
	padding: 3px;
	border: 1px solid #bdb8ad;
	background-color: #e8e5e0;
	box-shadow: 4px 4px 5px rgba(0,0,0,0.4);
}
#retail-top .TB_header,
#retail-rslt .TB_header {
	height: 38px;
	background: #f4f2ec;
}
#retail-top .TB_header h1,
#retail-rslt .TB_header h1 {
	float: none;
	padding-top:5px;
	padding-left: 0;
	color: #333;
	font-size: 16px;
	text-align: center;
}
#retail-rslt .TB_header h1 span {
	display: inline-block;
	width: 370px;
	overflow: hidden;
	white-space: nowrap;
	-webkit-text-overflow: ellipsis;
	text-overflow: ellipsis;
}
#retail-rslt .back {
	cursor: pointer;
	position: absolute;
	top: 10px;
	left: 10px;
	padding-left: 10px;
	background: url("/images/general/common/icons/ico_paging_back.png") no-repeat left;
	line-height: 2;
}
#retail-rslt .back:link,
#retail-rslt .back:visited {
	text-decoration: none;
}
#retail-rslt .back:hover,
#retail-rslt .back:active {
	color: #07B0A9;
	text-decoration: underline;
}
#retail-top .btn-close,
#retail-rslt .btn-close {
	overflow: hidden;
	position: absolute;
	right: 13px;
	top: 13px;
	width: 16px;
	height: 0;
	padding-top: 16px;
	background: url("/images/cnt/product/btn_share_social.png") left -42px no-repeat;
}
#retail-top .note {
	margin: 5px 5px 0 0;
	color: #755;
	text-align: right;
	font-size: 83%;
}
#retail-top dl,
#retail-rslt dl{
	margin: 15px;
}
#retail-top dl dt,
#retail-rslt dl dt {
	font-size: 11px;
	border-bottom: 1px dotted #bdb8ad;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
#retail-top dl dt span,
#retail-rslt dl dt {
	font-size: 14px;
	font-weight: bold;
}
#retail-top dl dd,
#retail-rslt dl dd {
	display: inline-block;
	width: 185px;
	margin-left: 15px;
	padding-bottom: 5px;
}
#retail-top dl dd a:link,
#retail-top dl dd a:visited,
#retail-rslt dl dd a:link,
#retail-rslt dl dd a:visited {
	color: #333;
}
#retail-top dl dd a:hover,
#retail-rslt dl dd a:hover {
	color: #07b0a9;
}
/* retail thickbox tab ------------------------*/
#retail-rslt #selector_tab {
	border-bottom: 1px solid #bdb8ad;
	margin: 15px;
}
#retail-rslt #selector_tab li {
	float: left;
	margin: 0 0 -1px -1px;
	padding: 5px 0 3px;
}
#retail-rslt #selector_tab .crnt {
	margin-left: 0px;
	padding: 0px;
	border-top: 1px solid #bdb8ad;
	border-right: 1px solid #bdb8ad;
	border-left: 1px solid #bdb8ad;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background: url("/images/cnt/product/bg_product_view_ctg.png") repeat-x 0 0;
}
#retail-rslt #selector_tab div,
#retail-rslt #selector_tab a {
	display: block;
	padding: 0 7px 0 8px;
	text-decoration: none;
}
#retail-rslt #selector_tab a:visited {
	color: #068681;
}
#retail-rslt #selector_tab .crnt div {
	margin: 0;
	padding: 3px 5px 3px 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
#retail-rslt #selector_tab li span {
	font-size: 95%;
	font-weight: normal;
}
#retail-rslt #selector_tab p {
	padding-top: 2px;
	line-height: 18px;
}
#retail-rslt dl{
	margin: 15px;
}
#retail-rslt .list-rslt {
	margin: 15px;
}
#retail-rslt .note {
	margin: 5px 5px 0 0;
	color: #755;
	text-align: right;
	font-size: 83%;
}
#retail-rslt .note-map {
	float: right;
	margin: 5px 5px 0 0;
	color: #755;
	font-size: 83%;
}
#retail-rslt .note-map li:first-child {
	text-indent: -1em;
}
#retail-rslt .list-rslt li {
	padding-bottom: 5px;
	padding-left: 12px;
	background: url(/images/general/common/icons/icon_ball_green.png) no-repeat 0 5px;
	font-size: 105%;
}
#retail-rslt .list-rslt li a span {
	padding-left: 15px;
	font-size: 86%;
}
#retail-rslt .list-rslt li a:link,
#retail-rslt .list-rslt li a:visited {
	color: #333;
}
#retail-rslt .list-rslt li a:hover,
#retail-rslt .list-rslt li a:hover {
	color: #07b0a9;
}

/* PickUpクチコミ: product-pickup-rev ------------------------*/
#product-pickup-rev {
	padding: 10px 10px 0;
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#product-pickup-rev .title {
	margin-bottom: 7px;
	padding: 10px 10px 0;
}
#product-pickup-rev .title-txt {
	float:left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#product-pickup-rev .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	overflow: hidden;
}
* html #product-pickup-rev .cat-name {
	padding-top: 3px;
	zoom:1 ;
}
#product-pickup-rev .lead {
	padding: 2px 10px 10px 10px;
	color: #666;
	font-size: 83%;
	line-height: 1.4;
}
#product-pickup-rev .view-more {
	text-align: right;
}
#product-pickup-rev .view-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
	font-weight: bold;
}
#product-pickup-rev .review-link  {
	cursor: pointer;
	display: block;
	outline: medium none;
	text-decoration: none;
}
#product-pickup-rev .review-link:hover img  {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-pickup-rev .review-pic {
	float: right;
	margin: 0 0 5px 5px;
}
#product-pickup-rev .review-pic .pic {
	display: table-cell;
	width: 70px;
	height: 70px;
	layout-grid-line: 70px;
	border: 1px solid #D9D2C3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#product-pickup-rev .review-pic .pic {
	height: 72px;
}
}
* html #product-pickup-rev .review-pic .pic {
	display: block;
}
*:first-child+html #product-pickup-rev .review-pic .pic {
	display: block;
}
* html #product-pickup-rev .review-pic .pic img {
	margin-top: -1px;
}
*:first-child+html #product-pickup-rev .review-pic .pic img {
	margin-top: -1px;
}
/* reviewer-info */
#product-pickup-rev .reviewer-info {
	margin-bottom: 5px;
}
#product-pickup-rev .ico-pickup {
	float: left;
	width: 89px;
	height: 0;
	padding-top: 48px;
	background: url("/images/cnt/product/ico_pickup_rev.png") top left no-repeat;
	overflow: hidden;
	line-height: 2;
}
#product-pickup-rev .reviewer-pic {
	float: left;
	margin: 10px 5px 0 5px;
}
#product-pickup-rev .reviewer-pic .pic {
	display: table-cell;
	width: 30px;
	height: 30px;
	layout-grid-line: 30px;
	border: 1px solid #D9D2C3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#product-pickup-rev .reviewer-pic .pic {
	height: 32px;
}
}
* html #product-pickup-rev .reviewer-pic .pic {
	display: block;
}
*:first-child+html #product-pickup-rev .reviewer-pic .pic {
	display: block;
}
* html #product-pickup-rev .reviewer-pic .pic img {
	margin-top: -1px;
}
*:first-child+html #product-pickup-rev .reviewer-pic .pic img {
	margin-top: -1px;
}
#product-pickup-rev .reviewer-desc {
	float: left;
	width: 400px;
	margin-top: 10px;
	color: #333;
	letter-spacing: -.4em;
}
#product-pickup-rev .prm {
	display: inline-block;
	margin-right: 10px;
	color: #755;
	font-size: 95%;
	letter-spacing: normal;
}
* html #product-pickup-rev .prm {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-pickup-rev .prm {
	display: inline;
	zoom: 1;
}
#product-pickup-rev .icon-cmn-fav{
	padding-bottom: 2px;
}
#product-pickup-rev .reviewer-rating {
	display: inline-block;
	margin-right: 10px;
	padding-top: 2px;
	letter-spacing: normal;
}
* html #product-pickup-rev .reviewer-rating,
*:first-child+html #product-pickup-rev .reviewer-rating {
	display: inline;
	zoom: 1;
}
#product-pickup-rev .review-body {
	margin-bottom: 7px;
	color: #333;
	word-break: break-all; /* IE only */
	line-height: 1.4;
}
#product-pickup-rev .date {
	float: left;
	color: #755;
	font-size: 95%;
}
#product-pickup-rev .read-more {
	float: right;
}
#product-pickup-rev .cmn-viewmore {
	color: #068681;
	text-decoration: underline;
}
#product-pickup-rev .review-link:visited .cmn-viewmore {
 color: #709293;
	text-decoration: underline;
}
#product-pickup-rev .review-link:hover .cmn-viewmore {
	color: #07b0a9;
	text-decoration: underline;
}

/* cmn-product-info ------------------------*/
#cmn-product-info {
	margin-bottom: 10px;
}
#cmn-product-info .pict {
	float: left;
	width: 90px;
	margin-right: 15px;
}
#cmn-product-info .pict a {
	display: inline-block;
}
#cmn-product-info .pict img {
	pointer-events: none;
}
#cmn-product-info .info {
	overflow: hidden;
}
* html #cmn-product-info .info {
	zoom: 1;
}
#cmn-product-info .info-rating {
	margin-bottom: 7px;
}
#cmn-product-info .info-rating li {
	display: inline-block;
	padding-right: 5px;
	vertical-align: middle;
}
* html #cmn-product-info .info-rating li {
	display: inline;
	zoom: 1;
}
*:first-child+html #cmn-product-info .info-rating li {
	display: inline;
	zoom: 1;
}
#cmn-product-info .info-ranking {
	display: inline-block;
	padding: 1px 7px 0 30px;
	background:url("/images/cnt/product/ico_product_rank_s.png") 0 0 no-repeat;
	font-size: 105%;
	font-weight: bold;
}
* html #cmn-product-info .info-ranking {
	background-position: 0 3px;
}
*:first-child+html #cmn-product-info .info-ranking {
	background-position: 0 3px;
}
#cmn-product-info .info-ranking span {
	font-size: 130%;
}
#cmn-product-info .info-ctg{
	display: inline-block;
	font-size: 83%;
}
#cmn-product-info .info-ctg a:link,
#cmn-product-info .info-ctg a:visited {
	color: #755;
	text-decoration: none;
}
#cmn-product-info .info-ctg a:hover {
	color: #8e7c53;
}
#cmn-product-info .cnt {
	font-size: 125%;
	font-weight:bolder;
}
#cmn-product-info .point {
	display: inline-block;
	padding: 0 10px 0 26px;
	background:url("/images/general/common/ranking_icons/ico_csm_point.png") 7px 0px no-repeat;
	border-left: 1px dotted #bdb8ad;
	border-right: 1px dotted #bdb8ad;
	vertical-align: middle;
}
* html #cmn-product-info .point {
	display: inline;
	background-position: 5px 2px;
	zoom: 1;
}
*:first-child+html #cmn-product-info .point {
	display: inline;
	background-position: 5px 2px;
	zoom: 1;
}
#cmn-product-info .product-action {
	display: inline-flex;
	flex-wrap: wrap;
	margin-bottom: 11px;
	padding: 5px 5px 0;
	background: #f4f2ec;
	vertical-align: middle;
	white-space: nowrap;
}
#cmn-product-info .product-action ul {
	display: inline-flex;
	flex-wrap: wrap;
	max-width: 495px;
	vertical-align: middle;
	white-space: nowrap;
}
#cmn-product-info .product-action > li,
#cmn-product-info .product-action ul > li {
	padding-bottom: 5px;
}
#cmn-product-info .product-action ul > li {
	padding-bottom: 0;
}
#cmn-product-info .product-action > li:not(:last-child),
#cmn-product-info .product-action ul > li:not(:last-child) {
	margin-right: 5px;
}
#cmn-product-info .btn-cmn-product-act {
	display: block;
	width: 120px;
	height: 0;
	padding-top: 34px;
	overflow: hidden;
	background: url("/images/cnt/product/btn_product_act_201410.png") no-repeat;
	line-height: 2;
}
#cmn-product-info .btn-cmn-product-act.post-review:hover,
#cmn-product-info .btn-cmn-product-act.add-clip:hover,
#cmn-product-info .btn-cmn-product-act.link-shop:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
#cmn-product-info .btn-cmn-product-act.post-review {
	background-position: left top;
}
#cmn-product-info .btn-cmn-product-act.add-clip {
	background-position: left 0;
}
#cmn-product-info .btn-cmn-product-act.done-clip {
	background-position: left -25px;
}
#cmn-product-info .btn-cmn-product-act.link-shop {
	width: 120px;
	background-position: left -34px;
}
#cmn-product-info .act-button {
	min-width: 120px;
	height: 34px;
}
#cmn-product-info .act-button .act-button-text-sub {
	display: block;
	margin-top: 2px;
	font-size: 10px;
	font-weight: normal;
}
#cmn-product-info .average {
	display: inline-block;
	padding: 2px 0 0 164px;
	background: url("/images/general/common/review_star/ico_star_large_all.png") no-repeat;
	color: #755;
	font-size: 139%;
	font-weight: bold;
	vertical-align: middle;
}
* html #cmn-product-info .average {
	display: inline;
	padding-top: 0;
	zoom: 1;
}
*:first-child+html #cmn-product-info .average {
	display: inline;
	padding-top: 0;
	zoom: 1;
}
#cmn-product-info .avr-0 {
  background-position: 0 0;
}
#cmn-product-info .avr-0_5 {
  background-position: 0 -30px;
}
#cmn-product-info .avr-1 {
  background-position: 0 -60px;
}
#cmn-product-info .avr-1_5 {
  background-position: 0 -90px;
}
#cmn-product-info .avr-2 {
  background-position: 0 -120px;
}
#cmn-product-info .avr-2_5 {
  background-position: 0 -150px;
}
#cmn-product-info .avr-3 {
  background-position: 0 -180px;
}
#cmn-product-info .avr-3_5 {
  background-position: 0 -210px;
}
#cmn-product-info .avr-4 {
  background-position: 0 -240px;
}
#cmn-product-info .avr-4_5 {
  background-position: 0 -270px;
}
#cmn-product-info .avr-5 {
  background-position: 0 -300px;
}
#cmn-product-info .avr-5_5 {
  background-position: 0 -330px;
}
#cmn-product-info .avr-6 {
  background-position: 0 -360px;
}
#cmn-product-info .avr-6_5 {
  background-position: 0 -390px;
}
#cmn-product-info .avr-7 {
  background-position: 0 -420px;
}
#product-page-ttl {
	position: relative;
	margin-bottom: 6px;
	padding-top: 15px;
	border-top: 2px solid #e8e5e0;
}
#product-page-ttl h3 {
	font-size: 138.47%;
	font-weight: bold;
	word-wrap: break-word;
}
#product-page-ttl .product-keyword-ttl {
	width: 490px;
}
#product-page-ttl h3 span {
	font-size: 116.66%;
	margin-left: -10px;
	text-indent: 10px;
}
#product-page-ttl h3 span::before {
	content: "「";
}
#product-page-ttl h3 span::after {
	content: "」";
	margin-right: -8px;
}
#product-page-ttl .view-more {
	position: absolute;
	right: 0;
	top: 10px;
}
#product-page-ttl .view-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
}

/* product-info,cmn-product-info共通 ------------------------*/
#product-info .rev-cnt,
#cmn-product-info .rev-cnt {
	font-size: 105%;
}
#product-info .rev-cnt li,
#cmn-product-info .rev-cnt li {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
}
*:first-child+html #product-info .rev-cnt li,
*:first-child+html #cmn-product-info .rev-cnt li {
	display: inline;
	zoom: 1;
}
#product-info .rev-cnt li:first-child,
#cmn-product-info .rev-cnt li:first-child {
	margin-right: 15px;
}
#product-info .rev-cnt .buyer,
#cmn-product-info .rev-cnt .buyer,
#product-info .rev-cnt .rvw-trd,
#cmn-product-info .rev-cnt .rvw-trd {
	display: block;
	margin: 4px 0 0 15px;
	padding-left: 10px;
	background: url("/images/cnt/product/ico_tree.png") 0 0 no-repeat;
	font-size: 87%;
}
#product-info .rev-cnt .buyer,
#cmn-product-info .rev-cnt .buyer {
	font-weight: bold;
}
*:first-child+html #product-info .rev-cnt .buyer,
*:first-child+html #cmn-product-info .rev-cnt .buyer {
	display: block;
}
#product-info .rev-cnt .buyer a,
#cmn-product-info .rev-cnt .buyer a {
	display: inline-block;
	background: url("/images/general/common/icons/viewmore_ico.png") no-repeat 99% 50%;
	background-color: #e4f4ee;
	padding: 2px 9px 2px 2px;
}
#product-info .rev-cnt .rvw-trd a,
#cmn-product-info .rev-cnt .rvw-trd a {
	display: inline-block;
	height: 20px;
	padding-left: 20px;
	line-height: 20px;
	background: url("/images/cnt/product/ico_rvwtrd.png") no-repeat 0 0;
	color: #ed689d;
}
#product-info .rev-cnt .rvw-trd a:hover,
#cmn-product-info .rev-cnt .rvw-trd a:hover {
	color: #fba7c5;
}
#product-info .rev-cnt .rvw-trd a.buy-checked {
	background-color: #f2e8d8;
}
#product-info .rev-cnt .rvw-trd a span,
#cmn-product-info .rev-cnt .rvw-trd a span {
	background: #f2e8d8;
}
#cmn-product-info .rev-cnt .buyer a.buy-checked {
	background: #f2e8d8 url("/images/general/common/icons/viewmore_ico.png") no-repeat 99% 50%;
}

/** ----------------------------------------------------------
	product-view
--------------------------------------------------------------**/
#product-view-detail .page span,
#product-view-ctg p,
#product-view-pht-list h3 span,
#product-view-col-list h3 span,
#product-view-mov-list h3 span {
	display: inline-block;
	min-height: 18px;
	padding-left: 24px;
	background: url("/images/cnt/product/ico_view_ctg.png") no-repeat 0 0;
}
/* IE 6 */
* html #product-view-detail .page span,
* html #product-view-ctg p,
* html #product-view-pht-list h3 span,
* html #product-view-col-list h3 span,
* html #product-view-mov-list h3 span {
	height: 18px;
}
#product-view-detail .page .ctg-all,
#product-view-ctg .ctg-all p {
	padding-left: 0;
	background: none;
}
#product-view-detail .page .ctg-pht,
#product-view-ctg .ctg-pht p,
#product-view-pht-list h3 span {
	background-position: 0 0;
}
#product-view-pht-list h3 span {
	background-position: 0 -2px;
}
#product-view-detail .page .ctg-col,
#product-view-ctg .ctg-col p,
#product-view-col-list h3 span {
	background-position: 0 -29px;
}
#product-view-detail .page .ctg-mov,
#product-view-ctg .ctg-mov p,
#product-view-mov-list h3 span {
	background-position: 0 -60px;
}

/** product-view -----------------------------------------**/
#product-view {
	padding-bottom: 18px;
}

/** product-view-detail ----------------------------------**/
#product-view-detail {
	text-align: center;
}

/* product-spec ------------------------*/
#product-view #product-spec {
  margin-bottom: 6px;
  padding: 3px;
  background: #e8e5e0;
  border: 1px solid #bdb8ad;
}
#product-view #product-spec dl {
  background: #fff;
  border-bottom: 1px dotted #bdb8ad;
}
#product-view #product-spec dt,
#product-view #product-spec dd {
  padding: 4px 0;
}
#product-view #product-spec dt {
  float: left;
  width: 117px;
  padding-left: 10px;
  padding-right: 5px;
  color: #444;
  font-size: 95%;
  line-height: 1.5;
}
#product-view #product-spec dd {
  float: right;
  width: 485px;
  padding-right: 10px;
  line-height: 1.5;
}

/* page ------------------------ */
#product-view-detail .page {
	margin: -32px 0 6px;
	font-size: 105%;
}
#product-view-detail .page span {
	margin-right: 15px;
	line-height: 22px;
	font-weight: bold;
}

/* product-view-detail --------- */
#product-view-detail ul {
	display: -webkit-flex;
	display: flex;
	margin-bottom: 8px;
}
#product-view-detail ul li {
	display: -webkit-flex;
	display: flex;
	width: 551px;
	height: 440px;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
#product-view-detail ul .prev,
#product-view-detail ul .next {
	width: 42px;
}
#product-view-detail ul .prev a,
#product-view-detail ul .next a {
	display: block;
	overflow: hidden;
	width: 42px;
	height: 0;
	padding-top: 82px;
	background: url("/images/cnt/product/btn_product_view_detail.png") no-repeat 0 0;
}
#product-view-detail ul .prev a:hover,
#product-view-detail ul .next a:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
#product-view-detail ul .next a {
	background-position: right 0;
}
#product-view-detail iframe {
	border: 0;
}
#product-view .cmn-null {
	min-height: 0;
	padding: 0;
	background: none;
	text-align: center;
}
#product-view .cmn-null p {
	padding: 20px 0 30px;
}

/* awsm-col -------------------- */
#product-view-detail .awsm-col .awsm-bt a,
#product-view-detail .awsm-col .awsm-bt span,
#product-view-detail .awsm-col .awsm-num,
#product-view-detail .awsm-col .awsm-num span {
	background: url("/images/cnt/product/bg_awsm_col_140213.png") no-repeat 0 0;
}
#product-view-detail .awsm-col {
	display: inline-block;
	margin-bottom: 15px;
	line-height: 1;
}
/* IE 7 */
*:first-child+html #product-view-detail .awsm-col {
	display: inline;
	zoom: 1;
}
/* IE 6 */
* html #product-view-detail .awsm-col {
	display: inline;
	zoom: 1;
}
#product-view-detail .awsm-col .awsm-bt {
	margin-right: 4px;
}
#product-view-detail .awsm-col .awsm-bt,
#product-view-detail .awsm-col .awsm-num {
	float: left;
}
#product-view-detail .awsm-col .awsm-bt a,
#product-view-detail .awsm-col .awsm-bt span {
	display: block;
	overflow: hidden;
	width: 90px;
	height: 0;
	padding-top: 22px;
	line-height: 2;
}
#product-view-detail .awsm-col .awsm-bt a:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
#product-view-detail .awsm-col .awsm-bt span {
	background-position: 0 -22px;
}
#product-view-detail .awsm-col .awsm-num {
	overflow: hidden;
	height: 22px;
	padding-right: 5px;
	background-position: right -44px;
}
#product-view-detail .awsm-col .awsm-num span {
	display: block;
	overflow: hidden;
	height: 20px;
	min-height: 20px;
	padding: 2px 0 0 11px;
	background-position: 0 -44px;
	line-height: 20px;
}
/* IE 6 */
* html #product-view-detail .awsm-col .awsm-num span {
		display: inline-block;
}

/* product-view-spg ------------ */
#product-view-spg {
	position: relative;
	min-height: 24px;
	margin-bottom: 24px;
	padding: 6px 160px 0 0;
	font-size: 95%;
}
/* IE 6 */
* html #product-view-spg {
	height: 24px;
}
#product-view-spg a {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
	width: 150px;
	height: 0;
	padding-top: 30px;
	background: url("/images/cnt/product/btn_buy.png") no-repeat 0 0;
	line-height: 2;
}
#product-view-spg a:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

/** product-view-ctg -------------------------------------**/
#product-view-ctg {
	position: relative;
	overflow: hidden;
	width: 635px;
	margin: 25px 0 20px;
	font-weight: bold;
	line-height: 1;
}
#product-view-ctg a {
	color: #068681;
	border-left: 1px dotted #bdb8ad;
	font-weight: normal;
	text-decoration: none;
	cursor: pointer;
}
#product-view-ctg a:hover {
	color: #07b0a9;
}
#product-view-ctg ul {
	border-bottom: 1px solid #bdb8ad;
}
#product-view-ctg li {
	position: relative;
	z-index: 1;
	float: left;
	margin: 0 0 -1px -1px;
	padding: 5px 0 3px;
}
#product-view-ctg .current {
	z-index: 2;
	margin-left: 0px;
	padding: 0px;
	border-top: 1px solid #bdb8ad;
	border-right: 1px solid #bdb8ad;
	border-left: 1px solid #bdb8ad;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background: url("/images/cnt/product/bg_product_view_ctg.png") repeat-x 0 0;
}
#product-view-ctg div,
#product-view-ctg a {
	display: block;
	padding: 0 7px 0 8px;
}
#product-view-ctg .current div {
	margin: 0;
	padding: 3px 5px 3px 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
#product-view-ctg li span {
	font-size: 95%;
	font-weight: normal;
}
#product-view-ctg p {
	padding-top: 2px;
	line-height: 18px;
}
/* IE 6 */
* html #product-view-ctg p {
	display: inline;
	zoom: 1;
}

/** ----------------------------------------------------------
#product-view-pht-list
#product-view-col-list
#product-view-mov-list 共通
--------------------------------------------------------------**/
#product-view-pht-list h3,
#product-view-col-list h3,
#product-view-mov-list h3 {
	margin-bottom: 15px;
	padding: 5px 6px 2px;
	background-color: #f4f2ec;
	border-bottom: 1px dotted #bdb8ad;
}
#product-view-pht-list h3 span,
#product-view-col-list h3 span,
#product-view-mov-list h3 span {
	font-size: 115%;
	font-weight: bold;
}
#product-view-pht-list h3,
#product-view-col-list h3,
#product-view-mov-list h3 {
	font-size: 95%;
}
#product-view-pht-list li a {
	display: inline-block;
	padding: 3px;
	background-color: #fff;
	border: 1px solid #d9d2c3;
}
#product-view-pht-list li div,
#product-view-col-list .pic-col div {
	border: 4px solid #9ed1c5;
	padding: 0;
}
#product-view-pht-list li a:hover img,
#product-view-col-list li a:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

/** product-view-pht-list --------------------------------**/
#product-view-pht-list {
	padding-bottom: 13px;
}
#product-view-pht-list ul {
	margin-bottom: 12px;
}
#product-view-pht-list li {
	float: left;
	margin-right: 10px;
}

/** product-view-col-list --------------------------------**/
#product-view-col-list {
	padding-bottom: 13px;
}
#product-view-col-list .outer {
	margin: 0 -5px 10px 0;
}
#product-view-col-list .pic-bdr {
	display: inline-block;
	min-width: 81px;
	max-width: 582px;
	padding: 5px 0 0 5px;
	margin: 0 5px 10px 0;
	background-color: #f4f2ec;
	vertical-align: middle;
}
* html #product-view-col-list .pic-bdr {
	display: inline;
	margin-right: 10px;
	zoom: 1;
}
*:first-child+html #product-view-col-list .pic-bdr {
	display: inline;
	margin-right: 8px;
	zoom: 1;
}
* html #product-view-col-list .pic-bdr ul {
	display: inline;
	zoom: 1;
}
#product-view-col-list .pic-bdr li {
	float: left;
	margin-right: 5px;
	padding-bottom: 5px;
}
* html #product-view-col-list .pic-bdr li {
	margin-right: 2px;
}
#product-view-col-list .col-txt {
	float: left;
	display: block;
	width: 78px;
	height: 78px;
	font-size: 83%;
	word-break: break-all;
	word-wrap: break-word;
}
#product-view-col-list .pic-bdr li div,
#product-view-col-list .pic-bdr li a {
	background-color: #fff;
}
#product-view-col-list .pic-bdr li div {
	width: 70px;
	height: 70px;
	border: 4px solid #9ed1c5;
}
#product-view-col-list .pic-bdr li a {
	width: 70px;
	height: 70px;
	padding: 3px;
	border: 1px solid #d9d2c3;
}
@-moz-document url-prefix() {/* FF */
#product-view-col-list .pic-bdr li div,
#product-view-col-list .pic-bdr li a {
	height: 78px;
}
}
#product-view-col-list .pic-bdr li div,
#product-view-col-list .pic-bdr li a {
	display: table-cell;
	layout-grid-line: 70px;
	background: #fff;
	text-align: center;
	vertical-align: middle;
	line-height: 1;
}
* html #product-view-col-list .pic-bdr li div,
* html #product-view-col-list .pic-bdr li a { /* IE6 */
	display: block;
}
*:first-child+html #product-view-col-list .pic-bdr li div,
*:first-child+html #product-view-col-list .pic-bdr li a { /* IE7 */
	display: block;
}
*:first-child+html #product-view-col-list .pic-bdr li img {
	display: block;
}

#product-view-col-list .awsm-col-s,
#product-view-col-list .awsm-col-s span {
	overflow: hidden;
	height: 15px;
	min-height: 15px;
	background: url("/images/cnt/product/bg_awsm_col_s.png") no-repeat 0 0;
}
* html #product-view-col-list .awsm-col-s {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-view-col-list .awsm-col-s {
	display: inline;
	zoom: 1;
}
#product-view-col-list .awsm-col-s {
	display: inline-block;
	margin-top: 2px;
	padding: 6px 0 0 18px;
	border: none;
}
#product-view-col-list .awsm-col-s span {
	display: block;
	padding: 0 5px;
	background-position: right -21px;
	font-size: 83%;
	line-height: 16px;
}
* html #product-view-col-list .awsm-col-s span {
	display: inline;
	line-height: 11px;
	zoom: 1;
}

/** product-view-mov-list --------------------------------**/
#product-view-mov-list ul {
	margin-bottom: 10px;
	margin-left: -23px;
}
#product-view-mov-list li {
	display: inline-block;
	margin: 0 0 20px 20px;
	vertical-align: top;
}
#product-view-mov-list a:link,
#product-view-mov-list a:visited {
	text-decoration: none;
}
#product-view-mov-list .video {
	position: relative;
	background: #000;
	border: 1px solid #d9d2c3;
}
#product-view-mov-list .video_current .video {
	border: none;
}
#product-view-mov-list .video_nolink .video {
	background: none;
}
#product-view-mov-list .ico-video {
	position: absolute;
	left: 6px;
	top: 57px;
}
#product-view-mov-list .video .ico-video {
	top: 38px;
}
#product-view-mov-list .video_current .ico-video {
	left: 7px;
	top: 58px;
}
#product-view-mov-list .video_current .video .ico-video {
	top: 39px;
}
#product-view-mov-list .time {
	position: absolute;
	bottom: 3px;
	right: 3px;
	width: 28px;
	padding: 2px;
	background: #000;
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
	color: #fff;
	font-size: 75%;
	text-decoration: none;
}
#product-view-mov-list .video_current .time {
	bottom: 4px;
	right: 4px;
}
#product-view-mov-list .bg-layer {
	display: block;
	line-height: 1;
	background: #fff;
}
#product-view-mov-list .pic {
	display: table-cell;
	width: 100px;
	border: 3px solid #fff;
	text-align: center;
}
#product-view-mov-list .video_current .pic {
	border: 4px solid #9ED1C5;
}
#product-view-mov-list .pic-movie {
	filter: alpha(opacity=100);
}
#product-view-mov-list a.pic:hover img {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#product-view-mov-list a.pic:hover .pic-movie {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-view-mov-list .video-expl {
	width: 100px;
	margin-top: 4px;
	font-size: 83%;
	line-height: 1.3;
	word-break: break-all;
	word-wrap: break-word;
}

/* 最新のQA widget: #main product-inst-qa ------------------------*/
#main .product-inst-qa {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#main .product-inst-qa .title {
	margin-bottom: 10px;
	padding: 12px 10px 0;
}
#main .product-inst-qa .title-txt {
	float:left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#main .product-inst-qa .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	word-wrap: break-word;
	overflow: hidden;
}
* html #main .product-inst-qa .cat-name{
	padding-top: 3px;
	zoom: 1;
}
#main .product-inst-qa .lead {
	padding: 0 10px 15px 10px;
	font-size: 83%;
	line-height: 1.4;
	word-wrap: break-word;
}
#main .product-inst-qa .icon-cmn-up {
	margin-left: 5px;
}
#main .product-inst-qa .view-more {
	text-align: right;
}
#main .product-inst-qa .view-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
	font-weight: bold;
}
#main .product-inst-qa .qa-link {
	cursor: pointer;
	display: block;
	margin: 0 10px 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #bdb8ad;
	outline: medium none;
	text-decoration: none;
}
#main .product-inst-qa .qa-link dl {
	margin-bottom: 5px;
}
#main .product-inst-qa .a-list .q-title {
	margin-bottom: 5px;
	padding-left: 20px;
	background: url("/images/general/common/qa_icons/ico_qa_q_s.png") no-repeat 0 -1px;
	color: #555;
	font-size: 95%;
	word-wrap: break-word;      /* IE 5+ */
}
#main .product-inst-qa .q-list .q-title {
	margin-bottom: 5px;
	padding-left: 20px;
	background: url("/images/general/common/qa_icons/ico_qa_q.png") no-repeat 0 0px;
	color: #333;
	font-size: 105%;
	font-weight: bold;
	line-height: 1.5;
	word-wrap: break-word;      /* IE 5+ */
}
#main .product-inst-qa .a-title {
	margin-bottom: 5px;
	padding-left: 20px;
	background: url("/images/general/common/qa_icons/ico_qa_a.png") no-repeat 0 0;
	color: #333;
	font-size: 105%;
	font-weight: bold;
	line-height: 1.5;
	word-wrap: break-word;      /* IE 5+ */
}
#main .product-inst-qa .q-body{
	margin-bottom: 7px;
	color: #333;
	word-wrap: break-word;      /* IE 5+ */
	line-height: 1.4;
}
#main .product-inst-qa .date {
	float: left;
	color: #755;
	font-size: 95%;
}
#main .product-inst-qa .read-more {
	float: right;
}
#main .product-inst-qa .cmn-viewmore {
	color: #068681;
	text-decoration: underline;
}
#main .product-inst-qa .qa-link:visited .cmn-viewmore {
 color: #709293;
	text-decoration: underline;
}
#main .product-inst-qa .qa-link:hover .cmn-viewmore {
	color: #07b0a9;
	text-decoration: underline;
}

/* 最新美容記事 widget: #main product-inst-blog ------------------------*/
/* 最新美容記事 widget: product-inst-blog ------------------------*/
#main .product-inst-blog {
	margin-bottom: 20px;
}
#main .product-inst-blog .frm-blog {
	position: relative;
	word-wrap: break-word;
}

#main .product-inst-blog .title {
	margin-bottom: 15px;
	padding: 12px 10px 0;
}
#main .product-inst-blog .title-txt {
	float: left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#main .product-inst-blog .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	overflow: hidden;
}
* html #main .product-inst-blog .cat-name {
	padding-top: 3px;
	zoom: 1;
}
#main .product-inst-blog .lead {
	padding: 0 10px 15px 10px;
	font-size: 83%;
	line-height: 1.4;
}
#main .product-inst-blog .cmn-paging {
	padding-bottom: 10px;
}
#main .product-inst-blog .blog-pic {
	position: relative;
	float: right;
	margin-left: 5px;
}
#main .product-inst-blog .jq-img-rspsv {
	display: block;
	overflow: hidden;
	width: 120px;
	height: 120px;
	border: 1px solid #d9d2c3;
}
#main .product-inst-blog .jq-img-rspsv img {
	display: block;
}
#main .product-inst-blog .jq-img-rspsv:last-child:not(.is-loaded),
#main .product-inst-blog .jq-img-rspsv.jq-img-rspsv-noextend:not(.is-loaded) {
	background: url("/images/general/common/icons/ico_prg_s.gif") center center no-repeat;
}
#main .product-inst-blog .jq-img-rspsv:not(.is-loaded) img {
	visibility: hidden;
}
#main .product-inst-blog .jq-img-rspsv-noextend {
	position: absolute;
	right: 0;
	top: 0;
}
#main .product-inst-blog .blog-link {
	display: block;
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #BDB8AD;
	outline: medium none;
	text-decoration: none;
	cursor: pointer;
}
#main .product-inst-blog .blog-link .blog-ttl {
	margin-bottom: 4px;
	font-size: 116%;
	font-weight: bold;
}
#main .product-inst-blog .blog-link .blog-ttl {
	color: #068681;
	text-decoration: none;
 word-break: break-all;
}
#main .product-inst-blog .blog-link:visited .blog-ttl {
	color: #709293;
	text-decoration: underline;
}
#main .product-inst-blog .blog-link:hover .blog-ttl {
	color: #07b0a9;
	text-decoration: underline;
}
#main .product-inst-blog .blog-body {
	color: #333;
	word-break: break-all; /* IE only */
	text-decoration: none;
	line-height: 1.4;
}
#main .product-inst-blog .blog-pic + .frm-blog {
	min-height: 122px;
}
#main .product-inst-blog .blog-pic + .frm-blog .blog-body {
	width: 505px;
}
#main .product-inst-blog .blog-link:visited .blog-body {
	text-decoration: none;
}
#main .product-inst-blog .blog-link:hover .blog-body {
	text-decoration: none;
}
#main .product-inst-blog .frm-blog .blog-info {
	margin-top: 10px;
	line-height: 1.6;
}
#main .product-inst-blog .blog-pic + .frm-blog .blog-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 505px;
}
#main .product-inst-blog .blog-pic + .frm-blog .blog-txt {
 padding-bottom: 28px;
}
#main .product-inst-blog .beautist {
	display: inline;
	color: #755;
	font-size: 95%;
	text-decoration: none;
	word-break: break-all;
}
#main .product-inst-blog .beautist .beautist-title,
#main .product-inst-blog .beautist .beautist-name,
#main .product-inst-blog .beautist .brand-name {
	margin-left: 5px;
}
#main .product-inst-blog .beautist .beautist-name,
#main .product-inst-blog .beautist .brand-name {
	font-weight: bold;
}
#main .product-inst-blog .beautist .ico-official-bb,
#main .product-inst-blog .beautist .ico-specialist-bb {
	margin-top: -2px;
}
#main .product-inst-blog .beautist .ico-official-bb + .beautist-title,
#main .product-inst-blog .beautist .ico-specialist-bb + .beautist-title {
	margin-left: 10px;
}
#main .product-inst-blog .blog-link:visited .beautist {
	text-decoration: none;
}
#main .product-inst-blog .blog-link:hover .beautist {
	text-decoration: none;
}
#main .product-inst-blog .blog-date {
	display: inline-block;
	float: right;
	color: #755;
	font-size: 95%;
	text-decoration: none;
}
#main .product-inst-blog .blog-link:visited .blog-date {
	text-decoration: none;
}
#main .product-inst-blog .blog-link:hover .blog-date {
	text-decoration: none;
}
#main .product-inst-blog .blog-link:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#main .product-inst-blog .read-more {
	float: right;
}
#main .product-inst-blog .brand-name + .blog-date + .read-more {
	margin-top: 5px;
}
#main .product-inst-blog .cmn-viewmore {
	color: #068681;
	text-decoration: underline;
}
#main .product-inst-blog .blog-link:visited .cmn-viewmore {
 color: #709293;
	text-decoration: underline;
}
#main .product-inst-blog .blog-link:hover .cmn-viewmore {
	color: #07b0a9;
	text-decoration: underline;
}
#main .product-inst-blog .view-more {
	text-align: right;
}
#main .product-inst-blog .view-more a {
	padding: 0 15px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right 2px;
	font-weight: bold;
}
* html #main .product-inst-blog .view-more a {
	background-position: right -1px;
}
/* 最新クチコミ widget: #main product-inst-review ------------------------*/
#main .product-inst-review {
	margin-bottom: 20px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#main .product-inst-review .title {
	margin-bottom: 15px;
	padding: 12px 10px 0;
}
#main .product-inst-review .title-txt {
	float:left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#main .product-inst-review .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	border-left: 1px dotted #bdb8ad;
	color: #555;
	font-size: 83%;
	word-wrap : break-word;
	overflow: hidden;
}
* html #main .product-inst-review .cat-name{
	display: inline;
	zoom: 1;
}
*:first-child+html #main .product-inst-review .cat-name {
	display: inline;
	zoom: 1;
}
#main .product-inst-review .lead {
	padding: 2px 10px 15px 10px;
	color: #666;
	font-size: 83%;
	word-wrap: break-word;
	line-height: 1.4;
}
#main .product-inst-review .view-more {
	text-align: right;
}
#main .product-inst-review .view-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
	font-weight: bold;
}
#main .product-inst-review .buy,
#main .product-inst-review .repeat {
	overflow: hidden;
	display: inline-block;
	height: 0;
	margin: -2px 0 0 6px;
	padding-top: 13px;
	background: url(/images/general/common/review_icons/btn_bg.png) no-repeat;
	line-height: 2;
	vertical-align: middle;
}
* html #main .product-inst-review .buy,
* html #main .product-inst-review .repeat {
	display: inline;
	zoom: 1;
}
*:first-child+html #main .product-inst-review .buy,
*:first-child+html #main .product-inst-review .repeat {
	display: inline;
	zoom: 1;
}
#main .product-inst-review .buy {
	width: 50px;
	background-position: -50px -151px;
}
#main .product-inst-review .repeat {
	width: 50px;
	background-position: 0px -151px;
}
#main .product-inst-review .review-link  {
	cursor: pointer;
	display: block;
	margin: 0 10px 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #BDB8AD;
	outline: medium none;
	text-decoration: none;
}
#main .product-inst-review .review-link:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#main .product-inst-review .review-pic {
	top: -25px;
	right: 0;
	float: right;
	margin: 0 0 5px 5px;
	position: absolute;
}
#main .product-inst-review .review-pic ~ .review-text {
	padding-right: 110px;
	min-height: 90px;
}
#main .product-inst-review .review-pic .pic {
	display: table-cell;
	width: 100px;
	height: 100px;
	layout-grid-line: 100px;
	border: 1px solid #D9D2C3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#main .product-inst-review .review-pic .pic {
	height: 102px;
}
}
* html #main .product-inst-review .review-pic .pic {
	display: block;
}
*:first-child+html #main .product-inst-review .review-pic .pic {
	display: block;
}
* html #main .product-inst-review .review-pic .pic img {
	margin-top: -1px;
}
*:first-child+html #main .product-inst-review .review-pic .pic img {
	margin-top: -1px;
}
#main .product-inst-review .review-list-null {
	padding: 10px 0 0 120px;
	min-height: 120px;
	background: url("/images/cnt/product/null_new_rev.png") top left no-repeat;
}
#main .product-inst-review .null-ttl {
	margin-bottom: 7px;
	font-weight: bold;
}
#main .product-inst-review .post-review a {
	display: block;
	width: 120px;
	height: 0;
	margin-top: 10px;
	padding-top: 34px;
	overflow: hidden;
	background: url("/images/cnt/product/btn_product_act_201410.png") left top no-repeat;
	line-height: 2;
}
#main .product-inst-review .post-review a:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
#main .product-inst-review .btn-cmn-product-act.post-review:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
#main .product-inst-review .reviewer-info {
	margin-bottom: 7px;
}
#main .product-inst-review .reviewer-pic {
	float: left;
	margin-right: 5px;
}
#main .product-inst-review .reviewer-pic .pic {
	display: table-cell;
	width: 30px;
	height: 30px;
	layout-grid-line: 30px;
	border: 1px solid #D9D2C3;
	text-align: center;
	vertical-align: middle;
}
@-moz-document url-prefix() { /* FF */
#main .product-inst-review .reviewer-pic .pic {
	height: 32px;
}
}
* html #main .product-inst-review .reviewer-pic .pic {
	display: block;
}
*:first-child+html #main .product-inst-review .reviewer-pic .pic {
	display: block;
}
* html #main .product-inst-review .reviewer-pic .pic img {
	margin-top: -1px;
}
*:first-child+html #main .product-inst-review .reviewer-pic .pic img {
	margin-top: -1px;
}
#main .product-inst-review .reviewer-desc {
	overflow: hidden;
	color: #333;
	letter-spacing: -.4em;
}
#main .product-inst-review .prm {
	display: inline-block;
	margin: 0 10px 3px 0;
	color: #755;
	font-size: 95%;
	letter-spacing: normal;
}
* html #main .product-inst-review .prm {
	display: inline;
	zoom: 1;
}
*:first-child+html #main .product-inst-review .prm {
	display: inline;
	margin-bottom: 3px;
	line-height: 1.25;
	zoom: 1;
}
#main .product-inst-review .icon-cmn-fav{
	padding-bottom: 2px;
}
#main .product-inst-review .reviewer-rating {
	display: inline-block;
	padding-top: 2px;
	color: #000;
}
* html #main .product-inst-review .reviewer-rating {
	display: inline;
	zoom: 1;
}
*:first-child+html #main .product-inst-review .reviewer-rating {
	display: inline;
	zoom: 1;
}
#main .product-inst-review .review-body {
	position: relative;
	margin-bottom: 7px;
	color: #333;
	word-break: break-all; /* IE only */
	line-height: 1.4;
}
#main .product-inst-review .date {
	float: left;
	color: #755;
	font-size: 95%;
}
#main .product-inst-review .read-more {
	float: right;
}
#main .product-inst-review .cmn-viewmore {
	color: #068681;
	text-decoration: underline;
}
#main .product-inst-review .review-link:visited .cmn-viewmore {
 color: #709293;
	text-decoration: underline;
}
#main .product-inst-review .review-link:hover .cmn-viewmore {
	color: #07b0a9;
	text-decoration: underline;
}

/* 最新投稿写真・動画 widget: #main product-inst-newphoto ------------------------*/
#main .product-inst-newphoto {
	margin-bottom: 15px;
	background: url("/images/cnt/product/bg_product_sub.png") top left repeat-x;
}
#main .product-inst-newphoto .title {
	margin-bottom: 10px;
	padding: 12px 10px 0;
}
#main .product-inst-newphoto .title-txt {
	float: left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#main .product-inst-newphoto .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	border-left: 1px dotted #bdb8ad;
	color: #555;
	font-size: 83%;
	word-wrap : break-word;
	overflow: hidden;
}
#main .product-inst-newphoto .lead {
	padding: 2px 10px 15px 10px;
	color: #666;
	font-size: 83%;
	line-height: 1.4;
	word-wrap: break-word;
}
#main .newphoto-list {
	margin: 0 0 10px 10px;
}
#main .newphoto-list ul {
	margin-left: -25px;
}
* html #main .newphoto-list ul{
	display: inline;
	margin-left: -50px;
	zoom: 1;
}
*:first-child+html #main .newphoto-list ul {
	display: inline;
	zoom: 1;
}
#main .newphoto-list ul:after { content:"."; display:block; height:0px; clear:both; visibility:hidden; }
#main .newphoto-list li {
	float: left;
	margin: 0 0 10px 25px;
}
#main .newphoto-list .pic {
	display: table-cell;
	width: 100px;
	height: 100px;
	layout-grid-line: 100px;
	border: 1px solid #D9D2C3;
	text-align: center;
	vertical-align: middle;
}
#main .newphoto-list .pic-photo,
#main .newphoto-list .pic-movie {
	filter: alpha(opacity=100);
}
#main .newphoto-list a.pic:hover .pic-photo,
#main .newphoto-list a.pic:hover .pic-movie {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
@-moz-document url-prefix() { /* FF */
#main .newphoto-list .pic {
	height: 102px;
}
}
* html #main .newphoto-list .pic {
	display: block;
}
*:first-child+html #main .newphoto-list .pic {
	display: block;
}
* html #main .newphoto-list .pic img {
	margin-top: -1px;
}
*:first-child+html #main .newphoto-list .pic img {
	margin-top: -1px;
}
/* newmovie-list */
#main .newmovie-list {
	margin: 0 0 10px 10px;
}
#main .newmovie-list ul {
	margin-left:-25px;
}
* html #main .newmovie-list ul{
	display: inline;
	margin-left: -50px;
	zoom: 1;
}
*:first-child+html #main .newmovie-list ul {
	display: inline;
	zoom: 1;
}
#main .newmovie-list ul:after { content:"."; display:block; height:0px; clear:both; visibility:hidden; }
#main .newmovie-list li {
	position: relative;
	float: left;
	margin: 0 0 10px 25px;
	background: #000;
}
#main .newmovie-list .ico-video {
	position: absolute;
	left: 3px;
	bottom: 3px;
}
#main .newmovie-list .time {
	display: block;
	position: absolute;
	right: 1px;
	bottom: 1px;
	padding: 2px;
	background: #000;
	opacity: 0.70;
	-moz-opacity: 0.70;
	filter: alpha(opacity=70);
	color: #fff;
	font-size: 75%;
}
* html #main .newmovie-list .time {
	padding: 0 3px;
	layout-grid-line: none;
	cursor: pointer;
}
*:first-child+html #main .newmovie-list .time {
	padding: 0 3px;
	layout-grid-line: none;
	cursor: pointer;
}
#main .newmovie-list .bg-layer {
	display: block;
	line-height: 1;
	background: #fff;
}
* html #main .newmovie-list .bg-layer {
	display: inline;
}
*:first-child+html #main .newmovie-list .bg-layer {
	display: inline;
}
#main .newmovie-list .pic {
	display: table-cell;
	width: 100px;
	height: 75px;
	layout-grid-line: 75px;
	border: 1px solid #D9D2C3;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
}
#main .newmovie-list a.pic:hover .pic-movie {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
@-moz-document url-prefix() { /* FF */
#main .newmovie-list .pic {
	height: 77px;
}
}
* html #main .newmovie-list .pic {
	display: block;
}
*:first-child+html #main .newmovie-list .pic {
	display: block;
}
* html #main .newmovie-list .pic img {
	margin-top: -1px;
}
*:first-child+html #main .newmovie-list .pic img {
	margin-top: -1px;
}
#main .product-inst-newphoto .view-more {
	clear: both;
	text-align: right;
}
* html #main .product-inst-newphoto .view-more {
	margin-top: 10px;
}
*:first-child+html #main .product-inst-newphoto .view-more {
	margin-top: 10px;
}
#main .product-inst-newphoto .view-more a {
	padding: 0 14px 0 0;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right center;
	font-weight: bold;
}

/* #product-video */
#product-video {
	padding: 0 10px;
}
#product-video .cmn-review-video {
	margin: 0 0 10px -35px;
}
#product-video .cmn-review-video li {
	float: left;
	margin-left: 35px;
}
#product-video .cmn-review-video a:link,
#product-video .cmn-review-video a:visited {
	text-decoration: none;
}
#product-video .cmn-review-video .video {
	position: relative;
	background: #000;
}
* html #product-video .cmn-review-video .video {
	display: inline;
	zoom: 1;
}
#product-video .cmn-review-video .ico-video {
	position: absolute;
	left: 3px;
	top: 71px;
}
* html #product-video .cmn-review-video .ico-video {
	top: 72px;
}
*:first-child+html #product-video .cmn-review-video .ico-video {
	top: 72px;
}
#product-video .cmn-review-video .time {
	display: block;
	position: absolute;
	bottom: 1px;
	right: 1px;
	width: 28px;
	padding: 3px;
	background: #000;
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
	color: #fff;
	font-size: 75%;
	line-height: 1;
	text-decoration: none;
}
* html #product-video .cmn-review-video .time {
	padding: 0 3px;
	layout-grid-line: none;
	cursor: pointer;
}
*:first-child+html #product-video .cmn-review-video .time {
	padding: 0 3px;
	layout-grid-line: none;
}
#product-video .cmn-review-video .bg-layer {
	display: block;
	line-height: 1;
	background: #fff;
}
* html #product-video .cmn-review-video .bg-layer {
	display: inline;
}
*:first-child+html #product-video .cmn-review-video .bg-layer {
	display: inline;
}
#product-video .cmn-review-video .pic {
	display: table-cell;
	width: 120px;
	height: 90px;
	layout-grid-line: 90px;
	border: 1px solid #d9d2c3;
	text-align: center;
	vertical-align: middle;
}
#product-video .cmn-review-video .pic-photo,
#product-video .cmn-review-video .pic-movie {
	filter: alpha(opacity=100);
}
#product-video .cmn-review-video a.pic:hover img {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#product-video .cmn-review-video a.pic:hover .pic-photo,
#product-video .cmn-review-video a.pic:hover .pic-movie {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
@-moz-document url-prefix() { /* FF */
#product-video .cmn-review-video li .pic {
	height: 92px;
}
}
* html #product-video .cmn-review-video li .pic {
	display: block;
}
*:first-child+html #product-video .cmn-review-video li .pic {
	display: block;
}
* html #product-video .cmn-review-video li .pic img {
	margin-top: -1px;
}
*:first-child+html #product-video .cmn-review-video li .pic img {
	margin-top: -1px;
}
#product-video .cmn-review-video .video-expl {
	width: 120px;
	margin-top: 3px;
	word-break: break-all;
	word-wrap: break-word;
}

/* この商品の購入サイト: product-shop-site(pink ver) ------------------------*/
/*
#product-shopping-site {
	position: relative;
	margin-bottom: 20px;
	border: 1px solid #e8a9a9;
}
#product-shopping-site .inr {
	background: #fee url("/images/cnt/product/bg_product-shop.png") no-repeat right bottom;
	border: 1px solid #ffd6d6;
}
#product-shopping-site .title {
	width: 390px;
	padding: 12px 10px 0;
	margin-bottom: 15px;
}
#product-shopping-site .title-txt {
	float:left;
	margin-right: 5px;
	font-weight: bold;
	font-size: 105%;
}
#product-shopping-site .cat-name {
	display: block;
	margin-top: 2px;
	padding-left: 5px;
	color: #555;
	font-size: 83%;
	border-left: 1px dotted #bdb8ad;
	overflow: hidden;
}
* html #product-shopping-site .cat-name{
	padding-top: 3px;
	zoom: 1;
}
#product-shopping-site .brand-shop-list {
	position: absolute;
	top: 10px;
	right: 10px;
}
#product-shopping-site .shopping-list {
	margin: 0 10px 10px;
	border-bottom: 1px dotted #bdb8ad;
}
#product-shopping-site .shopping-list li {
	padding-bottom: 7px;
}
#product-shopping-site .shopping-ttl {
	display: inline-block;
	width: 130px;
	padding-left: 20px;
	color: #755;
	font-weight: bold;
}
* html #product-shopping-site .shopping-ttl {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-shopping-site .shopping-ttl {
	display: inline;
	zoom: 1;
}
#product-shopping-site .affiliate .shopping-ttl {
	background: url("/images/cnt/product/ico_shop_bag.png") left top no-repeat;
}
#product-shopping-site .cosmecom .shopping-ttl {
	background: url("/images/cnt/product/ico_cosmecom.png") 1px top no-repeat;
}
#product-shopping-site .cosmestore .shopping-ttl {
	background: url("/images/cnt/product/ico_cosmestore.png") left top no-repeat;
}
#product-shopping-site .shopping-desc {
	display: inline-block;
}
* html #product-shopping-site .shopping-desc {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-shopping-site .shopping-desc {
	display: inline;
	zoom: 1;
}
#product-shopping-site .shopping-desc a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_green_right.png") left 5px no-repeat;
}
#product-shopping-site .affiliate a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_pink_right.png") left 5px no-repeat;
}
#product-shopping-site .shopping-desc a:link,
#product-shopping-site .shopping-desc a:visited{
	color: #333;
}
#product-shopping-site .shopping-desc a:hover {
	color: #07b0a9;
}
#product-shopping-site .att-shopping-cmp {
	display: inline-block;
	margin-left: 5px;
	color: #fa3e30;
	font-size: 83%;
	font-weight: bold;
}
* html #product-shopping-site .ico-shopping-cmp {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-shopping-site .ico-shopping-cmp {
	display: inline;
	zoom: 1;
}
#product-shopping-site .store-navi {
	margin: 0 80px 10px 10px;
	color: #755;
	text-align: right;
}
#product-shopping-site .store-navi span {
	font-size: 83%;
}
#product-shopping-site .store-navi a{
	font-size: 105%;
 font-weight: bold;
}
#product-shopping-site .store-navi a:link,
#product-shopping-site .store-navi a:visited {
	text-decoration: none;
}
#product-shopping-site .cosmestore {
	position:relative;
}
* html #product-shopping-site .cosmestore {
	zoom: 1;
}
#product-shopping-site .toggle {
	position: absolute;
	width: 320px;
	bottom: 0;
	right: 35px;
	background: #f4f2ec;
	border: 1px solid #bdb8ad;
	display: none;
	-moz-box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
	-webkit-box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
	-o-box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
	-ms-box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
	box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
}
#product-shopping-site .toggle-inr {
	padding: 15px 10px 10px;
	border: 3px solid #e8e5e0;
}
#product-shopping-site .toggle a {
	padding-left: 10px;
	background: url("/images/cnt/product/ico_arw_green_right.png") left 5px no-repeat;
}
#product-shopping-site .toggle a:link,
#product-shopping-site .toggle a:visited {
	color: #333;
}
#product-shopping-site .toggle a:hover {
	color: #07b0a9;
}
#product-shopping-site .toggle ul {
	margin-bottom: 10px;
}
#product-shopping-site .toggle li {
	display: inline-block;
	margin-right: 10px;
}
* html #product-shopping-site .toggle li {
	display: inline;
	zoom: 1;
}
*:first-child+html #product-shopping-site .toggle li {
	display: inline;
	zoom: 1;
}
#product-shopping-site .btn-close {
	position: absolute;
	display: block;
	width: 16px ;
	height: 0;
	top : 5px;
	right: 5px;
	padding-top: 16px;
	background: url("/images/cnt/product/btn_share_social.png") left -42px no-repeat;
	line-height: 2;
	cursor: pointer;
	overflow: hidden;
}
#product-shopping-site .notes {
	font-size: 83%;
}
*/

/* 右カラムポイント訴求BOX ------------------------*/
.idt-point {
	margin-bottom: 25px;
}
#idt-point-store a,
#idt-point-com a {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}
#idt-point-store .inr,
#idt-point-com .inr {
	padding: 7px;
	border: 1px solid #e8e5e0;
	background: #f4f2ec;
}
#idt-point-store .ico-store {
	display: table-cell;
	width: 95px;
	padding: 0 5px 8px 0;
	vertical-align: top;
	text-align: center;
	box-sizing: border-box;
}
#idt-point-store .ico-store span {
	display: block;
	position: relative;
	padding: 5px 0 4px;
	border-radius: 4px;
	background: #4EB691;
	color: #fff;
	font-size: 10px;
	line-height: 1.4;
}
#idt-point-store .ico-store span:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(78, 182, 145, 0);
	border-left-color: #4EB691;
	border-width: 4px;
	margin-top: -4px;
}
#idt-point-com .ico-com {
	display: table-cell;
	width: 95px;
	padding: 0 5px 8px 0;
	vertical-align: top;
	text-align: center;
	box-sizing: border-box;
}
#idt-point-com .ico-com span {
	display: block;
	position: relative;
	padding: 2px 0;
	border-radius: 4px;
	background: #D1293F;
	color: #fff;
	font-size: 10px;
}
#idt-point-com .ico-com span:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(209, 41, 63, 0);
	border-left-color: #D1293F;
	border-width: 4px;
	margin-top: -4px;
}
#idt-point-store .item-name,
#idt-point-com .item-name {
	display: table-cell;
	padding: 1px 0 5px 5px;
	width: 186px;
	min-height: 32px;
	line-height: 1.4;
	vertical-align: middle;
}
#idt-point-com .item-name {
	width: auto;
}
*:first-child+html #idt-point-store .item-name,
*:first-child+html #idt-point-com .item-name {
	display: block;
	float: left;
}
* html #idt-point-store .item-name,
* html #idt-point-com .item-name {
	display: block;
	float: left;
}
#idt-point-store .pdt-name,
#idt-point-com .pdt-name {
	font-weight: bold;
}
#idt-point-store .msg-point,
#idt-point-com .msg-point {
	padding: 5px 5px 0;
	border: 1px solid #c9baac;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #fff url("/images/cnt/product/point/img_store.png") no-repeat 220px 3px;
	text-align: center;
}
#idt-point-store .msg-point {
	padding-bottom: 5px;
}
#idt-point-com .msg-point {
	background: #fff url("/images/cnt/product/point/img_com.png") no-repeat 220px 3px;
}
#idt-point-store .inr-msg-point,
#idt-point-com .inr-msg-point {
	padding: 1px 0 4px 45px;
	background: url("/images/cnt/product/point/ico_point.png") no-repeat left top;
	text-align: left;
}
#idt-point-store .dtl-point,
#idt-point-com .dtl-point {
	color: #cb910a;
	font-weight: bold;
}
#idt-point-store .dtl-point span,
#idt-point-com .dtl-point span {
	font-weight: normal;
}
#idt-point-store .btn-store {
	overflow: hidden;
	width: 158px;
	height: 0;
	margin: 0 auto;
	padding-top: 25px;
	background: url("/images/cnt/product/point/btn_store.png") no-repeat left top;
	line-height: 2;
	cursor: pointer;
}
#idt-point-store a:hover .btn-store {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}

/** Androidアプリ訴求枠 ----------------------------------------------------------------**/
/* bnr-app-and ----------------------*/
#bnr-app-and {
	margin: 0px 20px 30px 20px;
}
#bnr-app-and a {
	display: inline-block;
	width: 100%;
	padding: 23px 0;
	border: 1px solid #429281;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: -webkit-gradient(linear, left top, left bottom, from(#8dc1b5), color-stop(50%, #80baae), color-stop(51%, #5fa799), to(#498));
	background: linear-gradient(top, #8dc1b5, #80baae 50%, #5fa799 51%, #498);
	color: #fff;
	font-size: 54px;
	font-weight: bold;
	text-decoration: none;
	-webkit-text-shadow: 0px -1px 2px #276;
	text-shadow: 0px -1px 2px #276;
	text-align: center;
	letter-spacing: 0.1em;
	cursor: pointer;
	line-height: 1.2;
}
#bnr-app-and a span {
	font-size: 52px;
}
#bnr-app-and a .dtl {
	font-size: 44px;
	font-weight: normal;
}

/* rvw-trd ------------------------*/
/* common --------*/
#rvw-trd .ttl,
#rvw-trd .ttl li.ico,
#rvw-trd .prm-btn,
#rvw-trd .prm-btn a span {
	background: url("/images/cnt/product/ico_rvwtrd.png") no-repeat;
}
#rvw-trd a {
	text-decoration: none;
}
#rvw-trd .bg,
#rvw-trd .trd-bg {
	position: relative;
	border: 2px solid #d3cbb4;
	background: url("/images/cnt/product/bg-rvw-trend.png") repeat 0 0;
}
#rvw-trd .bg {
	padding: 0 8px;
	border-bottom: 0;
}
#rvw-trd .trd-bg {
	margin-bottom: 25px;
	padding: 0 8px 10px;
}
#rvw-trd .ttl {
	height: 24px;
	margin-bottom: 6px;
	padding-top: 7px;
	background-position: 0 -40px;
}
#rvw-trd li {
	display: inline-block;
	vertical-align: middle;
}
#rvw-trd .ttl li:first-child {
	padding-left: 30px;
	color: #5c4613;
	font-size: 17px;
	font-weight: bold;
	text-shadow: 1px 1px 1px #fff, 0px 2px 0px #fff, 1px -1px 1px #fff, 0px 0px 0px #fff;
}
#rvw-trd .ttl li.ico {
	margin-right: 5px;
	padding: 5px 6px 4px 5px;
	background-position: 0 -104px;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	text-shadow: none;
	line-height: 1;
}
#rvw-trd .ttl li:last-child {
	color: #56400f;
}
#rvw-trd .desc {
	width: 548px;
	margin: 0 auto 3px;
	padding: 5px 0;
	border: 2px solid #eeb6ca;
	background: #fff;
	color: #675328;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
#rvw-trd .desc span {
	color: #be3445;
	font-size: 16px;
}
#rvw-trd .dummy img {
	position: absolute;
	top: 63px;
	left: 10px;
	z-index: 1;
}
#rvw-trd .bg-chart,
#rvw-trd .bg-chart-prm {
	background: #fff;
	border: 1px solid #e1d9c2;
	border-radius: 5px;        /* CSS3草案 */
	-moz-border-radius: 5px;   /* Firefox用 */
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
}
#rvw-trd .trd-bg .bg-chart-prm {
	padding-bottom: 10px;
}
#rvw-trd .chart {
	border-top: 1px dotted #d6d1c4;
}
#rvw-trd .trd-bg .bg-chart-prm .chart {
	border-top: none;
	border-bottom: 1px dotted #d6d1c4;
}
#rvw-trd .chart:first-child,
#rvw-trd .trd-bg .bg-chart-prm .chart:first-child {
	border-top: none;
}
#rvw-trd .trd-bg .bg-chart-prm .chart {
	margin: 0 10px;
}
#rvw-trd .chart dl {
	display: table;
	width: 586px;
	padding: 7px 20px 5px 7px;
	background: url("/images/cnt/product/ico-rvw-trend-list.png") no-repeat 593px center;
}
#rvw-trd .bg-chart-prm .chart dl {
	padding: 10px 20px 8px 7px;
}
#rvw-trd .trd-bg .bg-chart-prm .chart dl {
	width: 583px;
	padding: 12px 10px 8px 0;
	background: url("/images/cnt/product/ico-rvw-trend-list.png") no-repeat 583px center;
}
#rvw-trd .trd-bg .bg-chart .chart dl:first-child {
	padding: 6px 20px 6px 7px;
}
#rvw-trd .chart dt,
#rvw-trd .chart dd {
	display: table-cell;
}
#rvw-trd .chart dt {
	width: 130px;
	height: 100%;
	padding-right: 7px;
	color: #333;
	font-size: 16px;
	font-weight: bold;
	text-align: right;
}
#rvw-trd .chart dd {
	position: relative;
	display: block;
	max-width: 436px;
	min-width: 52px;
	height: 14px;
}
#rvw-trd .chart .grh {
	background: #e992b1;
}
#rvw-trd .chart .grh-snd {
	background: #f2c0d2;
}
#rvw-trd .chart dd span {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 45px;
	min-width: 10px;
	padding-left: 5px;
	background: #fff;
	color: #ea8bad;
	font-size: 12px;
}
#rvw-trd .bg-chart-prm .trd-non {
	margin: 10px;
	font-weight: bold;
}
/* 非プレミアム */
#rvw-trd .prm-btn {
	width: 345px;
	margin: 10px auto 0;
	padding: 10px 0;
	background-position: 0 -156px;
}
#rvw-trd .prm-btn a {
	padding: 0;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
}
#rvw-trd .prm-btn a span {
	margin: 0 20px 0 62px;
	padding: 0 29px;
	background-position: 0 -234px;
}
/* プレミアム */
#rvw-trd .bg-chart-prm .chart a:hover .grh,
#rvw-trd .bg-chart-prm .chart a:hover .grh-snd {
	background: #ffeabb;
}
#rvw-trd .bg-chart-prm .chart a:hover .grh span,
#rvw-trd .bg-chart-prm .chart a:hover .grh-snd span {
	color: #f7c450;
}
#rvw-trd .bg-chart-prm .more {
	padding: 6px 10px;
	text-align: right;
	border-top: 1px dotted #d6d1c4;
}
#rvw-trd .bg-chart-prm .more a {
	padding-right: 17px;
	background: url("/images/general/common/icons/ico_arw_l_grn_right.png") no-repeat right 2px;
	color: #068681;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
}
#rvw-trd .bg-chart-prm .more a:hover {
	color: #07b0a9;
}
/* 商品詳細 --------*/
#rvw-trd .pdt-rvwtrd-btm {
	margin-bottom: 2px;
	background: url("/images/cnt/product/bg-rvw-trend-btm_150210.png") no-repeat bottom center;
	padding-bottom: 27px;
}
/* クチコミトレンド --------*/
#rvw-trd .bg-chart-prm .srch {
	margin: 10px 10px 0;
	padding-bottom: 13px;
	border-bottom: 1px solid #d6d1c4;
}
#rvw-trd .bg-chart-prm .srch a {
	text-decoration: underline;
	padding: 0 3px;
}
#rvw-trd .bg-chart-prm .srch p {
	margin-bottom: 12px;
	padding: 5px 8px;
	font-size: 12px;
	font-weight: bold;
	color: #775555;
	text-align: left;
	background: #e0dbce;
	line-height: 1.2;
}
#rvw-trd .bg-chart-prm .srch p span {
	padding-left: 15px;
	background: url("/images/cnt/product/ico_product_search.png") no-repeat 0 4px;
}
#rvw-trd .bg-chart-prm .srch ul {
	margin: 8px 10px 0;
}
#rvw-trd .bg-chart-prm .srch .srch-ttl {
	width: 72px;
	height: 18px;
	margin-right: 6px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #ada28a;
	color: #fff;
	font-size: 95%;
	text-align: center;
	line-height: 1.6;
}
#rvw-trd .bg-chart-prm .srch span {
	padding: 2px 2px 0;
	background: #f2e8d8;
}

/** ----------------------------------------------------------
	201606新DB用商品TOP・SKU詳細
--------------------------------------------------------------**/

/* #pdt-info-newdb-1606 商品情報--------*/

#pdt-info-newdb-1606 {
	margin-bottom: 15px;
}
#pdt-info-newdb-1606 .carousel-box {
	position: relative;
	float: left;
	width: 230px;
	margin-right: 15px;
}
#pdt-info-newdb-1606 .pic-prev,
#pdt-info-newdb-1606 .pic-next {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 35%;
	width: 17px;
	height: 78px;
	margin-top: -39px;
	border: solid 1px #d5d0ce;
	cursor: pointer;
}
#pdt-info-newdb-1606 .pic-prev a,
#pdt-info-newdb-1606 .pic-next a {
	display: block;
	height: inherit;
	border: solid 1px #d5d0ce;
	text-decoration: none;
	box-sizing: border-box;
}
#pdt-info-newdb-1606 .pic-prev span,
#pdt-info-newdb-1606 .pic-next span {
	display: block;
	overflow: hidden;
	width: 0;
	height: 0;
}
#pdt-info-newdb-1606 .pic-prev {
	left: 0;
	z-index: 9999;
}
#pdt-info-newdb-1606 .pic-prev.disabled,
#pdt-info-newdb-1606 .pic-next.disabled {
	border: solid 1px #e1dedd;
	background: #fff;
	z-index: 0;
}
#pdt-info-newdb-1606 .pic-prev {
	border-radius: 2px 0 0 2px;
	background: #efeeee; /* Old browsers */
	background: -moz-linear-gradient(left,  #efeeee 1%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #efeeee 1%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #efeeee 1%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efeeee', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}
#pdt-info-newdb-1606 .pic-prev:after {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	width: 0px;
	height: 0px;
	margin-left: -2px;
	border-style: solid;
	border-width: 4px 4px 4px 0;
	border-color: transparent #9f766c transparent transparent;
	content: "";
}
#pdt-info-newdb-1606 .pic-prev.disabled:after {
	border-color: transparent #e1dedd transparent transparent;
}
#pdt-info-newdb-1606 .pic-next {
	right: 0;
}
#pdt-info-newdb-1606 .pic-next {
	border-radius: 0 2px 2px 0;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(left,  #ffffff 0%, #efeeee 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #ffffff 0%,#efeeee 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #ffffff 0%,#efeeee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efeeee',GradientType=1 ); /* IE6-9 */
}
#pdt-info-newdb-1606 .pic-next:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	z-index: 0;
	width: 0px;
	height: 0px;
	margin-right: -2px;
	border-style: solid;
	border-width: 4px 0 4px 4px;
	border-color: transparent transparent transparent #9f766c;
	content: "";
}
#pdt-info-newdb-1606 .pic-next.disabled:after {
	border-color: transparent transparent transparent #e1dedd;
}
#pdt-info-newdb-1606 .pict {
	overflow: hidden;
	width: inherit;
	text-align: center;
}
#pdt-info-newdb-1606 .pict .pict-list {
	width: 99999px;
}
#pdt-info-newdb-1606 .pict .pict-list > li {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	float: left;
	width: 230px;
	height: 180px;
	text-align: center;
}
#pdt-info-newdb-1606 .pict .pict-list > li img {
	pointer-events: none;
}
#pdt-info-newdb-1606 .pic-cnt-page-wrap {
	padding-top: 16px;
	text-align: center;
}
#pdt-info-newdb-1606 .pic-cnt-page {
	display: inline-block;
	padding: 0 14px;
	border-radius: 10px;
	background: #f3f0e8;
	font-size: 11px;
}
#pdt-info-newdb-1606 .info {
	overflow: hidden;
}
#pdt-info-newdb-1606  .info-rating {
	margin-bottom: 10px;
}
#pdt-info-newdb-1606 .info-rating .info-rev {
	padding-top: 0;
}
#pdt-info-newdb-1606 .info-rating li {
	display: block;
	padding: 5px 0 3px;
	border-bottom: 1px dotted #bdb8ad;
}
#pdt-info-newdb-1606 .info-rev .info-ttl {
	padding-top: 5px;
}
#pdt-info-newdb-1606 .info-ttl {
	float: left;
	width: 105px;
	padding-top: 5px;
	font-size: 83%;
	color: #755;
}
#pdt-info-newdb-1606 .info-desc {
	overflow: hidden;
	word-wrap: break-word;
}
#pdt-info-newdb-1606  .average {
	display: inline-block;
	padding: 2px 0 0 164px;
	background: url("/images/general/common/review_star/ico_star_large_all.png") no-repeat;
	color: #755;
	font-size: 139%;
	font-weight: bold;
	vertical-align: middle;
}
#pdt-info-newdb-1606  .avr-5 {
	background-position: 0 -300px;
}
#pdt-info-newdb-1606 .point {
	display: inline-block;
	margin-left: 5px;
	padding-left: 26px;
	background: url("/images/general/common/ranking_icons/ico_csm_point.png") 7px 0px no-repeat;
	border-left: 1px dotted #bdb8ad;
	vertical-align: middle;
}
#pdt-info-newdb-1606 .info-ranking {
	display: block;
	float: left;
	padding: 1px 7px 0 30px;
	background: url("/images/cnt/product/ico_product_rank_s.png") 0 0 no-repeat;
	font-size: 105%;
	font-weight: bold;
}
#pdt-info-newdb-1606 .info-ranking span {
	font-size: 130%;
}
#pdt-info-newdb-1606 .info-ctg {
	display: block;
	overflow: hidden;
	padding-top: 5px;
}
#pdt-info-newdb-1606 .info-ctg a:link, #pdt-info-newdb-1606 .info-ctg a:visited {
	color: #755;
	text-decoration: none;
}
#pdt-info-newdb-1606 .info-related {
	position: relative;
}
#pdt-info-newdb-1606 .product-action {
	display: inline-flex;
	flex-wrap: wrap;
	margin-bottom: 11px;
	padding: 5px 5px 0;
	background: #f4f2ec;
	vertical-align: middle;
	white-space: nowrap;
}
#pdt-info-newdb-1606 .product-action ul {
	display: inline-flex;
	flex-wrap: wrap;
	max-width: 370px;
	vertical-align: middle;
	white-space: nowrap;
}
#pdt-info-newdb-1606 .product-action > li,
#pdt-info-newdb-1606 .product-action ul > li {
	padding-bottom: 5px;
}
#pdt-info-newdb-1606 .product-action ul > li {
	padding-bottom: 0;
}
#pdt-info-newdb-1606 .product-action ul > li:not(:last-child),
#pdt-info-newdb-1606 .product-action > li:not(:last-child) {
	margin-right: 5px;
}
#pdt-info-newdb-1606 .btn-cmn-product-act.post-review:hover, #pdt-info-newdb-1606 .btn-cmn-product-act.add-clip:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}
#pdt-info-newdb-1606 .btn-cmn-product-act.post-review {
	background-position: left top;
}
#pdt-info-newdb-1606 .btn-cmn-product-act {
	display: block;
	overflow: hidden;
	width: 120px;
	height: 0;
	padding-top: 34px;
	background: url("/images/cnt/product/btn_product_act_201410.png") no-repeat;
	line-height: 2;
}
#pdt-info-newdb-1606 .act-button {
	min-width: 120px;
	height: 34px;
}
#pdt-info-newdb-1606 .rev-cnt {
	font-size: 105%;
}
#pdt-info-newdb-1606 .rev-cnt li {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
}
#pdt-info-newdb-1606 .rev-cnt li:first-child {
	margin-right: 15px;
}
#pdt-info-newdb-1606 .cnt {
	font-size: 125%;
	font-weight: bolder;
}
#pdt-info-newdb-1606 .rev-cnt .buyer, #pdt-info-newdb-1606 .rev-cnt .rvw-trd {
	display: block;
	margin: 4px 0 0 15px;
	padding-left: 10px;
	background: url("/images/cnt/product/ico_tree.png") 0 0 no-repeat;
	font-size: 87%;
}
#pdt-info-newdb-1606 .rev-cnt .buyer {
	font-weight: bold;
}
#pdt-info-newdb-1606 .rev-cnt .buyer a {
	display: inline-block;
	padding: 2px 9px 2px 2px;
	background: #e4f4ee url("/images/general/common/icons/viewmore_ico.png") no-repeat 99% 50%;
}
#pdt-info-newdb-1606 .rev-cnt .rvw-trd a {
	display: inline-block;
	height: 20px;
	padding-left: 20px;
	line-height: 20px;
	background: url("/images/cnt/product/ico_rvwtrd.png") no-repeat 0 0;
	color: #ed689d;
}
#pdt-info-newdb-1606 .rev-cnt .rvw-trd a:hover {
	color: #fba7c5;
}
#pdt-info-newdb-1606 .avr-0 {
	background-position: 0 0;
}
#pdt-info-newdb-1606 .avr-0_5 {
	background-position: 0 -30px;
}
#pdt-info-newdb-1606 .avr-1 {
	background-position: 0 -60px;
}
#pdt-info-newdb-1606 .avr-1_5 {
	background-position: 0 -90px;
}
#pdt-info-newdb-1606 .avr-2 {
	background-position: 0 -120px;
}
#pdt-info-newdb-1606 .avr-2_5 {
	background-position: 0 -150px;
}
#pdt-info-newdb-1606 .avr-3 {
	background-position: 0 -180px;
}
#pdt-info-newdb-1606 .avr-3_5 {
	background-position: 0 -210px;
}
#pdt-info-newdb-1606 .avr-4 {
	background-position: 0 -240px;
}
#pdt-info-newdb-1606 .avr-4_5 {
	background-position: 0 -270px;
}
#pdt-info-newdb-1606 .avr-5 {
	background-position: 0 -300px;
}
#pdt-info-newdb-1606 .avr-5_5 {
	background-position: 0 -330px;
}
#pdt-info-newdb-1606 .avr-6 {
	background-position: 0 -360px;
}
#pdt-info-newdb-1606 .avr-6_5 {
	background-position: 0 -390px;
}
#pdt-info-newdb-1606 .avr-7 {
	background-position: 0 -420px;
}
#pdt-info-newdb-1606 .check {
	position: absolute;
	top :0;
	right: 0;
	padding-left: 16px;
	background: url("/images/cnt/product/ico_check.png") 0 0 no-repeat;
	font-size: 95%;
}


/* .vri-item バリエーション一覧 0328改修--------*/

.vri-item {
	position: relative;
	width: 100%;
	padding-bottom: 20px;
}
.vri-item .vri-item-heading {
	display: flex;
	align-items: center;
	background: #efebe0;
}
.vri-item .ttl {
	padding: 4px 0 2px 10px;
	font-size: 14px;
	font-weight: bold;
}
.vri-item .ttl .vri-all {
	margin-left: -5px;
	font-size: 13px;
	font-weight: bold;
	line-height: 1;
	font-weight: normal;
}
.vri-item .vri-item-inr-top,
.vri-item .vri-item-inr-all {
	width: 584px;
	margin: 0 auto;
}
.vri-item .vri-item-inr-top {
	padding: 20px 0 5px;
}
.vri-item .vri-item-list > li {
	float: left;
	width: 102px;

	padding: 11px 0 10px;
	margin-right: 18px;
	text-align: center;
	box-sizing: border-box;
}
.vri-item .vri-item-list > li:nth-of-type(5n) {
	margin-right: 0;
}
.vri-item .vri-item-list > li:nth-of-type(5n+1) {
	clear: both;
}
.vri-item .vri-item-list > li.current {
	background: #d1eae9;
}
.vri-item .vri-item-list > li > a {
	display: block;
	height: 100%;
	text-decoration: none;
	color: #333;
}
.vri-item .vri-item-list > li > a .vari-pic {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
.vri-item .vri-item-list > li > a .vari-pic img {
	pointer-events: none;
}
.vri-item .vri-item-list > li.current > a {
	color: #333;
}
.vri-item .vri-item-list .vari-pdt-name {
	margin-top: 8px;
	padding: 0 6px;
	font-size: 12px;
	text-align: left;
	word-wrap: break-word;
}
.video .vari-pdt-name {
	color: #333;
}
.vri-more-link {
	text-align: right;
}
.vri-item .vri-item-inr-all .vri-item-list {
	display: none;
}
.vri-item .vri-more-link a {
	position: relative;
	padding-right: 14px;
	font-size: 13px;
	font-weight: bold;
}
.vri-item .vri-more-link > a::after {
	display: block;
	content: "";
  position: absolute;
  top: 50%;
  right: 3px;
	width: 0;
	height: 0;
	position: absolute;
	border-top: 5px solid #068681;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  margin-top: -2px;
}
.vri-item-list .video {
  position: relative;
}
.vri-item-list .video .bg-layer {
	display: block;
	overflow: hidden;
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto;
}
.vri-item-list .video .pic-movie {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.vri-item-list .video .time {
	display: none;
}

.vri-item-list .ico-video {
	position: absolute;
	left: 20px;
	top: 58px;
}
.vri-item-list .pic {
	cursor: pointer;
}
.vri-item .sku-vri-qa {
	position: absolute;
	top: 3px;
	right: 8px;
	text-align: right;
}
.vri-tag-movie {
	position: relative;
	margin-left: -3px;
	padding: 2px 6px 1px 25px;
	background: #fff;
	border: solid 1px #775555;
	border-radius: 4px;
	font-size: 11px;
	color: #775555;
	font-weight: normal;
}
.vri-tag-movie::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 6px;
	width: 13px;
	height: 14px;
	background: url("/images/cnt/product/ico_pdt_movie.png") no-repeat center center;
	background-size: 13px 14px;
	margin-top: -7px;
}
.vri-item .vri-note {
	margin-top: 15px;
	text-align: right;
	font-size: 12px;
}
#product-spec .color-list li {
	position: relative;
	list-style:  none;
	display: none;
	margin: 0;
	padding: 0;
}
#product-spec .color-list li:after {
	display: inline-block;
	content: "/";
	margin-left: 3px;
}

#product-spec .color-list li:last-child:after {
	display: none;
}
#product-spec .color-list li:first-child,
#product-spec .color-list li:nth-child(2),
#product-spec .color-list li:nth-child(3),
#product-spec .color-list li:nth-child(4) {
  display: inline;
}
#product-spec .color-list li.open {
  display: inline;
}
#product-spec .color-list li:before {
  display: none;
}

#product-spec .color .color-list + p {
	margin: 10px 4px 0 0;
	text-align: right;
	font-size: 11px;
	padding-right: 10px;
	background: url(/images/general/common/icons/icon_arw_s_brn.png) right 6px no-repeat;
}
#product-spec .color .color-list + p > a {
	position: relative;
	color: #553333;
	text-decoration: underline;
}
#product-spec .sku-lead-disc:not(:only-child) {
	display: block;
	margin-top: 8px;
}


/* #product-spec.newdb-1606 商品情報詳細--------*/

#product-spec.newdb-1606 .lead-txt {
	font-size: 13px;
	padding: 0 10px 10px;
	line-height: 1.6;
}
#product-spec.newdb-1606 .color .color-list li:last-child {
	margin-right: 0;
}
#product-spec.newdb-1606 dl:first-of-type {
	border-top: 1px dotted #bdb8ad;
}
#product-spec.newdb-1606 dl > dd p + p {
    margin-top: 20px;
}
#product-spec.newdb-1606 .movie-list {
	font-size: 0;
}
#product-spec.newdb-1606 .movie-list li {
	display: inline-block;
}
#product-spec.newdb-1606 .movie-list li:first-child {
	margin-right: 10px;
}
#product-spec.newdb-1606 .movie-list li a {
}
#product-spec.newdb-1606 .movie-list li a img {
	border: solid 1px #d9d2c3;
}
#product-spec.newdb-1606 .more-dtls {
	display: none;
}
#product-spec.newdb-1606 .sku-more-btn {
	margin-top: 8px;
	text-align: right;
}
#product-spec.newdb-1606 .sku-more-btn.hide {
	display: none;
}
#product-spec.newdb-1606 .more-dtls dl:first-of-type {
	border-top: none;
}
/*.inr-ttl-product-1606 商品名--------*/
#product-header .item-name .pdct-name a.inr-ttl-product-1606 {
	color: #068681;
}
#product-header .item-name .pdct-name a.inr-ttl-product-1606:hover {
	color: #07B0A9;
}
/*.inr-ttl-1606 SKU名--------*/

#product-header .inr-ttl-1606 {
	color:	#333333;
	font-size: 170%;
	font-weight: bold;
	vertical-align: middle;

}

/* #thumb-newdb-1606 ※201606改修時用------------------------*/

#thumb-newdb-1606 {
	margin-bottom: 32px;
	padding: 0 15px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
#thumb-newdb-1606 .pic {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	width: 348px;
	height: 348px;
	border: solid 1px #cbcbcb;
}
#thumb-newdb-1606 .pic.show-movie {
	border-color: #fff;
}
#thumb-newdb-1606 .pic img {
	max-width: 348px;
	max-height: 348px;
	pointer-events: none;
}
#thumb-newdb-1606.few .pic {
	margin-left: 70px;
}
#thumb-newdb-1606 .thumb-wrap {
	overflow: hidden;
	width: 230px;
	margin-left: 20px;
}
#thumb-newdb-1606.clearfix.few {
	margin: 0 auto 30px;
}
#thumb-newdb-1606.few .thumb-wrap {
	width: 160px;
}
#thumb-newdb-1606 .thumb-wrap .thumb-box {
	overflow: hidden;
	position: relative;
	left: 0;
	width: 9999px;
	-moz-transition: left 0.3s;
	-webkit-transition: left .3s;
	-o-transition: left .3s;
	-ms-transition: left .3s;
}
#thumb-newdb-1606 .thumb-wrap .thumb-box.few {
	margin: 0 auto;
}
#thumb-newdb-1606 .thumb-detail {
	float: left;
}
#thumb-newdb-1606 .thumb-detail.single {
	margin-top: 17px;
}
#thumb-newdb-1606 .thumb-wrap .thumb-inner {
	float: left;
	margin-right: 10px;
}
#thumb-newdb-1606 .thumb-wrap .thumb-inner:last-child {
	margin-right: 0;
}
#thumb-newdb-1606 .thumb-wrap .thumb-box ul li {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	position: relative;
	clear: both;
	width: 70px;
	height: 70px;
	margin-bottom: 11px;
	border: solid 1px #cbcbcb;
	cursor: pointer;
	box-sizing: border-box;
}

#thumb-newdb-1606 .thumb-wrap .thumb-box ul li:not(.movie) img:not(.ico-video) {
	max-width: 100%;
	max-height: 100%;
}

#thumb-newdb-1606 .thumb-wrap .thumb-box ul li.movie img:not(.ico-video) {
	width: 68px;
	height: auto;
}

#thumb-newdb-1606 .thumb-wrap .thumb-box ul li.current:after {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 62px;
	height: 62px;
	border: solid 3px #88c0be;
	content :"";
}
#thumb-newdb-1606 .pager {
	margin-top: 3px;
	font-size: 0;
	text-align: center;
}
#thumb-newdb-1606 .pager li {
	display: inline-block;
	margin-right: 4px;
	border: solid 1px #cecece;
	color: #666;
}
#thumb-newdb-1606 .pager li:last-child  {
	margin-right: 0;
}
#thumb-newdb-1606 .pager li > a  {
	display: block;
	width: 26px;
	padding: 5px 0;
	color: #666;
	font-size: 12px;
}
#thumb-newdb-1606 .pager li.current > a  {
	background: #cbcbcb;
	color: #fff;
	text-decoration: none;
}
#thumb-newdb-1606 .iframeMovie {
	border: 0;
}

/* thumb-newdb-1606 0328改修--------*/


#thumb-newdb-1606 .thumb-inner li .ico-video {
	position: absolute;
	bottom: 5px;
	left: 5px;
}

/* #pdt-newdb-vri-info1606 バリエーション詳細用商品情報モジュール------------------------*/

#pdt-newdb-vri-info1606 {
	position: relative;
	margin-bottom: 20px;
	padding-top: 25px;
}
#pdt-newdb-vri-info1606 .info-inner {
	margin: 0 7px 10px;
	padding: 0 6px;
	border-bottom: dotted 1px #bdb8ad;
}
#pdt-newdb-vri-info1606 .info-inner .pdt-about {
	margin-bottom: 10px;
}
#pdt-newdb-vri-info1606 .title {
	padding: 5px 0 5px 9px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	border-left: solid 2px #fff;
	border-radius: 3px 3px 2px 2px;
	box-shadow:0px 0px 0px 1px #e5e0d5;
	-moz-box-shadow:0px 0px 0px 1px #e5e0d5;
	-webkit-box-shadow:0px 0px 0px 1px #e5e0d5;
	background: -moz-linear-gradient(top,  #fdf9f2 1%, #fdf9f2 49%, #efece7 100%);
	background: -webkit-linear-gradient(top,  #fdf9f2 1%,#fdf9f2 49%,#efece7 100%);
	background: linear-gradient(to bottom,  #fdf9f2 1%,#fdf9f2 49%,#efece7 100%);
	color: #333;
	font-size: 14px;
	font-weight: bold;
}
#pdt-newdb-vri-info1606  .title-wrap {
	margin-bottom: 10px;
	padding-bottom: 1px;
	border-bottom: solid 3px #74bbab;
	border-radius: 3px;
}
#pdt-newdb-vri-info1606 .title-txt {
	float: left;
	margin-right: 5px;
	font-size: 105%;
	font-weight: bold;
}
#pdt-newdb-vri-info1606 .pdt-name {
	margin-top: 14px;
	font-size: 18px;
	font-weight: bold;
}
#pdt-newdb-vri-info1606 .pdt-name > a {
	color: #068681;
	text-decoration: none;
}
#pdt-newdb-vri-info1606 .pdt-name > a:hover {
	color: #07B0A9;
	text-decoration: underline;
}
#pdt-newdb-vri-info1606 .pict {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	float: left;
	width: 120px;
	height: 120px;
	margin-right: 15px;
	border: solid 1px #d9d2c3;
}
#pdt-newdb-vri-info1606 .pict > a > img {
	max-width: 120px;
	max-height: 120px;
	pointer-events: none;
}
#pdt-newdb-vri-info1606 .info {
	float: left;
	width: 470px;
	margin-bottom: 15px;
	word-break: break-all;
}
#pdt-newdb-vri-info1606 .sku-cat-list {
	position: absolute;
	right: 0;
	top: 13px;
	font-size: 0;
}
#pdt-newdb-vri-info1606 .sku-cat-list > li {
	display: inline-block;
	margin-right: 10px;
	padding-right: 3px;
	border-right: dotted 1px #c5c1b7;
	font-size: 12px;
}
#pdt-newdb-vri-info1606 .sku-cat-list > li:last-child {
	border-right: none;
}
#pdt-newdb-vri-info1606 .sku-cat-list > li:first-child > a {
	background: url("/images/cnt/product/ico_view_ctg.png") no-repeat left -30px;
	padding-left: 22px;
}
#pdt-newdb-vri-info1606 .sku-cat-list > li:last-child > a {
	background: url("/images/cnt/product/ico_view_ctg.png") no-repeat left -60px;
	padding: 3px 0 0 22px;
}
#pdt-newdb-vri-info1606 .info-rating {
	margin-top: 13px;
}
#pdt-newdb-vri-info1606 .info-rating li {
	display: inline-block;
	padding-right: 5px;
	vertical-align: middle;
}
#pdt-newdb-vri-info1606 .average {
	display: inline-block;
	padding: 2px 0 0 164px;
	background: url("/images/general/common/review_star/ico_star_large_all.png") no-repeat;
	color: #755;
	font-size: 139%;
	font-weight: bold;
	vertical-align: middle;
}
#pdt-newdb-vri-info1606 .avr-0 {
	background-position: 0 0;
}
#pdt-newdb-vri-info1606 .avr-0_5 {
	background-position: 0 -30px;
}
#pdt-newdb-vri-info1606 .avr-1 {
	background-position: 0 -60px;
}
#pdt-newdb-vri-info1606 .avr-1_5 {
	background-position: 0 -90px;
}
#pdt-newdb-vri-info1606 .avr-2 {
	background-position: 0 -120px;
}
#pdt-newdb-vri-info1606 .avr-2_5 {
	background-position: 0 -150px;
}
#pdt-newdb-vri-info1606 .avr-3 {
	background-position: 0 -180px;
}
#pdt-newdb-vri-info1606 .avr-3_5 {
	background-position: 0 -210px;
}
#pdt-newdb-vri-info1606 .avr-4 {
	background-position: 0 -240px;
}
#pdt-newdb-vri-info1606 .avr-4_5 {
	background-position: 0 -270px;
}
#pdt-newdb-vri-info1606 .avr-5 {
	background-position: 0 -300px;
}
#pdt-newdb-vri-info1606 .avr-5_5 {
	background-position: 0 -330px;
}
#pdt-newdb-vri-info1606 .avr-6 {
	background-position: 0 -360px;
}
#pdt-newdb-vri-info1606 .avr-6_5 {
	background-position: 0 -390px;
}
#pdt-newdb-vri-info1606 .avr-7 {
	background-position: 0 -420px;
}
#pdt-newdb-vri-info1606 .check {
	position: absolute;
	top :0;
	right: 0;
	padding-left: 16px;
	background: url("/images/cnt/product/ico_check.png") 0 0 no-repeat;
	font-size: 95%;
	line-height: 1.2;
}
#pdt-newdb-vri-info1606 .point {
	display: inline-block;
	padding: 0 10px 0 26px;
	background: url("/images/general/common/ranking_icons/ico_csm_point.png") 7px 0px no-repeat;
	border-left: 1px dotted #bdb8ad;
	vertical-align: middle;
}
#pdt-newdb-vri-info1606 .info-ranking {
	display: inline-block;
	padding: 1px 7px 0 30px;
	background: url("/images/cnt/product/ico_product_rank_s.png") 0 0 no-repeat;
	font-size: 105%;
	font-weight: bold;
}
#pdt-newdb-vri-info1606 .info-ranking span {
	font-size: 130%;
}
#pdt-newdb-vri-info1606 .info-ctg a:hover {
	color: #8e7c53;
}
#pdt-newdb-vri-info1606 .info-ctg a:link, #pdt-newdb-vri-info1606 .info-ctg a:visited {
	color: #755;
	text-decoration: none;
}
#pdt-newdb-vri-info1606 .info-ctg {
	display: inline-block;
	font-size: 83%;
}
#pdt-newdb-vri-info1606 .product-action {
	margin-bottom: 7px;
}
#pdt-newdb-vri-info1606 .product-action li {
	float: left;
	margin-right: 5px;
}
#pdt-newdb-vri-info1606 .btn-cmn-product-act {
	display: block;
	width: 120px;
	height: 0;
	padding-top: 34px;
	overflow: hidden;
	background: url("/images/cnt/product/btn_product_act_201410.png") no-repeat;
	line-height: 2;
}
#pdt-newdb-vri-info1606 .rev-cnt, #pdt-newdb-vri-info1606 .rev-cnt {
	font-size: 105%;
}
#pdt-newdb-vri-info1606 .rev-cnt li:first-child, #pdt-newdb-vri-info1606.rev-cnt li:first-child {
	margin-right: 15px;
}
#pdt-newdb-vri-info1606 .rev-cnt li, #pdt-newdb-vri-info1606 .rev-cnt li {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
}
#pdt-newdb-vri-info1606 .rev-cnt, #pdt-newdb-vri-info1606 .rev-cnt {
	margin-top: 10px;
	font-size: 105%;
}
#pdt-newdb-vri-info1606 .cnt {
	font-weight: bolder;
}
#pdt-newdb-vri-info1606 .rev-cnt .buyer, #pdt-newdb-vri-info1606 .rev-cnt .buyer, #pdt-newdb-vri-info1606 .rev-cnt .rvw-trd, #pdt-newdb-vri-info1606 .rev-cnt .rvw-trd {
	display: block;
	margin: 4px 0 0 15px;
	padding-left: 10px;
	background: url("/images/cnt/product/ico_tree.png") 0 0 no-repeat;
	font-size: 87%;
}
#pdt-newdb-vri-info1606 .rev-cnt .buyer a, #pdt-newdb-vri-info1606 .rev-cnt .buyer a {
	display: inline-block;
	background: url("/images/general/common/icons/viewmore_ico.png") no-repeat 99% 50%;
	padding: 2px 9px 2px 2px;
}
#pdt-newdb-vri-info1606 .rev-cnt .rvw-trd a, #pdt-newdb-vri-info1606 .rev-cnt .rvw-trd a {
	display: inline-block;
	padding: 2px 0 2px 20px;
	background: url("/images/cnt/product/ico_rvwtrd.png") no-repeat 0 0;
	color: #ed689d;
}
#pdt-newdb-vri-info1606 .pdt-top-link {
	margin-left: 11px;
	text-align: left;
}
#pdt-newdb-vri-info1606 .pdt-top-link a {
	padding-left: 14px;
	background: url("/images/general/common/icons/ico_arw_l_grn_left.png") no-repeat left center;
	font-weight: bold;
}

/* .sku-vri-qa　※201606改修時用*/

.sku-vri-qa {
	position: absolute;
	top: -1px;
	right: 8px;
	text-align: right;
}
.sku-vri-qa .txt {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}
.sku-vri-qa .txt:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 15px;
	height: 14px;
	margin-top: -7px;
	border: solid 1px #df8da4;
	background: #ea9cb2;
	color: #fff;
	font-size: 11px;
	content: "?";
	text-align: center;
	box-sizing: border-box;
}
.sku-vri-qa .txt > a {
	color: #333;
	font-size: 11px;
}
.sku-vri-qa .txt > a:hover {
	text-decoration: none;
}
.sku-vri-pop {
	display: none;
	position: absolute;
	top: 23px;
	right: 0;
	z-index: 11;
	width: 342px;
	padding: 11px 13px;
	border: solid 1px #fe7898;
	background: #fff;
	text-align: left;
	box-sizing: border-box;
}
.sku-vri-pop:before {
	display: block;
	position: absolute;
	top: -8px;
	right: 52px;
	width: 0;
	height: 0;
	margin-left: -10px;
	border-bottom: 8px solid #fe7898;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	content: "";
}
.sku-vri-pop:after {
	display: block;
	position: absolute;
	top: -6px;
	right: 52px;
	margin-left: -10px;
	width: 0;
	height: 0;
	border-bottom: 8px solid #fff;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	content: "";
}

/* .product-info　※201606改修時用*/

#asid-sbtm .product-info {
	position: absolute;
	top: -20px;
	left: 0;
	display: block;
	width: 118px;
	height: 19px;
	background: #fff;
}
#asid-sbtm .product-info a {
	position: absolute;
	display: block;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 118px;
	height: 0;
	padding-top: 19px;
	background: url("/images/cnt/product/btn_product_info.png") top left no-repeat;
	line-height: 2;
}
#asid-sbtm .product-info a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}


/* #product-list-block SKU一覧--------*/

#product-list-block {
	margin: 15px 0;
	border-top: solid 1px #d9d2c3;
	border-bottom: solid 1px #d9d2c3;
}
#product-list-block .product-list > li {
	float: left;
	width: 308px;
	border-top: dotted 1px #dcd5c7;
}
#product-list-block .product-list > li > a {
	display: block;
	padding: 13px 0;
	text-decoration: none;
}
#product-list-block .product-list > li > a:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
#product-list-block .product-list > li:nth-child(odd) {
	margin-right: 19px;
}
#product-list-block .product-list > li:last-of-type,
#product-list-block .product-list > li:nth-last-of-type(2)  {
	border-bottom: none;
}
#product-list-block .product-list > li:first-of-type,
#product-list-block .product-list > li:nth-of-type(2)  {
	border-top: none;
}
#product-list-block .product-list-detail {
	display: table;
	width: 100%;
}
#product-list-block .list-img {
	display: table-cell;
	padding-right: 10px;
	vertical-align: top;
}
#product-list-block .list-img > img {
	border: solid 1px #d9d2c3;
}
#product-list-block .product-list-detail {
	display: table-cell;
	vertical-align: middle;
}
#product-list-block .product-list-detail .product-name {
	margin-bottom: 5px;
	color: #068681;
	font-weight: bold;
	font-size: 14px;
}
#product-list-block .product-list > li > a:hover .product-name {
	color: #07B0A9;
	text-decoration: underline;
}
#product-list-block .product-list > li > a:visited .product-name {
	color: #709293;
}
#product-list-block .product-list-detail .inner-list > li {
	float: left;
	color: #333;
	font-size: 12px;
}
#product-list-block .product-list-detail .inner-list > li:nth-child(2) {
	clear: both;
	margin-right: 11px;
}
#product-list-block .product-list-detail .inner-list > li:nth-child(2),
#product-list-block .product-list-detail .inner-list > li:last-child {
	margin-top: 3px;
}
#product-list-block dl {
	width: 100%;
}
#product-list-block dl > dt {
	float: left;
}
#product-list-block dl > dd {
	overflow: hidden;
	float: left;
}


/* #product-info, #pdt-info-newdb-1606共通 ------------------------*/
/* 購入リンク */

#product-info .pdt-buy-btn,
#pdt-info-newdb-1606 .pdt-buy-btn {
    margin-top: 10px;
}
#product-info .pdt-buy-btn a,
#pdt-info-newdb-1606 .pdt-buy-btn a {
    display: block;
    overflow: hidden;
    width: 180px;
    height: 0;
    margin: 0 auto;
    padding-top: 34px;
    background: url("/images/cnt/product/btn_shopping_201701.png") 0 0 no-repeat;
    line-height: 2;
}
#product-info .pdt-buy-btn a:hover,
#pdt-info-newdb-1606 .pdt-buy-btn a:hover {
    opacity: 0.85;
}

/* video-modal
----------------------------------------------------------- */
.video-modal-wrap {
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000000;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}
.video-modal-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	box-sizing: border-box;
}
.video-modal-container:before {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	content: "";
}
.video-modal-content {
	display: inline-block;
	position: relative;
	z-index: 1000000;
	width: 100%;
	max-width: 800px;
	height: 100%;
	max-height: 450px;
	margin: 0 auto;
	vertical-align: middle;
}
.video-modal-content iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.video-modal-content .btn-close {
	position: absolute;
	top: -80px;
	right: 0;
	content: "";
	width: 44px;
	height: 44px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background: url("/images/cnt/product/arw_video_close.png") no-repeat 0 0;
	background-size: 44px 44px;
	cursor: pointer;
}
.video-modal-content .btn-prev,
.video-modal-content .btn-next {
	position: absolute;
	overflow: hidden;
	content: "";
	top: 50%;
	width: 20px;
	height: 36px;
	padding: 10px;
	margin-top: -28px;
	text-indent: 100%;
	white-space: nowrap;
	background: url("/images/cnt/product/arw_video_change.png") no-repeat 50% 50%;
	background-size: 20px 36px;
	cursor: pointer;
}
.video-modal-content .btn-prev {
	left: -60px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.video-modal-content .btn-next {
	right: -60px;
}
@media screen and (max-width: 800px) {
	.video-modal-content .btn-close {
		right: 18px;
	}
	.video-modal-content .btn-prev,
	.video-modal-content .btn-next {
		top: 505px;
	}
	.video-modal-content .btn-prev {
		left: 18px;
	}
	.video-modal-content .btn-next {
		right: 18px;
	}
}
.video-modal-bg {
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.8);
	cursor: pointer;
}
[id^="video-"] {
	display: none;
}
/* #product-kwd-suggest 人気キーワード------------------------*/
#product-kwd-suggest {
	clear: both;
	border: 1px solid #bcded2;
	margin-bottom: 20px;
}
#product-kwd-suggest dt,
#product-kwd-suggest dd {
	display: inline-block;
}
#product-kwd-suggest dt {
	position: relative;
	background-color: #74bbab;
	color: #fff;
	font-size: 95%;
	font-weight: bold;
	margin: 10px 5px 6px 0;
	padding: 2px 8px 1px 10px;
}
#product-kwd-suggest dt::after {
	position: absolute;
	content: "";
	top: 0;
	right: -18px;
	width: 0;
	height: 0;
	border: 9px solid transparent;
	border-left-color: #74bbab;
}
#product-kwd-suggest dd {
	padding: 0 0 7px 10px;
}
#product-kwd-suggest dd ul {
	word-break: break-word;
}
#product-kwd-suggest dd li {
	display: inline-block;
	padding-right: 10px;
	text-decoration: underline;
	line-height: 1.8;
}

/* ベストコスメ連携
----------------------------------------------------------- */
#product-header.pdt-award {
	position: relative;
}
#product-header.pdt-award #asid-sbtm .sbm-list {
	top: 61px;
}
#product-header.pdt-award .pdt-award-header {
	position: absolute;
	top: 25px;
	left: 0;
	z-index: -1;
	display: table;
}
#product-header.pdt-award .pdt-award-header .pdt-award-ico {
	display: table-cell;
	width: 92px;
	text-align: center;
	vertical-align: top;
}
#product-header.pdt-award .pdt-award-header .pdt-award-caption {
	display: inline-block;
	width: 858px;
	padding-top: 12px;
	vertical-align: top;
}
#product-header.pdt-award .pdt-award-header .pdt-award-caption p {
	height: 24px;
	padding: 0 7px;
	font-weight: bold;
	line-height: 24px;
}
#product-header.pdt-award.award-yearly .pdt-award-header .pdt-award-caption p {
	color: #7b4900;
	background: #efdcbf;
}
#product-header.pdt-award.award-half .pdt-award-header .pdt-award-caption p {
	color: #0185b2;
	background: #ccedf8;
}
#product-header.pdt-award .item-name {
	width: 700px;
	margin-bottom: 18px;
	padding: 57px 0 0 92px;
}
#pdt-info-newdb-1606.pdt-award .pdt-award-link {
	margin-top: 10px;
}
#pdt-info-newdb-1606.pdt-award .pdt-award-link a {
	display: block;
	width: 180px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 8px 0;
	border-radius: 3px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}
#pdt-info-newdb-1606.pdt-award.award-yearly .pdt-award-link a {
	border: 1px solid #ba9968;
	background: linear-gradient(#faeedb, #cab28f);
	background: -moz-linear-gradient(#faeedb, #cab28f);
	background: -webkit-gradient(linear, left top, left bottom, from(#faeedb), to(#cab28f));
	color: #7b4900;
}
#pdt-info-newdb-1606.pdt-award.award-half .pdt-award-link a {
	border: 1px solid #68bbd6;
	background: linear-gradient(#dff7ff, #a4d9ea);
	background: -moz-linear-gradient(#dff7ff, #a4d9ea);
	background: -webkit-gradient(linear, left top, left bottom, from(#dff7ff), to(#a4d9ea));
	color: #0185b2;
}
#pdt-info-newdb-1606.pdt-award .pdt-award-link a:hover {
	opacity: 0.85;
}
#pdt-info-newdb-1606.pdt-award .pdt-buy-btn {
	margin-top: 5px;
}
