
/******************************
オーダー用追加CSS
******************************/
/*
--vk-color-primary: #660000; 赤
--vk-color-primary-dark: #520000;
--vk-color-primary-vivid: #700000;
--vk-color-custom-1: #660000;
--vk-color-custom-2: #204000　緑
--vk-color-custom-3: #F1F1F1 薄灰
--vk-color-custom-4: #402000 茶
*/
:root {
	--font-size-ono-0: 44px;
	--font-size-ono-1: 42px;
	--font-size-ono-2: 36px;
	--font-size-ono-3: 28px;
	--font-size-ono-4: 24px;
	--font-size-ono-5: 20px;
	--font-size-ono-r: 18px;
	--font-size-ono-s: 18px;
	--font-size-ono-ss: 16px;
	--font-size-ono-sss: 14px;
	--color-ono-text: #000;
}
.site-body {
  background-color: #000; /* 黒系 */
  color: #fff; /* デフォルト文字色は白 */
}
/* 固定ページコンテンツ部分は少し落ち着いた黒系 */
.page-content {
  background-color: #111; /* 濃いグレー */
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
}
h1,
h1.page-header-title {
	color: #fff;
	font-size: var(--font-size-ono-1); }
h2 {
	color: var(--color-ono-text);
	font-size: var(--font-size-ono-1); }
h3 {
	color: var(--color-ono-text);
	font-size: var(--font-size-ono-3); }
h4 {
	color: var(--color-ono-text);
	font-size: var(--font-size-ono-4);
  font-weight: 400; }
h5, h6 { font-weight: 400; }
p {
	color: var(--color-ono-text);
	font-size: var(--font-size-ono-r);
}
h1, h2, h3, h4, p {
	font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
p { margin-bottom: 0;}

/* #open：「カートを見る」ボタン */
#open {
	position: fixed;
	top: 75px;
  right: 6px;
	text-align: center;
	z-index: 98; /* 99:ハンバーガーメニュー */
}
#open img {
	width: 280px;
}
#open.fixed {
	top: 0px;
}
@media screen and (max-width:991px) {
	#open,
	#open.fixed {
		top: 65px;
	}
}

.label-category {
  margin-bottom: 0.5em;
  padding: 5px 0 !important;
  background-color: var(--vk-color-custom-2) !important;
}
.item-title { margin-bottom: 1rem; }
.item-list {
  display: flex;
  flex-wrap: wrap; /* 複数行に対応 */
  gap: 20px;
  justify-content: center; /* ← これを追加！ */
}
.item-row {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;       /* 必須 */
  min-width: 100%;
  gap: 20px;
}
.item-card {
  flex: 1 1 calc((100% - 40px) / 3); /* 3カラムに分割、gapを考慮 */
  max-width: calc((100% - 40px) / 3);
  box-sizing: border-box;
  padding: 10px;
  color: #000; /* 商品カード内の文字は黒 */
  background-color: #fff; /* 白系で商品を際立たせる */
}
.item h5 {
  font-size: 12px;
  margin: .2em 0;
}
.item-detail-number {
  padding-bottom: 15px;
}
.item-num,
.item-price {
  margin-bottom: 0;
  font-size: 1em;
}
.item-detail {
  display: block;
  margin: 0;
  padding: .5em;
  color: #1e1e1e;
  border: 1px solid #bdbdbd;
  background: transparent;
/*  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.item-detail:hover {
  color: var(--vk-color-primary);
  background: #bdbdbd;
}
.btn-stepper {
  background-color: #f1f1f1 !important;
  border: 1px solid lightgray;
  color: #660000;
  font-size: larger;
  box-shadow: 1px 1px 1px darkgray;
}
.btn-stepper:hover:not(:disabled) {
  background-color: #fff !important;
}
#item_detail_cart img {
  box-shadow: 2px 2px 2px gray;
}
#item_detail_cart img:hover {
  filter: brightness(1.2); /* 明るさ120% */
}
.btn-stepper:active:not(:disabled),
#item_detail_cart img:active {
  box-shadow: none;
}
.btn-stepper:disabled,
.btn-stepper.is-disabled {
  background-color: #ccc;
  color: #666;
}
/* ブラウザ標準の▲▼ボタンを消す */
.item-num::-webkit-inner-spin-button,
.item-num::-webkit-outer-spin-button { /* Chrome / Safari / Edge */
  -webkit-appearance: none;
  margin: 0;
}
.item-num[type=number] { /* Firefox */
  -moz-appearance: textfield;
}
.info_group {
  margin-bottom: 1em;
}

/* --- タブレット & モバイル: 2カラム --- */
@media (max-width: 991.98px) {
  .item-card {
    flex: 0 1 calc((100% - 20px) / 2); /* 2カラム分割、gapを考慮 */
    max-width: calc((100% - 20px) / 2);
  }
}
/* --- モバイル: 2カラム + 余白 --- */
@media (max-width: 575.98px) {
  .item-list {
    padding: 0 15px;
  }
  .item-card {
    /*flex: 0 1 calc((100% - 20px) / 2); /* 2カラム分割 */
    /*max-width: calc((100% - 20px) / 2);*/
    flex: 1 1 calc(100% - 10px);  /* ここを 100% にすると1カラム */
    max-width: calc(100% - 10px);
    margin-left: 10px;
    margin-right: 10px;
  }
  /* 最初と最後のカラムの余白調整 */
/*  .item-row {
    margin-left: -10px;
    margin-right: -10px;
  }*/
}

input.item-num {
  height: 24px;
  width: 40%;
}
@media (min-width: 360px) {
  input.item-num {
    height: 28px;
  }
@media (min-width: 480px) {
  input.item-num {
    height: 31px;
  }

.orderinfo table ul {
	margin-bottom: 5px;
}
.orderinfo li {
	list-style-type: circle;
}
.orderinfo_table_sub {
	/* min-height: 30px; */
	min-height: 74px;
	/* text-align: right; */
}
@media screen and (max-width: 829px) {
	.orderinfo_table_sub {
		min-height: 0;
	}
}
.orderinfo table {
	display: inline-block;
	vertical-align: top;
	margin: 10px 10px;
}
.orderinfo table th {
	text-align: left;
}
.orderinfo table td {
	vertical-align: top;
	text-align: left;
}
.orderinfo_howto {
	margin-top: 30px;
}
.orderinfo_howto li {
	line-height: 1.8;
	margin-bottom: 15px;
}
.orderinfo_price {
	font-size: 20px;
}
.orderinfo_table {
	display: inline-block;
	vertical-align: top;
}
@media screen and (min-width: 768px) {
	.orderinfo_table {
		/* width: calc(50% - 35px); */
		width: calc(50% - 5px);
	}
}
.esPrice,
.price {
  color: #e01010;
  font-size: 1em;
  margin-bottom: 0;
  margin-right: 10px;
  text-align: right;
}
.esPrice span,
.price span {
  font-size: .68em;
}
.item_detail_info {
  text-align: center;
}
.products-content-wrapper .quantity {
  display: inline-block;
}

/*------------------------------------------------------
商品一覧ページ　ここまで
------------------------------------------------------*/


/*------------------------------------------------------
アーカイブ　カテゴリ別　ここから
------------------------------------------------------*/
/* カテゴリ説明全体 */
.category-description {
    margin-bottom: 2em;
    font-size: 16px;
    line-height: 1.6;
}
/* 赤字注意文 */
.category-description .attention {
    color: red;        /* 赤色 */
    font-weight: bold; /* 太字 */
    display: block;    /* 必要に応じて改行 */
    margin-top: 0.5em;
}
/*------------------------------------------------------
アーカイブ　カテゴリ別　ここまで
------------------------------------------------------*/



/*------------------------------------------------------
サイドバーのカテゴリリスト　ここから
------------------------------------------------------*/
.sidebar-item-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-item-categories li {
    margin-bottom: 10px;
}
/* ボタン風カテゴリリンク */
.sidebar-item-categories a {
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    background-color: #d5d5d5;
    color: #402000;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    /*box-shadow: 0 3px 6px rgba(0,0,0,0.3);*/
    border: 1px solid #ddd;      /* 輪郭を軽く */
}
/* ホバー時：少し明るく＋浮き上がる */
.sidebar-item-categories a:hover {
  background-color: #fff;      /* 白で軽く変化 */
  border-color: #660000;       /* 赤をアクセントに */
  color: #660000;              /* 文字も赤に */
}
/* 別バリエーション例（カテゴリによって色分けしたい場合） *//*
.sidebar-item-categories li:nth-child(2n) a {
    background-color: #204000;
}
.sidebar-item-categories li:nth-child(2n) a:hover {
    background-color: #402000;
}*/
/*------------------------------------------------------
サイドバーのカテゴリリスト　ここまで
------------------------------------------------------*/


/*------------------------------------------------------
Deli Cart classes　ここから
------------------------------------------------------*/
.variation {
  background-color: #f5f5f5;
}
/* jquery.insertCart.css */
.item_detail_info {
  font-size: 14px;
}
#item_detail_insert_cart {
  text-decoration: none;
  border-style: none;
}
#item_detail_insert_cart:hover {
  background-color: transparent;
}
.item_detail_number {
  margin-top: 10px;
  padding-bottom: 15px;
  font-size: 10px;
  /*text-align: right;*/
}
.item_detail_number button {
  background-color: #bdbdbd;
  height: 24px;
  padding: 0;
  width: 24px;
}
.item_detail_number .item-num {
  text-align: center;
}

@media (min-width: 360px) {
  .item_detail_number {
    font-size: 12px;
  }
  .item_detail_number button {
    height: 28px;
    width: 28px;
  }
}
@media (min-width: 480px) {
  .item_detail_number {
    font-size: 14px;
  }
  .item_detail_number button {
    height: 31px;
    width: 31px;
  }
}

#item_detail_number {
  margin-bottom: 20px;
}
.btn_more,
.item_link,
.contact_link {
  display: block;
  padding: .5em;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn_more::after,
.item_link::after,
.contact_link::after {
  content: "\f138";
  font-family: "FontAwesome";
  margin-left: 1em;
}
.btn_more:hover,
.item_link:hover,
.contact_link:hover {
  opacity: .8;
  text-decoration: none !important;
}
.btn_more {
  background: #f2f5f5;
  color: #fafafa;
  margin: auto;
  padding: .5em;
}
.btn_more:hover {
  background-color: #fefefe;
  color: #f2f5f5;
}
.contact_link,
.item_link {
  background: transparent;
  font-size: 12px;
  margin: auto;
}
.contact_link:hover,
.item_link:hover {
  color: #fafafa;
}
.contact_link {
  border: 1px solid #9c8c64;
  color: #9c8c64;
  padding: 0 5px;
}
.contact_link:hover {
  background: #9c8c64;
  opacity: .8;
  text-decoration: none;
}
.item_link {
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  margin: 0;
}
.item_link:hover {
  background: #1e1e1e;
  color: #fafafa;
}

@media screen and (min-width: 480px) {
  .item_link {
    margin: 0 20px;
  }
}

@media screen and (min-width: 632px) {
  .item_link {
    margin: 0 50px;
  }
}

@media (min-width: 768px) {
  .item_link {
    margin: 0 20px;
  }
}

.cat_link .btn_more {
  background: transparent;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  font-size: 14px;
}
.cat_link .btn_more:hover {
  background: #1e1e1e;
  color: #fafafa;
}
.ranking_link .btn_more {
  background-color: #9c8c64;
  border: 1px solid #9c8c64;
  color: #fafafa;
  display: block;
  font-size: 12px;
  line-height: 1;
  padding: 10px 2px;
  position: relative;
}
.ranking_link .btn_more:hover {
  background-color: #fafafa;
  border: 1px solid #9c8c64;
  color: #9c8c64;
  text-decoration: none;
}
.voice_more .btn_more {
  background: #9c8c64;
  border: 1px solid transparent;
  color: #fafafa;
  display: inline-block;
  padding: .5em 1.5em;
}
.voice_more .btn_more:hover {
  background-color: #fefefe;
  border: 1px solid #9c8c64;
  color: #9c8c64;
}