@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
    --primary-color: #ea0000;		/*テンプレートのメインまたはアクセントカラー*/
    --primary-inverse-color: #fff;		/*上のprimary-colorの対となる色*/
    --secondary-color: #003dea;		/*このテンプレートのサブカラー*/
    --secondary-inverse-color: #fff;	/*上のsecondary-colorの対となる色*/
}


/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body * {box-sizing: border-box;}

body {
	margin: 0;padding:0;
	font-family: 'M PLUS Rounded 1c', "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #777;			/*文字色*/
	line-height: 2.2;		/*行間*/
	border-top: 5px solid var(--primary-color);	/*上の線の幅、線種。最後のvarは、css冒頭で指定しているprimary-colorを読み込む設定。*/
	animation: opa1 0.5s 0.2s both;	/*0.2秒の間だけ非表示にし、その後0.5秒かけてフェードイン表示*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
section li {margin-left: 2rem;margin-right: 2rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section + section {padding-top: 3vw;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #777;		/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	max-width: 1800px;				/*最大幅。これ以上広がりません。*/
	padding: 0 3vw;					/*上下、左右へのコンテナー内の余白。100vwが画面幅100%の事。*/
	display: flex;					/*flexを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin: 0 auto;
}


/*ヘッダー
---------------------------------------------------------------------------*/
header {
	display: flex;
	flex: 0 0 auto;
	justify-content: space-between;
	align-items: center;
	height: 100px;	/*高さ*/
}

/*ロゴ*/
header #logo img {display: block;}
header #logo {
	margin: 0;		/*上下、左右へのロゴの外側にとる余白*/
	width: 250px;	/*幅*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;margin-bottom: 1rem;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ドロップダウンの親メニューのカーソル表示を変更*/
a.ddmenu {cursor: default;}


/*メニューブロックアイコンの設定
---------------------------------------------------------------------------*/
/*アイコン共通設定*/
#menubar > nav > ul > li > a::before {
	display: inline-block;
	color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指定*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	margin-right: 0.6rem;	/*アイコンの右側に空けるスペース0.6文字分。*/
	font-size: 1.2rem;		/*文字サイズ120%*/
	transition: 0.3s;		/*マウスオン時にかける時間。0.3秒。*/
	opacity: 0.5;			/*透明度50%*/
}
#menubar a:hover::before {
	transform: scale(1.2);	/*元の1.2倍に拡大*/
	opacity: 1;				/*透明度をなくす（100%色を出す）*/
}

/*現在選択中（current）のメニューのアイコン*/
#menubar li.current a::before {
	opacity: 1;				/*透明度をなくす（100%色を出す）*/
}

/*１つ目のメニューのアイコン*/
#menubar > nav > ul > li:nth-of-type(1) > a::before {
	content: "\f015";	/* 使いたいアイコン名をここで指定。Font Awesomeに記載 */
}
/*２つ目のメニューのアイコン*/
#menubar > nav > ul > li:nth-of-type(2) > a::before {
	content: "\f06a";	/* 使いたいアイコン名をここで指定。Font Awesomeに記載 */
}
/*３つ目のメニューのアイコン*/
#menubar > nav > ul > li:nth-of-type(3) > a::before {
	content: "\f002";	/* 使いたいアイコン名をここで指定。Font Awesomeに記載 */
}
/*４つ目のメニューのアイコン*/
#menubar > nav > ul > li:nth-of-type(4) > a::before {
	content: "\f005";	/* 使いたいアイコン名をここで指定。Font Awesomeに記載 */
}
/*５つ目のメニューのアイコン*/
#menubar > nav > ul > li:nth-of-type(5) > a::before {
	content: "\f059";	/* 使いたいアイコン名をここで指定。Font Awesomeに記載 */
}


/*大きな端末、小さな端末共通のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニュー内の小文字*/
#menubar ul li span {
	display: block;
	font-size: 0.7rem;	/*文字サイズを70%に*/
	opacity: 0.7;		/*透明度。色を70%だけ出す。*/
}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block;text-decoration: none;
	padding: 10px 0;	/*上下、左右へのメニュー内の余白*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
.large-screen #menubar > nav > ul {
	display: flex;	/*横並びにする*/
	gap: 10px;		/*メニュー同士の間にあけるマージン的な余白*/
	justify-content: space-between;
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li {
	flex: 1;			/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;	/*ドロップダウンの幅となる基準を作っておく*/
	text-align: center;	/*テキストをセンタリング*/
}
.large-screen #menubar a {
	position: relative;	/*下線の幅となる基準を作っておく*/
}

/*下線（通常時）*/
.large-screen #menubar > nav > ul > li > a::after {
	content: "";
	position: absolute;left: 0px;bottom: 0px;
	width: 100%;
	height: 3px;		/*これが下線の高さになります*/
	background: #ddd;	/*下線の色*/
	transition: 0.5s;	/*色が変わるまでの時間。0.5秒。*/
}

/*下線（マウスオン時）*/
.large-screen #menubar > nav > ul > li > a:hover::after,
.large-screen #menubar > nav > ul > li.current > a::after {
	background: var(--primary-color);	/*下線の色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
	width: 100%;
}

/*ドロップダウンメニュー一個あたり*/
.large-screen #menubar ul ul li {
	margin-top: 5px;	/*メニュー同士の外側（上）のスペース*/
}
.large-screen #menubar ul ul a {
	background: #fff;		/*背景色*/
	padding: 5px 0;			/*上下、左右へのメニュー内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*マウスオン時の枠線の色を変更*/
.large-screen #menubar ul ul a:hover {
	border-color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;
	background: #fff;			/*背景色*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 10px;	/*角を丸くする指定*/
	padding: 0 2rem;		/*メニュー内の余白。上下、左右へ。*/
}

/*960px以下でのみ表示させるブロック*/
#menubar .sh {
	padding: 1rem 2rem 2rem;	/*上、左右、下へのブロック内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 30px;			/*右からの配置場所指定*/
	top: 30px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*カート表示エリア
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#cart_info {
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は20%色がついた状態の事。*/
	border-radius: 0px 0px 5px 5px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
	display: flex;			/*横並びにする*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding: 8px 15px;		/*ブロック内の余白。上下、左右へ。*/
	align-self: flex-start;	/*headerの上に寄せる指定*/
	position: fixed;
	top: 8px;       /* 画面上からの距離 */
	right: 50px;     /* 画面右からの距離 */
	z-index: 9999;
}

	/*画面幅960px以下の追加指定*/
	@media screen and (max-width:960px) {

	#cart_info {
		display: none;	/*ボタンを非表示に*/
	}

	}/*追加指定ここまで*/

#cart_info_l, #cart_info_r {
	float: left;
	padding: 0 25px;
}

.cart_info_title {
	font-weight: bold;
}

.cart_info_s {
	display: inline-block;
	font-size: 14px;
	line-height: 18px;
	margin-left: 1em;
}

.cart_info_title::before {
	content: "\f07a";
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指定*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	margin-right: 0.6rem;	/*アイコンの右側に空けるスペース0.6文字分。*/
	font-size: 1.2rem;		/*文字サイズ120%*/
	color: #ea0000;
}

/* カートボタン */
.cart-btn {
	display: inline-flex;
	align-items: center;
	background: #ff6b6b;       /* ボタン色 */
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	padding: 0.6em 1.2em;
	border-radius: 4px;
	transition: background 0.3s;
}
.cart-btn i {
	margin-right: 0.5em;       /* アイコンと文字の隙間 */
	font-size: 1.2em;
}
.cart-btn:hover {
	color: #fff;
	background: #ea0000;       /* ホバー時の色 */
}

/*main
---------------------------------------------------------------------------*/
main {
	flex: 1;
	padding-bottom: 200px;	/*下への余白*/
	background: url('../img/footer_bg.png') repeat-x center bottom / auto 150px;	/*背景画像の読み込み。repeat-x(横軸にリピート)。最後の150pxは画像の高さ設定です。*/
	position: relative;
	bottom: -20px;	/*フッターに少しめり込むようにしたかったのでマイナス指定。この行を削除すれば、フッターの上に位置します。*/
}

/*h2(見出し)要素*/
main h2 {
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	border-bottom: 1px solid var(--primary-color);	/*下線の幅、線種。varはcss冒頭で指定しているprimary-colorの色。*/
	padding-left: 1rem;		/*左側の余白*/
	padding-right: 1rem;	/*右側の余白*/
}

/*normalクラスを指定した場合のh2要素*/
main h2.normal {
	font-size: 2rem;		/*文字サイズを２倍*/
	font-weight: normal;	/*太さを標準*/
	border: none;			/*上のborder-bottomをなしに*/
	text-align: center;		/*テキストをセンタリング*/
}

/*h3(見出し)要素*/
main h3 {
	padding-left: 1rem;		/*左側の余白*/
	padding-right: 1rem;	/*右側の余白*/
}

/*h4(商品名)要素*/
main h4 {
	line-height: normal;
}



/*p(段落)要素*/
main p {
	padding-left: 1rem;		/*左側の余白*/
	padding-right: 1rem;	/*右側の余白*/
}


/*2カラム
---------------------------------------------------------------------------*/
.main-contents {
	margin-bottom: 50px;	/*ボックスの下に空けるスペース。subとの間の余白です。*/
}

	/*画面幅960px以上の追加指定*/
	@media screen and (min-width:960px) {

	/*カラムで使う為の指定*/
	main.column {
		display: flex;					/*横並びにする*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		gap: 2rem;						/*main-contentsとsub-contentsの間のマージン的な隙間*/
	}
	
	/*main-contentsブロック*/
	.main-contents {
		margin-bottom: 0;
		order: 2;		/*並び順。数字の小さい順番に表示されます。*/
		flex: 1;
	}
	
	/*sub-contentsブロック共通*/
	.sub-contents {
		width: 230px;	/*幅*/
	}
	
	/*1つ目のsub-contents*/
	.sub-contents:nth-child(2) {
		order: 1;	/*並び順。数字の小さい順番に表示されます。*/
	}
	
	/*2つ目のsub-contents*/
	.sub-contents:nth-child(3) {
		order: 3;	/*並び順。数字の小さい順番に表示されます。３番目という意味なので一番右側に表示されます。*/
	}
	
	}/*追加指定ここまで*/


/*サブコンテンツ設定
---------------------------------------------------------------------------*/
/*サブコンテンツ内のh3要素(見出し)*/
.sub-contents h3 {
	margin: 0;
	text-align: center;	/*テキストをセンタリング*/
	border-radius: 5px 5px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	border: 1px solid #ccc;			/*下線の幅、線種、色*/
	background: linear-gradient(transparent, rgba(0,0,0,0.03));/*背景グラデーション。transparentは透明の事。0,0,0は黒の事で0.03は色が3%出た状態。*/
	padding: 0.5rem 0;	/*上下、左右への見出し内の余白*/
}


/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
}

.subbox {
	padding: 1rem 2rem;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけなくす*/
}

.subbox_full {
	padding: 1rem 2rem;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}


/*メニュー１個あたり*/
.submenu a {
	display: block;text-decoration: none;
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
}

/*メニュー１個あたり（子メニュー以外）*/
.submenu > li {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけなくす*/
}

/*子メニュー*/
.submenu li li a {
	padding-left: 2rem;	/*左に余白を空ける*/
}

/*h3見出しの下にサブメニューが続く場合にメニューの上の線をなくす*/
.sub-contents h3 + nav .submenu {
	border-top: none;
}


/* ログインボタン（四角タイプ） */
.btn-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	padding: .8em 1.5em;
	border: 0;
	border-radius: 6px; /* ←丸ではなく少しだけ角丸 */
	background: var(--cart-grad);
	color: var(--cart-text);
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--cart-shadow);
	transition: transform .12s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
	text-decoration: none;
	font-size: clamp(12px, 1vw + .2rem, 14px);
}

.btn-login:hover {
	background: var(--cart-grad-hover);
	box-shadow: var(--cart-shadow-active);
	transform: translateY(-2px);
	color: #FFF;
}

.btn-login:active {
	transform: translateY(0);
	box-shadow: var(--cart-shadow-active);
}

.link-new-reg {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	text-align: right;
	font-size: clamp(12px, 1vw + .2rem, 14px);
}


/* ===== 検索フォームデザイン ===== */
.c-searchForm {
	margin: 0 auto;
}

.c-searchForm dl {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	margin-top: 0;
}

.c-searchForm dt {
	font-size: clamp(12px, 1vw + .2rem, 14px);
	font-weight: 600;
	margin-bottom: .3rem;
}

.c-selectWrap {
	position: relative;
}

.c-select {
	width: 100%;
	padding: .6rem 2.2rem .6rem .8rem;
	font-size: clamp(12px, 1vw + .2rem, 14px);
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath d='M1 4l6 6 6-6' stroke='%23666' fill='none' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.8rem center;
	background-size: 12px;
}

.c-textInput {
	width: 100%;
	padding: .6rem .8rem;
	font-size: clamp(12px, 1vw + .2rem, 14px);
	border: 1px solid #ccc;
	border-radius: 5px;
}

.c-btnArea {
	text-align: center;
	margin-top: 1rem;
}

.btn-search {
	padding: .6rem 2rem;
	font-size: clamp(12px, 1vw + .2rem, 14px);
	font-weight: bold;
	color: #fff;
	background: var(--cart-grad, linear-gradient(180deg, #ea0000 0%, #c70000 100%));
	border: none;
	border-radius: 5px;
	box-shadow: var(--cart-shadow, 0 8px 20px rgba(234,0,0,.28));
	cursor: pointer;
	transition: background .3s, box-shadow .3s;
}
.btn-search:hover {
	background: var(--cart-grad-hover, linear-gradient(180deg, #ff2a2a 0%, #ea0000 100%));
	box-shadow: var(--cart-shadow-active, 0 4px 12px rgba(234,0,0,.28));
}


.link-banner {
	font-size: clamp(12px, 1vw + .2rem, 14px);
}


/*フッター設定
---------------------------------------------------------------------------*/
small {font-size: 100%;}
footer {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding: 0 3vw;		/*上下、左右へのフッター内の余白*/
	margin-left: -3vw;	/*containerのpaddingの影響で外側に余白ができるので、相殺する。*/
	margin-right: -3vw;	/*containerのpaddingの影響で外側に余白ができるので、相殺する。*/
}

/*リンクテキスト*/
footer a {
	text-decoration: none;
	color: inherit;
}

/*マウスオン*/
footer a:hover {
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	opacity: 0.7;	/*透明度。色が70%出た状態。*/
}

/*copyright*/
#copyright {
	font-size: 0.8rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 10px;			/*余白*/
}

/*テンプレート著作部分*/
footer .pr {display: block;}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8rem;		/*文字サイズ。*/
	display: flex;			/*横並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
	padding: 2rem 20vw 2rem 0;		/*ボックス内の余白。上、右、下、左への順番。20vwは下の背景画像の最後の数字に合わせる。*/
	background: url('../img/logo_footer.png') no-repeat right 2rem / 20vw;	/*背景画像（フッター右側のロゴ）の読み込み。2remは上からの配置。20vwは画像の幅。100vw＝画面幅100%です。*/
}

/*ulタグ（メニューの１列あたり）*/
#footermenu ul {
	margin: 0;list-style: none;
	padding: 0 0.3em;	/*上下、左右への余白*/
	flex: 1;
}

/*メニューの見出し(title)*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	padding-bottom: 5px;	/*下に空けるスペース*/
	font-size: 1rem;
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;	/*横並びにする*/
	align-self: center;
	justify-content: center;
}
ul.icons li {
	margin-right: 10px;	/*アイコン同士の余白*/
}
.icons i {
	font-size: 40px;	/*Font Awesomeのアイコンサイズ*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
dl.new dt,
dl.new dd {
	border-bottom: dotted 1px;
}

dl.new dt {
	padding-left: 2rem; /* 文字の頭を少し下げたい場合は残す */
	position: relative; /* ::beforeを配置するため */
}

/* 頭に・を付ける */
dl.new dt::before {
	content: "・";
	position: absolute;
	left: 0;           /* 左端に配置 */
	color: #333;       /* 色を指定（必要に応じて変更） */
	padding-left: 1rem;
}


dl.new {
	max-height: calc(2em * 5); /* 5行ぶんの高さに制限 */
	overflow-y: auto;           /* 縦方向だけスクロールできる */
	border: 1px solid #ddd;     /* 好みで枠を付ける */
	padding: 4px 8px;           /* 余白を少し */
}

dl.new a {
	text-decoration: none;
	color: inherit; /* 親の色を継承 */
}



/*記事の下に空ける余白*/
.new dd {
	position: relative;
	padding-left: 2rem;
	padding-right: 2em;
	padding-bottom: 0.2rem;
	display: flex;
	justify-content: space-between; /* 左右に分ける */
	align-items: center;
}

/* dd 内にリンクがある場合だけ末尾に≫を表示 */
dl.new dd a::after {
	content: "≫";
	position: absolute;
	right: 0;           /* ddの右端 */
	top: 50%;
	transform: translateY(-50%); /* 縦中央揃え */
	color: #999;
	padding-right: 2em;
}


/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 1rem;		/*上下、左右へのブロック内の余白*/
	width: 6rem;			/*幅。６文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #eee;		/*背景色*/
	color:#777;				/*文字色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: var(--secondary-color);	/*背景色。css冒頭で指定しているsecondary-colorを読み込みます*/
	color: var(--secondary-inverse-color);	/*文字色。css冒頭で指定しているsecondary-inverse-colorを読み込みます*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
		padding-left: 2rem;		/*左に空ける余白*/
		padding-right: 2rem;	/*右に空ける余白*/
	}

	}/*追加指定ここまで*/


/*list-grid1, list-grid2 共通
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid1,.list-grid2 {
	display: grid;
}

/*ボックス１個あたり*/
.list-grid1 .list,.list-grid2 .list {
	position: relative;
    display: grid;
}

/*ブロック内のp要素*/
.list-grid1 p,.list-grid2 p {
	margin: 0;padding: 0;
}

/*アイコン*/
.list-grid1 .newicon,.list-grid2 .newicon {
	position: absolute;
	left: -5px;	/*左からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	top: -10px;	/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	background: var(--secondary-color);	/*背景色。css冒頭で指定しているsecondary-colorを読み込みます*/
	color: var(--secondary-inverse-color);	/*文字色。css冒頭で指定しているsecondary-inverse-colorを読み込みます*/
	font-size: 0.7rem;	/*文字サイズ。70%。*/
	width: 3em;			/*アイコンの幅。３文字分。*/
	line-height: 3em;	/*行間ですが、高さとして使っています。上のwidthと揃えれば正円になります。*/
	border-radius: 50%;	/*円形にする指定。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*list内の全ての要素のマージンを一旦リセット*/
.list-grid1 .list *,
.list-grid2 .list * {
	margin: 0;
}

/*ボックス内のp要素*/
.list-grid1 .list p,
.list-grid2 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}


/*list-grid1
---------------------------------------------------------------------------*/

	/*画面幅320px以上の追加指定*/
	@media screen and (min-width:320px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/

	/*画面幅640px以上の追加指定*/
	@media screen and (min-width:640px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(3, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


	/*画面幅960px以上の追加指定*/
	@media screen and (min-width:960px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(4, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


	/*画面幅1280px以上の追加指定*/
	@media screen and (min-width:1280px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(5, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid1 .list {
	display: grid;
	grid-template-rows: auto 1fr auto;
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

.list-grid1 .list .text {
	min-height: 0;
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure img {
	display: block;
	margin: 0 auto 0.5rem;
}

/*list-grid2
---------------------------------------------------------------------------*/

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*listブロック全体を囲むブロック*/
	.list-grid2 {
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid2 .list {
	grid-template-columns: 100px 1fr;	/*１つ目（この場合はfigure要素）を100pxに、２つ目（この場合はtextブロック））を残った幅で使う*/
	gap: 1rem;				/*ブロックの間に空けるマージン的な指定*/
	align-items: center;	/*画像とテキストブロックについて、天地の中央で揃えるようにする。この１行を削除すると、上に揃う。*/
}

/*ボックス内のfigure画像*/
.list-grid2 figure img {
	border-radius: 10px;	/*画像の角を丸くする指定*/
}

/*.text*/
.list-grid2 .list .text {
	grid-column: 1 / -1; /* デフォルトで全幅を取る */
}

.list-grid2 .list figure + .text {
	grid-column: 2; /* figureがある場合は2列目に配置 */
}


/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	text-indent: -2rem;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指定*/
    content: "\f059";	/*アイコンのコード*/
	padding-right: 1rem;	/*アイコンとテキストとの間のスペース*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*回答*/
.faq dd {
	padding: 5px 1rem 30px 3rem;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view {
	max-width: 800px;		/*最大幅*/
	margin: 0 auto 2rem;	/*ブロック要素を中央に配置。下に2文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	flex-wrap: wrap;			/*サムネイルが増えた際に自動で折り返す*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	align-items: center;		/*サイズ違いの画像が並んだ際に、天地の中央で揃えるようにする*/
	margin-bottom: 3rem;		/*下に空けるスペース。3文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 5px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*詳細ページ（item.html）で使っている「前のページに戻る」ボタン
---------------------------------------------------------------------------*/
.back {
	text-align: center;
}
.back a {
	text-decoration: none;display: inline-block;
	padding: 0.5rem 2rem;	/*ボタン内の余白。上下、左右。*/
	border-radius: 30px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
	background: #eee;		/*背景色*/
}
.back a::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指定*/
	content: "\f0d9";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	opacity: 0.5;			/*色を50%だけ出す*/
}


/*リボン背景
---------------------------------------------------------------------------*/
.ribon {
	text-align: center;	/*リボンを中央に配置する為の設定。この設定がないと左によってしまいます。*/
}

/*ribon内のspan要素への設定*/
.ribon span {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimaryt-text-colorを読み込みます*/
	display: inline-block;
	position: relative;		/*リボンの両サイドを配置する為に必要な設定*/
	padding: 0 3rem;		/*ボックス内の余白。上下、左右へ。*/
	margin-left: 2vw;		/*ボックス外の左に空ける余白*/
	margin-right: 2vw;		/*ボックス外の左に空ける余白*/
	text-align: center;
}

/*左右のリボンの共通設定*/
.ribon span::before,.ribon span::after {
	content: "";
	position: absolute;top: 0px;height: 100%;
	width: calc(2vw + 1px);	/*「.ribon span」の「margin-」と数字を揃える。1pxは、隙間が出る場合があるのでそれを回避する為。*/
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*左のリボンの設定*/
.ribon span::before {
	left: -2vw;	/*「.ribon span」の「margin-」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 50% 50%);	/*リボンの端の形を作っています。下のafterと同じコードでOK。*/
}

/*右のリボンの設定*/
.ribon span::after {
	right: -2vw;	/*「.ribon span」の「margin-」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 50% 50%);	/*リボンの端の形を作っています。上のbeforeと同じコードでOK。*/
	transform: rotate(180deg);	/*形状を180度回転（左右反転）させる*/
}


/*ステップ
---------------------------------------------------------------------------*/
/*ボックス一個あたりの設定*/
.step .list {
	padding: 2vw;	/*ボックス内の余白。２文字分。*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;	/*角を丸くする指定*/
	margin-bottom: 2rem;	/*ボックスの下（外側）に空けるスペース*/
}

/*ボックス内のh3要素*/
.step h3 {
	margin: 0;
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	font-size: 1.5rem;
	font-weight: bold;
	border-bottom: 2px dotted var(--primary-color);	/*下線の幅、線種。最後のvarは、css冒頭で指定しているprimary-colorを読み込む設定。*/
}


	/*画面幅1120px以上の追加指定*/
	@media screen and (min-width:1120px) {

	/*ボックス一個あたりの設定*/
	.step .list {
		display: flex;	/*テキストブロックと画像を横並びにする*/
	}
	
	/*ボックス内のfigure画像*/
	.step figure {
		width: 30%;			/*幅*/
		margin-left: 2vw;	/*左に空けるスペース。文字との間の隙間です。100vwが画面幅100%のことです。*/
		align-self: center;	/*画像はボックスの天地中央に配置。この行を削除すれば上に寄ります。*/
	}
	
	/*textブロック*/
	.step .text {
		flex: 1;
		margin-left: 2vw;
	}

	}

	@media screen and (max-width:1119px) {
		
	.step figure {
		text-align: center;
		margin-bottom: 25px;
	}
	}
	/*追加指定ここまで*/

	

/*btn1（ログインボタンに使用）
---------------------------------------------------------------------------*/
.btn1 {
	padding: 0;
}
.btn1 a {
	display: block;text-decoration: none;
	text-align: center;
	background: linear-gradient(transparent, var(--secondary-color) 50%);/*背景グラデーション。transparentは透明。*/
	color: #fff;	/*文字色*/
	border: 1px solid var(--secondary-color);	/*枠線の幅、線種、色*/
	border-radius: 5px;	/*角を丸くする指定*/
	padding: 1rem;		/*ボタン内の余白*/
	box-shadow: 2px 5px 10px rgba(0,0,0,0.2), 0px 0px 30px rgba(255,255,255,0.5) inset;	/*ボックスの影。カンマより前半はボックスの外への影。カンマより後は内側(inset)への影。*/
}

/*マウスオン時*/
.btn1 a:hover {
	filter: brightness(1.1);		/*少し明るく*/
	position: relative;top: 1px;	/*1pxだけ下に動く*/
}


/*メイン画像スライドショー（slickを使用）
---------------------------------------------------------------------------*/
/*slickの簡易チラつき対策（slick共通）*/
.slick-slide {
  will-change: transform;
}

/*画像を囲むブロック*/
.mainimg-slick {
	margin-bottom: 25px;	/*画像の下に空けるスペース*/
}

/*丸いページナビボタン全体を囲むブロック*/
ul.slick-dots {
	margin:0;padding: 0;
	line-height: 1;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: -30px;	/*下からの配置場所指定。ボタンを画像の下に移動します。*/
}

/*丸いページナビボタン１個あたりの設定*/
ul.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}

/*buttonタグ*/
ul.slick-dots li button {
	border: none;padding: 0;
	display: block;
	text-indent: -9999px;	/*デフォルトで文字が出るので画面の外に追い出す指定*/
	width: 12px;			/*ボタンの幅*/
	height: 12px;			/*ボタンの高さ*/
	border-radius: 50%;		/*丸くする指定*/
	cursor: pointer;		/*クリックで画像へジャンプするので、わかりやすいようhover時にpointerになるように。*/
	background: #ccc;		/*背景色。白。*/	
}

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
ul.slick-dots li.slick-active button {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*サムネイルの横スライドショー（slickを使用）
---------------------------------------------------------------------------*/
/*スライドショーを囲むブロック*/
.thumbnail-slide {
	background: #CCC;	/*背景色*/
	padding: 20px 10px;	/*上下、左右へのボックス内の余白*/
}

/*各アイテム間のマージン*/
.thumbnail-slide .slick-slide {
    margin: 0 10px;	/*上下は0、左右へ10px*/
}

/* 各アイテムの幅内で中央寄せ */
.thumbnail-slide .slick-slide {
	display: flex;          /* 中央寄せするためflex化 */
	justify-content: center;/* 横方向中央 */
	align-items: center;    /* 縦方向中央（必要なら） */
	margin: 0 10px;         /* 既存の左右マージン */
}

/* slick-slide 内の画像を最大幅で収まるように */
.thumbnail-slide .slick-slide img {
	max-width: 100%;
	height: auto;
	display: block;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.2rem 1rem;		/*ボックス内の余白*/
	background: #afa5a0;	/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #999;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;				/*幅*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #999;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #efebe9;	/*背景色*/
}

	/*画面幅960px以上の追加指定*/
	@media screen and (min-width:960px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/



/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*color-check（マーカー風スタイル）
---------------------------------------------------------------------------*/
.color-check {
	background: linear-gradient(transparent 70%, yellow 70%);
}


/*画像サイズ指定
---------------------------------------------------------------------------*/
.p_list_img_145 {
	height: 145px;
}




/*カートに入れるボタン
---------------------------------------------------------------------------*/
:root{
	--cart-base:#ea0000;
	--cart-base-dark:#c70000;
	--cart-grad:linear-gradient(180deg, var(--cart-base) 0%, var(--cart-base-dark) 100%);
	--cart-grad-hover:linear-gradient(180deg, #ff2a2a 0%, var(--cart-base) 100%);
	--cart-text:#fff;
	--cart-ring:rgba(234,0,0,.35);
	--cart-shadow:0 8px 20px rgba(234,0,0,.28), 0 2px 6px rgba(0,0,0,.12);
	--cart-shadow-active:0 4px 12px rgba(234,0,0,.28), 0 1px 4px rgba(0,0,0,.18);
}

.cart_in_area{
	margin-top:auto;
	display:flex;
	justify-content:center;
	align-items:center;
	padding-top: 1rem;
	padding-bottom: .5rem;

}

/* ベース */
.btn-cart, .btn-cart_detail {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:.5em;
	padding: .9em 1.25em;
	border:0;
	border-radius:9999px;
	background: var(--cart-grad);
	color: var(--cart-text);
	font-weight:700;
	letter-spacing:.02em;
	line-height:1;
	cursor:pointer;
	box-shadow: var(--cart-shadow);
	transition: transform .12s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
	position:relative;
	overflow:hidden;

	/* ★フルードに縮小拡大：ベース文字サイズをclampで可変 */
	font-size: clamp(13px, 1.25vw + .25rem, 16px);
}

/* アイコンは文字サイズに追従（可変） */
.btn-cart__icon{
	flex:0 0 auto;
	fill:currentColor;
	width: 1.25em;
	height: 1.25em;
}

/* シャイン効果 */
.btn-cart::after, .btn-cart_detail::after{
	content:"";
	position:absolute;
	inset:0;
	background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.25) 40%, transparent 70%);
	transform:translateX(-100%);
	transition: transform .6s ease;
	pointer-events:none;
}
.btn-cart:hover, .btn-cart_detail:hover{ background: var(--cart-grad-hover); }
.btn-cart:hover::after, .btn-cart_detail:hover::after{ transform:translateX(100%); }

.btn-cart:active, .btn-cart_detail:active{ transform: translateY(1px); box-shadow: var(--cart-shadow-active); }
.btn-cart:focus, .btn-cart_detail:focus{ outline:none; box-shadow: 0 0 0 4px var(--cart-ring), var(--cart-shadow); }
.btn-cart[disabled], .btn-cart[aria-disabled="true"], .btn-cart_detail[disabled], .btn-cart_detail[aria-disabled="true"]{ opacity:.6; cursor:not-allowed; }

/* 動きを減らす設定の人には静かに */
@media (prefers-reduced-motion: reduce){
	.btn-cart, .btn-cart::after, .btn-cart_detail, .btn-cart_detail::after{ transition:none; }
}

/* ★カード単位で全体スケールを安定させたい場合（任意）
   .list にこのクラスを付けると、内部がほどよく縮小拡大 */
.list.fluid-scale{
	font-size: clamp(14px, 1vw + .35rem, 16px);
}
.list.fluid-scale h4{ font-size: 1em; }          /* 相対指定で一緒に追従 */
.list.fluid-scale .text{ font-size: .95em; }     /* 微調整 */

/* 画面が狭い時は横幅いっぱいにして崩れ防止（任意） */
@media (max-width: 480px){
	.cart_in_area{ margin-top: .4rem; }
	.btn-cart{ width: 100%; }
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: var(--primary-color) !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.03);border: 1px solid #ccc; border-radius: 3px;word-break: break-all;}
.small {font-size: 0.7em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}

	/*画面幅960px以上の追加指定*/
	@media screen and (min-width:960px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/


.more-link-wrap {
	display: flex;
	justify-content: flex-end;
}

.more-link {
	text-decoration: none;
	color: #333;
}










.fs_80par {
	font-size: 80%;
}
