@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

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;
	font-size: 14px;
	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;
}


/* ??
--------------------------------------------------------------------------- */

a {
	text-decoration: none;
	color: #333;
}

.inner {
	max-width: 1200px;
	width: calc(100% - 20px);
	margin-inline: auto;
}

.title-02 {
	position: relative;
	font-size: 18px;
	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: 14px;
	display: flex;
	gap: 5px;
	align-items: center;

	i {
		font-size: 0.6em;
	}

}

section {
	background-color: #fff;
	border-radius: 8px;
}

.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;
	color: #fff;
	border-radius: 35px;
}



.price {
	color: #F38047;
}

.price .unit {
	font-size: 0.7em;
}

.card-slide {
	margin-top: 20px;
	background-color: #f4f4f4;
}

.cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.card {
	background-color: #fff;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	border-radius: 8px;
	padding: 10px;
}

.card a {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.card a img {
	object-fit: contain;
	max-height: 180px;
}



/* ??????????????????????PC????1000px??? */
.swiper {
	width: 100%;
	min-height: 250px;
	height: fit-content;
	margin: 0 auto;
	padding: 0 0;
	--swiper-navigation-color: #F38047;
}

/* ?????????? */
.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;


}

/* ?????????PC?????????????? */
@media screen and (max-width: 1100px) {
	.cards {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (max-width: 900px) {
	.cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

@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%);
}

/* ------------------------------------------------------------------------ */

/* Hedaer

/* ------------------------------------------------------------------------ */
/* ----------------------------------
   ??????
---------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background-color: #131921;
	color: #fff;

	a {
		color: #fff;
	}
}

header .inner {
	padding-block: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1 img {
	max-width: 250px;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

/* ????????????????? */
header nav.navigation>ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 15px;
}

/* ----------------------------------
   PC????????????
---------------------------------- */
header nav.navigation>ul>li {
	position: relative;

}

header nav.navigation>ul>li>a {
	text-decoration: none;
	font-size: 16px;
	display: block;
}

header nav.navigation .child {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #232F3E;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	min-width: 150px;
	flex-direction: column;
	gap: 10px;
	z-index: 10;
	padding: 10px;
}

header nav.navigation .child li {
	text-align: left;
	width: 100%;
	list-style: none;
}

header nav.navigation .child li a {
	padding: 10px 15px;
	white-space: nowrap;
	font-size: 16px;
}

/* ?PC?????????????? */
@media screen and (min-width: 769px) {
	header nav.navigation>ul>li:hover>.child {
		display: flex;
		/* ?? li ?????????????? */
	}
}

/* ??????????PC?????? */
.hamburger {
	display: none;
}

/* ----------------------------------
   ????SP???????768px???
---------------------------------- */
@media screen and (max-width: 768px) {
	header h1 img {
		max-width: 125px;
	}

	/* ???????????? */
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 30px;
		height: 22px;
		background: none;
		border: none;
		cursor: pointer;
		z-index: 100;
	}

	.hamburger span {
		background-color: #fff;
		display: block;
		width: 100%;
		height: 2px;
		transition: 0.3s;
	}

	.hamburger.active span:nth-child(1) {
		transform: translateY(10px) rotate(45deg);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
	}

	/* ???????????????????????? */
	header nav.navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background-color: #232F3E;
		box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
		transition: 0.3s ease-in-out;
		padding-top: 80px;
		z-index: 99;
		overflow-y: auto;
	}

	header nav.navigation.active {
		right: 0;
	}

	header nav.navigation>ul {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	header nav.navigation>ul>li {
		width: 100%;
		margin-left: 0;
		border-bottom: 1px solid #eee;
	}

	header nav.navigation>ul>li>a {
		padding: 15px 20px;
		display: block;
		width: 100%;
	}

	/* SP???????????????? */
	header nav.navigation .child {
		display: none;
		/* JS????????????? */
		position: static;
		box-shadow: none;
		background-color: #232F3E;
		width: 100%;
	}

	header nav.navigation .child li a {
		padding-left: 35px;
	}
}

/* ------------------------------------------------------------------------ */

/* Navigation

/* ------------------------------------------------------------------------ */

nav {}


/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

#mainBlock {
	margin-top: 80px;
	clear: both;
}

/* ------------------------------------------------------------------------ */

/* Footer

/* ------------------------------------------------------------------------ */

footer {
	margin-top: 50px;
	padding-block: 20px;
	background-color: #131921;
	color: #fff;

	a {
		color: #fff;
	}
}

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;
}


table,
td,
th {
	border: 1px solid #595959;
	border-collapse: collapse;
}

td,
th {
	padding: 3px;
	height: 25px;
}

th {
	background: #f0e6cc;
}

/* ------------------------------------------------------------------------ */

/* navigation

/* ------------------------------------------------------------------------ */

/* WP-PageNavi 全体のレイアウト（中央揃え・余白） */
.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: 14px;
	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: #ED5B14;
	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: #ED5B14;
	font-weight: bold;
}