/* --- CSS変数定義（色の管理） --- */

:root {
	--ps-text-main: #333333;
	--ps-text-sub: #777777;
	--ps-btn-beige: #B4A483;
	--ps-btn-pink: #E5BBA8;
	--ps-border-gray: #DDDDDD;
	--ps-bg-label: #333333;
	--ps-font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* --- 共通リセットスタイル --- */

.products_single_container * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.products_single_container {
	font-family: var(--ps-font-base);
	color: var(--ps-text-main);
	line-height: 1.8;
	/* 行間も少し広げて読みやすく */
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px 20px;
	font-size: 16px;
	/* ★基本サイズを16pxに設定 */
}

.products_single_container a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

.products_single_container a:hover {
	opacity: 0.7;
}

.products_single_container img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.products_single_container ul {
	list-style: none;
}

/* =========================================
     【セクション1】CONTACT
     ========================================= */

.products_single_contact_section {
	text-align: center;
	padding: 60px 0;
	border-bottom: 1px solid var(--ps-border-gray);
	margin-bottom: 60px;
}

.products_single_contact_title {
	font-size: 32px;
	/* ★大きく */
	letter-spacing: 0.05em;
	margin-bottom: 15px;
}

.products_single_contact_desc {
	font-size: 16px;
	/* ★読みやすく */
	margin-bottom: 40px;
}

.products_single_contact_buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.products_single_contact_btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 48%;
	max-width: 400px;
	padding: 18px 30px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 16px;
	/* ★ボタン文字もはっきりと */
}

/* ベージュボタン */

.products_single_btn_beige {
	background-color: var(--ps-btn-beige);
	color: #fff;
	border: none;
}

/* LINEボタン */

.products_single_btn_line {
	background-color: #fff;
	color: var(--ps-text-main);
	border: 1px solid var(--ps-border-gray);
}

.products_single_line_icon {
	color: #00B900;
	margin-right: 10px;
	font-size: 24px;
}

.products_single_arrow_icon {
	font-size: 18px;
	font-weight: lighter;
}

/* =========================================
     【セクション2】商品詳細ページ
     ========================================= */

.products_single_detail_section {
	padding-bottom: 60px;
}

/* --- 上部：商品メインエリア --- */

.products_single_main_area {
	display: flex;
	gap: 60px;
	margin-bottom: 80px;
}

/* 左カラム：画像ギャラリー */

.products_single_gallery {
	width: 50%;
	min-width: 0;
}

.products_single_main_image_box {
	margin-bottom: 20px;
	text-align: center;
}

.products_single_slider_pagination {
	text-align: center;
	margin-bottom: 20px;
	color: var(--ps-text-sub);
	font-size: 14px;
	letter-spacing: 0.2em;
}

.products_single_thumbnail_list {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.products_single_thumbnail_item {
	width: 60px;
	cursor: pointer;
	opacity: 0.5;
}

.products_single_thumbnail_item.active {
	opacity: 1;
}

/* 右カラム：商品情報 */

.products_single_info {
	flex: 1;
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
}

/* カテゴリーラベルの親要素 */

.products_single_category_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

/* ラベル単体のスタイル修正 */

.products_single_category_label {
	display: inline-block;
	background-color: var(--ps-bg-label);
	color: #fff !important;
	/* 強制的に白 */
	font-size: 12px;
	padding: 5px 12px;
	text-decoration: none !important;
	/* 下線を消す */
	transition: background-color 0.3s;
	white-space: nowrap;
	/* ラベル内で改行させない */
}

/* ホバー時に少し色を変えてクリックできることを伝える */

.products_single_category_label:hover {
	background-color: var(--ps-btn-beige);
	/* Make.a.wishゴールドに変更 */
	opacity: 1;
}

.products_single_title_jp {
	font-size: 34px;
	/* ★少しアップ */
	font-weight: bold;
	margin-bottom: 5px;
}

.products_single_title_en {
	font-size: 28px;
	/* ★商品名を大きく強調 */
	font-weight: bold;
	margin-bottom: 30px;
	letter-spacing: 0.05em;
	line-height: 1.3;
}

.products_single_price {
	text-align: right;
	font-size: 16px;
	/* margin-bottom: 30px; */
}

.products_single_price_number {
	font-size: 32px;
	/* ★価格をインパクトあるサイズに */
	font-weight: bold;
	margin: 0 5px;
}

/* 価格表示ボックス */

.products_single_price_box {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

/* 税込価格（メイン） */

.products_single_price_in {
	font-size: 1.4rem;
	color: #333;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 5px;
	display: flex;
	align-items: baseline;
	gap: 8px;
	justify-content: flex-end;
}

.products_single_price_in .price_label {
	font-size: 1rem;
	color: #666;
	font-weight: normal;
}

.products_single_price_in .price_number {
	font-size: 2.8rem;
	/* 数字を大きく強調 */
	color: #D4BD00;
	/* レモン色、またはブランドカラー */
	font-family: "Helvetica Neue", Arial, sans-serif;
	letter-spacing: 0.05em;
}

.products_single_price_in .price_unit {
	font-size: 1.4rem;
	font-weight: normal;
}

/* 税別価格（サブ） */

.products_single_price_out {
	font-size: 1.4rem;
	color: #999;
	margin-left: 2.8rem;
	text-align: right;
}

/* スマホ調整 */

@media screen and (max-width: 768px) {
	.products_single_price_in .price_number {
		font-size: 2.4rem;
	}
}

/* ダミーカートボタン */

.products_single_cart_btn_dummy {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 18px;
	background-color: var(--ps-btn-pink);
	color: #fff;
	border: none;
	font-size: 18px;
	/* ★ボタン文字大きく */
	font-weight: bold;
	cursor: pointer;
	transition: opacity 0.3s;
	margin-bottom: 40px;
}

.products_single_cart_btn_dummy:hover {
	opacity: 0.8;
}

.products_single_cart_icon {
	margin-right: 10px;
	font-size: 20px;
}

.shopify-buy-frame--product {
	max-width: 100%!important;
	width: 100%;
}

/* 全体のベース設定（既存の指定を維持しつつ調整） */

.products_single_description {
	font-size: 16px;
	color: var(--ps-text-main, #333);
	/* 変数がない場合のフォールバック色を追加 */
	line-height: 1.8;
	/* 2だと広すぎる場合があるため1.8推奨ですが、好みで2のままでもOK */
	text-align: justify;
	margin-top: 40px;
}

/* --- 見出しのデザイン --- */

.products_single_description h3 {
	font-size: 22px;
	/* 文字サイズを大きく（本文16pxに対して強調） */
	font-weight: bold;
	/* 太字 */
	margin-top: 40px;
	/* 見出しの上は広めに空ける（セクション区切り） */
	margin-bottom: 20px;
	/* 見出しの下を20px空ける */
	padding-bottom: 10px;
	/* 下線の余白 */
	border-bottom: 1px solid #ddd;
	/* 薄い下線を入れて区切りを明確に */
	line-height: 1.4;
}

/* --- 文章・段落の間隔 --- */

.products_single_description p {
	margin-top: 0;
	margin-bottom: 20px;
	/* ★ご要望の文字と文字の間（段落間）を20pxに */
	line-height: 1.8;
}

/* --- リスト（箇条書き）周りの調整 --- */

.products_single_description ul {
	list-style: none;
	/* デフォルトの・を消す（デザインに合わせて調整可） */
	padding-left: 0;
	margin-bottom: 20px;
}

/* リスト内の太字（POINT①など）のデザイン */

.products_single_description li b {
	display: block;
	/* 改行させる */
	font-size: 18px;
	/* 本文より少し大きく */
	color: #444;
	/* 少し濃く */
	margin-bottom: 10px;
	/* タイトルと説明文の間 */
	margin-top: 20px;
	/* 前の項目との間隔 */
	background-color: #f9f9f9;
	/* 薄い背景色を入れて目立たせる（任意） */
	padding: 8px 12px;
	/* 背景色用の余白 */
	border-left: 4px solid #ccc;
	/* アクセントライン（任意） */
}

.products_single_description h4 {
	display: block;
	/* 改行させる */
	font-size: 18px;
	/* 本文より少し大きく */
	color: #444;
	/* 少し濃く */
	margin-bottom: 10px;
	/* タイトルと説明文の間 */
	margin-top: 20px;
	/* 前の項目との間隔 */
	background-color: #f9f9f9;
	/* 薄い背景色を入れて目立たせる（任意） */
	padding: 8px 12px;
	/* 背景色用の余白 */
	border-left: 4px solid #ccc;
	/* アクセントライン（任意） */
	font-weight: 700;
}

/* リストの中に入れ子になっているpタグの調整 */

.products_single_description li p {
	margin-bottom: 10px;
}

/* 引用部分（citationクラス）のスタイルリセット */

.products_single_description .citation-57, .products_single_description .citation-56, .products_single_description .citation-55, .products_single_description .citation-54, .products_single_description .citation-53, .products_single_description .citation-48, .products_single_description .citation-47, .products_single_description .citation-46, .products_single_description .citation-45 {
	/* 引用タグが文字色やスタイルを持たないように継承させる */
	color: inherit;
	font-size: inherit;
}

.products_single_code {
	font-size: 13px;
	color: var(--ps-text-sub);
}

/* --- HOW TO USE コンテンツ全体 --- */

.products_single_howto_content {
	margin-top: 30px;
	margin-bottom: 50px;
	font-size: 16px;
	/* 文字サイズ */
	color: #333;
	/* 本文の色 */
	line-height: 1.8;
	/* 行間 */
}

/* ----------------------------------------------------
   手順のタイトル（手順①〜④）のデザイン
   h3タグと、手順4で使われている pタグ内のbタグ 両方に適用
---------------------------------------------------- */

.products_single_howto_content h2 {
	display: block;
	/* bタグもブロック要素として扱う */
	font-size: 24px;
	/* タイトルなので少し大きく */
	font-weight: bold;
	color: #333;
	/* ゴールド色 */
	/* デザイン装飾（左に縦線＋下に余白） */
	border-bottom: 1px solid #BFA276;
	padding-bottom: 5px;
	/* 線の横の余白 */
	margin-top: 40px;
	/* 前の項目との間隔を広めに */
	margin-bottom: 15px;
	/* 説明文との間隔 */
	line-height: 1.4;
}

.products_single_howto_content h3, .products_single_howto_content p b {
	display: block;
	/* bタグもブロック要素として扱う */
	font-size: 19px;
	/* タイトルなので少し大きく */
	font-weight: bold;
	color: #BFA276;
	/* ゴールド色 */
	/* デザイン装飾（左に縦線＋下に余白） */
	border-left: 5px solid #BFA276;
	padding-left: 7px;
	/* 線の横の余白 */
	margin-top: 40px;
	/* 前の項目との間隔を広めに */
	margin-bottom: 15px;
	/* 説明文との間隔 */
	line-height: 1.4;
}

/* 一番最初の手順（手順①）だけ、上の余白を消す */

.products_single_howto_content>*:first-child {
	margin-top: 0;
}

/* ----------------------------------------------------
   説明文（pタグ）のデザイン
---------------------------------------------------- */

.products_single_howto_content p {
	margin: 0;
	/* 不要な余白をリセット */
	text-align: justify;
	/* 両端揃え（任意） */
	line-height: 2;
}

/* 引用タグ（citation）のスタイルリセット */

.products_single_howto_content .citation-52, .products_single_howto_content .citation-51, .products_single_howto_content .citation-50, .products_single_howto_content .citation-49 {
	color: inherit;
	font-size: inherit;
}

.products_single_section_divider {
	border-top: 1px solid var(--ps-border-gray);
	padding-top: 30px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.products_single_section_title_gold {
	color: #BFA276;
	font-size: 24px;
	font-weight: 700;
	/* ★見出しサイズアップ */
	letter-spacing: 0.05em;
}

.products_single_section_title_normal {
	font-size: 18px;
	/* ★見出しサイズアップ */
	font-weight: bold;
}

.products_single_accordion_arrow {
	color: #BFA276;
	font-size: 20px;
	transform: rotate(-45deg);
}

.products_single_howto_content {
	font-size: 16px;
	/* ★説明文サイズアップ */
	margin-bottom: 60px;
	line-height: 2;
}

.products_single_howto_content h4 {
	font-size: 16px;
	font-weight: 700;
	color: #333333;
	border-bottom: 1px solid #D4C498;
	/* 下線の色 */
	padding-bottom: 8px;
	/* 下線と文字の間隔 */
	margin-top: 30px;
	margin-bottom: 15px;
	/* 文字の幅に合わせて線を引く場合 */
	/* width: 100%;           /* 横幅いっぱいに引く場合はこちらを有効に */
}

/* 関連商品グリッド */

.products_single_related_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* --- ★ここを修正（aタグ用）★ --- */

.products_single_related_item {
	display: block;
	/* aタグをブロック要素にする */
	text-align: left;
	text-decoration: none;
	/* 下線を消す */
	color: inherit;
	/* 文字色を継承させる（青くしない） */
	transition: opacity 0.3s;
	/* ホバー時のふわっと効果 */
}

/* ホバーした時に少し薄くして「押せる感」を出す */

.products_single_related_item:hover {
	opacity: 0.7;
}

.products_single_related_img {
	margin-bottom: 15px;
	text-align: center;
}

.products_single_related_brand {
	font-size: 12px;
	color: var(--ps-text-sub);
	margin-bottom: 5px;
}

.products_single_related_name {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 1.4;
}

.products_single_related_price {
	font-size: 15px;
	font-weight: bold;
}

/* =========================================
     【レスポンシブ】スマホ表示 (768px以下)
     ========================================= */

@media (max-width: 768px) {
	.products_single_container {
		padding: 40px 15px 15px;
		/* スマホでは余白を少し詰める */
	}
	.products_single_title_jp {
		font-size: 24px;
	}
	/* CONTACT */
	.products_single_contact_buttons {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	.products_single_contact_btn {
		width: 100%;
	}
	/* 商品詳細メイン */
	.products_single_main_area {
		flex-direction: column;
		gap: 40px;
	}
	.products_single_gallery {
		width: 100%;
		/* スマホでは幅いっぱい */
	}
	.products_single_title_en {
		font-size: 24px;
	}
	.products_single_price_number {
		font-size: 28px;
	}
	/* 関連商品 */
	.products_single_related_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* --- slickスライダー用CSS --- */

.products_single_main_slider {
	margin-bottom: 20px;
}

.products_single_main_slider img {
	width: 100%;
	height: auto;
	border: 1px solid #eee;
}

.products_single_main_slider .slick-prev, .products_single_main_slider .slick-next {
	z-index: 1;
	width: 40px;
	height: 40px;
}

.products_single_main_slider .slick-prev:before, .products_single_main_slider .slick-next:before {
	font-size: 40px;
	color: #B4A483;
	opacity: 0.7;
}

.products_single_main_slider .slick-prev {
	left: -20px;
}

.products_single_main_slider .slick-next {
	right: -20px;
}

/* サムネイルナビゲーション */

.products_single_thumb_nav {
	margin: 0 -5px;
}

/* ★先ほど調整したサムネイル設定 */

.products_single_thumb_nav .slick-slide {
	width: 80px;
	/* 80px固定 */
	margin: 0 5px;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s;
}

.products_single_thumb_nav .slick-slide img {
	width: 100%;
	height: auto;
	border: 1px solid transparent;
}

.products_single_thumb_nav .slick-current {
	opacity: 1;
}

.products_single_thumb_nav .slick-current img {
	border-color: #B4A483;
}

/* =========================================
   ページネーションスタイル
   ========================================= */

.news_pagenation_box {
	margin-top: 60px;
	margin-bottom: 40px;
	text-align: center;
}

.news_pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	/* ボタン同士の間隔 */
	list-style: none;
	padding: 0;
}

.news_pagination_item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	/* ボタンの幅 */
	height: 40px;
	/* ボタンの高さ */
	border: 1px solid #ddd;
	/* 薄いグレーの枠線 */
	background-color: #fff;
	transition: all 0.3s;
}

.news_pagination_item a, .news_pagination_item span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: var(--ps-text-main);
	/* 文字色 */
	font-family: "Times New Roman", "YuMincho", serif;
	/* エレガントなフォント */
	font-size: 14px;
}

/* ホバー時 */

.news_pagination_item:not(.current):hover {
	background-color: #f9f9f9;
	border-color: var(--ps-btn-beige);
	/* ゴールド */
	opacity: 1;
	/* aタグの透明度変化を打ち消し */
}

.news_pagination_item:not(.current):hover a {
	color: var(--ps-btn-beige);
}

/* 現在のページ（カレント） */

.news_pagination_item.current {
	background-color: var(--ps-btn-beige);
	/* ゴールド背景 */
	border-color: var(--ps-btn-beige);
}

.news_pagination_item.current span {
	color: #fff;
	/* 白文字 */
}

/* 最初・最後・次へ・前への矢印カスタマイズ */

.news_pagination_item.first a::before {
	content: "«";
	/* 最初へ */
}

.news_pagination_item.last a::before {
	content: "»";
	/* 最後へ */
}

/* prev/nextクラスが付いている場合の矢印調整（WP標準出力と合わせる用） */

.news_pagination_item a.prev, .news_pagination_item a.next {
	font-family: inherit;
}

/* お問い合わせボタンのスタイル */

.products_single_contact_price_btn {
	display: table;
	background-color: #D4BD00;
	/* レモン色（サイトのメインカラーに合わせて調整） */
	color: #fff!important;
	padding: 12px 24px;
	font-size: 1.1rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	/* margin-bottom: 20px; */
	transition: opacity 0.3s;
	margin: 0 auto;
}

.products_single_contact_price_btn:hover {
	opacity: 0.8;
}

/* 関連商品内でのテキスト表示調整 */

.products_single_related_price {
	margin-top: 5px;
	font-weight: bold;
}