@charset "Shift_JIS";

/* ---------------------------------------
 汎用タグ
---------------------------------------- */
body {
	margin: 0;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
	font-size: 16px;
	text-align: center;
	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;
}
ol li {
	margin-left: 2em;
	list-style: decimal;
}
img {
	border: none;
	vertical-align: middle;
}
a img:hover {
	opacity: 0.7;
}
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;
	margin: 0;
	outline: none;
	font-size: 16px;
	vertical-align: middle;
	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"] {
	min-height: 56px;
	padding: 7px 16px;
	border: #333 1px solid;
	border-radius: 8px;
}

input[type="text"].efo-error_,
input[type="tel"].efo-error_,
input[type="url"].efo-error_,
input[type="email"].efo-error_,
input[type="number"].efo-error_,
input[type="search"].efo-error_,
input[type="password"].efo-error_ {
	color: #333;
}

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;
}
input[type="password"]::-ms-reveal { 
	display: none;
}
input[type="button"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
	cursor: pointer;
}
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="image"]:hover { 
	opacity: 0.7;
}
input[disabled],
input[disabled] + label {
	cursor: auto;
}

textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	padding: 7px 16px;
	margin: 0;
	border: #333 1px solid;
	border-radius: 8px;
	outline: none;
	font-size: 16px;
	position:relative;
	zoom: 1;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	height: 56px;
	padding: 7px 28px 7px 16px;
	margin: 0;
	border: #333 1px solid;
	border-radius: 8px;
	outline: none;
	line-height: 28px;
	font-size: 16px;
	color: #333 !important;
	cursor: pointer;
	background: transparent url("../../img/usr/common/select_bg.png") calc(100% - 12px) center no-repeat;
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
}
select::-ms-expand {
	display: none;
}
select::-ms-value {
	background: transparent;
	color: black;
}

label {
	margin: 0 40px 0 0;
	font-size: 16px;
}

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"]:disabled {
	border-color: #CCC;
}
input[type="radio"]:checked {
	border-color: #CC0000;
}
input[type="radio"]:checked:before {
	content: '';
	width: 10px;
	height: 10px;
	margin: 0;
	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;
	background: #D9D9D9 !important;
}

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;
}

/* ---------------------------------------
 基本レイアウト
---------------------------------------- */
div.wrapper_   { width: auto; min-width: 1040px; max-width: 100%; margin: 0 auto; text-align: left; overflow-x: hidden;}
div.container_ { max-width: 1440px; min-width: 1040px; padding: 0 20px; margin: 0 auto; display: block;}
div.contents_  { width: 100%; display: block; float: left;}
div.leftmenuframe_  { width: 280px; padding: 30px 0 0 0; margin: 0 0 100px 0; display: block; overflow: visible; float: right;}
div.rightmenuframe_ { width: 160px; margin: 0 0 0 20px; display: block; overflow: hidden; float: right;}
div.mainframe_ { padding: 30px 0 0 0; display: block; float: right;}

div.container_ div.mainframe_ { width: calc(100% - 280px); padding: 30px 0 0 30px; margin: 0 0 100px 0;}

div.container_ div.contents_:has(.navitopicpath_) div.mainframe_ { padding-top: 0;}
div.container_ div.contents_:has(.navitopicpath_) div.leftmenuframe_ { padding-top: 0;}

div.container_:after,
div.contents_:after,
div.mainframe_:after { content: ''; height: 0; display: block; clear: both; visibility: hidden;}

div.single_mainframe_ { max-width: 1400px; min-width: 1000px; min-height: calc(100vh - 700px); overflow: hidden;}

/* パンくずなし */
div.col1_ { 
	max-width: 1440px;
	min-width: 1040px;
	min-height: calc(100vh - 700px);
	padding: 30px 20px 20px;
	margin: 0 auto;
}
div.wrapper_.order-h_ div.col1_ {
	min-height: calc(100vh - 170px);
}
/* パンくずあり */
div.col1_:has(.navitopicpath_) {
	padding: 0 20px 20px;
}
div.col1_ .navitopicpath_ { padding-left: 0; padding-right: 0;}

body.liquid div.container_ div.contents_:has(.navitopicpath_) div.leftmenuframe_ { padding-top: 0;}
body.liquid div.container_ div.contents_:has(.navitopicpath_) div.mainframe_ { padding-top: 0;}
body.liquid div.container_ { width: auto; min-width: 1040px;}
body.liquid .single_mainframe_ { margin: 0 auto;}
body.liquid .single_mainframe_ .notice_ { margin-top: 54px;}

/* ---------------------------------------
 汎用class
---------------------------------------- */
.large_  { font-size: 120%;}
.xlarge_ { font-size: 144%;}
.small_  { font-size: 12px;}
.xsmall_ { font-size: 11px;}
.bold_   { font-weight: 700;}

.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          { width: 0; height: 0; display: block; overflow: hidden; visibility: hidden; clear: both;}
.clear_         { clear: both;}

.lefttext_      { text-align: left;}
.righttext_     { text-align: right;}
.centertext_    { text-align: center;}
.top_comment_   { margin-bottom: 10px;}
.hidden_        { visibility: hidden;}
.nocell_        { border: none !important; background-color: transparent !important;}
.hiddenEnter_   { width: 0; height: 0;}
p.mb_none_ { margin-bottom: 0;}

.clearfix::after { content: ''; clear: both; display: block;}

/* ---------------------------------------
 メッセージ
---------------------------------------- */
p.message_ { font-size: 16px; line-height: 1.8;}
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;}
span.message_ { float: left;}
div.info_ p.message_ { margin: 0;}

.notice_ { color: #EC0000;}
.notice_ a { text-decoration: underline;}
div.notice_,
table.notice_ { padding: 20px; margin: 30px auto; border: #EC0000 1px solid; font-size: 16px; font-weight: 400; text-align: left; background: #FFF;}
div.notice_ a { font-size: 16px; font-weight: 400; text-decoration: underline; color: #EC0000;}
div.notice_ .centertext_ { margin-top: 25px;}
div.notice_ .centertext_ a { font-size: 16px; font-weight: 400; text-decoration: underline; color: #1D3994;}

.info_ a { text-decoration: underline;}
div.info_,
table.info_ { padding: 20px; margin: 30px auto; border: #666666 1px solid; font-size: 16px; font-weight: 400; text-align: left; background: #FFF;}
div.info_ p.message_ { margin: 5px 0; font-size: 16px; font-weight: 400;}
div.info_ ul.error_ { margin: 1em 2em;}
div.info_ ul.error_ li { font-size: 16px; font-weight: 400;}
div.info_ ul.error_ li a { text-decoration: underline; color: #1D3994;}

/* ---------------------------------------
 エラー
---------------------------------------- */
.error_:not(:empty) { margin: 10px 0; font-size: 14px; font-weight: 400; color: #EC0000; clear: both;}
.error_ a { text-decoration: underline;}
.efo-error_ { margin: 10px 0; font-size: 14px; font-weight: 400; color: #EC0000; clear: both;}

div.error_:not(:empty),
table.error_:not(:empty) { padding: 20px; margin: 30px auto; border: #EC0000 1px solid; font-size: 16px; font-weight: 400; text-align: left; 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;}
div.error_:not(:empty) span.error_qty_ {margin-left: 15px;}

/* 入力チェック */
span.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: text-top;}

img[src$="input_ok.gif"],
img[src$="input_ok01.gif"],
img[src$="input_error.gif"],
img[src$="input_error01.gif"] { width: 30px; height: 30px; margin: 13px 0 0 10px; float: left;}

img#isErrorIcon_secret_question { margin-top: 13px;}

/* 入力アラート背景色
input.efo-error_ { background-color: #FFEEEE;}
.classrequired { background-color: #FFEEEE;}
.classerror { background-color: #FFEEEE;}
 */
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.0;
  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_ { width: 100%; margin: 0 0 10px 0; font-size: 12px; line-height: 1.7; color: #666; clear: both;}
p.supplement_.nomb_ { margin-bottom: 0;}
span + p.supplement_,
input + p.supplement_ { margin: 10px 0;}
p.supplement_.check_before_ { margin-bottom: 20px;}

/* フォーム */
table.formlist_ { width: 100%; margin: 0 auto; border: #DDD 1px solid; border-collapse: collapse;}
table.formlist_ th { padding: 10px; border: #DDD 1px solid; font-weight: 400; white-space: nowrap; background-color: #F8F8FB;}
table.formlist_ td { padding: 10px; border: #DDD 1px solid; font-weight: 400; background-color: #FFF;}
table.formlist_ .line0_ { background-color: #FFF;}
table.formlist_ .line1_ { background-color: #F8F8FB;}
table.formdetail_ { width: 100%; margin: 0 auto; border-collapse: collapse;}
table.formdetail_ th { padding: 8px; border: #DDD 1px solid; font-weight: 400; text-align: left; vertical-align: top; background-color: #F8F8FB; overflow: hidden; clear: both;}
table.formdetail_ td { padding: 8px; border: #DDD 1px solid; font-weight: 400; vertical-align: top; background-color: #FFF; overflow: hidden; clear: both;}
table.formsublist_ { border-collapse: collapse;}
table.formsublist_ th { border: #DDD 1px dotted; font-weight: 400; white-space: nowrap; background-color: #FFF;}
table.formsublist_ td { border: #DDD 1px dotted; font-weight: 400; background-color: #FFF;}

table.formdetail_.design_table_ { width: 100%; margin: 0 auto; border-collapse: collapse; border: none; display: block;}
table.formdetail_.design_table_ tr { width: 100%; padding: 0; margin: 0; border-collapse: collapse; border: none; display: block;}
table.formdetail_.design_table_ th { padding: 0; margin: 30px 0 10px 0; border: none; font-size: 14px; font-weight: 500; display: block; background-color: #FFF; position: relative;}
table.formdetail_.design_table_ td { min-height: 1em; padding: 0; border: none; font-size: 16px; font-weight: 400; line-height: 1.4; vertical-align: top; display: block; background-color: #FFF; position: relative;}
table.formdetail_.design_table_ td span.efo { float: left;}
table.formdetail_.design_table_ td span.efo + p.error_,
table.formdetail_.design_table_ td span.efo + img + p.error_,
table.formdetail_.design_table_ td span.efo + span.efo-error_ { padding-top: 10px; margin-top: 0;}
table.formdetail_.design_table_ td p.small_ { width: 100%; clear: both;}
table.formdetail_.design_table_ td input + p,
table.formdetail_.design_table_ td span.efo + p,
table.formdetail_.design_table_ td p.small_ + p.error_ { padding-top: 10px; margin-top: 0;}
table.formdetail_.design_table_ td div { width: 100%; clear: both;}

/* フォーム 入力欄のサイズ指定 */
table.formdetail_ td input[type="text"][name$="name"],
table.formdetail_ td input[type="text"][name$="kana"],
table.formdetail_ td input[type="text"][name$="mail"],
table.formdetail_ td input[type="text"][name$="mail2"],
table.formdetail_ td input[type="text"][name$="cmail"],
table.formdetail_ td input[type="text"][name$="addr"],
table.formdetail_ td input[type="text"][name$="addr2"],
table.formdetail_ td input[type="text"][name$="addr3"],
table.formdetail_ td input[type="text"][name$="zip"],
table.formdetail_ td input[type="text"][name$="comp"],
table.formdetail_ td input[type="text"][name$="dept"],
table.formdetail_ td input[name="uid"],
table.formdetail_ td input[name="oldid"],
table.formdetail_ td input[name="order_id"] { 
	width: 460px; max-width: 460px;
}
table.formdetail_ td input[type="text"][name="secret_answer"] { 
	width: 360px; max-width: 360px;
}
table.formdetail_ td input[id="npwd1"],
table.formdetail_ td input[id="npwd2"] { 
	width: 310px; max-width: 310px;
}
table.formdetail_ td select[id$="pref"] { 
	width: 300px;
}
table.formdetail_ td input[name="oldpwd"] { 
	width: 230px; max-width: 230px;
}
table.formdetail_ td input[type="text"][name$="tel"] { 
	width: 213px; max-width: 213px;
}
table.formdetail_ td input[type="text"][name$="zip"] {
	width: 213px; max-width: 213px;
}

table.formdetail_ td select[name^="yy_"] { width: 110px; max-width: 110px;}
table.formdetail_ td select[name^="mm_"] { width: 80px; max-width: 80px;}
table.formdetail_ td select[name^="dd_"] { width: 80px; max-width: 80px;}

/* パスワード可視化 */
table.formdetail_ td div.input_wrap_ { width: auto; display: inline-block; position: relative;}
table.formdetail_ td div.input_wrap_ input { padding-right: 50px;}
table.formdetail_ td div.input_wrap_ div.password__toggle {
  width: 30px;
  height: 30px;
  background: url(../../img/usr/mypage/icon_pass_visible.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 15px);
  right: 10px;
	cursor: pointer;
}
table.formdetail_ td.is-show div.input_wrap_ div.password__toggle { background-image: url(../../img/usr/mypage/icon_pass_hide.png);}
table.formdetail_ td div.input_wrap_ + p.error_,
table.formdetail_ td div.input_wrap_ + p.small_ { margin-top: 10px;}

/* 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: #eee;}

/* ---------------------------------------
 見出し
---------------------------------------- */
.common_headline1_ { padding: 0; margin: 0 0 16px 0; font-size: 32px; font-weight: 400; line-height: 1.4;}
.common_headline2_ { padding: 0; margin: 0 0 20px 0; font-size: 24px; font-weight: 400; line-height: 1.4; letter-spacing: 0.5px; background: none;}
.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;}
.img_headline_ { margin-bottom: 10px;}

/* ---------------------------------------
 価格
---------------------------------------- */
.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;}

/* ---------------------------------------
 ボタン
---------------------------------------- */
a[class*="button_"] { transition: 0.2s;}
a[class*="button_"]:hover { opacity: 0.7;}

.button_ { border-radius: 56px; text-decoration: none; text-decoration: none; color: #FFF;}

.large_button_   { min-width: 200px; height: 56px; padding: 0 26px; 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; box-shadow: 0 1px 2px #999;}
.small_button_   { padding: 5px; border-radius: 5px; font-size: 14px; text-align: center; text-decoration: none; box-shadow: 0 1px 2px #999;}
.auto_small_button_ { padding: 5px; border-radius: 5px; text-align: center; text-decoration: none;}

.yellow_button_, a.yellow_button_,
.orange_button_, a.orange_button_ { 
	border: #CC0000 1px solid; text-decoration: none; color: #FFF; background: #CC0000;
}
.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,
.yellow_button_:disabled { 
	border: #D2D2D2 1px solid; text-decoration: none; color: #FFF; background: #D2D2D2;
}

.submit_ { 
	margin: 40px auto 0;
	text-align: center;
}
.submit_ > a,
.submit_ > input,
.submit_ > img,
.submit_ > button { 
	margin: 0 5px;
	text-decoration: none;
	vertical-align: top;
	transition: 0.2s;
	cursor: pointer;
	display: inline-block;
}
.submit_ a:hover,
.submit_ input:hover,
.submit_ img:hover,
.submit_ button:hover { 
	opacity: 0.7;
}

.submit_ a.back_button_ {
  height: 56px;
  padding: 0 46px;
	margin: 0 5px;
  border: #333 1px solid;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
	line-height: 54px;
	vertical-align: middle;
  color: #333;
  display: inline-block;
  background: #FFF;
}
.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%; max-width: 1440px; min-height: 32px; padding: 10px 20px; margin: 0 auto 20px; font-size: 12px; line-height: 1.0; display: flex; flex-wrap: wrap; align-items: center;}
.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 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_ > 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%; padding: 0; margin: 0 auto; font-size: 12px; line-height: 1.0; display: flex; flex-wrap: wrap; align-items: center;}
.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% - 4px);
	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: 25px 0 30px 0; font-size: 16px; font-weight: 400; text-align: center;}
.navipage_.top_ { min-width: 830px; font-size: 16px; font-weight: 400; text-align: center; display: flex; align-items: center; background: transparent;}
.navipage_.bottom_ { margin: 25px 0 30px; font-size: 16px; font-weight: 400; text-align: center;}
.navipage_ .navipage_sum_ { margin: 0 auto 0 0; font-size: 16px; font-weight: 400; text-align: left; display: block;}
.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_ { font-size: 14px; font-weight: 400; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px;}
.navipage_ .navipage_frame_ 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;
	transition: 0.2s;
}
.navipage_ .navipage_frame_ a:hover { opacity: 0.7;}
.navipage_ .navipage_frame_ .navipage_now_ { min-width: 48px; height: 48px; font-size: 14px; font-weight: 400; color: #333; display: flex; justify-content: center; align-items: center;}
.navipage_ .navipage_frame_ .navipage_reverse_ { min-width: 108px; margin-right: 36px; display: flex; align-items: center; column-gap: 12px;}
.navipage_ .navipage_frame_ .navipage_forward_ { min-width: 108px; margin-left: 36px; display: flex; align-items: center; column-gap: 12px;}
.navipage_ .navipage_frame_ .navipage_reverse_ a,
.navipage_ .navipage_frame_ .navipage_forward_ a { font-size: 0; position: relative;}
.navipage_ .navipage_frame_ .navipage_reverse_ a::before,
.navipage_ .navipage_frame_ .navipage_forward_ 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_ .navipage_first_ a::after,
.navipage_ .navipage_frame_ .navipage_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_ .navipage_reverse_ .navipage_first_ a::before { transform: rotate(-135deg); left: calc(50% + 2px);}
.navipage_ .navipage_frame_ .navipage_reverse_ .navipage_prev_ a::before  { transform: rotate(-135deg); left: calc(50% - 4px);}
.navipage_ .navipage_frame_ .navipage_forward_ .navipage_next_ a::before  { transform: rotate(45deg); left: calc(50% - 9px);}
.navipage_ .navipage_frame_ .navipage_forward_ .navipage_last_ a::before  { transform: rotate(45deg); left: calc(50% - 14px);}
.navipage_ .navipage_frame_ .navipage_forward_ .navipage_last_ a::after   { left: calc(50% + 7px);}

div.container_ div.contents_ div.mainframe_ .navipage_ span.rowcount_ { font-weight: 700;}

/* ---------------------------------------
 並び替え
---------------------------------------- */
.navisort_ { width: auto; padding: 0; margin: 0 0 0 20px; display: flex; align-items: center; flex: 1; clear: both; overflow: hidden;}
.navisort_ dt { width: 100px; height: auto; padding: 0 0 0 30px; margin: 0; font-size: 14px; font-weight: bold; background: url(../../img/usr/common/icon_sort.png) left center no-repeat;}
.navisort_ dd { margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px;}
.navisort_ dd a,
.navisort_ dd span {
	min-width: 100px;
	height: 30px;
	padding: 0 16px;
	margin: 0;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.navisort_ dd .navisort_now_ { color: #FFF; background: #666;}
.navisort_ dd a { border: #333 1px solid; color: #333; background: #FFF;}
.navisort_ dd a:hover { text-decoration: none; opacity: .8; background: none;}

.relative_keyword_ { display: flex; margin: 0px 0px 30px 0px ;}
.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; padding: 5px 10px 2px; }
.relative_keyword_li_ a:hover { text-decoration: none; opacity: .8; background: none; }

/* ---------------------------------------
 表示形式切替
---------------------------------------- */
.navistyle_ { width: 335px; padding: 0 39px 0 0; margin: 6px 0; border-right: #bfbfbf 1px dotted; float: left; display: inline; overflow: hidden;}
.navistyle_ dt { width: 60px; height: 30px; text-indent: -9999px; display: inline; background: url(../../img/usr/searchbox/txt_navistyle.png) center center no-repeat; float: left;}
.navistyle_ dd { width: 260px; height: 30px; float: right; display: inline;}
.navistyle_ a,
.navistyle_ span.navistyle_now_ { width: 130px; height: 30px; display: inline-block; float: left; text-indent: -9999px;}
.navistyle_ dd .style_thumb_ { background: url(../../img/usr/searchbox/thumbnail_off.png) center center no-repeat;}
.navistyle_ dd .style_thumb_:hover { background: url(../../img/usr/searchbox/thumbnail_hover.png) center center no-repeat;}
.navistyle_ dd .style_thumb_.navistyle_now_ { background: url(../../img/usr/searchbox/thumbnail_on.png) center center no-repeat;}
.navistyle_ dd .style_detail_ { background: url(../../img/usr/searchbox/detail_off.png) center center no-repeat;}
.navistyle_ dd .style_detail_:hover { background: url(../../img/usr/searchbox/detail_hover.png) center center no-repeat;}
.navistyle_ dd .style_detail_.navistyle_now_ { background: url(../../img/usr/searchbox/detail_on.png) center center no-repeat;}

/* ---------------------------------------
 表示件数
---------------------------------------- */
.navinumber_ { width: 255px; margin: 6px 0 6px 30px ; display: inline; overflow: hidden; float: left;}
.navinumber_ dt { 
	width: 60px;
	height: 30px;
	font-size: 14px;
	font-weight: bold;
	text-indent: -9999px;
	line-height: 32px;
	background: url(../../img/usr/searchbox/txt_number.png) center center no-repeat;
	display: inline;
}
.navinumber_ dd { width: 180px; height: 32px; float: right; display: inline;}
.navinumber_ dd select { width: 180px; height: 32px; border: #ffb615 1px solid !important; border-radius: 3px; font-size: 14px;}

/* ---------------------------------------
 絞込
---------------------------------------- */
.navrefine_ { padding-bottom: 15px; margin: 0 0 6px; border-bottom: #a4a4a4 1px dotted; overflow: hidden;}
.navrefine_ dt { width: 60px; height: 30px; margin-right: 15px; text-indent: -9999px; display: inline; background: url(../../img/usr/searchbox/txt_refine.png) center center no-repeat; float: left;}
.navrefine_ dd { height: 30px; display: inline; float: left;}
.navrefine_ dd ul li input { border: #ffb615 1px solid !important;}
.navrefine_ dd ul li input.refinekey_ { background: #fff url(../../img/usr/searchbox/go.png) no-repeat 4px 4px;}

/* ブランド絞込 */
.brand_name_     { width: 100%; overflow: hidden;}
.brand_name_now_ { margin: 2px 5px; color: #CC3300; text-decoration: none; white-space: nowrap;}
.brand_name_ a   { margin: 2px 5px; white-space: nowrap;}

/* メーカー絞込 */
.maker_name_     { width: 100%; overflow: hidden;}
.maker_name_now_ { margin: 2px; color: #CC3300; text-decoration: none; white-space: nowrap;}
.maker_name_ a   { margin: 2px; white-space: nowrap;}

/* ---------------------------------------
 スクロールバー
---------------------------------------- */
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;
}

/* ---------------------------------------
 ドラッグストア
---------------------------------------- */
.mainframe_ .drugstore_box { padding: 0 0 34px 0; margin: 0 0 49px 0; border-bottom: #DDD 5px solid; overflow: hidden;}
.mainframe_ .drugstore_box .bannerlist_ li { margin: 0 25px 15px 0; float: left;}
.mainframe_ .drugstore_box .bannerlist_ li:nth-child(3n) { margin-right: 0;}

/* ---------------------------------------
 モーダルダイアログ
---------------------------------------- */
.modal-overlay { width: 100%; height: 100%; background-color: #000; position: fixed; top: 0; left: 0; opacity: 0.5; z-index: 10000;}
.modal-overlay-alert { width: 100%; height: 100%; background-color: #000; position: fixed; top: 0; left: 0; opacity: 0.5; z-index: 10002;}
.modal-alert   { width: 400px; z-index: 10003;}
.modal-dialog  { width: 600px; z-index: 10001;}
.modal-header  { padding: 20px; border-bottom: none; border-radius: 12px 12px 0 0; font-size: 18px; text-align: left; line-height: 1; background-color: #FFF; clear: both;}
.modal-content { border-radius: 12px; background: #FFF;}
.modal-body { padding: 20px;}
.modal-body p { margin-bottom: 10px; font-size: 16px;}
.modal-body li { border-bottom: #444 1px dotted;}
.modal-body li a { padding: 12px; color: #4da7ba; display: flex; max-width: 560px; font-size: 16px;}
.modal-body li a i { margin: 0 10px 0 auto; color: #444; font-size: 16px;}
.modal-body li a:hover { text-decoration: none;}
.modal-body li a:hover i { color: #4da7ba; text-decoration: none;}
.modal-footer { padding: 0 10px 15px;}
.modal-footer .btn {
  padding: 4px 10px;
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.5;
  vertical-align: middle;
  color: #fff !important;
  display: inline-block;
  cursor: pointer;
}
.modal-footer .btn:hover { opacity: 0.8; text-decoration: none;}
.modal-footer .btn:focus { text-decoration: none;}
.modal-footer .btn-primary   { border: #333 1px solid; color: #FFF; background-color: #333;}
.modal-footer .btn-secondary { border: #333 1px solid; color: #333; background-color: #FFF;}

.modal-alert .modal-footer { text-align: center;}
.modal-alert .modal-footer input { width: 40%;}
.modal-dialog .modal-footer { text-align: center;}
.modal-dialog .modal-footer .btn { min-width: 150px; margin-right: 5px; text-decoration: none;}
.modal-dialog .modal-footer .btn.btn-primary {
  width: 320px;
	height: 56px;
  padding: 0;
  margin: 0;
  border-radius: 56px;
  font-size: 16px;
	font-weight: 700;
	text-decoration: none;
  display: flex;
	justify-content: center;
	align-items: center;
}
.modal-dialog .modal-footer .btn[name="btncancel"] {
  width: 320px;
	height: 56px;
  padding: 0;
  margin: 0;
  border-radius: 56px;
  font-size: 16px;
	font-weight: 700;
	text-decoration: none;
  color: #333 !important;
  display: flex;
	justify-content: center;
	align-items: center;
}
.modal-close { display: block; width: 18px; cursor: pointer; float: right; font-size: 16px; font-weight: 700; line-height: 1; text-align: center; color: #333;}

/* お気に入り解除 */
.modal-dialog.modal-bookmark { position: fixed !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important;}
.modal-dialog.modal-bookmark .modal-header { padding: 100px 56px 0; text-align: center; position: relative;}
.modal-dialog.modal-bookmark .modal-header .modal-title { font-size: 24px; font-weight: 500; text-align: center;}
.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: 40px;
  left: 56px;
}
.modal-dialog.modal-bookmark .modal-header .modal-close::before { content: '前の画面に戻る'; font-size: 16px; font-weight: bold; color: #333;}
.modal-dialog.modal-bookmark .modal-header .modal-close::after {
  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-footer { padding: 0 56px 40px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px;}
.modal-dialog.modal-bookmark .modal-body p { margin: 0;}
.modal-dialog.modal-bookmark .modal-footer .btn[name="btncancel"] { width: 155px; border-color: #CC0000; color: #FFF !important; background: #CC0000;}
.modal-dialog.modal-bookmark .modal-footer .btn.btn-primary { width: 155px; color: #333 !important; background: #FFF;}
.modal-dialog.modal-bookmark .modal-footer .bookmarkmodal-option { width: 320px;}
.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;}
.modal-dialog.modal-bookmark .modal-footer .bookmarkmodal-option a:hover { text-decoration: none;}

/* ---------------------------------------
 balloontip
---------------------------------------- */
.balloons { 
	background-color: rgb(209, 0, 0) !important;
	opacity: 1 !important;
}
.balloons > div { 
	border-color: rgb(209, 0, 0) transparent transparent !important;
}
.balloontip {
	min-width: 20px;
	padding: 10px;
	border: 2px solid #333;
	border-radius: 6px;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	color: #333;
	background: #FFF;
	opacity: 1;
	z-index: 32767;
}
.balloontip > div { top: 36px !important;}

/* ---------------------------------------
 switcher
---------------------------------------- */
div#switcher { min-width: 1200px; padding: 15px 0; background: #eee;}
div#switcher_inner { width: 1200px; min-width: 1200px; margin: 0 auto; overflow: hidden;}
div#switcher_inner span { float: left;}
div#switcher_inner span#switcher_closebtn { margin: 7px 20px 0 18px;}
div#switcher_inner span#switcher_pc { width: 560px; margin-right: 6px;}
div#switcher_inner span#switcher_sp { width: 560px;}

/* ---------------------------------------
 Google reCAPTCHA
---------------------------------------- */
.g-recaptcha_ {
  width: 300px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  text-align: center;
}

/* ---------------------------------------
 検索サジェスト
---------------------------------------- */
.bl_npSuggestContainer { left: -1px !important; display: flex;}
.bl_npSuggestContainerUnder * .bl_npSuggestHistoryList_item,
div.bl_npSuggestKeywordList_item { height: 46px; padding-left: 40px; background: url(../../img/usr/common/header/closebtn.png) left 15px center no-repeat;}
div.bl_npSuggestContainerSp { width: 670px; left: 0 !important;}
.bl_npSuggestKeywordList_item { width: 80%; float: left; clear: both;}
.bl_npSuggestContainerUnder span.deletebtn {
  width: 20%;
  height: 47px;
  border-bottom: 1px solid #D4D9DC;
  background: url(../../img/usr/sp/panelclosebtn.png) right 10px center no-repeat;
  background-size: 10px 10px;
  cursor: pointer;
  float: left;
}
.bl_npSuggestContainer span.deletebtn {
  width: 20%;
  height: 46px;
  border-bottom: 1px solid #D4D9DC;
  background: url(../../img/usr/sp/panelclosebtn.png) right 10px center no-repeat;
  background-size: 10px 10px;
  cursor: pointer;
  float: left;
}
.bl_npSuggestContainerUnder { display: flex;}
.bl_npSuggestContainerUnder .el_npSuggestCrossBtn,
.bl_npSuggestContainer span.el_npSuggestCrossBtn { width: 10px; height: 10px; background: url(../../img/usr/sp/panelclosebtn.png) center center no-repeat; background-size: 10px 10px;}
.bl_npSuggestContainer span.el_npSuggestCrossBtn::before,
.bl_npSuggestContainer span.el_npSuggestCrossBtn::after { display: none;}
div.bl_npSuggestContainer .bl_npSuggestHistoryList_header { display: none;}
div.bl_npSuggestContainer .bl_npSuggestHistoryList_item { padding-left: 40px; background: url(../../img/usr/common/header/closebtn.png) left 15px center no-repeat;}
.bl_npSuggestContainerUnder .bl_npSuggestRankingList { display: none;}
.bl_npSuggestRankingList { border: none !important;}

/* ---------------------------------------
 UIダイアログ
---------------------------------------- */
.ui-widget-overlay { background: rgba(0,0,0) !important; opacity: 0.6 !important;}
.ui-dialog { padding: 40px 56px !important; border-radius: 12px !important; background: #FFF !important;}
.ui-dialog:has(#carderr_dialog_msg) .ui-widget-header { border: none !important; background: none !important; display: none !important;}
.ui-dialog .ui-dialog-content { padding: 0 !important;}
.ui-dialog .ui-dialog-content #carderr_dialog_msg { max-width: 480px; padding: 0 0 0 1em; margin: 0 auto; text-align: left; text-indent: -1em; color: #EC0000;}
.ui-dialog-buttonpane { padding: 0 !important; margin: 0 !important; border: none !important; background: #FFF !important;}
.ui-dialog-buttonset { padding: 40px 0 0 0 !important; text-align: center; float: none !important;}
.ui-dialog-buttonset .ui-button { 
  width: 250px;
	height: 56px;
  padding: 0;
	margin: 0 auto !important;
	border: #333 1px solid !important;
  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 !important;
}
