@charset "Shift_JIS";

/* --------------------------------------------------------------------
	common　共通エレメント
-------------------------------------------------------------------- */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
	font-family: 'Noto Sans Japanese', sans-serif;
}
body {
	margin: 0;
	color:#333333;
	text-align:center;
	font-family: 'Noto Sans Japanese',"ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:12px;
	line-height: 140%;
	background: #FFF;
}
ol li {
	margin-left: 2em;
	list-style: decimal;
}
img {
	border: none;
	vertical-align: middle;
}
a img:hover {
	opacity: 0.7;
}

strong {
	font-weight: bold;
}
input {
	vertical-align: middle;
	/*font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-size: 1em;
	padding: 1px
}
textarea {
	/*font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-size: 1em;
	padding: 5px;
	border:1px solid #999;
	border-radius:5px;
	zoom: 1;
	position:relative;
}

input[type="text"],input[type="password"]{
	/*height:1.0em;*/
	padding: 7px 10px 5px;
	margin:5px 0;
	border:1px solid #d6d6d6;
}

input[type="text"]:focus ,input[type="password"]:focus {
	border:solid 1px #cc0000;
}

input[type="button"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"],
select{
	cursor: pointer;
}

input[disabled],
input[disabled] + label {
	cursor: auto;
}

select {
	/*font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	height: 28px;
	line-height: 28px;
    /*padding-left: 0.3em;*/
    border:1px solid #999;
    /* IE8用 */
    font-size: 12px\9;
	padding-top: 2px\9;
	padding-bottom: 2px\9;
}
select::-ms-expand {
	display: none;
}


@-moz-document url-prefix() {
    Select {
		height: 28px;
		font-size: 12px;
		padding-top: 2px;
		padding-bottom: 2px;
    }
}


label {
	margin: 3px 20px 0 0px;
	line-height: 17px;
	padding-bottom:3px;
}
/* ラジオボタンデザイン */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    width:20px;
    height:20px;
    background:#fff;
    -webkit-box-shadow: 1px 1px 1px 1px inset;
    -webkit-border-radius:10px / 10px;
    position: relative;
    margin-bottom:3px;
	margin-right:5px;
}
input[type="radio"]:disabled{
	background-color: #cccccc;
}
/* チェックの印を:before疑似要素を使って作成 */
input[type="radio"]:checked:before {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    margin: -4px 0 0 -4px;
    -webkit-box-shadow: 1 1px 1px ;
    -webkit-border-radius:10px / 10px;
    content: "";
    width: 9px;
    height: 9px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#000),
        to(#000)
    );
}

/* チェックボックスデザイン */
input[type="checkbox"]{
    -webkit-appearance:none;
    -moz-appearance: none;
    -ms-appearance: none;
    width:20px;
    height:20px;
    background:#fff;
    -webkit-box-shadow: 1px 1px 1px 1px inset;
    position: relative;
    margin-bottom:3px;
	margin-right:5px;
}
/* タップ後のデザイン */
input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    top: 15px;
    display: block;
    -webkit-box-shadow: 0 1px 1px ;
    content: "";
    width: 10px;
    height: 4px;
    background: #000;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
}

input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 15px;
    content: "";
    -webkit-box-shadow: 0 1px 1px ;
    width: 16px;
    height: 4px;
    background: #000;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
}


a:link {
	color:#1d3994;
	text-decoration: none;
}
a:visited {
	color:#1d3994;
	text-decoration: none;
}
form .info_ .error_ li a:link,a:visited{
	text-decoration: underline;
}

a:active {
	color:#1d3994;
	text-decoration: underline;
}
a:hover {
	color:#1d3994;
	text-decoration: underline;
}
div::-webkit-scrollbar{
  width: 10px;
}
div::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #eee; 
}
div::-webkit-scrollbar-thumb{
  background: #e8e8e8;
  border-radius: 10px;
  box-shadow: none;
}
/* --------------------------------------------------------------------
	common　汎用クラス
-------------------------------------------------------------------- */
/* 文字サイズ */
.large_ {
	font-size: 120%;
}
.xlarge_ {
	font-size: 144%;
}
.small_ {
	font-size: 80%;
}
.xsmall_ {
	font-size: 64%;
}
/**/

/* フロート */
.leftfloat_ {
	float: left;
	display: inline;
}
.rightfloat_ {
	float: right;
	display: inline;
}
img.leftfloat_ {
	margin: 0 10px 10px 0;
}
img.rightfloat_ {
	margin: 0 0 10px 10px;
}
.clear_ {
	clear:both;
}
/**/

/* 文整列 */
.lefttext_ {
	text-align: left;
}
.righttext_ {
	text-align: right;
}
.centertext_ {
	text-align: center;
}
/**/

/* 特定メッセージ（インライン） */
.error_ {
	color:#CC0000;
	font-weight:bold;
}
span.efo + .error_ {
	background: url(../img/usr/icon/attention.png) no-repeat left center;
	padding-left: 27px;
	background-size: 18px;
	font-size: 16px;
	margin: 5px 0;
}
.customer_status_ + .error_ {
	font-size: 16px;
	font-weight: bold;
	color: #D10000;
	width: auto;
	background: none;
	border: none;
	margin: 0;
	padding: 2px 0;
}

.notice_ {
	color:#993300;
	font-weight:bold;
}
.info_ {
	font-weight:bold;
}
/**/

/* 特定メッセージ（ブロック） */
div.error_, table.error_ {
	background-color:#efefef;
	border:solid 1px #ff0000;
	padding:8px;
	margin:4px auto;
	text-align:left;
	width: 560px;
}
div.notice_, table.notice_ {
	background-color:#efefef;
	border:solid 1px #996666;
	padding:8px;
	margin:4px auto;
	text-align:left;
	width: 580px;
}
div.info_, table.info_ {
	background-color:#efefef;
	border:solid 1px #666666;
	padding:8px;
	margin:4px auto 10px;
	text-align:left;
	width: 560px;
}
ul.error_ {
	margin-left: 16px;
}
/**/

/* 共通クラス(ブロック) */
.top_comment_ {
	margin-bottom: 10px;
}
.submit_ {
	margin: 20px auto;
	text-align: center;
}
.submit_ input, .submit_ img {
	margin: 0px 16px;
	vertical-align: middle;
}
.message_ {
}
p.message_ {
	margin-bottom: 10px;
}
div.info_ p.message_ {
    margin: 0;
}
/* 共通クラス(その他) */
.hidden_ {
	visibility: hidden;
}
.nocell_ {
	border:none!important;
	background-color:transparent!important;
}
.hiddenEnter_ {
	width:0;
	height:0;
}
/* 価格表示 */
.price_pop_ {
	color:#cc0000;
	font-size:12px;
}
.price_ {
	color:#cc0000;
	font-size: 14px;
    line-height: 1.2;
}
.price_ span.tax_ {
    color: #777777;
    font-size: 10px;
    font-weight: normal;
}
.goodsspec_ .price_ span.tax_ {
    margin-left: 6px;
    font-size: 12px;
}

span.price_pop_,
span.price_,
span.usual_ {
    display: block;
}
.price_ span.shop_ {
    color: #aaaaaa;
    font-size: 10px;
    font-weight: normal;
}
th span.icon_required_ {
    display: inline-block;
    color: #C00;
    font-size: 10px;
    line-height: 1;
    border: 1px solid #C00;
    border-radius: 2px;
    background: #FFF;
    width: 30px;
    text-align: center;
    box-sizing: border-box;
    padding: 3px 0;
    margin: 0 10px 0 0;
    font-weight: normal;
}

.price_text_ {
	color: #c00;
	padding: 0 3px 0 0;
}
.pricebox_ .price_text_ {
	display: none;
}
.pricebox_ .sale_pricebox_ {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
.default_price_ {
	color: #c00;
	padding: 0 3px 0 0;
	text-decoration: line-through;
}
.default_price_ + .price_ {
	position: relative;
	padding: 0 0 0 18px;
	display: inline-block;
}
.default_price_ + .price_:before {
	content: '→';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 13px;
}

/* 一覧 ポイント表示 */
.pointbox_ {
	margin: 0 5px;
	text-align: right;
}
.pointbox_ .points_ .plus_ {
	color: #c00;
	padding: 0 3px 0 0;
}

/* --------------------------------------------------------------------
	common　ヘッドライン
-------------------------------------------------------------------- */
h1.optimaizedH1{
    width: 920px;
    margin: 0 auto;
}
h1.goods_name_ {
    font-size: 20px;
    font-weight: bold;
  	line-height: 1.4;
}
h1.category_name_ {
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    padding: 20px 17px 10px;
    margin-bottom: 10px;
    border: 1px solid #dddddd;
}
h1.category_name_img_ { /* タイトルを画像にした場合 */
	margin-bottom: 10px;
}
h1.event_name_ {
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    padding: 20px 17px 10px;
    margin-bottom: 10px;
    border: 1px solid #dddddd;
}
h1.event_name_img_ { /* タイトルを画像にした場合 */
	margin-bottom: 10px;
}
h1.genre_name_ {
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    padding: 20px 17px 10px;
    margin-bottom: 10px;
    border: 1px solid #dddddd;
}
h1.genre_name_img_ { /* タイトルを画像にした場合 */
	margin-bottom: 10px;
}
h1.topic_head_ {
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    padding: 20px 17px 10px;
    margin-bottom: 10px;
    border: 1px solid #dddddd;
}

/* 汎用ヘッドライン */
.common_headline1_ { /* h1相当 */
    color: #cd0000;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}
.col1_ .common_headline1_ { /* .col1_ 1カラムの場合 */
	width: 815px;
}
.mainframe_ .common_headline1_ { /* .mainframe_ 2カラムの場合 */
	width: 755px;
}
.contents_ .mainframe_ .common_headline1_ { /* .contents_ .mainframe_ 3カラムの場合 */
	width: 575px;
}
 /* h2相当 */
.common_headline2_Wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.common_headline2_ {
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  padding: 5px 0 0 9px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.common_headline2_Wrap .common_headline2_,
#ppz_recommend11 .common_headline2_ {
  padding: 0;
}
.common_headline2_Wrap .more_link {
    margin: 8px 0 0 40px;
    font-size: 14px;
    color: #333;
}
.common_headline2_Wrap .more_link a {
    position: relative;
    padding-right: 15px;
    color: #333;
    font-size: 14px;
}
.common_headline2_Wrap .more_link a:after {
    content: '';
    position: absolute;
    top: 8px;
    right: 2px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    transform: rotate(-45deg);
}
.loginform_ .common_headline2_ { /* ログインフォームでの場合 */
  border-left: 4px solid #cc0000;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 22px;
  margin-bottom: 20px;
  padding: 5px 0 0 8px;
}
.common_headline3_ { /* h3相当 */
	margin: 0 0 10px 0;
	padding: 5px 0;
	font-size: 14px;
	font-weight: bold;
	border-bottom: 1px solid #CCC;
}
.img_headline_ { /* 画像ヘッドラインの場合 */
	margin-bottom: 10px;
}
/* --------------------------------------------------------------------
	common　イベント
-------------------------------------------------------------------- */
/* イベントへのリンク */
.event_ {
	width: 100%;
	overflow: hidden;
}
.event_banner_ {
	margin: 0 5px 20px 5px;
	/*float: left;*/
	display: inline;
}

.event_banner_ img{
	display : block ;
	margin : 0 auto 10px auto ;
}

.event_title_ {
	margin-bottom: 10px;
	padding: 8px 8px 8px 20px;
	font-size: 14px;
	font-weight: bold;
	border: 1px solid #CCC;
	background: url(../img/usr/common_h2.png) 0 0 no-repeat;
	clear: both!important;
}

/* --------------------------------------------------------------------
	common　ナビゲーション
-------------------------------------------------------------------- */
/* パンくず */
.navitopicpath_ {
  margin: 0 auto;
	padding: 12px 0 11px;
  font-size: 11px;
    width: 1200px;
}
.page-category .navitopicpath_ {
  padding-bottom: 0;
}
.container_ .navitopicpath_ {
    width: auto;
}
.mainframe_ .navitopicpath_ {
	padding: 8px 0px;
}
.navitopicpath_ a {
	margin: 0 0.5em;
}
.page-search .navitopicpath_ li > span {
	margin: 0 0.5em;
}
.navitopicpath_ span.current_ {
	margin: 0 0.5em;
	font-weight: bold;
}
.navitopicpath_ div.block {
	float:left;
}
.navitopicpath_ div {
	float:right;
}
#bread-crumb-list {
	width: 100%;
  overflow: hidden;
}
#bread-crumb-list li {
	float: left;
}
#bread-crumb-list li:first-child a {
	margin: 0 0.5em 0 0;
}
#bread-crumb-list li .topicpath_arrow {
  padding: 0 7px; 
}

/* ページジャンプ */
.navipage_ {
	text-align: center;
	padding: 5px 0;
}
.navipage_.top_ {		/* ページジャンプ上部 */
	margin-bottom: 10px;
}
.navipage_.bottom_ {	/* ページジャンプ下部 */
	margin-bottom: 20px;
}
.navipage_ .navipage_sum_ {
    display: inline-block;
    margin: 10px 150px 0px 15px;
    text-align: left;
}
.navipage_ .navipage_first_ a {
	padding-left: 25px;
	background: #dddddd url(../img/usr/common/prev2.png) left center no-repeat;
}
.navipage_ .navipage_prev_ a {
	padding-left: 18px;
	background: #dddddd url(../img/usr/common/prev1.png) left center no-repeat;
}
.navipage_ .navipage_next_ a {
	padding-right: 18px;
	background: #dddddd url(../img/usr/common/next1.png) right center no-repeat;
}
.navipage_ .navipage_last_ a {
	padding-right: 25px;
	background: #dddddd url(../img/usr/common/next2.png) right center no-repeat;
}
.navipage_now_ {
	margin:0 5px;
	padding: 5px 10px 2px;
	color:#fff;
	font-weight:bold;
	text-decoration:none;
	background: #444444;
}
.navipage_ .navipage_reverse_ {
	/*margin-right: 5px;*/
}
.navipage_ .navipage_forward_ {
	/*margin-left: 5px;*/
}
.navipage_ a {
	margin: 0 5px;
	padding: 5px 10px 2px;
}
.navipage_ a:hover {
	text-decoration: underline;
}
.navipage_.bottom_,
.navipage_.top_ {
    margin: 25px 0 30px;
    text-align: center;
}
.navipage_ .navipage_sum_ {
    display: inline-block;
    margin: 10px 65px 10px 10px;
    text-align: left;
}
.navipage_ a {
    margin: 0 5px 5px;
    padding: 5px 10px 2px;
    font-size: 15px;
}
.navipage_now_ {
    margin: 0 5px;
    padding: 5px 10px 5px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    background: #333;
}
.navipage_ .navipage_first_ a {
    padding-left: 30px;
    background: url(../img/usr/common/prev2.png) left center no-repeat;
}
.navipage_ .navipage_prev_ a {
    padding-left: 20px;
    background: url(../img/usr/common/prev1.png) left center no-repeat;
}
.navipage_ .navipage_next_ a {
    padding-right: 20px;
    background: url(../img/usr/common/next1.png) right center no-repeat;
}
.navipage_ .navipage_last_ a {
    padding-right: 30px;
    background: url(../img/usr/common/next2.png) right center no-repeat;
}

/* 並び替え */
.navisort_ {
  clear: both;
  padding: 6px 0;
	width: 660px;
	overflow: hidden;
}
.navisort_ dt {
    float: left;
    display: inline;
    width: 60px;
    height: 30px;
    text-indent: -9999px;
    background: url(../img/usr/searchbox/txt_navisort.png) no-repeat center center;
}
.navisort_ dd {
    float: left;
    display: inline-flex;
    flex-wrap: wrap;
}
.navisort_ a,
.navisort_ span.navisort_now_ {
    display: inline-block;
    float: left;
    height: 30px;
    text-indent: -9999px;
}

.navipage_.top_ {
	display: flex;
	flex-wrap:wrap;
	align-items: flex-start;
	background: transparent;
	min-width: 830px;
	font-size: 14px;
	margin-right: 25px;
}
.spacer {
  width: 100%;
}
.navipage_.top_ span{
	font-size: 20px;
}
.navipage_.bottom_ {
	font-size: 14px;
}
.navipage_.bottom_ span{
	font-size: 20px;
}
.navipage_.bottom_ .navipage_sum_{
	font-size: 14px;
}

.navipage_.bottom_ .navipage_sum_ span{
	font-size: 20px;
}
.navipage_ .navipage_sum_ {
	font-size: 14px;
	line-height: 24px;
	margin: 0 auto 0 0;
}
.navipage_.top_ .navipage_sum_{
	font-size: 14px;
	margin: 6px 0 0;
}
.navipage_ .navipage_sum_ span {
	font-size: 20px;
	margin: 10px 0 0;
}
.navisort_ {
	display: flex;
	align-items: flex-start;
	width: auto;
	flex: 1;
	margin: 0 0 0 20px;
}
.navisort_ dt {
	text-indent: 0;
	background: url(../img/usr/common/icon_sort.png) no-repeat left center;
	padding: 2px 0 1px 30px;
	font-size: 14px;
	font-weight: bold;
	width: 100px;
	height: auto;
	margin: 5px 0 0;
}
.navisort_ dd {
	margin: 0;
}
.navisort_ dd .navisort_now_,
.navisort_ dd a {
	text-indent: 0;
	width: 90px;
	height: auto;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	border-radius: 20px;
	padding: 8px 0;
	box-sizing: border-box;
}
.navisort_ dd .navisort_now_ {
	background: #ededed;
	margin: 0 5px 5px;
}
.relative_keyword_ {
	display: flex;
	width: 100%;
}
.relative_keyword_title_ {
	font-size: 13px!important;
	display: block;
	max-width:100px;
	width: 100%;
	border-right:solid 1px #ededed;
	padding: 5px 0px;
	text-align:left;
}
.relative_keyword_ul_ {
	display: flex;
	flex-wrap: wrap;
}
.relative_keyword_li_ {
	background: #ededed;
	margin: 0 5px;
	padding: 5px 0px;
	border-radius: 5px;
}
.relative_keyword_li_ a {
	font-size: 13px;
	color:#333333
}
.relative_keyword_li_ a:hover {
	text-decoration: none;
	opacity: .8;
	background: none;
}
.navisort_ dd a {
	color: #1d3994;
	border: 1px solid #ddd;
	padding: 7px 0;
	background: none;
}
.navisort_ dd a:hover {
	text-decoration: none;
	opacity: .8;
	background: none;
}
.navinumber_ {
	float: none;
	width: auto;
	margin: 0 0 0 35px;
}
.navinumber_ dt {
	text-indent: 0;
	width: auto;
	height: auto;
	font-size: 14px;
	line-height: 32px;
	font-weight: bold;
}
.navinumber_ dd {
	width: auto;
}
.navinumber_ dd select {
	border-radius: 3px;
	width: 160px;
	height: 32px;
	font-size: 14px;
}

/*.navisort_now_ {
	color:#CC0000;
	text-decoration:none;
	margin:2px 5px;
	white-space: nowrap;
}
.navisort_ a {
	margin:2px 5px;
	white-space: nowrap;
}*/
/* 表示切替 */
.navistyle_ {
    float: left;
    display: inline;
    width: 335px;
    overflow: hidden;
    margin: 6px 0;
    padding: 0 39px 0 0;
    border-right: 1px dotted #bfbfbf;
}
.navistyle_ dt {
	float: left;
    display: inline;
    width: 60px;
    height: 30px;
    text-indent: -9999px;
    background: url(../img/usr/searchbox/txt_navistyle.png) no-repeat center center;
}
.navistyle_ dd {
    float: right;
    display: inline;
    width: 260px;
    height: 30px;
}
.navistyle_ a,
.navistyle_ span.navistyle_now_ {
    display: inline-block;
    float: left;
    width: 130px;
    height: 30px;
    text-indent: -9999px;
}
/* サムネイル */
.navistyle_ dd .style_thumb_ {
    background: url(../img/usr/searchbox/thumbnail_off.png) no-repeat center center;
}
.navistyle_ dd .style_thumb_:hover {
    background: url(../img/usr/searchbox/thumbnail_hover.png) no-repeat center center;
}
.navistyle_ dd .style_thumb_.navistyle_now_ {
    background: url(../img/usr/searchbox/thumbnail_on.png) no-repeat center center;
}
/* 詳細一覧 */
.navistyle_ dd .style_detail_ {
    background: url(../img/usr/searchbox/detail_off.png) no-repeat center center;
}
.navistyle_ dd .style_detail_:hover {
    background: url(../img/usr/searchbox/detail_hover.png) no-repeat center center;
}
.navistyle_ dd .style_detail_.navistyle_now_ {
    background: url(../img/usr/searchbox/detail_on.png) no-repeat center center;
}
/*.navistyle_now_ {
	color:#CC0000;
	text-decoration:none;
	margin:2px 5px;
	white-space: nowrap;
}
.navistyle_ a {
	margin:2px 5px;
	white-space: nowrap;
}*/
/* ブランド絞込 */
.brand_name_ {
	width: 100%;
	overflow: hidden;
}
.brand_name_now_ {
	color:#CC3300;
	text-decoration:none;
	margin:2px 5px;
	white-space: nowrap;
}
.brand_name_ a {
	margin:2px 5px;
	white-space: nowrap;
}
/* メーカー絞込 */
.maker_name_ {
	width: 100%;
	overflow: hidden;
}
.maker_name_now_ {
	color:#CC3300;
	text-decoration:none;
	margin:2px 2px 2px 2px;
	white-space: nowrap;
}
.maker_name_ a {
	margin:2px 2px 2px 2px;
	white-space: nowrap;
}
/* 表示件数 */
.navinumber_ {
    float: left;
    display: inline;
    width: 255px;
    overflow: hidden;
    margin: 6px 0 6px 30px ;
}
.navinumber_ dt {
    display: inline;
    width: 60px;
    height: 30px;
    text-indent: -9999px;
    background: url(../img/usr/searchbox/txt_number.png) no-repeat center center;
}
.navinumber_ dd {
    float: right;
    display: inline;
    width: 180px;
    height: 32px;
}
.navinumber_ dd select {
    width: 180px;
}
/* 絞込み */
.navrefine_ {
    overflow: hidden;
    margin: 0 0 6px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #a4a4a4;
}
.navrefine_ dt {
	float: left;
    display: inline;
    width: 60px;
    height: 30px;
    margin-right: 15px;
    text-indent: -9999px;
    background: url(../img/usr/searchbox/txt_refine.png) no-repeat center center;
}
.navrefine_ dd {
    float: left;
    display: inline;
    height: 30px;
}
/**/
.item_search_ dd > ul {
		display: flex;
    align-items: center;
    overflow: hidden;
}
.item_search_ ul li input[type="text"] {
    height: 34px;
    padding: 2px 5px;
    vertical-align: baseline;
}
.item_search_ ul li input.refineseach_ {
	display: block;
	width: 140px;
	background: #333;
	color: #fff;
	font-size: 14px;
	text-align: center;
	border: 0;
	border-radius: 20px;
	padding: 10px 0;
}
.item_search_ ul li input.cancelseach_ {
	display: block;
	width: 100px;
	background: #cdcdcd;
	font-size: 14px;
	text-align: center;
	border: 0;
	border-radius: 20px;
	padding: 11px 0 8px;
	letter-spacing: 2px;
	margin: 0 0 0 10px;
}
.item_search_ ul li input.refinekey_ {
    width: 140px;
    padding-left: 25px;
}
.item_search_ ul li input.refineyen_ {
    width: 58px;
    margin: 5px 8px 5px 0;
}
.item_search_ ul li.refinekeybox_ {
    margin-right: 13px;
		width: calc(100% - 153px);
}

.item_search_ ul li.refineyenbox_ {
    margin-right: 12px;
}
/**/
.item_search_ {
	padding: 1px;
  margin-bottom: 15px;
  border: 1px solid #dddddd;
}
.page-category .item_search_,
.page-genre .item_search_,
.page-search .item_search_ {
    background: #f3f3f3;
    margin-bottom: 15px;
    margin-right: 28px;
		min-width: 830px;
    padding: 0;
    border: 0;
}
.item_search_ .inner_ {
	background: #fffef4;
	padding: 14px 19px 15px 17px;
}
.page-category .item_search_ .inner_,
.page-genre .item_search_ .inner_,
.page-search .item_search_ .inner_ {
    padding: 14px 20px 15px 20px;
    background: #f3f3f3;
}
/**/
.item_search_ h3 {
    margin-bottom: 15px;
}
/**/
dl.search_key_ {
    display: flex;
    align-items: center;
    overflow: hidden;
}
dl.search_key_ dt {
    float: left;
    display: inline;
    width: 85px;
    padding-top: 3px;
    font-size: 16px;
    font-weight: bold;
    margin-right: 40px;
}
dl.search_key_ dd {
    float: left;
    display: inline;
		width: calc(100% - 125px);
}
.item_search_ dl.search_key_ dd input.refinekey_ {
    width: calc(100% - 13px);
    padding: 2px 5px;
    background: #fff;
		border-radius: 4px;
    margin: 0;
}
dl.search_key_ dd p {
    font-size: 10px;
}

.message_.no_item_ {
	font-size: 18px;
	margin: 55px 0 40px;
	text-align: center;
}
.search_suggest_ p {
	font-size: 20px;
	text-align: center;
	margin: 0 0 25px;
}
.search_suggest_ p span {
	color: #cd0000;
	font-size: 24px;
	font-weight: bold;
	padding: 0 2px;
}
.search_suggest_ ul {
	display: flex;
	justify-content: center;
	margin: 0 0 40px;
}
.search_suggest_ li {
	margin: 0 15px 0 0;
}
.search_suggest_ li:last-child {
	margin: 0;
}
.search_suggest_ li a {
	display: block;
	padding: 2px 0;
	font-size: 24px;
}

/**/
dl.search_squeeze_ {
    overflow: hidden;
    margin-bottom: 10px;
    border-bottom: 1px dotted #a4a4a4;
}
dl.search_squeeze_ dt {
    float: left;
    display: inline;
    width: 85px;
    text-align: right;
    margin-right: 5px;
}
dl.search_squeeze_ dd {
    float: left;
    display: inline;
    width: 580px;
}
dl.search_squeeze_ dd a {
    display: inline-block;
    font-size: 14px;
    text-decoration: underline;
    padding: 0 5px;
    margin: 0 5px 10px 0;
    border-right: 1px solid #333333;
}
dl.search_squeeze_ dd a:hover {
    text-decoration: none;
}
/* --------------------------------------------------------------------
	common　フォーム
-------------------------------------------------------------------- */
.formlist_ {
	margin: 0 auto;
	border:1px solid #dddddd;
	border-collapse: collapse;
}
.formlist_ th {
	padding:10px;
	font-weight:bold;
	white-space: nowrap;
	background-color:#eeeeee;
	border:1px solid #dddddd;
}
.formlist_ td {
	padding:10px;
	font-weight:normal;
	background-color:#FFF;
	border:1px solid #dddddd;
}
.formlist_ .line0_ {
	background-color:#eeeeee;
}
.formlist_ .line1_ {
	background-color:#FCFCFC;
}
.formdetail_ {
	border-collapse:collapse;
	margin:0 auto;
}
.formdetail_ th {
	padding:8px;
	text-align: left;
	font-weight:bold;
	vertical-align: top;
	background-color:#eeeeee;
	border:1px solid #dddddd;
}
.formdetail_ td {
	padding:8px;
	font-weight:normal;
	vertical-align: top;
	background-color:#fff;
	border:1px solid #dddddd;
}
.formdetailcard_ {
	margin:0 auto;
	margin-left:0px;
	float:none;
	border-collapse:collapse;
}
.formdetailcard_ th {
	border:1px solid #dddddd;
	font-weight:bold;
	line-height:15px;
	padding:8px;
	background-color:#eeeeee;
	white-space:nowrap;
	text-align: left;
    vertical-align: top;
}
.formdetailcard_ td {
	border:1px solid #dddddd;
	font-weight:normal;
	line-height:15px;
	padding:8px;
	background-color:#FFF;
}
.formsublist_ {
	border-collapse: collapse;
}
.formsublist_ th {
	border:1px dotted #CCC;
	background-color:#FFF;
	font-weight:bold;
	white-space: nowrap;
}
.formsublist_ td {
	border:1px dotted #CCC;
	background-color:#FFF;
	font-weight:normal;
}
.must_ {
	margin-right: 10px;
	display: inline;
	width: 35px;
}

.classrequired {
	background: #ffeeee;
}
.classerror {
	background: #ffeeee;
}

/* --------------------------------------------------------------------
	common　Trace
-------------------------------------------------------------------- */
/* for Trace */
.tracecontent {
	text-align:left;
	background-color:#FFCCFF;
}
#__asptrace {
	text-align:left;
	background-color:#FFF;
}
span.tracecontent tr.subhead {
	background-color:#CCC;
}
span.tracecontent tr.alt {
	background-color:#eeeeee
}

/* --------------------------------------------------------------------
	サブカテゴリ
-------------------------------------------------------------------- */
.subcategory_ {
	margin: 25px 0 40px;
}
.subcategory_ h2 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px;
}
.subcategory_ h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px;
}
.subcategory_ ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.subcategory_ li {
	width: 140px;
	margin: 0 18px 15px 0;
	text-align: center;
}
.subcategory_ li a {
	display: block;
	color: #333;
}
.subcategory_ li a:hover {
	text-decoration: none;
}
.subcategory_ li img {
	width: 100%;
	margin: 0 0 10px;
}
.subcategory_ li p {
	font-size: 13px;
}

/* 画像がない場合 */
.subcategory_ li.no_img_ {
	min-width: 140px;
	box-sizing: border-box;
	text-align: left;
}
.subcategory_ li.no_img_ a {
	color: #1d3994;
	background: #fffef4 url(../img/usr/common/arrow3.png) no-repeat 15px center;
	padding: 16px 10px 14px 30px;
	margin: 0 0 10px;
	box-shadow: 0 0 0 1px #fff, 0 0 0 2px #ddd;
}
.subcategory_ li.no_img_ a:hover {
	text-decoration: underline;
}

.contents .container_ .topic-list{
    display: block;
    width: 100%;
    clear: both;
    margin: 0 auto;
}

.topic-list ul li{
	padding-bottom: 15px;
}

.topic-list ul li .date_{
	font-size: 13px;
	padding-bottom: 4px;
	color: #BBB;
}

.topic-list ul li a{
	font-size: 16px;
	color: #333;
}

.topic-list ul li .icon_ {
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  background: #c00;
  margin: 0 0 0 7px;
  padding: 1px 5px 0;
  border-radius: 10px;
  transform: scale(0.9);
}

.topic-list ul li p{
	font-size: 16px;
	color: #333;
	word-break: break-all;
}

.topic-list h1.topic_head_ {
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    border: none;
    border-bottom: 2px solid #333;
    padding: 0 0 15px;
    margin: 0 0 55px;
}

.customer_.col1_ .block-mypage .navipage_.top_ .navipage_sum_ {
	margin-right: auto;
	margin-top: 0;
}
.customer_.col1_ .block-mypage .navipage_.top_ {
	align-items: center;
}
.customer_.col1_ .block-mypage .navipage_.top_ a{
	margin-bottom: 0;
}


/* --------------------------------------------------------------------
    20240216
--------------------------------------------------------------------- */
.item_search_ dl.search_key_ dd input.refinekey_[type="text"]{
	outline: 1px solid #ddd;
}
.item_search_ dl.search_key_ dd input.refinekey_[type="text"]:focus{
    border: solid 1px #ddd;
}