@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

/* 1. まず「デフォルトの状態」を一番上に書く */
html {
	overflow-y: scroll;
	height: 100%;
	font-size: 62.5%;
	/* これが基準（10px） */
	-webkit-text-size-adjust: 100%;
}

/* 2. その下に「クラスがついた時の上書き用」を書く */
html.big {
	font-size: 75% !important;
	/* 12px相当に上書き */
}

html.small {
	font-size: 55% !important;
	/* 8.8px相当に上書き */
}

html {
	overflow-y: scroll;
	height: 100%;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
p,
blockquote {
	margin: 0;
	padding: 0;
}

fieldset {
	display: inline;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
}

body

/**/
table {
	line-height: 1.5;
}

q:before,
q:after {
	content: '';
}

object,
embed {
	vertical-align: top;
}

hr,
legend {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
}

img,
abbr,
acronym,
fieldset {
	border: 0;
}

li {
	list-style-type: none;
}

img[usemap] {
	border: none;
	height: auto;
	max-width: 100%;
	width: auto;
}

img {
	border: 0;
	max-width: 100%;
}

i {
	padding: 5px 5px 2px 0;
}

p {
	word-break: break-all;
}

/* Flexible Images */
img {
	max-width: 100%;
	height: auto;
	width
	/***/
	: auto;
}

submit {
	-webkit-appearance: none;
}

/* ------------------------------------------------------------------------ */

/*  Basic Style

/* ------------------------------------------------------------------------ */

body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #333;
	-webkit-text-size-adjust: 100%;
	font-smoothing: auto;
	background-color: #f4f4f4;
}

body *,
body *:before,
body *:after {
	box-sizing: border-box;
}

#wrap {
	margin: 0 auto;
}

body>#wrap {
	height: auto;
}

@media screen and (max-width: 768px) {

	body {
		font-size: 1.2rem;
	}
}

/* ??
--------------------------------------------------------------------------- */

.pcStyle {
	display: block;
}

.spStyle {
	display: none;
}

@media screen and (max-width: 768px) {
	.pcStyle {
		display: none;
	}

	.spStyle {
		display: block;
	}
}

a {
	text-decoration: none;
	color: #333;
}

.entry h2 {
	margin: 20px 0 10px 0;
	font-size: 1.4rem;
	padding-bottom: 5px;
	border-bottom: 1px solid #232F3E;
	border-left: 8px solid #232F3E;
	padding-left: 15px;
}

.entry p {
	margin-top: 10px;
}

.inner {
	max-width: 1100px;
	width: calc(100% - 60px);
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	.inner {
		width: calc(100% - 20px);
	}
}

.title-02 {
	position: relative;
	font-size: 1.8rem;
	background-color: #232F3E;
	color: #fff;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-inline: 10px;
	line-height: 1;
	margin-bottom: 10px;
}

.title-02 .list-btn {
	position: absolute;
	right: 10px;
	color: #fff;
	font-size: 1.2rem;
	display: flex;
	gap: 5px;
	align-items: center;
	transition-duration: .3s;

	i {
		font-size: 0.6em;
	}

}

.title-02 .list-btn:hover {
	gap: 3px;
	transition-duration: .3s;

}

@media screen and (max-width: 768px) {
	.title-02 {
		font-size: 1.6rem;
		height: 30px;
	}

	.title-02 .list-btn {
		font-size: 1.2rem;
	}
}

section {
	background-color: #fff;
	border-radius: 8px;
}

@media screen and (max-width: 768px) {
	section {
		padding: 10px !important;
	}
}


.single {
	padding: 15px;
}

.btn {
	max-width: 250px;
	width: 100%;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	background-color: #F38047;
	border: 1px solid #F38047;
	color: #fff;
	border-radius: 35px;
	transition-duration: .3s;
}

.btn:hover {
	background-color: #fff;
	color: #F38047;
	transition-duration: .3s;
}


.price {
	color: #F38047;
}

.price .unit {
	font-size: 0.7em;
}

.card-slide {
	/* margin-top: 20px; */
	background-color: #f4f4f4;
	padding: 15px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 10px;
}

.card {
	position: relative;
	background-color: #fff;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: 8px;
	padding: 10px;
	transition-duration: .3s;
	overflow: hidden;
}

.card::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	content: "詳しく見る";
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	transition-duration: .3s;
	color: transparent;
	font-size: 1.2rem;
}

.card:hover::after {
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
}

.card.is-soldout::after {
	display: none;
}

.card a {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.card img {
	object-fit: contain;
	max-height: 100px;
	margin-inline: auto;
	display: block;
}

.card .card_img_wrap {}

.card .card_img_wrap .badge {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 1.2rem;

}

.card .instock {
	font-size: 0.8rem;
	color: #767676;
}

.card .card_name {
	font-size: 1.2rem;
	color: #333;
}

.card .price {
	font-size: 1.2rem;
}



/* ??????????????????????PC????1000px??? */
.swiper {
	width: 100%;
	height: fit-content;
	margin: 0 auto;
	padding: 0 0;
	--swiper-navigation-color: #F38047;
}

/* ?????????? */
.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	height: unset;

}

/* ?????????PC?????????????? */
@media screen and (max-width: 1100px) {
	.cards {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media screen and (max-width: 900px) {
	.cards {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.cards {
		gap: 8px;
		grid-template-columns: repeat(3, 1fr);
	}

	.card .card_name {
		font-size: 1.2rem;
	}

	.card {
		font-size: 1.4rem;
	}

	.card a img {
		max-height: 80px;
	}
}

@media screen and (max-width: 600px) {
	/* .cards {
		grid-template-columns: repeat(2, 1fr);
	} */
}

.breadcrumb {
	margin-block: 20px;
}

.breadcrumb ul {
	display: flex;
	justify-content: flex-start align-items: center;
	gap: 10px;
}

.breadcrumb li {
	line-height: 1;
}

.breadcrumb li a {
	position: relative;
	padding-right: 15px;
	line-height: 1;

	i {
		padding: 0;
	}
}

.breadcrumb li a::after {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	/* Solid ??? */
	content: "\f054";
	font-size: 0.8em;
	right: 0;
	top: 59%;
	transform: translateY(-50%);
}


.common-notes {
	margin-top: 5px;
	font-size: 1.2rem;
}

.common-notes li {
	text-indent: -1em;
	padding-left: 1em;
}

.bg-inversion {
	background-color: #232F3E;
	padding-block: 20px;
	margin-block: 20px;
}

#mainBlock {
	margin-top: 130px;
	clear: both;
}

@media screen and (max-width: 900px) {
	#mainBlock {
		margin-top: 80px;
	}
}

/* ------------------------------------------------------------------------ */

/*  about

/* ------------------------------------------------------------------------ */
.about {
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 15px;
}

.about p {
	font-size: 1.4rem;
}


/* ------------------------------------------------------------------------ */

/* Header

/* ------------------------------------------------------------------------ */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: #131921;
	padding-top: 20px;
}

header a {
	color: #Ffff;
}

header .logo {
	position: absolute;
	top: 10px;
}

header .logo a {
	max-width: 250px;
	display: block;
}

header .nav {
	background-color: #232F3E;
	padding-block: 10px;
	margin-top: 20px;
}

header .nav .parent li .child {
	/* display: none; */
}


header .nav .parent {
	display: flex;
	justify-content: space-around;
}

header .nav .parent li {
	width: 100%;
}

header .nav .parent li a {
	display: block;
	width: 100%;
	border-left: 1px solid #ccc;
	text-align: center;
	font-size: 1.6rem;
}

header .nav .parent>li:nth-last-child(2) a {
	border-right: 1px solid #ccc;
}

header .nav .child {
	margin-left: 10px;
	height: 0;
	/* ← これがない */
	overflow: hidden;
	/* ← これがない */
	transition: height 0.3s ease;
	/* あるとなめらかになる */
}

#menu-btn {
	display: none;
}

/* 文字サイズを変更する */
#fontsize {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
}

#fontsize span {
	font-size: 1.2rem;
}

.fontsize_btns {

	border-radius: 2px;
	display: flex;
	gap: 3px;

}

.fontsize_btns a {
	background-color: #fff;
	color: #333;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
}

.fontsize_btns .f-mid {
	border-inline: 1px solid #232F3E;
}

.fontsize_btns .on {
	color: #fff;
	background-color: #F38047;
	border: 1px solid #232F3E;
}

.content-flex01 {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.content-flex01 #search-area {
	display: flex;
	gap: 5px;
}

#cse-search-form {
	width: 270px;
}

header .cart-num {
	background-color: #F38047;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 900px) {
	header .cart-num {
		display: none;
	}

	header .logo a {
		max-width: 125px;
	}

	#menu-contents {
		position: fixed;
		top: 0;
		right: 0;
		max-width: 400px;
		width: 100%;
		height: 100vh;
		display: none;
		z-index: 99;
		background-color: #232F3E;
		padding-top: 30px;
		color: #fff;
	}

	#menu-contents.is-active {
		display: block;
	}

	header {
		padding-top: 10px;
		height: 60px;
	}

	header .inner {
		position: relative;
	}

	#menu-btn {
		z-index: 100;
		position: absolute;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 7px;
		background-color: #232F3E;
		padding: 5px;
		width: fit-content;
		cursor: pointer;
		top: 2px;
		right: 0;
		height: 40px;
	}

	#menu-btn span {
		display: block;
		height: 3px;
		width: 30px;
		background-color: #fff;
	}

	#fontsize {
		display: none;
	}

	header .nav {
		padding-block: 0;
		margin-top: 5px;
		height: 100vh;
		background-color: inherit;
	}

	header .nav .parent {
		flex-direction: column;
		max-height: 90vh;
		overflow: scroll;

		&::-webkit-scrollbar {
			display: none;
		}

		scrollbar-width: none;
		-ms-overflow-style: none;

	}

	header .nav .parent li {
		position: relative;
	}

	header .nav .parent li a {
		border-bottom: 1px solid;
		border-inline: none !important;
		text-align: left;
		padding-block: 5px;
		margin-top: 10px;
		color: #fff;
		font-size: 1.2rem;
	}

	header .nav .child {
		margin-left: 10px;
	}

	header .nav .accordion-toggle {
		top: 6px;
		right: 0;
		position: absolute;
		cursor: pointer;
		width: 30px;
		height: 30px;
	}

	/* 共通設定：擬似要素を中央に配置 */
	.accordion-toggle::before,
	.accordion-toggle::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		background-color: #fff;
		border-radius: 2px;
		transition: all 0.3s ease;
		/* すべてのプロパティをアニメーション対象に */
	}

	/* 横線 (常に表示) */
	.accordion-toggle::before {
		width: 20px;
		height: 3px;
		margin-top: -1.5px;
		margin-left: -10px;
	}

	/* 縦線 (is-active で消える) */
	.accordion-toggle::after {
		width: 3px;
		height: 20px;
		margin-top: -10px;
		margin-left: -1.5px;
	}

	/* --- アクティブ時の状態（プラス → マイナス） --- */

	/* 縦線を消す設定 */
	.accordion-toggle.is-active::after {
		opacity: 0;
		/* 透明にする */
		transform: scale(0);
		/* 縮小する（動きを滑らかにするため） */
	}

	.content-flex01 {
		justify-content: center;
	}

	#cse-search-form {
		width: 100%;
	}

	.custom-serch-button {
		background-color: #F38047 !important;
	}
}

/* --- 1. Google検索全体のデザインリセット --- */
#search-area .gsc-control-cse {
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
	width: 100% !important;
}

/* フォーム全体のコンテナ */
#search-area .gsc-search-box-tools {
	border: none !important;
	background: none !important;
}

/* 入力ボックス（枠線や背景をリセット） */
#search-area .gsc-input-box {
	border: 1px solid #ccc !important;
	border-radius: 4px !important;
	background: #fff !important;
	box-shadow: none !important;
	padding: 0 !important;
}

/* 入力文字のスタイル */
#search-area .gsc-input {
	padding: 0 !important;
	margin: 0 !important;
}

/* --- 2. 検索ボタン（虫眼鏡アイコン）の調整 --- */
#search-area .gsc-search-button-v2 {
	position: relative !important;
	padding: 0 !important;
	margin-left: 8px !important;
	/* 入力欄との距離 */
	width: 36px !important;
	/* ボタンの幅 */
	height: 36px !important;
	/* ボタンの高さ */
	background-color: #333 !important;
	/* ボタン背景色 */
	border-radius: 4px !important;
	border: none !important;
	cursor: pointer;
}

/* 虫眼鏡アイコン（SVG）の微調整 */
#search-area .gsc-search-button-v2 svg {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	/* 絶対的な中央配置 */
	width: 18px !important;
	/* アイコンサイズ */
	height: 18px !important;
	fill: #fff !important;
	/* アイコンの色 */
}

/* ボタンホバー時 */
#search-area .gsc-search-button-v2:hover {
	opacity: 0.8;
}

/* 1. 入力欄のGoogleアイコンを消す */
#search-area .gsc-input {
	background-image: none !important;

}

/* 2. 入力欄とボタンを横並びにする（CSSで強制配置） */
#search-area .gsc-search-box {
	display: flex !important;
	align-items: center;
}

/* 3. ボタンを右側に配置 */
#search-area .gsc-search-button {
	order: 2;
	/* 入力欄より右側に配置 */
	padding-left: 8px !important;
	display: none !important;
}

#search-area .gsc-input {
	order: 1;
	/* 入力欄を左側に配置 */
}

/* 4. ボタンの見た目調整（再掲） */
#search-area .gsc-search-button-v2 {
	width: 36px !important;
	height: 36px !important;
	background-color: #333 !important;
	border-radius: 4px !important;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	display: none !important
}

#search-area .gsc-search-button-v2 svg {
	width: 18px !important;
	height: 18px !important;
	fill: #fff !important;
	display: none !important;
}

#search-area .gsc-control-cse .gsc-search-button {
	display: none !important;
}

.gsib_a {
	padding-left: 10px !important;
	padding-right: 0 !important;
}

.gsib_b {
	height: 30px !important;
	width: 30px !important;
}

form.gsc-search-box {
	max-width: unset !important;
	width: 100% !important;
	margin-inline: 0 !important;
}


.custom-serch-button {
	width: 40px;
	height: 40px;
	background: #232F3E;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
}

/* 虫眼鏡の丸い部分と持ち手 */
.search-icon {
	position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #fff;
	/* 線の太さと色 */
	border-radius: 50%;
}

/* 持ち手部分 */
.search-icon::after {
	content: "";
	position: absolute;
	right: 10px;
	bottom: -3px;
	width: 2px;
	height: 5px;
	background: #fff;
	transform: rotate(45deg);
}

/* ------------------------------------------------------------------------ */

/* Navigation

/* ------------------------------------------------------------------------ */

nav {}


/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */

/* Footer

/* ------------------------------------------------------------------------ */

footer {
	margin-top: 50px;
	padding-top: 20px;
	padding-bottom: 10px;
	background-color: #131921;
	color: #fff;

	a {
		color: #fff;
	}
}

footer .row>div {
	flex: 1;
}

footer .footer_logo {
	max-width: 250px;
	width: 100%;
	display: block;
}

footer .navigation {
	margin-top: 30px;
}

footer .navigation ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

footer .navigation li a {
	width: 100%;
	display: block;
	border-bottom: 1px solid;
}

footer .info {
	margin-bottom: 10px;
}


footer .map-container {
	position: relative;
	width: 100%;
	max-width: 800px;
	height: 450px;
	margin: 30px auto;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

footer .map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

footer .copy {
	font-size: 1.0rem;
	text-align: center;
	background-color: #000;
	padding-block: 5px;
}

@media screen and (max-width: 768px) {
	footer .map-container {
		height: 320px;
		margin: 20px 0;
	}

	footer .footer_logo {
		max-width: 125px;
	}

	footer .info {
		margin-top: 10px;
	}

}





/* th {
	background: #2D445D;
	color: #fff;
} */

/* ------------------------------------------------------------------------ */

/* navigation

/* ------------------------------------------------------------------------ */

/* WP-PageNavi 全体のレイアウト（中央揃え・余白） */
.sec_cate .navigation {
	text-align: center;
	margin: 40px 0 20px;
	font-family: inherit;
}

/* ページャー全体のコンテナ */
.wp-pagenavi {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}

/* ページ番号・矢印ボタンの共通スタイル */
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	font-size: 1.4rem;
	font-weight: 500;
	color: #333;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.2s ease;
}

/* ホバー時（マウスオーバー時）のスタイル */
.wp-pagenavi a:hover {
	color: #fff;
	background-color: #333;
	border-color: #333;
}

/* 現在地（今いるページ番号）のスタイル */
.wp-pagenavi span.current {
	color: #fff;
	background-color: #131921;
	/* お店のメインカラーなどに変更してください */
	border-color: #e60012;
	font-weight: bold;
}

/* 「…」（省略記号）のスタイル */
.wp-pagenavi span.pages,
.wp-pagenavi span.extend {
	border: none;
	background: transparent;
	color: #666;
	min-width: auto;
	padding: 0 5px;
}

/* ==========================================
   Welcart 商品詳細ページ (修正版CSS)
   ========================================== */

/* 商品詳細全体のコンテナ（floatのクリア用clearfix） */
#itempage {
	position: relative;
	margin: 20px 0 100px;
}

#itempage::after {
	content: "";
	display: block;
	clear: both;
}

/* 1. 商品名（h3） */
#itempage h3 {
	display: none;
}

/* 2. 商品画像の配置（メイン画像 + サブ画像をまとめるラッパー） */
#itempage .itemimg {
	float: left;
	width: 40%;
	margin-right: 2%;
	margin-bottom: 20px;
}

#itempage .itemimg img {
	max-width: 100%;
	width: 100%;
	max-height: 350px;
	height: auto;
	border-radius: 4px;
	object-fit: contain;
}

/* サブ画像エリア（複数画像の並び崩れ防止） */
#itempage .itemsubimg {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 15px;
}

#itempage .itemsubimg a {
	display: block;
	width: 70px;
	/* サブ画像のサイズ感はお好みで調整してください */
	height: 70px;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}

#itempage .itemsubimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 商品説明・価格エリア */
#itempage .exp {
	float: left;
	width: 58%;
	margin-bottom: 20px;
}

/* スマホ表示（画面幅768px以下）のときは縦並びにする */
@media screen and (max-width: 768px) {

	#itempage .itemimg,
	#itempage .exp {
		float: none;
		width: 100%;
		margin-right: 0;
	}
}

/* 3. 価格・販売価格ブロック */
#itempage .field {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	padding: 10px 15px;
	background-color: #f9f9f9;
	border-radius: 4px;
}

#itempage .field+.field {
	margin-bottom: 30px;
}

#itempage .field_name {
	font-size: 0.9rem;
	color: #666;
}

#itempage .tax {
	font-size: 0.8rem;
	font-style: normal;
	color: #999;
}

#itempage .field_price {
	font-size: 1.5rem;
	font-weight: bold;
	color: #e60012;
}

/* 4. 説明文内のテキスト（pタグなど）の調整 */
#itempage .exp p {
	line-height: 1.6;
	color: #444;
	margin-bottom: 10px;
}

/* ==========================================
   数量・カートボタンエリアを説明文内に右側配置
   ========================================== */

#itempage .exp form>div:last-of-type,
.exp div[style*="margin-top:10px"] {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px !important;
	padding-top: 15px;
	border-top: 1px dashed #ddd;
}

.exp div[style*="margin-top:10px"] {
	font-size: 0.95rem;
	font-weight: bold;
	color: #333;
}

/* 数量を入力するテキストボックス */
.skuquantity {
	width: 60px;
	height: 40px;
	padding: 0 8px;
	font-size: 1rem;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
}

.skuquantity:focus {
	border-color: #333;
	outline: none;
}

/* 「カートへ入れる」ボタン */
.skubutton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 24px;
	font-size: 0.95rem;
	font-weight: bold;
	color: #fff;
	background-color: #F38047;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.skubutton:hover {
	background-color: #c5000f;
}



/* ==========================================
   カテゴリー タブメニューのスタイル
   ========================================== */

.sec_cate {
	margin-top: 0;
}

.cate-tab-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0 0 5px 0;
	border-bottom: 2px solid #eee;
	/* タブ全体の底線 */
}

.cate-tab-list li {
	margin: 0;
}

.cate-tab-list a {
	display: block;
	padding: 10px 18px;
	font-weight: 500;
	color: #555;
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-bottom: none;
	border-radius: 6px 6px 0 0;
	text-decoration: none;
	transition: all 0.2s ease;
}

.cate-tab-list li.defo a {
	background-color: #232F3E;
	color: #fff;
}

/* ホバー時のデザイン */
.cate-tab-list a:hover {
	color: #333;
	background-color: #e9e9e9;
}


/* アクティブ（現在地）のタブデザイン */
.cate-tab-list a.active,
.cate-tab-list li.defo a.active {
	color: #fff;
	background-color: #F38047;
	/* お店のメインカラーに合わせて変更してください */
	border-color: #F38047;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.cate-tab-list a {
		padding: 5px 10px;
	}
}

/* ==========================================
   Welcart カートページ デザイン＆レスポンシブCSS
   ========================================== */

#inside-cart {
	max-width: 1000px;
	margin: 0 auto;
	font-family: inherit;
	color: #333;
}

/* 1. カートのステップナビゲーション（上部進行状況） */
.usccart_navi {
	margin-bottom: 30px;
}

.usccart_navi ol.ucart {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 6px;
	overflow: hidden;
	background-color: #f5f5f5;
}

.usccart_navi ol.ucart li {
	flex: 1;
	text-align: center;
	padding: 12px 5px;
	font-size: 0.85rem;
	font-weight: bold;
	color: #888;
	background-color: #eee;
	border-right: 1px solid #ddd;
}

.usccart_navi ol.ucart li:last-child {
	border-right: none;
}

/* 現在地（カート）のステップ強調 ※Welcartのクラス構造に合わせて調整 */
.usccart_navi ol.ucart li.usccart_cart {
	color: #fff;
	background-color: #F38047;
	/* メインカラー */
}

/* 2. 数量変更の注意書きとボタン */
#cart .upbutton {
	margin-bottom: 15px;
	font-size: 0.9rem;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
}

#cart .upbutton input[type="submit"] {
	padding: 6px 16px;
	font-size: 0.85rem;
	font-weight: bold;
	color: #fff;
	background-color: #555;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s;
}

#cart .upbutton input[type="submit"]:hover {
	background-color: #333;
}

/* 3. カートテーブル共通 (PC表示) */
#cart_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
}

#cart_table th,
#cart_table td {
	padding: 15px 12px;
	text-align: left;
	font-size: 0.95rem;
	border-bottom: 1px solid #eee;
}

#cart_table th {
	background-color: #f9f9f9;
	font-weight: bold;
	color: #444;
}

#cart_table td.aright,
#cart_table th.aright {
	text-align: right;
}

#cart_table td.thumbnail img {
	border-radius: 4px;
	border: 1px solid #eee;
}

/* 数量入力テキストボックス */
#cart_table input.quantity {
	width: 50px;
	height: 35px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 4px;
}

/* 削除ボタン */
#cart_table input.delButton {
	padding: 5px 10px;
	font-size: 0.8rem;
	color: #d9534f;
	background: #fff;
	border: 1px solid #d9534f;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
}

#cart_table input.delButton:hover {
	color: #fff;
	background-color: #d9534f;
}

/* フッター（合計金額） */
#cart_table tfoot th {
	background-color: #fdfdfd;
	font-size: 1rem;
}

#cart_table tfoot .subtotal {
	font-size: 1.2rem;
	color: #F38047;
}

.currency_code {
	text-align: right;
	font-size: 0.85rem;
	color: #777;
	margin-bottom: 30px;
}

/* 4. 下部アクションボタン（買い物を続ける・次へ） */
.send {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
}

.send input[type="button"],
.send input[type="submit"] {
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
}

/* 買い物を続けるボタン */
.send .continue_shopping_button {
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
}

.send .continue_shopping_button:hover {
	background-color: #f5f5f5;
}

/* 次へ進むボタン */
.send .to_customerinfo_button {
	color: #fff;
	background-color: #F38047;
	border: none;
}

.send .to_customerinfo_button:hover {
	background-color: #c54a0f;
}

.send input[type="button"],
.send input[type="submit"] {
	background-color: #F38047;
	color: #fff;
	border: none;
}

/* ==========================================
   スマホ用レスポンシブ対応（768px以下）
   ========================================== */
@media screen and (max-width: 768px) {
	#cart .quantity {
		height: fit-content;
	}

	/* ステップナビの文字を少し小さく */
	.usccart_navi ol.ucart li {
		font-size: 0.7rem;
		padding: 8px 2px;
	}

	/* テーブルを非表示にし、カード型レイアウトに変換 */
	#cart_table,
	#cart_table thead,
	#cart_table tbody,
	#cart_table tfoot,
	#cart_table tr,
	#cart_table th,
	#cart_table td {
		display: block;
		width: 100% !important;
		box-sizing: border-box;
	}

	#cart_table thead {
		display: none;
		/* ヘッダー非表示 */
	}

	#cart_table tr {
		background: #fff;
		border: 1px solid #ddd;
		border-radius: 6px;
		margin-bottom: 15px;
		padding: 15px;
		position: relative;
	}

	#cart_table td {
		border: none;
		padding: 6px 0;
		text-align: left !important;
	}

	/* data-label属性を使って項目名を表示させる（スマホ専用デザイン） */
	#cart_table td::before {
		content: attr(data-label);
		font-weight: bold;
		color: #777;
		display: inline-block;
		width: 90px;
		font-size: 0.85rem;
	}

	#cart_table td.num {
		display: none;
		/* 番号は省略 */
	}

	#cart_table td.thumbnail {
		position: static !important;
		width: 100% !important;
		text-align: left !important;
		/* 左寄せにしたい場合は left、中央なら center */
		margin-bottom: 10px;
		height: fit-content;
	}

	#cart_table td.thumbnail a {
		width: fit-content;
		display: block;
		margin-inline: auto;
	}

	#cart_table td.thumbnail img {
		display: block;
	}


	#cart_table td.thumbnail::before {
		display: none;
	}

	#cart_table td.productname {
		font-weight: bold;
		font-size: 1rem;
		margin-bottom: 8px;
	}

	#cart_table td.productname::before {
		display: none;
	}

	/* フッター（合計金額行）の調整 */
	#cart_table tfoot tr {
		padding: 15px;
		background-color: #f9f9f9;
		text-align: right;
	}

	#cart_table tfoot th,
	#cart_table tfoot td {
		display: inline-block;
		width: auto !important;
	}

	#cart_table tfoot th::before {
		display: none;
	}

	/* 下部ボタンを縦並びに */
	.send {
		flex-direction: column-reverse;
		gap: 5px;
	}

	.send input[type="button"],
	.send input[type="submit"] {
		width: 100%;
	}
}

.privacypolicy h3 {
	margin: 20px 0 10px 0;
	font-size: 1.8rem;
	padding-bottom: 5px;
	border-bottom: 1px solid #232F3E;
	border-left: 8px solid #232F3E;
	padding-left: 15px;
}

/* ------------------------------------------------------------------------ */

/*  qa

/* ------------------------------------------------------------------------ */
.qa {
	padding: 15px;
	max-width: 700px;
	margin-inline: auto;
}

.qa-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.qa-item {
	border-bottom: 1px solid #e0e0e0;
}

.qa-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	text-align: left;
	padding: 15px 10px;
	font-weight: bold;
	cursor: pointer;
	-webkit-appearance: none;
	color: #333;
}

.qa-icon {
	position: relative;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-left: 1em;
}

.qa-icon::before,
.qa-icon::after {
	content: "";
	position: absolute;
	background: #333;
	transition: transform 0.3s ease;
}

.qa-icon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

.qa-icon::after {
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}

.qa-question[aria-expanded="true"] .qa-icon::after {
	transform: translateX(-50%) rotate(90deg);
	opacity: 0;
}

.qa-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 0.5em;
}

.qa-answer p {
	margin: 0 0 1.2em;
	line-height: 1.7;
	color: #555;
	font-size: 1.2rem;
}

.qa-answer p a {
	color: #006699;
}

.qa-question[aria-expanded="true"]+.qa-answer {
	/* JSでmax-heightを制御 */
}

/* ------------------------------------------------------------------------ */

/*  contact-form

/* ------------------------------------------------------------------------ */



.contact-form {
	padding: 15px;
	max-width: 700px;
	margin-inline: auto;
}

/* ===== テーブル ===== */
.contact-table {
	width: 100%;
	border-collapse: collapse;
	border: none !important;
}

.contact-table tr {
	border-bottom: 1px solid #eee;
}

.contact-table tr:last-child {
	border-bottom: none;
}

.contact-table th,
.contact-table td {
	padding: 15px 10px;
	text-align: left;
	vertical-align: middle;
}

.contact-table th {
	width: 220px;
	font-weight: bold;
	font-size: 0.95em;
	color: #333;
	white-space: nowrap;
}

.contact-table td {
	width: auto;
}

/* 必須マーク */
.contact-table .required {
	display: inline-block;
	font-size: 0.75em;
	font-weight: normal;
	color: #fff;
	background: #e05a5a;
	padding: 0.15em 0.6em;
	border-radius: 3px;
	margin-left: 0.3em;
	vertical-align: middle;
}

/* ===== 入力欄 ===== */
.wpcf7-form-control-wrap {
	display: block;
}

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.8em 1em;
	font-size: 1em;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fafafa;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7-form-control.wpcf7-textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.6;
}

.wpcf7-form-control:focus {
	outline: none;
	border-color: #333;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.wpcf7-form-control.wpcf7-not-valid {
	border-color: #e05a5a;
	background: #fff6f6;
}

.wpcf7-not-valid-tip {
	display: block;
	color: #e05a5a;
	font-size: 0.85em;
	margin-top: 0.4em;
}

/* ===== 送信ボタン ===== */

.submit-row {
	text-align: center;
}

.wpcf7-form .wpcf7-submit {
	display: inline-block;
	width: 100%;
	max-width: 280px;
	padding: 1em 2em;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	background: #F38047;
	border: 1px solid #F38047;
	border-radius: 25px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
}

.wpcf7-form .wpcf7-submit:hover {
	background: #fff;
	color: #F38047;
	border: 1px solid #F38047;
}

.wpcf7-form .wpcf7-submit:active {
	transform: translateY(1px);
}



.wpcf7-form .wpcf7-spinner {
	margin: 0 0 0 0.8em;
	vertical-align: middle;
}

/* ===== 送信結果メッセージ ===== */
.wpcf7-response-output {
	margin: 1.5em 0 0;
	padding: 1em 1.2em;
	border-radius: 4px;
	font-size: 0.9em;
	text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
	border: 1px solid #4caf50;
	background: #f0fbf1;
	color: #2e7d32;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
	border: 1px solid #e05a5a;
	background: #fff6f6;
	color: #c0392b;
}

/* ===== スマホ対応：テーブルを縦積みに ===== */
@media screen and (max-width: 600px) {
	.contact-form {
		padding: 2em 1em;
	}

	.wpcf7-form {
		padding: 0 1.2em;
		border-radius: 6px;
	}

	.contact-table,
	.contact-table tbody,
	.contact-table tr,
	.contact-table th,
	.contact-table td {
		display: block;
		width: 100%;
	}

	.contact-table th {
		padding: 1em 0 0.4em;
		white-space: normal;
	}

	.contact-table td {
		padding: 0 0 1em;
	}

	.wpcf7-form .wpcf7-submit {
		max-width: 100%;
	}
}


/* リストアイテム共通 */
.from-list li {
	position: relative;
	margin-top: 5px;
}

.from-list li:first-child {
	margin-top: 0;
}

/* リンクのデザイン */
.from-list a {
	display: inline-block;
	padding: 2px 4px;
	color: #006699;
	text-decoration: none;
	transition: color 0.2s;
}

.from-list a:hover {
	color: #10a7ec;
	text-decoration: underline;
}

/* 親カテゴリの頭にアイコン（▶）を付与 */
.from-list>li>a::before {
	content: "▶ ";
	color: #f08200;
	font-size: 0.8em;
	margin-right: 4px;
}

/* 子カテゴリのコンテナ */
.from-list-child {
	margin-top: 4px;
	margin-left: 20px;
	/* 階層をインデント */
	padding-left: 15px;
	border-left: 2px dotted #ccc;
	/* 縦の階層ツリー線 */
}

/* 子カテゴリの各アイテムの前にツリーの枝（└）を疑似要素で表現 */
.from-list-child li {
	position: relative;
}

.from-list-child li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: -15px;
	width: 10px;
	height: 1px;
	background-color: #ccc;
	/* 横の枝線 */
}

/* 子カテゴリのリンクの色を微調整（親と差別化） */
.from-list-child a {
	color: #333333;
}

.from-list-child a:hover {
	color: #f08200;
}