@charset "utf-8";
/* CSS Document */
/* 変数登録　各案件ごとにカスタマイズ可能です */

:root{
	--welcart-color-error:tomato;		/* エラー色 */
	--welcart-color-price:tomato;		/* 価格などの強調色 */
	
	--welcart-bg-th:#eee;		/* 見出しセル背景色 */
	--welcart-bg-light:#f9f9f9;		/* 副次的なコンテンツやコントロールボタン郡の背景色 */
	
	--welcart-color-nextbutton:orange;							/* 「次へ」「確定」などポジティブなボタンの色 */
	--welcart-color-nextbutton-border:darkorange;				/* 「次へ」「確定」などポジティブなボタンのボーダー色 */
	--welcart-color-nextbutton-hover:olive;						/* 「次へ」「確定」などポジティブなボタンホバー時の色 */
	--welcart-color-nextbutton-hover-border:darkolivegreen;		/* 「次へ」「確定」などポジティブなボタンホバー時のボーダー色 */
	
	--welcart-color-border:#ddd;		/* テーブルボーダー色 */
}

span.price{
	color:var(--welcart-color-price);
}
/*******************************************************/


/*-------------------------------------------*/
/* カート以外の部分 */
/*-------------------------------------------*/
/* カート用ボタン */
.header-cart-button .vk_button{
	position:relative;
}
@media (max-width: 1200px) { /*1200以下の場合*/ 
	.header-cart-button .vk_button .vk_button_link_before {
		margin-right: 0;
	}
	.header-cart-button .vk_button .vk_button_link {
		min-width: unset;
	}
	.header-cart-button .vk_button .vk_button_link_txt {
		font-size: 0;
	}
}
/* カート内　アイテム数バッジ */
.vk_button_badge.cart_num {
    background: #dd3333;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 99px;
    min-width: 24px;
    display: inline-block;
    padding: 0 0.5em;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(30%,-30%);
}

/*-------------------------------------------*/
/* 共通コンポーネント */
/*-------------------------------------------*/
input,select {
    font-family: unset;
}
select {
    cursor: pointer;
    /* box-sizing:content-box; */
}
select:hover:not(:focus-visible ){
    outline:solid 3px rgb(0 0 0 / 10%);
}
label {
    cursor: pointer;
}

#memberpages a {
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: .15s;
}

#memberpages a:hover {
    text-decoration-color: transparent;
}


/* カートページ、下部コントロールボタン（共通） */
#inside-cart,
#customer-info,
#delivery-info,
#info-confirm,
#memberedit{
	.send {
		background: var(--welcart-bg-light);
		margin-top: 3rem;
		margin-left: -15px;
		margin-right: -15px;
		border: none;
		padding: 2rem 15px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: .5rem;
	}
	.send input {
		min-width: 170px;
		min-height: 50px;
		transition: .15s;
	}
}
/* 下部コントロールボタン　＞　進む系ボタン（右側）設定 */
input.to_customerinfo_button,
input.to_deliveryinfo_button,
input.to_reganddeliveryinfo_button,
input.to_confirm_button,
input#purchase_button{
    background: var(--welcart-color-nextbutton);
	border-color:var(--welcart-color-nextbutton-border);
}
input.to_customerinfo_button:not(:disabled):hover,
input.to_deliveryinfo_button:not(:disabled):hover,
input.to_reganddeliveryinfo_button:not(:disabled):hover,
input.to_confirm_button:not(:disabled):hover,
input#purchase_button:not(:disabled):hover{
    background: var(--welcart-color-nextbutton-hover);
	border-color:var(--welcart-color-nextbutton-hover-border);
}

/* 下部コントロールボタン　＞　戻る系ボタン（左側）設定 */
input#previouscart,
input.back_cart_button,
input.back_to_customer_button,
input#back_button,
.send input[name="top"],
.send input[name="back"] {
	font-size: 1rem;
	border: 1px solid #9D9D9D;
	background-color: #9D9D9D;
	color: #fff;
	padding: 0.5em 2em;
	border-radius: var(--vk-size-radius);
	cursor: pointer;
}
input#previouscart:not(:disabled):hover,
input.back_cart_button:not(:disabled):hover,
input.back_to_customer_button:not(:disabled):hover,
input#back_button:not(:disabled):hover,
.send input[name="top"]:not(:disabled):hover,
.send input[name="back"]:not(:disabled):hover{
	border: 1px solid #8A8A8A;
	background-color: #8A8A8A;
}

/*-------------------------------------------*/
/* 購入ページ　＞　上部ステップ図
/*-------------------------------------------*/
div.usccart_navi ol.ucart {
    height: unset;
    margin: auto auto 2rem;
    padding: unset;
    display: flex;
}
div.usccart_navi li.ucart {
    background: none;
    color: unset;
    counter-increment: cart-list;
    position: relative;
    display: block;
}
div.usccart_navi li.ucart::before {
    content: counter(cart-list);
    display: block;
    background: #eee;
    color: #555;
    width: fit-content;
    margin: 0 auto 1em;
    line-height: 3;
    width: 3em;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    z-index:10;
    position:relative;
}
div.usccart_navi li.usccart.usccart_cart::before,
div.usccart_navi li.usccart_customer::before,
div.usccart_navi li.usccart_delivery::before,
div.usccart_navi li.usccart_confirm::before{
    background: var(--vk-color-primary);
    color: #fff;
}
div.usccart_navi li.ucart::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 1.5em;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 10px;
    margin: 0;
    border: none;
    background: #eee;
    z-index: 0;
}
div.usccart_navi li.ucart:first-child::after {
    left: 50%;
    width: 50%;
}
div.usccart_navi li.ucart:last-child::after {
    width: 50%;
}

/*-------------------------------------------*/
/* １．カートの中 */
/*-------------------------------------------*/

/* カートの中身　＞　テーブル */
#cart table#cart_table{
    border: none;
	margin-bottom: 2rem;
}
table#cart_table tr {
    border-bottom: solid 1px var(--welcart-color-border);
    padding-bottom: .5em;
    margin-bottom: .5em;
}
table#cart_table th,
table#cart_table td {
    padding: 1em .5em;
    border-width: 0;
	border-color: var(--welcart-color-border);
    font-size: 1rem;
}
table#cart_table th {
    background: unset;
    color: unset;
	font-weight:bold;
}
table#cart_table tfoot th{
	border:none;
}

#inside-cart input.quantity {
	font-size: 1.2em;
}
#inside-cart input[type="number"]::-webkit-outer-spin-button,
#inside-cart input[type="number"]::-webkit-inner-spin-button {
	padding: 3px;
	margin-left: 5px;
	display: inline-block;
}
#itempage input.skuquantity {
	font-size: 1.2em;
}
#itempage input[type="number"]::-webkit-outer-spin-button,
#itempage input[type="number"]::-webkit-inner-spin-button {
	padding: 3px;
	margin-left: 5px;
	display: inline-block;
}
#inside-cart .skuform .skuquantity {
	width: 80px;
	padding: 5px 10px 5px 0;
}
#inside-cart  input.quantity {
	width: 80px;
	text-align: right;
	padding: 5px 10px 5px 0;
}

/* カートの中身　＞　テーブル　＞　各セル */
#cart .thumbnail {
    width: 100px;
}
#cart .thumbnail img {
    width: 100px;
    border: solid 1px #eee;
}
#cart input{
	margin:0;
	min-height: 40px;
}
#cart input.delButton {
    background: #eee;
    border: none;
    color: #777;
    padding: .5em .8em;
}
#cart input.delButton:hover {
    background: #ddd;
}

/* カートの中身　＞　テーブルフッター */
table#cart_table tfoot tr:last-child{
	border:none;
}
tr.usedpoint td.aright.totalend {
    color:var(--welcart-color-price) !important; /* ポイント利用時の文字色 */
}
#cart_table tfoot th.subtotal,
#cart_table .total_full_price .totalend{
    font-size: 1.5rem;
    color:var(--welcart-color-price);
	text-align: right !important;
}

/* カートの中身　その他 */
#inside-cart .upbutton {
	display: none;
}
#inside-cart .no_cart {
    color: unset;
}
.currency_code {
    display: none;
}

/*-------------------------------------------*/
/* ２．お客様情報ページ */
/* 会員情報・新規会員登録 */
/*-------------------------------------------*/

/* 以下のテーブルは、違う箇所の違うクラス名のテーブルだが、機能は同じなので見た目も統一すること */

#customer-info table.customer_form,
#memberinfo table.customer_form,
#newmember table.customer_form,
#memberedit table.customer_form,
#delivery-info table.customer_form,
#info-confirm #confirm_table{
	border:none;
	font-size:1rem;
	margin-bottom:2rem !important;
	
	th,td{
		padding: 1rem;
		font-size: 1rem;
		border-color: var(--welcart-color-border);
		color: unset;
		background: unset;
	}
	th {
		text-align: left;
		min-width: 18rem;
		border-width:1px 0;
		background:unset;
		
	}
	th em{
		font-size:0;
	}
	th em::after{
		content:'必須';
		font-size: 14px;
		font-weight: bold;
		font-style:normal;
		line-height: 1;
		display: inline-block;
		color: #fff;
		background: var(--welcart-color-error);
		padding: 0.2em .5em;
		float: right;
	}
	td{
		border-width:1px 0;
		padding: 1rem;
		color: #777;
	}
	input#zipcode {
		width: 150px !important;
		margin-right: unset;
	}
	 input:not([type="radio"]),
	 select{
		margin:0 1rem 0 0 !important;
		width: 250px;
	}
}
.customer_form input[id^='address']{
	width:450px !important;
}

.customer_form input[type='password']{
	width:250px !important;
}

span.member_name,
span.member_furigana {
    width:3rem;
    display:inline-block;
}
#customer-info label.error,
#delivery-info label.error,
#memberinfo label.error,
#newmember label.error,
#memberedit label.error{
    color: var(--welcart-color-error);
    font-size: 14px;
    display: inline-block;
}
input#search_zipcode {
    display: none;
}

/* 会員規約は、次へボタンよりも先に表示 */
#customer-info form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
#customer-info form .send {
    order: 3;
	margin-top:1rem;
}
/*-------------------------------------------*/
/* ３．配送・支払い方法 */
/*-------------------------------------------*/

#delivery-info label {
    cursor: pointer;
}
#delivery-info .customer_form dt {
    font-size: 1rem;
    padding: 0;
}
#delivery-info .customer_form label[for^='payment'] {
    width: 100%;
    display: block;
}
#delivery-info .customer_form dt:not(:first-child) {
    margin-top: 1em;
    border-top: solid 1px var(--welcart-color-border);
    padding-top: 1rem;
}
#delivery-info .customer_form dd,#delivery-info .customer_form label+b {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
    color: #777;
    padding: 0;
    font-weight: normal;
}

#delivery-info .customer_form input {
    margin-right: 0.5em;
}
#delivery-info .customer_form label b {
    display: contents;
    color:red;
}
dt:has(input[disabled]), dt:has(input[disabled])+dd {
/* 非有効化のradio */
    opacity: 0.7;
    pointer-events: none;
}

/*-------------------------------------------*/
/* ４．内容確認ページ */
/*-------------------------------------------*/

/* かごの中身テーブルは、１～３で制御しているので記述なし　 */

/* 所有ポイントテーブル */
#cart #point_table {
    border: solid 1.5rem #f9f9f9;
    margin-bottom: 5rem;
    background: #f9f9f9;
}
table#point_table td {
    border: solid 1px #ddd;
    border-width: 0 0 1px;
    padding: 1rem .5rem;
}
table#point_table tr:not(:last-child) td:first-child {
    text-align: left;
    font-weight: bold;
}

/* 注文確定前の最終テーブル */
#confirm_table .ttl{
	background:none;
}
#confirm_table td[colspan="2"] {
    background: var(--welcart-bg-th) !important;
}
#confirm_table h3 {
    font-size: unset;
    color: #333;
    border: none;
}
#confirm_table h3::after {
    display: none;
}
table#confirm_table th,
table#confirm_table td {
    font-size: 14px !important;
    padding: 0.5em 1em !important;
}

/*-------------------------------------------*/
/* マイページ */
/*-------------------------------------------*/
/* 会員ページ 汎用パーツ*/
#memberinfo h3,
#customer-info h5 {
	font-size:1.5rem;
    color: #333;
    background: none;
    border: none;
    padding: 0;
    margin-top: 3rem;
    margin-bottom: 1.5em;
	text-indent: 0;
}
#memberinfo h3::after{
	display:none;
}

/* マイページ　＞　会員情報（上部テーブル） */

/* テーブル総上書き */
#memberdetail {
    border: none;
    margin-bottom: 2rem;
}
#memberdetail td,
#memberdetail th {
    padding: 1rem;
	font-size: 1rem;
	border-color: var(--welcart-color-border) !important;
	border-width:0 0 1px;
}
#memberinfo th {
    color: unset;
    background: unset;
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
	
}
#memberdetail td {
    color: #777;
}
#memberinfo table td.num {
    font-size: 1rem;
}
#memberinfo td.blank_cell {
    display: none;
}

/* 会員情報テーブル下リストナビ */
#memberpages #memberinfo ul {
    list-style: none;
    text-align: right;
    padding: 0;
    margin: 1rem 0 0;
}
#memberpages #memberinfo li.logout_member {
    display: none;
}

#memberpages #memberinfo li {
    font-size: 1rem;
}


/* マイページ　＞　購入履歴欄 */
span.no_history {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 7;
}
/* マイページ　＞　購入履歴欄　＞　絞り込み */
#usces_history {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    background: #f9f9f9;
    padding: 1rem;
}
.usces_filter_history .usce_period {
    display: flex;
    align-items: baseline;
    flex-direction: row;
}
.usces_filter_history .usce_period span {
    margin: 0 1rem 0 0;
    white-space: nowrap;
}
.usces_filter_history select {
    margin: 0;
}

/* マイページ　＞　購入履歴　＞　表（２種類） */

#memberinfo .history-area{
    height:auto !important;
	min-height:3rem;
}
#memberinfo #history_head tr>*,
#memberinfo .retail tr>* {
	padding: 1em 0.5em;
}

/* マイページ　＞　購入履歴　＞　会計伝票テーブル（１） */
#memberinfo .history-area table#history_head {
    margin-bottom: 0.5rem;
}
#memberinfo th.historyrow {
    background: var(--welcart-bg-th);
    color: unset;
    font-size: 14px !important;
	text-align:left;
}
#memberinfo .order_head_value td {
    font-size: 14px !important;
	text-align:left;
}
#memberinfo .history-area table.retail {
    margin-bottom: 2rem;
}
/* マイページ　＞　購入履歴　＞　購入商品テーブル（２） */
#memberinfo .retail th {
    font-size: 14px !important;
    background: var(--welcart-bg-th);
}
#memberinfo .retail td {
    font-size: 14px !important;
}
#memberinfo .retail td.thumbnail {
    padding: 0;
}


/* マイページ　＞　下部　会員情報＆ボタン群 */
.mypage_footer_subbav a[name="deletemember"] {
    display: none;
}

.mypage_footer_subbav {
    display: flex;
    flex-direction: row;
    margin-top: 2rem;
    border-top: solid 2px #eee;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    gap: 0.5rem 1rem;
}

/*-------------------------------------------*/
/* マイページ　＞　会員情報編集ページ */
/*-------------------------------------------*/
.member_edit_verifying_container h1.member_page_title,
.member_verifying_error_container h1.member_page_title{
    display: none;
}
#memberpages form {
    margin: auto;
    max-width: var(--vk-width-container);
}
#memberedit input[name="deletemember"] {
    background: transparent;
    color: unset;
    border: none;
    text-decoration: underline;
    text-underline-offset: 25%;
}
#memberedit input[name="deletemember"]:hover {
    background: #eee;
    text-decoration-color: transparent;
}
/*-------------------------------------------*/
/* ログインページ */
/*-------------------------------------------*/
/* ログイン、パスワード再発行 共通 */
#memberpages div.loginbox {
	width: 500px;
    padding: 3rem;
	margin-top: 0;
	border:none;
	/*     border: solid 1px var(--welcart-color-border); */
    background: var(--welcart-bg-light);
}
#memberpages form {
    padding: unset;
}
#memberpages .loginbox p {
    font-size: unset;
    padding-top: unset;
    line-height: unset;
    color: unset;
}
#memberpages .error_message {
    color: var(--welcart-color-error);
    margin-bottom: 1rem;
}
#memberpages input.loginmail,
#memberpages input.loginpass{
    width: 100%;
    margin-top:.5em;
    margin-bottom: 1em;
}
#memberpages input[type="submit"]{
	min-width: 170px;
	min-height: 50px;
	transition: .15s;
/*     margin-bottom: 1rem; */
}
#memberpages .loginbox p#nav,
#memberpages .loginbox p.nav {
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
}

/* ログインボタン */
input[name="member_login"] {
	margin-top: 2rem;
    background: var(--welcart-color-nextbutton);
	border-color:var(--welcart-color-nextbutton-border);
}
input[name="member_login"]:not(:disabled):hover{
    background: var(--welcart-color-nextbutton-hover);
	border-color:var(--welcart-color-nextbutton-hover-border);
}
input[name="member_login"],
input[name="lostpassword"]{
	width:100%;
}


/* ログインページ（新規会員案内と横ならび） */
.newmember_container {
    display: flex;
    gap: 2rem 3rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.newmember_container .loginbox {
    margin: 0 !important;
}
.newmemberbox {
    border: solid 1px var(--welcart-color-border);
    width: auto;
    max-width: 450px;
    padding: 3rem;
}
p.newmemberbox_title {
    font-size: 1.2rem;
    font-weight: bold;
}
.newmemberbox .footer_explanation {
    padding: 0;
    font-size: 0.875rem;
}
.newmemberbox input[type="submit"] {
    width: 100%;
}

/* 会員登録規約 */
#newmember .agree_member_area,
#customer-info .agree_member_area {
    margin: 0rem auto;
    max-width: 800px;
}
#newmember .agree_member_area {
    margin: 3rem auto;
}
#customer-info .agree_member_area {
    margin: 0rem auto;
}
#newmember .at_exp_text, #customer-info .at_exp_text {
    width: unset;
}
#newmember .at_cont_text, #customer-info .at_cont_text {
    width: 100%;
    margin-top: 1.5rem;
}
#newmember .at_check_area, #customer-info .at_check_area {
    font-size: 1rem;
}
input#agree_member_check {
    scale: 1.5;
    margin-right: 0.5rem;
}

/*-------------------------------------------*/
/* 　商品詳細ページ　 */
/*-------------------------------------------*/
/* レイアウト */
section.item_detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    grid-gap: 1rem 3rem;
}

.item_detail .entry-header {
    grid-area: 1 / 2 / 2 / 3;
	margin-bottom: 0;
}

.item_detail .item_img_area {
    grid-area: 1 / 1 / 3 / 2;
	align-self: start;
    position: sticky;
	top: 130px;　/* ヘッダーの高さなど考慮し変更 */
} 

.item_detail .item_text_area {
    grid-area: 2 / 2 / 3 / 3;
}


/* 右カラム：ギャラリー */
#itempage .itemimg {
    margin-bottom: 1rem;
}
#itempage .itemimg a{
	outline:solid 1px #eee;
	font-size:0;
}
#itempage .itemimg img {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
#itempage .itemsubimg {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1rem;
}
#itempage .itemsubimg li {
	list-style: none;
	margin: 0;
}
#itempage .itemsubimg img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0;
    padding: 0;
}
#itempage .itemsubimg li:hover {
	cursor: pointer;
}

#itempage .itemsubimg_border {
    outline: 3px solid var(--vk-color-primary);
    opacity: 0.7;
}

/* ギャラリー　＞　マウスホバーアニメ */
#itempage .itemimg a {
    position: relative;
    overflow: hidden;
    display: block;
}
#itempage .itemimg a img {
    transition:.3s;
}
#itempage .itemimg a:hover img {
    transform: scale(1.05);
	filter:brightness(0.8);
}

/* 右側カラム　＞　タイトル */
h1.entry-title {
    margin: 0;
}

/* オプションテーブル */
#itempage table.item_option {
    border: none;
}
#itempage table.item_option th,
#itempage table.item_option td {
    padding: 1em .5em;
    border-width: 0 0 1px;
    border-color: var(--welcart-color-border);
    font-size: 1rem;
}
#itempage table.item_option tr:last-child th,
#itempage table.item_option tr:last-child td{
	border-bottom-width:0;
}

#itempage table.item_option th {
    background: none;
	font-weight:normal;
}
#itempage table.item_option caption {
    font-size: 0.875rem;
}

/* マルチSKUテーブル */
#itempage table.skumulti {
    border: none;
}
#itempage table.skumulti th,
#itempage table.skumulti td {
    padding: 1em .5em;
    border-width: 0 0 1px;
    border-color: var(--welcart-color-border);
    font-size: 1rem;
	text-align:unset;
}
#itempage table.skumulti th {
    background: none;
}
#itempage table.skumulti caption {
    font-size: 0.875rem;
}
#itempage table.skumulti span.item_sku_name {
    font-size: 1.2rem;
    font-weight: bold;
}
/* #itempage table.skumulti span.item_sku_code { */
span.item_sku_code {
    font-size: 0.875rem;
    opacity: 0.6;
}
#itempage table.skumulti td.skudisp .price_wrap {
    margin-top: .5rem;
}
#itempage table.skumulti td.skudisp {
    font-weight: normal;
}
#itempage table.skumulti td.quant {
    text-align: left;
    width: auto;
	vertical-align: bottom;
}
#itempage table.skumulti td.button {
    width: 0;
	vertical-align: bottom;
}
#itempage table.skumulti td.button input[type="submit"] {
    padding-left: 1rem;
    padding-right: 1rem;
    min-width: unset;
}

/* マルチSKUテーブルの中のオプションテーブル */
#itempage table.skumulti td.skudisp.has_optiontable {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    border: none;
}
#itempage table.skumulti table.item_option,
#itempage .multiple_sku table.item_option{
    background: var(--welcart-bg-light);
}
#itempage table.skumulti table.item_option th,
#itempage table.skumulti table.item_option td,
#itempage table.skumulti table.item_option td select,
#itempage .multiple_sku table.item_option th,
#itempage .multiple_sku table.item_option td,
#itempage .multiple_sku table.item_option select,{
	font-size:0.875rem;
}

/* 業務パック価格案内 */
dl.itemGpExp {
    background: var(--welcart-bg-light);
    padding: 1rem 1.5rem;
}
dl.itemGpExp dt {
    padding: 0;
    color: unset;
}

/* 価格・個数・購入ボタン */
#itempage .skuform .single_sku {
    margin: 3rem 0rem 2rem;
    display: flex;
    align-items: flex-end;;
    justify-content: center;
}
#itempage .skuform .price_wrap {
	margin-left:0;
	margin-right:auto;
}
#itempage  .price {
    color: var(--welcart-color-price);
    font-size: 1.5rem;
    font-weight: bold;
}
span.strike_price {
    text-decoration: line-through;
    font-size: 0.875rem;
    opacity: 0.4;
}
em.tax,
span.tax,
i.unit{
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
    font-style: normal;
    color: #555 !important;
    letter-spacing: 0em;
    white-space: nowrap;
	margin:0;
	padding:0;
}
#itempage .skuform .skuquantity {
    text-align: right;
    margin: 0 5px;
    height: 50px;
}
.skuform input[type="submit"] {
	min-width: 170px;
	min-height: 50px;
	transition: .15s;
}
.skuform input[type="submit"]{
    background: var(--welcart-color-nextbutton);
	border-color:var(--welcart-color-nextbutton-border);
}
.skuform input[type="submit"]:not(:disabled):hover{
    background: var(--welcart-color-nextbutton-hover);
	border-color:var(--welcart-color-nextbutton-hover-border);
}
.skuform input[type="submit"][disabled] {
	filter: opacity(0.5) grayscale(0.4);
    cursor: not-allowed;
}

#itempage table.item_option caption {
	margin-bottom: 5px !important;
	display: none !important
}

#itempage table th,
#itempage table td{
	border:solid 1px var(--welcart-color-border);
}

#itempage .item_hr {
	margin: 20px 0;
}

#itempage .item_content {
	padding-top: 10px;
}

#itempage .item_returns {
	margin-top: 30px;
}

/* カスタムフィールド */
h2.cart_customfield_title {
    border: none;
	outline:none;
    font-size: 1.5rem;
    padding: 0;
    color: unset;
    background: unset;
}
h2.cart_customfield_title::before,
h2.cart_customfield_title::after {
    display: none;
}
#itempage .cart_customfield_table table {
    border: none;
}
#itempage .cart_customfield_table table th,
#itempage .cart_customfield_table table td {
    border-right-width:0;
    border-left-width: 0;
}

/* ウィジェット案内用メッセージ */
.widget-alert {
    text-align: center;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #c00;
    color: #c00;
    border-radius: 4px;
    /* display: block; */
    margin: 1.5rem 0;
    padding: 0.5em;
    font-size: 12px;
    opacity: 0.6;
}
.vew_hide_edit_guide .widget-alert {
	display:none;
}
/*-------------------------------------------*/
/* 会員限定ページ */
/*-------------------------------------------*/
.post-password-required form.post-password-form {
    border: solid 1px var(--welcart-color-border);
    width: auto;
    max-width: 450px;
    padding: 3rem;
    margin: 2rem auto 3rem;
}
.post-password-required input[type="password"] {
    width: 100%;
    margin-top: .5em;
    margin-bottom: 1em;
}
.post-password-required input[type="submit"] {
    width: 100%;
    min-height: 50px;
    transition: .15s;
}

/*-------------------------------------------*/
/* 一覧ページ */
/*-------------------------------------------*/
/* 価格 */
.cart_archive_price {
    text-align: right;
}
.cart_archive_price .price.multi_price_hyphen {
/* 	display:none; */
}

.cart_archive_price .price.multi_price_high {
	display:none;
	
}

/* リード文章 */
.cart_archive_readtext p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*
 * カートエリア非表示対応
 */
.home .archive_cart {
	/* display: none; */
}

.category .archive_cart {
	/* display: none; */
}



/* エラー時崩れ対応 */
.vk_post_imgOuter_img {
	height: 100px;
}


