@charset "Shift_JIS";

/* ---------------------------------------
 汎用タグ
---------------------------------------- */
body {
  min-width: 320px;
	margin: 0;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  background: #FFF;
	box-sizing: border-box;
}
body *, div, h1, h2, h3, h4, h5, p, li, span, strong, table, th, td, dl, dt, dd, img, address,
input, label, button, select, textarea {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
	font-style: normal;
	box-sizing: border-box;
}

a:link    { color: #1D3994; text-decoration: underline;}
a:visited { color: #1D3994; text-decoration: underline;}
a:active  { color: #1D3994; text-decoration: none;}
a:hover   { color: #1D3994; text-decoration: none;}

strong { font-weight: 700;}

address { font-weight: 400;}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	font-size: 16px;
	vertical-align: middle;
	outline: none;
	transition: 0.2s;
}
input:-webkit-autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="password"] {
	width: 100%;
  max-width: 90%;
  min-height: 56px;
  padding: 0 15px;
  margin: 0;
  border: #333 1px solid;
  border-radius: 8px;
  font-size: 16px;
	font-weight: 400;
  line-height: 1.4;
}
input::-webkit-input-placeholder { 
	color: #666;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus {
	border: #CD820A 2px solid;
}

textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	width: 100%;
  max-width: 100%;
  min-height: 56px;
  padding: 15px;
	margin: 0;
  border: #333 1px solid;
  border-radius: 8px;
	outline: none;
  font-size: 16px;
	font-weight: 400;
  line-height: 1.4;
}
textarea.agreebody_ {
  max-height: 200px;
}

/* Select */
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
  max-width: 90%;
  height: 56px;
  min-height: 56px;
	padding: 0 24px 0 15px;
	margin: 0;
  border: #333 1px solid;
  border-radius: 8px;
	outline: none;
	font-size: 16px;
	font-weight: 400;
	color: #333 !important;
	line-height: 28px;
	background: transparent url("../../img/usr/common/select_bg.png") calc(100% - 10px) center no-repeat;
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
  position: relative;	
}
.efo select { 
	width: calc(100% - 32px);
	max-width: auto;
}
select option {
	color: #333 !important;
}

/* Radio */
input[type="radio"] {
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0 16px 4px 0;
	border: #333 1px solid;
	border-radius: 20px;
	background: #FFF;
	position: relative;
}
input[type="radio"]:checked {
	border-color: #CC0000;
}
input[type="radio"]:checked:before {
	content: '';
	width: 10px;
	height: 10px;
	margin: 0px;
	border-radius: 5px;
	position: absolute;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	display: block;
	background: #CC0000;
}
input[type="radio"]:disabled {
	border: #707070 1px solid !important;
}
.hide_input_ input[type="radio"] { display: none;}

/* Checkbox */
input[type="checkbox"] {
	width: 17px;
	height: 17px;
	margin: 0 5px 3px 0;
	border: #333 1px solid;
	border-radius: 3px;
	background: #FFF;
	position: relative;
}
input[type="checkbox"]:checked {
	border: #CC0000 1px solid;
	background: #CC0000;
}
input[type="checkbox"]:checked:after {
	content: '';
	width: 9px;
	height: 5px;
	border-left: #FFF 2px solid;
	border-bottom: #FFF 2px solid;
	display: block;
	position: absolute;
	left: 3px;
	top: 4px;
	transform: rotate(-50deg);
	box-sizing: border-box;
}
input[type="checkbox"]:disabled {
	border: #707070 1px solid !important;
	background: #D9D9D9 !important;
}

/* Select */
.select-block_ { margin: 0;}
.select-block_ p.select-val_ { display: none;}
.select-block_ .select-dropdown-overlay_ { 
	width: 100%;
	height: 100%;
	display: none;
	background: rgba(0, 0, 0, 0.5);
}
.select-block_ .select-dropdown-overlay_.fixed_ {
  width: 100vw;
  height: 100vh;
  display: flex !important;
  align-items: center !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateZ(1);
}
.select-block_ .select-dropdown_,
.select-block_ .select-dropdown_cart_,
.select-block_ .select-dropdown_goods_ {
  width: calc(100vw - 72px);
	height: auto;
	min-height: 140px;
	max-height: 70vh;
	padding: 16px;
  margin: auto;
  border: none;
  border-radius: 6px;
  background: #F2F2F2;
	position: relative;
	top: inherit !important;
	bottom: inherit !important;
  right: 0;
  left: 0;
  overflow: hidden;
	box-sizing: border-box;
}
.select-block_ .select-dropdown_ li,
.select-block_ .select-dropdown_cart_ li,
.select-block_ .select-dropdown_goods_ li { 
	width: 100% !important;
	padding: 16px !important;
	border: none !important;
	text-align: left !important;
	word-break: break-all !important;
}
.select-block_ .select-dropdown_ li + li,
.select-block_ .select-dropdown_cart_ li + li,
.select-block_ .select-dropdown_goods_ li + li { 
	border-top: #DDD 1px solid !important;
}
.select-block_ .select-dropdown_ dt,
.select-block_ .select-dropdown_cart_ dt,
.select-block_ .select-dropdown_goods_ dt {
	width: 100% !important;
	padding: 5px 0 20px !important;
	min-height: 46px !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	text-align: left !important;
	display: flex !important;
	align-items: center !important;
	position: static !important;
}
.select-block_ .select-dropdown_ dt:before,
.select-block_ .select-dropdown_cart_ dt:before,
.select-block_ .select-dropdown_goods_ dt:before,
.select-block_ .select-dropdown_ dt:after,
.select-block_ .select-dropdown_cart_ dt:after,
.select-block_ .select-dropdown_goods_ dt:after {
  content: '';
  width: 20px;
  height: 1px;
  margin: auto;
  display: block;
  background: #333;
  position: absolute;
  top: 33px;
  right: 16px;
  transform: rotate(45deg);
}
.select-block_ .select-dropdown_ dt:after,
.select-block_ .select-dropdown_cart_ dt:after,
.select-block_ .select-dropdown_goods_ dt:after {
  transform: rotate(-45deg);
}
.select-block_ .select-dropdown_ dd,
.select-block_ .select-dropdown_cart_ dd,
.select-block_ .select-dropdown_goods_ dd { 
	width: 100% !important;
	height: calc(100% - 50px) !important;
	min-height: 55px;
	max-height: calc(70vh - 100px) !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 6px !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
	background: #FFF !important;
	position: relative !important;
}
.select-block_ .select-dropdown_ li.active_:after,
.select-block_ .select-dropdown_cart_ li.active_:after,
.select-block_ .select-dropdown_goods_ li.active_:after {
  content: '';
  width: 8px;
  height: 3px;
  margin: 0 0 5px 15px;
  border-left: #EC0000 2px solid;
  border-bottom: #EC0000 2px solid;
  display: inline-block;
  transform: rotate(-45deg);
  vertical-align: middle;
}
.select-inner_ { display: flex; justify-content: space-between; align-items: center;}
.select-inner_ .select-text_ {
  width: 100%;
	height: 56px;
	padding: 0 24px 0 15px;
	margin: 0;
  border: #333 1px solid;
  border-radius: 8px;
  font-size: 16px;
	font-weight: 400;
	display: flex;
	align-items: center;
	background: transparent url("../../img/usr/common/select_bg.png") calc(100% - 10px) center no-repeat;
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
  position: relative;
  cursor: pointer;
}
.select-inner_ .select-val_  { width: 100%;}
.select-inner_ .select-val_ input { width: 100%; max-width: none; padding: 13px 0; border: #DCDCDC 1px solid; border-radius: 5px; font-size: 14px; text-align: center; position: relative; cursor: pointer;}
.select-inner_ .text_button_ { padding-right: 0; border: none; color: #0072B9; background: none; box-shadow: none;}
.select-inner_ .cart_select_ { width: 100%;}
.select-inner_ .cart_select_ input[type="tel"] { width: 115px;}
.select-inner_ .cart_select_ input { width: 100%; max-width: none; padding: 10px 0; font-size: 18px; text-align: center;}

/* ---------------------------------------
 基本レイアウト
---------------------------------------- */
body > .wrapper_ { width: 100%; overflow-x: hidden;}

/* パンくずなし */
div.col1_ { 
	min-height: calc(100vh - 435px);
	padding: 16px 16px 30px 16px;
}
/* パンくずあり */
div.col1_:has(.navitopicpath_) {
	padding: 0 16px 30px;
}

.single_mainframe_ { min-height: 50vh;}

/* ---------------------------------------
 汎用class
---------------------------------------- */
.large_  { font-size: 15px;}
.xlarge_ { font-size: 18px;}
.small_  { font-size: 12px;}
.msmall_ { font-size: 11px;}
.xsmall_ { font-size: 10px;}
.bold_   { font-weight: 700;}

.leftfloat_  { float: left;}
.rightfloat_ { float: left;}
.clear_      { clear: both !important;}
.clear       { width: 0; height: 0; display: block; overflow: hidden; visibility: hidden; clear: both;}
.clearfix::after { content: ''; display: block; clear: both;}

.lefttext_   { text-align: left;}
.righttext_  { text-align: right;}
.centertext_ { text-align: center;}

.no_border_t { border-top: none !important;}
.no_border_b { border-bottom: none !important;}
.no_border_l { border-left: none !important;}
.no_border_r { border-right: none !important;}
.padding_all00_ { padding: 0 !important;}
.p10  { padding: 10px;}

.hidden_ { display: none;}
.hiddenEnter_ { width: 0; height: 0; display: block;}

.i-line_ { margin-bottom: 5px;}

/* ---------------------------------------
 メッセージ
---------------------------------------- */
p.message_ { padding: 0; font-size: 16px; line-height: 1.6;}
p.message_:not(:empty) { margin: 0 0 10px 0;}
p.message_.nomb_ { margin-bottom: 0;}
p.message_.indent_ { padding: 0 0 0 1em; text-indent: -1em;}

p.info_ { margin-bottom: 20px;}

div.info_,
table.info_ { padding: 16px; margin: 16px 0; font-size: 16px; font-weight: 400; border: #666 1px solid; background: #FFF;}
div.info_ p.message_ { margin: 5px 0; font-size: 16px; font-weight: 400;}
div.info_ ul.error_ { margin: 1em 2em 0 2em;}
div.info_ ul.error_ li { font-size: 16px; font-weight: 400;}
div.info_ ul.error_ li a { text-decoration: underline; color: #1D3994;}

.notice_ { color: #EC0000;}
div.notice_,
table.notice_ { padding: 16px; margin: 16px 0; border: #EC0000 1px solid; background: #FFF;}
div.notice_ a { font-size: 16px; font-weight: 400; text-decoration: underline; color: #EC0000;}
div.notice_ .centertext_ { margin-top: 20px; display: block;}
div.notice_ .centertext_ a { font-size: 16px; font-weight: 400; text-decoration: underline; color: #1D3994;}

.single_mainframe_ div.notice_ { margin: 16px;}

/* ---------------------------------------
 エラー
---------------------------------------- */
.error_:not(:empty) { margin: 10px 0; font-size: 14px; font-weight: 400; color: #EC0000; clear: both;}

div.error_:not(:empty),
table.error_:not(:empty) { padding: 10px; margin: 30px 0; border: #EC0000 1px solid; font-size: 16px; font-weight: 400; color: #EC0000; background: #FFF;}
div.error_:not(:empty) p,
div.error_:not(:empty) p.error_,
table.error_:not(:empty) p,
table.error_:not(:empty) p.error_ { font-size: 16px; font-weight: 400;}

.error_text_:not(:empty) { margin: 0 0 10px 0; font-size: 14px; font-weight: 400; color: #EC0000; clear: both;}
.efo-error_:not(:empty) { margin: 0 0 10px 0; font-size: 14px; font-weight: 400; color: #EC0000; display: flex; align-items: center; clear: both;}
.efo-error_ img { width: 18px; height: 16px; margin-right: 5px; vertical-align: middle;}

input + .efo-error_:not(:empty),
span.efo + .efo-error_:not(:empty) { padding-top: 10px; margin-top: 0;}
div.error_:not(:empty) span.error_qty_ {margin-left: 15px;}

/* 入力チェック */
img[src$="input_ok.gif"],
img[src$="input_ok01.gif"],
img[src$="input_error.gif"],
img[src$="input_error01.gif"] { width: 24px; height: 24px; margin: 18px 0 0 10px; float: left;}

.efo_icon_ { width: 24px; height: 24px; margin: 0 !important; position: absolute; top: calc(50% - 12px); right: 10px;}
select + .efo_icon_ { right: -35px;}

/* 入力アラート背景色
.efo-error_ ~ span input { border-color: #D10000; background-color: #FFEEEE;}
.classrequired { background-color: #FFEEEE;}
.classerror { background-color: #FFEEEE;}
 */
.efo-error_ ~ span input { border-color: #EC0000;}
input.classrequired { border: #EC0000 2px solid;}

/* ---------------------------------------
 入力フォーム
---------------------------------------- */
/* 必須アイコン */
span.icon_required_ {
  width: 30px;
  padding: 3px 0;
  margin: 0 10px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  color: #EC0000;
  background: #FFF;
  display: inline-block;
}

/* 任意アイコン */
span.i-any_ {
  width: 30px;
  padding: 3px 0;
	margin: 0 10px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
	line-height: 1.0;
  color: #666;
	background: #fff;
  display: inline-block;
}

/* 注釈 */
p.indent_ { padding-left: 1em; text-indent: -1em;}
.indent_box_ { margin: 0 1em;}
.indent_text_ { padding: 0 0 0 1em; font-size: 16px; text-indent: -1em; line-height: 1.4;}
ul.indent_list_ { margin: 20px 0;}
ul.indent_list_ li { padding: 0 0 0 1em; font-size: 16px; text-indent: -1em; line-height: 1.4;}

p.supplement_ { margin: 0 0 10px 0; font-size: 12px; line-height: 1.7; color: #666; clear: both;}
p.supplement_.nomb_ { margin-bottom: 0;}
p.supplement_.indent_ { padding-left: 1em; text-indent: -1em;}
p.supplement_.check_before_ { margin-bottom: 20px;}

/* フォーム */
dl.formdetail_ { margin: 0 0 10px 0;}
dl.formdetail_ > div { margin: 10px 0;}
dl.formdetail_ dt { padding: 8px 0; font-size: 14px; font-weight: 500; display: flex; align-items: center; position: relative;}
dl.formdetail_ dd { padding: 0 0 22px 0; word-wrap: break-word; position: relative; overflow: hidden;}
dl.formdetail_ dd:last-child { padding-bottom: 10px;}
dl.formdetail_ dd span.efo { position: relative; float: left;}
dl.formdetail_ dd span.efo + p.error_,
dl.formdetail_ dd span.efo + img + p.error_ { padding: 10px 0 0 0; margin: 0;}
dl.formdetail_ dd p.small_ { width: 100%; clear: both;}
dl.formdetail_ dd div { width: 100%; clear: both;}
dl.formdetail_ dd input + p.small_,
dl.formdetail_ dd input + p.error_ { padding: 10px 0 0 0; margin: 0;}

/* フォーム 入力欄のサイズ指定 */
dl.formdetail_ dd input[type="text"][name$="name"],
dl.formdetail_ dd input[type="text"][name$="kana"],
dl.formdetail_ dd input[type="text"][name$="mail"],
dl.formdetail_ dd input[type="text"][name$="mail2"],
dl.formdetail_ dd input[type="text"][name$="cmail"],
dl.formdetail_ dd input[type="text"][name$="addr"],
dl.formdetail_ dd input[type="text"][name$="addr2"],
dl.formdetail_ dd input[type="text"][name$="addr3"],
dl.formdetail_ dd input[type="text"][name$="zip"],
dl.formdetail_ dd input[type="text"][name$="comp"],
dl.formdetail_ dd input[type="text"][name$="dept"] { width: calc(100% - 75px); max-width: calc(100% - 75px);}
dl.formdetail_ dd input[type="tel"][name$="tel"],
dl.formdetail_ dd input[type="text"][name$="tel"]  { width: 213px; max-width: 213px;}
dl.formdetail_ dd input[type="text"][name$="zip"]  { width: 213px; max-width: 213px; margin: 0;}
dl.formdetail_ dd select[id$="pref"]  { width: calc(80% - 32px);}

dl.formdetail_ dd input[type="text"][name="uid"]   { width: 100%; max-width: 100%;}
dl.formdetail_ dd input[type="text"][name="pass"]  { width: calc(60% - 32px); max-width: calc(60%- 32px);}

dl.formdetail_ dd select[name="secret_question"] { width: calc(80% - 32px); max-width: calc(80% - 32px);}
dl.formdetail_ dd input[type="text"][name="secret_answer"] { width: calc(100% - 32px); max-width: calc(100% - 32px);}

dl.formdetail_ dd .efo input[type="radio"] + label + input[type="radio"] { margin-left: 20px;}

dl.formdetail_ dd .efo input[type="text"][name$="name"],
dl.formdetail_ dd .efo input[type="text"][name$="kana"],
dl.formdetail_ dd .efo input[type="text"][name$="addr"],
dl.formdetail_ dd .efo input[type="text"][name$="addr2"],
dl.formdetail_ dd .efo input[type="text"][name$="addr3"],
dl.formdetail_ dd .efo input[type="text"][name$="comp"],
dl.formdetail_ dd .efo input[type="text"][name="s_mail"] { width: 100%; max-width: 100%; padding-right: 35px;}

dl.formdetail_ dd span.efo.checktype_date { word-break: keep-all; white-space: nowrap;}
dl.formdetail_ dd select[name="yy_birth"] { width: 20%; min-width: 84px; padding: 0 30px 0 8px;}
dl.formdetail_ dd select[name="mm_birth"] { width: 17%; min-width: 64px; padding: 0 30px 0 8px; margin-left: 8px;}
dl.formdetail_ dd select[name="dd_birth"] { width: 17%; min-width: 64px; padding: 0 30px 0 8px; margin-left: 8px;}

input[name="card_holder"] { width: 100%; max-width: 100%;}
input[name="card_num"] { width: 74%; max-width: 74%; margin-right: 5px;}
input[name="security_code"] { width: 182px; max-width: 182px;}

/* 入力欄項目の並列化 */
div.two-block_ { display: flex; justify-content: space-between;}
div.two-block_ .block1_ { display: flex; align-items: center;}
div.two-block_ .block2_ { display: flex; align-items: center;}

/* カードの有効期限入力 */
div.two-block_.cardlimit_input_ { display: flex; justify-content: flex-start;}
div.two-block_.cardlimit_input_ .block1_ { width: 130px; padding: 0 10px 0 0; text-align: left;}
div.two-block_.cardlimit_input_ .block1_ .select-block_ { width: 100px; margin: 0 10px 0 0;}
div.two-block_.cardlimit_input_ .block2_ { width: 150px; text-align: left;}
div.two-block_.cardlimit_input_ .block2_ .select-block_ { width: 130px; margin: 0 10px 0 0;}

/* ---------------------------------------
 見出し
---------------------------------------- */
h1.optimaizedH1 { display: none !important;}
h1.optimaizedH1.category_top { display: block;}

.common_headline1_ { padding: 0; margin: 0 0 20px 0; font-size: 32px; font-weight: 400; line-height: 1.4;}
.common_headline2_ { padding: 0; margin: 0 0 20px 0; font-size: 20px; font-weight: 500; line-height: 1.4; clear: both;}
.common_headline3_ { margin: 0 0 10px 0; padding: 5px 0; border-bottom: #CCC 1px solid; font-size: 14px; font-weight: 500; line-height: 1.4;}

/* ---------------------------------------
 価格
---------------------------------------- */
.price_ { font-size: 16px; font-weight: 700; line-height: 1.2;}
.price_ span.yen_  { font-size: 12px; font-weight: 700;}
.price_ span.tax_  { font-size: 12px; font-weight: 500; color: #333;}
.price_ span.shop_ { font-size: 12px; font-weight: 400; color: #333;}
.price_pop_ { font-size: 12px; color: #CC0000;}
.price_text_ { padding: 0 3px 0 0; color: #CC0000;}
.pricebox_ .price_text_ { display: none;}
.pricebox_ .sale_pricebox_ { display: flex; justify-content: flex-end; align-items: flex-start;}
.default_price_ { font-size: 10px; font-weight: normal; text-decoration: line-through; color: #666;}
span.price_pop_ { display: block;}
span.price_ { display: block;}
span.usual_ { display: block;}

/* ---------------------------------------
 ボタン
---------------------------------------- */
.button_ { border-radius: 56px; text-decoration: none; color: #FFF; cursor: pointer;}

.large_button_   { width: 100%; height: 56px; padding: 0; margin: 0; border: none; border-radius: 56px; font-size: 16px; font-weight: bold; text-align: center; text-decoration: none; text-shadow: none; box-shadow: none;}
.large_button_s_ { width: 100%; padding: 7px 5px; margin: 5px 0; border-radius: 5px; font-size: 14px; text-align: center; text-decoration: none;}
.small_button_   { padding: 5px; border-radius: 5px; font-size: 14px; text-align: center; text-decoration: none;}
.auto_small_button_ { padding: 5px; border-radius: 5px; text-align: center; text-decoration: none;}

.yellow_button_, a.yellow_button_,
.orange_button_, a.orange_button_,
.orange_button02_, a.orange_button02_ { 
	border: #CC0000 1px solid; text-decoration: none; color: #FFF; background: #CC0000;
}
.blue_button_, a.blue_button_,
.gray_button_, a.gray_button_,
.black_button_, a.black_button_ {
	border: #333 1px solid; text-decoration: none; color: #333; background: #FFF;
}
.disable_button_,
.orange_button_:disabled,
.orange_button02_:disabled,
.yellow_button_:disabled { 
	border: #D2D2D2 1px solid; text-decoration: none; color: #FFF; background: #D2D2D2;
}

/* 定期購入 */
.green_button_   { background: #CC0000;}
.green_button02_ { background: #CC0000;}

.btn { padding: 4px 10px; margin: 0; text-decoration: none; text-align: center; vertical-align: middle; white-space: nowrap; display: inline-block; cursor: pointer;}
.btn-default   { border: #DCDCDC 1px solid; text-decoration: none; color: #333; background-color: #e5e5e5;}
.btn-primary   { border: #c54f00 1px solid; text-decoration: none; color: #FFF; background-color: #F60;}
.btn-secondary { border: #333 1px solid; text-decoration: none; color: #FFF; background-color: #666;}

.button-area_ { padding-bottom: 1px;}
.button-area_ a.link_,
.button-area_ .button_ { 
  width: 100%;
  max-width: 100%;
	height: 56px;
	padding: 0;
  margin: 0 auto;
  border: #333 1px solid;
  border-radius: 56px;
  font-size: 16px;
  font-weight: 700;
	text-decoration: none;
  color: #333;
  display: flex;
	justify-content: center;
	align-items: center;
  background: #FFF;
  box-shadow: none;
}
.button-area_ .yellow_button_ { border: #CC0000 1px solid; color: #fff; background: #CC0000;}
.button-area_ .yellow_button_[disabled] { border: #D2D2D2 1px solid; color: #FFF; background: #D2D2D2;}
.button-area_ .glay_button_ { border: #333 1px solid; color: #333; background: #FFF;}
.button-area_ .back_button_ { width: 136px; border: #333 1px solid; color: #333; background: #FFF;}

.sub_action_button_ { border: none; text-shadow: none; color: #666; background: #DCDCDC;}
.sub_action_button_.small_button_ { border: none; text-shadow: none; color: #FFF; background: #666;}
#order_back.sub_action_button_ { border: none; border-bottom: none; font-size: 12px; color: #666; text-shadow: none; text-decoration: underline; background: #FFF;}

ul.buttons_ { width: 100%; padding: 10px 0; border-top: #CCC 1px solid; text-align: center; background: #F0F0F0; overflow: hidden;}
ul.buttons_ li { text-align: center; display: inline;}
ul.buttons_ li a img { vertical-align: middle;}

.submit_ { margin: 20px 10px; display: flex; justify-content: center; gap: 10px;}
.submit_ .large_button_ { display: flex; justify-content: center; align-items: center;}
.submit_ .yellow_button_,
.submit_ .orange_button_ { width: calc(65% - 10px); min-width: calc(65% - 10px); order: 2;}
.submit_ .blue_button_ { width: calc(65% - 10px); min-width: calc(65% - 10px); order: 2;}
.submit_ .gray_button_ { width: 35%; order: 1;}
.submit_ .single_back_button_ { min-width: 136px;}

.submit_.button-area_ { margin-bottom: 0;}
.submit_.button-area_.bg_gray_ { padding: 0 10px; margin: 0; background: #f8f8f8;}
.submit_.button-area_.last_ { padding: 16px 22px 10px; margin: 10px 0 0;}
.submit_.button-area_.last_.attention { padding-bottom: 0; margin-bottom: 15px;}
.submit_.button-area_.last_.attention + span { margin-bottom: 20px; font-size: 13px; text-align: center; display: block;}
.submit_.button-area_.last_.wide { flex-direction: column;}
.submit_.button-area_.last_ input[name="delete.x"] { margin: 0 auto; border: none; font-size: 14px; color: #0083D5; background: transparent;}

.submit_ .yellow_button_[disabled] { border-color: #D2D2D2 !important; color: #FFF !important; background: #D2D2D2 !important; pointer-events: none !important; cursor: not-allowed;}
.submit_ .yellow_button_[disabled]:hover { opacity: unset;}
.submit_ .button_.disabled_ { border-color: #D2D2D2 !important; color: #FFF !important; background: #D2D2D2 !important; pointer-events: none !important; cursor: not-allowed;}

/* ---------------------------------------
 パンくず
---------------------------------------- */
.navitopicpath_ {
  width: 100%;
  min-height: 25px;
  padding: 4px 0 4px 16px;
  margin: 0 auto 20px;
  font-size: 12px;
  font-weight: 400;
  word-break: keep-all;
  white-space: nowrap;
  line-height: 1.0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
}
.col1_ .navitopicpath_ {
  width: calc(100% + 16px);
  padding: 4px 0;
  margin: 0 -16px 20px 0;
}
.navitopicpath_ > a { margin: 0 24px 0 0; text-decoration: underline; color: #1D3994; display: flex; align-items: center; position: relative;}
.navitopicpath_ > a::after {
	content: '';
	width: 12px;
	height: 12px;
	margin: 0;
	background: url("../../img/usr/common/navitopicpath_arrow.png") center center no-repeat;
	-webkit-background-size: auto 10px;
	background-size: auto 10px;
	display: block;
	position: absolute;
	right: -18px;
	top: calc(50% - 6px);
	pointer-events: none !important;
}
.navitopicpath_ > a:last-of-type { margin: 0; text-decoration: none; color: #414143; pointer-events: none;}
.navitopicpath_ > a:last-of-type::after { display: none;}
.navitopicpath_ > a:hover { text-decoration: none;}
.navitopicpath_ span.current_ { margin: 0 0.5em 0 0; color: #414143;}

.navitopicpath_:has(#bread-crumb-list) { display: block;}
.navitopicpath_ #bread-crumb-list { width: 100%; min-height: 25px; padding: 0; margin: 0; font-size: 12px; line-height: 1.0; display: flex; flex-wrap: nowrap; align-items: center; overflow-x: auto;}
.navitopicpath_ #bread-crumb-list + #bread-crumb-list { margin-top: 5px;}
.navitopicpath_ #bread-crumb-list li { margin: 0;}
.navitopicpath_ #bread-crumb-list li a { margin: 0 24px 0 0; text-decoration: underline; color: #1D3994; display: flex; align-items: center; position: relative;}
.navitopicpath_ #bread-crumb-list li a::after {
	content: '';
	width: 12px;
	height: 12px;
	margin: 0 0 0 0.5em;
	background: url("../../img/usr/common/navitopicpath_arrow.png") center center no-repeat;
	-webkit-background-size: auto 10px;
	background-size: auto 10px;
	display: block;
	position: absolute;
	right: -18px;
	top: calc(50% - 6px);
	pointer-events: none !important;
}
.navitopicpath_ #bread-crumb-list li:last-of-type a { margin: 0; text-decoration: none; color: #414143; pointer-events: none;}
.navitopicpath_ #bread-crumb-list li:last-of-type a::after { display: none;}
.navitopicpath_ #bread-crumb-list li a:hover { text-decoration: none;}

/* ---------------------------------------
 ページャー
---------------------------------------- */
.navipage_ { margin: 0 0 16px 0; font-size: 16px; text-align: left;}
.navipage_ .navipage_sum_ { font-size: 16px; font-weight: 400;}
.navipage_ span.rowcount_ { font-size: 16px; font-weight: 400;}
.navipage_ span.navi_current_nums_ { margin: 0 0 0 10px; font-size: 16px; font-weight: 400;}

.navipage_ .navipage_frame_ { margin: 20px 0; font-size: 16px; font-weight: 400; text-align: center;}
.navipage_ .navipage_frame_ ul { width: 100%; font-size: 14px; font-weight: 400; display: flex; justify-content: center; align-items: center; column-gap: 12px;}
.navipage_ .navipage_frame_ li { min-width: 48px; font-size: 14px; font-weight: 400;}
.navipage_ .navipage_frame_ li a { 
	width: 48px;
	height: 48px;
	border: #D8D8D8 1px solid;
	border-radius: 48px;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	color: #1D3994;
	display: flex;
	justify-content: center;
	align-items: center;
}
.navipage_ .navipage_frame_ li.page { min-width: 48px; height: 48px; font-size: 14px; font-weight: 400; color: #333; display: none;}
.navipage_ .navipage_frame_ li.page.active { display: flex; justify-content: center; align-items: center;}
.navipage_ .navipage_frame_ li:not(.page) a { font-size: 0; position: relative;}
.navipage_ .navipage_frame_ li:not(.page) a::before {
	content: '';
  width: 11px;
  height: 11px;
  border-right: #0017C1 1px solid;
  border-top: #0017C1 1px solid;
  display: block;
  position: absolute;
  top: calc(50% - 6px);
}
.navipage_ .navipage_frame_ li.first a::after,
.navipage_ .navipage_frame_ li.last a::after {
	content: '';
  height: 18px;
  border-left: #0017C1 1px solid;
  display: block;
  position: absolute;
  top: calc(50% - 9px);
	left: calc(50% - 7px);
}
.navipage_ .navipage_frame_ li.first a::before { transform: rotate(-135deg); left: calc(50% + 2px);}
.navipage_ .navipage_frame_ li.prev a::before  { transform: rotate(-135deg); left: calc(50% - 4px);}
.navipage_ .navipage_frame_ li.next a::before  { transform: rotate(45deg); left: calc(50% - 9px);}
.navipage_ .navipage_frame_ li.last a::before  { transform: rotate(45deg); left: calc(50% - 14px);}
.navipage_ .navipage_frame_ li.last a::after   { left: calc(50% + 7px);}

/* ---------------------------------------
 並び替え
---------------------------------------- */
.navisort_ { margin: 2px 0; border-bottom: #FFCCCC 2px solid; overflow: hidden;}
.navisort_ dt { width: 8em; font-weight: bold; text-align: right; float: left;}
.navisort_ dd { margin-left: 8em;}
.navisort_now_ { margin: 2px 5px; text-decoration: none; white-space: nowrap; color: #CC0000;}
.navisort_ a { margin: 2px 5px; white-space: nowrap;}

/* ---------------------------------------
 表示形式切替
---------------------------------------- */
.navistyle_ { width: 100vw; height: 100vh; display: none; background: rgba(0, 0, 0, 0.5); position: fixed; top: 0; left: 0; z-index: 101; transition: all .3s;}
.navistyle_ .inner_ { width: 100%; display: none; background: #FFF; position: fixed; left: 0; bottom: 0; z-index: 1;}
.navistyle_ .headline_ { padding: 15px 10px 14px; display: flex; justify-content: space-between; align-items: center; background: #F2F2F2;}
.navistyle_ .headline_ p { padding: 0 0 0 35px; font-weight: bold; background: url(../../img/usr/sb/common/icon_sort.png) no-repeat left center / 20px;}
.navistyle_ .select_ label { padding: 14px 10px 12px; border-top: #DDD 1px solid; font-size: 12px; display: block;}
.navistyle_ .select_ input { width: 25px; height: 25px; margin: 0 10px 0 0; border: #DDD 1px solid; border-radius: 25px; background: #F2F2F2;}
.navistyle_ .select_ input:checked { border: #c00 7px solid; background: #FFF;}
.navistyle_ dt { margin-top: 0;}
.navistyle_ select {
  width: 95%;
  max-width: 95%;
  margin-left: 5%;
  border: #DDD 1px solid;
  border-radius: 5px;
  text-align: left;
  color: #5f5f5f;
  background: #f4f4f4 url(../../img/usr/sp/filter/searchshape.png) 95% center no-repeat;
  background-size: 30px 25px;
}
.navistyle_ .select_ opiton { padding: 10px 0;}

.class_filter_pulldown_ {
  width: 100%;
  max-width: 100%;
  height: 35px;
  padding: 0 10px 0 27px;
  border: none;
  border-radius: 2px 0 0 2px;
  font-size: 13px;
  vertical-align: middle;
  line-height: 1;
  color: #888888;
  background: url(../../img/usr/sp/select_arrow.png) left center no-repeat #fff;
  background-size: 19px 7px;
}
.class_filter_pulldown_ {
  border-width: 1px;
}

/* ---------------------------------------
 表示件数
---------------------------------------- */
.navipagenum_ { width: 100%; text-align: center; display: block;}

/* ---------------------------------------
 絞込
---------------------------------------- */
/* ブランド絞込 */
.brand_name_now_ { padding: 5px; font-weight: bold; text-decoration: none; white-space: nowrap; color: #CC3300; display: inline-block;}
.brand_name_ a { padding: 5px; display: inline-block;}

/* メーカー絞込 */
.maker_name_now_ { padding: 5px; font-weight: bold; text-decoration: none; white-space: nowrap; color: #CC3300; display: inline-block;}
.maker_name_ a { padding: 5px; white-space: nowrap; display: inline-block;}

/* 商品分類絞込 */
#goods_class_filter_ { padding-bottom: 3px;}
#goods_class_filter_ .class_filter_ { margin-right: 10px;}
#goods_class_filter_ .class_filter_ .selected_ { background-color: #ffeeff;}

/* ---------------------------------------
 バーコード系
---------------------------------------- */
div.barcodeimage_ img { width: 100%; height: auto;}
p.barcodenumber_ { font-size: 16px; font-weight: bold; letter-spacing: 5px;}

/* ---------------------------------------
 modal dialog
---------------------------------------- */
.modal-block_ { display: none;}
.modal-block_.fixed_ { width: 100%; height: 100%; display: block; background: rgba(0, 0, 0, 0.5); position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 100;}
.modal_ {
  min-width: 220px;
  max-width: calc(100% - 32px);
  height: 80%;
  margin: 0 auto;
  margin-top: 50vh;
  border: none;
	border-radius: 12px;
  background: #FFF;
  position: relative;
  overflow: hidden;
  transform: translateY(-50%);
}
.modal-inner_ { width: 100%; height: calc(100% - 60px); overflow: auto; -webkit-overflow-scrolling: touch;}
.modal_ .modal-close_ { width: calc(100% - 30px); padding: 9px 15px; font-size: 18px; font-weight: bold; background: #dedede; position: relative; z-index: 20;}
.modal_ .modal-close_:before { content: ''; width: 2px; height: 14px; padding: 0; margin: 0 0 0 7px; display: block; background: #FFF; position: absolute; top: 37%; right: 19px; transform: rotate(45deg);}
.modal_ .modal-close_:after { content: ''; width: 14px; height: 2px; margin-top: -2px; display: block; background: #FFF; position: absolute; top: 55%; right: 13px; transform: rotate(45deg);}

/* ---------------------------------------
 モーダル1 共通パーツ
---------------------------------------- */
.modal-overlay { width: 100%; height: 100%; background-color: #000; position: fixed; top: 0; left: 0; z-index: 10000; opacity: 0.5;}
input[type="hidden"] + .modal-overlay { width: 100%; height: 100%; background-color: #000; position: fixed; top: 0; left: 0; z-index: 10000; opacity: 0.5;}
.modal-dialog { 
	width: 100%;
	max-width: unset;
	padding: 0 24px;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10001;
}
.modal-dialog .modal-wrapper { width: 100%;}
.modal-overlay-alert { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #000; opacity: 0.5; z-index: 10002;}
.modal-alert { padding: 0 10px; width: 100%; max-width: 600px; z-index: 10003;}
.modal-body {
  width: calc(100% - 30px);
  max-height: calc(100dvh - 200px);
	padding: 16px;
  border-radius: 12px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}
.modal-body p { margin-bottom: 10px;}
.modal-body .body-slide { padding-top: 15px;}
.modal-body .message_ { padding: 0;}
.modal-body header { width: 100%; height: auto; padding: 0; margin: 0; border: none; text-align: center; background: none;}
.modal-close {
  height: 40px;
  padding: 0 16px;
  border: #333 1px solid;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
	text-align: center;
  text-decoration: none;
	line-height: 1;
  color: #333;
  display: flex;
	justify-content: center;
	align-items: center;
  background: #FFF;
  position: relative;
  cursor: pointer;
}
.modal-close:focus { outline: none;}
.modal-close::before {
  content: '';
  width: 8px;
  height: 8px;
	margin: 0 6px 0 0;
  border-right: #333 1px solid;
  border-top: #333 1px solid;
  display: block;
  transform: rotate(-135deg);
}
.modal-back {
  height: 40px;
  padding: 0 16px;
  border: #333 1px solid;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
	text-align: center;
  text-decoration: none;
	line-height: 1;
  color: #333;
  display: flex;
	justify-content: center;
	align-items: center;
  background: #FFF;
  position: relative;
  cursor: pointer;
}
.modal-back:focus { outline: none;}
.modal-back.is-active { opacity: 1; pointer-events: all;}
.modal-back::before {
  content: '';
  width: 8px;
  height: 8px;
	margin: 0 6px 0 0;
  border-right: #333 1px solid;
  border-top: #333 1px solid;
  display: block;
  transform: rotate(-135deg);
}
.modal-close-btn {
  height: 40px;
  padding: 0 16px;
  border: #333 1px solid;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
	text-align: center;
  text-decoration: none;
	line-height: 1;
  color: #333;
  display: flex;
	justify-content: center;
	align-items: center;
  background: #FFF;
  position: relative;
  cursor: pointer;
}
.modal-btn { width: 100%; height: 50px; padding: 0 8px 0; margin: 19px 0 29px;}
.modal-btn .button_ { width: 100%; height: 100%; border-radius: 50px; font-size: 16px; text-decoration: none; line-height: 1; display: flex; align-items: center; justify-content: center;}

.modal-header { padding: 14px 10px 13px; border-bottom: none; font-weight: bold; line-height: 1; clear: both;}
.modal-title { padding: 0; margin: 0; font-size: 20px; font-weight: 500;}
.modal-header .modal-title { font-size: 18px;}

.modal-content { width: 100%; padding: 16px; margin: 0 auto; border-radius: 12px; background: #FFF;}
.modal-content .notes { font-size: 12px; padding-left: 1em; text-indent: -1em; line-height: 1.6;}
.modal-content .message_ { margin-top: 13px;}
.modal-content .notes + .notes { width: calc(100% + 5px); margin-top: 5px;}
.modal-content figure { width: 100%; margin-top: 10px; display: block;}
.modal-content figure img { width: 100%; height: auto; display: block;}
.modal-content * + .modal-close-btn { margin-top: 20px;}
.modal-content > .button_ { line-height: 1;}
.modal-content .button_ { width: 100%; height: 56px; margin-top: 30px; border-radius: 56px; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center;}
.modal-content p + p { margin-top: 20px;}

.modal-footer .btn { width: 100%; margin-top: 5px;}
.modal-footer .block-goods-favorite-cancel--btn { padding: 7px 10px; border: 0; border-radius: 4px; text-decoration: none; color: #FFF; background-color: #313131;}
.modal-footer .block-goods-favorite-cancel--btn + input {
  padding: 7px 10px;
  border: #CCC 1px solid;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: #222 !important;
  background: linear-gradient(to bottom, #FFF 0%, #EDEDED 100%);
}
.modal-footer .block-goods-favorite-cancel--btn + input + .btn-secondary {
  padding: 7px 10px;
  border: #F2AF19 1px solid;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  color: #222;
  display: block;
  background: linear-gradient(to bottom, #FFDA3C 0%, #FFCB3C 100%);
}

.option-modal.-all { width: 100vw; height: 100dvh; position: fixed; top: 50%; left: 50%; z-index: 2; transform: translate(-50%, -50%); transition: 0.3s ease-in-out; pointer-events: none; opacity: 0;}
.option-modal.-all.is-open { pointer-events: all; opacity: 1;}

/* お気に入りの解除 */
.modal-dialog.modal-bookmark .modal-header { padding: 56px 0 0 0; margin: 0 0 16px 0; text-align: center; position: relative;}
.modal-dialog.modal-bookmark .modal-header .modal-close {
	width: 163px;
  height: 40px;
  padding: 0 0 0 12px;
  margin: 0 0 25px 0;
  border: #333 1px solid;
  border-radius: 20px;
  outline: none;
	font-size: 0;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
}
.modal-dialog.modal-bookmark .modal-header .modal-close::before {
  content: '';
  width: 8px;
  height: 8px;
	margin: 0 6px 0 0;
  border-right: #333 1px solid;
  border-top: #333 1px solid;
  display: block;
  transform: rotate(-135deg);
  position: absolute;
  top: 16px;
  left: 20px;
}
.modal-dialog.modal-bookmark .modal-header .modal-close::after {
	content: '前の画面に戻る';
	width: 100%;
	margin: 0;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}
.modal-dialog.modal-bookmark .modal-body { width: auto; height: auto; max-height: auto; padding: 0; border-radius: 0; text-align: center; background: none; position: relative; top: 0; left: 0; transform: none;}
.modal-dialog.modal-bookmark .modal-footer { display: flex; flex-wrap: wrap; gap: 10px;}
.modal-dialog.modal-bookmark .modal-footer .btn[name="btncancel"] { 
	width: calc(50% - 5px);
	height: 56px;
	border-radius: 56px;
	border-color: #CC0000;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	color: #FFF !important;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #CC0000;
	order: 1;
}
.modal-dialog.modal-bookmark .modal-footer .btn.btn-primary { 
	width: calc(50% - 5px);
	height: 56px;
	border: #333 1px solid;
	border-radius: 56px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;	
	color: #333 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFF;
	order: 2;
}
.modal-dialog.modal-bookmark .modal-footer .bookmarkmodal-option { width: 100%; text-align: center; order: 3;}
.modal-dialog.modal-bookmark .modal-footer .bookmarkmodal-option a { margin: 0 auto; border: none; font-size: 16px; text-decoration: underline; color: #1D3994 !important; display: inline-block;}

/* ---------------------------------------
 balloontip
---------------------------------------- */
.balloons { background: rgb(209, 0, 0) !important; opacity: 1 !important;}
.balloontip {
  min-width: 20px;
  max-width: 100%;
  padding: 10px;
  border: #333 2px solid;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  color: #333;
  background: #FFF;
  z-index: 32767;
  opacity: 1;
}
.wrapper_:has(.cartlist_) ~ div.balloontip { width: 86px; left: 8px !important;}

/* ---------------------------------------
 Google reCAPTCHA
---------------------------------------- */
.g-recaptcha_ {
  width: 300px;
	margin: 0 auto 30px;
  text-align: center;
}

/* ---------------------------------------
 スライダー用ページャー
---------------------------------------- */
.bx-pager { margin-top: 10px; text-align: center;}
.bx-pager-item { display: inline-block;}
.bx-pager-link { width: 7px; height: 1px; padding-top: 6px; margin-right: 9px; border: #DDD 1px solid; border-radius: 10px; display: block; background: #DDD; overflow: hidden;}
.bx-pager-item:last-of-type .bx-pager-link { margin-right: 0;}
.bx-pager-link.active { border: #CD0000 1px solid; background: #000;}

/* ---------------------------------------
 検索サジェスト
---------------------------------------- */
div.bl_npSuggestContainerSp { width: 100vw; margin-top: 15px; display: flex !important; left: -20px !important;}
div.bl_npSuggestContainerSp span.deletebtn {
  width: 17%;
  height: 47px;
  display: block;
  border-bottom: #D4D9DC 1px solid;
  background: url(../../img/usr/sp/panelclosebtn.png) right 15px center no-repeat;
  background-size: 10px;
  float: right;
}
div.bl_npSuggestContainerSp .bl_npSuggestContainerSp_searchboxComponent { width: 100%; margin: 0;}
div.bl_npSuggestContainerSp .el_npSuggestCrossBtn { width: 10px; height: 10px; background: url(../../img/usr/sp/panelclosebtn.png) center center no-repeat; background-size: 10px;}
div.bl_npSuggestContainerSp .el_npSuggestCrossBtn::before,
div.bl_npSuggestContainerSp .el_npSuggestCrossBtn::after { display: none;}
div.bl_npSuggestContainerSp .bl_npSuggestRankingList { border: none;}
div.bl_npSuggestContainerSp .bl_npSuggestHistoryList_body { padding: 0;}
div.bl_npSuggestContainerSp .bl_npSuggestHistoryList { border-top: none; border-bottom: #D4D9DC 1px solid;}
div.bl_npSuggestContainerSp .bl_npSuggestHistoryList_header { display: none;}
div.bl_npSuggestContainerSp .bl_npSuggestKeywordList { border: none; border-top: #D4D9DC 1px solid;}
div.bl_npSuggestContainerSp .bl_npSuggestKeywordList_body { padding: 0; background: #FFF; position: relative;}
div.bl_npSuggestContainerSp .bl_npSuggestKeywordList_item { width: 83%; height: 47px; border-color: #d4d9dc 1px solid !important; background: #fff !important; float: left; clear: both;}
div.bl_npSuggestContainerSp .bl_npSuggestKeywordList_keyword { margin-right: 40px; white-space: normal;}

/* ---------------------------------------
 Ajax Zip
---------------------------------------- */
#suggestZipArea { padding: 2px 0; border: #DDD 1px solid; display: none; background-color: #FFF; position: absolute; z-index: 9999;}
#suggestZipArea .itemNotFound { height: 20px; padding: 0 4px; font-style: italic; text-align: center; line-height: 20px; color: #999;}
#suggestZipArea .selected { color: #EC0000;}
#suggestZipArea .itemLine { height: 20px; padding: 0 4px; line-height: 20px; list-style: none; white-space: nowrap; color: #333;}
#suggestZipArea .itemLine .itemCode { margin-right: 4px; font-weight: 700; float: left;}

/* ---------------------------------------
 UIダイアログ
---------------------------------------- */
h2.txt_title { width: 90%; height: auto; padding: 15px 10px 5px; margin: 10px 0 15px; border-bottom: #EC6D81 3px solid; border-left: #EC6D81 6px solid; font-size: 16px; text-align: left;}

.ui-dialog .ui-dialog-content { padding: 15px 0 0 0 !important; font-size: 14px; font-weight: 400;}
.ui-widget-overlay {
  width: 100% !important;
  background: rgba(0,0,0) !important;
	opacity: 0.6 !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100003 !important;
}
.ui-dialog {
  padding: 16px !important;
  border: none !important;
  border-radius: 12px !important;
  background: #FFF !important;
  position: fixed!important;
  top: 50vh !important;
  transform: translateY(-25vh) !important;
  z-index: 100004 !important;
  overflow: scroll;
}
.ui-dialog .ui-resizable-handle { display: none !important;}
.ui-dialog .ui-dialog-titlebar { padding: 0 !important; border: none !important; border-radius: 0 !important; text-align: center; background: none !important;}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title { font-size: 16px; color: #FFF; float: none;}
.ui-dialog .ui-dialog-titlebar-close { margin: -10px -10px 0 0 !important;}
.ui-dialog .ui-dialog-titlebar-close .ui-icon {
  width: 18px;
  height: 18px;
  text-indent: -99999px;
  background: url(../../img/sys/button/btn_close.png) no-repeat;
  background-size: 18px;
  position: absolute;
  right: 15px;
}
.ui-dialog h2.txt_title { width: auto; padding: 12px 0; margin: 0 10px 15px; border-bottom: #333 1px solid; border-left: none; line-height: 1.4;}
.ui-dialog .check2 { width: auto; padding: 0 10px;}
.ui-dialog .check2 > .check2_q { overflow: visible;}
.ui-dialog .check2 > .check2_q > .check2_q_left { display: none;}
.ui-dialog .check2 > .check2_q > .check2_q_center { width: auto; margin-bottom: 15px;}
.ui-dialog .check2 .question { margin-bottom: 20px;}
.ui-dialog .check2 .question .check2_q_left { width: 36px;}
.ui-dialog .check2 .question .check2_q_left p img { width: 28px;}
.ui-dialog .check2 .question .check2_q_center { width: auto; min-height: 42px; margin-left: 36px; margin-bottom: 15px; float: none;}
.ui-dialog img.radioGroup1.answer_no,
.ui-dialog img.radioGroup1.answer_yes,
.ui-dialog img.radioGroup1.answer_yes.selected { width: 114px;}
.ui-dialog .check2 .question .check2_q_center .center { overflow: hidden;}
.ui-dialog .check2 .question .check2_q_center .center label { margin-left: 8px; font-size: 0; float: left;}
.ui-dialog .check2 .question .check2_q_center .center label:first-of-type { margin-left: 0;}
.ui-dialog .ui-dialog-buttonpane { padding: 0 !important; margin: 0 !important; border: none !important; background: none !important;}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { margin-top: 20px; text-align: center; float: none !important;}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
  padding: 4px 45px;
  border: #333 1px solid !important;
  border-radius: 56px;
  font-weight: bold;
  color: #333 !important;
  background: #FFF !important;
}
.ui-widget-content { border: #DDD 1px solid; color: #333; background: #FFF;}

.ui-dialog:has(#carderr_dialog_msg) .ui-widget-header { display: none !important;}
.ui-dialog .ui-dialog-content #carderr_dialog_msg { padding: 0 0 0 1em; margin: 0 auto; text-align: left; text-indent: -1em; color: #EC0000;}


/* ---------------------------------------
 キーワード検索 関連キーワード
---------------------------------------- */
#relative_keyword_ { background: #fff; padding: 24px 17px 0px; margin: 0 -20px 0; }
#relative_keyword_ p { font-weight: bold; padding: 0 4px; margin: 0 0 7px; }
#relative_keyword_ ul { display: flex; flex-wrap: wrap; }
#relative_keyword_ li { margin: 0 3px 6px; }
#relative_keyword_ li a { display: inline-block; color: #333; font-size: 12px; background: #F2F2F2; border-radius: 15px; padding: 6px 11px; text-decoration: none; }
